mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
203b7b6aad
Move the default (no-op) implementation of flush_icache_pages() to <linux/cacheflush.h> from <asm-generic/cacheflush.h>. Remove the flush_icache_page() wrapper from each architecture into <linux/cacheflush.h>. Link: https://lkml.kernel.org/r/20230802151406.3735276-32-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
30 lines
675 B
C
30 lines
675 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_CACHEFLUSH_H
|
|
#define _LINUX_CACHEFLUSH_H
|
|
|
|
#include <asm/cacheflush.h>
|
|
|
|
struct folio;
|
|
|
|
#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
|
|
#ifndef flush_dcache_folio
|
|
void flush_dcache_folio(struct folio *folio);
|
|
#endif
|
|
#else
|
|
static inline void flush_dcache_folio(struct folio *folio)
|
|
{
|
|
}
|
|
#define flush_dcache_folio flush_dcache_folio
|
|
#endif /* ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE */
|
|
|
|
#ifndef flush_icache_pages
|
|
static inline void flush_icache_pages(struct vm_area_struct *vma,
|
|
struct page *page, unsigned int nr)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#define flush_icache_page(vma, page) flush_icache_pages(vma, page, 1)
|
|
|
|
#endif /* _LINUX_CACHEFLUSH_H */
|