]> www.infradead.org Git - users/hch/misc.git/commitdiff
may_copy_tree(), __do_loopback(): constify struct path argument
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 24 Aug 2025 18:23:24 +0000 (14:23 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Tue, 16 Sep 2025 01:26:44 +0000 (21:26 -0400)
Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/namespace.c

index 37afd82af6287b911119ea650cbe2a2561eb93b9..e09688d63dacf7ee543413f6ef1a39f053de8842 100644 (file)
@@ -2984,7 +2984,7 @@ static int do_change_type(const struct path *path, int ms_flags)
  *
  * Returns true if the mount tree can be copied, false otherwise.
  */
-static inline bool may_copy_tree(struct path *path)
+static inline bool may_copy_tree(const struct path *path)
 {
        struct mount *mnt = real_mount(path->mnt);
        const struct dentry_operations *d_op;
@@ -3006,7 +3006,7 @@ static inline bool may_copy_tree(struct path *path)
 }
 
 
-static struct mount *__do_loopback(struct path *old_path, int recurse)
+static struct mount *__do_loopback(const struct path *old_path, int recurse)
 {
        struct mount *old = real_mount(old_path->mnt);