blob: baf49038031d395627f41ebb9b609c75ed812e72 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From 30b08f76ea7f5c324afedf97f0867b76dac9f128 Mon Sep 17 00:00:00 2001
Brad Bishop19323692019-04-05 15:28:33 -04002From: Chen Qi <Qi.Chen@windriver.com>
3Date: Wed, 4 Jul 2018 15:00:44 +0800
William A. Kennington IIIac69b482021-06-02 12:28:27 -07004Subject: [PATCH] Do not disable buffering when writing to oom_score_adj
Brad Bishop19323692019-04-05 15:28:33 -04005
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>
William A. Kennington IIIac69b482021-06-02 12:28:27 -070022
Brad Bishop19323692019-04-05 15:28:33 -040023---
24 src/basic/process-util.c | 2 +-
25 1 file changed, 1 insertion(+), 1 deletion(-)
26
Andrew Geisslerd1e89492021-02-12 15:35:20 -060027--- a/src/basic/process-util.c
28+++ b/src/basic/process-util.c
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000029@@ -1489,7 +1489,7 @@ int set_oom_score_adjust(int value) {
30 xsprintf(t, "%i", value);
Brad Bishop19323692019-04-05 15:28:33 -040031
32 return write_string_file("/proc/self/oom_score_adj", t,
33- WRITE_STRING_FILE_VERIFY_ON_FAILURE|WRITE_STRING_FILE_DISABLE_BUFFER);
34+ WRITE_STRING_FILE_VERIFY_ON_FAILURE);
35 }
36
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000037 int get_oom_score_adjust(int *ret) {