Re: [RFC PATCH v2 3/3] resource, crash: Make kexec_file_load support pmem

From: Jane Chu
Date: Thu Apr 27 2023 - 16:42:20 EST


diff --git a/arch/x86/kernel/crash.c b/arch/x86/kernel/crash.c
index cdd92ab43cda..dc9d03083565 100644
--- a/arch/x86/kernel/crash.c
+++ b/arch/x86/kernel/crash.c
@@ -178,6 +178,7 @@ static struct crash_mem *fill_up_crash_elf_data(void)
if (!nr_ranges)
return NULL;
+ walk_pmem_res(0, -1, &nr_ranges, get_nr_ram_ranges_callback);

So this will overwrite 'nr_ranges' produced by the previous walk_system_ram_res() call, sure it's correct?

Regards,
-jane