Messages in this thread Patch in this message |  | | | Date | Wed, 6 Feb 2008 15:53:54 -0800 | | From | Greg KH <> | | Subject | [patch 54/73] CIFS: Respect umask when using POSIX mkdir |
| |
2.6.23-stable review patch. If anyone has any objections, please let us know. ------------------ From: Steve French <sfrench@us.ibm.com> patch a8cd925f74c3b1b6d1192f9e75f9d12cc2ab148a in mainline.
[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> Cc: maximilian attems <max@stro.at> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--- fs/cifs/inode.c | 1 + 1 file changed, 1 insertion(+) --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -919,6 +919,7 @@ int cifs_mkdir(struct inode *inode, stru goto mkdir_out; } + mode &= ~current->fs->umask; rc = CIFSPOSIXCreate(xid, pTcon, SMB_O_DIRECTORY | SMB_O_CREAT, mode, NULL /* netfid */, pInfo, &oplock, full_path, cifs_sb->local_nls, --
|  |