mutex-debug.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Mutexes: blocking mutual exclusion locks
  3. *
  4. * started by Ingo Molnar:
  5. *
  6. * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
  7. *
  8. * This file contains mutex debugging related internal declarations,
  9. * prototypes and inline functions, for the CONFIG_DEBUG_MUTEXES case.
  10. * More details are in kernel/mutex-debug.c.
  11. */
  12. /*
  13. * This must be called with lock->wait_lock held.
  14. */
  15. extern void debug_mutex_lock_common(struct mutex *lock,
  16. struct mutex_waiter *waiter);
  17. extern void debug_mutex_wake_waiter(struct mutex *lock,
  18. struct mutex_waiter *waiter);
  19. extern void debug_mutex_free_waiter(struct mutex_waiter *waiter);
  20. extern void debug_mutex_add_waiter(struct mutex *lock,
  21. struct mutex_waiter *waiter,
  22. struct thread_info *ti);
  23. extern void mutex_remove_waiter(struct mutex *lock, struct mutex_waiter *waiter,
  24. struct thread_info *ti);
  25. extern void debug_mutex_unlock(struct mutex *lock);
  26. extern void debug_mutex_init(struct mutex *lock, const char *name,
  27. struct lock_class_key *key);
  28. static inline void mutex_set_owner(struct mutex *lock)
  29. {
  30. lock->owner = current;
  31. }
  32. static inline void mutex_clear_owner(struct mutex *lock)
  33. {
  34. lock->owner = NULL;
  35. }
  36. #define spin_lock_mutex(lock, flags) \
  37. do { \
  38. struct mutex *l = container_of(lock, struct mutex, wait_lock); \
  39. \
  40. DEBUG_LOCKS_WARN_ON(in_interrupt()); \
  41. local_irq_save(flags); \
  42. arch_spin_lock(&(lock)->rlock.raw_lock);\
  43. DEBUG_LOCKS_WARN_ON(l->magic != l); \
  44. } while (0)
  45. #define spin_unlock_mutex(lock, flags) \
  46. do { \
  47. arch_spin_unlock(&(lock)->rlock.raw_lock); \
  48. local_irq_restore(flags); \
  49. preempt_check_resched(); \
  50. } while (0)