From: Krzysztof Benedyczak Date: Tue, 27 Sep 2005 20:21:36 +0000 (+0200) Subject: [PATCH] Make POSIX message queue sys_mq_open() honor umask X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=59175839783287d3b03f18460bb3539c69300837;p=linux-beck.git [PATCH] Make POSIX message queue sys_mq_open() honor umask We ignored umask when creating new queues via mq_open (when creating with open() on mqueue fs it is ok of course). According to the specification this a bug. This trivial patch fixes this. Signed-off-by: Krzysztof Benedyczak Signed-off-by: Linus Torvalds --- diff --git a/ipc/mqueue.c b/ipc/mqueue.c index 3a926011507b..a0f18c9cc89d 100644 --- a/ipc/mqueue.c +++ b/ipc/mqueue.c @@ -611,6 +611,7 @@ static struct file *do_create(struct dentry *dir, struct dentry *dentry, dentry->d_fsdata = &attr; } + mode &= ~current->fs->umask; ret = vfs_create(dir->d_inode, dentry, mode, NULL); dentry->d_fsdata = NULL; if (ret)