mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 00:42:56 -04:00
Staging: lustre: Remove unnecessary else after return
WARNING: else is not generally useful after a break or return Remove unnecessary else after return. That was found by running checkpatch Signed-off-by: Melike Yurtoglu <aysemelikeyurtoglu@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d7a5b788a9
commit
5b9359f120
@@ -1438,12 +1438,11 @@ static int ptlrpc_send_new_req(struct ptlrpc_request *req)
|
||||
if (req->rq_err) {
|
||||
req->rq_status = rc;
|
||||
return 1;
|
||||
} else {
|
||||
spin_lock(&req->rq_lock);
|
||||
req->rq_wait_ctx = 1;
|
||||
spin_unlock(&req->rq_lock);
|
||||
return 0;
|
||||
}
|
||||
spin_lock(&req->rq_lock);
|
||||
req->rq_wait_ctx = 1;
|
||||
spin_unlock(&req->rq_lock);
|
||||
return 0;
|
||||
}
|
||||
|
||||
CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc %s:%s:%d:%llu:%s:%d\n",
|
||||
|
||||
Reference in New Issue
Block a user