diff options
author | Jan Blunck <jblunck@suse.de> | 2008-02-14 22:34:39 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-15 00:13:33 -0500 |
commit | ac748a09fc873915254ed69fe83f1a95436ee30a (patch) | |
tree | 1544b5d5d71e1d4902a1e1255ef8703260a0150e /fs/namespace.c | |
parent | 6ac08c39a16f72c2d3e845cb6849a1392fa03e80 (diff) |
Make set_fs_{root,pwd} take a struct path
In nearly all cases the set_fs_{root,pwd}() calls work on a struct
path. Change the function to reflect this and use path_get() here.
Signed-off-by: Jan Blunck <jblunck@suse.de>
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Acked-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index ac19212c9bc3..eef57635ee07 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1650,15 +1650,14 @@ out1: | |||
1650 | * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values. | 1650 | * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values. |
1651 | * It can block. Requires the big lock held. | 1651 | * It can block. Requires the big lock held. |
1652 | */ | 1652 | */ |
1653 | void set_fs_root(struct fs_struct *fs, struct vfsmount *mnt, | 1653 | void set_fs_root(struct fs_struct *fs, struct path *path) |
1654 | struct dentry *dentry) | ||
1655 | { | 1654 | { |
1656 | struct path old_root; | 1655 | struct path old_root; |
1657 | 1656 | ||
1658 | write_lock(&fs->lock); | 1657 | write_lock(&fs->lock); |
1659 | old_root = fs->root; | 1658 | old_root = fs->root; |
1660 | fs->root.mnt = mntget(mnt); | 1659 | fs->root = *path; |
1661 | fs->root.dentry = dget(dentry); | 1660 | path_get(path); |
1662 | write_unlock(&fs->lock); | 1661 | write_unlock(&fs->lock); |
1663 | if (old_root.dentry) | 1662 | if (old_root.dentry) |
1664 | path_put(&old_root); | 1663 | path_put(&old_root); |
@@ -1668,15 +1667,14 @@ void set_fs_root(struct fs_struct *fs, struct vfsmount *mnt, | |||
1668 | * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. | 1667 | * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values. |
1669 | * It can block. Requires the big lock held. | 1668 | * It can block. Requires the big lock held. |
1670 | */ | 1669 | */ |
1671 | void set_fs_pwd(struct fs_struct *fs, struct vfsmount *mnt, | 1670 | void set_fs_pwd(struct fs_struct *fs, struct path *path) |
1672 | struct dentry *dentry) | ||
1673 | { | 1671 | { |
1674 | struct path old_pwd; | 1672 | struct path old_pwd; |
1675 | 1673 | ||
1676 | write_lock(&fs->lock); | 1674 | write_lock(&fs->lock); |
1677 | old_pwd = fs->pwd; | 1675 | old_pwd = fs->pwd; |
1678 | fs->pwd.mnt = mntget(mnt); | 1676 | fs->pwd = *path; |
1679 | fs->pwd.dentry = dget(dentry); | 1677 | path_get(path); |
1680 | write_unlock(&fs->lock); | 1678 | write_unlock(&fs->lock); |
1681 | 1679 | ||
1682 | if (old_pwd.dentry) | 1680 | if (old_pwd.dentry) |
@@ -1697,12 +1695,10 @@ static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd) | |||
1697 | task_unlock(p); | 1695 | task_unlock(p); |
1698 | if (fs->root.dentry == old_nd->path.dentry | 1696 | if (fs->root.dentry == old_nd->path.dentry |
1699 | && fs->root.mnt == old_nd->path.mnt) | 1697 | && fs->root.mnt == old_nd->path.mnt) |
1700 | set_fs_root(fs, new_nd->path.mnt, | 1698 | set_fs_root(fs, &new_nd->path); |
1701 | new_nd->path.dentry); | ||
1702 | if (fs->pwd.dentry == old_nd->path.dentry | 1699 | if (fs->pwd.dentry == old_nd->path.dentry |
1703 | && fs->pwd.mnt == old_nd->path.mnt) | 1700 | && fs->pwd.mnt == old_nd->path.mnt) |
1704 | set_fs_pwd(fs, new_nd->path.mnt, | 1701 | set_fs_pwd(fs, &new_nd->path); |
1705 | new_nd->path.dentry); | ||
1706 | put_fs_struct(fs); | 1702 | put_fs_struct(fs); |
1707 | } else | 1703 | } else |
1708 | task_unlock(p); | 1704 | task_unlock(p); |
@@ -1845,6 +1841,7 @@ static void __init init_mount_tree(void) | |||
1845 | { | 1841 | { |
1846 | struct vfsmount *mnt; | 1842 | struct vfsmount *mnt; |
1847 | struct mnt_namespace *ns; | 1843 | struct mnt_namespace *ns; |
1844 | struct path root; | ||
1848 | 1845 | ||
1849 | mnt = do_kern_mount("rootfs", 0, "rootfs", NULL); | 1846 | mnt = do_kern_mount("rootfs", 0, "rootfs", NULL); |
1850 | if (IS_ERR(mnt)) | 1847 | if (IS_ERR(mnt)) |
@@ -1863,8 +1860,11 @@ static void __init init_mount_tree(void) | |||
1863 | init_task.nsproxy->mnt_ns = ns; | 1860 | init_task.nsproxy->mnt_ns = ns; |
1864 | get_mnt_ns(ns); | 1861 | get_mnt_ns(ns); |
1865 | 1862 | ||
1866 | set_fs_pwd(current->fs, ns->root, ns->root->mnt_root); | 1863 | root.mnt = ns->root; |
1867 | set_fs_root(current->fs, ns->root, ns->root->mnt_root); | 1864 | root.dentry = ns->root->mnt_root; |
1865 | |||
1866 | set_fs_pwd(current->fs, &root); | ||
1867 | set_fs_root(current->fs, &root); | ||
1868 | } | 1868 | } |
1869 | 1869 | ||
1870 | void __init mnt_init(void) | 1870 | void __init mnt_init(void) |