Home
last modified time | relevance | path

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

/freebsd-14.2/sys/dev/virtio/network/
H A Dif_vtnet.c313 static uma_zone_t vtnet_tx_header_zone; variable
386 vtnet_tx_header_zone = uma_zcreate("vtnet_tx_hdr", in vtnet_modevent()
396 uma_zone_reserve(vtnet_tx_header_zone, DEBUGNET_MAX_IN_FLIGHT * 2); in vtnet_modevent()
397 uma_prealloc(vtnet_tx_header_zone, DEBUGNET_MAX_IN_FLIGHT * 2); in vtnet_modevent()
402 if (uma_zone_get_cur(vtnet_tx_header_zone) > 0) in vtnet_modevent()
407 uma_zdestroy(vtnet_tx_header_zone); in vtnet_modevent()
408 vtnet_tx_header_zone = NULL; in vtnet_modevent()
2358 uma_zfree(vtnet_tx_header_zone, txhdr); in vtnet_txq_free_mbufs()
2587 txhdr = uma_zalloc(vtnet_tx_header_zone, flags | M_ZERO); in vtnet_txq_encap()
2621 uma_zfree(vtnet_tx_header_zone, txhdr); in vtnet_txq_encap()
[all …]