diff options
author | Joe Perches <joe@perches.com> | 2016-03-17 17:19:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-17 18:09:34 -0400 |
commit | 1170532bb49f9468aedabdc1d5a560e2521a2bcc (patch) | |
tree | 0197245ba37726d4ba7325e0de8129d45f8f49d9 /mm/sparse.c | |
parent | 756a025f00091918d9d09ca3229defb160b409c0 (diff) |
mm: convert printk(KERN_<LEVEL> to pr_<level>
Most of the mm subsystem uses pr_<level> so make it consistent.
Miscellanea:
- Realign arguments
- Add missing newline to format
- kmemleak-test.c has a "kmemleak: " prefix added to the
"Kmemleak testing" logging message via pr_fmt
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Tejun Heo <tj@kernel.org> [percpu]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/sparse.c')
-rw-r--r-- | mm/sparse.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/mm/sparse.c b/mm/sparse.c index 7cdb27d9f01f..5d0cf4540364 100644 --- a/mm/sparse.c +++ b/mm/sparse.c | |||
@@ -313,9 +313,8 @@ static void __init check_usemap_section_nr(int nid, unsigned long *usemap) | |||
313 | 313 | ||
314 | usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr)); | 314 | usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr)); |
315 | if (usemap_nid != nid) { | 315 | if (usemap_nid != nid) { |
316 | printk(KERN_INFO | 316 | pr_info("node %d must be removed before remove section %ld\n", |
317 | "node %d must be removed before remove section %ld\n", | 317 | nid, usemap_snr); |
318 | nid, usemap_snr); | ||
319 | return; | 318 | return; |
320 | } | 319 | } |
321 | /* | 320 | /* |
@@ -324,10 +323,8 @@ static void __init check_usemap_section_nr(int nid, unsigned long *usemap) | |||
324 | * gather other removable sections for dynamic partitioning. | 323 | * gather other removable sections for dynamic partitioning. |
325 | * Just notify un-removable section's number here. | 324 | * Just notify un-removable section's number here. |
326 | */ | 325 | */ |
327 | printk(KERN_INFO "Section %ld and %ld (node %d)", usemap_snr, | 326 | pr_info("Section %ld and %ld (node %d) have a circular dependency on usemap and pgdat allocations\n", |
328 | pgdat_snr, nid); | 327 | usemap_snr, pgdat_snr, nid); |
329 | printk(KERN_CONT | ||
330 | " have a circular dependency on usemap and pgdat allocations\n"); | ||
331 | } | 328 | } |
332 | #else | 329 | #else |
333 | static unsigned long * __init | 330 | static unsigned long * __init |
@@ -355,7 +352,7 @@ static void __init sparse_early_usemaps_alloc_node(void *data, | |||
355 | usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nodeid), | 352 | usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nodeid), |
356 | size * usemap_count); | 353 | size * usemap_count); |
357 | if (!usemap) { | 354 | if (!usemap) { |
358 | printk(KERN_WARNING "%s: allocation failed\n", __func__); | 355 | pr_warn("%s: allocation failed\n", __func__); |
359 | return; | 356 | return; |
360 | } | 357 | } |
361 | 358 | ||
@@ -428,7 +425,7 @@ void __init sparse_mem_maps_populate_node(struct page **map_map, | |||
428 | if (map_map[pnum]) | 425 | if (map_map[pnum]) |
429 | continue; | 426 | continue; |
430 | ms = __nr_to_section(pnum); | 427 | ms = __nr_to_section(pnum); |
431 | printk(KERN_ERR "%s: sparsemem memory map backing failed some memory will not be available.\n", | 428 | pr_err("%s: sparsemem memory map backing failed some memory will not be available\n", |
432 | __func__); | 429 | __func__); |
433 | ms->section_mem_map = 0; | 430 | ms->section_mem_map = 0; |
434 | } | 431 | } |
@@ -456,7 +453,7 @@ static struct page __init *sparse_early_mem_map_alloc(unsigned long pnum) | |||
456 | if (map) | 453 | if (map) |
457 | return map; | 454 | return map; |
458 | 455 | ||
459 | printk(KERN_ERR "%s: sparsemem memory map backing failed some memory will not be available.\n", | 456 | pr_err("%s: sparsemem memory map backing failed some memory will not be available\n", |
460 | __func__); | 457 | __func__); |
461 | ms->section_mem_map = 0; | 458 | ms->section_mem_map = 0; |
462 | return NULL; | 459 | return NULL; |