Date: Wed, 27 Oct 2010 10:58:56 -0400 From: John Baldwin <jhb@freebsd.org> To: freebsd-acpi@freebsd.org, "Damian S. =?utf-8?q?Ko=C5=82odziejczyk?=" <damkol@gmail.com> Subject: Re: bin/151616: [acpi]: FreeBSD 8 panic on boot. Message-ID: <201010271058.56771.jhb@freebsd.org> In-Reply-To: <201010271150.o9RBo9x6091392@freefall.freebsd.org>
index | next in thread | previous in thread | raw e-mail
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@gmail.com> > To: bug-followup@FreeBSD.org, damkol@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@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 Baldwinhelp
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010271058.56771.jhb>
