mirror of
https://github.com/dynup/kpatch
synced 2024-12-23 21:52:07 +00:00
f42a4127f5
Rebase the integration test cases on top of RHEL 8.0 kernel version 4.18.0-80.el8. Suggested-by: Joe Lawrence <joe.lawrence@redhat.com> Signed-off-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com> [JT: adapt data-new-LOADED to new meminfo format, use common template for multiple.test] Signed-off-by: Julien Thierry <jthierry@redhat.com>
15 lines
336 B
Diff
15 lines
336 B
Diff
diff --git a/fs/proc/cmdline.c b/fs/proc/cmdline.c
|
|
index fa762c5..bd66027 100644
|
|
--- a/fs/proc/cmdline.c
|
|
+++ b/fs/proc/cmdline.c
|
|
@@ -6,8 +6,7 @@
|
|
|
|
static int cmdline_proc_show(struct seq_file *m, void *v)
|
|
{
|
|
- seq_puts(m, saved_command_line);
|
|
- seq_putc(m, '\n');
|
|
+ seq_printf(m, "%s kpatch=1\n", saved_command_line);
|
|
return 0;
|
|
}
|
|
|