svn commit: r338602 - head/sys/amd64/conf

Mateusz Guzik mjg at FreeBSD.org
Tue Sep 11 23:54:32 UTC 2018


Author: mjg
Date: Tue Sep 11 23:54:31 2018
New Revision: 338602
URL: https://svnweb.freebsd.org/changeset/base/338602

Log:
  amd64: enable options NUMA in GENERIC and MINIMAL
  
  Reviewed by:	gallatin, cem, scottl
  Approved by:	re (kib)
  Relnotes:	yes
  Sponsored by:	Dell EMC Isilon, Netflix
  Differential Revision:	https://reviews.freebsd.org/D17059

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

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Tue Sep 11 21:14:07 2018	(r338601)
+++ head/sys/amd64/conf/GENERIC	Tue Sep 11 23:54:31 2018	(r338602)
@@ -25,6 +25,7 @@ makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug
 makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
 
 options 	SCHED_ULE		# ULE scheduler
+options 	NUMA			# Non-Uniform Memory Architecture support
 options 	PREEMPTION		# Enable kernel thread preemption
 options 	VIMAGE			# Subsystem virtualization, e.g. VNET
 options 	INET			# InterNETworking

Modified: head/sys/amd64/conf/MINIMAL
==============================================================================
--- head/sys/amd64/conf/MINIMAL	Tue Sep 11 21:14:07 2018	(r338601)
+++ head/sys/amd64/conf/MINIMAL	Tue Sep 11 23:54:31 2018	(r338602)
@@ -39,6 +39,7 @@ makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug
 makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
 
 options 	SCHED_ULE		# ULE scheduler
+options 	NUMA			# Non-Uniform Memory Architecture support
 options 	PREEMPTION		# Enable kernel thread preemption
 options 	INET			# InterNETworking
 options 	INET6			# IPv6 communications protocols


More information about the svn-src-head mailing list