From: Catalin Marinas Date: Thu, 24 Jan 2019 17:28:37 +0000 (+0000) Subject: arm64: Do not issue IPIs for user executable ptes X-Git-Tag: v5.4-rc1~1687^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=132fdc379eb143932d209a20fd581e1ce7630960;p=platform%2Fkernel%2Flinux-rpi.git arm64: Do not issue IPIs for user executable ptes Commit 3b8c9f1cdfc5 ("arm64: IPI each CPU after invalidating the I-cache for kernel mappings") was aimed at fixing the I-cache invalidation for kernel mappings. However, it inadvertently caused all cache maintenance for user mappings via set_pte_at() -> __sync_icache_dcache() -> sync_icache_aliases() to call kick_all_cpus_sync(). Reported-by: Shijith Thotton Tested-by: Shijith Thotton Reported-by: Wandun Chen Fixes: 3b8c9f1cdfc5 ("arm64: IPI each CPU after invalidating the I-cache for kernel mappings") Cc: # 4.19.x- Signed-off-by: Catalin Marinas Signed-off-by: Will Deacon --- diff --git a/arch/arm64/mm/flush.c b/arch/arm64/mm/flush.c index 30695a8..5c9073b 100644 --- a/arch/arm64/mm/flush.c +++ b/arch/arm64/mm/flush.c @@ -33,7 +33,11 @@ void sync_icache_aliases(void *kaddr, unsigned long len) __clean_dcache_area_pou(kaddr, len); __flush_icache_all(); } else { - flush_icache_range(addr, addr + len); + /* + * Don't issue kick_all_cpus_sync() after I-cache invalidation + * for user mappings. + */ + __flush_icache_range(addr, addr + len); } }