mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 06:32:50 +00:00
1d7708e75c
The previous patch removed the tlb_flush_end() implementation which used tlb_flush_range(). This means: - csky did double invalidates, a range invalidate per vma and a full invalidate at the end - csky actually has range invalidates and as such the generic tlb_flush implementation is more efficient for it. Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Acked-by: Will Deacon <will@kernel.org> Tested-by: Guo Ren <guoren@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
10 lines
179 B
C
10 lines
179 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __ASM_CSKY_TLB_H
|
|
#define __ASM_CSKY_TLB_H
|
|
|
|
#include <asm/cacheflush.h>
|
|
#include <asm-generic/tlb.h>
|
|
|
|
#endif /* __ASM_CSKY_TLB_H */
|