cocci.inria.fr archive mirror
 help / color / mirror / Atom feed
* [Cocci] linux: bad logic in repetitive tests
@ 2020-03-31  0:52 Joe Perches
  2020-03-31  8:50 ` Julia Lawall
  0 siblings, 1 reply; 4+ messages in thread
From: Joe Perches @ 2020-03-31  0:52 UTC (permalink / raw)
  To: Julia Lawall; +Cc: cocci

There is a block of if tests against the same variable
in include/linux/mtd/pfow.h that likely is defective

        if (prog_status & 0x3)
                ...
        else if (prog_status & 0x2)
                ...
        else (prog_status & 0x1)
                ...

If the first test is true the subsequent 2 tests aren't
possible.

Likely the first test should be something like

	if ((prog_status & 0x03) == 0x03)

Is there a way for cocci to find this style of bitwise
logic defect?



_______________________________________________
Cocci mailing list
Cocci@systeme.lip6.fr
https://systeme.lip6.fr/mailman/listinfo/cocci

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-31 10:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-31  0:52 [Cocci] linux: bad logic in repetitive tests Joe Perches
2020-03-31  8:50 ` Julia Lawall
2020-03-31  9:02   ` Joe Perches
2020-03-31  9:12     ` Julia Lawall

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).