table of contents
other versions
VMAP(9) | Memory Management in Linux | VMAP(9) |
NAME¶
vmap - map an array of pages into virtually contiguous space
SYNOPSIS¶
void * vmap(struct page ** pages, unsigned int count, unsigned long flags, pgprot_t prot);
ARGUMENTS¶
struct page ** pages
array of page pointers
unsigned int count
number of pages to map
unsigned long flags
vm_area->flags
pgprot_t prot
page protection for the mapping
DESCRIPTION¶
Maps count pages from pages into contiguous kernel virtual space.
COPYRIGHT¶
July 2017 | Kernel Hackers Manual 4.11 |