Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Nov 2000 19:34:30 +0100
From:      Bernd Walter <ticso@cicely8.cicely.de>
To:        freebsd-current@freebsd.org
Subject:   Patch for current on LCA based alphas
Message-ID:  <20001125193430.A40717@cicely8.cicely.de>

next in thread | raw e-mail | index | archive | help
LCA systems doesn't like probing after PCI slot 19.
Probing slot 20 panics the system.
The following patch made it into single user mode on my AXPpci33.
I asume it will also work on multias.
I can't tell more as the tested system is a 4.1-RELEASE and I need
to update the world before further testing.


Index: lca_pci.c
===================================================================
RCS file: /vol/cvs/FreeBSD/src/sys/alpha/pci/lca_pci.c,v
retrieving revision 1.7
diff -u -r1.7 lca_pci.c
--- lca_pci.c	2000/08/31 16:19:27	1.7
+++ lca_pci.c	2000/11/25 18:23:26
@@ -76,7 +76,7 @@
 static int
 lca_pcib_maxslots(device_t dev)
 {
-	return 31;
+	return 19;
 }
 
 #define LCA_CFGOFF(b, s, f, r) \

-- 
B.Walter              COSMO-Project         http://www.cosmo-project.de
ticso@cicely.de         Usergroup           info@cosmo-project.de



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-alpha" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20001125193430.A40717>