diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2023-01-02 12:05:30 -0500 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2023-02-20 09:20:09 -0500 |
commit | dba5eaa46b0282cb9607d362c8887dfcb44bfd2e (patch) | |
tree | cf848b721f2eab3080ff84fefca5f5e1145794cb /fs/nfs | |
parent | f78e44545814b26ab6af7cdd5b022293ceac867e (diff) | |
download | linux-stable-dba5eaa46b0282cb9607d362c8887dfcb44bfd2e.tar.gz linux-stable-dba5eaa46b0282cb9607d362c8887dfcb44bfd2e.tar.bz2 linux-stable-dba5eaa46b0282cb9607d362c8887dfcb44bfd2e.zip |
SUNRPC: Push svcxdr_init_decode() into svc_process_common()
Now that all vs_dispatch functions invoke svcxdr_init_decode(), it
is common code and can be pushed down into the generic RPC server.
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/callback_xdr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfs/callback_xdr.c b/fs/nfs/callback_xdr.c index d0cccddb7d08..46d3f5986b4e 100644 --- a/fs/nfs/callback_xdr.c +++ b/fs/nfs/callback_xdr.c @@ -984,7 +984,6 @@ nfs_callback_dispatch(struct svc_rqst *rqstp, __be32 *statp) { const struct svc_procedure *procp = rqstp->rq_procinfo; - svcxdr_init_decode(rqstp); svcxdr_init_encode(rqstp); *statp = procp->pc_func(rqstp); |