Deallocate an object
void kmem_cache_free(struct kmem_cache * cachep, void * objp);
cachep
The cache the allocation was from.
objp
The previously allocated object.
Free an object which was previously allocated from this cache.