Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280182
b: refs/heads/master
c: 676da58
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed Jan 4, 2012
1 parent 142832f commit bf8fb43
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1ab597386205f8dc757cf8750465502aeae65154
refs/heads/master: 676da58df740f325034b8641311413c2393588e1
3 changes: 2 additions & 1 deletion trunk/fs/dcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -2460,8 +2460,9 @@ static int prepend_path(const struct path *path,
struct dentry * parent;

if (dentry == vfsmnt->mnt_root || IS_ROOT(dentry)) {
struct mount *mnt = real_mount(vfsmnt);
/* Global root? */
if (!mnt_has_parent(vfsmnt))
if (!mnt_has_parent(mnt))
goto global_root;
dentry = vfsmnt->mnt_mountpoint;
vfsmnt = vfsmnt->mnt_parent;
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/mount.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ static inline struct mount *real_mount(struct vfsmount *mnt)
return container_of(mnt, struct mount, mnt);
}

static inline int mnt_has_parent(struct vfsmount *mnt)
static inline int mnt_has_parent(struct mount *mnt)
{
return mnt != mnt->mnt_parent;
return &mnt->mnt != mnt->mnt.mnt_parent;
}

extern struct mount *__lookup_mnt(struct vfsmount *, struct dentry *, int);
18 changes: 9 additions & 9 deletions trunk/fs/namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ void release_mounts(struct list_head *head)
while (!list_empty(head)) {
mnt = list_first_entry(head, struct mount, mnt_hash);
list_del_init(&mnt->mnt_hash);
if (mnt_has_parent(&mnt->mnt)) {
if (mnt_has_parent(mnt)) {
struct dentry *dentry;
struct vfsmount *m;

Expand Down Expand Up @@ -1235,7 +1235,7 @@ void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
p->mnt.mnt_ns = NULL;
__mnt_make_shortterm(&p->mnt);
list_del_init(&p->mnt.mnt_child);
if (mnt_has_parent(&p->mnt)) {
if (mnt_has_parent(p)) {
p->mnt.mnt_parent->mnt_ghosts++;
dentry_reset_mounted(p->mnt.mnt_mountpoint);
}
Expand Down Expand Up @@ -1861,7 +1861,7 @@ static inline int tree_contains_unbindable(struct mount *mnt)
static int do_move_mount(struct path *path, char *old_name)
{
struct path old_path, parent_path;
struct vfsmount *p;
struct mount *p;
struct mount *old;
int err = 0;
if (!capable(CAP_SYS_ADMIN))
Expand Down Expand Up @@ -1889,7 +1889,7 @@ static int do_move_mount(struct path *path, char *old_name)

old = real_mount(old_path.mnt);

if (!mnt_has_parent(old_path.mnt))
if (!mnt_has_parent(old))
goto out1;

if (S_ISDIR(path->dentry->d_inode->i_mode) !=
Expand All @@ -1908,8 +1908,8 @@ static int do_move_mount(struct path *path, char *old_name)
tree_contains_unbindable(old))
goto out1;
err = -ELOOP;
for (p = path->mnt; mnt_has_parent(p); p = p->mnt_parent)
if (p == old_path.mnt)
for (p = real_mount(path->mnt); mnt_has_parent(p); p = real_mount(p->mnt.mnt_parent))
if (p == old)
goto out1;

err = attach_recursive_mnt(old, path, &parent_path);
Expand Down Expand Up @@ -2562,7 +2562,7 @@ SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
bool is_path_reachable(struct vfsmount *mnt, struct dentry *dentry,
const struct path *root)
{
while (mnt != root->mnt && mnt_has_parent(mnt)) {
while (mnt != root->mnt && mnt_has_parent(real_mount(mnt))) {
dentry = mnt->mnt_mountpoint;
mnt = mnt->mnt_parent;
}
Expand Down Expand Up @@ -2652,11 +2652,11 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
error = -EINVAL;
if (root.mnt->mnt_root != root.dentry)
goto out4; /* not a mountpoint */
if (!mnt_has_parent(root.mnt))
if (!mnt_has_parent(root_mnt))
goto out4; /* not attached */
if (new.mnt->mnt_root != new.dentry)
goto out4; /* not a mountpoint */
if (!mnt_has_parent(new.mnt))
if (!mnt_has_parent(new_mnt))
goto out4; /* not attached */
/* make sure we can reach put_old from new_root */
if (!is_path_reachable(old.mnt, old.dentry, &new))
Expand Down

0 comments on commit bf8fb43

Please sign in to comment.