1. NAME

vmalloc_user - allocate zeroed virtually contiguous memory for userspace

2. SYNOPSIS

void * vmalloc_user(unsigned long  size );

3. ARGUMENTS

size
    allocation size

4. DESCRIPTION

The resulting memory area is zeroed so it can be mapped to userspace without leaking data.

5. COPYRIGHT