X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Flinux%2Fmutex-debug.h;h=731d77d6e155de48fed65db977d2e83843465c06;hb=e17dc9d350ba0dfc8662b4fb968c1a32d600d27b;hp=0ccd8f983b50b732497c96006f889caf73c1dabd;hpb=80c0531514516e43ae118ddf38424e06e5c3cb3c;p=pandora-kernel.git diff --git a/include/linux/mutex-debug.h b/include/linux/mutex-debug.h index 0ccd8f983b50..731d77d6e155 100644 --- a/include/linux/mutex-debug.h +++ b/include/linux/mutex-debug.h @@ -1,21 +1,23 @@ #ifndef __LINUX_MUTEX_DEBUG_H #define __LINUX_MUTEX_DEBUG_H +#include +#include + /* * Mutexes - debugging helpers: */ -#define __DEBUG_MUTEX_INITIALIZER(lockname) \ - , .held_list = LIST_HEAD_INIT(lockname.held_list), \ - .name = #lockname , .magic = &lockname - -#define mutex_init(sem) __mutex_init(sem, __FUNCTION__) +#define __DEBUG_MUTEX_INITIALIZER(lockname) \ + , .magic = &lockname -extern void FASTCALL(mutex_destroy(struct mutex *lock)); +#define mutex_init(mutex) \ +do { \ + static struct lock_class_key __key; \ + \ + __mutex_init((mutex), #mutex, &__key); \ +} while (0) -extern void mutex_debug_show_all_locks(void); -extern void mutex_debug_show_held_locks(struct task_struct *filter); -extern void mutex_debug_check_no_locks_held(struct task_struct *task); -extern void mutex_debug_check_no_locks_freed(const void *from, const void *to); +extern void mutex_destroy(struct mutex *lock); #endif