Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Commit 0346dad

Browse files
gthelentorvalds
authored andcommitted
memcg: remove extra newlines from memcg oom kill log
Commit e61734c ("cgroup: remove cgroup->name") added two extra newlines to memcg oom kill log messages. This makes dmesg hard to read and parse. The issue affects 3.15+. Example: Task in /t <<< extra #1 killed as a result of limit of /t <<< extra #2 memory: usage 102400kB, limit 102400kB, failcnt 274712 Remove the extra newlines from memcg oom kill messages, so the messages look like: Task in /t killed as a result of limit of /t memory: usage 102400kB, limit 102400kB, failcnt 240649 Fixes: e61734c ("cgroup: remove cgroup->name") Signed-off-by: Greg Thelen <gthelen@google.com> Acked-by: Michal Hocko <mhocko@suse.cz> Acked-by: Johannes Weiner <hannes@cmpxchg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent d69911a commit 0346dad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mm/memcontrol.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1477,9 +1477,9 @@ void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p)
14771477

14781478
pr_info("Task in ");
14791479
pr_cont_cgroup_path(task_cgroup(p, memory_cgrp_id));
1480-
pr_info(" killed as a result of limit of ");
1480+
pr_cont(" killed as a result of limit of ");
14811481
pr_cont_cgroup_path(memcg->css.cgroup);
1482-
pr_info("\n");
1482+
pr_cont("\n");
14831483

14841484
rcu_read_unlock();
14851485

0 commit comments

Comments
 (0)