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> References: <201010271150.o9RBo9x6091392@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wednesday, October 27, 2010 7:50:09 am Damian S. Ko=C5=82odziejczyk wrot= e: > The following reply was made to PR bin/151616; it has been noted by GNATS. >=20 > From: =3D?ISO-8859-2?Q?Damian_S=3D2E_Ko=3DB3odziejczyk?=3D <damkol@gmail.= com> > To: bug-followup@FreeBSD.org, damkol@gmail.com > Cc: =20 > Subject: Re: bin/151616: [acpi]: FreeBSD 8 panic on boot. > Date: Wed, 27 Oct 2010 13:42:30 +0200 >=20 > W dniu 27 pa=3DBCdziernika 2010 13:10 u=3DBFytkownik Andriy Gapon > <avg@icyb.net.ua> napisa=3DB3: > > Would it be possible to scroll up and take the pictures of all the=20 messag=3D > es since > > the start of boot ? > =20 > 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/ > =20 > Next one is http://img43.imageshack.us/img43/225/zdjcie030g.jpg Can you try this patch: Index: amd64/amd64/intr_machdep.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =2D-- amd64/amd64/intr_machdep.c (revision 214386) +++ amd64/amd64/intr_machdep.c (working copy) @@ -458,7 +458,7 @@ =20 /* Leave all interrupts on the BSP during boot. */ if (!assign_cpu) =2D return (cpu_apic_ids[0]); + return (PCPU_GET(apic_id)); =20 mtx_lock_spin(&icu_lock); apic_id =3D cpu_apic_ids[current_cpu]; Index: i386/i386/intr_machdep.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =2D-- i386/i386/intr_machdep.c (revision 214386) +++ i386/i386/intr_machdep.c (working copy) @@ -424,7 +424,7 @@ =20 /* Leave all interrupts on the BSP during boot. */ if (!assign_cpu) =2D return (cpu_apic_ids[0]); + return (PCPU_GET(apic_id)); =20 mtx_lock_spin(&icu_lock); apic_id =3D cpu_apic_ids[current_cpu]; =2D-=20 John Baldwin
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010271058.56771.jhb>