Re: [PATCH] checkpatch: detect leading * in NULL comparison check

From: S. Gilles
Date: Sun Dec 13 2015 - 17:03:48 EST


On 2015-12-13T12:49:01, Joe Perches wrote:
> On Sun, 2015-12-13 at 12:59 -0500, S. Gilles wrote:
> > Prevent checkpatch.pl from emitting messages like
> >
> > Â CHECK: Comparison to NULL could be written "!rx_p"
> > Â #51: FILE: drivers/staging/iio/accel/sca3000_ring.c:51:
> > Â +ÂÂÂÂÂÂÂif (*rx_p == NULL) {
> >
> > by checking for leading * characters in the comparison value.
> >
> > Signed-off-by: S. Gilles <sgilles@xxxxxxxxxxxx>
> > ---
> >
> > I've run this through everything in staging/ as a test, it seems to
> > work okay.
>
> This wouldn't work with
>
> * foo == NULL;
>
> but there don't seem to be any in the kernel source.

Some other stuff like

*(foo) == NULL

won't be caught as well, but in such false negative cases, other style
conventions would have to be violated anyway. I'm not sure how strong
that argument is.

--
S. Gilles
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/