blob: ab2cc20e21a5c381a1912a5bfe54aa7bdb293c50 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_HIGHMEM_H
2#define _LINUX_HIGHMEM_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/fs.h>
5#include <linux/mm.h>
Peter Zijlstraad76fb62006-12-06 20:32:21 -08006#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#include <asm/cacheflush.h>
9
James Bottomley03beb072006-03-26 01:36:57 -080010#ifndef ARCH_HAS_FLUSH_ANON_PAGE
Russell Kinga6f36be2006-12-30 22:24:19 +000011static inline void flush_anon_page(struct vm_area_struct *vma, struct page *page, unsigned long vmaddr)
James Bottomley03beb072006-03-26 01:36:57 -080012{
13}
14#endif
15
James Bottomley5a3a5a92006-03-26 01:36:59 -080016#ifndef ARCH_HAS_FLUSH_KERNEL_DCACHE_PAGE
17static inline void flush_kernel_dcache_page(struct page *page)
18{
19}
20#endif
21
Kumar Gala3688e072009-04-01 23:38:49 -050022#include <asm/kmap_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Kumar Gala3688e072009-04-01 23:38:49 -050024#if defined(CONFIG_DEBUG_HIGHMEM) && defined(CONFIG_TRACE_IRQFLAGS_SUPPORT)
25
26void debug_kmap_atomic(enum km_type type);
27
28#else
29
30static inline void debug_kmap_atomic(enum km_type type)
31{
32}
33
34#endif
35
36#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/highmem.h>
38
39/* declarations for linux/mm/highmem.c */
40unsigned int nr_free_highpages(void);
Christoph Lameterc1f60a52006-09-25 23:31:11 -070041extern unsigned long totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020043void kmap_flush_unused(void);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#else /* CONFIG_HIGHMEM */
46
47static inline unsigned int nr_free_highpages(void) { return 0; }
48
Andreas Fenkart4b529402010-01-08 14:42:31 -080049#define totalhigh_pages 0UL
Christoph Lameterc1f60a52006-09-25 23:31:11 -070050
James Bottomleya6ca1b92006-09-25 23:30:55 -070051#ifndef ARCH_HAS_KMAP
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static inline void *kmap(struct page *page)
53{
54 might_sleep();
55 return page_address(page);
56}
57
Matthew Wilcox31c91132009-06-16 15:32:45 -070058static inline void kunmap(struct page *page)
59{
60}
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020062static inline void *kmap_atomic(struct page *page, enum km_type idx)
63{
64 pagefault_disable();
65 return page_address(page);
66}
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020067#define kmap_atomic_prot(page, idx, prot) kmap_atomic(page, idx)
Geert Uytterhoeven254f9c52007-05-01 22:33:07 +020068
Peter Zijlstraad76fb62006-12-06 20:32:21 -080069#define kunmap_atomic(addr, idx) do { pagefault_enable(); } while (0)
70#define kmap_atomic_pfn(pfn, idx) kmap_atomic(pfn_to_page(pfn), (idx))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define kmap_atomic_to_page(ptr) virt_to_page(ptr)
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020072
73#define kmap_flush_unused() do {} while(0)
James Bottomleya6ca1b92006-09-25 23:30:55 -070074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76#endif /* CONFIG_HIGHMEM */
77
78/* when CONFIG_HIGHMEM is not set these will be plain clear/copy_page */
Russell King487ff322008-11-27 11:13:58 +000079#ifndef clear_user_highpage
Linus Torvalds1da177e2005-04-16 15:20:36 -070080static inline void clear_user_highpage(struct page *page, unsigned long vaddr)
81{
82 void *addr = kmap_atomic(page, KM_USER0);
83 clear_user_page(addr, vaddr, page);
84 kunmap_atomic(addr, KM_USER0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
Russell King487ff322008-11-27 11:13:58 +000086#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88#ifndef __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
Mel Gorman769848c2007-07-17 04:03:05 -070089/**
90 * __alloc_zeroed_user_highpage - Allocate a zeroed HIGHMEM page for a VMA with caller-specified movable GFP flags
91 * @movableflags: The GFP flags related to the pages future ability to move like __GFP_MOVABLE
92 * @vma: The VMA the page is to be allocated for
93 * @vaddr: The virtual address the page will be inserted into
94 *
95 * This function will allocate a page for a VMA but the caller is expected
96 * to specify via movableflags whether the page will be movable in the
97 * future or not
98 *
99 * An architecture may override this function by defining
100 * __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE and providing their own
101 * implementation.
102 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static inline struct page *
Mel Gorman769848c2007-07-17 04:03:05 -0700104__alloc_zeroed_user_highpage(gfp_t movableflags,
105 struct vm_area_struct *vma,
106 unsigned long vaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Mel Gorman769848c2007-07-17 04:03:05 -0700108 struct page *page = alloc_page_vma(GFP_HIGHUSER | movableflags,
109 vma, vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 if (page)
112 clear_user_highpage(page, vaddr);
113
114 return page;
115}
116#endif
117
Mel Gorman769848c2007-07-17 04:03:05 -0700118/**
Mel Gorman769848c2007-07-17 04:03:05 -0700119 * alloc_zeroed_user_highpage_movable - Allocate a zeroed HIGHMEM page for a VMA that the caller knows can move
120 * @vma: The VMA the page is to be allocated for
121 * @vaddr: The virtual address the page will be inserted into
122 *
123 * This function will allocate a page for a VMA that the caller knows will
124 * be able to migrate in the future using move_pages() or reclaimed
125 */
126static inline struct page *
127alloc_zeroed_user_highpage_movable(struct vm_area_struct *vma,
128 unsigned long vaddr)
129{
130 return __alloc_zeroed_user_highpage(__GFP_MOVABLE, vma, vaddr);
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static inline void clear_highpage(struct page *page)
134{
135 void *kaddr = kmap_atomic(page, KM_USER0);
136 clear_page(kaddr);
137 kunmap_atomic(kaddr, KM_USER0);
138}
139
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800140static inline void zero_user_segments(struct page *page,
141 unsigned start1, unsigned end1,
142 unsigned start2, unsigned end2)
143{
144 void *kaddr = kmap_atomic(page, KM_USER0);
145
146 BUG_ON(end1 > PAGE_SIZE || end2 > PAGE_SIZE);
147
148 if (end1 > start1)
149 memset(kaddr + start1, 0, end1 - start1);
150
151 if (end2 > start2)
152 memset(kaddr + start2, 0, end2 - start2);
153
154 kunmap_atomic(kaddr, KM_USER0);
155 flush_dcache_page(page);
156}
157
158static inline void zero_user_segment(struct page *page,
159 unsigned start, unsigned end)
160{
161 zero_user_segments(page, start, end, 0, 0);
162}
163
164static inline void zero_user(struct page *page,
165 unsigned start, unsigned size)
166{
167 zero_user_segments(page, start, start + size, 0, 0);
168}
Nate Diller01f27052007-05-09 02:35:07 -0700169
Nate Dillerf37bc272007-05-09 02:35:09 -0700170static inline void __deprecated memclear_highpage_flush(struct page *page,
Nate Diller01f27052007-05-09 02:35:07 -0700171 unsigned int offset, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800173 zero_user(page, offset, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000176#ifndef __HAVE_ARCH_COPY_USER_HIGHPAGE
177
Atsushi Nemoto9de455b2006-12-12 17:14:55 +0000178static inline void copy_user_highpage(struct page *to, struct page *from,
179 unsigned long vaddr, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 char *vfrom, *vto;
182
183 vfrom = kmap_atomic(from, KM_USER0);
184 vto = kmap_atomic(to, KM_USER1);
185 copy_user_page(vto, vfrom, vaddr, to);
186 kunmap_atomic(vfrom, KM_USER0);
187 kunmap_atomic(vto, KM_USER1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Atsushi Nemoto77fff4a2006-12-12 17:14:54 +0000190#endif
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static inline void copy_highpage(struct page *to, struct page *from)
193{
194 char *vfrom, *vto;
195
196 vfrom = kmap_atomic(from, KM_USER0);
197 vto = kmap_atomic(to, KM_USER1);
198 copy_page(vto, vfrom);
199 kunmap_atomic(vfrom, KM_USER0);
200 kunmap_atomic(vto, KM_USER1);
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#endif /* _LINUX_HIGHMEM_H */