diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2014-12-18 14:10:48 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-04-02 21:34:18 -0400 |
commit | c003b26ff98ca04a180ff34c38c007a3998d62f9 (patch) | |
tree | 0d48f9edeed164c03b02494cf129ef76a0ffb91c /fs/namespace.c | |
parent | 8318e667f176f7ea34451a1a530634e293f216ac (diff) |
mnt: In umount_tree reuse mnt_list instead of mnt_hash
umount_tree builds a list of mounts that need to be unmounted.
Utilize mnt_list for this purpose instead of mnt_hash. This begins to
allow keeping a mount on the mnt_hash after it is unmounted, which is
necessary for a properly functioning MNT_LOCKED implementation.
The fact that mnt_list is an ordinary list makding available list_move
is nice bonus.
Cc: stable@vger.kernel.org
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/namespace.c')
-rw-r--r-- | fs/namespace.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index c68d9fc912e7..54cbef129f4a 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1327,23 +1327,25 @@ enum umount_tree_flags { | |||
1327 | */ | 1327 | */ |
1328 | static void umount_tree(struct mount *mnt, enum umount_tree_flags how) | 1328 | static void umount_tree(struct mount *mnt, enum umount_tree_flags how) |
1329 | { | 1329 | { |
1330 | HLIST_HEAD(tmp_list); | 1330 | LIST_HEAD(tmp_list); |
1331 | struct mount *p; | 1331 | struct mount *p; |
1332 | 1332 | ||
1333 | for (p = mnt; p; p = next_mnt(p, mnt)) { | 1333 | /* Gather the mounts to umount */ |
1334 | hlist_del_init_rcu(&p->mnt_hash); | 1334 | for (p = mnt; p; p = next_mnt(p, mnt)) |
1335 | hlist_add_head(&p->mnt_hash, &tmp_list); | 1335 | list_move(&p->mnt_list, &tmp_list); |
1336 | } | ||
1337 | 1336 | ||
1338 | hlist_for_each_entry(p, &tmp_list, mnt_hash) | 1337 | /* Hide the mounts from lookup_mnt and mnt_mounts */ |
1338 | list_for_each_entry(p, &tmp_list, mnt_list) { | ||
1339 | hlist_del_init_rcu(&p->mnt_hash); | ||
1339 | list_del_init(&p->mnt_child); | 1340 | list_del_init(&p->mnt_child); |
1341 | } | ||
1340 | 1342 | ||
1343 | /* Add propogated mounts to the tmp_list */ | ||
1341 | if (how & UMOUNT_PROPAGATE) | 1344 | if (how & UMOUNT_PROPAGATE) |
1342 | propagate_umount(&tmp_list); | 1345 | propagate_umount(&tmp_list); |
1343 | 1346 | ||
1344 | while (!hlist_empty(&tmp_list)) { | 1347 | while (!list_empty(&tmp_list)) { |
1345 | p = hlist_entry(tmp_list.first, struct mount, mnt_hash); | 1348 | p = list_first_entry(&tmp_list, struct mount, mnt_list); |
1346 | hlist_del_init_rcu(&p->mnt_hash); | ||
1347 | list_del_init(&p->mnt_expire); | 1349 | list_del_init(&p->mnt_expire); |
1348 | list_del_init(&p->mnt_list); | 1350 | list_del_init(&p->mnt_list); |
1349 | __touch_mnt_namespace(p->mnt_ns); | 1351 | __touch_mnt_namespace(p->mnt_ns); |