Skip to content

Commit 941f762

Browse files
idryomovtorvalds
authored andcommitted
mm/oom: fix pgtables units mismatch in Killed process message
pr_err() expects kB, but mm_pgtables_bytes() returns the number of bytes. As everything else is printed in kB, I chose to fix the value rather than the string. Before: [ pid ] uid tgid total_vm rss pgtables_bytes swapents oom_score_adj name ... [ 1878] 1000 1878 217253 151144 1269760 0 0 python ... Out of memory: Killed process 1878 (python) total-vm:869012kB, anon-rss:604572kB, file-rss:4kB, shmem-rss:0kB, UID:1000 pgtables:1269760kB oom_score_adj:0 After: [ pid ] uid tgid total_vm rss pgtables_bytes swapents oom_score_adj name ... [ 1436] 1000 1436 217253 151890 1294336 0 0 python ... Out of memory: Killed process 1436 (python) total-vm:869012kB, anon-rss:607516kB, file-rss:44kB, shmem-rss:0kB, UID:1000 pgtables:1264kB oom_score_adj:0 Link: http://lkml.kernel.org/r/[email protected] Fixes: 70cb6d2 ("mm/oom: add oom_score_adj and pgtables to Killed process message") Signed-off-by: Ilya Dryomov <[email protected]> Reviewed-by: Andrew Morton <[email protected]> Acked-by: David Rientjes <[email protected]> Acked-by: Michal Hocko <[email protected]> Cc: Edward Chron <[email protected]> Cc: David Rientjes <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent e39e773 commit 941f762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mm/oom_kill.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ static void __oom_kill_process(struct task_struct *victim, const char *message)
890890
K(get_mm_counter(mm, MM_FILEPAGES)),
891891
K(get_mm_counter(mm, MM_SHMEMPAGES)),
892892
from_kuid(&init_user_ns, task_uid(victim)),
893-
mm_pgtables_bytes(mm), victim->signal->oom_score_adj);
893+
mm_pgtables_bytes(mm) >> 10, victim->signal->oom_score_adj);
894894
task_unlock(victim);
895895

896896
/*

0 commit comments

Comments
 (0)