debug_locks.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * lib/debug_locks.c
  3. *
  4. * Generic place for common debugging facilities for various locks:
  5. * spinlocks, rwlocks, mutexes and rwsems.
  6. *
  7. * Started by Ingo Molnar:
  8. *
  9. * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
  10. */
  11. #include <linux/rwsem.h>
  12. #include <linux/mutex.h>
  13. #include <linux/export.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/debug_locks.h>
  16. /*
  17. * We want to turn all lock-debugging facilities on/off at once,
  18. * via a global flag. The reason is that once a single bug has been
  19. * detected and reported, there might be cascade of followup bugs
  20. * that would just muddy the log. So we report the first one and
  21. * shut up after that.
  22. */
  23. int debug_locks = 1;
  24. EXPORT_SYMBOL_GPL(debug_locks);
  25. /*
  26. * The locking-testsuite uses <debug_locks_silent> to get a
  27. * 'silent failure': nothing is printed to the console when
  28. * a locking bug is detected.
  29. */
  30. int debug_locks_silent;
  31. EXPORT_SYMBOL_GPL(debug_locks_silent);
  32. /*
  33. * Generic 'turn off all lock debugging' function:
  34. */
  35. int debug_locks_off(void)
  36. {
  37. if (debug_locks && __debug_locks_off()) {
  38. if (!debug_locks_silent) {
  39. console_verbose();
  40. return 1;
  41. }
  42. }
  43. return 0;
  44. }
  45. EXPORT_SYMBOL_GPL(debug_locks_off);