| /freebsd-13-stable/sys/netlink/ |
| HD | netlink_io.c | 167 if (queue_empty(&nlp->tx_queue)) in tx_check_locked() 180 struct mbuf *m = queue_head(&nlp->tx_queue); in tx_check_locked() 183 queue_pop(&nlp->tx_queue); in tx_check_locked() 194 return (queue_empty(&nlp->tx_queue)); in tx_check_locked() 231 int prev_hiwat = nlp->tx_queue.hiwat; in nl_process_received_one() 244 if (nlp->tx_queue.hiwat > prev_hiwat) { in nl_process_received_one() 245 NLP_LOG(LOG_DEBUG, nlp, "TX override peaked to %d", nlp->tx_queue.hiwat); in nl_process_received_one() 265 STAILQ_INIT(&nlp->tx_queue.head); in nl_init_io() 272 queue_free(&nlp->tx_queue); in nl_free_io() 315 queue_push(&nlp->tx_queue, m); in queue_push_tx() [all …]
|
| HD | netlink_var.h | 65 struct nl_io_queue tx_queue; member
|
| /freebsd-13-stable/sys/dev/qlnx/qlnxe/ |
| HD | ecore_ll2.c | 51 #define ECORE_LL2_TX_REGISTERED(ll2) ((ll2)->tx_queue.b_cb_registred) 131 p_pkt = &p_ll2_conn->tx_queue.cur_completing_packet; in ecore_ll2_get_fragment_of_tx_packet() 133 if (!p_ll2_conn->tx_queue.b_completing_packet || !p_addr) in ecore_ll2_get_fragment_of_tx_packet() 136 if (p_ll2_conn->tx_queue.cur_completing_bd_idx == p_pkt->bd_used) in ecore_ll2_get_fragment_of_tx_packet() 140 cur_frag_idx = p_ll2_conn->tx_queue.cur_completing_bd_idx++; in ecore_ll2_get_fragment_of_tx_packet() 144 p_ll2_conn->tx_queue.cur_completing_bd_idx; in ecore_ll2_get_fragment_of_tx_packet() 164 p_tx = &p_ll2_conn->tx_queue; in ecore_ll2_txq_flush() 213 struct ecore_ll2_tx_queue *p_tx = &p_ll2_conn->tx_queue; in ecore_ll2_txq_completion() 767 struct ecore_ll2_tx_queue *p_tx = &p_ll2_conn->tx_queue; in ecore_ll2_lb_txq_completion() 896 struct ecore_ll2_tx_queue *p_tx = &p_ll2_conn->tx_queue; in ecore_sp_ll2_tx_queue_start() [all …]
|
| HD | ecore_ll2.h | 124 struct ecore_ll2_tx_queue tx_queue; member
|
| /freebsd-13-stable/sys/contrib/dev/rtw88/ |
| HD | usb.c | 365 for (i = ARRAY_SIZE(rtwusb->tx_queue) - 1; i >= 0; i--) { in rtw_usb_tx_handler() 367 struct sk_buff_head *list = &rtwusb->tx_queue[i]; in rtw_usb_tx_handler() 379 for (i = 0; i < ARRAY_SIZE(rtwusb->tx_queue); i++) in rtw_usb_tx_queue_purge() 380 skb_queue_purge(&rtwusb->tx_queue[i]); in rtw_usb_tx_queue_purge() 485 skb_queue_tail(&rtwusb->tx_queue[ep], skb); in rtw_usb_tx_write() 748 for (i = 0; i < ARRAY_SIZE(rtwusb->tx_queue); i++) in rtw_usb_init_tx() 749 skb_queue_head_init(&rtwusb->tx_queue[i]); in rtw_usb_init_tx()
|
| HD | sdio.c | 747 if (skb_queue_len(&rtwsdio->tx_queue[queue])) { in rtw_sdio_deep_ps_enter() 903 skb_queue_tail(&rtwsdio->tx_queue[queue], skb); in rtw_sdio_tx_write() 1196 skb = skb_dequeue(&rtwsdio->tx_queue[queue]); in rtw_sdio_process_tx_queue() 1202 skb_queue_head(&rtwsdio->tx_queue[queue], skb); in rtw_sdio_process_tx_queue() 1230 if (skb_queue_empty(&rtwsdio->tx_queue[queue])) in rtw_sdio_tx_handler() 1256 skb_queue_head_init(&rtwsdio->tx_queue[i]); in rtw_sdio_init_tx() 1278 skb_queue_purge(&rtwsdio->tx_queue[i]); in rtw_sdio_deinit_tx()
|
| HD | usb.h | 79 struct sk_buff_head tx_queue[RTW_USB_EP_MAX]; member
|
| HD | sdio.h | 161 struct sk_buff_head tx_queue[RTK_MAX_TX_QUEUE_NUM]; member
|
| /freebsd-13-stable/sys/arm64/broadcom/genet/ |
| HD | if_genet.c | 149 struct tx_queue { struct 193 struct tx_queue tx_queue[NTXQUEUE]; member 223 static void gen_txintr(struct gen_softc *sc, struct tx_queue *q); 695 struct tx_queue *q; in gen_init_txring() 698 q = &sc->tx_queue[queue]; in gen_init_txring() 796 sc->tx_queue[i].queue = i; in gen_init_txrings() 806 sc->tx_queue[DEF_TXQUEUE].hwindex = GENET_DMA_DEFAULT_QUEUE; in gen_init_txrings() 1067 struct tx_queue *q; in gen_encap() 1072 q = &sc->tx_queue[DEF_TXQUEUE]; in gen_encap() 1325 gen_txintr(sc, &sc->tx_queue[DEF_TXQUEUE]); in gen_intr() [all …]
|
| /freebsd-13-stable/sys/ofed/drivers/infiniband/ulp/sdp/ |
| HD | sdp_proc.c | 129 __u32 rx_queue, tx_queue; in sdp_seq_show() local 147 tx_queue = sdp_sk(sk)->write_seq - sdp_sk(sk)->tx_ring.una_seq; in sdp_seq_show() 151 rx_queue, tx_queue, sk->sk_state); in sdp_seq_show()
|
| /freebsd-13-stable/contrib/wpa/src/ap/ |
| HD | ap_config.c | 250 conf->tx_queue[0] = txq_vo; in hostapd_config_defaults() 251 conf->tx_queue[1] = txq_vi; in hostapd_config_defaults() 252 conf->tx_queue[2] = txq_be; in hostapd_config_defaults() 253 conf->tx_queue[3] = txq_bk; in hostapd_config_defaults() 1511 int tx_cwmin = conf->tx_queue[queue].cwmin; in hostapd_config_check_cw() 1512 int tx_cwmax = conf->tx_queue[queue].cwmax; in hostapd_config_check_cw()
|
| HD | ap_config.h | 1098 struct hostapd_tx_queue_params tx_queue[NUM_TX_QUEUES]; member
|
| HD | hostapd.c | 1740 p = &iface->conf->tx_queue[i]; in hostapd_tx_queue_params()
|
| /freebsd-13-stable/sys/dev/ce/ |
| HD | ceddk.h | 72 TAU32_UserRequest *tx_queue; member
|
| HD | ceddk.c | 301 CE_ENQUEUE (c->tx_queue, req); in ce_on_transmit() 329 CE_DEQUEUE (c->tx_queue, req); in ce_send_packet() 347 CE_ENQUEUE_HEAD (c->tx_queue, req); in ce_send_packet() 538 c->tx_queue = NULL; in ce_start_chan() 554 CE_ENQUEUE (c->tx_queue, &c->tx_item[i].req); in ce_start_chan()
|
| HD | if_ce.c | 841 ce_buf_item_t *item = (ce_buf_item_t*)d->chan->tx_queue; in ce_send()
|
| /freebsd-13-stable/usr.sbin/bhyve/ |
| HD | pci_virtio_console.c | 232 pci_vtcon_port_to_vq(struct pci_vtcon_port *port, bool tx_queue) in pci_vtcon_port_to_vq() argument 236 qnum = tx_queue ? port->vsp_txq : port->vsp_rxq; in pci_vtcon_port_to_vq()
|
| /freebsd-13-stable/contrib/wpa/wpa_supplicant/ |
| HD | config.h | 1163 struct hostapd_tx_queue_params tx_queue[4]; member
|
| HD | ap.c | 1086 os_memcpy(wpa_s->ap_iface->conf->tx_queue, wpa_s->conf->tx_queue, in wpa_supplicant_create_ap() 1087 sizeof(wpa_s->conf->tx_queue)); in wpa_supplicant_create_ap()
|
| HD | config.c | 4677 config->tx_queue[0] = txq_vo; in wpa_config_alloc_empty() 4678 config->tx_queue[1] = txq_vi; in wpa_config_alloc_empty() 4679 config->tx_queue[2] = txq_be; in wpa_config_alloc_empty() 4680 config->tx_queue[3] = txq_bk; in wpa_config_alloc_empty() 5723 if (hostapd_config_tx_queue(config->tx_queue, pos, in wpa_config_process_global()
|
| /freebsd-13-stable/sys/contrib/dev/iwlwifi/fw/api/ |
| HD | tx.h | 598 __le16 tx_queue; member
|
| /freebsd-13-stable/contrib/wpa/src/common/ |
| HD | ieee802_11_common.c | 1301 int hostapd_config_tx_queue(struct hostapd_tx_queue_params tx_queue[], in hostapd_config_tx_queue() argument 1329 queue = &tx_queue[num]; in hostapd_config_tx_queue()
|
| /freebsd-13-stable/sys/contrib/dev/iwlwifi/mvm/ |
| HD | tx.c | 1603 txq_id = le16_to_cpu(tx_resp->tx_queue); in iwl_mvm_rx_tx_cmd_single()
|
| /freebsd-13-stable/sys/contrib/dev/iwlwifi/pcie/ |
| HD | trans.c | 3079 DEBUGFS_ADD_FILE(tx_queue, dir, 0400); in iwl_trans_pcie_dbgfs_register()
|
| /freebsd-13-stable/sys/dev/bnxt/ |
| HD | hsi_struct_def.h | 56519 uint8_t tx_queue; member 56667 uint8_t tx_queue; member 57058 uint8_t tx_queue; member 57256 uint8_t tx_queue; member
|