summaryrefslogtreecommitdiff
path: root/arch/sh
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2020-03-28 13:59:24 +0300
committerThomas Gleixner <tglx@linutronix.de>2020-03-28 13:59:24 +0300
commitcf226c42b2d66b0f60d18fc2e44e68091fee6cef (patch)
tree6dae196f26ef862349481dc6fed875e42ded4fb4 /arch/sh
parent9e860351550b28901a78f122b1e2dc97f78ba369 (diff)
parentf5544ba712afd1b01dd856c7eecfb5d30beaf920 (diff)
downloadlinux-cf226c42b2d66b0f60d18fc2e44e68091fee6cef.tar.xz
Merge branch 'uaccess.futex' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs into locking/core
Pull uaccess futex cleanups for Al Viro: Consolidate access_ok() usage and the futex uaccess function zoo.
Diffstat (limited to 'arch/sh')
-rw-r--r--arch/sh/include/asm/futex.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/sh/include/asm/futex.h b/arch/sh/include/asm/futex.h
index 3190ec89df81..b39cda09fb95 100644
--- a/arch/sh/include/asm/futex.h
+++ b/arch/sh/include/asm/futex.h
@@ -34,8 +34,6 @@ static inline int arch_futex_atomic_op_inuser(int op, u32 oparg, int *oval,
u32 oldval, newval, prev;
int ret;
- pagefault_disable();
-
do {
ret = get_user(oldval, uaddr);
@@ -67,8 +65,6 @@ static inline int arch_futex_atomic_op_inuser(int op, u32 oparg, int *oval,
ret = futex_atomic_cmpxchg_inatomic(&prev, uaddr, oldval, newval);
} while (!ret && prev != oldval);
- pagefault_enable();
-
if (!ret)
*oval = oldval;