1VMALLOC(9) Memory Management in Linux VMALLOC(9)
23
4
NAME
6vmalloc - allocate virtually contiguous memory
7
SYNOPSIS
9void * vmalloc(unsigned long size);
10
ARGUMENTS
12size
13allocation size Allocate enough pages to cover size from the page
14level allocator and map them into contiguous kernel virtual space.
15
DESCRIPTION
17For tight control over page level allocator and protection flags use
18__vmalloc instead.
19
COPYRIGHT
21Kernel Hackers Manual 2.6. November 2011 VMALLOC(9)