Re: Supermicro 6027R-N3RF+head, usb trouble
> > diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c
>
> > index 7bd8d7e..2f92cde 100644
>
> > --- a/sys/kern/vfs_bio.c
>
> > +++ b/sys/kern/vfs_bio.c
>
> > @@ -560,7 +560,8 @@ kern_vfs_bio_buffer_alloc(caddr_t v, long physmem_est)
>
> > nbuf += min((physmem_est - 4096) / factor,
>
> > 65536 / factor);
>
> > if (physmem_est > 65536)
>
> > - nbuf += (physmem_est - 65536) * 2 / (factor * 5);
>
> > + nbuf += min((physmem_est - 65536) * 2 / (factor * 5),
>
> > + 32 * 1024 * 1024 / (factor * 5));
>
> >
>
> > if (maxbcache && nbuf > maxbcache / BKVASIZE)
>
> > nbuf = maxbcache / BKVASIZE;
>
> >
>
>
>
>
>
> --
>
> Regards,
>
> Bryan Drewery
Will this be included in Freebsd-9.1 patch 5 by any chance.
I have a system with 512G of ram and i have to use the above work around to get it to boot. I prefer not patching the kernel since the next freebsd-update will break it.
討論串 (同標題文章)
完整討論串 (本文為第 14 之 14 篇):