diff options
author | Will Deacon <will.deacon@arm.com> | 2013-02-19 02:07:47 +0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2013-08-12 15:25:44 +0400 |
commit | 2c813980c6113ac2c407fbed99f53242088c3038 (patch) | |
tree | bc68fc216c14179d10b2ddc5a86129550e4c9531 /arch/arm/kernel | |
parent | 587b9b6487acddf777301c867c24f31fdf4ada4a (diff) | |
download | linux-2c813980c6113ac2c407fbed99f53242088c3038.tar.xz |
ARM: tlb: don't perform inner-shareable invalidation for local BP ops
Now that the ASID allocator doesn't require inner-shareable maintenance,
we can convert the local_bp_flush_all function to perform only
non-shareable flushing, in a similar manner to the TLB invalidation
routines.
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/smp_tlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/smp_tlb.c b/arch/arm/kernel/smp_tlb.c index 5883b8ae77c8..83ccca303df8 100644 --- a/arch/arm/kernel/smp_tlb.c +++ b/arch/arm/kernel/smp_tlb.c @@ -173,5 +173,5 @@ void flush_bp_all(void) if (tlb_ops_need_broadcast()) on_each_cpu(ipi_flush_bp_all, NULL, 1); else - local_flush_bp_all(); + __flush_bp_all(); } |