diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2024-05-31 01:08:38 +0100 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2024-07-08 14:10:01 -0400 |
commit | 022d0574eff0b9093fec5a515c00638eefec6474 (patch) | |
tree | 4f2c8bb6216853da421233c5fc32374eb7b79636 /fs/nfsd | |
parent | dbc834e5db447bcc5d77fa76a46897c4f206a5a4 (diff) | |
download | linux-stable-022d0574eff0b9093fec5a515c00638eefec6474.tar.gz linux-stable-022d0574eff0b9093fec5a515c00638eefec6474.tar.bz2 linux-stable-022d0574eff0b9093fec5a515c00638eefec6474.zip |
NFSD: remove unused structs 'nfsd3_voidargs'
'nfsd3_voidargs' in nfs[23]acl.c is unused since
commit 788f7183fba8 ("NFSD: Add common helpers to decode void args and
encode void results").
Remove them.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs2acl.c | 2 | ||||
-rw-r--r-- | fs/nfsd/nfs3acl.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/fs/nfsd/nfs2acl.c b/fs/nfsd/nfs2acl.c index 12b2b9bc07bf..4e3be7201b1c 100644 --- a/fs/nfsd/nfs2acl.c +++ b/fs/nfsd/nfs2acl.c @@ -308,8 +308,6 @@ static void nfsaclsvc_release_access(struct svc_rqst *rqstp) fh_put(&resp->fh); } -struct nfsd3_voidargs { int dummy; }; - #define ST 1 /* status*/ #define AT 21 /* attributes */ #define pAT (1+AT) /* post attributes - conditional */ diff --git a/fs/nfsd/nfs3acl.c b/fs/nfsd/nfs3acl.c index 73adca47d373..5e34e98db969 100644 --- a/fs/nfsd/nfs3acl.c +++ b/fs/nfsd/nfs3acl.c @@ -221,8 +221,6 @@ static void nfs3svc_release_getacl(struct svc_rqst *rqstp) posix_acl_release(resp->acl_default); } -struct nfsd3_voidargs { int dummy; }; - #define ST 1 /* status*/ #define AT 21 /* attributes */ #define pAT (1+AT) /* post attributes - conditional */ |