svn commit: r267530 - head/sys/conf

Roger Pau Monné royger at FreeBSD.org
Mon Jun 16 08:45:52 UTC 2014


Author: royger
Date: Mon Jun 16 08:45:51 2014
New Revision: 267530
URL: http://svnweb.freebsd.org/changeset/base/267530

Log:
  xen: create a Xen nexus to use in PV/PVH
  
  Introduce a Xen specific nexus that is going to be used by Xen PV/PVH
  guests.
  
  Sponsored by: Citrix Systems R&D
  Approved by: gibbs
  
  x86/xen/xen_nexus.c:
   - Introduce a Nexus to use on Xen PV(H) guests, this prevents PV(H)
     guests from using the legacy Nexus.
  
  conf/files.amd64:
  conf/files.i386:
   - Add the xen nexus to the build.

Modified:
  head/sys/conf/files.amd64
  head/sys/conf/files.i386

Modified: head/sys/conf/files.amd64
==============================================================================
--- head/sys/conf/files.amd64	Mon Jun 16 08:45:12 2014	(r267529)
+++ head/sys/conf/files.amd64	Mon Jun 16 08:45:51 2014	(r267530)
@@ -559,3 +559,4 @@ x86/xen/pv.c			optional	xenhvm
 x86/xen/pvcpu_enum.c		optional	xenhvm
 x86/xen/xen_apic.c		optional	xenhvm
 x86/xen/xenpv.c			optional	xenhvm
+x86/xen/xen_nexus.c		optional	xenhvm

Modified: head/sys/conf/files.i386
==============================================================================
--- head/sys/conf/files.i386	Mon Jun 16 08:45:12 2014	(r267529)
+++ head/sys/conf/files.i386	Mon Jun 16 08:45:51 2014	(r267530)
@@ -596,3 +596,4 @@ x86/xen/hvm.c			optional xenhvm
 x86/xen/xen_intr.c		optional xen | xenhvm
 x86/xen/xen_apic.c		optional xenhvm
 x86/xen/xenpv.c			optional xen | xenhvm
+x86/xen/xen_nexus.c		optional xen | xenhvm


More information about the svn-src-all mailing list