From owner-freebsd-stable Sun Sep 30 17:26:19 2001 Delivered-To: freebsd-stable@freebsd.org Received: from ns.itga.com.au (ns.itga.com.au [202.53.40.210]) by hub.freebsd.org (Postfix) with ESMTP id C302A37B410 for ; Sun, 30 Sep 2001 17:26:14 -0700 (PDT) Received: from lightning.itga.com.au (lightning.itga.com.au [192.168.71.20]) by ns.itga.com.au (8.9.3/8.9.3) with ESMTP id KAA78027; Mon, 1 Oct 2001 10:26:08 +1000 (EST) (envelope-from gnb@itga.com.au) Received: from itga.com.au (lightning.itga.com.au [192.168.71.20]) by lightning.itga.com.au (8.9.3/8.9.3) with ESMTP id KAA00933; Mon, 1 Oct 2001 10:26:07 +1000 (EST) Message-Id: <200110010026.KAA00933@lightning.itga.com.au> X-Mailer: exmh version 2.4 05/15/2001 with nmh-1.0.4 From: Gregory Bond To: Dean Hollister Cc: freebsd-stable@FreeBSD.ORG Subject: Re: Stallion 2.0.0 Driver In-reply-to: Your message of Sun, 30 Sep 2001 15:48:36 +0800. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 01 Oct 2001 10:26:07 +1000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > stl0 at port 0x2a0 irq 5 on isa0 > STALLION: too many ports attached to board 0, remove last module > stl0: EC8/32-AT (driver version 2.0.0) unit=0 nrpanels=2 nrports=32 > stl0: driver is using old-style compatability shims Hmm. A quick look at the diffs show that the old driver had: ! brdp->panels[panelnr++] = panelp; ! brdp->nrpanels++; ! if (ioaddr >= (brdp->ioaddr2 + 0x20)) ! break; while the new one has ! brdp->panels[panelnr++] = panelp; ! if ((brdp->brdtype == BRD_ECH) || (brdp->brdtype == BRD_ECHMC) ){ ! if (ioaddr >= (brdp->ioaddr2 + 0x20)) { ! printf("STALLION: too many ports attached " ! "to board %d, remove last module\n", ! brdp->brdnr); ! break; ! } ! } so AFAICT the only effect of this error message is to document a problem that was silently ignored in the original driver. If there is a problem with the new driver I suspect it is somewhere else, but alas I can't offer any clues. You could try replacing sys/i386/isa/stallion.c with the 1.39.2.1 version. I _think_ this will not care about the other related changes. Greg. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message