constify struct path argument of finish_automount()/do_add_mount()
[sfrench/cifs-2.6.git] / fs / namespace.c
index 40b994a29e90df04ba89730e275e7e5db8ba8bce..13d025a9ecf5ded4bf295138942c4a6d358559f9 100644 (file)
@@ -2876,7 +2876,7 @@ static int do_move_mount_old(struct path *path, const char *old_name)
  * add a mount into a namespace's mount tree
  */
 static int do_add_mount(struct mount *newmnt, struct mountpoint *mp,
-                       struct path *path, int mnt_flags)
+                       const struct path *path, int mnt_flags)
 {
        struct mount *parent = real_mount(path->mnt);
 
@@ -2999,7 +2999,7 @@ static int do_new_mount(struct path *path, const char *fstype, int sb_flags,
        return err;
 }
 
-int finish_automount(struct vfsmount *m, struct path *path)
+int finish_automount(struct vfsmount *m, const struct path *path)
 {
        struct dentry *dentry = path->dentry;
        struct mountpoint *mp;