| /f-stack/dpdk/drivers/net/bnxt/ |
| H A D | rte_pmd_bnxt.c | 25 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 D | txgbe_pf.c | 771 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 D | ixgbe_pf.c | 817 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 D | rte_bbdev_pmd.h | 196 enum rte_bbdev_event_type event, void *ret_param);
|
| H A D | rte_bbdev.c | 82 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 D | rte_bbdev.h | 748 void *ret_param);
|
| /f-stack/dpdk/drivers/net/i40e/ |
| H A D | i40e_pf.c | 1299 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 D | main.c | 441 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 D | eth_bond_private.h | 276 void *param, void *ret_param);
|
| H A D | rte_eth_bond_pmd.c | 2801 void *param, void *ret_param __rte_unused) in bond_ethdev_lsc_event_callback()
|
| /f-stack/dpdk/app/test-bbdev/ |
| H A D | test_bbdev.c | 842 void *ret_param) in event_callback() argument 845 RTE_SET_USED(ret_param); in event_callback()
|
| H A D | test_bbdev_perf.c | 2571 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 D | rte_ethdev_driver.h | 1049 enum rte_eth_event_type event, void *ret_param);
|
| H A D | rte_ethdev.c | 182 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 D | rte_ethdev.h | 3472 enum rte_eth_event_type event, void *cb_arg, void *ret_param);
|
| /f-stack/dpdk/app/test-pmd/ |
| H A D | testpmd.c | 528 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 D | ipsec-secgw.c | 2453 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 D | release_17_08.rst | 252 *ret_param`` has been added.
|
| /f-stack/dpdk/app/test/ |
| H A D | test_link_bonding.c | 1192 void *ret_param __rte_unused) in test_bonding_lsc_event_callback()
|