mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 15:26:52 +07:00
f214737b75
Make sure that the lockdep_register_key() and lockdep_unregister_key() code is tested when running the lockdep tests. Signed-off-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Johannes Berg <johannes@sipsolutions.net> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Waiman Long <longman@redhat.com> Cc: Will Deacon <will.deacon@arm.com> Cc: johannes.berg@intel.com Cc: tj@kernel.org Link: https://lkml.kernel.org/r/20190214230058.196511-24-bvanassche@acm.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
27 lines
460 B
C
27 lines
460 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <liblockdep/mutex.h>
|
|
#include "common.h"
|
|
|
|
void main(void)
|
|
{
|
|
pthread_mutex_t a, b;
|
|
|
|
pthread_mutex_init(&a, NULL);
|
|
pthread_mutex_init(&b, NULL);
|
|
|
|
LOCK_UNLOCK_2(a, b);
|
|
LOCK_UNLOCK_2(b, a);
|
|
|
|
pthread_mutex_destroy(&b);
|
|
pthread_mutex_destroy(&a);
|
|
|
|
pthread_mutex_init(&a, NULL);
|
|
pthread_mutex_init(&b, NULL);
|
|
|
|
LOCK_UNLOCK_2(a, b);
|
|
LOCK_UNLOCK_2(b, a);
|
|
|
|
pthread_mutex_destroy(&b);
|
|
pthread_mutex_destroy(&a);
|
|
}
|