diff options
author | Guozhonghua <guozhonghua@h3c.com> | 2016-05-19 17:09:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-19 19:12:14 -0700 |
commit | 8f9b1802c20ace68a7d6603e1fd82a44fedb4078 (patch) | |
tree | 01d0252a36be1cdf0c67ee637cd1c9d5277f529b | |
parent | aa6913dbd26af386e7703f6c0d4ed2a848b7a052 (diff) | |
download | op-kernel-dev-8f9b1802c20ace68a7d6603e1fd82a44fedb4078.zip op-kernel-dev-8f9b1802c20ace68a7d6603e1fd82a44fedb4078.tar.gz |
ocfs2: clean up an unneeded goto in ocfs2_put_slot()
The goto is not useful in ocfs2_put_slot(), so delete it.
Signed-off-by: Guozhonghua <guozhonghua@h3c.com>
Cc: Mark Fasheh <mfasheh@suse.de>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Cc: Joseph Qi <joseph.qi@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/ocfs2/slot_map.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/ocfs2/slot_map.c b/fs/ocfs2/slot_map.c index 1e09592..d740799 100644 --- a/fs/ocfs2/slot_map.c +++ b/fs/ocfs2/slot_map.c @@ -535,12 +535,8 @@ void ocfs2_put_slot(struct ocfs2_super *osb) spin_unlock(&osb->osb_lock); status = ocfs2_update_disk_slot(osb, si, slot_num); - if (status < 0) { + if (status < 0) mlog_errno(status); - goto bail; - } -bail: ocfs2_free_slot_info(osb); } - |