In expert mode it is possible to enable CONFIG_DEBUG_LOCKS without
having enabled CONFIG_DEBUG. The coding is depending on CONFIG_DEBUG
as it is using ASSERT(), however.
Fix that by using BUG_ON() instead of ASSERT() in rel_lock().
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
static void rel_lock(union lock_debug *debug)
{
if ( atomic_read(&spin_debug) > 0 )
- ASSERT(debug->cpu == smp_processor_id());
+ BUG_ON(debug->cpu != smp_processor_id());
debug->cpu = SPINLOCK_NO_CPU;
}