diff options
Diffstat (limited to 'arch/x86/xen/mmu.c')
-rw-r--r-- | arch/x86/xen/mmu.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c index d0976b87cd2c..2579e70cdd08 100644 --- a/arch/x86/xen/mmu.c +++ b/arch/x86/xen/mmu.c | |||
@@ -805,8 +805,15 @@ void xen_dup_mmap(struct mm_struct *oldmm, struct mm_struct *mm) | |||
805 | static void drop_other_mm_ref(void *info) | 805 | static void drop_other_mm_ref(void *info) |
806 | { | 806 | { |
807 | struct mm_struct *mm = info; | 807 | struct mm_struct *mm = info; |
808 | struct mm_struct *active_mm; | ||
808 | 809 | ||
809 | if (__get_cpu_var(cpu_tlbstate).active_mm == mm) | 810 | #ifdef CONFIG_X86_64 |
811 | active_mm = read_pda(active_mm); | ||
812 | #else | ||
813 | active_mm = __get_cpu_var(cpu_tlbstate).active_mm; | ||
814 | #endif | ||
815 | |||
816 | if (active_mm == mm) | ||
810 | leave_mm(smp_processor_id()); | 817 | leave_mm(smp_processor_id()); |
811 | 818 | ||
812 | /* If this cpu still has a stale cr3 reference, then make sure | 819 | /* If this cpu still has a stale cr3 reference, then make sure |