x86/boot/e820: Rename the e820_table_firmware to e820_table_kexec

Currently the e820_table_firmware[] table is mainly used by the kexec,
and it is not what it's supposed to be - despite its name it might be
modified by the kernel.

So change its name to e820_table_kexec[]. In the next patch we will
introduce the real e820_table_firmware[] table.

No functional change.

Signed-off-by: Chen Yu <yu.c.chen@intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Xunlei Pang <xlpang@redhat.com>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
Chen Yu
2017-07-03 01:07:12 +08:00
committed by Ingo Molnar
parent b7a67e02cd
commit a09bae0f8a
4 changed files with 26 additions and 26 deletions

View File

@@ -4,7 +4,7 @@
#include <asm/e820/types.h>
extern struct e820_table *e820_table;
extern struct e820_table *e820_table_firmware;
extern struct e820_table *e820_table_kexec;
extern unsigned long pci_mem_start;