aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@hammerspace.com>2021-11-05 14:32:28 -0400
committerTrond Myklebust <trond.myklebust@hammerspace.com>2021-11-05 14:54:30 -0400
commitaa97a3ef15c303697ca58340938a5c385be00cf7 (patch)
tree2f3ed551a0576bb2688e7be5435d7c38109d0ce8 /fs/nfs
parentNFS: Don't allocate nfs_fattr on the stack in __nfs42_ssc_open() (diff)
downloadlinux-dev-aa97a3ef15c303697ca58340938a5c385be00cf7.tar.xz
linux-dev-aa97a3ef15c303697ca58340938a5c385be00cf7.zip
NFSv4.2: alloc_file_pseudo() takes an open flag, not an f_mode
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r--fs/nfs/nfs4file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/nfs4file.c b/fs/nfs/nfs4file.c
index f9f50fe1f3a4..92a1b992a141 100644
--- a/fs/nfs/nfs4file.c
+++ b/fs/nfs/nfs4file.c
@@ -351,13 +351,12 @@ static struct file *__nfs42_ssc_open(struct vfsmount *ss_mnt,
goto out_free_name;
}
- filep = alloc_file_pseudo(r_ino, ss_mnt, read_name, FMODE_READ,
+ filep = alloc_file_pseudo(r_ino, ss_mnt, read_name, O_RDONLY,
r_ino->i_fop);
if (IS_ERR(filep)) {
res = ERR_CAST(filep);
goto out_free_name;
}
- filep->f_mode |= FMODE_READ;
ctx = alloc_nfs_open_context(filep->f_path.dentry, filep->f_mode,
filep);