summaryrefslogtreecommitdiffstats
path: root/net/sunrpc/clnt.c
diff options
context:
space:
mode:
authorChristoph Hellwig2017-05-08 09:31:19 +0200
committerChristoph Hellwig2017-05-15 17:42:07 +0200
commitc512f36b581862df20acef050c3e1a875166bd6f (patch)
treec8e22c04c5a0dbefa92460ac179f50b239e504af /net/sunrpc/clnt.c
parentLinux 4.12-rc1 (diff)
downloadkernel-qcow2-linux-c512f36b581862df20acef050c3e1a875166bd6f.tar.gz
kernel-qcow2-linux-c512f36b581862df20acef050c3e1a875166bd6f.tar.xz
kernel-qcow2-linux-c512f36b581862df20acef050c3e1a875166bd6f.zip
sunrpc: properly type argument to kxdreproc_t
Pass struct rpc_request as the first argument instead of an untyped blob, and mark the data object as const. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'net/sunrpc/clnt.c')
-rw-r--r--net/sunrpc/clnt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index b5cb921775a0..9fee20dc0c80 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -2476,7 +2476,8 @@ out_overflow:
goto out_garbage;
}
-static void rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj)
+static void rpcproc_encode_null(struct rpc_rqst *rqstp, struct xdr_stream *xdr,
+ const void *obj)
{
}