svn commit: r310177 - in head/sys: amd64/conf i386/conf

John Baldwin jhb at FreeBSD.org
Fri Dec 16 21:10:39 UTC 2016


Author: jhb
Date: Fri Dec 16 21:10:37 2016
New Revision: 310177
URL: https://svnweb.freebsd.org/changeset/base/310177

Log:
  Enable EARLY_AP_STARTUP on amd64 and i386 kernels by default.
  
  PR:		199321, 203682
  MFC after:	2 months
  Sponsored by:	Netflix

Modified:
  head/sys/amd64/conf/GENERIC
  head/sys/amd64/conf/MINIMAL
  head/sys/i386/conf/GENERIC

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Fri Dec 16 20:49:50 2016	(r310176)
+++ head/sys/amd64/conf/GENERIC	Fri Dec 16 21:10:37 2016	(r310177)
@@ -98,6 +98,7 @@ options 	MALLOC_DEBUG_MAXZONES=8	# Separ
 # Make an SMP-capable kernel by default
 options 	SMP			# Symmetric MultiProcessor Kernel
 options 	DEVICE_NUMA		# I/O Device Affinity
+options 	EARLY_AP_STARTUP
 
 # CPU frequency control
 device		cpufreq

Modified: head/sys/amd64/conf/MINIMAL
==============================================================================
--- head/sys/amd64/conf/MINIMAL	Fri Dec 16 20:49:50 2016	(r310176)
+++ head/sys/amd64/conf/MINIMAL	Fri Dec 16 21:10:37 2016	(r310177)
@@ -94,6 +94,7 @@ options 	MALLOC_DEBUG_MAXZONES=8	# Separ
 # Make an SMP-capable kernel by default
 options 	SMP			# Symmetric MultiProcessor Kernel
 options 	DEVICE_NUMA		# I/O Device Affinity
+options 	EARLY_AP_STARTUP
 
 # CPU frequency control
 device		cpufreq

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Fri Dec 16 20:49:50 2016	(r310176)
+++ head/sys/i386/conf/GENERIC	Fri Dec 16 21:10:37 2016	(r310177)
@@ -96,6 +96,7 @@ options 	MALLOC_DEBUG_MAXZONES=8	# Separ
 # To make an SMP kernel, the next two lines are needed
 options 	SMP			# Symmetric MultiProcessor Kernel
 device		apic			# I/O APIC
+options 	EARLY_AP_STARTUP
 
 # CPU frequency control
 device		cpufreq


More information about the svn-src-all mailing list