aboutsummaryrefslogtreecommitdiffstats
path: root/fs/namespace.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/namespace.c')
-rw-r--r--fs/namespace.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/namespace.c b/fs/namespace.c
index 685687dccbf1..dfeeab964e84 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -650,7 +650,6 @@ static int graft_tree(struct vfsmount *mnt, struct nameidata *nd)
650 attach_mnt(mnt, nd); 650 attach_mnt(mnt, nd);
651 list_add_tail(&head, &mnt->mnt_list); 651 list_add_tail(&head, &mnt->mnt_list);
652 list_splice(&head, current->namespace->list.prev); 652 list_splice(&head, current->namespace->list.prev);
653 mntget(mnt);
654 err = 0; 653 err = 0;
655 touch_namespace(current->namespace); 654 touch_namespace(current->namespace);
656 } 655 }
@@ -702,8 +701,7 @@ static int do_loopback(struct nameidata *nd, char *old_name, int recurse)
702 spin_lock(&vfsmount_lock); 701 spin_lock(&vfsmount_lock);
703 umount_tree(mnt); 702 umount_tree(mnt);
704 spin_unlock(&vfsmount_lock); 703 spin_unlock(&vfsmount_lock);
705 } else 704 }
706 mntput(mnt);
707 705
708out: 706out:
709 up_write(&current->namespace->sem); 707 up_write(&current->namespace->sem);
@@ -857,15 +855,17 @@ int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd,
857 goto unlock; 855 goto unlock;
858 856
859 newmnt->mnt_flags = mnt_flags; 857 newmnt->mnt_flags = mnt_flags;
860 newmnt->mnt_namespace = current->namespace; 858 if ((err = graft_tree(newmnt, nd)))
861 err = graft_tree(newmnt, nd); 859 goto unlock;
862 860
863 if (err == 0 && fslist) { 861 if (fslist) {
864 /* add to the specified expiration list */ 862 /* add to the specified expiration list */
865 spin_lock(&vfsmount_lock); 863 spin_lock(&vfsmount_lock);
866 list_add_tail(&newmnt->mnt_expire, fslist); 864 list_add_tail(&newmnt->mnt_expire, fslist);
867 spin_unlock(&vfsmount_lock); 865 spin_unlock(&vfsmount_lock);
868 } 866 }
867 up_write(&current->namespace->sem);
868 return 0;
869 869
870unlock: 870unlock:
871 up_write(&current->namespace->sem); 871 up_write(&current->namespace->sem);