Home
last modified time | relevance | path

Searched refs:bufpages (Results 1 – 6 of 6) sorted by relevance

/mirbsd/src/sys/arch/sparc/sparc/
Dmachdep.c124 int bufpages = BUFPAGES; variable
126 int bufpages = 0; variable
214 if ((bufpages / nbuf) >= btoc(MAXBSIZE)) { in cpu_startup()
215 bufpages = btoc(MAXBSIZE) * nbuf; /* do not overallocate RAM */ in cpu_startup()
217 base = bufpages / nbuf; in cpu_startup()
218 residual = bufpages % nbuf; in cpu_startup()
284 nbuf, bufpages * PAGE_SIZE); in cpu_startup()
320 if (bufpages == 0)
321 bufpages = physmem * bufcachepercent / 100;
323 nbuf = bufpages;
[all …]
/mirbsd/src/sys/kern/
Dvfs_bio.c186 base = bufpages / nbuf; in bufinit()
187 residual = bufpages % nbuf; in bufinit()
212 hidirtypages = bufpages / 4; in bufinit()
222 locleanpages = bufpages / 20; in bufinit()
225 if (locleanpages > bufpages / 4) in bufinit()
226 locleanpages = bufpages / 4; in bufinit()
/mirbsd/src/sys/arch/i386/i386/
Dmachdep.c218 int bufpages = BUFPAGES; variable
220 int bufpages = 0; variable
446 nbuf, bufpages * PAGE_SIZE, bufpages * PAGE_SIZE / 1024U); in cpu_startup()
524 if (bufpages == 0) {
525 bufpages = (btoc(2 * 1024 * 1024) + physmem) *
529 nbuf = bufpages;
542 if (bufpages > nbuf * MAXBSIZE / PAGE_SIZE)
543 bufpages = nbuf * MAXBSIZE / PAGE_SIZE;
567 base = bufpages / nbuf;
568 residual = bufpages % nbuf;
[all …]
/mirbsd/src/sys/sys/
Dbuf.h215 extern int bufpages; /* Number of memory pages in the buffer pool. */
/mirbsd/src/share/doc/smm/02.config/
Dspell.ok108 bufpages
/mirbsd/src/sys/compat/linux/
Dlinux_misc.c1548 extern int bufpages;
1559 si.bufferram = bufpages * PAGE_SIZE;