NFSD: Remove iattr parameter from nfsd_symlink()

Commit db2e747b14 (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>
This commit is contained in:
Kinglong Mee
2014-07-01 17:48:02 +08:00
committed by J. Bruce Fields
parent 950e0118d0
commit 1e444f5bc0
5 changed files with 5 additions and 10 deletions

View File

@@ -1505,8 +1505,7 @@ __be32
nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
char *fname, int flen,
char *path,
struct svc_fh *resfhp,
struct iattr *iap)
struct svc_fh *resfhp)
{
struct dentry *dentry, *dnew;
__be32 err, cerr;