Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'probes-fixes-v6.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace

Pull probes fix from Masami Hiramatsu:
"Change the priority of the module callback of kprobe events so that it
is called after the jump label list on the module is updated.

This ensures the kprobe can check whether it is not on the jump label
address correctly"

* tag 'probes-fixes-v6.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
tracing/kprobe: Make trace_kprobe's module callback called after jump_label update

+1 -1
+1 -1
kernel/trace/trace_kprobe.c
··· 725 725 726 726 static struct notifier_block trace_kprobe_module_nb = { 727 727 .notifier_call = trace_kprobe_module_callback, 728 - .priority = 1 /* Invoked after kprobe module callback */ 728 + .priority = 2 /* Invoked after kprobe and jump_label module callback */ 729 729 }; 730 730 static int trace_kprobe_register_module_notifier(void) 731 731 {