2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2009-11-09 15:21:34 +00:00
|
|
|
#
|
|
|
|
# The ARCH_INLINE foo is necessary because select ignores "depends on"
|
|
|
|
#
|
|
|
|
config ARCH_INLINE_SPIN_TRYLOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_TRYLOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_LOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_LOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_LOCK_IRQ
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_LOCK_IRQSAVE
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_UNLOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_UNLOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_UNLOCK_IRQ
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE
|
|
|
|
bool
|
|
|
|
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_TRYLOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_LOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_LOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_LOCK_IRQ
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_LOCK_IRQSAVE
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_UNLOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_UNLOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_UNLOCK_IRQ
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_READ_UNLOCK_IRQRESTORE
|
|
|
|
bool
|
|
|
|
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_TRYLOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_LOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_LOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_LOCK_IRQ
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_LOCK_IRQSAVE
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_UNLOCK
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_UNLOCK_BH
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_UNLOCK_IRQ
|
|
|
|
bool
|
|
|
|
|
|
|
|
config ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE
|
|
|
|
bool
|
|
|
|
|
2012-09-10 12:01:16 +00:00
|
|
|
config UNINLINE_SPIN_UNLOCK
|
|
|
|
bool
|
|
|
|
|
2009-11-09 15:21:34 +00:00
|
|
|
#
|
|
|
|
# lock_* functions are inlined when:
|
|
|
|
# - DEBUG_SPINLOCK=n and GENERIC_LOCKBREAK=n and ARCH_INLINE_*LOCK=y
|
|
|
|
#
|
|
|
|
# trylock_* functions are inlined when:
|
|
|
|
# - DEBUG_SPINLOCK=n and ARCH_INLINE_*LOCK=y
|
|
|
|
#
|
|
|
|
# unlock and unlock_irq functions are inlined when:
|
|
|
|
# - DEBUG_SPINLOCK=n and ARCH_INLINE_*LOCK=y
|
|
|
|
# or
|
2019-10-15 19:18:18 +00:00
|
|
|
# - DEBUG_SPINLOCK=n and PREEMPTION=n
|
2009-11-09 15:21:34 +00:00
|
|
|
#
|
|
|
|
# unlock_bh and unlock_irqrestore functions are inlined when:
|
|
|
|
# - DEBUG_SPINLOCK=n and ARCH_INLINE_*LOCK=y
|
|
|
|
#
|
|
|
|
|
2012-09-10 12:01:16 +00:00
|
|
|
if !DEBUG_SPINLOCK
|
|
|
|
|
2009-11-09 15:21:34 +00:00
|
|
|
config INLINE_SPIN_TRYLOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_SPIN_TRYLOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_TRYLOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_SPIN_TRYLOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_LOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_SPIN_LOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_LOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_SPIN_LOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_LOCK_IRQ
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_SPIN_LOCK_IRQ
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_LOCK_IRQSAVE
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_SPIN_LOCK_IRQSAVE
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_UNLOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_SPIN_UNLOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_UNLOCK_IRQ
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
2019-10-15 19:18:18 +00:00
|
|
|
depends on !PREEMPTION || ARCH_INLINE_SPIN_UNLOCK_IRQ
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_SPIN_UNLOCK_IRQRESTORE
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
config INLINE_READ_TRYLOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_READ_TRYLOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_LOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_READ_LOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_LOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_READ_LOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_LOCK_IRQ
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_READ_LOCK_IRQ
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_LOCK_IRQSAVE
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_READ_LOCK_IRQSAVE
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_UNLOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
2019-10-15 19:18:18 +00:00
|
|
|
depends on !PREEMPTION || ARCH_INLINE_READ_UNLOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_UNLOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_READ_UNLOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_UNLOCK_IRQ
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
2019-10-15 19:18:18 +00:00
|
|
|
depends on !PREEMPTION || ARCH_INLINE_READ_UNLOCK_IRQ
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_READ_UNLOCK_IRQRESTORE
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_READ_UNLOCK_IRQRESTORE
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
config INLINE_WRITE_TRYLOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_WRITE_TRYLOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_LOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_WRITE_LOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_LOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_WRITE_LOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_LOCK_IRQ
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_WRITE_LOCK_IRQ
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_LOCK_IRQSAVE
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on !GENERIC_LOCKBREAK && ARCH_INLINE_WRITE_LOCK_IRQSAVE
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_UNLOCK
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
2019-10-15 19:18:18 +00:00
|
|
|
depends on !PREEMPTION || ARCH_INLINE_WRITE_UNLOCK
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_UNLOCK_BH
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_WRITE_UNLOCK_BH
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_UNLOCK_IRQ
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
2019-10-15 19:18:18 +00:00
|
|
|
depends on !PREEMPTION || ARCH_INLINE_WRITE_UNLOCK_IRQ
|
2009-11-09 15:21:34 +00:00
|
|
|
|
|
|
|
config INLINE_WRITE_UNLOCK_IRQRESTORE
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
|
|
|
depends on ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE
|
|
|
|
|
|
|
|
endif
|
2009-12-02 19:49:16 +00:00
|
|
|
|
2014-06-06 17:53:16 +00:00
|
|
|
config ARCH_SUPPORTS_ATOMIC_RMW
|
|
|
|
bool
|
|
|
|
|
2009-12-02 19:49:16 +00:00
|
|
|
config MUTEX_SPIN_ON_OWNER
|
2012-09-10 12:01:16 +00:00
|
|
|
def_bool y
|
2016-08-23 11:45:15 +00:00
|
|
|
depends on SMP && ARCH_SUPPORTS_ATOMIC_RMW
|
2014-02-03 12:18:49 +00:00
|
|
|
|
2014-07-11 21:00:06 +00:00
|
|
|
config RWSEM_SPIN_ON_OWNER
|
|
|
|
def_bool y
|
2019-03-22 14:30:07 +00:00
|
|
|
depends on SMP && ARCH_SUPPORTS_ATOMIC_RMW
|
2014-07-11 21:00:06 +00:00
|
|
|
|
2015-01-06 19:45:07 +00:00
|
|
|
config LOCK_SPIN_ON_OWNER
|
|
|
|
def_bool y
|
|
|
|
depends on MUTEX_SPIN_ON_OWNER || RWSEM_SPIN_ON_OWNER
|
|
|
|
|
2015-05-11 07:47:23 +00:00
|
|
|
config ARCH_USE_QUEUED_SPINLOCKS
|
2015-04-24 18:56:30 +00:00
|
|
|
bool
|
|
|
|
|
2015-05-11 07:47:23 +00:00
|
|
|
config QUEUED_SPINLOCKS
|
|
|
|
def_bool y if ARCH_USE_QUEUED_SPINLOCKS
|
2015-04-24 18:56:40 +00:00
|
|
|
depends on SMP
|
2015-04-24 18:56:30 +00:00
|
|
|
|
2019-01-31 23:40:04 +00:00
|
|
|
config BPF_ARCH_SPINLOCK
|
|
|
|
bool
|
|
|
|
|
2015-05-11 17:57:11 +00:00
|
|
|
config ARCH_USE_QUEUED_RWLOCKS
|
2014-02-03 12:18:49 +00:00
|
|
|
bool
|
|
|
|
|
2015-05-11 17:57:11 +00:00
|
|
|
config QUEUED_RWLOCKS
|
|
|
|
def_bool y if ARCH_USE_QUEUED_RWLOCKS
|
2014-02-03 12:18:49 +00:00
|
|
|
depends on SMP
|
2019-02-22 12:48:44 +00:00
|
|
|
|
|
|
|
config ARCH_HAS_MMIOWB
|
|
|
|
bool
|
|
|
|
|
|
|
|
config MMIOWB
|
|
|
|
def_bool y if ARCH_HAS_MMIOWB
|
|
|
|
depends on SMP
|