[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1448406701-12474-1-git-send-email-colin.king@canonical.com>
Date: Tue, 24 Nov 2015 23:11:41 +0000
From: Colin King <colin.king@...onical.com>
To: Trond Myklebust <trond.myklebust@...marydata.com>,
Anna Schumaker <anna.schumaker@...app.com>,
"J . Bruce Fields" <bfields@...ldses.org>,
Jeff Layton <jlayton@...chiereds.net>,
"David S . Miller" <davem@...emloft.net>,
Chuck Lever <chuck.lever@...cle.com>,
Sagi Grimberg <sagig@...lanox.com>,
Steve Wise <swise@...ngridcomputing.com>,
Doug Ledford <dledford@...hat.com>, linux-nfs@...r.kernel.org,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] xprtrdma: add missing curly braces, set rc to zero on non-zero
From: Colin Ian King <colin.king@...onical.com>
Add the missing curly braces so that rc is only set to zero when
it is non-zero. Without this minor fix, rc is set to zero even
when it is zero, which is slightly redundant.
Detected with smatch static analysis.
Signed-off-by: Colin Ian King <colin.king@...onical.com>
---
net/sunrpc/xprtrdma/verbs.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
index eadd1655..2cc1014 100644
--- a/net/sunrpc/xprtrdma/verbs.c
+++ b/net/sunrpc/xprtrdma/verbs.c
@@ -852,10 +852,11 @@ retry:
if (extras) {
rc = rpcrdma_ep_post_extra_recv(r_xprt, extras);
- if (rc)
+ if (rc) {
pr_warn("%s: rpcrdma_ep_post_extra_recv: %i\n",
__func__, rc);
rc = 0;
+ }
}
}
--
2.6.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists