dlmglue.c: add missed mlog lines
This patch adds the missed mlog_exit() and mlog_exit_void() lines when routines return. Signed-off-by: Coly Li <coly.li@suse.de> Acked-by: Mark Fasheh <mfasheh@suse.com> Signed-off-by: Joel Becker <joel.becker@oracle.com>
This commit is contained in:
parent
a2f2ddbf2b
commit
d92bc5127b
1 changed files with 4 additions and 1 deletions
|
@ -1577,8 +1577,10 @@ int ocfs2_rw_lock(struct inode *inode, int write)
|
||||||
(unsigned long long)OCFS2_I(inode)->ip_blkno,
|
(unsigned long long)OCFS2_I(inode)->ip_blkno,
|
||||||
write ? "EXMODE" : "PRMODE");
|
write ? "EXMODE" : "PRMODE");
|
||||||
|
|
||||||
if (ocfs2_mount_local(osb))
|
if (ocfs2_mount_local(osb)) {
|
||||||
|
mlog_exit(0);
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
lockres = &OCFS2_I(inode)->ip_rw_lockres;
|
lockres = &OCFS2_I(inode)->ip_rw_lockres;
|
||||||
|
|
||||||
|
@ -3038,6 +3040,7 @@ static void ocfs2_unlock_ast(void *opaque, int error)
|
||||||
"unlock_action %d\n", error, lockres->l_name,
|
"unlock_action %d\n", error, lockres->l_name,
|
||||||
lockres->l_unlock_action);
|
lockres->l_unlock_action);
|
||||||
spin_unlock_irqrestore(&lockres->l_lock, flags);
|
spin_unlock_irqrestore(&lockres->l_lock, flags);
|
||||||
|
mlog_exit_void();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue