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
> > b...@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
b...@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 majord...@freebsd.org
with "unsubscribe freebsd-current" in the body of the message

Reply via email to