debug_locks.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. #ifdef CONFIG_LOCKDEP
  17. #include <linux/sched/clock.h>
  18. unsigned long long debug_locks_off_ts;
  19. #endif
  20. /*
  21. * We want to turn all lock-debugging facilities on/off at once,
  22. * via a global flag. The reason is that once a single bug has been
  23. * detected and reported, there might be cascade of followup bugs
  24. * that would just muddy the log. So we report the first one and
  25. * shut up after that.
  26. */
  27. int debug_locks = 1;
  28. EXPORT_SYMBOL_GPL(debug_locks);
  29. /*
  30. * The locking-testsuite uses <debug_locks_silent> to get a
  31. * 'silent failure': nothing is printed to the console when
  32. * a locking bug is detected.
  33. */
  34. int debug_locks_silent;
  35. EXPORT_SYMBOL_GPL(debug_locks_silent);
  36. /*
  37. * Generic 'turn off all lock debugging' function:
  38. */
  39. int debug_locks_off(void)
  40. {
  41. if (debug_locks && __debug_locks_off()) {
  42. #ifdef CONFIG_LOCKDEP
  43. debug_locks_off_ts = sched_clock();
  44. #endif
  45. if (!debug_locks_silent) {
  46. console_verbose();
  47. return 1;
  48. }
  49. }
  50. return 0;
  51. }
  52. EXPORT_SYMBOL_GPL(debug_locks_off);