SUNRPC: Prepare for xdr_stream-style decoding on the server-side
authorChuck Lever <chuck.lever@oracle.com>
Thu, 5 Nov 2020 16:19:42 +0000 (11:19 -0500)
committerChuck Lever <chuck.lever@oracle.com>
Mon, 30 Nov 2020 19:46:35 +0000 (14:46 -0500)
commit5191955d6fc65e6d4efe8f4f10a6028298f57281
tree17fbefa6d5e0c9b1a813fd5caafe00915e31ae4a
parent0ae4c3e8a64ace1b8d7de033b0751afe43024416
SUNRPC: Prepare for xdr_stream-style decoding on the server-side

A "permanent" struct xdr_stream is allocated in struct svc_rqst so
that it is usable by all server-side decoders. A per-rqst scratch
buffer is also allocated to handle decoding XDR data items that
cross page boundaries.

To demonstrate how it will be used, add the first call site for the
new svcxdr_init_decode() API.

As an additional part of the overall conversion, add symbolic
constants for successful and failed XDR operations. Returning "0" is
overloaded. Sometimes it means something failed, but sometimes it
means success. To make it more clear when XDR decoding functions
succeed or fail, introduce symbolic constants.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
fs/nfsd/nfssvc.c
include/linux/sunrpc/svc.h
net/sunrpc/svc.c