From owner-svn-src-all@FreeBSD.ORG Mon Jun 16 08:45:52 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40D4F4BA; Mon, 16 Jun 2014 08:45:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D7E2275F; Mon, 16 Jun 2014 08:45:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5G8jqPo074587; Mon, 16 Jun 2014 08:45:52 GMT (envelope-from royger@svn.freebsd.org) Received: (from royger@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5G8jpt6074585; Mon, 16 Jun 2014 08:45:51 GMT (envelope-from royger@svn.freebsd.org) Message-Id: <201406160845.s5G8jpt6074585@svn.freebsd.org> From: Roger Pau Monné Date: Mon, 16 Jun 2014 08:45:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267530 - head/sys/conf X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jun 2014 08:45:52 -0000 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