Home
last modified time | relevance | path

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

/freebsd/sys/dev/vmware/vmxnet3/
H A Dif_vmx.c723 txq = &sc->vmx_txq[i]; in vmxnet3_set_interrupt_idx()
763 txq = &sc->vmx_txq[q]; in vmxnet3_init_txq()
789 sc->vmx_txq = malloc(sizeof(struct vmxnet3_txqueue) * in vmxnet3_tx_queues_alloc()
791 if (sc->vmx_txq == NULL) in vmxnet3_tx_queues_alloc()
812 sc->vmx_txq[q].vxtxq_ts = (struct vmxnet3_txq_shared *) kva; in vmxnet3_tx_queues_alloc()
822 txq = &sc->vmx_txq[q]; in vmxnet3_tx_queues_alloc()
960 if (sc->vmx_txq != NULL) { in vmxnet3_queues_free()
961 free(sc->vmx_txq, M_DEVBUF); in vmxnet3_queues_free()
962 sc->vmx_txq = NULL; in vmxnet3_queues_free()
1114 txq = &sc->vmx_txq[i]; in vmxnet3_init_shared_data()
[all …]
H A Dif_vmxvar.h123 struct vmxnet3_txqueue *vmx_txq; member