diff options
author | Chen Yu <yu.c.chen@intel.com> | 2017-07-02 20:07:12 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-07-05 11:09:02 +0300 |
commit | a09bae0f8aa08d4d76d0ebece26062a49ec51ac9 (patch) | |
tree | e1b8e516aac48383e549e951ee44b120cba4ab8f /arch/x86/include/asm/e820 | |
parent | b7a67e02cd2b0d632114dcfb4bfb9b1d85dee325 (diff) | |
download | linux-a09bae0f8aa08d4d76d0ebece26062a49ec51ac9.tar.xz |
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>
Diffstat (limited to 'arch/x86/include/asm/e820')
-rw-r--r-- | arch/x86/include/asm/e820/api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/e820/api.h b/arch/x86/include/asm/e820/api.h index 8e0f8b85b209..a688095421ab 100644 --- a/arch/x86/include/asm/e820/api.h +++ b/arch/x86/include/asm/e820/api.h @@ -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; |