]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/vmalloc.h
mm, vmalloc: iterate vmap_area_list, instead of vmlist, in vmallocinfo()
[mirror_ubuntu-artful-kernel.git] / include / linux / vmalloc.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_VMALLOC_H
2#define _LINUX_VMALLOC_H
3
4#include <linux/spinlock.h>
db64fe02 5#include <linux/init.h>
1da177e4
LT
6#include <asm/page.h> /* pgprot_t */
7
605d9288 8struct vm_area_struct; /* vma defining user mapping in mm_types.h */
83342314 9
605d9288 10/* bits in flags of vmalloc's vm_struct below */
1da177e4
LT
11#define VM_IOREMAP 0x00000001 /* ioremap() and friends */
12#define VM_ALLOC 0x00000002 /* vmalloc() */
13#define VM_MAP 0x00000004 /* vmap()ed pages */
83342314 14#define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */
8757d5fa 15#define VM_VPAGES 0x00000010 /* buffer for pages was vmalloc'ed */
f5252e00 16#define VM_UNLIST 0x00000020 /* vm_struct is not listed in vmlist */
1da177e4
LT
17/* bits [20..32] reserved for arch specific ioremap internals */
18
fd195c49
DS
19/*
20 * Maximum alignment for ioremap() regions.
21 * Can be overriden by arch-specific value.
22 */
23#ifndef IOREMAP_MAX_ORDER
24#define IOREMAP_MAX_ORDER (7 + PAGE_SHIFT) /* 128 pages */
25#endif
26
1da177e4 27struct vm_struct {
2b4ac44e 28 struct vm_struct *next;
1da177e4
LT
29 void *addr;
30 unsigned long size;
31 unsigned long flags;
32 struct page **pages;
33 unsigned int nr_pages;
ffa71f33 34 phys_addr_t phys_addr;
5e6cafc8 35 const void *caller;
1da177e4
LT
36};
37
38/*
39 * Highlevel APIs for driver use
40 */
db64fe02
NP
41extern void vm_unmap_ram(const void *mem, unsigned int count);
42extern void *vm_map_ram(struct page **pages, unsigned int count,
43 int node, pgprot_t prot);
44extern void vm_unmap_aliases(void);
45
46#ifdef CONFIG_MMU
47extern void __init vmalloc_init(void);
48#else
49static inline void vmalloc_init(void)
50{
51}
52#endif
53
1da177e4 54extern void *vmalloc(unsigned long size);
e1ca7788 55extern void *vzalloc(unsigned long size);
83342314 56extern void *vmalloc_user(unsigned long size);
930fc45a 57extern void *vmalloc_node(unsigned long size, int node);
e1ca7788 58extern void *vzalloc_node(unsigned long size, int node);
1da177e4
LT
59extern void *vmalloc_exec(unsigned long size);
60extern void *vmalloc_32(unsigned long size);
83342314 61extern void *vmalloc_32_user(unsigned long size);
dd0fc66f 62extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot);
d0a21265
DR
63extern void *__vmalloc_node_range(unsigned long size, unsigned long align,
64 unsigned long start, unsigned long end, gfp_t gfp_mask,
5e6cafc8 65 pgprot_t prot, int node, const void *caller);
b3bdda02 66extern void vfree(const void *addr);
1da177e4
LT
67
68extern void *vmap(struct page **pages, unsigned int count,
69 unsigned long flags, pgprot_t prot);
b3bdda02 70extern void vunmap(const void *addr);
83342314
NP
71
72extern int remap_vmalloc_range(struct vm_area_struct *vma, void *addr,
73 unsigned long pgoff);
1eeb66a1 74void vmalloc_sync_all(void);
1da177e4
LT
75
76/*
77 * Lowlevel-APIs (not for driver use!)
78 */
9585116b
JF
79
80static inline size_t get_vm_area_size(const struct vm_struct *area)
81{
82 /* return actual size without guard page */
83 return area->size - PAGE_SIZE;
84}
85
1da177e4 86extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags);
23016969 87extern struct vm_struct *get_vm_area_caller(unsigned long size,
5e6cafc8 88 unsigned long flags, const void *caller);
1da177e4
LT
89extern struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
90 unsigned long start, unsigned long end);
c2968612
BH
91extern struct vm_struct *__get_vm_area_caller(unsigned long size,
92 unsigned long flags,
93 unsigned long start, unsigned long end,
5e6cafc8 94 const void *caller);
b3bdda02 95extern struct vm_struct *remove_vm_area(const void *addr);
e9da6e99 96extern struct vm_struct *find_vm_area(const void *addr);
c19c03fc 97
1da177e4
LT
98extern int map_vm_area(struct vm_struct *area, pgprot_t prot,
99 struct page ***pages);
b554cb42 100#ifdef CONFIG_MMU
8fc48985
TH
101extern int map_kernel_range_noflush(unsigned long start, unsigned long size,
102 pgprot_t prot, struct page **pages);
103extern void unmap_kernel_range_noflush(unsigned long addr, unsigned long size);
c19c03fc 104extern void unmap_kernel_range(unsigned long addr, unsigned long size);
b554cb42
GY
105#else
106static inline int
107map_kernel_range_noflush(unsigned long start, unsigned long size,
108 pgprot_t prot, struct page **pages)
109{
110 return size >> PAGE_SHIFT;
111}
112static inline void
113unmap_kernel_range_noflush(unsigned long addr, unsigned long size)
114{
115}
116static inline void
117unmap_kernel_range(unsigned long addr, unsigned long size)
118{
119}
120#endif
1da177e4 121
5f4352fb 122/* Allocate/destroy a 'vmalloc' VM area. */
cd12909c 123extern struct vm_struct *alloc_vm_area(size_t size, pte_t **ptes);
5f4352fb
JF
124extern void free_vm_area(struct vm_struct *area);
125
69beeb1d
KM
126/* for /dev/kmem */
127extern long vread(char *buf, char *addr, unsigned long count);
128extern long vwrite(char *buf, char *addr, unsigned long count);
129
1da177e4
LT
130/*
131 * Internals. Dont't use..
132 */
133extern rwlock_t vmlist_lock;
134extern struct vm_struct *vmlist;
be9b7335 135extern __init void vm_area_add_early(struct vm_struct *vm);
c0c0a293 136extern __init void vm_area_register_early(struct vm_struct *vm, size_t align);
1da177e4 137
4f8b02b4 138#ifdef CONFIG_SMP
b554cb42 139# ifdef CONFIG_MMU
ca23e405
TH
140struct vm_struct **pcpu_get_vm_areas(const unsigned long *offsets,
141 const size_t *sizes, int nr_vms,
ec3f64fc 142 size_t align);
ca23e405
TH
143
144void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms);
b554cb42
GY
145# else
146static inline struct vm_struct **
147pcpu_get_vm_areas(const unsigned long *offsets,
148 const size_t *sizes, int nr_vms,
149 size_t align)
150{
151 return NULL;
152}
153
154static inline void
155pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
156{
157}
158# endif
4f8b02b4 159#endif
ca23e405 160
db3808c1
JK
161struct vmalloc_info {
162 unsigned long used;
163 unsigned long largest_chunk;
164};
165
166#ifdef CONFIG_MMU
167#define VMALLOC_TOTAL (VMALLOC_END - VMALLOC_START)
168extern void get_vmalloc_info(struct vmalloc_info *vmi);
169#else
170
171#define VMALLOC_TOTAL 0UL
172#define get_vmalloc_info(vmi) \
173do { \
174 (vmi)->used = 0; \
175 (vmi)->largest_chunk = 0; \
176} while (0)
177#endif
178
1da177e4 179#endif /* _LINUX_VMALLOC_H */