diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-10-15 15:33:57 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2010-10-17 20:34:35 -0400 |
commit | f6a53460e2a105904deeada737b3f878d78517b3 (patch) | |
tree | f51122e6e3e2a5d3a864d17cad708d313b0ef12a | |
parent | 608712fe8609492a8670638ea86b97fafe49ebba (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>
-rw-r--r-- | fs/cifs/cifsproto.h | 3 | ||||
-rw-r--r-- | fs/cifs/dir.c | 9 | ||||
-rw-r--r-- | fs/cifs/file.c | 5 |
3 files changed, 7 insertions, 10 deletions
diff --git a/fs/cifs/cifsproto.h b/fs/cifs/cifsproto.h index 4f7edbaf0118..781676e9cfc3 100644 --- a/fs/cifs/cifsproto.h +++ b/fs/cifs/cifsproto.h | |||
@@ -107,8 +107,7 @@ extern struct timespec cnvrtDosUnixTm(__le16 le_date, __le16 le_time, | |||
107 | 107 | ||
108 | extern struct cifsFileInfo *cifs_new_fileinfo(struct inode *newinode, | 108 | extern struct cifsFileInfo *cifs_new_fileinfo(struct inode *newinode, |
109 | __u16 fileHandle, struct file *file, | 109 | __u16 fileHandle, struct file *file, |
110 | struct tcon_link *tlink, | 110 | struct tcon_link *tlink, __u32 oplock); |
111 | unsigned int oflags, __u32 oplock); | ||
112 | extern int cifs_posix_open(char *full_path, struct inode **pinode, | 111 | extern int cifs_posix_open(char *full_path, struct inode **pinode, |
113 | struct super_block *sb, | 112 | struct super_block *sb, |
114 | int mode, unsigned int f_flags, | 113 | int mode, unsigned int f_flags, |
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 | ||
133 | struct cifsFileInfo * | 133 | struct cifsFileInfo * |
134 | cifs_new_fileinfo(struct inode *newinode, __u16 fileHandle, struct file *file, | 134 | cifs_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); |
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index b1ca6a43ac1a..774e3ac1208b 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
@@ -273,7 +273,7 @@ int cifs_open(struct inode *inode, struct file *file) | |||
273 | cFYI(1, "posix open succeeded"); | 273 | cFYI(1, "posix open succeeded"); |
274 | 274 | ||
275 | pCifsFile = cifs_new_fileinfo(inode, netfid, file, | 275 | pCifsFile = cifs_new_fileinfo(inode, netfid, file, |
276 | tlink, oflags, oplock); | 276 | tlink, oplock); |
277 | if (pCifsFile == NULL) { | 277 | if (pCifsFile == NULL) { |
278 | CIFSSMBClose(xid, tcon, netfid); | 278 | CIFSSMBClose(xid, tcon, netfid); |
279 | rc = -ENOMEM; | 279 | rc = -ENOMEM; |
@@ -365,8 +365,7 @@ int cifs_open(struct inode *inode, struct file *file) | |||
365 | if (rc != 0) | 365 | if (rc != 0) |
366 | goto out; | 366 | goto out; |
367 | 367 | ||
368 | pCifsFile = cifs_new_fileinfo(inode, netfid, file, tlink, | 368 | pCifsFile = cifs_new_fileinfo(inode, netfid, file, tlink, oplock); |
369 | file->f_flags, oplock); | ||
370 | if (pCifsFile == NULL) { | 369 | if (pCifsFile == NULL) { |
371 | rc = -ENOMEM; | 370 | rc = -ENOMEM; |
372 | goto out; | 371 | goto out; |