From owner-cvs-src@FreeBSD.ORG Wed Apr 16 02:29:29 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BE7D37B401; Wed, 16 Apr 2003 02:29:29 -0700 (PDT) Received: from baraca.united.net.ua (vlan1.baraca.united.net.ua [195.234.212.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E4DA43FA3; Wed, 16 Apr 2003 02:29:27 -0700 (PDT) (envelope-from max@vega.com) Received: from vega.vega.com (root@xDSL-2-2.united.net.ua [193.111.9.226]) h3G9TMTF096892; Wed, 16 Apr 2003 12:29:23 +0300 (EEST) (envelope-from max@vega.com) Received: from vega.vega.com (max@localhost.vega.com [127.0.0.1]) by vega.vega.com (8.12.6/8.12.5) with ESMTP id h3G9TOPG029057; Wed, 16 Apr 2003 12:29:24 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Received: (from max@localhost) by vega.vega.com (8.12.6/8.12.5/Submit) id h3G9TOtL029056; Wed, 16 Apr 2003 12:29:24 +0300 (EEST) Date: Wed, 16 Apr 2003 12:29:23 +0300 From: Maxim Sobolev To: "Matthew N. Dodd" Message-ID: <20030416092923.GA29022@vega.vega.com> References: <200304160316.h3G3GvWv085915@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200304160316.h3G3GvWv085915@repoman.freebsd.org> User-Agent: Mutt/1.4i X-Operating-System: FreeBSD 4.7-STABLE i386 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/bge if_bge.c src/sys/dev/fxp if_fxp.c src/sys/dev/gem if_gem_pci.c src/sys/dev/hea hea_pci.c src/sys/dev/hfa hfa_pci.c src/sys/dev/hme if_hme_pci.c src/sys/dev/lge if_lge.c src/sys/dev/nge if_nge.c src/sys/dev/pdq ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Apr 2003 09:29:30 -0000 This broke fwohci(4) driver for me. After updating sources and recompiling kernel, I am getting: fwohci0: vendor=1180, dev=551 fwohci0: <1394 Open Host Controller Interface> mem 0xe8201000-0xe82017ff irq 10 at device 3.1 on pci2 fwohci0: PCI bus latency was changing to 32. fwohci0: cache size 12. fwohci0: failed to enable memory mapping! fwohci0: Could not map memory Previously it worked like a charm. Please fix. Thanks! -Maxim On Tue, Apr 15, 2003 at 08:16:57PM -0700, Matthew N. Dodd wrote: > mdodd 2003/04/15 20:16:57 PDT > > FreeBSD src repository > > Modified files: > sys/dev/bge if_bge.c > sys/dev/fxp if_fxp.c > sys/dev/gem if_gem_pci.c > sys/dev/hea hea_pci.c > sys/dev/hfa hfa_pci.c > sys/dev/hme if_hme_pci.c > sys/dev/lge if_lge.c > sys/dev/nge if_nge.c > sys/dev/pdq if_fpa.c > sys/dev/sound/pci ich.c via8233.c > sys/dev/txp if_txp.c > sys/pci if_dc.c if_pcn.c if_rl.c if_sf.c if_sis.c > if_sk.c if_ste.c if_ti.c if_tl.c if_vr.c > if_wb.c if_xl.c > Log: > - Don't call pci_enable_io() in drivers (unless needed for resume). > - Don't test memory/port status and emit an error message; the PCI > bus code will do this now. > > Revision Changes Path > 1.34 +0 -9 src/sys/dev/bge/if_bge.c > 1.172 +4 -10 src/sys/dev/fxp/if_fxp.c > 1.9 +0 -1 src/sys/dev/gem/if_gem_pci.c > 1.5 +0 -13 src/sys/dev/hea/hea_pci.c > 1.3 +0 -13 src/sys/dev/hfa/hfa_pci.c > 1.6 +0 -1 src/sys/dev/hme/if_hme_pci.c > 1.20 +0 -18 src/sys/dev/lge/if_lge.c > 1.45 +0 -18 src/sys/dev/nge/if_nge.c > 1.19 +0 -15 src/sys/dev/pdq/if_fpa.c > 1.28 +0 -1 src/sys/dev/sound/pci/ich.c > 1.9 +0 -1 src/sys/dev/sound/pci/via8233.c > 1.17 +0 -18 src/sys/dev/txp/if_txp.c > 1.101 +0 -17 src/sys/pci/if_dc.c > 1.40 +5 -16 src/sys/pci/if_pcn.c > 1.96 +0 -18 src/sys/pci/if_rl.c > 1.54 +0 -18 src/sys/pci/if_sf.c > 1.71 +0 -17 src/sys/pci/if_sis.c > 1.59 +0 -18 src/sys/pci/if_sk.c > 1.50 +0 -18 src/sys/pci/if_ste.c > 1.76 +0 -9 src/sys/pci/if_ti.c > 1.80 +0 -9 src/sys/pci/if_tl.c > 1.69 +0 -18 src/sys/pci/if_vr.c > 1.58 +0 -18 src/sys/pci/if_wb.c > 1.141 +0 -10 src/sys/pci/if_xl.c