ocfs2: avoid inode removal while nfsd is accessing it
[linux/fpc-iii.git] / include / asm-generic / cacheflush.h
blob907fa5d1649440e7f1561740bab54dbce9c9ad40
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_GENERIC_CACHEFLUSH_H
3 #define _ASM_GENERIC_CACHEFLUSH_H
5 /*
6 * The cache doesn't need to be flushed when TLB entries change when
7 * the cache is mapped to physical memory, not virtual memory
8 */
9 #ifndef flush_cache_all
10 static inline void flush_cache_all(void)
13 #endif
15 #ifndef flush_cache_mm
16 static inline void flush_cache_mm(struct mm_struct *mm)
19 #endif
21 #ifndef flush_cache_dup_mm
22 static inline void flush_cache_dup_mm(struct mm_struct *mm)
25 #endif
27 #ifndef flush_cache_range
28 static inline void flush_cache_range(struct vm_area_struct *vma,
29 unsigned long start,
30 unsigned long end)
33 #endif
35 #ifndef flush_cache_page
36 static inline void flush_cache_page(struct vm_area_struct *vma,
37 unsigned long vmaddr,
38 unsigned long pfn)
41 #endif
43 #ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
44 static inline void flush_dcache_page(struct page *page)
47 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
48 #endif
51 #ifndef flush_dcache_mmap_lock
52 static inline void flush_dcache_mmap_lock(struct address_space *mapping)
55 #endif
57 #ifndef flush_dcache_mmap_unlock
58 static inline void flush_dcache_mmap_unlock(struct address_space *mapping)
61 #endif
63 #ifndef flush_icache_range
64 static inline void flush_icache_range(unsigned long start, unsigned long end)
67 #endif
69 #ifndef flush_icache_user_range
70 #define flush_icache_user_range flush_icache_range
71 #endif
73 #ifndef flush_icache_page
74 static inline void flush_icache_page(struct vm_area_struct *vma,
75 struct page *page)
78 #endif
80 #ifndef flush_icache_user_page
81 static inline void flush_icache_user_page(struct vm_area_struct *vma,
82 struct page *page,
83 unsigned long addr, int len)
86 #endif
88 #ifndef flush_cache_vmap
89 static inline void flush_cache_vmap(unsigned long start, unsigned long end)
92 #endif
94 #ifndef flush_cache_vunmap
95 static inline void flush_cache_vunmap(unsigned long start, unsigned long end)
98 #endif
100 #ifndef copy_to_user_page
101 #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
102 do { \
103 memcpy(dst, src, len); \
104 flush_icache_user_page(vma, page, vaddr, len); \
105 } while (0)
106 #endif
108 #ifndef copy_from_user_page
109 #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
110 memcpy(dst, src, len)
111 #endif
113 #endif /* _ASM_GENERIC_CACHEFLUSH_H */