summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2004-09-05 02:19:53 +0000
committerjulian <julian@FreeBSD.org>2004-09-05 02:19:53 +0000
commite291fa77140598041f22aa877b26c0844871d3ea (patch)
treecee94951caca4b8aa447f4f81411fd98ec79c04a /sys
parent5813d2702971c0732a69541a73be8c44114dd183 (diff)
downloadFreeBSD-src-e291fa77140598041f22aa877b26c0844871d3ea.zip
FreeBSD-src-e291fa77140598041f22aa877b26c0844871d3ea.tar.gz
turn on IPIs for 4bsd scheduler by default.
MFC after: 1 week
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/sched_4bsd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c
index 2b1ff36..78c3f3d 100644
--- a/sys/kern/sched_4bsd.c
+++ b/sys/kern/sched_4bsd.c
@@ -213,7 +213,7 @@ SYSCTL_PROC(_kern_sched, OID_AUTO, quantum, CTLTYPE_INT | CTLFLAG_RW,
/* Enable forwarding of wakeups to all other cpus */
SYSCTL_NODE(_kern_sched, OID_AUTO, ipiwakeup, CTLFLAG_RD, NULL, "Kernel SMP");
-static int forward_wakeup_enabled = 0;
+static int forward_wakeup_enabled = 1;
SYSCTL_INT(_kern_sched_ipiwakeup, OID_AUTO, enabled, CTLFLAG_RW,
&forward_wakeup_enabled, 0,
"Forwarding of wakeup to idle CPUs");
@@ -228,7 +228,7 @@ SYSCTL_INT(_kern_sched_ipiwakeup, OID_AUTO, delivered, CTLFLAG_RD,
&forward_wakeups_delivered, 0,
"Completed Forwarding of wakeup to idle CPUs");
-static int forward_wakeup_use_mask = 0;
+static int forward_wakeup_use_mask = 1;
SYSCTL_INT(_kern_sched_ipiwakeup, OID_AUTO, usemask, CTLFLAG_RW,
&forward_wakeup_use_mask, 0,
"Use the mask of idle cpus");
OpenPOWER on IntegriCloud