]> www.infradead.org Git - users/hch/misc.git/commitdiff
do_move_mount(): trim local variables
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 20 Aug 2025 01:34:03 +0000 (21:34 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Tue, 2 Sep 2025 23:35:58 +0000 (19:35 -0400)
Both 'parent' and 'ns' are used at most once, no point precalculating those...

Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namespace.c

index 9b575c9eee0bb956d8a50effa387a77dc0281f5f..ad9b5687ff151a50d2c24d1c1f851dfdb42a2c6b 100644 (file)
@@ -3564,10 +3564,8 @@ static inline bool may_use_mount(struct mount *mnt)
 static int do_move_mount(struct path *old_path,
                         struct path *new_path, enum mnt_tree_flags_t flags)
 {
-       struct mnt_namespace *ns;
        struct mount *p;
        struct mount *old;
-       struct mount *parent;
        struct pinned_mountpoint mp;
        int err;
        bool beneath = flags & MNT_TREE_BENEATH;
@@ -3578,8 +3576,6 @@ static int do_move_mount(struct path *old_path,
 
        old = real_mount(old_path->mnt);
        p = real_mount(new_path->mnt);
-       parent = old->mnt_parent;
-       ns = old->mnt_ns;
 
        err = -EINVAL;
 
@@ -3588,12 +3584,12 @@ static int do_move_mount(struct path *old_path,
                /* ... it should be detachable from parent */
                if (!mnt_has_parent(old) || IS_MNT_LOCKED(old))
                        goto out;
+               /* ... which should not be shared */
+               if (IS_MNT_SHARED(old->mnt_parent))
+                       goto out;
                /* ... and the target should be in our namespace */
                if (!check_mnt(p))
                        goto out;
-               /* parent of the source should not be shared */
-               if (IS_MNT_SHARED(parent))
-                       goto out;
        } else {
                /*
                 * otherwise the source must be the root of some anon namespace.
@@ -3605,7 +3601,7 @@ static int do_move_mount(struct path *old_path,
                 * subsequent checks would've rejected that, but they lose
                 * some corner cases if we check it early.
                 */
-               if (ns == p->mnt_ns)
+               if (old->mnt_ns == p->mnt_ns)
                        goto out;
                /*
                 * Target should be either in our namespace or in an acceptable