mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 18:14:07 +08:00
cf3bb032fd
Don't call the ->break_handler() from the ia64 kprobes code, because it was only used by jprobes which got removed. Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Acked-by: Thomas Gleixner <tglx@linutronix.de> Cc: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Fenghua Yu <fenghua.yu@intel.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Tony Luck <tony.luck@intel.com> Cc: linux-arch@vger.kernel.org Cc: linux-ia64@vger.kernel.org Link: https://lore.kernel.org/lkml/152942480045.15209.10715901482832337704.stgit@devbox Signed-off-by: Ingo Molnar <mingo@kernel.org>
24 lines
501 B
C
24 lines
501 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _ASM_IA64_BREAK_H
|
|
#define _ASM_IA64_BREAK_H
|
|
|
|
/*
|
|
* IA-64 Linux break numbers.
|
|
*
|
|
* Copyright (C) 1999 Hewlett-Packard Co
|
|
* Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
|
|
*/
|
|
|
|
/*
|
|
* OS-specific debug break numbers:
|
|
*/
|
|
#define __IA64_BREAK_KDB 0x80100
|
|
#define __IA64_BREAK_KPROBE 0x81000 /* .. 0x81fff */
|
|
|
|
/*
|
|
* OS-specific break numbers:
|
|
*/
|
|
#define __IA64_BREAK_SYSCALL 0x100000
|
|
|
|
#endif /* _ASM_IA64_BREAK_H */
|