1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Change default for kern.polling.idle_poll back to 1. This was set to 0

because Luigi observed livelock but in recent testing it did not occur
so I'm re-enabling it by default.

Reviewed by:	luigi
This commit is contained in:
Sam Leffler 2003-10-14 18:39:36 +00:00
parent c513c3b569
commit bd19669855
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121090

View File

@ -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=0; /* do we poll in idle loop ? */
static u_int32_t poll_in_idle_loop=1; /* 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");