bin/151616: [acpi]: FreeBSD 8 panic on boot.
John Baldwin
jhb at freebsd.org
Wed Oct 27 14:58:59 UTC 2010
On Wednesday, October 27, 2010 7:50:09 am Damian S. Kołodziejczyk wrote:
> The following reply was made to PR bin/151616; it has been noted by GNATS.
>
> From: =?ISO-8859-2?Q?Damian_S=2E_Ko=B3odziejczyk?= <damkol at gmail.com>
> To: bug-followup at FreeBSD.org, damkol at gmail.com
> Cc:
> Subject: Re: bin/151616: [acpi]: FreeBSD 8 panic on boot.
> Date: Wed, 27 Oct 2010 13:42:30 +0200
>
> W dniu 27 pa=BCdziernika 2010 13:10 u=BFytkownik Andriy Gapon
> <avg at icyb.net.ua> napisa=B3:
> > Would it be possible to scroll up and take the pictures of all the
messag=
> es since
> > the start of boot ?
>
> No problem:
> http://img28.imageshack.us/i/zdjcie031i.jpg/
> http://img839.imageshack.us/i/zdjcie032b.jpg/
> http://img163.imageshack.us/i/zdjcie033e.jpg/
> http://img185.imageshack.us/i/zdjcie034l.jpg/
>
> Next one is http://img43.imageshack.us/img43/225/zdjcie030g.jpg
Can you try this patch:
Index: amd64/amd64/intr_machdep.c
===================================================================
--- amd64/amd64/intr_machdep.c (revision 214386)
+++ amd64/amd64/intr_machdep.c (working copy)
@@ -458,7 +458,7 @@
/* Leave all interrupts on the BSP during boot. */
if (!assign_cpu)
- return (cpu_apic_ids[0]);
+ return (PCPU_GET(apic_id));
mtx_lock_spin(&icu_lock);
apic_id = cpu_apic_ids[current_cpu];
Index: i386/i386/intr_machdep.c
===================================================================
--- i386/i386/intr_machdep.c (revision 214386)
+++ i386/i386/intr_machdep.c (working copy)
@@ -424,7 +424,7 @@
/* Leave all interrupts on the BSP during boot. */
if (!assign_cpu)
- return (cpu_apic_ids[0]);
+ return (PCPU_GET(apic_id));
mtx_lock_spin(&icu_lock);
apic_id = cpu_apic_ids[current_cpu];
--
John Baldwin
More information about the freebsd-acpi
mailing list