mem_malloc_mbuf_pool() function
Mallocs a block of memory and initializes an mbuf pool to use it. The specified block_size indicates the size of an mbuf acquired from the pool if it does not contain a pkthdr.
Arguments
mempool
The mempool to initialize.
mbuf_pool
The mbuf pool to initialize.
num_blocks
The total number of mbufs in the pool.
block_size
The size of each mbuf.
name
The name to give the mempool.
out_buf
On success, this points to the malloced memory. Pass NULL if you don't need this information.
Return value
0 on success; OS_ENOMEM on malloc failure; Other OS code on unexpected error.