x86/apic: Get rid of apic_version[] array
authorDenys Vlasenko <dvlasenk@redhat.com>
Tue, 13 Sep 2016 18:12:32 +0000 (20:12 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 19 Sep 2016 22:31:19 +0000 (00:31 +0200)
commitcff9ab2b291e64259d97add48fe073c081afe4e2
treeed8344295d9fc5691dbed49603a643b02afbf83f
parentb0f48706a176b71a6e54f399d7404bbeeaa7cfab
x86/apic: Get rid of apic_version[] array

The array has a size of MAX_LOCAL_APIC, which can be as large as 32k, so it
can consume up to 128k.

The array has been there forever and was never used for anything useful
other than a version mismatch check which was introduced in 2009.

There is no reason to store the version in an array. The kernel is not
prepared to handle different APIC versions anyway, so the real important
part is to detect a version mismatch and warn about it, which can be done
with a single variable as well.

[ tglx: Massaged changelog ]

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
CC: Andy Lutomirski <luto@amacapital.net>
CC: Borislav Petkov <bp@alien8.de>
CC: Brian Gerst <brgerst@gmail.com>
CC: Mike Travis <travis@sgi.com>
Link: http://lkml.kernel.org/r/20160913181232.30815-1-dvlasenk@redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/include/asm/mpspec.h
arch/x86/kernel/acpi/boot.c
arch/x86/kernel/apic/apic.c
arch/x86/kernel/apic/io_apic.c
arch/x86/kernel/apic/probe_32.c
arch/x86/kernel/smpboot.c