mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
execute: don't fail if we cannot fix OOM in a container
This commit is contained in:
parent
c59c76cab0
commit
90a5f6e42a
2
TODO
2
TODO
@ -23,6 +23,8 @@ F15:
|
||||
|
||||
* get writev() /dev/kmsg support into the F15 kernel
|
||||
|
||||
* fix sd_is_socket() invocation in dbus
|
||||
|
||||
Features:
|
||||
|
||||
* fix alsa mixer restore to not print error when no config is stored
|
||||
|
@ -1106,7 +1106,8 @@ int exec_spawn(ExecCommand *command,
|
||||
snprintf(t, sizeof(t), "%i", adj);
|
||||
char_array_0(t);
|
||||
|
||||
if (write_one_line_file("/proc/self/oom_adj", t) < 0) {
|
||||
if (write_one_line_file("/proc/self/oom_adj", t) < 0
|
||||
&& errno != EACCES) {
|
||||
r = EXIT_OOM_ADJUST;
|
||||
goto fail_child;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user