diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2020-10-19 13:23:52 -0400 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2021-01-25 09:36:24 -0500 |
commit | 9cedc2e64c296efb3bebe93a0ceeb5e71e8d722d (patch) | |
tree | b41593ccf0c1d17fdcb739cdaa340a6dc0d6a603 /fs/nfsd/xdr3.h | |
parent | 40116ebd0934cca7e46423bdb3397d3d27eb9fb9 (diff) | |
download | linux-9cedc2e64c296efb3bebe93a0ceeb5e71e8d722d.tar.bz2 |
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 'fs/nfsd/xdr3.h')
-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; }; |