From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH 1/2] x86/tboot: invalidate FIX_TBOOT_MAP_ADDRESS mapping after use Date: Wed, 18 Feb 2015 10:40:07 +0000 Message-ID: <54E46C07.90001@citrix.com> References: <54E461B50200007800060ED5@mail.emea.novell.com> <54E4635E0200007800060EE1@mail.emea.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1YO23S-0007gR-3L for xen-devel@lists.xenproject.org; Wed, 18 Feb 2015 10:40:30 +0000 In-Reply-To: <54E4635E0200007800060EE1@mail.emea.novell.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: Jan Beulich , xen-devel Cc: Shane Wang , Joseph Cihula , Gang Wei List-Id: xen-devel@lists.xenproject.org On 18/02/15 09:03, Jan Beulich wrote: > In order for commit cbeeaa7d ("x86/nmi: fix shootdown of pcpus > running in VMX non-root mode")'s re-use of that fixmap entry to not > cause undesirable (in crash context) cross-CPU TLB flushes, invalidate > the fixmap entry right after use. > > Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper > > --- a/xen/arch/x86/tboot.c > +++ b/xen/arch/x86/tboot.c > @@ -138,6 +138,7 @@ void __init tboot_probe(void) > TXT_PUB_CONFIG_REGS_BASE + TXTCR_SINIT_BASE); > tboot_copy_memory((unsigned char *)&sinit_size, sizeof(sinit_size), > TXT_PUB_CONFIG_REGS_BASE + TXTCR_SINIT_SIZE); > + __set_fixmap(FIX_TBOOT_MAP_ADDRESS, 0, 0); > } > > /* definitions from xen/drivers/passthrough/vtd/iommu.h > @@ -476,6 +477,8 @@ int __init tboot_parse_dmar_table(acpi_t > dmar_table_raw = xmalloc_array(unsigned char, dmar_table_length); > tboot_copy_memory(dmar_table_raw, dmar_table_length, pa); > dmar_table = (struct acpi_table_header *)dmar_table_raw; > + __set_fixmap(FIX_TBOOT_MAP_ADDRESS, 0, 0); > + > rc = dmar_handler(dmar_table); > xfree(dmar_table_raw); > > > >