Re: [PATCH] scripts/coccinelle: find constant additions that could be bit ors

2013-02-23 Thread Julia Lawall
On Sat, 23 Feb 2013, Dan Carpenter wrote: > On Fri, Feb 22, 2013 at 11:44:31AM +0100, Michal Marek wrote: > > On Sat, Feb 02, 2013 at 05:19:55PM +0100, Julia Lawall wrote: > > > From: Julia Lawall > > > > > > Semantic patch (http://coccinelle.lip6.fr/) to check for constants that > > > are > >

Re: [PATCH] scripts/coccinelle: find constant additions that could be bit ors

2013-02-23 Thread Dan Carpenter
On Fri, Feb 22, 2013 at 11:44:31AM +0100, Michal Marek wrote: > On Sat, Feb 02, 2013 at 05:19:55PM +0100, Julia Lawall wrote: > > From: Julia Lawall > > > > Semantic patch (http://coccinelle.lip6.fr/) to check for constants that are > > added but are used elsewhere as bitmasks. > > > > Signed-of

Re: [PATCH] scripts/coccinelle: find constant additions that could be bit ors

2013-02-22 Thread Michal Marek
On Sat, Feb 02, 2013 at 05:19:55PM +0100, Julia Lawall wrote: > From: Julia Lawall > > Semantic patch (http://coccinelle.lip6.fr/) to check for constants that are > added but are used elsewhere as bitmasks. > > Signed-off-by: Julia Lawall Applied to kbuild.git#misc. Michal -- To unsubscribe f

[PATCH] scripts/coccinelle: find constant additions that could be bit ors

2013-02-02 Thread Julia Lawall
From: Julia Lawall Semantic patch (http://coccinelle.lip6.fr/) to check for constants that are added but are used elsewhere as bitmasks. Signed-off-by: Julia Lawall --- scripts/coccinelle/misc/orplus.cocci | 55 +++ 1 file changed, 55 insertions(+) diff --gi