Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xenomai
ipipe
Commits
3ab6abee
Commit
3ab6abee
authored
Mar 16, 2013
by
Al Viro
Browse files
more conversions to namespace_unlock()
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
b54b9be7
Changes
1
Hide whitespace changes
Inline
Side-by-side
fs/namespace.c
View file @
3ab6abee
...
...
@@ -1426,13 +1426,11 @@ struct vfsmount *collect_mounts(struct path *path)
void
drop_collected_mounts
(
struct
vfsmount
*
mnt
)
{
LIST_HEAD
(
umount_list
);
down_write
(
&
namespace_sem
);
br_write_lock
(
&
vfsmount_lock
);
umount_tree
(
real_mount
(
mnt
),
0
,
&
umount
_list
);
umount_tree
(
real_mount
(
mnt
),
0
,
&
u
n
mount
ed
);
br_write_unlock
(
&
vfsmount_lock
);
up_write
(
&
namespace_sem
);
release_mounts
(
&
umount_list
);
namespace_unlock
();
}
int
iterate_mounts
(
int
(
*
f
)(
struct
vfsmount
*
,
void
*
),
void
*
arg
,
...
...
@@ -2060,7 +2058,6 @@ void mark_mounts_for_expiry(struct list_head *mounts)
{
struct
mount
*
mnt
,
*
next
;
LIST_HEAD
(
graveyard
);
LIST_HEAD
(
umounts
);
if
(
list_empty
(
mounts
))
return
;
...
...
@@ -2083,12 +2080,10 @@ void mark_mounts_for_expiry(struct list_head *mounts)
while
(
!
list_empty
(
&
graveyard
))
{
mnt
=
list_first_entry
(
&
graveyard
,
struct
mount
,
mnt_expire
);
touch_mnt_namespace
(
mnt
->
mnt_ns
);
umount_tree
(
mnt
,
1
,
&
umount
s
);
umount_tree
(
mnt
,
1
,
&
u
n
mount
ed
);
}
br_write_unlock
(
&
vfsmount_lock
);
up_write
(
&
namespace_sem
);
release_mounts
(
&
umounts
);
namespace_unlock
();
}
EXPORT_SYMBOL_GPL
(
mark_mounts_for_expiry
);
...
...
@@ -2741,16 +2736,13 @@ void __init mnt_init(void)
void
put_mnt_ns
(
struct
mnt_namespace
*
ns
)
{
LIST_HEAD
(
umount_list
);
if
(
!
atomic_dec_and_test
(
&
ns
->
count
))
return
;
down_write
(
&
namespace_sem
);
br_write_lock
(
&
vfsmount_lock
);
umount_tree
(
ns
->
root
,
0
,
&
umount
_list
);
umount_tree
(
ns
->
root
,
0
,
&
u
n
mount
ed
);
br_write_unlock
(
&
vfsmount_lock
);
up_write
(
&
namespace_sem
);
release_mounts
(
&
umount_list
);
namespace_unlock
();
free_mnt_ns
(
ns
);
}
...
...
Write
Preview
Supports
Markdown
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