Home
last modified time | relevance | path

Searched refs:to_umount (Results 1 – 2 of 2) sorted by relevance

/linux/fs/
H A Dpnode.c486 static void umount_one(struct mount *m, struct list_head *to_umount) in umount_one() argument
491 list_add_tail(&m->mnt_list, to_umount); in umount_one()
565 static void trim_one(struct mount *m, struct list_head *to_umount) in trim_one() argument
593 umount_one(m, to_umount); in trim_one()
597 static void handle_locked(struct mount *m, struct list_head *to_umount) in handle_locked() argument
613 umount_one(m, to_umount); in handle_locked()
661 LIST_HEAD(to_umount); // committed to unmounting in propagate_umount()
669 trim_one(m, &to_umount); in propagate_umount()
674 handle_locked(m, &to_umount); in propagate_umount()
679 list_for_each_entry(m, &to_umount, mnt_list) { in propagate_umount()
[all …]
/linux/Documentation/filesystems/
H A Dpropagate_umount.txt464 is reasonably close to the old "to_umount", so let's use that name.
477 need the same for elements added when joining the contents of to_umount
479 to to_umount; that's close to what the old 'umount_one' is doing, so
481 "belongs to union of set and to_umount"; will_be_unmounted() for now.