page_alloc.c (02316067852187b8bec781bec07410e91af79627) page_alloc.c (15ad7cdcfd76450d4beebc789ec646664238184d)
1/*
2 * linux/mm/page_alloc.c
3 *
4 * Manages the free list, the system allocates free pages here.
5 * Note that kmalloc() lives in slab.c
6 *
7 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
8 * Swap reorganised 29.12.95, Stephen Tweedie

--- 69 unchanged lines hidden (view full) ---

78#endif
79#ifdef CONFIG_HIGHMEM
80 32
81#endif
82};
83
84EXPORT_SYMBOL(totalram_pages);
85
1/*
2 * linux/mm/page_alloc.c
3 *
4 * Manages the free list, the system allocates free pages here.
5 * Note that kmalloc() lives in slab.c
6 *
7 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
8 * Swap reorganised 29.12.95, Stephen Tweedie

--- 69 unchanged lines hidden (view full) ---

78#endif
79#ifdef CONFIG_HIGHMEM
80 32
81#endif
82};
83
84EXPORT_SYMBOL(totalram_pages);
85
86static char *zone_names[MAX_NR_ZONES] = {
86static char * const zone_names[MAX_NR_ZONES] = {
87 "DMA",
88#ifdef CONFIG_ZONE_DMA32
89 "DMA32",
90#endif
91 "Normal",
92#ifdef CONFIG_HIGHMEM
93 "HighMem"
94#endif

--- 3213 unchanged lines hidden ---
87 "DMA",
88#ifdef CONFIG_ZONE_DMA32
89 "DMA32",
90#endif
91 "Normal",
92#ifdef CONFIG_HIGHMEM
93 "HighMem"
94#endif

--- 3213 unchanged lines hidden ---