kpatch/test/integration/rhel-7.7/gcc-static-local-var-3.patch

21 lines
404 B
Diff

Index: kernel/kernel/sys.c
===================================================================
--- kernel.orig/kernel/sys.c
+++ kernel/kernel/sys.c
@@ -559,8 +559,15 @@ SYSCALL_DEFINE4(reboot, int, magic1, int
return ret;
}
+void kpatch_bar(void)
+{
+ if (!jiffies)
+ printk("kpatch_foo\n");
+}
+
static void deferred_cad(struct work_struct *dummy)
{
+ kpatch_bar();
kernel_restart(NULL);
}