don't pass nameidata * to vfs_create()
[deliverable/linux.git] / ipc / mqueue.c
index da2c188688b153310b27e906c289f686d403d9b2..2dee38d53c73444496746451c418e7d2c46d72d9 100644 (file)
@@ -751,7 +751,7 @@ static struct file *do_create(struct ipc_namespace *ipc_ns, struct dentry *dir,
        ret = mnt_want_write(ipc_ns->mq_mnt);
        if (ret)
                goto out;
-       ret = vfs_create(dir->d_inode, dentry, mode, NULL);
+       ret = vfs_create(dir->d_inode, dentry, mode, true);
        dentry->d_fsdata = NULL;
        if (ret)
                goto out_drop_write;
This page took 0.042287 seconds and 5 git commands to generate.