Blame test/integration/rhel-8.0/tracepoints-section.patch

Packit Service da4517
diff --git a/kernel/time/timer.c b/kernel/time/timer.c
Packit Service da4517
index 786f8c0..1105697 100644
Packit Service da4517
--- a/kernel/time/timer.c
Packit Service da4517
+++ b/kernel/time/timer.c
Packit Service da4517
@@ -1692,6 +1692,9 @@ static __latent_entropy void run_timer_softirq(struct softirq_action *h)
Packit Service da4517
 {
Packit Service da4517
 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
Packit Service da4517
 
Packit Service da4517
+	if (!base)
Packit Service da4517
+		printk("kpatch-test: testing __tracepoints section changes\n");
Packit Service da4517
+
Packit Service da4517
 	__run_timers(base);
Packit Service da4517
 	if (IS_ENABLED(CONFIG_NO_HZ_COMMON))
Packit Service da4517
 		__run_timers(this_cpu_ptr(&timer_bases[BASE_DEF]));