Searched defs:pTxCache (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/solaris/Virtio/
H A DVirtioNet-solaris.c130 kmem_cache_t *pTxCache; /* TX buffer cache. */ member in struct:virtio_net_t
412 pNet->pTxCache = kmem_cache_create(szCachename, /* Cache name */
422 if (RT_LIKELY(pNet->pTxCache))
445 kmem_cache_destroy(pNet->pTxCache);
611 if (pNet->pTxCache)
780 virtio_net_txbuf_t *pTxBuf = kmem_cache_alloc(pNet->pTxCache, KM_SLEEP);
793 kmem_cache_free(pNet->pTxCache, pTxBuf);

Completed in 43 milliseconds