From: Miklos Szeredi Date: Wed, 15 Aug 2012 11:01:24 +0000 (+0200) Subject: vfs: pass right create mode to may_o_create() X-Git-Tag: v3.6-rc3~34^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38227f78a5020b3100cbb0406c89807563b10dae;p=profile%2Fivi%2Fkernel-x86-ivi.git vfs: pass right create mode to may_o_create() Pass the umask-ed create mode to may_o_create() instead of the original one. Signed-off-by: Miklos Szeredi Tested-by: Richard W.M. Jones --- diff --git a/fs/namei.c b/fs/namei.c index 5bac1bb..26c28ec 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -2452,7 +2452,7 @@ static int atomic_open(struct nameidata *nd, struct dentry *dentry, } if (open_flag & O_CREAT) { - error = may_o_create(&nd->path, dentry, op->mode); + error = may_o_create(&nd->path, dentry, mode); if (error) { create_error = error; if (open_flag & O_EXCL)