From owner-freebsd-hackers Sat Mar 13 18:29:21 1999 Delivered-To: freebsd-hackers@freebsd.org Received: from outmail.utsunomiya-u.ac.jp (outmail.utsunomiya-u.ac.jp [160.12.196.3]) by hub.freebsd.org (Postfix) with ESMTP id EE70D14F76 for ; Sat, 13 Mar 1999 18:29:18 -0800 (PST) (envelope-from yokota@zodiac.mech.utsunomiya-u.ac.jp) Received: from zodiac.mech.utsunomiya-u.ac.jp (IDENT:cFKDSKI/tzwokRdyCh4H+3Tx7iZSquiH@zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by outmail.utsunomiya-u.ac.jp (8.9.1/8.9.1) with ESMTP id LAA09880; Sun, 14 Mar 1999 11:28:47 +0900 (JST) Received: from zodiac.mech.utsunomiya-u.ac.jp (zodiac.mech.utsunomiya-u.ac.jp [160.12.42.1]) by zodiac.mech.utsunomiya-u.ac.jp (8.7.6+2.6Wbeta7/3.4W/zodiac-May96) with ESMTP id LAA14352; Sun, 14 Mar 1999 11:32:03 +0900 (JST) Message-Id: <199903140232.LAA14352@zodiac.mech.utsunomiya-u.ac.jp> To: Kent Vander Velden Cc: freebsd-hackers@freebsd.org, yokota@zodiac.mech.utsunomiya-u.ac.jp Subject: Re: FreeBSD 3.1-Stable Being Unstable In-reply-to: Your message of "Sat, 13 Mar 1999 16:53:17 CST." <199903132253.QAA09676@isua1.iastate.edu> References: <199903132253.QAA09676@isua1.iastate.edu> Date: Sun, 14 Mar 1999 11:32:02 +0900 From: Kazutaka YOKOTA Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi. Nathan Ahlstrom has been helping me try to gather up information >to solve a problem with FreeBSD-Stable and asked me to send the following >information to freebsd-hackers. > The problem is that Freebsd-Stable crashes after just a few hours of >use. No core file is generated either. The crashing occurs on two >separate machines, one a dual-p133 and the other a 486-33. Both these >kernels are only hours old. I have been updating the kernels daily >in hopes of a fix. > If any further information is needed, please let me know. Would you possibly test the following patch for /sys/i386/include/pmap.h and /sys/i386/i386/locore.s? It's for 3.1-STABLE and 4.0-CURRENT. Kazu Index: include/pmap.h =================================================================== RCS file: /src/CVS/src/sys/i386/include/pmap.h,v retrieving revision 1.58 diff -u -r1.58 pmap.h --- pmap.h 1999/03/02 16:20:39 1.58 +++ pmap.h 1999/03/11 10:47:11 @@ -122,6 +122,8 @@ */ #define ISA_HOLE_START 0xa0000 #define ISA_HOLE_LENGTH (0x100000-ISA_HOLE_START) +#define BIOS_DATA_START 0x00000 +#define BIOS_DATA_LENGTH 0x00600 #ifndef LOCORE Index: i386/locore.s =================================================================== RCS file: /src/CVS/src/sys/i386/i386/locore.s,v retrieving revision 1.120 diff -u -r1.120 locore.s --- locore.s 1999/01/31 02:04:43 1.120 +++ locore.s 1999/03/11 10:45:35 @@ -857,6 +857,11 @@ movl $UPAGES, %ecx fillkptphys($PG_RW) +/* Map BIOS data area */ + movl $BIOS_DATA_START, %eax + movl $(BIOS_DATA_LENGTH + PAGE_MASK)>>PAGE_SHIFT, %ecx + fillkptphys($PG_RW) + /* Map ISA hole */ movl $ISA_HOLE_START, %eax movl $ISA_HOLE_LENGTH>>PAGE_SHIFT, %ecx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message