VMEM_CONTAINS(9F) Kernel Functions for Drivers VMEM_CONTAINS(9F)

vmem_containscheck for membership in a vmem arena

#include <sys/vmem.h>

int
vmem_contains(vmem_t *vmp, void *vaddr, size_t *size);

illumos DDI specific

vmp
The vmem arena
vaddr
address of the segment to query.
size
size of the segment to query

The () function checks whether a segment of size bytes at vaddr exists within the vmem arena vmp.

This function may be called from user or kernel context.

vmem_contains() returns non-0 if the segment exists, and 0 otherwise.

vmem(9), vmem_add(9F), vmem_alloc(9F), vmem_create(9F)

January 18, 2017 OmniOS