The patch titled Fix more pxx_page macro locations has been added to the -mm tree. Its filename is standardize-pxx_page-macros-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix more pxx_page macro locations From: Dave McCracken <dmccr@xxxxxxxxxx> It looks like I missed a couple of places. I guess I forgot to doublecheck for new code with pmd_page_kernel in it. Here's a patch with the additional places fixed. Signed-off-by: Dave McCracken <dmccr@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/arm/mm/ioremap.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/arm/mm/ioremap.c~standardize-pxx_page-macros-fix arch/arm/mm/ioremap.c --- a/arch/arm/mm/ioremap.c~standardize-pxx_page-macros-fix +++ a/arch/arm/mm/ioremap.c @@ -177,7 +177,7 @@ static void unmap_area_sections(unsigned * Free the page table, if there was one. */ if ((pmd_val(pmd) & PMD_TYPE_MASK) == PMD_TYPE_TABLE) - pte_free_kernel(pmd_page_kernel(pmd)); + pte_free_kernel(pmd_page_vaddr(pmd)); } addr += PGDIR_SIZE; _ Patches currently in -mm which might be from dmccr@xxxxxxxxxx are standardize-pxx_page-macros.patch standardize-pxx_page-macros-fix.patch avr32-standardize-pxx_page-macros-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html