[systemd-commits] src/core
Martin Pitt
martin at kemper.freedesktop.org
Mon Jan 12 22:07:18 PST 2015
src/core/execute.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6cb7fa17b3d89741a5fd3ac807775a3022c7d891
Author: Martin Pitt <martin.pitt at ubuntu.com>
Date: Tue Jan 13 07:06:31 2015 +0100
core: Fix EACCES check for OOM adjustments
Commit 3bd5c3 added a check for EACCES, but missed the minus sign.
diff --git a/src/core/execute.c b/src/core/execute.c
index 12a96a7..19d3ec0 100644
--- a/src/core/execute.c
+++ b/src/core/execute.c
@@ -1417,7 +1417,7 @@ static int exec_child(
sprintf(t, "%i", context->oom_score_adjust);
r = write_string_file("/proc/self/oom_score_adj", t);
- if (r == -EPERM || r == EACCES) {
+ if (r == -EPERM || r == -EACCES) {
log_open();
log_unit_debug_errno(params->unit_id, r, "Failed to adjust OOM setting, assuming containerized execution, ignoring: %m");
log_close();
More information about the systemd-commits
mailing list