From: Joseph Qi Date: Fri, 4 Sep 2015 22:43:54 +0000 (-0700) Subject: ocfs2: remove unneeded code in ocfs2_dlm_init X-Git-Tag: v4.3-rc1~73^2~90 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=914a9b74295774b92409fbc3e0abcfa9185d9469;p=karo-tx-linux.git ocfs2: remove unneeded code in ocfs2_dlm_init status is already initialized and it will only be 0 or negatives in the code flow. So remove the unneeded assignment after the lable 'local'. Signed-off-by: Joseph Qi Cc: Mark Fasheh Cc: Joel Becker Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index 23157e40dd74..1c91103c1333 100644 --- a/fs/ocfs2/dlmglue.c +++ b/fs/ocfs2/dlmglue.c @@ -3035,8 +3035,6 @@ local: ocfs2_orphan_scan_lock_res_init(&osb->osb_orphan_scan.os_lockres, osb); osb->cconn = conn; - - status = 0; bail: if (status < 0) { ocfs2_dlm_shutdown_debug(osb);