From 5cea64d54fe95dc44a32a60e034e6e15b75c59f3 Mon Sep 17 00:00:00 2001 From: Jeff Roberson Date: Sat, 20 Jan 2007 21:24:05 +0000 Subject: [PATCH] - Disable the long-term load balancer. I believe that steal_busy works better and gives more predictable results. --- sys/kern/sched_ule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c index af9ddc61e7c..991952ad4b0 100644 --- a/sys/kern/sched_ule.c +++ b/sys/kern/sched_ule.c @@ -217,7 +217,7 @@ struct tdq_group { /* * Run-time tunables. */ -static int rebalance = 1; +static int rebalance = 0; static int pick_pri = 1; static int affinity; static int tryself = 1;