mirror of https://github.com/dynup/kpatch
23 lines
548 B
Diff
23 lines
548 B
Diff
diff -Nupr src.orig/kernel/fork.c src/kernel/fork.c
|
|
--- src.orig/kernel/fork.c 2022-04-29 15:52:13.577336397 -0400
|
|
+++ src/kernel/fork.c 2022-04-29 15:53:18.857568709 -0400
|
|
@@ -1635,10 +1635,18 @@ static void posix_cpu_timers_init_group(
|
|
posix_cputimers_group_init(pct, cpu_limit);
|
|
}
|
|
|
|
+void kpatch_foo(void)
|
|
+{
|
|
+ if (!jiffies)
|
|
+ printk("kpatch copy signal\n");
|
|
+}
|
|
+
|
|
static int copy_signal(unsigned long clone_flags, struct task_struct *tsk)
|
|
{
|
|
struct signal_struct *sig;
|
|
|
|
+ kpatch_foo();
|
|
+
|
|
if (clone_flags & CLONE_THREAD)
|
|
return 0;
|
|
|