mm_init.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | mm_init.c (1170532bb49f9468aedabdc1d5a560e2521a2bcc) |
---|---|
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> --- 41 unchanged lines hidden (view full) --- 50 /* Print information about the zonelist */ 51 printk(KERN_DEBUG "mminit::zonelist %s %d:%s = ", 52 listid > 0 ? "thisnode" : "general", nid, 53 zone->name); 54 55 /* Iterate the zonelist */ 56 for_each_zone_zonelist(zone, z, zonelist, zoneid) { 57#ifdef CONFIG_NUMA | 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> --- 41 unchanged lines hidden (view full) --- 50 /* Print information about the zonelist */ 51 printk(KERN_DEBUG "mminit::zonelist %s %d:%s = ", 52 listid > 0 ? "thisnode" : "general", nid, 53 zone->name); 54 55 /* Iterate the zonelist */ 56 for_each_zone_zonelist(zone, z, zonelist, zoneid) { 57#ifdef CONFIG_NUMA |
58 printk(KERN_CONT "%d:%s ", 59 zone->node, zone->name); | 58 pr_cont("%d:%s ", zone->node, zone->name); |
60#else | 59#else |
61 printk(KERN_CONT "0:%s ", zone->name); | 60 pr_cont("0:%s ", zone->name); |
62#endif /* CONFIG_NUMA */ 63 } | 61#endif /* CONFIG_NUMA */ 62 } |
64 printk(KERN_CONT "\n"); | 63 pr_cont("\n"); |
65 } 66 } 67} 68 69void __init mminit_verify_pageflags_layout(void) 70{ 71 int shift, width; 72 unsigned long or_mask, add_mask; --- 126 unchanged lines hidden --- | 64 } 65 } 66} 67 68void __init mminit_verify_pageflags_layout(void) 69{ 70 int shift, width; 71 unsigned long or_mask, add_mask; --- 126 unchanged lines hidden --- |