diff --git a/[refs] b/[refs] index 3c621783c82b..1c3f76f5234b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 03f890f8c2f5c9008d3d8f6d85267717ced4bd79 +refs/heads/master: 19cd56c48da58bebc3a638e036bcab69469acd27 diff --git a/trunk/fs/proc/softirqs.c b/trunk/fs/proc/softirqs.c index 1807c2419f17..37994737c983 100644 --- a/trunk/fs/proc/softirqs.c +++ b/trunk/fs/proc/softirqs.c @@ -10,13 +10,13 @@ static int show_softirqs(struct seq_file *p, void *v) { int i, j; - seq_printf(p, " "); + seq_printf(p, " "); for_each_possible_cpu(i) seq_printf(p, "CPU%-8d", i); seq_printf(p, "\n"); for (i = 0; i < NR_SOFTIRQS; i++) { - seq_printf(p, "%8s:", softirq_to_name[i]); + seq_printf(p, "%12s:", softirq_to_name[i]); for_each_possible_cpu(j) seq_printf(p, " %10u", kstat_softirqs_cpu(i, j)); seq_printf(p, "\n");