xref: /kvm-unit-tests/lib/vmalloc.h (revision 4363f1d9a646a5c7ea673bee8fc33ca6f2cddbd8)
1 #ifndef VMALLOC_H
2 #define VMALLOC_H 1
3 
4 extern void *alloc_vpages(ulong nr);
5 extern void *alloc_vpage(void);
6 extern void init_alloc_vpage(void *top);
7 extern void setup_vm();
8 
9 extern void *setup_mmu(phys_addr_t top);
10 
11 #endif
12