Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3376f34f
Commit
3376f34f
authored
Nov 24, 2011
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vfs: mnt_parent moved to struct mount
the second victim... Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
643822b4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
29 deletions
+30
-29
fs/dcache.c
fs/dcache.c
+1
-1
fs/mount.h
fs/mount.h
+2
-1
fs/namei.c
fs/namei.c
+2
-2
fs/namespace.c
fs/namespace.c
+23
-22
fs/pnode.c
fs/pnode.c
+2
-2
include/linux/mount.h
include/linux/mount.h
+0
-1
No files found.
fs/dcache.c
View file @
3376f34f
...
...
@@ -2465,7 +2465,7 @@ static int prepend_path(const struct path *path,
if
(
!
mnt_has_parent
(
mnt
))
goto
global_root
;
dentry
=
vfsmnt
->
mnt_mountpoint
;
vfsmnt
=
vfs
mnt
->
mnt_parent
;
vfsmnt
=
mnt
->
mnt_parent
;
continue
;
}
parent
=
dentry
->
d_parent
;
...
...
fs/mount.h
View file @
3376f34f
...
...
@@ -2,6 +2,7 @@
struct
mount
{
struct
list_head
mnt_hash
;
struct
vfsmount
*
mnt_parent
;
struct
vfsmount
mnt
;
};
...
...
@@ -12,7 +13,7 @@ static inline struct mount *real_mount(struct vfsmount *mnt)
static
inline
int
mnt_has_parent
(
struct
mount
*
mnt
)
{
return
&
mnt
->
mnt
!=
mnt
->
mnt
.
mnt
_parent
;
return
&
mnt
->
mnt
!=
mnt
->
mnt_parent
;
}
extern
struct
mount
*
__lookup_mnt
(
struct
vfsmount
*
,
struct
dentry
*
,
int
);
fs/namei.c
View file @
3376f34f
...
...
@@ -680,7 +680,7 @@ static int follow_up_rcu(struct path *path)
struct
vfsmount
*
parent
;
struct
dentry
*
mountpoint
;
parent
=
path
->
mnt
->
mnt_parent
;
parent
=
real_mount
(
path
->
mnt
)
->
mnt_parent
;
if
(
parent
==
path
->
mnt
)
return
0
;
mountpoint
=
path
->
mnt
->
mnt_mountpoint
;
...
...
@@ -695,7 +695,7 @@ int follow_up(struct path *path)
struct
dentry
*
mountpoint
;
br_read_lock
(
vfsmount_lock
);
parent
=
path
->
mnt
->
mnt_parent
;
parent
=
real_mount
(
path
->
mnt
)
->
mnt_parent
;
if
(
parent
==
path
->
mnt
)
{
br_read_unlock
(
vfsmount_lock
);
return
0
;
...
...
fs/namespace.c
View file @
3376f34f
...
...
@@ -476,7 +476,7 @@ struct mount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry,
if
(
tmp
==
head
)
break
;
p
=
list_entry
(
tmp
,
struct
mount
,
mnt_hash
);
if
(
p
->
mnt
.
mnt
_parent
==
mnt
&&
p
->
mnt
.
mnt_mountpoint
==
dentry
)
{
if
(
p
->
mnt_parent
==
mnt
&&
p
->
mnt
.
mnt_mountpoint
==
dentry
)
{
found
=
p
;
break
;
}
...
...
@@ -558,8 +558,8 @@ static void dentry_reset_mounted(struct dentry *dentry)
static
void
detach_mnt
(
struct
mount
*
mnt
,
struct
path
*
old_path
)
{
old_path
->
dentry
=
mnt
->
mnt
.
mnt_mountpoint
;
old_path
->
mnt
=
mnt
->
mnt
.
mnt
_parent
;
mnt
->
mnt
.
mnt
_parent
=
&
mnt
->
mnt
;
old_path
->
mnt
=
mnt
->
mnt_parent
;
mnt
->
mnt_parent
=
&
mnt
->
mnt
;
mnt
->
mnt
.
mnt_mountpoint
=
mnt
->
mnt
.
mnt_root
;
list_del_init
(
&
mnt
->
mnt
.
mnt_child
);
list_del_init
(
&
mnt
->
mnt_hash
);
...
...
@@ -572,7 +572,7 @@ static void detach_mnt(struct mount *mnt, struct path *old_path)
void
mnt_set_mountpoint
(
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
,
struct
mount
*
child_mnt
)
{
child_mnt
->
mnt
.
mnt
_parent
=
mntget
(
mnt
);
child_mnt
->
mnt_parent
=
mntget
(
mnt
);
child_mnt
->
mnt
.
mnt_mountpoint
=
dget
(
dentry
);
spin_lock
(
&
dentry
->
d_lock
);
dentry
->
d_flags
|=
DCACHE_MOUNTED
;
...
...
@@ -610,7 +610,7 @@ static inline void __mnt_make_shortterm(struct vfsmount *mnt)
*/
static
void
commit_tree
(
struct
mount
*
mnt
)
{
struct
vfsmount
*
parent
=
mnt
->
mnt
.
mnt
_parent
;
struct
vfsmount
*
parent
=
mnt
->
mnt_parent
;
struct
vfsmount
*
m
;
LIST_HEAD
(
head
);
struct
mnt_namespace
*
n
=
parent
->
mnt_ns
;
...
...
@@ -639,9 +639,9 @@ static struct mount *next_mnt(struct mount *p, struct vfsmount *root)
if
(
&
p
->
mnt
==
root
)
return
NULL
;
next
=
p
->
mnt
.
mnt_child
.
next
;
if
(
next
!=
&
p
->
mnt
.
mnt
_parent
->
mnt_mounts
)
if
(
next
!=
&
p
->
mnt_parent
->
mnt_mounts
)
break
;
p
=
real_mount
(
p
->
mnt
.
mnt
_parent
);
p
=
real_mount
(
p
->
mnt_parent
);
}
}
return
list_entry
(
next
,
struct
mount
,
mnt
.
mnt_child
);
...
...
@@ -682,7 +682,7 @@ vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void
mnt
->
mnt
.
mnt_root
=
root
;
mnt
->
mnt
.
mnt_sb
=
root
->
d_sb
;
mnt
->
mnt
.
mnt_mountpoint
=
mnt
->
mnt
.
mnt_root
;
mnt
->
mnt
.
mnt
_parent
=
&
mnt
->
mnt
;
mnt
->
mnt_parent
=
&
mnt
->
mnt
;
return
&
mnt
->
mnt
;
}
EXPORT_SYMBOL_GPL
(
vfs_kern_mount
);
...
...
@@ -710,7 +710,7 @@ static struct mount *clone_mnt(struct mount *old, struct dentry *root,
mnt
->
mnt
.
mnt_sb
=
sb
;
mnt
->
mnt
.
mnt_root
=
dget
(
root
);
mnt
->
mnt
.
mnt_mountpoint
=
mnt
->
mnt
.
mnt_root
;
mnt
->
mnt
.
mnt
_parent
=
&
mnt
->
mnt
;
mnt
->
mnt_parent
=
&
mnt
->
mnt
;
if
(
flag
&
CL_SLAVE
)
{
list_add
(
&
mnt
->
mnt
.
mnt_slave
,
&
old
->
mnt
.
mnt_slave_list
);
...
...
@@ -1021,12 +1021,13 @@ static int show_mountinfo(struct seq_file *m, void *v)
{
struct
proc_mounts
*
p
=
m
->
private
;
struct
vfsmount
*
mnt
=
list_entry
(
v
,
struct
vfsmount
,
mnt_list
);
struct
mount
*
r
=
real_mount
(
mnt
);
struct
super_block
*
sb
=
mnt
->
mnt_sb
;
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
struct
path
root
=
p
->
root
;
int
err
=
0
;
seq_printf
(
m
,
"%i %i %u:%u "
,
mnt
->
mnt_id
,
mnt
->
mnt_parent
->
mnt_id
,
seq_printf
(
m
,
"%i %i %u:%u "
,
mnt
->
mnt_id
,
r
->
mnt_parent
->
mnt_id
,
MAJOR
(
sb
->
s_dev
),
MINOR
(
sb
->
s_dev
));
if
(
sb
->
s_op
->
show_path
)
err
=
sb
->
s_op
->
show_path
(
m
,
mnt
);
...
...
@@ -1201,9 +1202,9 @@ void release_mounts(struct list_head *head)
br_write_lock
(
vfsmount_lock
);
dentry
=
mnt
->
mnt
.
mnt_mountpoint
;
m
=
mnt
->
mnt
.
mnt
_parent
;
m
=
mnt
->
mnt_parent
;
mnt
->
mnt
.
mnt_mountpoint
=
mnt
->
mnt
.
mnt_root
;
mnt
->
mnt
.
mnt
_parent
=
&
mnt
->
mnt
;
mnt
->
mnt_parent
=
&
mnt
->
mnt
;
m
->
mnt_ghosts
--
;
br_write_unlock
(
vfsmount_lock
);
dput
(
dentry
);
...
...
@@ -1236,7 +1237,7 @@ void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
__mnt_make_shortterm
(
&
p
->
mnt
);
list_del_init
(
&
p
->
mnt
.
mnt_child
);
if
(
mnt_has_parent
(
p
))
{
p
->
mnt
.
mnt
_parent
->
mnt_ghosts
++
;
p
->
mnt_parent
->
mnt_ghosts
++
;
dentry_reset_mounted
(
p
->
mnt
.
mnt_mountpoint
);
}
change_mnt_propagation
(
p
,
MS_PRIVATE
);
...
...
@@ -1434,9 +1435,9 @@ struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
s
=
skip_mnt_tree
(
s
);
continue
;
}
while
(
p
!=
real_mount
(
s
->
mnt
.
mnt
_parent
))
{
p
=
real_mount
(
p
->
mnt
.
mnt
_parent
);
q
=
real_mount
(
q
->
mnt
.
mnt
_parent
);
while
(
p
!=
real_mount
(
s
->
mnt_parent
))
{
p
=
real_mount
(
p
->
mnt_parent
);
q
=
real_mount
(
q
->
mnt_parent
);
}
p
=
s
;
path
.
mnt
=
&
q
->
mnt
;
...
...
@@ -1898,7 +1899,7 @@ static int do_move_mount(struct path *path, char *old_name)
/*
* Don't move a mount residing in a shared parent.
*/
if
(
IS_MNT_SHARED
(
old
_path
.
mnt
->
mnt_parent
))
if
(
IS_MNT_SHARED
(
old
->
mnt_parent
))
goto
out1
;
/*
* Don't move a mount tree containing unbindable mounts to a destination
...
...
@@ -1908,7 +1909,7 @@ static int do_move_mount(struct path *path, char *old_name)
tree_contains_unbindable
(
old
))
goto
out1
;
err
=
-
ELOOP
;
for
(
p
=
real_mount
(
path
->
mnt
);
mnt_has_parent
(
p
);
p
=
real_mount
(
p
->
mnt
.
mnt
_parent
))
for
(
p
=
real_mount
(
path
->
mnt
);
mnt_has_parent
(
p
);
p
=
real_mount
(
p
->
mnt_parent
))
if
(
p
==
old
)
goto
out1
;
...
...
@@ -2158,7 +2159,7 @@ static int select_submounts(struct mount *parent, struct list_head *graveyard)
*/
if
(
this_parent
!=
parent
)
{
next
=
this_parent
->
mnt
.
mnt_child
.
next
;
this_parent
=
real_mount
(
this_parent
->
mnt
.
mnt
_parent
);
this_parent
=
real_mount
(
this_parent
->
mnt_parent
);
goto
resume
;
}
return
found
;
...
...
@@ -2564,7 +2565,7 @@ bool is_path_reachable(struct mount *mnt, struct dentry *dentry,
{
while
(
&
mnt
->
mnt
!=
root
->
mnt
&&
mnt_has_parent
(
mnt
))
{
dentry
=
mnt
->
mnt
.
mnt_mountpoint
;
mnt
=
real_mount
(
mnt
->
mnt
.
mnt
_parent
);
mnt
=
real_mount
(
mnt
->
mnt_parent
);
}
return
&
mnt
->
mnt
==
root
->
mnt
&&
is_subdir
(
dentry
,
root
->
dentry
);
}
...
...
@@ -2635,8 +2636,8 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
new_mnt
=
real_mount
(
new
.
mnt
);
root_mnt
=
real_mount
(
root
.
mnt
);
if
(
IS_MNT_SHARED
(
old
.
mnt
)
||
IS_MNT_SHARED
(
new
.
mnt
->
mnt_parent
)
||
IS_MNT_SHARED
(
root
.
mnt
->
mnt_parent
))
IS_MNT_SHARED
(
new
_
mnt
->
mnt_parent
)
||
IS_MNT_SHARED
(
root
_
mnt
->
mnt_parent
))
goto
out4
;
if
(
!
check_mnt
(
root
.
mnt
)
||
!
check_mnt
(
new
.
mnt
))
goto
out4
;
...
...
fs/pnode.c
View file @
3376f34f
...
...
@@ -292,7 +292,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt)
{
struct
vfsmount
*
m
;
struct
mount
*
child
;
struct
vfsmount
*
parent
=
mnt
->
mnt
.
mnt
_parent
;
struct
vfsmount
*
parent
=
mnt
->
mnt_parent
;
int
ret
=
0
;
if
(
&
mnt
->
mnt
==
parent
)
...
...
@@ -322,7 +322,7 @@ int propagate_mount_busy(struct mount *mnt, int refcnt)
*/
static
void
__propagate_umount
(
struct
mount
*
mnt
)
{
struct
vfsmount
*
parent
=
mnt
->
mnt
.
mnt
_parent
;
struct
vfsmount
*
parent
=
mnt
->
mnt_parent
;
struct
vfsmount
*
m
;
BUG_ON
(
parent
==
&
mnt
->
mnt
);
...
...
include/linux/mount.h
View file @
3376f34f
...
...
@@ -53,7 +53,6 @@ struct mnt_pcp {
};
struct
vfsmount
{
struct
vfsmount
*
mnt_parent
;
/* fs we are mounted on */
struct
dentry
*
mnt_mountpoint
;
/* dentry of mountpoint */
struct
dentry
*
mnt_root
;
/* root of the mounted tree */
struct
super_block
*
mnt_sb
;
/* pointer to superblock */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment