staging: lustre: Delete unnecessary goto statements in six functions
Six goto statements referred to a source code position directly behind them. Thus omit such unnecessary jumps. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fb7a02014b
commit
3af7370ca1
2 changed files with 0 additions and 8 deletions
|
@ -556,7 +556,6 @@ static struct dentry *ll_lookup_it(struct inode *parent, struct dentry *dentry,
|
|||
retval = NULL;
|
||||
else
|
||||
retval = dentry;
|
||||
goto out;
|
||||
out:
|
||||
if (req)
|
||||
ptlrpc_req_finished(req);
|
||||
|
|
|
@ -1181,7 +1181,6 @@ static int mdc_ioc_hsm_progress(struct obd_export *exp,
|
|||
ptlrpc_request_set_replen(req);
|
||||
|
||||
rc = mdc_queue_wait(req);
|
||||
goto out;
|
||||
out:
|
||||
ptlrpc_req_finished(req);
|
||||
return rc;
|
||||
|
@ -1216,7 +1215,6 @@ static int mdc_ioc_hsm_ct_register(struct obd_import *imp, __u32 archives)
|
|||
ptlrpc_request_set_replen(req);
|
||||
|
||||
rc = mdc_queue_wait(req);
|
||||
goto out;
|
||||
out:
|
||||
ptlrpc_req_finished(req);
|
||||
return rc;
|
||||
|
@ -1282,7 +1280,6 @@ static int mdc_ioc_hsm_ct_unregister(struct obd_import *imp)
|
|||
ptlrpc_request_set_replen(req);
|
||||
|
||||
rc = mdc_queue_wait(req);
|
||||
goto out;
|
||||
out:
|
||||
ptlrpc_req_finished(req);
|
||||
return rc;
|
||||
|
@ -1362,8 +1359,6 @@ static int mdc_ioc_hsm_state_set(struct obd_export *exp,
|
|||
ptlrpc_request_set_replen(req);
|
||||
|
||||
rc = mdc_queue_wait(req);
|
||||
goto out;
|
||||
|
||||
out:
|
||||
ptlrpc_req_finished(req);
|
||||
return rc;
|
||||
|
@ -1427,8 +1422,6 @@ static int mdc_ioc_hsm_request(struct obd_export *exp,
|
|||
ptlrpc_request_set_replen(req);
|
||||
|
||||
rc = mdc_queue_wait(req);
|
||||
goto out;
|
||||
|
||||
out:
|
||||
ptlrpc_req_finished(req);
|
||||
return rc;
|
||||
|
|
Loading…
Reference in a new issue