1VZALLOC(9) Memory Management in Linux VZALLOC(9)
23
4
NAME
6vzalloc - allocate virtually contiguous memory with zero fill
7
SYNOPSIS
9void * vzalloc(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.
15The memory allocated is set to zero.
16
DESCRIPTION
18For tight control over page level allocator and protection flags use
19__vmalloc instead.
20
COPYRIGHT
22Kernel Hackers Manual 3.10 June 2019 VZALLOC(9)