Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 May 1999 07:49:43 -0500
From:      Bob Willcox <bob@luke.pmr.com>
To:        Luoqi Chen <luoqi@watermarkgroup.com>
Cc:        current list <freebsd-current@freebsd.org>
Subject:   Re: panic: page fault (apparently caused by mount_mfs)
Message-ID:  <19990518074943.A90395@luke.pmr.com>
In-Reply-To: <199905180342.XAA25777@lor.watermarkgroup.com>; from Luoqi Chen on Mon, May 17, 1999 at 11:42:21PM -0400
References:  <199905180342.XAA25777@lor.watermarkgroup.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Yep!  The patch seems to have fixed the problem!  :-)

Thanks Luoqi!!

Bob


On Mon, May 17, 1999 at 11:42:21PM -0400, Luoqi Chen wrote:
> > I have been making world each time after cvsupping so I would expect the
> > mfs kld module to be getting rebuilt and it appears to be up-to-date:
> > 
> > -r-xr-xr-x  1 root  wheel  12778 May 17 13:34 /modules/mfs.ko
> > 
> > Also, both my custom kernel config file and the GENERIC config file
> > include "options MFS" so mfs should not be getting loaded, right?
> > 
> > Thanks,
> > Bob
> > 
> > > 
> > > -lq
> > 
> > -- 
> > Bob Willcox             The man who follows the crowd will usually get no
> > bob@luke.pmr.com        further than the crowd.  The man who walks alone is
> > Austin, TX              likely to find himself in places no one has ever
> >                         been.            -- Alan Ashley-Pitt
> > 
> Would you try this patch?
> 
> Index: kern_conf.c
> ===================================================================
> RCS file: /home/ncvs/src/sys/kern/kern_conf.c,v
> retrieving revision 1.39
> diff -u -r1.39 kern_conf.c
> --- kern_conf.c	1999/05/12 13:06:34	1.39
> +++ kern_conf.c	1999/05/18 03:27:36
> @@ -182,7 +182,7 @@
>  	uintptr_t i = (uintptr_t)x;
>  
>  #ifdef DEVT_FASCIST
> -	return(253 - ((i >> 8) & 0xff));
> +	return(255 - ((i >> 8) & 0xff));
>  #else
>  	return((i >> 8) & 0xff);
>  #endif
> @@ -200,7 +200,7 @@
>  makedev(int x, int y)
>  {
>  #ifdef DEVT_FASCIST
> -        return ((dev_t) (((253 - x) << 8) | y));
> +        return ((dev_t) (((255 - x) << 8) | y));
>  #else
>          return ((dev_t) ((x << 8) | y));
>  #endif

-- 
Bob Willcox             The man who follows the crowd will usually get no
bob@luke.pmr.com        further than the crowd.  The man who walks alone is
Austin, TX              likely to find himself in places no one has ever
                        been.            -- Alan Ashley-Pitt


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?19990518074943.A90395>