Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 370c28de authored by Hugh Dickins's avatar Hugh Dickins Committed by Linus Torvalds
Browse files

hwpoison: fix/proc/meminfo alignment



Given such a long name, the kB count in /proc/meminfo's HardwareCorrupted
line is being shown too far right (it does align with x86_64's VmallocChunk
above, but I hope nobody will ever have that much corrupted!).  Align it.

Signed-off-by: default avatarHugh Dickins <hugh.dickins@tiscali.co.uk>
Cc: Andi Kleen <andi@firstfloor.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 92f7ba70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
		"VmallocUsed:    %8lu kB\n"
		"VmallocChunk:   %8lu kB\n"
#ifdef CONFIG_MEMORY_FAILURE
		"HardwareCorrupted: %8lu kB\n"
		"HardwareCorrupted: %5lu kB\n"
#endif
		,
		K(i.totalram),