The patch titled uml: correct removal of pte_mkexec has been removed from the -mm tree. Its filename is uml-correct-removal-of-pte_mkexec.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: uml: correct removal of pte_mkexec From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Correct commit 5906e4171ad61ce68de95e51b773146707671f80 - this makes more sense: we turn pte_mkexec + pte_wrprotect to pte_mkread. However, due to a bug in pte_mkread, it does the exact same thing as pte_mkwrite, so this patch improves the code but does not change anything in practice. The pte_mkread bug is fixed separately, as it may have big impact. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Cc: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/kernel/skas/mmu.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff -puN arch/um/kernel/skas/mmu.c~uml-correct-removal-of-pte_mkexec arch/um/kernel/skas/mmu.c --- a/arch/um/kernel/skas/mmu.c~uml-correct-removal-of-pte_mkexec +++ a/arch/um/kernel/skas/mmu.c @@ -60,10 +60,7 @@ static int init_stub_pte(struct mm_struc #endif *pte = mk_pte(virt_to_page(kernel), __pgprot(_PAGE_PRESENT)); - /* This is wrong for the code page, but it doesn't matter since the - * stub is mapped by hand with the correct permissions. - */ - *pte = pte_mkwrite(*pte); + *pte = pte_mkread(*pte); return(0); out_pmd: _ Patches currently in -mm which might be from blaisorblade@xxxxxxxx are origin.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