Home
last modified time | relevance | path

Searched refs:bufcachepercent (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/sys/conf/
Dparam.c83 int bufcachepercent = BUFCACHEPERCENT; variable
/openbsd/src/sys/kern/
Dvfs_bio.c166 if (bufcachepercent == 0) in bufinit()
167 bufcachepercent = 10; in bufinit()
173 KASSERT(bufcachepercent <= 90); in bufinit()
174 KASSERT(bufcachepercent >= 5); in bufinit()
176 bufpages = dmapages * bufcachepercent / 100; in bufinit()
Dkern_sysctl.c729 opct = bufcachepercent; in kern_sysctl_locked()
731 &bufcachepercent); in kern_sysctl_locked()
734 if (bufcachepercent > 90 || bufcachepercent < 5) { in kern_sysctl_locked()
735 bufcachepercent = opct; in kern_sysctl_locked()
739 if (bufcachepercent != opct) { in kern_sysctl_locked()
740 pgs = bufcachepercent * dmapages / 100; in kern_sysctl_locked()
/openbsd/src/sys/sys/
Dmount.h497 extern int bufcachepercent;