Searched refs:tx_ops (Results 1 – 6 of 6) sorted by relevance
/linux/drivers/net/wireless/ath/ath10k/ |
H A D | htt.h | 1926 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->htt_tx(htt, txmode, msdu); in ath10k_htt_tx() [all …]
|
H A D | htt_tx.c | 1835 htt->tx_ops = &htt_tx_ops_hl; in ath10k_htt_set_tx_ops() 1837 htt->tx_ops = &htt_tx_ops_64; in ath10k_htt_set_tx_ops() 1839 htt->tx_ops = &htt_tx_ops_32; in ath10k_htt_set_tx_ops()
|
/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | ip_check_defrag.c | 165 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 D | bcm.c | 133 struct list_head tx_ops; member 255 list_for_each_entry(op, &bo->tx_ops, list) { in bcm_proc_show() 923 op = bcm_find_op(&bo->tx_ops, msg_head, ifindex); in bcm_tx_setup() 1023 list_add(&op->list, &bo->tx_ops); in bcm_tx_setup() 1405 if (bcm_delete_tx_op(&bo->tx_ops, &msg_head, ifindex)) in bcm_sendmsg() 1421 ret = bcm_read_op(&bo->tx_ops, &msg_head, ifindex); in bcm_sendmsg() 1537 INIT_LIST_HEAD(&bo->tx_ops); in bcm_init() 1583 list_for_each_entry_safe(op, next, &bo->tx_ops, list) in bcm_release()
|
/linux/drivers/net/can/m_can/ |
H A D | m_can.c | 512 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() 2400 cdev->tx_ops = in m_can_class_register() 2402 cdev->tx_fifo_size * sizeof(*cdev->tx_ops), in m_can_class_register() [all …]
|
H A D | m_can.h | 120 struct m_can_tx_op *tx_ops; member
|