Commit e9165bbb authored by Mitchell Blank Jr's avatar Mitchell Blank Jr Committed by David S. Miller

[SPARC64]: Make HAVE_DEC_LOCK depend upon DEBUG_SPINLOCK.

parent d10d86b2
...@@ -209,10 +209,6 @@ config HOTPLUG ...@@ -209,10 +209,6 @@ config HOTPLUG
to use devices as you hotplug them. to use devices as you hotplug them.
# Global things across all Sun machines. # Global things across all Sun machines.
config HAVE_DEC_LOCK
bool
default y
config RWSEM_GENERIC_SPINLOCK config RWSEM_GENERIC_SPINLOCK
bool bool
...@@ -925,6 +921,14 @@ config DEBUG_SPINLOCK ...@@ -925,6 +921,14 @@ config DEBUG_SPINLOCK
best used in conjunction with the NMI watchdog so that spinlock best used in conjunction with the NMI watchdog so that spinlock
deadlocks are also debuggable. deadlocks are also debuggable.
# We have a custom atomic_dec_and_lock() implementation but it's not
# compatible with spinlock debugging so we need to fall back on
# the generic version in that case.
config HAVE_DEC_LOCK
bool
depends on !DEBUG_SPINLOCK
default y
config DEBUG_SPINLOCK_SLEEP config DEBUG_SPINLOCK_SLEEP
bool "Sleep-inside-spinlock checking" bool "Sleep-inside-spinlock checking"
help help
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment