diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2020-03-26 17:49:48 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2020-05-12 18:15:32 +0300 |
commit | 1e6769b0aece51ea7a3dc3117c37d4a5669e4a21 (patch) | |
tree | c2738aa86d5cd28739f7a0a754124da21881260e /include/linux/module.h | |
parent | 4fdd88877e5259dcc5e504dca449acc0324d71b9 (diff) | |
download | linux-1e6769b0aece51ea7a3dc3117c37d4a5669e4a21.tar.xz |
kprobes: Support __kprobes blacklist in modules
Support __kprobes attribute for blacklist functions in modules. The
__kprobes attribute functions are stored in .kprobes.text section.
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Alexandre Chartre <alexandre.chartre@oracle.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20200505134059.678201813@linutronix.de
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 1ad393e62bef..369c354f9207 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -489,6 +489,10 @@ struct module { unsigned int num_ftrace_callsites; unsigned long *ftrace_callsites; #endif +#ifdef CONFIG_KPROBES + void *kprobes_text_start; + unsigned int kprobes_text_size; +#endif #ifdef CONFIG_LIVEPATCH bool klp; /* Is this a livepatch module? */ |