aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2
diff options
context:
space:
mode:
authorKurt Hackel <kurt.hackel@oracle.com>2007-01-17 17:54:39 -0500
committerMark Fasheh <mark.fasheh@oracle.com>2007-02-07 15:03:42 -0500
commit50635f15b324cbf45a58f103e6b4c7e42502b683 (patch)
tree3290a045d567312773ffbe96c8b3220f06658dc5 /fs/ocfs2
parent1cd04dbe3364be71b93e3aaf4545daa1e261aaa1 (diff)
ocfs2_dlm: Drop inflight refmap even if no locks found on the lockres
Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com> Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r--fs/ocfs2/dlm/dlmrecovery.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c
index f93315c98871..2e32fe65c6c2 100644
--- a/fs/ocfs2/dlm/dlmrecovery.c
+++ b/fs/ocfs2/dlm/dlmrecovery.c
@@ -1908,11 +1908,9 @@ skip_lvb:
1908 1908
1909leave: 1909leave:
1910 /* balance the ref taken when the work was queued */ 1910 /* balance the ref taken when the work was queued */
1911 if (added > 0) { 1911 spin_lock(&res->spinlock);
1912 spin_lock(&res->spinlock); 1912 dlm_lockres_drop_inflight_ref(dlm, res);
1913 dlm_lockres_drop_inflight_ref(dlm, res); 1913 spin_unlock(&res->spinlock);
1914 spin_unlock(&res->spinlock);
1915 }
1916 1914
1917 if (ret < 0) { 1915 if (ret < 0) {
1918 mlog_errno(ret); 1916 mlog_errno(ret);