mirror of
https://github.com/dynup/kpatch
synced 2025-02-16 17:57:02 +00:00
This is a test example currently preferable to proc-version.patch as crash utility has difficulty parsing /proc/version content after being altered. Signed-off-by: Linqing Lu <lilu@redhat.com>
14 lines
396 B
Diff
14 lines
396 B
Diff
diff -Nupr src.orig/fs/proc/cmdline.c src/fs/proc/cmdline.c
|
|
--- src.orig/fs/proc/cmdline.c 2022-10-24 15:41:08.858760066 -0400
|
|
+++ src/fs/proc/cmdline.c 2022-10-24 15:41:11.698715352 -0400
|
|
@@ -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;
|
|
}
|
|
|