From: Julien Grall Date: Fri, 17 Oct 2014 16:14:44 +0000 (+0100) Subject: xen/arm: flush_tlb_domain: Disable IRQ when flushing TLB of another domain X-Git-Tag: 4.5.0-rc1~20 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9bb013c878f2de645bb588938542d936e9bb2e58;p=xen.git xen/arm: flush_tlb_domain: Disable IRQ when flushing TLB of another domain When Xen is flushing the TLB for another domain than current, it has to switch temporarily to the P2M of this domain. If IRQs are enabled, it may be possible to receive an interrupt that requires the use the P2M of the current domain, or even temporarily switch to another P2M. For the former case, the translation would be wrong. For the latter one, as the handler would restore the current P2M, Xen would flush the wrong domain TLB. Thankfully we don't have such interrupt handler, but it may be necessary in the future to do that during when the user asks to dump domain stack via a keystroke. Signed-off-by: Julien Grall Acked-by: Ian Campbell [ ijc -- spelling in the commit log ] --- diff --git a/xen/arch/arm/p2m.c b/xen/arch/arm/p2m.c index 69191b9f4c..76d236935a 100644 --- a/xen/arch/arm/p2m.c +++ b/xen/arch/arm/p2m.c @@ -112,17 +112,25 @@ void p2m_restore_state(struct vcpu *n) void flush_tlb_domain(struct domain *d) { + unsigned long flags = 0; + /* Update the VTTBR if necessary with the domain d. In this case, * it's only necessary to flush TLBs on every CPUs with the current VMID * (our domain). */ if ( d != current->domain ) + { + local_irq_save(flags); p2m_load_VTTBR(d); + } flush_tlb(); if ( d != current->domain ) + { p2m_load_VTTBR(current->domain); + local_irq_restore(flags); + } } /*