aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/dir.c
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2010-10-15 15:33:57 -0400
committerSteve French <sfrench@us.ibm.com>2010-10-17 20:34:35 -0400
commitf6a53460e2a105904deeada737b3f878d78517b3 (patch)
treef51122e6e3e2a5d3a864d17cad708d313b0ef12a /fs/cifs/dir.c
parent608712fe8609492a8670638ea86b97fafe49ebba (diff)
cifs: eliminate oflags option from cifs_new_fileinfo
Eliminate the poor, misunderstood "oflags" option from cifs_new_fileinfo. The callers mostly pass in the filp->f_flags here. That's not correct however since we're checking that value for the presence of FMODE_READ. Luckily that only affects how the f_list is ordered. What it really wants here is the file->f_mode. Just use that field from the filp to determine it. Signed-off-by: Jeff Layton <jlayton@redhat.com> Reviewed-by: Suresh Jayaraman <sjayaraman@suse.de> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/dir.c')
-rw-r--r--fs/cifs/dir.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/cifs/dir.c b/fs/cifs/dir.c
index 8c1af7128384..ce1fa3027b23 100644
--- a/fs/cifs/dir.c
+++ b/fs/cifs/dir.c
@@ -132,7 +132,7 @@ cifs_bp_rename_retry:
132 132
133struct cifsFileInfo * 133struct cifsFileInfo *
134cifs_new_fileinfo(struct inode *newinode, __u16 fileHandle, struct file *file, 134cifs_new_fileinfo(struct inode *newinode, __u16 fileHandle, struct file *file,
135 struct tcon_link *tlink, unsigned int oflags, __u32 oplock) 135 struct tcon_link *tlink, __u32 oplock)
136{ 136{
137 struct dentry *dentry = file->f_path.dentry; 137 struct dentry *dentry = file->f_path.dentry;
138 struct cifsFileInfo *pCifsFile; 138 struct cifsFileInfo *pCifsFile;
@@ -161,7 +161,7 @@ cifs_new_fileinfo(struct inode *newinode, __u16 fileHandle, struct file *file,
161 pCifsInode = CIFS_I(newinode); 161 pCifsInode = CIFS_I(newinode);
162 if (pCifsInode) { 162 if (pCifsInode) {
163 /* if readable file instance put first in list*/ 163 /* if readable file instance put first in list*/
164 if (oflags & FMODE_READ) 164 if (file->f_mode & FMODE_READ)
165 list_add(&pCifsFile->flist, &pCifsInode->openFileList); 165 list_add(&pCifsFile->flist, &pCifsInode->openFileList);
166 else 166 else
167 list_add_tail(&pCifsFile->flist, 167 list_add_tail(&pCifsFile->flist,
@@ -396,7 +396,7 @@ cifs_create_set_dentry:
396 } 396 }
397 397
398 pfile_info = cifs_new_fileinfo(newinode, fileHandle, filp, 398 pfile_info = cifs_new_fileinfo(newinode, fileHandle, filp,
399 tlink, oflags, oplock); 399 tlink, oplock);
400 if (pfile_info == NULL) { 400 if (pfile_info == NULL) {
401 fput(filp); 401 fput(filp);
402 CIFSSMBClose(xid, tcon, fileHandle); 402 CIFSSMBClose(xid, tcon, fileHandle);
@@ -670,8 +670,7 @@ cifs_lookup(struct inode *parent_dir_inode, struct dentry *direntry,
670 } 670 }
671 671
672 cfile = cifs_new_fileinfo(newInode, fileHandle, filp, 672 cfile = cifs_new_fileinfo(newInode, fileHandle, filp,
673 tlink, nd->intent.open.flags, 673 tlink, oplock);
674 oplock);
675 if (cfile == NULL) { 674 if (cfile == NULL) {
676 fput(filp); 675 fput(filp);
677 CIFSSMBClose(xid, pTcon, fileHandle); 676 CIFSSMBClose(xid, pTcon, fileHandle);