aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/e820.c2
-rw-r--r--mm/page_alloc.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c
index 600c9de237a0..512f779fc6af 100644
--- a/arch/x86/kernel/e820.c
+++ b/arch/x86/kernel/e820.c
@@ -990,7 +990,7 @@ unsigned long __init e820_end_of_ram(void)
990 if (last_pfn > end_user_pfn) 990 if (last_pfn > end_user_pfn)
991 last_pfn = end_user_pfn; 991 last_pfn = end_user_pfn;
992 992
993 printk(KERN_INFO "last_pfn = %lu max_arch_pfn = %lu\n", 993 printk(KERN_INFO "last_pfn = 0x%lx max_arch_pfn = 0x%lx\n",
994 last_pfn, max_arch_pfn); 994 last_pfn, max_arch_pfn);
995 return last_pfn; 995 return last_pfn;
996} 996}
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index e25b6b24f844..c09c2c8d2c6a 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -3520,7 +3520,7 @@ void __init add_active_range(unsigned int nid, unsigned long start_pfn,
3520{ 3520{
3521 int i; 3521 int i;
3522 3522
3523 printk(KERN_DEBUG "Entering add_active_range(%d, %lu, %lu) " 3523 printk(KERN_DEBUG "Entering add_active_range(%d, 0x%lx, 0x%lx) "
3524 "%d entries of %d used\n", 3524 "%d entries of %d used\n",
3525 nid, start_pfn, end_pfn, 3525 nid, start_pfn, end_pfn,
3526 nr_nodemap_entries, MAX_ACTIVE_REGIONS); 3526 nr_nodemap_entries, MAX_ACTIVE_REGIONS);
@@ -3936,7 +3936,7 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn)
3936 for (i = 0; i < MAX_NR_ZONES; i++) { 3936 for (i = 0; i < MAX_NR_ZONES; i++) {
3937 if (i == ZONE_MOVABLE) 3937 if (i == ZONE_MOVABLE)
3938 continue; 3938 continue;
3939 printk(" %-8s %8lu -> %8lu\n", 3939 printk(" %-8s 0x%8lx -> 0x%8lx\n",
3940 zone_names[i], 3940 zone_names[i],
3941 arch_zone_lowest_possible_pfn[i], 3941 arch_zone_lowest_possible_pfn[i],
3942 arch_zone_highest_possible_pfn[i]); 3942 arch_zone_highest_possible_pfn[i]);
@@ -3952,7 +3952,7 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn)
3952 /* Print out the early_node_map[] */ 3952 /* Print out the early_node_map[] */
3953 printk("early_node_map[%d] active PFN ranges\n", nr_nodemap_entries); 3953 printk("early_node_map[%d] active PFN ranges\n", nr_nodemap_entries);
3954 for (i = 0; i < nr_nodemap_entries; i++) 3954 for (i = 0; i < nr_nodemap_entries; i++)
3955 printk(" %3d: %8lu -> %8lu\n", early_node_map[i].nid, 3955 printk(" %3d: 0x%8lx -> 0x%8lx\n", early_node_map[i].nid,
3956 early_node_map[i].start_pfn, 3956 early_node_map[i].start_pfn,
3957 early_node_map[i].end_pfn); 3957 early_node_map[i].end_pfn);
3958 3958