On Thu, Nov 20, 2025 at 09:42:22PM +0200, Mike Rapoport wrote:
From: "Isaac J. Manjarres" isaacmanjarres@google.com
mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 86066a2cf258..d760b96604ec 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -9225,7 +9225,7 @@ void *__init alloc_large_system_hash(const char *tablename, panic("Failed to allocate %s hash table\n", tablename); pr_info("%s hash table entries: %ld (order: %d, %lu bytes, %s)\n",
tablename, 1UL << log2qty, ilog2(size) - PAGE_SHIFT, size,
virt ? (huge ? "vmalloc hugepage" : "vmalloc") : "linear");tablename, 1UL << log2qty, get_order(size), size,if (_hash_shift) -- 2.50.1
Thanks for backporting these patches to the older kernel branches, Mike! I really appreciate it :)
--Isaac