* Re: Boot crash with 659006b x86/x2apic: Split enable and setup function
[not found] <55C75AEB.4070703@redhat.com>
@ 2015-08-09 13:59 ` Laura Abbott
2015-08-17 17:04 ` Thomas Gleixner
0 siblings, 1 reply; 2+ messages in thread
From: Laura Abbott @ 2015-08-09 13:59 UTC (permalink / raw)
To: Thomas Gleixner
Cc: Jiang Liu, Joerg Roedel, Tony Luck, Borislav Petkov, javiermon,
x86, Linux Kernel Mailing List
(missed the LKML cc apologies for the noise)
On 08/09/2015 06:51 AM, Laura Abbott wrote:
> Hi,
>
> We received a report[1] of an early boot crash. The reporter had difficulty getting a full
> kernel log to view and only had a screenshot which showed a crash in native_apic_mem_read
> (full screenshot available at the bugzilla along with dmesg from working kernel)
>
> Bisection identified the following commit:
>
> commit 659006bf3ae37a08706907ce1a36ddf57c9131d2
> Author: Thomas Gleixner <tglx@linutronix.de>
> Date: Thu Jan 15 21:22:26 2015 +0000
>
> x86/x2apic: Split enable and setup function
>
> enable_x2apic() is a convoluted unreadable mess because it is used for
> both enablement in early boot and for setup in cpu_init().
>
> Split the code into x2apic_enable() for enablement and x2apic_setup()
> for setup of (secondary cpus). Make use of the new state tracking to
> simplify the logic.
>
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> Cc: Jiang Liu <jiang.liu@linux.intel.com>
> Cc: Joerg Roedel <joro@8bytes.org>
> Cc: Tony Luck <tony.luck@intel.com>
> Cc: Borislav Petkov <bp@alien8.de>
> Link: http://lkml.kernel.org/r/20150115211703.129287153@linutronix.de
> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
>
> The report indicates that if local x2apic is disabled in the BIOS the kernel boots.
>
> Any ideas?
>
> Thanks,
> Laura
>
> [1]https://bugzilla.redhat.com/show_bug.cgi?id=1224764
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Boot crash with 659006b x86/x2apic: Split enable and setup function
2015-08-09 13:59 ` Boot crash with 659006b x86/x2apic: Split enable and setup function Laura Abbott
@ 2015-08-17 17:04 ` Thomas Gleixner
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Gleixner @ 2015-08-17 17:04 UTC (permalink / raw)
To: Laura Abbott
Cc: Jiang Liu, Joerg Roedel, Tony Luck, Borislav Petkov, javiermon,
x86, Linux Kernel Mailing List
On Sun, 9 Aug 2015, Laura Abbott wrote:
> (missed the LKML cc apologies for the noise)
>
> On 08/09/2015 06:51 AM, Laura Abbott wrote:
> > Hi,
> >
> > We received a report[1] of an early boot crash. The reporter had difficulty
> > getting a full
> > kernel log to view and only had a screenshot which showed a crash in
> > native_apic_mem_read
> > (full screenshot available at the bugzilla along with dmesg from working
> > kernel)
> >
> > Bisection identified the following commit:
> >
> > commit 659006bf3ae37a08706907ce1a36ddf57c9131d2
> > Author: Thomas Gleixner <tglx@linutronix.de>
> > Date: Thu Jan 15 21:22:26 2015 +0000
> >
> > x86/x2apic: Split enable and setup function
> >
> > enable_x2apic() is a convoluted unreadable mess because it is used for
> > both enablement in early boot and for setup in cpu_init().
> >
> > Split the code into x2apic_enable() for enablement and x2apic_setup()
> > for setup of (secondary cpus). Make use of the new state tracking to
> > simplify the logic.
> >
> > Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> > Cc: Jiang Liu <jiang.liu@linux.intel.com>
> > Cc: Joerg Roedel <joro@8bytes.org>
> > Cc: Tony Luck <tony.luck@intel.com>
> > Cc: Borislav Petkov <bp@alien8.de>
> > Link: http://lkml.kernel.org/r/20150115211703.129287153@linutronix.de
> > Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
> >
> > The report indicates that if local x2apic is disabled in the BIOS the kernel
> > boots.
> >
> > Any ideas?
Does the patch below fix the issue?
Thanks,
tglx
-------------------->
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index dcb52850a28f..339cf4fc4ca9 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1424,7 +1424,7 @@ static inline void __x2apic_disable(void)
{
u64 msr;
- if (cpu_has_apic)
+ if (!cpu_has_apic)
return;
rdmsrl(MSR_IA32_APICBASE, msr);
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-08-17 17:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <55C75AEB.4070703@redhat.com>
2015-08-09 13:59 ` Boot crash with 659006b x86/x2apic: Split enable and setup function Laura Abbott
2015-08-17 17:04 ` Thomas Gleixner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox