diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2020-10-19 19:23:52 +0200 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2021-01-25 15:36:24 +0100 |
commit | 9cedc2e64c296efb3bebe93a0ceeb5e71e8d722d (patch) | |
tree | b41593ccf0c1d17fdcb739cdaa340a6dc0d6a603 /fs/nfsd/xdr3.h | |
parent | NFSD: Add helper to set up the pages where the dirlist is encoded (diff) | |
download | linux-9cedc2e64c296efb3bebe93a0ceeb5e71e8d722d.tar.xz linux-9cedc2e64c296efb3bebe93a0ceeb5e71e8d722d.zip |
NFSD: Update READDIR3args decoders to use struct xdr_stream
As an additional clean up, neither nfsd3_proc_readdir() nor
nfsd3_proc_readdirplus() make use of the dircount argument, so
remove it from struct nfsd3_readdirargs.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | fs/nfsd/xdr3.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfsd/xdr3.h b/fs/nfsd/xdr3.h index 789a364d5e69..64af5b01c5d7 100644 --- a/fs/nfsd/xdr3.h +++ b/fs/nfsd/xdr3.h @@ -90,7 +90,6 @@ struct nfsd3_symlinkargs { struct nfsd3_readdirargs { struct svc_fh fh; __u64 cookie; - __u32 dircount; __u32 count; __be32 * verf; }; |