summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/clnt.c
diff options
context:
space:
mode:
authorTrond Myklebust2016-07-24 23:06:28 +0200
committerTrond Myklebust2016-07-24 23:06:28 +0200
commitce272302dd8f477b4d7de9b145b6b42da7e4292d (patch)
tree7c25908ed0f181ebcfe9b0f7b07cf89b138a3ece /net/sunrpc/clnt.c
parentSUNRPC: Fix infinite looping in rpc_clnt_iterate_for_each_xprt (diff)
downloadkernel-qcow2-linux-ce272302dd8f477b4d7de9b145b6b42da7e4292d.tar.gz
kernel-qcow2-linux-ce272302dd8f477b4d7de9b145b6b42da7e4292d.tar.xz
kernel-qcow2-linux-ce272302dd8f477b4d7de9b145b6b42da7e4292d.zip
SUNRPC: Fix a compiler warning in fs/nfs/clnt.c
Fix the report: net/sunrpc/clnt.c:2580:1: warning: ‘static’ is not at beginning of declaration [-Wold-style-declaration] Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r--net/sunrpc/clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 06b4df9faaa1..d6e75872454d 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -2558,7 +2558,7 @@ static void rpc_cb_add_xprt_release(void *calldata)
kfree(data);
}
-const static struct rpc_call_ops rpc_cb_add_xprt_call_ops = {
+static const struct rpc_call_ops rpc_cb_add_xprt_call_ops = {
.rpc_call_done = rpc_cb_add_xprt_done,
.rpc_release = rpc_cb_add_xprt_release,
};