Home
last modified time | relevance | path

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

/f-stack/dpdk/drivers/net/bnxt/
H A Drte_pmd_bnxt.c25 struct rte_pmd_bnxt_mb_event_param ret_param; in bnxt_rcv_msg_from_vf() local
27 ret_param.retval = RTE_PMD_BNXT_MB_EVENT_PROCEED; in bnxt_rcv_msg_from_vf()
28 ret_param.vf_id = vf_id; in bnxt_rcv_msg_from_vf()
29 ret_param.msg = msg; in bnxt_rcv_msg_from_vf()
32 &ret_param); in bnxt_rcv_msg_from_vf()
35 if (ret_param.retval == RTE_PMD_BNXT_MB_EVENT_PROCEED) in bnxt_rcv_msg_from_vf()
36 ret_param.retval = RTE_PMD_BNXT_MB_EVENT_NOOP_ACK; in bnxt_rcv_msg_from_vf()
38 return ret_param.retval == RTE_PMD_BNXT_MB_EVENT_NOOP_ACK ? in bnxt_rcv_msg_from_vf()
/f-stack/dpdk/drivers/net/txgbe/
H A Dtxgbe_pf.c771 struct rte_pmd_txgbe_mb_event_param ret_param; in txgbe_rcv_msg_from_vf() local
790 ret_param.retval = RTE_PMD_TXGBE_MB_EVENT_PROCEED; in txgbe_rcv_msg_from_vf()
791 ret_param.vfid = vf; in txgbe_rcv_msg_from_vf()
792 ret_param.msg_type = msgbuf[0] & 0xFFFF; in txgbe_rcv_msg_from_vf()
793 ret_param.msg = (void *)msgbuf; in txgbe_rcv_msg_from_vf()
803 &ret_param); in txgbe_rcv_msg_from_vf()
815 &ret_param); in txgbe_rcv_msg_from_vf()
817 retval = ret_param.retval; in txgbe_rcv_msg_from_vf()
/f-stack/dpdk/drivers/net/ixgbe/
H A Dixgbe_pf.c817 struct rte_pmd_ixgbe_mb_event_param ret_param; in ixgbe_rcv_msg_from_vf() local
836 ret_param.retval = RTE_PMD_IXGBE_MB_EVENT_PROCEED; in ixgbe_rcv_msg_from_vf()
837 ret_param.vfid = vf; in ixgbe_rcv_msg_from_vf()
838 ret_param.msg_type = msgbuf[0] & 0xFFFF; in ixgbe_rcv_msg_from_vf()
839 ret_param.msg = (void *)msgbuf; in ixgbe_rcv_msg_from_vf()
849 &ret_param); in ixgbe_rcv_msg_from_vf()
860 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_VF_MBOX, &ret_param); in ixgbe_rcv_msg_from_vf()
862 retval = ret_param.retval; in ixgbe_rcv_msg_from_vf()
/f-stack/dpdk/lib/librte_bbdev/
H A Drte_bbdev_pmd.h196 enum rte_bbdev_event_type event, void *ret_param);
H A Drte_bbdev.c82 void *ret_param; /* Return parameter */ member
1021 enum rte_bbdev_event_type event, void *ret_param) in rte_bbdev_pmd_callback_process() argument
1049 if (ret_param != NULL) in rte_bbdev_pmd_callback_process()
1050 dev_cb.ret_param = ret_param; in rte_bbdev_pmd_callback_process()
1054 dev_cb.cb_arg, dev_cb.ret_param); in rte_bbdev_pmd_callback_process()
H A Drte_bbdev.h748 void *ret_param);
/f-stack/dpdk/drivers/net/i40e/
H A Di40e_pf.c1299 struct rte_pmd_i40e_mb_event_param ret_param; in i40e_pf_host_handle_vf_msg() local
1352 ret_param.retval = RTE_PMD_I40E_MB_EVENT_PROCEED; in i40e_pf_host_handle_vf_msg()
1353 ret_param.vfid = vf_id; in i40e_pf_host_handle_vf_msg()
1354 ret_param.msg_type = opcode; in i40e_pf_host_handle_vf_msg()
1355 ret_param.msg = (void *)msg; in i40e_pf_host_handle_vf_msg()
1356 ret_param.msglen = msglen; in i40e_pf_host_handle_vf_msg()
1366 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_VF_MBOX, &ret_param); in i40e_pf_host_handle_vf_msg()
1367 if (ret_param.retval != RTE_PMD_I40E_MB_EVENT_PROCEED) { in i40e_pf_host_handle_vf_msg()
/f-stack/dpdk/examples/link_status_interrupt/
H A Dmain.c441 void *ret_param) in lsi_event_callback() argument
448 RTE_SET_USED(ret_param); in lsi_event_callback()
/f-stack/dpdk/drivers/net/bonding/
H A Deth_bond_private.h276 void *param, void *ret_param);
H A Drte_eth_bond_pmd.c2801 void *param, void *ret_param __rte_unused) in bond_ethdev_lsc_event_callback()
/f-stack/dpdk/app/test-bbdev/
H A Dtest_bbdev.c842 void *ret_param) in event_callback() argument
845 RTE_SET_USED(ret_param); in event_callback()
H A Dtest_bbdev_perf.c2571 void *ret_param) in dequeue_event_callback() argument
2577 uint16_t queue_id = *(uint16_t *) ret_param; in dequeue_event_callback()
/f-stack/dpdk/lib/librte_ethdev/
H A Drte_ethdev_driver.h1049 enum rte_eth_event_type event, void *ret_param);
H A Drte_ethdev.c182 void *ret_param; /**< Return parameter */ member
4425 enum rte_eth_event_type event, void *ret_param) in rte_eth_dev_callback_process() argument
4437 if (ret_param != NULL) in rte_eth_dev_callback_process()
4438 dev_cb.ret_param = ret_param; in rte_eth_dev_callback_process()
4442 dev_cb.cb_arg, dev_cb.ret_param); in rte_eth_dev_callback_process()
H A Drte_ethdev.h3472 enum rte_eth_event_type event, void *cb_arg, void *ret_param);
/f-stack/dpdk/app/test-pmd/
H A Dtestpmd.c528 void *param, void *ret_param);
3246 void *ret_param) in eth_event_callback() argument
3249 RTE_SET_USED(ret_param); in eth_event_callback()
/f-stack/dpdk/examples/ipsec-secgw/
H A Dipsec-secgw.c2453 void *param, void *ret_param) in inline_ipsec_event_callback() argument
2465 event_desc = ret_param; in inline_ipsec_event_callback()
/f-stack/dpdk/doc/guides/rel_notes/
H A Drelease_17_08.rst252 *ret_param`` has been added.
/f-stack/dpdk/app/test/
H A Dtest_link_bonding.c1192 void *ret_param __rte_unused) in test_bonding_lsc_event_callback()