diff options
author | Jeff Layton <jlayton@redhat.com> | 2008-05-14 13:22:03 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2008-05-14 14:45:30 -0400 |
commit | 35fc37d5175091c36d034a28c057da0f9594ee7e (patch) | |
tree | d28ee6f3000fd0c3a03fc95f044544b1d6413c08 /fs/cifs/inode.c | |
parent | e10f7b551d2a79b113d5ce66b5dc9f3657035445 (diff) |
add function to convert access flags to legacy open mode
SMBLegacyOpen always opens a file as r/w. This could be problematic
for files with ATTR_READONLY set. Have it interpret the access_mode
into a sane open mode.
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index fcbdbb6ad7bf..2d53b436d511 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
@@ -1502,8 +1502,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) | |||
1502 | int oplock = 0; | 1502 | int oplock = 0; |
1503 | 1503 | ||
1504 | rc = SMBLegacyOpen(xid, pTcon, full_path, | 1504 | rc = SMBLegacyOpen(xid, pTcon, full_path, |
1505 | FILE_OPEN, | 1505 | FILE_OPEN, GENERIC_WRITE, |
1506 | SYNCHRONIZE | FILE_WRITE_ATTRIBUTES, | ||
1507 | CREATE_NOT_DIR, &netfid, &oplock, | 1506 | CREATE_NOT_DIR, &netfid, &oplock, |
1508 | NULL, cifs_sb->local_nls, | 1507 | NULL, cifs_sb->local_nls, |
1509 | cifs_sb->mnt_cifs_flags & | 1508 | cifs_sb->mnt_cifs_flags & |