Home
last modified time | relevance | path

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

/freebsd/sys/dev/virtio/network/
H A Dif_vtnet.c323 static uma_zone_t vtnet_tx_header_zone; variable
396 vtnet_tx_header_zone = uma_zcreate("vtnet_tx_hdr", in vtnet_modevent()
406 uma_zone_reserve(vtnet_tx_header_zone, DEBUGNET_MAX_IN_FLIGHT * 2); in vtnet_modevent()
407 uma_prealloc(vtnet_tx_header_zone, DEBUGNET_MAX_IN_FLIGHT * 2); in vtnet_modevent()
412 if (uma_zone_get_cur(vtnet_tx_header_zone) > 0) in vtnet_modevent()
417 uma_zdestroy(vtnet_tx_header_zone); in vtnet_modevent()
418 vtnet_tx_header_zone = NULL; in vtnet_modevent()
2346 uma_zfree(vtnet_tx_header_zone, txhdr); in vtnet_txq_free_mbufs()
2576 txhdr = uma_zalloc(vtnet_tx_header_zone, flags | M_ZERO); in vtnet_txq_encap()
2610 uma_zfree(vtnet_tx_header_zone, txhdr); in vtnet_txq_encap()
[all …]