diff options
author | Xue jiufei <xuejiufei@huawei.com> | 2014-06-04 19:06:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 19:53:55 -0400 |
commit | e72db989e1c01fde28aabf7fd29faeaa08538e24 (patch) | |
tree | e1c2565aaea24df2d9ae9048dc3a76f30f1421ee /fs/ocfs2/dlmglue.c | |
parent | 17bf1418b78d9c51370f29c2b840f7d0a1bf311a (diff) |
ocfs2: remove some unused code
dlm_recovery_ctxt.received is unused.
ocfs2_should_refresh_lock_res() can only return 0 or 1, so the error
handling code in ocfs2_super_lock() is unneeded.
Signed-off-by: joyce.xue <xuejiufei@huawei.com>
Cc: 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/dlmglue.c')
-rw-r--r-- | fs/ocfs2/dlmglue.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index 6bd690b5a061..52cfe99ae056 100644 --- a/fs/ocfs2/dlmglue.c +++ b/fs/ocfs2/dlmglue.c | |||
@@ -2544,11 +2544,6 @@ int ocfs2_super_lock(struct ocfs2_super *osb, | |||
2544 | * refreshed, so we do it here. Of course, making sense of | 2544 | * refreshed, so we do it here. Of course, making sense of |
2545 | * everything is up to the caller :) */ | 2545 | * everything is up to the caller :) */ |
2546 | status = ocfs2_should_refresh_lock_res(lockres); | 2546 | status = ocfs2_should_refresh_lock_res(lockres); |
2547 | if (status < 0) { | ||
2548 | ocfs2_cluster_unlock(osb, lockres, level); | ||
2549 | mlog_errno(status); | ||
2550 | goto bail; | ||
2551 | } | ||
2552 | if (status) { | 2547 | if (status) { |
2553 | status = ocfs2_refresh_slot_info(osb); | 2548 | status = ocfs2_refresh_slot_info(osb); |
2554 | 2549 | ||