mmdebug.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef LINUX_MM_DEBUG_H
  2. #define LINUX_MM_DEBUG_H 1
  3. #include <linux/bug.h>
  4. #include <linux/stringify.h>
  5. struct page;
  6. struct vm_area_struct;
  7. struct mm_struct;
  8. extern void dump_page(struct page *page, const char *reason);
  9. extern void dump_page_badflags(struct page *page, const char *reason,
  10. unsigned long badflags);
  11. void dump_vma(const struct vm_area_struct *vma);
  12. void dump_mm(const struct mm_struct *mm);
  13. #ifdef CONFIG_DEBUG_VM
  14. #define VM_BUG_ON(cond) BUG_ON(cond)
  15. #define VM_BUG_ON_PAGE(cond, page) \
  16. do { \
  17. if (unlikely(cond)) { \
  18. dump_page(page, "VM_BUG_ON_PAGE(" __stringify(cond)")");\
  19. BUG(); \
  20. } \
  21. } while (0)
  22. #define VM_BUG_ON_VMA(cond, vma) \
  23. do { \
  24. if (unlikely(cond)) { \
  25. dump_vma(vma); \
  26. BUG(); \
  27. } \
  28. } while (0)
  29. #define VM_BUG_ON_MM(cond, mm) \
  30. do { \
  31. if (unlikely(cond)) { \
  32. dump_mm(mm); \
  33. BUG(); \
  34. } \
  35. } while (0)
  36. #define VM_WARN_ON(cond) WARN_ON(cond)
  37. #define VM_WARN_ON_ONCE(cond) WARN_ON_ONCE(cond)
  38. #define VM_WARN_ONCE(cond, format...) WARN_ONCE(cond, format)
  39. #else
  40. #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond)
  41. #define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond)
  42. #define VM_BUG_ON_VMA(cond, vma) VM_BUG_ON(cond)
  43. #define VM_BUG_ON_MM(cond, mm) VM_BUG_ON(cond)
  44. #define VM_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond)
  45. #define VM_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond)
  46. #define VM_WARN_ONCE(cond, format...) BUILD_BUG_ON_INVALID(cond)
  47. #endif
  48. #ifdef CONFIG_DEBUG_VIRTUAL
  49. #define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
  50. #else
  51. #define VIRTUAL_BUG_ON(cond) do { } while (0)
  52. #endif
  53. #endif