Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
E-EXK4 - Operating System Group
projects
Linux
Commits
1a4eeaf2
Commit
1a4eeaf2
authored
13 years ago
by
Al Viro
Browse files
Options
Downloads
Patches
Plain Diff
vfs: move mnt_list to struct mount
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
fc7be130
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
fs/mount.h
+2
-1
2 additions, 1 deletion
fs/mount.h
fs/namespace.c
+24
-23
24 additions, 23 deletions
fs/namespace.c
include/linux/mount.h
+0
-1
0 additions, 1 deletion
include/linux/mount.h
with
26 additions
and
25 deletions
fs/mount.h
+
2
−
1
View file @
1a4eeaf2
...
@@ -19,7 +19,8 @@ struct mount {
...
@@ -19,7 +19,8 @@ struct mount {
#endif
#endif
struct
list_head
mnt_mounts
;
/* list of children, anchored here */
struct
list_head
mnt_mounts
;
/* list of children, anchored here */
struct
list_head
mnt_child
;
/* and going through their mnt_child */
struct
list_head
mnt_child
;
/* and going through their mnt_child */
/* yet to be moved - up to mnt_list */
/* yet to be moved - up to mnt_devname */
struct
list_head
mnt_list
;
struct
list_head
mnt_expire
;
/* link in fs-specific expiry list */
struct
list_head
mnt_expire
;
/* link in fs-specific expiry list */
struct
list_head
mnt_share
;
/* circular list of shared mounts */
struct
list_head
mnt_share
;
/* circular list of shared mounts */
struct
list_head
mnt_slave_list
;
/* list of slave mounts */
struct
list_head
mnt_slave_list
;
/* list of slave mounts */
...
...
This diff is collapsed.
Click to expand it.
fs/namespace.c
+
24
−
23
View file @
1a4eeaf2
...
@@ -202,7 +202,7 @@ static struct mount *alloc_vfsmnt(const char *name)
...
@@ -202,7 +202,7 @@ static struct mount *alloc_vfsmnt(const char *name)
INIT_LIST_HEAD
(
&
p
->
mnt_hash
);
INIT_LIST_HEAD
(
&
p
->
mnt_hash
);
INIT_LIST_HEAD
(
&
p
->
mnt_child
);
INIT_LIST_HEAD
(
&
p
->
mnt_child
);
INIT_LIST_HEAD
(
&
p
->
mnt_mounts
);
INIT_LIST_HEAD
(
&
p
->
mnt_mounts
);
INIT_LIST_HEAD
(
&
mnt
->
mnt_list
);
INIT_LIST_HEAD
(
&
p
->
mnt_list
);
INIT_LIST_HEAD
(
&
p
->
mnt_expire
);
INIT_LIST_HEAD
(
&
p
->
mnt_expire
);
INIT_LIST_HEAD
(
&
p
->
mnt_share
);
INIT_LIST_HEAD
(
&
p
->
mnt_share
);
INIT_LIST_HEAD
(
&
p
->
mnt_slave_list
);
INIT_LIST_HEAD
(
&
p
->
mnt_slave_list
);
...
@@ -618,8 +618,8 @@ static void commit_tree(struct mount *mnt)
...
@@ -618,8 +618,8 @@ static void commit_tree(struct mount *mnt)
BUG_ON
(
parent
==
mnt
);
BUG_ON
(
parent
==
mnt
);
list_add_tail
(
&
head
,
&
mnt
->
mnt
.
mnt
_list
);
list_add_tail
(
&
head
,
&
mnt
->
mnt_list
);
list_for_each_entry
(
m
,
&
head
,
mnt
.
mnt_list
)
{
list_for_each_entry
(
m
,
&
head
,
mnt_list
)
{
m
->
mnt_ns
=
n
;
m
->
mnt_ns
=
n
;
__mnt_make_longterm
(
m
);
__mnt_make_longterm
(
m
);
}
}
...
@@ -987,7 +987,8 @@ static void show_type(struct seq_file *m, struct super_block *sb)
...
@@ -987,7 +987,8 @@ static void show_type(struct seq_file *m, struct super_block *sb)
static
int
show_vfsmnt
(
struct
seq_file
*
m
,
void
*
v
)
static
int
show_vfsmnt
(
struct
seq_file
*
m
,
void
*
v
)
{
{
struct
vfsmount
*
mnt
=
list_entry
(
v
,
struct
vfsmount
,
mnt_list
);
struct
mount
*
r
=
list_entry
(
v
,
struct
mount
,
mnt_list
);
struct
vfsmount
*
mnt
=
&
r
->
mnt
;
int
err
=
0
;
int
err
=
0
;
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
...
@@ -1024,8 +1025,8 @@ const struct seq_operations mounts_op = {
...
@@ -1024,8 +1025,8 @@ const struct seq_operations mounts_op = {
static
int
show_mountinfo
(
struct
seq_file
*
m
,
void
*
v
)
static
int
show_mountinfo
(
struct
seq_file
*
m
,
void
*
v
)
{
{
struct
proc_mounts
*
p
=
m
->
private
;
struct
proc_mounts
*
p
=
m
->
private
;
struct
vfs
mount
*
mnt
=
list_entry
(
v
,
struct
vfs
mount
,
mnt_list
);
struct
mount
*
r
=
list_entry
(
v
,
struct
mount
,
mnt_list
);
struct
mount
*
r
=
real_mount
(
mnt
)
;
struct
vfs
mount
*
mnt
=
&
r
->
mnt
;
struct
super_block
*
sb
=
mnt
->
mnt_sb
;
struct
super_block
*
sb
=
mnt
->
mnt_sb
;
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
struct
path
root
=
p
->
root
;
struct
path
root
=
p
->
root
;
...
@@ -1092,7 +1093,8 @@ const struct seq_operations mountinfo_op = {
...
@@ -1092,7 +1093,8 @@ const struct seq_operations mountinfo_op = {
static
int
show_vfsstat
(
struct
seq_file
*
m
,
void
*
v
)
static
int
show_vfsstat
(
struct
seq_file
*
m
,
void
*
v
)
{
{
struct
vfsmount
*
mnt
=
list_entry
(
v
,
struct
vfsmount
,
mnt_list
);
struct
mount
*
r
=
list_entry
(
v
,
struct
mount
,
mnt_list
);
struct
vfsmount
*
mnt
=
&
r
->
mnt
;
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
struct
path
mnt_path
=
{
.
dentry
=
mnt
->
mnt_root
,
.
mnt
=
mnt
};
int
err
=
0
;
int
err
=
0
;
...
@@ -1235,7 +1237,7 @@ void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
...
@@ -1235,7 +1237,7 @@ void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
list_for_each_entry
(
p
,
&
tmp_list
,
mnt_hash
)
{
list_for_each_entry
(
p
,
&
tmp_list
,
mnt_hash
)
{
list_del_init
(
&
p
->
mnt_expire
);
list_del_init
(
&
p
->
mnt_expire
);
list_del_init
(
&
p
->
mnt
.
mnt
_list
);
list_del_init
(
&
p
->
mnt_list
);
__touch_mnt_namespace
(
p
->
mnt_ns
);
__touch_mnt_namespace
(
p
->
mnt_ns
);
p
->
mnt_ns
=
NULL
;
p
->
mnt_ns
=
NULL
;
__mnt_make_shortterm
(
p
);
__mnt_make_shortterm
(
p
);
...
@@ -1331,7 +1333,7 @@ static int do_umount(struct mount *mnt, int flags)
...
@@ -1331,7 +1333,7 @@ static int do_umount(struct mount *mnt, int flags)
retval
=
-
EBUSY
;
retval
=
-
EBUSY
;
if
(
flags
&
MNT_DETACH
||
!
propagate_mount_busy
(
mnt
,
2
))
{
if
(
flags
&
MNT_DETACH
||
!
propagate_mount_busy
(
mnt
,
2
))
{
if
(
!
list_empty
(
&
mnt
->
mnt
.
mnt
_list
))
if
(
!
list_empty
(
&
mnt
->
mnt_list
))
umount_tree
(
mnt
,
1
,
&
umount_list
);
umount_tree
(
mnt
,
1
,
&
umount_list
);
retval
=
0
;
retval
=
0
;
}
}
...
@@ -1451,7 +1453,7 @@ struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
...
@@ -1451,7 +1453,7 @@ struct mount *copy_tree(struct mount *mnt, struct dentry *dentry,
if
(
!
q
)
if
(
!
q
)
goto
Enomem
;
goto
Enomem
;
br_write_lock
(
vfsmount_lock
);
br_write_lock
(
vfsmount_lock
);
list_add_tail
(
&
q
->
mnt
.
mnt
_list
,
&
res
->
mnt
.
mnt
_list
);
list_add_tail
(
&
q
->
mnt_list
,
&
res
->
mnt_list
);
attach_mnt
(
q
,
&
path
);
attach_mnt
(
q
,
&
path
);
br_write_unlock
(
vfsmount_lock
);
br_write_unlock
(
vfsmount_lock
);
}
}
...
@@ -1492,12 +1494,12 @@ void drop_collected_mounts(struct vfsmount *mnt)
...
@@ -1492,12 +1494,12 @@ void drop_collected_mounts(struct vfsmount *mnt)
int
iterate_mounts
(
int
(
*
f
)(
struct
vfsmount
*
,
void
*
),
void
*
arg
,
int
iterate_mounts
(
int
(
*
f
)(
struct
vfsmount
*
,
void
*
),
void
*
arg
,
struct
vfsmount
*
root
)
struct
vfsmount
*
root
)
{
{
struct
vfs
mount
*
mnt
;
struct
mount
*
mnt
;
int
res
=
f
(
root
,
arg
);
int
res
=
f
(
root
,
arg
);
if
(
res
)
if
(
res
)
return
res
;
return
res
;
list_for_each_entry
(
mnt
,
&
root
->
mnt_list
,
mnt_list
)
{
list_for_each_entry
(
mnt
,
&
real_mount
(
root
)
->
mnt_list
,
mnt_list
)
{
res
=
f
(
mnt
,
arg
);
res
=
f
(
&
mnt
->
mnt
,
arg
);
if
(
res
)
if
(
res
)
return
res
;
return
res
;
}
}
...
@@ -2415,7 +2417,7 @@ static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
...
@@ -2415,7 +2417,7 @@ static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
}
}
new_ns
->
root
=
&
new
->
mnt
;
new_ns
->
root
=
&
new
->
mnt
;
br_write_lock
(
vfsmount_lock
);
br_write_lock
(
vfsmount_lock
);
list_add_tail
(
&
new_ns
->
list
,
&
new
_ns
->
root
->
mnt_list
);
list_add_tail
(
&
new_ns
->
list
,
&
new
->
mnt_list
);
br_write_unlock
(
vfsmount_lock
);
br_write_unlock
(
vfsmount_lock
);
/*
/*
...
@@ -2476,18 +2478,17 @@ struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
...
@@ -2476,18 +2478,17 @@ struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
* create_mnt_ns - creates a private namespace and adds a root filesystem
* create_mnt_ns - creates a private namespace and adds a root filesystem
* @mnt: pointer to the new root filesystem mountpoint
* @mnt: pointer to the new root filesystem mountpoint
*/
*/
static
struct
mnt_namespace
*
create_mnt_ns
(
struct
vfsmount
*
m
nt
)
static
struct
mnt_namespace
*
create_mnt_ns
(
struct
vfsmount
*
m
)
{
{
struct
mnt_namespace
*
new_ns
;
struct
mnt_namespace
*
new_ns
=
alloc_mnt_ns
();
new_ns
=
alloc_mnt_ns
();
if
(
!
IS_ERR
(
new_ns
))
{
if
(
!
IS_ERR
(
new_ns
))
{
real_mount
(
mnt
)
->
mnt_ns
=
new_ns
;
struct
mount
*
mnt
=
real_mount
(
m
);
__mnt_make_longterm
(
real_mount
(
mnt
));
mnt
->
mnt_ns
=
new_ns
;
new_ns
->
root
=
mnt
;
__mnt_make_longterm
(
mnt
);
list_add
(
&
new_ns
->
list
,
&
new_ns
->
root
->
mnt_list
);
new_ns
->
root
=
m
;
list_add
(
&
new_ns
->
list
,
&
mnt
->
mnt_list
);
}
else
{
}
else
{
mntput
(
m
nt
);
mntput
(
m
);
}
}
return
new_ns
;
return
new_ns
;
}
}
...
...
This diff is collapsed.
Click to expand it.
include/linux/mount.h
+
0
−
1
View file @
1a4eeaf2
...
@@ -57,7 +57,6 @@ struct vfsmount {
...
@@ -57,7 +57,6 @@ struct vfsmount {
struct
hlist_head
mnt_fsnotify_marks
;
struct
hlist_head
mnt_fsnotify_marks
;
#endif
#endif
const
char
*
mnt_devname
;
/* Name of device e.g. /dev/dsk/hda1 */
const
char
*
mnt_devname
;
/* Name of device e.g. /dev/dsk/hda1 */
struct
list_head
mnt_list
;
};
};
struct
file
;
/* forward dec */
struct
file
;
/* forward dec */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment