diff options
author | Xue jiufei <xuejiufei@huawei.com> | 2013-07-03 18:00:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:23 -0400 |
commit | 40c7f2eaf59230135fd91a398924bdbf873378ec (patch) | |
tree | 5e75cc0b467e3173ca0979e684680e567c459539 /fs/ocfs2/dlm | |
parent | 13eb98874c837b4ca0cb2db6a4fe3551e51b7632 (diff) |
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>
Diffstat (limited to 'fs/ocfs2/dlm')
-rw-r--r-- | fs/ocfs2/dlm/dlmrecovery.c | 1 |
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, | |||
2692 | dlm->name, br->node_idx, br->dead_node, | 2692 | dlm->name, br->node_idx, br->dead_node, |
2693 | dlm->reco.dead_node, dlm->reco.new_master); | 2693 | dlm->reco.dead_node, dlm->reco.new_master); |
2694 | spin_unlock(&dlm->spinlock); | 2694 | spin_unlock(&dlm->spinlock); |
2695 | dlm_put(dlm); | ||
2695 | return -EAGAIN; | 2696 | return -EAGAIN; |
2696 | } | 2697 | } |
2697 | spin_unlock(&dlm->spinlock); | 2698 | spin_unlock(&dlm->spinlock); |