sync with current: reduce default maxbatch setting from 5 to 1

Reviewed by:	re (sort of, consider this part of my previous request)
This commit is contained in:
Sam Leffler 2003-03-11 22:20:43 +00:00
parent c162e9c2eb
commit 44cc7634a3

View File

@ -171,7 +171,7 @@ SYSCTL_INT(_hw_hifn, OID_AUTO, debug, CTLFLAG_RW, &hifn_debug,
static struct hifn_stats hifnstats; static struct hifn_stats hifnstats;
SYSCTL_STRUCT(_hw_hifn, OID_AUTO, stats, CTLFLAG_RD, &hifnstats, SYSCTL_STRUCT(_hw_hifn, OID_AUTO, stats, CTLFLAG_RD, &hifnstats,
hifn_stats, "driver statistics"); hifn_stats, "driver statistics");
static int hifn_maxbatch = 1; static int hifn_maxbatch = 5;
SYSCTL_INT(_hw_hifn, OID_AUTO, maxbatch, CTLFLAG_RW, &hifn_maxbatch, SYSCTL_INT(_hw_hifn, OID_AUTO, maxbatch, CTLFLAG_RW, &hifn_maxbatch,
0, "max ops to batch w/o interrupt"); 0, "max ops to batch w/o interrupt");