aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dlmglue.c
diff options
context:
space:
mode:
authorRoel Kluin <12o3l@tiscali.nl>2007-10-27 00:20:36 +0200
committerMark Fasheh <mark.fasheh@oracle.com>2007-11-06 15:31:39 -0800
commit3cf0c507dd28de0e1a4c24304d806e6b3976f0f5 (patch)
tree20811e3b244661e18e3f11aa414c763d26f20973 /fs/ocfs2/dlmglue.c
parent[2.6 patch] make ocfs2_find_entry_el() static (diff)
downloadlinux-dev-3cf0c507dd28de0e1a4c24304d806e6b3976f0f5.tar.xz
linux-dev-3cf0c507dd28de0e1a4c24304d806e6b3976f0f5.zip
[PATCH] Fix priority mistakes in fs/ocfs2/{alloc.c, dlmglue.c}
Fixes priority mistakes similar to '!x & y' Signed-off-by: Roel Kluin <12o3l@tiscali.nl> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to '')
-rw-r--r--fs/ocfs2/dlmglue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
index 41c76ff2fcfb..ef09fd20f3a5 100644
--- a/fs/ocfs2/dlmglue.c
+++ b/fs/ocfs2/dlmglue.c
@@ -670,7 +670,7 @@ static inline void ocfs2_generic_handle_attach_action(struct ocfs2_lock_res *loc
{
mlog_entry_void();
- BUG_ON((!lockres->l_flags & OCFS2_LOCK_BUSY));
+ BUG_ON((!(lockres->l_flags & OCFS2_LOCK_BUSY)));
BUG_ON(lockres->l_flags & OCFS2_LOCK_ATTACHED);
if (lockres->l_requested > LKM_NLMODE &&