projects
/
platform
/
upstream
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f795267
)
umount: be happy if /proc/swaps doesn't exist
author
Lennart Poettering
<lennart@poettering.net>
Fri, 15 Nov 2019 13:57:27 +0000
(14:57 +0100)
committer
Lennart Poettering
<lennart@poettering.net>
Fri, 15 Nov 2019 13:57:27 +0000
(14:57 +0100)
Kernels work without swap just fine.
Fixes: #13993
src/shutdown/umount.c
patch
|
blob
|
history
diff --git
a/src/shutdown/umount.c
b/src/shutdown/umount.c
index
4a96e1b
..
11be946
100644
(file)
--- a/
src/shutdown/umount.c
+++ b/
src/shutdown/umount.c
@@
-184,6
+184,8
@@
int swap_list_get(const char *swaps, MountPoint **head) {
return log_oom();
r = mnt_table_parse_swaps(t, swaps);
+ if (r == -ENOENT) /* no /proc/swaps is fine */
+ return 0;
if (r < 0)
return log_error_errno(r, "Failed to parse %s: %m", swaps ?: "/proc/swaps");