diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:25:58 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 14:25:58 +0100 |
commit | 3f2c0becc3dcb1acb9d2a1816dcfe4e3de8877d4 (patch) | |
tree | ad082a4cb0a9f6112af9826db523505b080a4fb4 /src/core | |
parent | 7b3e062cb6872e28ef5a2e069810070e28bbe0cd (diff) |
automount: move generically userful call repeat_mount() into mount-util.[ch]
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/automount.c | 36 |
1 files changed, 14 insertions, 22 deletions
diff --git a/src/core/automount.c b/src/core/automount.c index 715e52e794..4c229247c5 100644 --- a/src/core/automount.c +++ b/src/core/automount.c @@ -89,26 +89,11 @@ static void automount_init(Unit *u) { UNIT(a)->ignore_on_isolate = true; } -static void repeat_unmount(const char *path) { - assert(path); - - for (;;) { - /* If there are multiple mounts on a mount point, this - * removes them all */ - - if (umount2(path, MNT_DETACH) >= 0) - continue; - - if (errno != EINVAL) - log_error_errno(errno, "Failed to unmount: %m"); - - break; - } -} - static int automount_send_ready(Automount *a, Set *tokens, int status); static void unmount_autofs(Automount *a) { + int r; + assert(a); if (a->pipe_fd < 0) @@ -124,8 +109,11 @@ static void unmount_autofs(Automount *a) { * around */ if (a->where && (UNIT(a)->manager->exit_code != MANAGER_RELOAD && - UNIT(a)->manager->exit_code != MANAGER_REEXECUTE)) - repeat_unmount(a->where); + UNIT(a)->manager->exit_code != MANAGER_REEXECUTE)) { + r = repeat_unmount(a->where, MNT_DETACH); + if (r < 0) + log_error_errno(r, "Failed to unmount: %m"); + } } static void automount_done(Unit *u) { @@ -615,12 +603,16 @@ static void automount_enter_waiting(Automount *a) { return; fail: + log_unit_error_errno(UNIT(a), r, "Failed to initialize automounter: %m"); + safe_close_pair(p); - if (mounted) - repeat_unmount(a->where); + if (mounted) { + r = repeat_unmount(a->where, MNT_DETACH); + if (r < 0) + log_error_errno(r, "Failed to unmount, ignoring: %m"); + } - log_unit_error_errno(UNIT(a), r, "Failed to initialize automounter: %m"); automount_enter_dead(a, AUTOMOUNT_FAILURE_RESOURCES); } |