mirror of
https://github.com/dynup/kpatch
synced 2024-12-21 04:39:57 +00:00
76ebcd2fa4
This commit contains centos-7 patches rebased and adjusted to work with recent rhel minors so that integration tests actually pass on those. Signed-off-by: Artem Savkov <asavkov@redhat.com>
21 lines
422 B
Diff
21 lines
422 B
Diff
Index: kernel-rhel7/kernel/sys.c
|
|
===================================================================
|
|
--- kernel-rhel7.orig/kernel/sys.c
|
|
+++ kernel-rhel7/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);
|
|
}
|
|
|