diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2014-07-01 17:48:02 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-07-08 17:14:31 -0400 |
commit | 1e444f5bc0c468e244ee601b7acbd87f0b6ee7e2 (patch) | |
tree | 2ec226cadb020384e9f02ce3ff50dfab1941424b /fs/nfsd/vfs.h | |
parent | 950e0118d06fae26e07b283b83e96124a2075a1d (diff) | |
download | linux-stable-1e444f5bc0c468e244ee601b7acbd87f0b6ee7e2.tar.gz linux-stable-1e444f5bc0c468e244ee601b7acbd87f0b6ee7e2.tar.bz2 linux-stable-1e444f5bc0c468e244ee601b7acbd87f0b6ee7e2.zip |
NFSD: Remove iattr parameter from nfsd_symlink()
Commit db2e747b1499 (vfs: remove mode parameter from vfs_symlink())
have remove mode parameter from vfs_symlink.
So that, iattr isn't needed by nfsd_symlink now, just remove it.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/vfs.h')
-rw-r--r-- | fs/nfsd/vfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/vfs.h b/fs/nfsd/vfs.h index 20e4b6679e46..c2ff3f14e5f6 100644 --- a/fs/nfsd/vfs.h +++ b/fs/nfsd/vfs.h @@ -86,7 +86,7 @@ __be32 nfsd_readlink(struct svc_rqst *, struct svc_fh *, char *, int *); __be32 nfsd_symlink(struct svc_rqst *, struct svc_fh *, char *name, int len, char *path, - struct svc_fh *res, struct iattr *); + struct svc_fh *res); __be32 nfsd_link(struct svc_rqst *, struct svc_fh *, char *, int, struct svc_fh *); __be32 nfsd_rename(struct svc_rqst *, |