Skip to content

Commit 1362d15

Browse files
committed
csky: pgtable: Invalidate stale I-cache lines in update_mmu_cache
The final icache_flush was in the update_mmu_cache, and update_mmu_cache is after the set_pte_at. Thus, when CPU0 sets the pte, the other CPU would see it before the icache_flush broadcast happens, and their icaches may have cached stale VIPT cache lines in their I-caches. When address translation was ready for the new cache line, they will use the stale data of icache, not the fresh one of the dcache. The csky instruction cache is VIPT, and it needs an origin virtual address to invalidate the virtual address index entries of cache ways. The current implementation uses a temporary mapping mechanism - kmap_atomic, which returns a new virtual address for invalidation. But, the original virtual address cache line may still in the I-cache. So force invalidation I-cache in update_mmu_cache, and prevent flush_dcache when there is an EXEC page. This bug was detected in the 4*c860 SMP system, and this patch could pass the stress test. Signed-off-by: Guo Ren <guoren@linux.alibaba.com> Signed-off-by: Guo Ren <guoren@kernel.org>
1 parent 57427df commit 1362d15

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

arch/csky/abiv2/cacheflush.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,9 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long address,
2727

2828
addr = (unsigned long) kmap_atomic(page);
2929

30+
icache_inv_range(address, address + PAGE_SIZE);
3031
dcache_wb_range(addr, addr + PAGE_SIZE);
3132

32-
if (vma->vm_flags & VM_EXEC)
33-
icache_inv_range(addr, addr + PAGE_SIZE);
34-
3533
kunmap_atomic((void *) addr);
3634
}
3735

0 commit comments

Comments
 (0)