lkml.org 
[lkml]   [2017]   [Mar]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH 3/5] staging: lustre: lustre: Remove unnecessary cast on void pointer
From
Date
On Fri, 2017-03-03 at 03:25 +0530, SIMRAN SINGHAL wrote:
> On Fri, Mar 3, 2017 at 3:13 AM, Joe Perches <joe@perches.com> wrote:
> > On Fri, 2017-03-03 at 02:49 +0530, simran singhal wrote:
> > > The following Coccinelle script was used to detect this:
> > > @r@
> > > expression x;
> > > void* e;
> > > type T;
> > > identifier f;
> > > @@
> > > (
> > > *((T *)e)
> > > >
> > >
> > > ((T *)x)[...]
> > > >
> > >
> > > ((T*)x)->f
> > > >
> > >
> > > - (T*)
> > > e
> > > )
> >
> > NAK.
> >
> > Nice, but you still have to verify correctness
> > before submitting these patches.
> >
> > > diff --git a/drivers/staging/lustre/lustre/mgc/mgc_request.c b/drivers/staging/lustre/lustre/mgc/mgc_request.c
> >
> > []
> > > @@ -1034,7 +1034,7 @@ static int mgc_set_info_async(const struct lu_env *env, struct obd_export *exp,
> > > rc = sptlrpc_parse_flavor(val, &flvr);
> > > if (rc) {
> > > CERROR("invalid sptlrpc flavor %s to MGS\n",
> > > - (char *)val);
> > > + val);
> >
> > Try compiling this.
> >
>
> I compiled it before sending.

Did you look at the warnings?

  CC [M]  drivers/staging/lustre/lustre/mgc/mgc_request.o
drivers/staging/lustre/lustre/mgc/mgc_request.c: In function ‘mgc_set_info_async’:
drivers/staging/lustre/lustre/mgc/mgc_request.c:1036:115: warning: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘void *’ [-Wformat=]
    CERROR("invalid sptlrpc flavor %s to MGS\n",

\
 
 \ /
  Last update: 2017-03-02 23:02    [W:0.748 / U:0.148 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site