Commit d25de0cc authored by Vinayak Kale's avatar Vinayak Kale Committed by Greg Kroah-Hartman

ARM: 7957/1: add DSB after icache flush in __flush_icache_all()

commit 39544ac9 upstream.

Add DSB after icache flush to complete the cache maintenance operation.
Signed-off-by: default avatarVinayak Kale <vkale@apm.com>
Acked-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0dcbe514
......@@ -202,6 +202,7 @@ extern void copy_to_user_page(struct vm_area_struct *, struct page *,
static inline void __flush_icache_all(void)
{
__flush_icache_preferred();
dsb();
}
#define flush_cache_all() __cpuc_flush_kern_all()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment