mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

For now, DIE_PAGE_FAULT, DIE_BREAK, DIE_SSTEPBP, DIE_UPROBE and DIE_UPROBE_XOL are not used by any code, remove them. Tested-by: Jeff Xie <xiehuan09@gmail.com> Suggested-by: Youling Tang <tangyouling@loongson.cn> Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
18 lines
318 B
C
18 lines
318 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2020-2022 Loongson Technology Corporation Limited
|
|
*/
|
|
#ifndef _ASM_LOONGARCH_KDEBUG_H
|
|
#define _ASM_LOONGARCH_KDEBUG_H
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
enum die_val {
|
|
DIE_OOPS = 1,
|
|
DIE_RI,
|
|
DIE_FP,
|
|
DIE_SIMD,
|
|
DIE_TRAP,
|
|
};
|
|
|
|
#endif /* _ASM_LOONGARCH_KDEBUG_H */
|