[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1314947277.29510.66.camel@sli10-conroe>
Date: Fri, 02 Sep 2011 15:07:57 +0800
From: Shaohua Li <shaohua.li@...el.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: Ingo Molnar <mingo@...e.hu>, "hpa@...or.com" <hpa@...or.com>
Subject: [patch] x86: tlb flush avoid superflous leave_mm()
If just one page VA tlb is required to be flushed and current task is in lazy
TLB state, doing leave_mm() is superfluous because it flushes the whole TLB.
This can reduce some TLB miss.
Signed-off-by: Shaohua Li <shaohua.li@...el.com>
diff --git a/arch/x86/mm/tlb.c b/arch/x86/mm/tlb.c
index d6c0418..3041665 100644
--- a/arch/x86/mm/tlb.c
+++ b/arch/x86/mm/tlb.c
@@ -153,13 +153,13 @@ void smp_invalidate_interrupt(struct pt_regs *regs)
*/
if (f->flush_mm == percpu_read(cpu_tlbstate.active_mm)) {
- if (percpu_read(cpu_tlbstate.state) == TLBSTATE_OK) {
- if (f->flush_va == TLB_FLUSH_ALL)
+ if (f->flush_va == TLB_FLUSH_ALL) {
+ if (percpu_read(cpu_tlbstate.state) == TLBSTATE_OK)
local_flush_tlb();
else
- __flush_tlb_one(f->flush_va);
+ leave_mm(cpu);
} else
- leave_mm(cpu);
+ __flush_tlb_one(f->flush_va);
}
out:
ack_APIC_irq();
@@ -306,12 +306,8 @@ void flush_tlb_page(struct vm_area_struct *vma, unsigned long va)
preempt_disable();
- if (current->active_mm == mm) {
- if (current->mm)
- __flush_tlb_one(va);
- else
- leave_mm(smp_processor_id());
- }
+ if (current->active_mm == mm)
+ __flush_tlb_one(va);
if (cpumask_any_but(mm_cpumask(mm), smp_processor_id()) < nr_cpu_ids)
flush_tlb_others(mm_cpumask(mm), mm, va);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists