mirror of
https://github.com/dynup/kpatch
synced 2024-12-12 00:14:35 +00:00
e8f396229d
The printks in the integration tests aren't very useful and annoyingly fill up the dmesg buffer. Remove them by making them contingent on unlikely conditions.
14 lines
466 B
Diff
14 lines
466 B
Diff
Index: src/fs/proc/proc_sysctl.c
|
|
===================================================================
|
|
--- src.orig/fs/proc/proc_sysctl.c
|
|
+++ src/fs/proc/proc_sysctl.c
|
|
@@ -266,6 +266,8 @@ void sysctl_head_put(struct ctl_table_he
|
|
|
|
static struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *head)
|
|
{
|
|
+ if (jiffies == 0)
|
|
+ printk("kpatch-test: testing __bug_table section changes\n");
|
|
BUG_ON(!head);
|
|
spin_lock(&sysctl_lock);
|
|
if (!use_table(head))
|