struct memblock { bool bottom_up; /* is bottom up direction? */
phys_addr_t current_limit; struct memblock_type memory; struct memblock_type reserved; #ifdef CONFIG_HAVE_MEMBLOCK_PHYS_MAP struct memblock_type physmem; #endif }; What is the difference between memory and physmem? |