While vmalloc() itself strictly uses page mappings only on all architectures, some of the support routines are aware of the possible existence of PMD or PUD size mappings inside the VMALLOC region. This is necessary given that vmalloc() shares this region and the unmap routines with ioremap(), which may use huge pages on some architectures (HAVE_ARCH_HUGE_VMAP). On arm64 running with 4 KB pages, VM_MAP mappings will exist in the VMALLOC region that are mapped to some extent using PMD size mappings. As reported by Zhong Jiang, this confuses the kcore code, given that vread() does not expect having to deal with PMD mappings, resulting in oopses. Even though we could work around this by special casing kcore or vmalloc code for the VM_MAP mappings used by the arm64 kernel, the fact is that there is already a precedent for dealing with PMD/PUD mappings in the VMALLOC region, and so we could update the vmalloc_to_page() routine to deal with such mappings as well. This solves the problem, and brings us a step closer to huge page support in vmalloc/vmap, which could well be in our future anyway. Reported-by: Zhong Jiang <zhongjiang@xxxxxxxxxx> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@xxxxxxxxxx> --- v2: - simplify so we can get rid of #ifdefs (drop huge_ptep_get(), which seems unnecessary given that p?d_huge() can be assumed to imply p?d_present()) - use HAVE_ARCH_HUGE_VMAP Kconfig define as indicator whether huge mappings in the vmalloc range are to be expected, and VM_BUG_ON() otherwise mm/vmalloc.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 34a1c3e46ed7..451cd5cafedc 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -12,6 +12,7 @@ #include <linux/mm.h> #include <linux/module.h> #include <linux/highmem.h> +#include <linux/hugetlb.h> #include <linux/sched/signal.h> #include <linux/slab.h> #include <linux/spinlock.h> @@ -289,9 +290,17 @@ struct page *vmalloc_to_page(const void *vmalloc_addr) pud = pud_offset(p4d, addr); if (pud_none(*pud)) return NULL; + if (pud_huge(*pud)) { + VM_BUG_ON(!IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMAP)); + return pud_page(*pud) + ((addr & ~PUD_MASK) >> PAGE_SHIFT); + } pmd = pmd_offset(pud, addr); if (pmd_none(*pmd)) return NULL; + if (pmd_huge(*pmd)) { + VM_BUG_ON(!IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMAP)); + return pmd_page(*pmd) + ((addr & ~PMD_MASK) >> PAGE_SHIFT); + } ptep = pte_offset_map(pmd, addr); pte = *ptep; -- 2.9.3 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>