mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
bootmem: stop using page->index
Encode the type into the bottom four bits of page->private and the info into the remaining bits. Also turn the bootmem type into a named enum. [arnd@arndb.de: bootmem: add bootmem_type stub function] Link: https://lkml.kernel.org/r/20241015143802.577613-1-arnd@kernel.org [akpm@linux-foundation.org: fix build with !CONFIG_HAVE_BOOTMEM_INFO_NODE] Link: https://lore.kernel.org/oe-kbuild-all/202410090311.eaqcL7IZ-lkp@intel.com/ Link: https://lkml.kernel.org/r/20241005200121.3231142-6-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: kernel test robot <lkp@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
committed by
Andrew Morton
parent
68158bfa3d
commit
0386aaa6e9
@@ -720,19 +720,19 @@ static void depopulate_section_memmap(unsigned long pfn, unsigned long nr_pages,
|
||||
static void free_map_bootmem(struct page *memmap)
|
||||
{
|
||||
unsigned long maps_section_nr, removing_section_nr, i;
|
||||
unsigned long magic, nr_pages;
|
||||
unsigned long type, nr_pages;
|
||||
struct page *page = virt_to_page(memmap);
|
||||
|
||||
nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
|
||||
>> PAGE_SHIFT;
|
||||
|
||||
for (i = 0; i < nr_pages; i++, page++) {
|
||||
magic = page->index;
|
||||
type = bootmem_type(page);
|
||||
|
||||
BUG_ON(magic == NODE_INFO);
|
||||
BUG_ON(type == NODE_INFO);
|
||||
|
||||
maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
|
||||
removing_section_nr = page_private(page);
|
||||
removing_section_nr = bootmem_info(page);
|
||||
|
||||
/*
|
||||
* When this function is called, the removing section is
|
||||
|
||||
Reference in New Issue
Block a user