mirror of
https://github.com/dynup/kpatch
synced 2025-02-18 02:37:01 +00:00
Provides integration tests for rhel-8.9 (kernel-4.18.0-513.5.1.el8_9), note that module.test is from the linux-6.2/ directory and not rhel-8.8/ Signed-off-by: Ryan Sullivan <rysulliv@redhat.com>
14 lines
529 B
Diff
14 lines
529 B
Diff
diff -Nupr src.orig/kernel/time/timer.c src/kernel/time/timer.c
|
|
--- src.orig/kernel/time/timer.c 2023-05-18 13:26:13.459170615 -0400
|
|
+++ src/kernel/time/timer.c 2023-05-18 13:27:39.140069653 -0400
|
|
@@ -1986,6 +1986,9 @@ static __latent_entropy void run_timer_s
|
|
{
|
|
struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
|
|
|
|
+ if (!base)
|
|
+ printk("kpatch-test: testing __tracepoints section changes\n");
|
|
+
|
|
__run_timers(base);
|
|
if (IS_ENABLED(CONFIG_NO_HZ_COMMON))
|
|
__run_timers(this_cpu_ptr(&timer_bases[BASE_DEF]));
|