mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
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: Hugh Dickins <hugh.dickins@tiscali.co.uk> Signed-off-by: Andi Kleen <ak@linux.intel.com>
This commit is contained in:
parent
01e00f880c
commit
5d5429af06
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue