diff options
author | Jeff <jlayton@redhat.com> | 2007-09-13 14:38:50 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-09-13 14:38:50 -0400 |
commit | a8cd925f74c3b1b6d1192f9e75f9d12cc2ab148a (patch) | |
tree | 16ecee715df1a99f580ca0a1a5863af81e623075 /fs/cifs/inode.c | |
parent | 4efa53f0907bb4378015c129a2c11b8d3a90bce2 (diff) |
[CIFS] Respect umask when using POSIX mkdir
When making a directory with POSIX mkdir calls, cifs_mkdir does not
respect the umask. This patch causes the new POSIX mkdir to create with
the right mode
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 66436f527c3b..e800c0ef54f6 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c | |||
@@ -919,6 +919,7 @@ int cifs_mkdir(struct inode *inode, struct dentry *direntry, int mode) | |||
919 | goto mkdir_out; | 919 | goto mkdir_out; |
920 | } | 920 | } |
921 | 921 | ||
922 | mode &= ~current->fs->umask; | ||
922 | rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT, | 923 | rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT, |
923 | mode, NULL /* netfid */, pInfo, &oplock, | 924 | mode, NULL /* netfid */, pInfo, &oplock, |
924 | full_path, cifs_sb->local_nls, | 925 | full_path, cifs_sb->local_nls, |