BUG: headers with BUG/BUG_ON etc. need linux/bug.h
[deliverable/linux.git] / include / linux / highmem.h
1 #ifndef _LINUX_HIGHMEM_H
2 #define _LINUX_HIGHMEM_H
3
4 #include <linux/fs.h>
5 #include <linux/kernel.h>
6 #include <linux/bug.h>
7 #include <linux/mm.h>
8 #include <linux/uaccess.h>
9 #include <linux/hardirq.h>
10
11 #include <asm/cacheflush.h>
12
13 #ifndef ARCH_HAS_FLUSH_ANON_PAGE
14 static inline void flush_anon_page(struct vm_area_struct *vma, struct page *page, unsigned long vmaddr)
15 {
16 }
17 #endif
18
19 #ifndef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
20 static inline void flush_kernel_dcache_page(struct page *page)
21 {
22 }
23 static inline void flush_kernel_vmap_range(void *vaddr, int size)
24 {
25 }
26 static inline void invalidate_kernel_vmap_range(void *vaddr, int size)
27 {
28 }
29 #endif
30
31 #include <asm/kmap_types.h>
32
33 #ifdef CONFIG_HIGHMEM
34 #include <asm/highmem.h>
35
36 /* declarations for linux/mm/highmem.c */
37 unsigned int nr_free_highpages(void);
38 extern unsigned long totalhigh_pages;
39
40 void kmap_flush_unused(void);
41
42 #else /* CONFIG_HIGHMEM */
43
44 static inline unsigned int nr_free_highpages(void) { return 0; }
45
46 #define totalhigh_pages 0UL
47
48 #ifndef ARCH_HAS_KMAP
49 static inline void *kmap(struct page *page)
50 {
51 might_sleep();
52 return page_address(page);
53 }
54
55 static inline void kunmap(struct page *page)
56 {
57 }
58
59 static inline void *__kmap_atomic(struct page *page)
60 {
61 pagefault_disable();
62 return page_address(page);
63 }
64 #define kmap_atomic_prot(page, prot) __kmap_atomic(page)
65
66 static inline void __kunmap_atomic(void *addr)
67 {
68 pagefault_enable();
69 }
70
71 #define kmap_atomic_pfn(pfn) kmap_atomic(pfn_to_page(pfn))
72 #define kmap_atomic_to_page(ptr) virt_to_page(ptr)
73
74 #define kmap_flush_unused() do {} while(0)
75 #endif
76
77 #endif /* CONFIG_HIGHMEM */
78
79 #if defined(CONFIG_HIGHMEM) || defined(CONFIG_X86_32)
80
81 DECLARE_PER_CPU(int, __kmap_atomic_idx);
82
83 static inline int kmap_atomic_idx_push(void)
84 {
85 int idx = __this_cpu_inc_return(__kmap_atomic_idx) - 1;
86
87 #ifdef CONFIG_DEBUG_HIGHMEM
88 WARN_ON_ONCE(in_irq() && !irqs_disabled());
89 BUG_ON(idx > KM_TYPE_NR);
90 #endif
91 return idx;
92 }
93
94 static inline int kmap_atomic_idx(void)
95 {
96 return __this_cpu_read(__kmap_atomic_idx) - 1;
97 }
98
99 static inline void kmap_atomic_idx_pop(void)
100 {
101 #ifdef CONFIG_DEBUG_HIGHMEM
102 int idx = __this_cpu_dec_return(__kmap_atomic_idx);
103
104 BUG_ON(idx < 0);
105 #else
106 __this_cpu_dec(__kmap_atomic_idx);
107 #endif
108 }
109
110 #endif
111
112 /*
113 * Make both: kmap_atomic(page, idx) and kmap_atomic(page) work.
114 */
115 #define kmap_atomic(page, args...) __kmap_atomic(page)
116
117 /*
118 * Prevent people trying to call kunmap_atomic() as if it were kunmap()
119 * kunmap_atomic() should get the return value of kmap_atomic, not the page.
120 */
121 #define kunmap_atomic(addr, args...) \
122 do { \
123 BUILD_BUG_ON(__same_type((addr), struct page *)); \
124 __kunmap_atomic(addr); \
125 } while (0)
126
127 /* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
128 #ifndef clear_user_highpage
129 static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
130 {
131 void *addr = kmap_atomic(page, KM_USER0);
132 clear_user_page(addr, vaddr, page);
133 kunmap_atomic(addr, KM_USER0);
134 }
135 #endif
136
137 #ifndef __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
138 /**
139 * __alloc_zeroed_user_highpage - Allocate a zeroed HIGHMEM page for a VMA with caller-specified movable GFP flags
140 * @movableflags: The GFP flags related to the pages future ability to move like __GFP_MOVABLE
141 * @vma: The VMA the page is to be allocated for
142 * @vaddr: The virtual address the page will be inserted into
143 *
144 * This function will allocate a page for a VMA but the caller is expected
145 * to specify via movableflags whether the page will be movable in the
146 * future or not
147 *
148 * An architecture may override this function by defining
149 * __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE and providing their own
150 * implementation.
151 */
152 static inline struct page *
153 __alloc_zeroed_user_highpage(gfp_t movableflags,
154 struct vm_area_struct *vma,
155 unsigned long vaddr)
156 {
157 struct page *page = alloc_page_vma(GFP_HIGHUSER | movableflags,
158 vma, vaddr);
159
160 if (page)
161 clear_user_highpage(page, vaddr);
162
163 return page;
164 }
165 #endif
166
167 /**
168 * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for a VMA that the caller knows can move
169 * @vma: The VMA the page is to be allocated for
170 * @vaddr: The virtual address the page will be inserted into
171 *
172 * This function will allocate a page for a VMA that the caller knows will
173 * be able to migrate in the future using move_pages() or reclaimed
174 */
175 static inline struct page *
176 alloc_zeroed_user_highpage_movable(struct vm_area_struct *vma,
177 unsigned long vaddr)
178 {
179 return __alloc_zeroed_user_highpage(__GFP_MOVABLE, vma, vaddr);
180 }
181
182 static inline void clear_highpage(struct page *page)
183 {
184 void *kaddr = kmap_atomic(page, KM_USER0);
185 clear_page(kaddr);
186 kunmap_atomic(kaddr, KM_USER0);
187 }
188
189 static inline void zero_user_segments(struct page *page,
190 unsigned start1, unsigned end1,
191 unsigned start2, unsigned end2)
192 {
193 void *kaddr = kmap_atomic(page, KM_USER0);
194
195 BUG_ON(end1 > PAGE_SIZE || end2 > PAGE_SIZE);
196
197 if (end1 > start1)
198 memset(kaddr + start1, 0, end1 - start1);
199
200 if (end2 > start2)
201 memset(kaddr + start2, 0, end2 - start2);
202
203 kunmap_atomic(kaddr, KM_USER0);
204 flush_dcache_page(page);
205 }
206
207 static inline void zero_user_segment(struct page *page,
208 unsigned start, unsigned end)
209 {
210 zero_user_segments(page, start, end, 0, 0);
211 }
212
213 static inline void zero_user(struct page *page,
214 unsigned start, unsigned size)
215 {
216 zero_user_segments(page, start, start + size, 0, 0);
217 }
218
219 static inline void __deprecated memclear_highpage_flush(struct page *page,
220 unsigned int offset, unsigned int size)
221 {
222 zero_user(page, offset, size);
223 }
224
225 #ifndef __HAVE_ARCH_COPY_USER_HIGHPAGE
226
227 static inline void copy_user_highpage(struct page *to, struct page *from,
228 unsigned long vaddr, struct vm_area_struct *vma)
229 {
230 char *vfrom, *vto;
231
232 vfrom = kmap_atomic(from, KM_USER0);
233 vto = kmap_atomic(to, KM_USER1);
234 copy_user_page(vto, vfrom, vaddr, to);
235 kunmap_atomic(vto, KM_USER1);
236 kunmap_atomic(vfrom, KM_USER0);
237 }
238
239 #endif
240
241 static inline void copy_highpage(struct page *to, struct page *from)
242 {
243 char *vfrom, *vto;
244
245 vfrom = kmap_atomic(from, KM_USER0);
246 vto = kmap_atomic(to, KM_USER1);
247 copy_page(vto, vfrom);
248 kunmap_atomic(vto, KM_USER1);
249 kunmap_atomic(vfrom, KM_USER0);
250 }
251
252 #endif /* _LINUX_HIGHMEM_H */
This page took 0.046485 seconds and 5 git commands to generate.