diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2014-12-22 19:30:08 -0500 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2015-04-02 21:34:18 -0400 |
commit | 590ce4bcbfb4e0462a720a4ad901e84416080bba (patch) | |
tree | e5597263904eda7b9e869e57851c6f5dd6737e47 /fs | |
parent | c003b26ff98ca04a180ff34c38c007a3998d62f9 (diff) |
mnt: Add MNT_UMOUNT flag
In some instances it is necessary to know if the the unmounting
process has begun on a mount. Add MNT_UMOUNT to make that reliably
testable.
This fix gets used in fixing locked mounts in MNT_DETACH
Cc: stable@vger.kernel.org
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/namespace.c | 4 | ||||
-rw-r--r-- | fs/pnode.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index 54cbef129f4a..d1708147eb45 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
@@ -1331,8 +1331,10 @@ static void umount_tree(struct mount *mnt, enum umount_tree_flags how) | |||
1331 | struct mount *p; | 1331 | struct mount *p; |
1332 | 1332 | ||
1333 | /* Gather the mounts to umount */ | 1333 | /* Gather the mounts to umount */ |
1334 | for (p = mnt; p; p = next_mnt(p, mnt)) | 1334 | for (p = mnt; p; p = next_mnt(p, mnt)) { |
1335 | p->mnt.mnt_flags |= MNT_UMOUNT; | ||
1335 | list_move(&p->mnt_list, &tmp_list); | 1336 | list_move(&p->mnt_list, &tmp_list); |
1337 | } | ||
1336 | 1338 | ||
1337 | /* Hide the mounts from lookup_mnt and mnt_mounts */ | 1339 | /* Hide the mounts from lookup_mnt and mnt_mounts */ |
1338 | list_for_each_entry(p, &tmp_list, mnt_list) { | 1340 | list_for_each_entry(p, &tmp_list, mnt_list) { |
diff --git a/fs/pnode.c b/fs/pnode.c index bf012af709dd..ac3aa0d43b90 100644 --- a/fs/pnode.c +++ b/fs/pnode.c | |||
@@ -384,6 +384,7 @@ static void __propagate_umount(struct mount *mnt) | |||
384 | if (child && list_empty(&child->mnt_mounts)) { | 384 | if (child && list_empty(&child->mnt_mounts)) { |
385 | list_del_init(&child->mnt_child); | 385 | list_del_init(&child->mnt_child); |
386 | hlist_del_init_rcu(&child->mnt_hash); | 386 | hlist_del_init_rcu(&child->mnt_hash); |
387 | child->mnt.mnt_flags |= MNT_UMOUNT; | ||
387 | list_move_tail(&child->mnt_list, &mnt->mnt_list); | 388 | list_move_tail(&child->mnt_list, &mnt->mnt_list); |
388 | } | 389 | } |
389 | } | 390 | } |