Sync with i386/i386/machdep.c revision 1.221 (fix nbuf calculation).

This commit is contained in:
KATO Takenori 1996-12-17 13:26:17 +00:00
parent ba27affb3a
commit f605549c19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20587
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.19 1996/12/12 13:10:50 kato Exp $
* $Id: machdep.c,v 1.20 1996/12/15 09:18:48 kato Exp $
*/
#include "npx.h"
@ -289,7 +289,7 @@ cpu_startup(dummy)
if (nbuf == 0) {
nbuf = 30;
if( physmem > 1024)
nbuf += min((physmem - 1024) / 4, 2048);
nbuf += min((physmem - 1024) / 8, 2048);
}
nswbuf = max(min(nbuf/4, 128), 16);

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.19 1996/12/12 13:10:50 kato Exp $
* $Id: machdep.c,v 1.20 1996/12/15 09:18:48 kato Exp $
*/
#include "npx.h"
@ -289,7 +289,7 @@ cpu_startup(dummy)
if (nbuf == 0) {
nbuf = 30;
if( physmem > 1024)
nbuf += min((physmem - 1024) / 4, 2048);
nbuf += min((physmem - 1024) / 8, 2048);
}
nswbuf = max(min(nbuf/4, 128), 16);