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; }