blob: 24e24e8e5a4a3740a2a34ac931b0c88d08726575 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From c7a4efb8bccb52e1714c151929c23e12bde59b82 Mon Sep 17 00:00:00 2001
2From: Chen Qi <Qi.Chen@windriver.com>
3Date: Wed, 4 Jul 2018 15:00:44 +0800
4Subject: [PATCH 17/24] Do not disable buffering when writing to oom_score_adj
5
6On musl, disabling buffering when writing to oom_score_adj will
7cause the following error.
8
9 Failed to adjust OOM setting: Invalid argument
10
11This error appears for systemd-udevd.service and dbus.service.
12This is because kernel receives '-' instead of the whole '-900'
13if buffering is disabled.
14
15This is libc implementation specific, as glibc does not have this issue.
16
17Upstream-Status: Inappropriate [musl specific]
18
19Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Brad Bishopa34c0302019-09-23 22:34:48 -040020[rebased for systemd 243]
21Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Brad Bishop19323692019-04-05 15:28:33 -040022---
23 src/basic/process-util.c | 2 +-
24 1 file changed, 1 insertion(+), 1 deletion(-)
25
26diff --git a/src/basic/process-util.c b/src/basic/process-util.c
Brad Bishopa34c0302019-09-23 22:34:48 -040027index b1c08fcade..0a7a1f7d89 100644
Brad Bishop19323692019-04-05 15:28:33 -040028--- a/src/basic/process-util.c
29+++ b/src/basic/process-util.c
Brad Bishopa34c0302019-09-23 22:34:48 -040030@@ -1474,7 +1474,7 @@ int set_oom_score_adjust(int value) {
Brad Bishop19323692019-04-05 15:28:33 -040031 sprintf(t, "%i", value);
32
33 return write_string_file("/proc/self/oom_score_adj", t,
34- WRITE_STRING_FILE_VERIFY_ON_FAILURE|WRITE_STRING_FILE_DISABLE_BUFFER);
35+ WRITE_STRING_FILE_VERIFY_ON_FAILURE);
36 }
37
Brad Bishopa34c0302019-09-23 22:34:48 -040038 static const char *const ioprio_class_table[] = {