summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/dlm/dlmrecovery.c
diff options
context:
space:
mode:
authorKurt Hackel2006-04-28 03:00:21 +0200
committerMark Fasheh2006-06-26 23:42:45 +0200
commitaba9aac78817d88aa2b223f1aedf1e9815ae97b8 (patch)
treec796e9d34514fa96eae26f360296720c504c0766 /fs/ocfs2/dlm/dlmrecovery.c
parentocfs2: recheck lockres master before sending an unlock request. (diff)
downloadkernel-qcow2-linux-aba9aac78817d88aa2b223f1aedf1e9815ae97b8.tar.gz
kernel-qcow2-linux-aba9aac78817d88aa2b223f1aedf1e9815ae97b8.tar.xz
kernel-qcow2-linux-aba9aac78817d88aa2b223f1aedf1e9815ae97b8.zip
ocfs2: fix inverted logic in dlm_is_node_dead
Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/dlm/dlmrecovery.c')
-rw-r--r--fs/ocfs2/dlm/dlmrecovery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c
index bf2a02eca62e..b568bb6617d8 100644
--- a/fs/ocfs2/dlm/dlmrecovery.c
+++ b/fs/ocfs2/dlm/dlmrecovery.c
@@ -267,7 +267,7 @@ int dlm_is_node_dead(struct dlm_ctxt *dlm, u8 node)
{
int dead;
spin_lock(&dlm->spinlock);
- dead = test_bit(node, dlm->domain_map);
+ dead = !test_bit(node, dlm->domain_map);
spin_unlock(&dlm->spinlock);
return dead;
}