diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2016-04-18 15:25:09 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2016-04-18 15:25:09 +0000 |
commit | 4a23373bc24a1339d1ec5d0e26ed2b9bf6232dc2 (patch) | |
tree | 9c1364ecb6dcf65d962c3fc0d2079311bf5aac3c /sys/conf | |
parent | 6405e8b90397f3943aa701358eda5b609c2b1de3 (diff) |
Bump the default of cachepercent to 90 to see if we can find problems before
we try to remove it entirely
ok deraadt@
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/param.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/conf/param.c b/sys/conf/param.c index 75087f53d47..18ef4c008e4 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -1,4 +1,4 @@ -/* $OpenBSD: param.c,v 1.35 2015/01/09 05:01:56 tedu Exp $ */ +/* $OpenBSD: param.c,v 1.36 2016/04/18 15:25:08 beck Exp $ */ /* $NetBSD: param.c,v 1.16 1996/03/12 03:08:40 mrg Exp $ */ /* @@ -102,7 +102,7 @@ int mblowat = MBLOWAT; int mcllowat = MCLLOWAT; #ifndef BUFCACHEPERCENT -#define BUFCACHEPERCENT 20 +#define BUFCACHEPERCENT 90 #endif int bufcachepercent = BUFCACHEPERCENT; |