diff options
author | Will Deacon <will.deacon@arm.com> | 2014-05-02 12:06:19 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2014-05-29 20:12:25 -0400 |
commit | 8a87411b649c6082aebea613e84dcb3f174f72fb (patch) | |
tree | 28495f7a7994a61dca067b9d7fa1e8f2eb6e314c | |
parent | 03eff46ce31dbb186fea3eb2016e1c41f000db7e (diff) |
ARM: 8047/1: rwsem: use asm-generic rwsem implementation
asm-generic offers an atomic-add based rwsem implementation, which
can avoid the need for heavier, spinlock-based synchronisation on the
fast path.
This patch makes use of the optimised implementation for ARM CPUs.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/Kconfig | 5 | ||||
-rw-r--r-- | arch/arm/include/asm/Kbuild | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 58506175a3ea..ce64b7f66328 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -165,12 +165,9 @@ config TRACE_IRQFLAGS_SUPPORT | |||
165 | bool | 165 | bool |
166 | default y | 166 | default y |
167 | 167 | ||
168 | config RWSEM_GENERIC_SPINLOCK | ||
169 | bool | ||
170 | default y | ||
171 | |||
172 | config RWSEM_XCHGADD_ALGORITHM | 168 | config RWSEM_XCHGADD_ALGORITHM |
173 | bool | 169 | bool |
170 | default y | ||
174 | 171 | ||
175 | config ARCH_HAS_ILOG2_U32 | 172 | config ARCH_HAS_ILOG2_U32 |
176 | bool | 173 | bool |
diff --git a/arch/arm/include/asm/Kbuild b/arch/arm/include/asm/Kbuild index 23e728ecf8ab..f5a357601983 100644 --- a/arch/arm/include/asm/Kbuild +++ b/arch/arm/include/asm/Kbuild | |||
@@ -21,6 +21,7 @@ generic-y += parport.h | |||
21 | generic-y += poll.h | 21 | generic-y += poll.h |
22 | generic-y += preempt.h | 22 | generic-y += preempt.h |
23 | generic-y += resource.h | 23 | generic-y += resource.h |
24 | generic-y += rwsem.h | ||
24 | generic-y += sections.h | 25 | generic-y += sections.h |
25 | generic-y += segment.h | 26 | generic-y += segment.h |
26 | generic-y += sembuf.h | 27 | generic-y += sembuf.h |