mirror of
https://github.com/dynup/kpatch
synced 2024-12-11 16:04:40 +00:00
0e0cee369a
Added integration-test patches rebased against rhel-7.7 GA kernel. No conflicts, some fuzz. Signed-off-by: Artem Savkov <asavkov@redhat.com>
15 lines
437 B
Diff
15 lines
437 B
Diff
Index: kernel/kernel/timer.c
|
|
===================================================================
|
|
--- kernel.orig/kernel/timer.c
|
|
+++ kernel/kernel/timer.c
|
|
@@ -1454,6 +1454,9 @@ static void run_timer_softirq(struct sof
|
|
{
|
|
struct tvec_base *base = __this_cpu_read(tvec_bases);
|
|
|
|
+ if (!base)
|
|
+ printk("kpatch-test: testing __tracepoints section changes\n");
|
|
+
|
|
if (time_after_eq(jiffies, base->timer_jiffies))
|
|
__run_timers(base);
|
|
}
|