diff options
author | Christoph Hellwig <hch@lst.de> | 2017-05-08 17:35:49 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-05-15 17:42:23 +0200 |
commit | a6beb73272b4c0108e41bc7c7b5a447ae6c92863 (patch) | |
tree | 65c4a0b3d6aa098b16c536c902933133548c27b0 /net/sunrpc/svc.c | |
parent | 9482c9c15c29deb5e49ff475710f94dea0842328 (diff) | |
download | linux-a6beb73272b4c0108e41bc7c7b5a447ae6c92863.tar.gz linux-a6beb73272b4c0108e41bc7c7b5a447ae6c92863.tar.bz2 linux-a6beb73272b4c0108e41bc7c7b5a447ae6c92863.zip |
sunrpc: properly type pc_func callbacks
Drop the argp and resp arguments as they can trivially be derived from
the rqstp argument. With that all functions now have the same prototype,
and we can remove the unsafe casting to svc_procfunc as well as the
svc_procfunc typedef itself.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'net/sunrpc/svc.c')
-rw-r--r-- | net/sunrpc/svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index bc0f5a0ecbdc..95335455ad38 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1281,7 +1281,7 @@ svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv) if (xdr && !xdr(rqstp, argv->iov_base, rqstp->rq_argp)) goto err_garbage; - *statp = procp->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp); + *statp = procp->pc_func(rqstp); /* Encode reply */ if (*statp == rpc_drop_reply || |