1VMALLOC_NODE(9) Memory Management in Linux VMALLOC_NODE(9)
2
3
4
6 vmalloc_node - allocate memory on a specific node
7
9 void * vmalloc_node(unsigned long size, int node);
10
12 size
13 allocation size
14
15 node
16 numa node
17
19 Allocate enough pages to cover size from the page level allocator and
20 map them into contiguous kernel virtual space.
21
22 For tight control over page level allocator and protection flags use
23 __vmalloc instead.
24
26Kernel Hackers Manual 3.10 June 2019 VMALLOC_NODE(9)