Home
last modified time | relevance | path

Searched refs:vtnet_tx_header_zone (Results 1 – 1 of 1) sorted by relevance

/freebsd-13-stable/sys/dev/virtio/network/
HDif_vtnet.c312 static uma_zone_t vtnet_tx_header_zone; variable
388 vtnet_tx_header_zone = uma_zcreate("vtnet_tx_hdr", in vtnet_modevent()
398 uma_zone_reserve(vtnet_tx_header_zone, DEBUGNET_MAX_IN_FLIGHT * 2); in vtnet_modevent()
399 uma_prealloc(vtnet_tx_header_zone, DEBUGNET_MAX_IN_FLIGHT * 2); in vtnet_modevent()
404 if (uma_zone_get_cur(vtnet_tx_header_zone) > 0) in vtnet_modevent()
409 uma_zdestroy(vtnet_tx_header_zone); in vtnet_modevent()
410 vtnet_tx_header_zone = NULL; in vtnet_modevent()
2354 uma_zfree(vtnet_tx_header_zone, txhdr); in vtnet_txq_free_mbufs()
2577 txhdr = uma_zalloc(vtnet_tx_header_zone, flags | M_ZERO); in vtnet_txq_encap()
2611 uma_zfree(vtnet_tx_header_zone, txhdr); in vtnet_txq_encap()
[all …]