From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Vrabel Subject: Re: [RFC v1 5/8] xen: x86: add XEN_PV Date: Thu, 12 Feb 2015 11:03:26 +0000 Message-ID: <54DC887E.1090108@citrix.com> References: <1423720996-3332-1-git-send-email-mcgrof@do-not-panic.com> <1423720996-3332-6-git-send-email-mcgrof@do-not-panic.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1YLrYT-0001Nf-0W for xen-devel@lists.xenproject.org; Thu, 12 Feb 2015 11:03:33 +0000 In-Reply-To: <1423720996-3332-6-git-send-email-mcgrof@do-not-panic.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: "Luis R. Rodriguez" , xen-devel@lists.xenproject.org Cc: jgross@suse.com, mcgrof@suse.com, david.vrabel@citrix.com, boris.ostrovsky@oracle.com List-Id: xen-devel@lists.xenproject.org On 12/02/15 06:03, Luis R. Rodriguez wrote: > From: "Luis R. Rodriguez" > > This lets us rip out under the general XEN config the > XEN_HAVE_PVMMU dependency. This only exists on the x86 > universe. This is as per the agreed upon Xen Kconfig > changes [0]. [...] > @@ -52,3 +51,9 @@ config XEN_PVH > depends on X86_64 && XEN > select XEN_PVHVM > def_bool n > + > +config XEN_PV > + bool "Support for running as a PV guest" > + depends on XEN && X86 > + select XEN_HAVE_PVMMU > + def_bool n These options should be in this order: XEN_PV, XEN_PVHVM, XEN_PVH. David