From b058e8665f2f2dcb0a7c7f137c459407cae9412c Mon Sep 17 00:00:00 2001 From: sam Date: Mon, 20 Oct 2003 21:14:24 +0000 Subject: revert default for idle polling to zero until we can resolve the livelock problem --- sys/kern/kern_poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/kern/kern_poll.c') diff --git a/sys/kern/kern_poll.c b/sys/kern/kern_poll.c index 5125bd3..b5e657e 100644 --- a/sys/kern/kern_poll.c +++ b/sys/kern/kern_poll.c @@ -118,7 +118,7 @@ static u_int32_t poll_burst_max = 150; /* good for 100Mbit net and HZ=1000 */ SYSCTL_UINT(_kern_polling, OID_AUTO, burst_max, CTLFLAG_RW, &poll_burst_max, 0, "Max Polling burst size"); -static u_int32_t poll_in_idle_loop=1; /* do we poll in idle loop ? */ +static u_int32_t poll_in_idle_loop=0; /* do we poll in idle loop ? */ SYSCTL_UINT(_kern_polling, OID_AUTO, idle_poll, CTLFLAG_RW, &poll_in_idle_loop, 0, "Enable device polling in idle loop"); -- cgit v1.1