hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/arch/x86/include/asm/crash.h
....@@ -5,8 +5,14 @@
55 struct kimage;
66
77 int crash_load_segments(struct kimage *image);
8
-int crash_copy_backup_region(struct kimage *image);
98 int crash_setup_memmap_entries(struct kimage *image,
109 struct boot_params *params);
10
+void crash_smp_send_stop(void);
11
+
12
+#ifdef CONFIG_KEXEC_CORE
13
+void __init crash_reserve_low_1M(void);
14
+#else
15
+static inline void __init crash_reserve_low_1M(void) { }
16
+#endif
1117
1218 #endif /* _ASM_X86_CRASH_H */