From owner-freebsd-current@FreeBSD.ORG Thu Nov 2 22:05:46 2006 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9DFF16A549 for ; Thu, 2 Nov 2006 22:05:46 +0000 (UTC) (envelope-from jmg@hydrogen.funkthat.com) Received: from hydrogen.funkthat.com (gate.funkthat.com [69.17.45.168]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F07243D9C for ; Thu, 2 Nov 2006 22:05:00 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: from hydrogen.funkthat.com (elcos119glc8jcwz@localhost.funkthat.com [127.0.0.1]) by hydrogen.funkthat.com (8.13.6/8.13.3) with ESMTP id kA2M4u6s017283; Thu, 2 Nov 2006 14:04:57 -0800 (PST) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.13.6/8.13.3/Submit) id kA2M4s3E017282; Thu, 2 Nov 2006 14:04:54 -0800 (PST) (envelope-from jmg) Date: Thu, 2 Nov 2006 14:04:54 -0800 From: John-Mark Gurney To: Vladimir Kushnir Message-ID: <20061102220454.GK25511@funkthat.com> Mail-Followup-To: Vladimir Kushnir , current@freebsd.org References: <20061026015618.E1706@kushnir1.kiev.ua> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="7gGkHNMELEOhSGF6" Content-Disposition: inline In-Reply-To: <20061026015618.E1706@kushnir1.kiev.ua> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 5.4-RELEASE-p6 i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html Cc: current@freebsd.org Subject: Re: Asus A8V hangs during pci probe on fresh -CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John-Mark Gurney List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Nov 2006 22:05:47 -0000 --7gGkHNMELEOhSGF6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Vladimir Kushnir wrote this message on Thu, Oct 26, 2006 at 02:27 +0300: > Is there anything I could do to help fixing this? This is likely related to the vpd work that I've done recently... Attached is a patch that may fix your troubles. (I'll commit it shortly once I've tested it on my own systems.) -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." --7gGkHNMELEOhSGF6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="vpd.fix.patch" Index: pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/pci/pci.c,v retrieving revision 1.316 diff -u -r1.316 pci.c --- pci.c 20 Oct 2006 21:28:11 -0000 1.316 +++ pci.c 30 Oct 2006 13:17:38 -0000 @@ -630,7 +630,9 @@ state = 5; break; default: /* XXX - unimplemented */ - state = 4; + end = 1; + cksumvalid = 0; + continue; break; } break; --7gGkHNMELEOhSGF6--