aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/kernel-parameters.txt8
-rw-r--r--lib/Kconfig.debug12
-rw-r--r--mm/Makefile1
-rw-r--r--mm/internal.h27
-rw-r--r--mm/mm_init.c18
-rw-r--r--mm/page_alloc.c22
6 files changed, 79 insertions, 9 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 47e7d8794fc6..5e20ccb5a736 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -1225,6 +1225,14 @@ and is between 256 and 4096 characters. It is defined in the file
1225 1225
1226 mga= [HW,DRM] 1226 mga= [HW,DRM]
1227 1227
1228 mminit_loglevel=
1229 [KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this
1230 parameter allows control of the logging verbosity for
1231 the additional memory initialisation checks. A value
1232 of 0 disables mminit logging and a level of 4 will
1233 log everything. Information is printed at KERN_DEBUG
1234 so loglevel=8 may also need to be specified.
1235
1228 mousedev.tap_time= 1236 mousedev.tap_time=
1229 [MOUSE] Maximum time between finger touching and 1237 [MOUSE] Maximum time between finger touching and
1230 leaving touchpad surface for touch to be considered 1238 leaving touchpad surface for touch to be considered
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 882c51048993..e1d4764435ed 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -505,6 +505,18 @@ config DEBUG_WRITECOUNT
505 505
506 If unsure, say N. 506 If unsure, say N.
507 507
508config DEBUG_MEMORY_INIT
509 bool "Debug memory initialisation" if EMBEDDED
510 default !EMBEDDED
511 help
512 Enable this for additional checks during memory initialisation.
513 The sanity checks verify aspects of the VM such as the memory model
514 and other information provided by the architecture. Verbose
515 information will be printed at KERN_DEBUG loglevel depending
516 on the mminit_loglevel= command-line option.
517
518 If unsure, say Y
519
508config DEBUG_LIST 520config DEBUG_LIST
509 bool "Debug linked list manipulation" 521 bool "Debug linked list manipulation"
510 depends on DEBUG_KERNEL 522 depends on DEBUG_KERNEL
diff --git a/mm/Makefile b/mm/Makefile
index 18c143b3c46c..4bbc8f094ff0 100644
--- a/mm/Makefile
+++ b/mm/Makefile
@@ -26,6 +26,7 @@ obj-$(CONFIG_TMPFS_POSIX_ACL) += shmem_acl.o
26obj-$(CONFIG_TINY_SHMEM) += tiny-shmem.o 26obj-$(CONFIG_TINY_SHMEM) += tiny-shmem.o
27obj-$(CONFIG_SLOB) += slob.o 27obj-$(CONFIG_SLOB) += slob.o
28obj-$(CONFIG_SLAB) += slab.o 28obj-$(CONFIG_SLAB) += slab.o
29obj-$(CONFIG_DEBUG_MEMORY_INIT) += mm_init.o
29obj-$(CONFIG_SLUB) += slub.o 30obj-$(CONFIG_SLUB) += slub.o
30obj-$(CONFIG_MEMORY_HOTPLUG) += memory_hotplug.o 31obj-$(CONFIG_MEMORY_HOTPLUG) += memory_hotplug.o
31obj-$(CONFIG_FS_XIP) += filemap_xip.o 32obj-$(CONFIG_FS_XIP) += filemap_xip.o
diff --git a/mm/internal.h b/mm/internal.h
index 0034e947e4bc..a7ee05253294 100644
--- a/mm/internal.h
+++ b/mm/internal.h
@@ -59,4 +59,31 @@ static inline unsigned long page_order(struct page *page)
59#define __paginginit __init 59#define __paginginit __init
60#endif 60#endif
61 61
62/* Memory initialisation debug and verification */
63enum mminit_level {
64 MMINIT_WARNING,
65 MMINIT_VERIFY,
66 MMINIT_TRACE
67};
68
69#ifdef CONFIG_DEBUG_MEMORY_INIT
70
71extern int mminit_loglevel;
72
73#define mminit_dprintk(level, prefix, fmt, arg...) \
74do { \
75 if (level < mminit_loglevel) { \
76 printk(level <= MMINIT_WARNING ? KERN_WARNING : KERN_DEBUG); \
77 printk(KERN_CONT "mminit::" prefix " " fmt, ##arg); \
78 } \
79} while (0)
80
81#else
82
83static inline void mminit_dprintk(enum mminit_level level,
84 const char *prefix, const char *fmt, ...)
85{
86}
87
88#endif /* CONFIG_DEBUG_MEMORY_INIT */
62#endif 89#endif
diff --git a/mm/mm_init.c b/mm/mm_init.c
new file mode 100644
index 000000000000..c01d8dfec817
--- /dev/null
+++ b/mm/mm_init.c
@@ -0,0 +1,18 @@
1/*
2 * mm_init.c - Memory initialisation verification and debugging
3 *
4 * Copyright 2008 IBM Corporation, 2008
5 * Author Mel Gorman <mel@csn.ul.ie>
6 *
7 */
8#include <linux/kernel.h>
9#include <linux/init.h>
10
11int __meminitdata mminit_loglevel;
12
13static __init int set_mminit_loglevel(char *str)
14{
15 get_option(&str, &mminit_loglevel);
16 return 0;
17}
18early_param("mminit_loglevel", set_mminit_loglevel);
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 79ac4afc908c..0908352ba727 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -2975,7 +2975,8 @@ void __init sparse_memory_present_with_active_regions(int nid)
2975void __init push_node_boundaries(unsigned int nid, 2975void __init push_node_boundaries(unsigned int nid,
2976 unsigned long start_pfn, unsigned long end_pfn) 2976 unsigned long start_pfn, unsigned long end_pfn)
2977{ 2977{
2978 printk(KERN_DEBUG "Entering push_node_boundaries(%u, %lu, %lu)\n", 2978 mminit_dprintk(MMINIT_TRACE, "zoneboundary",
2979 "Entering push_node_boundaries(%u, %lu, %lu)\n",
2979 nid, start_pfn, end_pfn); 2980 nid, start_pfn, end_pfn);
2980 2981
2981 /* Initialise the boundary for this node if necessary */ 2982 /* Initialise the boundary for this node if necessary */
@@ -2993,7 +2994,8 @@ void __init push_node_boundaries(unsigned int nid,
2993static void __meminit account_node_boundary(unsigned int nid, 2994static void __meminit account_node_boundary(unsigned int nid,
2994 unsigned long *start_pfn, unsigned long *end_pfn) 2995 unsigned long *start_pfn, unsigned long *end_pfn)
2995{ 2996{
2996 printk(KERN_DEBUG "Entering account_node_boundary(%u, %lu, %lu)\n", 2997 mminit_dprintk(MMINIT_TRACE, "zoneboundary",
2998 "Entering account_node_boundary(%u, %lu, %lu)\n",
2997 nid, *start_pfn, *end_pfn); 2999 nid, *start_pfn, *end_pfn);
2998 3000
2999 /* Return if boundary information has not been provided */ 3001 /* Return if boundary information has not been provided */
@@ -3368,8 +3370,8 @@ static void __paginginit free_area_init_core(struct pglist_data *pgdat,
3368 PAGE_ALIGN(size * sizeof(struct page)) >> PAGE_SHIFT; 3370 PAGE_ALIGN(size * sizeof(struct page)) >> PAGE_SHIFT;
3369 if (realsize >= memmap_pages) { 3371 if (realsize >= memmap_pages) {
3370 realsize -= memmap_pages; 3372 realsize -= memmap_pages;
3371 printk(KERN_DEBUG 3373 mminit_dprintk(MMINIT_TRACE, "memmap_init",
3372 " %s zone: %lu pages used for memmap\n", 3374 "%s zone: %lu pages used for memmap\n",
3373 zone_names[j], memmap_pages); 3375 zone_names[j], memmap_pages);
3374 } else 3376 } else
3375 printk(KERN_WARNING 3377 printk(KERN_WARNING
@@ -3379,7 +3381,8 @@ static void __paginginit free_area_init_core(struct pglist_data *pgdat,
3379 /* Account for reserved pages */ 3381 /* Account for reserved pages */
3380 if (j == 0 && realsize > dma_reserve) { 3382 if (j == 0 && realsize > dma_reserve) {
3381 realsize -= dma_reserve; 3383 realsize -= dma_reserve;
3382 printk(KERN_DEBUG " %s zone: %lu pages reserved\n", 3384 mminit_dprintk(MMINIT_TRACE, "memmap_init",
3385 "%s zone: %lu pages reserved\n",
3383 zone_names[0], dma_reserve); 3386 zone_names[0], dma_reserve);
3384 } 3387 }
3385 3388
@@ -3520,10 +3523,11 @@ void __init add_active_range(unsigned int nid, unsigned long start_pfn,
3520{ 3523{
3521 int i; 3524 int i;
3522 3525
3523 printk(KERN_DEBUG "Entering add_active_range(%d, %#lx, %#lx) " 3526 mminit_dprintk(MMINIT_TRACE, "memory_register",
3524 "%d entries of %d used\n", 3527 "Entering add_active_range(%d, %#lx, %#lx) "
3525 nid, start_pfn, end_pfn, 3528 "%d entries of %d used\n",
3526 nr_nodemap_entries, MAX_ACTIVE_REGIONS); 3529 nid, start_pfn, end_pfn,
3530 nr_nodemap_entries, MAX_ACTIVE_REGIONS);
3527 3531
3528 /* Merge with existing active regions if possible */ 3532 /* Merge with existing active regions if possible */
3529 for (i = 0; i < nr_nodemap_entries; i++) { 3533 for (i = 0; i < nr_nodemap_entries; i++) {