The patch titled uml: remove pte_mkexec has been added to the -mm tree. Its filename is uml-remove-pte_mkexec.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: uml: remove pte_mkexec From: Jeff Dike <jdike@xxxxxxxxxxx> Andi is making pte_mkexec go away, and UML had one of the last uses. This removes the use and the definition. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/kernel/skas/mmu.c | 6 ++++-- include/asm-um/pgtable.h | 6 ------ 2 files changed, 4 insertions(+), 8 deletions(-) diff -puN arch/um/kernel/skas/mmu.c~uml-remove-pte_mkexec arch/um/kernel/skas/mmu.c --- a/arch/um/kernel/skas/mmu.c~uml-remove-pte_mkexec +++ a/arch/um/kernel/skas/mmu.c @@ -61,8 +61,10 @@ static int init_stub_pte(struct mm_struc #endif *pte = mk_pte(virt_to_page(kernel), __pgprot(_PAGE_PRESENT)); - *pte = pte_mkexec(*pte); - *pte = pte_wrprotect(*pte); + /* 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); return(0); out_pmd: diff -puN include/asm-um/pgtable.h~uml-remove-pte_mkexec include/asm-um/pgtable.h --- a/include/asm-um/pgtable.h~uml-remove-pte_mkexec +++ a/include/asm-um/pgtable.h @@ -274,12 +274,6 @@ static inline pte_t pte_mkread(pte_t pte return(pte_mknewprot(pte)); } -static inline pte_t pte_mkexec(pte_t pte) -{ - pte_set_bits(pte, _PAGE_USER); - return(pte_mknewprot(pte)); -} - static inline pte_t pte_mkdirty(pte_t pte) { pte_set_bits(pte, _PAGE_DIRTY); _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are origin.patch fix-the-init_env_arg_limit-dependencies.patch uml-fix-proc-mounts-parsing-boundary-condition.patch uml-fix-off-by-one-bug-in-vm-file-creation.patch uml-remove-pte_mkexec.patch uml-unregister-useless-console-when-its-not-needed.patch uml-add-locking-to-xtime-accesses.patch uml-remove-unneeded-time-definitions.patch uml-remove-stray-file.patch uml-fix-biarch-gcc-build-on-x86_64.patch uml-add-__raw_writeq-definition.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.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