Skip to content

Commit

Permalink
Merge pull request systemd#2794 from jhol/dont-unmount-initramfs-mounts
Browse files Browse the repository at this point in the history
core/mount: Don't unmount initramfs mounts
  • Loading branch information
zonque committed Mar 10, 2016
2 parents ead02a1 + 04a9393 commit bffac07
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/core/mount.c
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ static bool should_umount(Mount *m) {
MountParameters *p;

if (path_equal(m->where, "/") ||
path_equal(m->where, "/usr"))
path_equal(m->where, "/usr") ||
path_startswith(m->where, "/run/initramfs"))
return false;

p = get_mount_parameters(m);
Expand All @@ -402,13 +403,15 @@ static int mount_add_default_dependencies(Mount *m) {
if (UNIT(m)->manager->running_as != MANAGER_SYSTEM)
return 0;

/* We do not add any default dependencies to / and /usr, since
* they are guaranteed to stay mounted the whole time, since
* our system is on it. Also, don't bother with anything
* mounted below virtual file systems, it's also going to be
* virtual, and hence not worth the effort. */
/* We do not add any default dependencies to /, /usr or
* /run/initramfs/, since they are guaranteed to stay
* mounted the whole time, since our system is on it.
* Also, don't bother with anything mounted below virtual
* file systems, it's also going to be virtual, and hence
* not worth the effort. */
if (path_equal(m->where, "/") ||
path_equal(m->where, "/usr") ||
path_startswith(m->where, "/run/initramfs") ||
path_startswith(m->where, "/proc") ||
path_startswith(m->where, "/sys") ||
path_startswith(m->where, "/dev"))
Expand Down
1 change: 1 addition & 0 deletions src/core/umount.c
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ static int mount_points_list_umount(MountPoint **head, bool *changed, bool log_e
#ifndef HAVE_SPLIT_USR
|| path_equal(m->path, "/usr")
#endif
|| path_startswith(m->path, "/run/initramfs")
)
continue;

Expand Down

0 comments on commit bffac07

Please sign in to comment.