mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
x86: avoid early crash in disable_local_APIC()
E.g. when called due to an early panic. Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
5cca0cf15a
commit
4a13ad0bd8
@ -895,6 +895,10 @@ void disable_local_APIC(void)
|
||||
{
|
||||
unsigned int value;
|
||||
|
||||
/* APIC hasn't been mapped yet */
|
||||
if (!apic_phys)
|
||||
return;
|
||||
|
||||
clear_local_APIC();
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user