summaryrefslogtreecommitdiffstats
path: root/kernel/tracepoint.c
diff options
context:
space:
mode:
authorJianlin Lv <iecedge@gmail.com>2022-11-02 16:02:36 +0000
committerSteven Rostedt (Google) <rostedt@goodmis.org>2023-02-18 14:34:36 -0500
commite7bb66f79a7b19a47b3eff745ea9f7ba1ae76032 (patch)
tree53d19c415d584471bf0686596a270cac22c2314f /kernel/tracepoint.c
parent2455f0e124d317dd08d337a7550a78a224d4ba41 (diff)
downloadlinux-e7bb66f79a7b19a47b3eff745ea9f7ba1ae76032.tar.gz
linux-e7bb66f79a7b19a47b3eff745ea9f7ba1ae76032.tar.bz2
linux-e7bb66f79a7b19a47b3eff745ea9f7ba1ae76032.zip
tracepoint: Allow livepatch module add trace event
In the case of keeping the system running, the preferred method for tracing the kernel is dynamic tracing (kprobe), but the drawback of this method is that events are lost, especially when tracing packages in the network stack. Livepatching provides a potential solution, which is to reimplement the function you want to replace and insert a static tracepoint. In such a way, custom stable static tracepoints can be expanded without rebooting the system. Link: https://lkml.kernel.org/r/20221102160236.11696-1-iecedge@gmail.com Signed-off-by: Jianlin Lv <iecedge@gmail.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Diffstat (limited to 'kernel/tracepoint.c')
-rw-r--r--kernel/tracepoint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/tracepoint.c b/kernel/tracepoint.c
index f23144af5743..8d1507dd0724 100644
--- a/kernel/tracepoint.c
+++ b/kernel/tracepoint.c
@@ -571,8 +571,8 @@ static void for_each_tracepoint_range(
bool trace_module_has_bad_taint(struct module *mod)
{
return mod->taints & ~((1 << TAINT_OOT_MODULE) | (1 << TAINT_CRAP) |
- (1 << TAINT_UNSIGNED_MODULE) |
- (1 << TAINT_TEST));
+ (1 << TAINT_UNSIGNED_MODULE) | (1 << TAINT_TEST) |
+ (1 << TAINT_LIVEPATCH));
}
static BLOCKING_NOTIFIER_HEAD(tracepoint_notify_list);