[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1474907003.2238.13.camel@perches.com>
Date: Mon, 26 Sep 2016 09:23:23 -0700
From: Joe Perches <joe@...ches.com>
To: David Laight <David.Laight@...LAB.COM>,
'SF Markus Elfring' <elfring@...rs.sourceforge.net>,
"gigaset307x-common@...ts.sourceforge.net"
<gigaset307x-common@...ts.sourceforge.net>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>,
Karsten Keil <isdn@...ux-pingi.de>,
Paul Bolle <pebolle@...cali.nl>
Cc: LKML <linux-kernel@...r.kernel.org>,
"kernel-janitors@...r.kernel.org" <kernel-janitors@...r.kernel.org>,
Julia Lawall <julia.lawall@...6.fr>
Subject: Re: [PATCH 5/5] ISDN-Gigaset: Enclose two expressions for the
sizeof operator by parentheses
On Mon, 2016-09-26 at 16:00 +0000, David Laight wrote:
> From: SF Markus Elfring Sent: 26 September 2016 16:45
> > The script "checkpatch.pl" can point information out like the following.
> > WARNING: sizeof … should be sizeof(…)
> []
> > diff --git a/drivers/isdn/gigaset/common.c b/drivers/isdn/gigaset/common.c
[]
> > @@ -53,7 +53,7 @@ void gigaset_dbg_buffer(enum debuglevel level, const unsigned char *msg,
> > {
> > unsigned char outbuf[80];
> > unsigned char c;
> > - size_t space = sizeof outbuf - 1;
> > + size_t space = sizeof(outbuf - 1);
> wrong ...
> think that is 7 instead of 79.
Well, it's sizeof(pointer) so either 4 or 8, but still,
what Markus proposes here is _wrong_.
Markus, do you know the script probably has a lower
style conversion defect introduction rate than you do
when doing these mechanical things.
Please use it to verify what you are doing before
submitting more defective patches.
Excuses and apologies aren't good enough at this point.
Powered by blists - more mailing lists