Commit 38227f78 authored by Miklos Szeredi's avatar Miklos Szeredi

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: default avatarMiklos Szeredi <mszeredi@suse.cz>
Tested-by: default avatarRichard W.M. Jones <rjones@redhat.com>
parent 62b259d8
...@@ -2452,7 +2452,7 @@ static int atomic_open(struct nameidata *nd, struct dentry *dentry, ...@@ -2452,7 +2452,7 @@ static int atomic_open(struct nameidata *nd, struct dentry *dentry,
} }
if (open_flag & O_CREAT) { if (open_flag & O_CREAT) {
error = may_o_create(&nd->path, dentry, op->mode); error = may_o_create(&nd->path, dentry, mode);
if (error) { if (error) {
create_error = error; create_error = error;
if (open_flag & O_EXCL) if (open_flag & O_EXCL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment