1. NAME▲
vmap - map an array of pages into virtually contiguous space
2. SYNOPSIS ▲
void * vmap(struct page ** pages , unsigned int count , unsigned long flags , pgprot_t prot );
3. ARGUMENTS ▲
pages
array of page pointers
count
number of pages to map
flags
vm_area->flags
prot
page protection for the mapping
4. DESCRIPTION ▲
Maps count pages from pages into contiguous kernel virtual space.
5. COPYRIGHT ▲