tidy do_mq_open() up a bit
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 1 Dec 2017 23:01:09 +0000 (18:01 -0500)
committerAl Viro <viro@zeniv.linux.org.uk>
Fri, 5 Jan 2018 16:54:36 +0000 (11:54 -0500)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
ipc/mqueue.c

index ce498ff906bb695dfd3602062809ba1aceaec39c..9f05837a86a64414ef8ee445c976a9c7a2f1c6e1 100644 (file)
@@ -743,12 +743,11 @@ static int prepare_open(struct dentry *dentry, int oflag, int ro,
 static int do_mq_open(const char __user *u_name, int oflag, umode_t mode,
                      struct mq_attr *attr)
 {
-       struct path path;
+       struct vfsmount *mnt = current->nsproxy->ipc_ns->mq_mnt;
+       struct dentry *root = mnt->mnt_root;
        struct filename *name;
+       struct path path;
        int fd, error;
-       struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
-       struct vfsmount *mnt = ipc_ns->mq_mnt;
-       struct dentry *root = mnt->mnt_root;
        int ro;
 
        audit_mq_open(oflag, mode, attr);
@@ -761,7 +760,6 @@ static int do_mq_open(const char __user *u_name, int oflag, umode_t mode,
                goto out_putname;
 
        ro = mnt_want_write(mnt);       /* we'll drop it in any case */
-       error = 0;
        inode_lock(d_inode(root));
        path.dentry = lookup_one_len(name->name, root, strlen(name->name));
        if (IS_ERR(path.dentry)) {
@@ -769,7 +767,6 @@ static int do_mq_open(const char __user *u_name, int oflag, umode_t mode,
                goto out_putfd;
        }
        path.mnt = mntget(mnt);
-
        error = prepare_open(path.dentry, oflag, ro, mode, name, attr);
        if (!error) {
                struct file *file = dentry_open(&path, oflag, current_cred());