diff options
author | Tao Ma <tao.ma@oracle.com> | 2008-02-28 05:41:55 +0300 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2008-03-11 01:13:50 +0300 |
commit | 2af37ce82d199d1d8cd6286f42f37d321627a807 (patch) | |
tree | f4d2497ee6a4b40f312f564ced81399f235d8fd3 /fs/ocfs2/dlm/dlmrecovery.c | |
parent | 3a4780a85d4a160a471ed887bfce58b414f556b1 (diff) | |
download | linux-2af37ce82d199d1d8cd6286f42f37d321627a807.tar.xz |
ocfs2: Use dlm_print_one_lock_resource for lock resource print
__dlm_print_one_lock_resource must be called with spin_lock
the res->spinlock. While in some cases, we use it without this
precondition and lead to the failure of assert_spin_locked.
So call dlm_print_one_lock_resource instead.
Signed-off-by: Tao Ma <tao.ma@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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/dlm/dlmrecovery.c b/fs/ocfs2/dlm/dlmrecovery.c index 91f747b8a538..550d4e62b320 100644 --- a/fs/ocfs2/dlm/dlmrecovery.c +++ b/fs/ocfs2/dlm/dlmrecovery.c @@ -1191,7 +1191,7 @@ static int dlm_add_lock_to_array(struct dlm_lock *lock, (ml->type == LKM_EXMODE || memcmp(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN))) { mlog(ML_ERROR, "mismatched lvbs!\n"); - __dlm_print_one_lock_resource(lock->lockres); + dlm_print_one_lock_resource(lock->lockres); BUG(); } memcpy(mres->lvb, lock->lksb->lvb, DLM_LVB_LEN); |