Commit-ID:  d9b9ff8c18891d74dc7076800bde81b774f7d032
Gitweb:     http://git.kernel.org/tip/d9b9ff8c18891d74dc7076800bde81b774f7d032
Author:     David Hildenbrand <d...@linux.vnet.ibm.com>
AuthorDate: Mon, 11 May 2015 17:52:14 +0200
Committer:  Ingo Molnar <mi...@kernel.org>
CommitDate: Tue, 19 May 2015 08:39:16 +0200

sched/preempt, futex: Disable preemption in UP futex_atomic_cmpxchg_inatomic() 
explicitly

Let's explicitly disable/enable preemption in the !CONFIG_SMP version
of futex_atomic_cmpxchg_inatomic(), to prepare for pagefault_disable() not
touching preemption anymore. This is needed for this function to be
callable from both, atomic and non-atomic context.

Otherwise we might break mutual exclusion when relying on a get_user()/
put_user() implementation.

Reviewed-and-tested-by: Thomas Gleixner <t...@linutronix.de>
Signed-off-by: David Hildenbrand <d...@linux.vnet.ibm.com>
Signed-off-by: Peter Zijlstra (Intel) <pet...@infradead.org>
Cc: david.lai...@aculab.com
Cc: Linus Torvalds <torva...@linux-foundation.org>
Cc: Peter Zijlstra <pet...@infradead.org>
Cc: Thomas Gleixner <t...@linutronix.de>
Cc: airl...@linux.ie
Cc: a...@linux-foundation.org
Cc: b...@kernel.crashing.org
Cc: bige...@linutronix.de
Cc: borntrae...@de.ibm.com
Cc: daniel.vet...@intel.com
Cc: heiko.carst...@de.ibm.com
Cc: herb...@gondor.apana.org.au
Cc: ho...@suse.cz
Cc: hu...@google.com
Cc: m...@redhat.com
Cc: pau...@samba.org
Cc: r...@linux-mips.org
Cc: schwidef...@de.ibm.com
Cc: yang....@windriver.com
Link: 
http://lkml.kernel.org/r/1431359540-32227-10-git-send-email-d...@linux.vnet.ibm.com
Signed-off-by: Ingo Molnar <mi...@kernel.org>
---
 include/asm-generic/futex.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/asm-generic/futex.h b/include/asm-generic/futex.h
index 3586017..e56272c 100644
--- a/include/asm-generic/futex.h
+++ b/include/asm-generic/futex.h
@@ -107,6 +107,7 @@ futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
 {
        u32 val;
 
+       preempt_disable();
        if (unlikely(get_user(val, uaddr) != 0))
                return -EFAULT;
 
@@ -114,6 +115,7 @@ futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
                return -EFAULT;
 
        *uval = val;
+       preempt_enable();
 
        return 0;
 }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to