1. NAME

vunmap - release virtual mapping obtained by vmap

2. SYNOPSIS

void vunmap(const void *  addr );

3. ARGUMENTS

addr
    memory base address

4. DESCRIPTION

Free the virtually contiguous memory area starting at addr, which was created from the page array passed to vmap.

Must not be called in interrupt context.

5. COPYRIGHT