From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH v2 2/2] x86/hvm: Don't intercept #UD exceptions in general Date: Wed, 27 Jan 2016 19:57:00 +0000 Message-ID: <56A9210C.6080601@citrix.com> References: <56A91122.50502@oracle.com> <1453921984-29197-1-git-send-email-andrew.cooper3@citrix.com> <20160127195223.GI3134@char.us.oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20160127195223.GI3134@char.us.oracle.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: Konrad Rzeszutek Wilk Cc: Kevin Tian , Jan Beulich , Xen-devel , Aravind Gopalakrishnan , Jun Nakajima , Boris Ostrovsky , Suravee Suthikulpanit List-Id: xen-devel@lists.xenproject.org On 27/01/2016 19:52, Konrad Rzeszutek Wilk wrote: >> diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c >> index 674feea..7a15d49 100644 >> --- a/xen/arch/x86/hvm/hvm.c >> +++ b/xen/arch/x86/hvm/hvm.c >> @@ -93,12 +93,10 @@ unsigned long __section(".bss.page_aligned") >> static bool_t __initdata opt_hap_enabled = 1; >> boolean_param("hap", opt_hap_enabled); >> >> -#ifndef NDEBUG >> +#ifndef opt_hvm_fep >> /* Permit use of the Forced Emulation Prefix in HVM guests */ >> -static bool_t opt_hvm_fep; >> +bool_t opt_hvm_fep; >> boolean_param("hvm_fep", opt_hvm_fep); > Since you remove the debug option you should probably also update the > documentation which says: ">Recognized in debug builds of the hypervisor only." This doesn't change the "debug-only"-ness of the option. Observe in the first hunk to hvm.h that opt_hvm_fep is defined to 0 in a non-debug build, which causes this hunk to be omitted. This actually matches the original introduction of opt_hvm_fep, before it was reduced in scope to only hvm.c. I now need it available again in other translation units. ~Andrew