mirror of https://gitee.com/openkylin/linux.git
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:
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",
|
||||
|
|
Loading…
Reference in New Issue