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