Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 03 Sep 2000 04:34:16 +0200
From:      Tor.Egge@fast.no
To:        sheldonh@uunet.co.za
Cc:        peter@FreeBSD.ORG, current@FreeBSD.ORG
Subject:   Re: panic: pmap_enter: attempted pmap_enter on 4MB page
Message-ID:  <200009030234.EAA84082@midten.fast.no>
In-Reply-To: Your message of "Fri, 01 Sep 2000 14:31:11 %2B0200"
References:  <593.967811471@axl.fw.uunet.co.za>

next in thread | previous in thread | raw e-mail | index | archive | help

> pci50: physical bus=-1061225984
> 
> A little dubious, I think.  Below is the dmesg(8) output from
> kernel.old, my last good kernel built yesterday, booted with ``boot
> -v''.
> 

The enclosed patch might be relevant.  I got similar problems without
it.

Index: pcisupport.c
===================================================================
RCS file: /home/ncvs/src/sys/pci/pcisupport.c,v
retrieving revision 1.168
diff -u -r1.168 pcisupport.c
--- pcisupport.c	2000/08/31 23:11:35	1.168
+++ pcisupport.c	2000/09/03 02:16:21
@@ -770,7 +915,7 @@
 		ivar = malloc(sizeof ivar[0], M_DEVBUF /* XXX */, M_NOWAIT);
 		if (ivar == NULL)
 			panic("out of memory");
-		device_set_ivars(child, ivar);
+		device_set_ivars(dev, ivar);
 		ivar[0] = secondary;
 		return bus_generic_attach(dev);
 	} else


- Tor Egge


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




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