diff options
author | J. Bruce Fields <bfields@redhat.com> | 2013-03-21 15:49:47 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2013-04-04 13:25:17 -0400 |
commit | 41d22663cb6a4108091c050cba3c470a3e175dd9 (patch) | |
tree | ceebc42e56e0e3b6cea2981e1f9ce15dc93e090a /fs/nfsd/nfs4state.c | |
parent | e8c69d17d1ef8437aee729322db005573a467fd6 (diff) | |
download | linux-3.10-41d22663cb6a4108091c050cba3c470a3e175dd9.tar.gz linux-3.10-41d22663cb6a4108091c050cba3c470a3e175dd9.tar.bz2 linux-3.10-41d22663cb6a4108091c050cba3c470a3e175dd9.zip |
nfsd4: remove unused nfs4_check_deleg argument
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs4state.c')
-rw-r--r-- | fs/nfsd/nfs4state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index aae93045ce6..795b24d82d1 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -2737,7 +2737,7 @@ static bool nfsd4_is_deleg_cur(struct nfsd4_open *open) } static __be32 -nfs4_check_deleg(struct nfs4_client *cl, struct nfs4_file *fp, struct nfsd4_open *open, +nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open, struct nfs4_delegation **dp) { int flags; @@ -3062,7 +3062,7 @@ nfsd4_process_open2(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nf if (fp) { if ((status = nfs4_check_open(fp, open, &stp))) goto out; - status = nfs4_check_deleg(cl, fp, open, &dp); + status = nfs4_check_deleg(cl, open, &dp); if (status) goto out; } else { |