mirror of
https://github.com/dynup/kpatch
synced 2024-12-25 23:02:02 +00:00
fix test conflict
I accidentally added two tests which both create a non-static kpatch_foo() function, which breaks the combined integration test kernel build.
This commit is contained in:
parent
114b21c7e5
commit
dacdfcfd22
@ -6,7 +6,7 @@ Index: src/kernel/reboot.c
|
||||
return ret;
|
||||
}
|
||||
|
||||
+void kpatch_foo(void)
|
||||
+void kpatch_bar(void)
|
||||
+{
|
||||
+ if (!jiffies)
|
||||
+ printk("kpatch_foo\n");
|
||||
@ -14,7 +14,7 @@ Index: src/kernel/reboot.c
|
||||
+
|
||||
static void deferred_cad(struct work_struct *dummy)
|
||||
{
|
||||
+ kpatch_foo();
|
||||
+ kpatch_bar();
|
||||
kernel_restart(NULL);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user