The patch titled futex: disable PI/robust on archs w/o valid implementation has been removed from the -mm tree. Its filename was futex-disable-pi-robust-on-archs-w-o-valid-implementation.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: futex: disable PI/robust on archs w/o valid implementation From: Thomas Gleixner <tglx@xxxxxxxxxxxxx> We have to disable the complete PI/robust functionality for those archs, which do not implement futex_atomic_cmpxchg_inatomic(). The code in question relies on a valid implementation and does not expect -ENOSYS, which is returned by the stub implementation in asm-generic/futex.h Pointed out by: Mikael Pettersson, Riku Voipio and Adrian Bunk This patch is intended for easy backporting and needs to be cleaned up further for current mainline. Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Acked-by: Ingo Molnar <mingo@xxxxxxx> Acked-by: Lennert Buytenhek <buytenh@xxxxxxxxxxxxxx> Tested-by: Riku Voipio <riku.voipio@xxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-generic/futex.h | 2 ++ kernel/futex.c | 13 +++++++++++++ 2 files changed, 15 insertions(+) diff -puN include/asm-generic/futex.h~futex-disable-pi-robust-on-archs-w-o-valid-implementation include/asm-generic/futex.h --- a/include/asm-generic/futex.h~futex-disable-pi-robust-on-archs-w-o-valid-implementation +++ a/include/asm-generic/futex.h @@ -55,5 +55,7 @@ futex_atomic_cmpxchg_inatomic(int __user return -ENOSYS; } +#define FUTEX_ATOMIC_CMPXCHG_NOT_IMPLEMENTED + #endif #endif diff -puN kernel/futex.c~futex-disable-pi-robust-on-archs-w-o-valid-implementation kernel/futex.c --- a/kernel/futex.c~futex-disable-pi-robust-on-archs-w-o-valid-implementation +++ a/kernel/futex.c @@ -1870,6 +1870,9 @@ asmlinkage long sys_set_robust_list(struct robust_list_head __user *head, size_t len) { +#ifdef FUTEX_ATOMIC_CMPXCHG_NOT_IMPLEMENTED + return -ENOSYS; +#else /* * The kernel knows only one size for now: */ @@ -1879,6 +1882,7 @@ sys_set_robust_list(struct robust_list_h current->robust_list = head; return 0; +#endif } /** @@ -1891,6 +1895,9 @@ asmlinkage long sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr, size_t __user *len_ptr) { +#ifdef FUTEX_ATOMIC_CMPXCHG_NOT_IMPLEMENTED + return -ENOSYS; +#else struct robust_list_head __user *head; unsigned long ret; @@ -1920,6 +1927,7 @@ err_unlock: rcu_read_unlock(); return ret; +#endif } /* @@ -2082,6 +2090,9 @@ long do_futex(u32 __user *uaddr, int op, case FUTEX_WAKE_OP: ret = futex_wake_op(uaddr, fshared, uaddr2, val, val2, val3); break; + +#ifndef FUTEX_ATOMIC_CMPXCHG_NOT_IMPLEMENTED + case FUTEX_LOCK_PI: ret = futex_lock_pi(uaddr, fshared, val, timeout, 0); break; @@ -2091,6 +2102,8 @@ long do_futex(u32 __user *uaddr, int op, case FUTEX_TRYLOCK_PI: ret = futex_lock_pi(uaddr, fshared, 0, timeout, 1); break; +#endif + default: ret = -ENOSYS; } _ Patches currently in -mm which might be from tglx@xxxxxxxxxxxxx are origin.patch git-hrt.patch git-kvm.patch quirks-set-en-bit-of-msi-mapping-for-devices-onht-based-nvidia-platform.patch pci-disable-decoding-during-sizing-of-bars.patch execute-tasklets-in-the-same-order-they-were-queued.patch x86-amd-thermal-interrupt-support.patch x86-remove-pt_regs-arg-from-smp_thermal_interrupt.patch x86-visws-fix-printk-format-warnings.patch x86-minor-cleanup-of-comments-in-processorh.patch documentation-i386-io-apictxt-fix-description.patch x86_64-set-cfg_size-for-amd-family-10h-in-case-mmconfig-is-used.patch rtc-cmos-display-hpet-emulation-mode.patch x86-cast-cmpxchg-and-cmpxchg_local-result-for-386-and-486.patch dmi-prevent-linked-list-corruption-resent.patch x86-fix-clearcopy_user_page-declarations-in-pageh.patch futex-fix-init-order.patch futex-runtime-enable-pi-and-robust-functionality.patch x86-configurable-dmi-scanning-code.patch asm-futexh-should-include-linux-uaccessh.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