svn commit: r318763 - in stable/11/sys: amd64/conf i386/conf

John Baldwin jhb at FreeBSD.org
Wed May 24 00:00:57 UTC 2017


Author: jhb
Date: Wed May 24 00:00:55 2017
New Revision: 318763
URL: https://svnweb.freebsd.org/changeset/base/318763

Log:
  MFC 310177: Enable EARLY_AP_STARTUP on amd64 and i386 kernels by default.
  
  PR:		199321, 203682
  Discussed with:	re (kib)
  Relnotes:	yes

Modified:
  stable/11/sys/amd64/conf/GENERIC
  stable/11/sys/amd64/conf/MINIMAL
  stable/11/sys/i386/conf/GENERIC
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/amd64/conf/GENERIC
==============================================================================
--- stable/11/sys/amd64/conf/GENERIC	Tue May 23 23:40:17 2017	(r318762)
+++ stable/11/sys/amd64/conf/GENERIC	Wed May 24 00:00:55 2017	(r318763)
@@ -85,6 +85,7 @@ options 	KDB_TRACE		# Print a stack trac
 # 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: stable/11/sys/amd64/conf/MINIMAL
==============================================================================
--- stable/11/sys/amd64/conf/MINIMAL	Tue May 23 23:40:17 2017	(r318762)
+++ stable/11/sys/amd64/conf/MINIMAL	Wed May 24 00:00:55 2017	(r318763)
@@ -93,6 +93,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: stable/11/sys/i386/conf/GENERIC
==============================================================================
--- stable/11/sys/i386/conf/GENERIC	Tue May 23 23:40:17 2017	(r318762)
+++ stable/11/sys/i386/conf/GENERIC	Wed May 24 00:00:55 2017	(r318763)
@@ -85,6 +85,7 @@ options 	KDB_TRACE		# Print a stack trac
 # 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