[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1290589070-854-5-git-send-email-u.kleine-koenig@pengutronix.de>
Date: Wed, 24 Nov 2010 09:57:49 +0100
From: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
To: linux-kernel@...r.kernel.org
Cc: Russell King - ARM Linux <linux@....linux.org.uk>,
kernel@...gutronix.de, Arjan van de Ven <arjan@...radead.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
linux-mm@...ck.org
Subject: [PATCH 5/6] mm: add some KERN_CONT markers to continuation lines
Cc: linux-mm@...ck.org
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
---
mm/percpu.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/mm/percpu.c b/mm/percpu.c
index efe8168..3356646 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -1117,20 +1117,20 @@ static void pcpu_dump_alloc_info(const char *lvl,
for (alloc_end += gi->nr_units / upa;
alloc < alloc_end; alloc++) {
if (!(alloc % apl)) {
- printk("\n");
- printk("%spcpu-alloc: ", lvl);
+ printk(KERN_CONT "\n");
+ printk("%spcpu-alloc:", lvl);
}
- printk("[%0*d] ", group_width, group);
+ printk(KERN_CONT " [%0*d]", group_width, group);
for (unit_end += upa; unit < unit_end; unit++)
if (gi->cpu_map[unit] != NR_CPUS)
- printk("%0*d ", cpu_width,
+ printk(KERN_CONT " %0*d", cpu_width,
gi->cpu_map[unit]);
else
- printk("%s ", empty_str);
+ printk(KERN_CONT " %s", empty_str);
}
}
- printk("\n");
+ printk(KERN_CONT "\n");
}
/**
--
1.7.2.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists