aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/kexec.h4
-rw-r--r--kernel/kexec.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/include/linux/kexec.h b/include/linux/kexec.h
index cbc3cd7e11c1..3265968cd2cd 100644
--- a/include/linux/kexec.h
+++ b/include/linux/kexec.h
@@ -127,6 +127,10 @@ void vmcoreinfo_append_str(const char *fmt, ...)
127 __attribute__ ((format (printf, 1, 2))); 127 __attribute__ ((format (printf, 1, 2)));
128unsigned long paddr_vmcoreinfo_note(void); 128unsigned long paddr_vmcoreinfo_note(void);
129 129
130#define VMCOREINFO_OSRELEASE(name) \
131 vmcoreinfo_append_str("OSRELEASE=%s\n", #name)
132#define VMCOREINFO_PAGESIZE(value) \
133 vmcoreinfo_append_str("PAGESIZE=%ld\n", value)
130#define VMCOREINFO_SYMBOL(name) \ 134#define VMCOREINFO_SYMBOL(name) \
131 vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name) 135 vmcoreinfo_append_str("SYMBOL(%s)=%lx\n", #name, (unsigned long)&name)
132#define VMCOREINFO_SIZE(name) \ 136#define VMCOREINFO_SIZE(name) \
diff --git a/kernel/kexec.c b/kernel/kexec.c
index 8eb4df1cabcc..06a0e2775651 100644
--- a/kernel/kexec.c
+++ b/kernel/kexec.c
@@ -1361,8 +1361,8 @@ unsigned long __attribute__ ((weak)) paddr_vmcoreinfo_note(void)
1361 1361
1362static int __init crash_save_vmcoreinfo_init(void) 1362static int __init crash_save_vmcoreinfo_init(void)
1363{ 1363{
1364 vmcoreinfo_append_str("OSRELEASE=%s\n", init_uts_ns.name.release); 1364 VMCOREINFO_OSRELEASE(init_uts_ns.name.release);
1365 vmcoreinfo_append_str("PAGESIZE=%ld\n", PAGE_SIZE); 1365 VMCOREINFO_PAGESIZE(PAGE_SIZE);
1366 1366
1367 VMCOREINFO_SYMBOL(init_uts_ns); 1367 VMCOREINFO_SYMBOL(init_uts_ns);
1368 VMCOREINFO_SYMBOL(node_online_map); 1368 VMCOREINFO_SYMBOL(node_online_map);