From: Matthew Dillon Date: Mon, 24 Sep 2012 20:43:50 +0000 (-0700) Subject: kernel - usched_dfly revamp (5), correct default in last commit X-Git-Tag: v3.2.0~74 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/4e9f1e6f8e64941b9e0d54c32e693d9020bceb52 kernel - usched_dfly revamp (5), correct default in last commit * Doh. weight2 should be 120, not 1200. --- diff --git a/sys/kern/usched_dfly.c b/sys/kern/usched_dfly.c index 5c64851c33..80182ac3bd 100644 --- a/sys/kern/usched_dfly.c +++ b/sys/kern/usched_dfly.c @@ -255,7 +255,7 @@ SYSCTL_INT(_debug, OID_AUTO, dfly_chooser, CTLFLAG_RW, static int usched_dfly_smt = 0; static int usched_dfly_cache_coherent = 0; static int usched_dfly_weight1 = 200; /* keep thread on current cpu */ -static int usched_dfly_weight2 = 1200; /* synchronous peer's current cpu */ +static int usched_dfly_weight2 = 120; /* synchronous peer's current cpu */ static int usched_dfly_weight3 = 40; /* number of threads on queue */ static int usched_dfly_weight4 = 160; /* availability of idle cores */ static int usched_dfly_features = 0x8F; /* allow pulls */