Lines Matching refs:mem_max
117 unsigned long mem_max; in setup_bootmem() local
204 mem_max = 0; in setup_bootmem()
209 if ((mem_max + rsize) > mem_limit) { in setup_bootmem()
211 if (mem_max == mem_limit) in setup_bootmem()
215 - (mem_max >> PAGE_SHIFT); in setup_bootmem()
217 mem_max = mem_limit; in setup_bootmem()
221 mem_max += rsize; in setup_bootmem()
224 printk(KERN_INFO "Total Memory: %ld MB\n",mem_max >> 20); in setup_bootmem()
310 if (__pa(initrd_start) < mem_max) { in setup_bootmem()
313 if (__pa(initrd_end) > mem_max) { in setup_bootmem()
314 initrd_reserve = mem_max - __pa(initrd_start); in setup_bootmem()
319 … %08lx-%08lx (mem_max %08lx)\n", __pa(initrd_start), __pa(initrd_start) + initrd_reserve, mem_max); in setup_bootmem()