The patch titled Subject: lib/test_free_pages.c: pass a pointer to virt_to_page() has been added to the -mm mm-unstable branch. Its filename is lib-test_free_pagesc-pass-a-pointer-to-virt_to_page.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/lib-test_free_pagesc-pass-a-pointer-to-virt_to_page.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Linus Walleij <linus.walleij@xxxxxxxxxx> Subject: lib/test_free_pages.c: pass a pointer to virt_to_page() Date: Thu, 30 Jun 2022 10:41:20 +0200 In a recent change to the Arm architecture with the end goal of removing highmem we need to convert virt_to_phys() and virt_to_pfn() to static inline functions. This will make them strongly typed. However since virt_to_* is always implemented as macros they have become polymorphic and accept both (void *) and e.g. unsigned long as arguments. Other functions such as virt_to_page() simply wrap virt_to_pfn() and get affected indirectly. To be able to proceed, patch mm to use (void *) as argument to affected functions in all instances. This patch (of 5): A pointer into virtual memory is represented by a (void *) not an u32, so the compiler warns: lib/test_free_pages.c:20:50: warning: passing argument 1 of 'virt_to_pfn' makes pointer from integer without a cast [-Wint-conversion] Fix this with an explicit cast. Link: https://lkml.kernel.org/r/20220630084124.691207-1-linus.walleij@xxxxxxxxxx Link: https://lkml.kernel.org/r/20220630084124.691207-2-linus.walleij@xxxxxxxxxx Signed-off-by: Linus Walleij <linus.walleij@xxxxxxxxxx> Cc: Alexander Potapenko <glider@xxxxxxxxxx> Cc: Dmitry Vyukov <dvyukov@xxxxxxxxxx> Cc: Jason Gunthorpe <jgg@xxxxxxxxxx> Cc: Marco Elver <elver@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/test_free_pages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/test_free_pages.c~lib-test_free_pagesc-pass-a-pointer-to-virt_to_page +++ a/lib/test_free_pages.c @@ -17,7 +17,7 @@ static void test_free_pages(gfp_t gfp) for (i = 0; i < 1000 * 1000; i++) { unsigned long addr = __get_free_pages(gfp, 3); - struct page *page = virt_to_page(addr); + struct page *page = virt_to_page((void *)addr); /* Simulate page cache getting a speculative reference */ get_page(page); _ Patches currently in -mm which might be from linus.walleij@xxxxxxxxxx are lib-test_free_pagesc-pass-a-pointer-to-virt_to_page.patch mm-highmem-pass-a-pointer-to-virt_to_page.patch mm-kfence-pass-a-pointer-to-virt_to_page.patch mm-gup-pass-a-pointer-to-virt_to_page.patch mm-nommu-pass-a-pointer-to-virt_to_page.patch