From owner-freebsd-acpi@FreeBSD.ORG Thu Oct 28 10:52:20 2010 Return-Path: Delivered-To: freebsd-acpi@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A86F9106566B for ; Thu, 28 Oct 2010 10:52:20 +0000 (UTC) (envelope-from damkol@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 624038FC13 for ; Thu, 28 Oct 2010 10:52:20 +0000 (UTC) Received: by qwe4 with SMTP id 4so1779780qwe.13 for ; Thu, 28 Oct 2010 03:52:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=P2NqObNtinv3I6oRuRYDKpT7OmlG+6fugAqWzJx5WYg=; b=m/POaHVQzyikp9Y35WLqFq3azcEoixtmnPue8GrMnv0cVA+5uaLt7VLQdH9omcfMLg h0R1eXefuckKrY95XMovdG4NfZffOtMjXM/XHNeq3OqyXiDzWvquAQLT7IaSVGslIk8z TsjPjyuTqc5XpVNII4WQsv27RpOhG7PTQ/xQ0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=haco6dt1vlqo3ynbHabFGxpUgLquujkCLitGPkrStinocdDmSIc27LP1phkNoTvQH5 biTMunizw4oBhhbizDZUD/bOcUqm3DuTFYcVq6UCp8DO1fpOXnFMhTrxk/aQTH8KFQO5 wxo4WfcFcztyrt75FmOgr5eN/X2FmU+NLYEtU= MIME-Version: 1.0 Received: by 10.229.95.212 with SMTP id e20mr4868321qcn.20.1288261792603; Thu, 28 Oct 2010 03:29:52 -0700 (PDT) Received: by 10.229.92.8 with HTTP; Thu, 28 Oct 2010 03:29:52 -0700 (PDT) In-Reply-To: <201010271058.56771.jhb@freebsd.org> References: <201010271150.o9RBo9x6091392@freefall.freebsd.org> <201010271058.56771.jhb@freebsd.org> Date: Thu, 28 Oct 2010 12:29:52 +0200 Message-ID: From: =?ISO-8859-2?Q?Damian_S=2E_Ko=B3odziejczyk?= To: John Baldwin , damkol@gmail.com, bug-followup@FreeBSD.org, freebsd-acpi@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: bin/151616: [acpi]: FreeBSD 8 panic on boot. X-BeenThere: freebsd-acpi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: ACPI and power management development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Oct 2010 10:52:20 -0000 2010/10/27 John Baldwin : > 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 > --- amd64/amd64/intr_machdep.c =A0(revision 214386) > +++ amd64/amd64/intr_machdep.c =A0(working copy) > @@ -458,7 +458,7 @@ > > =A0 =A0 =A0 =A0/* Leave all interrupts on the BSP during boot. */ > =A0 =A0 =A0 =A0if (!assign_cpu) > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return (cpu_apic_ids[0]); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return (PCPU_GET(apic_id)); > > =A0 =A0 =A0 =A0mtx_lock_spin(&icu_lock); > =A0 =A0 =A0 =A0apic_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 > --- i386/i386/intr_machdep.c =A0 =A0(revision 214386) > +++ i386/i386/intr_machdep.c =A0 =A0(working copy) > @@ -424,7 +424,7 @@ > > =A0 =A0 =A0 =A0/* Leave all interrupts on the BSP during boot. */ > =A0 =A0 =A0 =A0if (!assign_cpu) > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 return (cpu_apic_ids[0]); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 return (PCPU_GET(apic_id)); > > =A0 =A0 =A0 =A0mtx_lock_spin(&icu_lock); > =A0 =A0 =A0 =A0apic_id =3D cpu_apic_ids[current_cpu]; > Seems to works fine. Source tree is fresh (today): $FreeBSD: src/sys/i386/i386/intr_machdep.c,v 1.46 2010/07/02 17:22:15 mav E= xp $ Here is photos (i destroy GPT accidentally ;)): http://img232.imageshack.us/i/zdjcie035z.jpg/ http://img266.imageshack.us/i/zdjcie036o.jpg/ http://img214.imageshack.us/i/zdjcie037x.jpg/ http://img233.imageshack.us/i/zdjcie038io.jpg/ http://img169.imageshack.us/i/zdjcie039l.jpg/ http://img576.imageshack.us/i/zdjcie040.jpg/ http://img19.imageshack.us/i/zdjcie041qp.jpg/ http://img163.imageshack.us/i/zdjcie042f.jpg/ http://img713.imageshack.us/i/zdjcie043o.jpg/ http://img828.imageshack.us/i/zdjcie044q.jpg/ http://img153.imageshack.us/i/zdjcie045j.jpg/ http://img101.imageshack.us/i/zdjcie046r.jpg/ http://img641.imageshack.us/i/zdjcie047n.jpg/ http://img12.imageshack.us/i/zdjcie048h.jpg/ http://img233.imageshack.us/i/zdjcie049a.jpg/ http://img207.imageshack.us/i/zdjcie050n.jpg/ http://img824.imageshack.us/i/zdjcie051r.jpg/ http://img21.imageshack.us/i/zdjcie052ss.jpg/ http://img594.imageshack.us/i/zdjcie053.jpg/ Can i patch 8.1-R source tree? --=20 Damian