diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2025-08-24 19:34:37 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2025-09-15 21:26:44 -0400 |
| commit | b42ffcd5069d5cfb777b8982a1c55c7e2f1d3998 (patch) | |
| tree | 4857fe5e55bcc28a7f3f88837f03fa5246c921db /include | |
| parent | drop_collected_paths(): constify arguments (diff) | |
| download | linux-b42ffcd5069d5cfb777b8982a1c55c7e2f1d3998.tar.gz linux-b42ffcd5069d5cfb777b8982a1c55c7e2f1d3998.zip | |
collect_paths(): constify the return value
callers have no business modifying the paths they get
Reviewed-by: Christian Brauner <brauner@kernel.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/mount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mount.h b/include/linux/mount.h index c09032463b36..18e4b97f8a98 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h @@ -104,8 +104,8 @@ extern int may_umount_tree(struct vfsmount *); extern int may_umount(struct vfsmount *); int do_mount(const char *, const char __user *, const char *, unsigned long, void *); -extern struct path *collect_paths(const struct path *, struct path *, unsigned); -extern void drop_collected_paths(const struct path *, struct path *); +extern const struct path *collect_paths(const struct path *, struct path *, unsigned); +extern void drop_collected_paths(const struct path *, const struct path *); extern void kern_unmount_array(struct vfsmount *mnt[], unsigned int num); extern int cifs_root_data(char **dev, char **opts); |
