linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 8/9] fs/ocfs2/aops.c: Correct use of ! and &
@ 2008-02-26 20:45 Julia Lawall
  2008-02-27 21:26 ` Mark Fasheh
  0 siblings, 1 reply; 2+ messages in thread
From: Julia Lawall @ 2008-02-26 20:45 UTC (permalink / raw)
  To: mark.fasheh, kurt.hackel, ocfs2-devel, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

In commit e6bafba5b4765a5a252f1b8d31cbf6d2459da337, a bug was fixed that
involved converting !x & y to !(x & y).  The code below shows the same
pattern, and thus should perhaps be fixed in the same way.

This is not tested and clearly changes the semantics, so it is only
something to consider.

The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@ expression E1,E2; @@
(
  !E1 & !E2
|
- !E1 & E2
+ !(E1 & E2)
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>

---

diff -u -p a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
--- a/fs/ocfs2/aops.c 2008-02-05 20:56:02.000000000 +0100
+++ b/fs/ocfs2/aops.c 2008-02-26 08:16:47.000000000 +0100
@@ -257,7 +257,7 @@ static int ocfs2_readpage_inline(struct 
 	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
 
 	BUG_ON(!PageLocked(page));
-	BUG_ON(!OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL);
+	BUG_ON(!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
 
 	ret = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &di_bh,
 			       OCFS2_BH_CACHED, inode);

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

* Re: [PATCH 8/9] fs/ocfs2/aops.c: Correct use of ! and &
  2008-02-26 20:45 [PATCH 8/9] fs/ocfs2/aops.c: Correct use of ! and & Julia Lawall
@ 2008-02-27 21:26 ` Mark Fasheh
  0 siblings, 0 replies; 2+ messages in thread
From: Mark Fasheh @ 2008-02-27 21:26 UTC (permalink / raw)
  To: Julia Lawall; +Cc: kurt.hackel, ocfs2-devel, linux-kernel, kernel-janitors

On Tue, Feb 26, 2008 at 09:45:56PM +0100, Julia Lawall wrote:
> From: Julia Lawall <julia@diku.dk>
> 
> In commit e6bafba5b4765a5a252f1b8d31cbf6d2459da337, a bug was fixed that
> involved converting !x & y to !(x & y).  The code below shows the same
> pattern, and thus should perhaps be fixed in the same way.
> 
> This is not tested and clearly changes the semantics, so it is only
> something to consider.

That looks fine - it's in Ocfs2.git now, thanks.
	--Mark

--
Mark Fasheh
Principal Software Developer, Oracle
mark.fasheh@oracle.com

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

end of thread, other threads:[~2008-02-27 21:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-26 20:45 [PATCH 8/9] fs/ocfs2/aops.c: Correct use of ! and & Julia Lawall
2008-02-27 21:26 ` Mark Fasheh

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).