mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 23:24:11 +08:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
30 lines
813 B
C
30 lines
813 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2012 ARM Ltd.
|
|
*/
|
|
|
|
#ifndef __ASM_BRK_IMM_H
|
|
#define __ASM_BRK_IMM_H
|
|
|
|
/*
|
|
* #imm16 values used for BRK instruction generation
|
|
* 0x004: for installing kprobes
|
|
* 0x005: for installing uprobes
|
|
* Allowed values for kgdb are 0x400 - 0x7ff
|
|
* 0x100: for triggering a fault on purpose (reserved)
|
|
* 0x400: for dynamic BRK instruction
|
|
* 0x401: for compile time BRK instruction
|
|
* 0x800: kernel-mode BUG() and WARN() traps
|
|
* 0x9xx: tag-based KASAN trap (allowed values 0x900 - 0x9ff)
|
|
*/
|
|
#define KPROBES_BRK_IMM 0x004
|
|
#define UPROBES_BRK_IMM 0x005
|
|
#define FAULT_BRK_IMM 0x100
|
|
#define KGDB_DYN_DBG_BRK_IMM 0x400
|
|
#define KGDB_COMPILED_DBG_BRK_IMM 0x401
|
|
#define BUG_BRK_IMM 0x800
|
|
#define KASAN_BRK_IMM 0x900
|
|
#define KASAN_BRK_MASK 0x0ff
|
|
|
|
#endif
|