On Mon, 19 Apr 2021, Anshuman Khandual wrote: > >> Unfortunately the build test fails on both the platforms (powerpc and ia64) > >> which subscribe HUGETLB_PAGE_SIZE_VARIABLE and where this check would make > >> sense. I some how overlooked the cross compile build failure that actually > >> detected this problem. > >> > >> But wondering why this assert is not holding true ? and how these platforms > >> do not see the warning during boot (or do they ?) at mm/vmscan.c:1092 like > >> arm64 did. > >> > >> static int __fragmentation_index(unsigned int order, struct contig_page_info *info) > >> { > >>          unsigned long requested = 1UL << order; > >> > >>          if (WARN_ON_ONCE(order >= MAX_ORDER)) > >>                  return 0; > >> .... > >> > >> Can pageblock_order really exceed MAX_ORDER - 1 ? You can have larger blocks but you would need to allocate multiple contigous max order blocks or do it at boot time before the buddy allocator is active. What IA64 did was to do this at boot time thereby avoiding the buddy lists. And it had a separate virtual address range and page table for the huge pages. Looks like the current code does these allocations via CMA which should also bypass the buddy allocator. > >     } > > > > > > But it's kind of weird, isn't it? Let's assume we have MAX_ORDER - 1 correspond to 4 MiB and pageblock_order correspond to 8 MiB. > > > > Sure, we'd be grouping pages in 8 MiB chunks, however, we cannot even > > allocate 8 MiB chunks via the buddy. So only alloc_contig_range() > > could really grab them (IOW: gigantic pages). > > Right. But then you can avoid the buddy allocator. > > Further, we have code like deferred_free_range(), where we end up > > calling __free_pages_core()->...->__free_one_page() with > > pageblock_order. Wouldn't we end up setting the buddy order to > > something > MAX_ORDER -1 on that path? > > Agreed. We would need to return the supersized block to the huge page pool and not to the buddy allocator. There is a special callback in the compound page sos that you can call an alternate free function that is not the buddy allocator. > > > > > Having pageblock_order > MAX_ORDER feels wrong and looks shaky. > > > Agreed, definitely does not look right. Lets see what other folks > might have to say on this. > > + Christoph Lameter > It was done for a long time successfully and is running in numerous configurations.