summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue jiufei2013-07-04 00:00:50 +0200
committerLinus Torvalds2013-07-04 01:07:23 +0200
commit40c7f2eaf59230135fd91a398924bdbf873378ec (patch)
tree5e75cc0b467e3173ca0979e684680e567c459539
parentocfs2: should not use le32_add_cpu to set ocfs2_dinode i_flags (diff)
downloadkernel-qcow2-linux-40c7f2eaf59230135fd91a398924bdbf873378ec.tar.gz
kernel-qcow2-linux-40c7f2eaf59230135fd91a398924bdbf873378ec.tar.xz
kernel-qcow2-linux-40c7f2eaf59230135fd91a398924bdbf873378ec.zip
ocfs2: add missing dlm_put() in dlm_begin_reco_handler()
dlm_begin_reco_handler() returns without putting dlm when dlm recovery state is DLM_RECO_STATE_FINALIZE. Signed-off-by: joyce <xuejiufei@huawei.com> Reviewed-by: Jie Liu <jeff.liu@oracle.com> Acked-by: Joel Becker <jlbec@evilplan.org> Cc: Mark Fasheh <mfasheh@suse.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--fs/ocfs2/dlm/dlmrecovery.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c
index 53e5c0284fa2..773bd32bfd8c 100644
--- a/fs/ocfs2/dlm/dlmrecovery.c
+++ b/fs/ocfs2/dlm/dlmrecovery.c
@@ -2692,6 +2692,7 @@ int dlm_begin_reco_handler(struct o2net_msg *msg, u32 len, void *data,
dlm->name, br->node_idx, br->dead_node,
dlm->reco.dead_node, dlm->reco.new_master);
spin_unlock(&dlm->spinlock);
+ dlm_put(dlm);
return -EAGAIN;
}
spin_unlock(&dlm->spinlock);