X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Fexecute.c;h=63d295cf41f372a2b814edbb78715fc921bc5ed4;hp=0af4227b0e767ba00bea11bfd46616c35c37dac5;hb=d5243d628624038567c576e9b69c1d775eb05a05;hpb=f7621db0e38c3e96d48766ae648f1b7a0949ea13 diff --git a/src/core/execute.c b/src/core/execute.c index 0af4227b0..63d295cf4 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1406,12 +1406,16 @@ static int exec_child(ExecCommand *command, } if (context->oom_score_adjust_set) { - char t[16]; + char t[DECIMAL_STR_MAX(context->oom_score_adjust)]; - snprintf(t, sizeof(t), "%i", context->oom_score_adjust); - char_array_0(t); + /* When we can't make this change due to EPERM, then + * let's silently skip over it. User namespaces + * prohibit write access to this file, and we + * shouldn't trip up over that. */ - if (write_string_file("/proc/self/oom_score_adj", t) < 0) { + sprintf(t, "%i", context->oom_score_adjust); + err = write_string_file("/proc/self/oom_score_adj", t); + if (err < 0 && err != -EPERM) { *error = EXIT_OOM_ADJUST; return -errno; }