From 89b1d5e0e49d3b3501e5f3aadcad712290bcd9bf Mon Sep 17 00:00:00 2001 From: Umut Tezduyar Date: Mon, 11 Mar 2013 16:30:10 +0100 Subject: [PATCH] core: keep mountinfo .mounts until late shutdown .mount units coming from /proc/self/mountinfo file are unmounted after local-fs.target is reached during shutdown. Problem: .mount units popping up in mountinfo file are added to systemd without any dependency. For that reason, they are the first one to be unmounted during shutdown. Whichever program mounted the file system deserves a chance to also unmount it. This patch ensures that /proc/self/mountinfo units will be unmounted after local-fs.target during shutdown (if they haven't been unmounted already) --- src/core/mount.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/core/mount.c b/src/core/mount.c index 73a783243..7a1b411c7 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -1501,6 +1501,14 @@ static int mount_add_one( goto fail; } + r = unit_add_dependency_by_name(u, UNIT_BEFORE, SPECIAL_LOCAL_FS_TARGET, NULL, true); + if (r < 0) + goto fail; + + r = unit_add_dependency_by_name(u, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true); + if (r < 0) + goto fail; + unit_add_to_load_queue(u); } else { delete = false; -- 2.30.2