kdebug.h 391 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
  4. */
  5. #ifndef _ASM_LOONGARCH_KDEBUG_H
  6. #define _ASM_LOONGARCH_KDEBUG_H
  7. #include <linux/notifier.h>
  8. enum die_val {
  9. DIE_OOPS = 1,
  10. DIE_RI,
  11. DIE_FP,
  12. DIE_SIMD,
  13. DIE_TRAP,
  14. DIE_PAGE_FAULT,
  15. DIE_BREAK,
  16. DIE_SSTEPBP,
  17. DIE_UPROBE,
  18. DIE_UPROBE_XOL,
  19. };
  20. #endif /* _ASM_LOONGARCH_KDEBUG_H */