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

Commit bdbdaa79 authored by Jan Beulich's avatar Jan Beulich Committed by Linus Torvalds
Browse files

[PATCH] i386/x86-64: adjust /proc/interrupts column headings



With (significantly) more than 10 CPUs online, the column headings
drifted off the positions of the column contents with growing CPU
numbers.

Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent da531125
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ int show_interrupts(struct seq_file *p, void *v)
	if (i == 0) {
		seq_printf(p, "           ");
		for_each_online_cpu(j)
			seq_printf(p, "CPU%d       ",j);
			seq_printf(p, "CPU%-8d",j);
		seq_putc(p, '\n');
	}

+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ int show_interrupts(struct seq_file *p, void *v)
	if (i == 0) {
		seq_printf(p, "           ");
		for_each_online_cpu(j)
			seq_printf(p, "CPU%d       ",j);
			seq_printf(p, "CPU%-8d",j);
		seq_putc(p, '\n');
	}