1. NAME

kmem_cache_free - Deallocate an object

2. SYNOPSIS

void kmem_cache_free(struct kmem_cache *  cachep , void *  objp );

3. ARGUMENTS

cachep
    The cache the allocation was from.

objp
    The previously allocated object.

4. DESCRIPTION

Free an object which was previously allocated from this cache.

5. COPYRIGHT