Home
last modified time | relevance | path

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

/linux/drivers/net/wireless/ath/ath10k/
H A Dhtt.h1926 const struct ath10k_htt_tx_ops *tx_ops; member
1951 if (!htt->tx_ops->htt_send_rx_ring_cfg) in ath10k_htt_send_rx_ring_cfg()
1954 return htt->tx_ops->htt_send_rx_ring_cfg(htt); in ath10k_htt_send_rx_ring_cfg()
1959 if (!htt->tx_ops->htt_send_frag_desc_bank_cfg) in ath10k_htt_send_frag_desc_bank_cfg()
1962 return htt->tx_ops->htt_send_frag_desc_bank_cfg(htt); in ath10k_htt_send_frag_desc_bank_cfg()
1967 if (!htt->tx_ops->htt_alloc_frag_desc) in ath10k_htt_alloc_frag_desc()
1970 return htt->tx_ops->htt_alloc_frag_desc(htt); in ath10k_htt_alloc_frag_desc()
1975 if (htt->tx_ops->htt_free_frag_desc) in ath10k_htt_free_frag_desc()
1976 htt->tx_ops->htt_free_frag_desc(htt); in ath10k_htt_free_frag_desc()
1983 return htt->tx_ops in ath10k_htt_tx()
[all...]
H A Dhtt_tx.c1837 htt->tx_ops = &htt_tx_ops_hl; in ath10k_htt_set_tx_ops()
1839 htt->tx_ops = &htt_tx_ops_64; in ath10k_htt_set_tx_ops()
1841 htt->tx_ops = &htt_tx_ops_32; in ath10k_htt_set_tx_ops()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dip_check_defrag.c165 struct network_helper_opts tx_ops = { in test_bpf_ip_check_defrag_ok() local
202 client_tx_fd = client_socket(family, SOCK_RAW, &tx_ops); in test_bpf_ip_check_defrag_ok()
/linux/net/can/
H A Dbcm.c135 struct list_head tx_ops; member
259 list_for_each_entry(op, &bo->tx_ops, list) { in bcm_proc_show()
944 op = bcm_find_op(&bo->tx_ops, msg_head, ifindex); in bcm_tx_setup()
1053 /* tx_ops never compare with previous received messages */ in bcm_tx_setup()
1064 /* currently unused in tx_ops */ in bcm_tx_setup()
1068 /* add this bcm_op to the list of the tx_ops */ in bcm_tx_setup()
1069 list_add(&op->list, &bo->tx_ops); in bcm_tx_setup()
1071 } /* if ((op = bcm_find_op(&bo->tx_ops, msg_head->can_id, ifindex))) */ in bcm_tx_setup()
1431 if (bcm_delete_tx_op(&bo->tx_ops, &msg_head, ifindex)) in bcm_sendmsg()
1447 ret = bcm_read_op(&bo->tx_ops, in bcm_sendmsg()
[all...]
/linux/drivers/net/can/m_can/
H A Dm_can.c512 if (cdev->tx_ops) { in m_can_clean()
514 if (!cdev->tx_ops[i].skb) in m_can_clean()
518 cdev->tx_ops[i].skb = NULL; in m_can_clean()
1966 cdev->tx_ops[cdev->next_tx_op].skb = skb; in m_can_tx_queue_skb()
1967 cdev->tx_ops[cdev->next_tx_op].submit = submit; in m_can_tx_queue_skb()
1968 queue_work(cdev->tx_wq, &cdev->tx_ops[cdev->next_tx_op].work); in m_can_tx_queue_skb()
2083 cdev->tx_ops[i].cdev = cdev; in m_can_open()
2084 INIT_WORK(&cdev->tx_ops[i].work, m_can_tx_work_queue); in m_can_open()
2401 cdev->tx_ops = in m_can_class_register()
2403 cdev->tx_fifo_size * sizeof(*cdev->tx_ops), in m_can_class_register()
[all...]
H A Dm_can.h120 struct m_can_tx_op *tx_ops; member