| /dpdk/drivers/net/ngbe/ |
| H A D | ngbe_pf.c | 630 struct ngbe_mb_event_param ret_param; in ngbe_rcv_msg_from_vf() local 649 ret_param.retval = NGBE_MB_EVENT_PROCEED; in ngbe_rcv_msg_from_vf() 650 ret_param.vfid = vf; in ngbe_rcv_msg_from_vf() 651 ret_param.msg_type = msgbuf[0] & 0xFFFF; in ngbe_rcv_msg_from_vf() 652 ret_param.msg = (void *)msgbuf; in ngbe_rcv_msg_from_vf() 662 &ret_param); in ngbe_rcv_msg_from_vf() 674 &ret_param); in ngbe_rcv_msg_from_vf() 676 retval = ret_param.retval; in ngbe_rcv_msg_from_vf()
|
| /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()
|
| /dpdk/drivers/net/txgbe/ |
| H A D | txgbe_pf.c | 770 struct rte_pmd_txgbe_mb_event_param ret_param; in txgbe_rcv_msg_from_vf() local 789 ret_param.retval = RTE_PMD_TXGBE_MB_EVENT_PROCEED; in txgbe_rcv_msg_from_vf() 790 ret_param.vfid = vf; in txgbe_rcv_msg_from_vf() 791 ret_param.msg_type = msgbuf[0] & 0xFFFF; in txgbe_rcv_msg_from_vf() 792 ret_param.msg = (void *)msgbuf; in txgbe_rcv_msg_from_vf() 802 &ret_param); in txgbe_rcv_msg_from_vf() 814 &ret_param); in txgbe_rcv_msg_from_vf() 816 retval = ret_param.retval; in txgbe_rcv_msg_from_vf()
|
| /dpdk/drivers/net/ixgbe/ |
| H A D | ixgbe_pf.c | 834 struct rte_pmd_ixgbe_mb_event_param ret_param; in ixgbe_rcv_msg_from_vf() local 853 ret_param.retval = RTE_PMD_IXGBE_MB_EVENT_PROCEED; in ixgbe_rcv_msg_from_vf() 854 ret_param.vfid = vf; in ixgbe_rcv_msg_from_vf() 855 ret_param.msg_type = msgbuf[0] & 0xFFFF; in ixgbe_rcv_msg_from_vf() 856 ret_param.msg = (void *)msgbuf; in ixgbe_rcv_msg_from_vf() 866 &ret_param); in ixgbe_rcv_msg_from_vf() 877 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_VF_MBOX, &ret_param); in ixgbe_rcv_msg_from_vf() 879 retval = ret_param.retval; in ixgbe_rcv_msg_from_vf()
|
| /dpdk/lib/ethdev/ |
| H A D | ethdev_driver.c | 170 enum rte_eth_event_type event, void *ret_param) in rte_eth_dev_callback_process() argument 182 if (ret_param != NULL) in rte_eth_dev_callback_process() 183 dev_cb.ret_param = ret_param; in rte_eth_dev_callback_process() 187 dev_cb.cb_arg, dev_cb.ret_param); in rte_eth_dev_callback_process()
|
| H A D | ethdev_private.h | 33 void *ret_param; /**< Return parameter */ member
|
| H A D | ethdev_driver.h | 1408 enum rte_eth_event_type event, void *ret_param);
|
| H A D | rte_ethdev.h | 3881 enum rte_eth_event_type event, void *cb_arg, void *ret_param);
|
| /dpdk/lib/bbdev/ |
| H A D | rte_bbdev.c | 78 void *ret_param; /* Return parameter */ member 1018 enum rte_bbdev_event_type event, void *ret_param) in rte_bbdev_pmd_callback_process() argument 1046 if (ret_param != NULL) in rte_bbdev_pmd_callback_process() 1047 dev_cb.ret_param = ret_param; in rte_bbdev_pmd_callback_process() 1051 dev_cb.cb_arg, dev_cb.ret_param); in rte_bbdev_pmd_callback_process()
|
| H A D | rte_bbdev_pmd.h | 189 enum rte_bbdev_event_type event, void *ret_param);
|
| H A D | rte_bbdev.h | 721 void *ret_param);
|
| /dpdk/drivers/net/i40e/ |
| H A D | i40e_pf.c | 1356 struct rte_pmd_i40e_mb_event_param ret_param; in i40e_pf_host_handle_vf_msg() local 1409 ret_param.retval = RTE_PMD_I40E_MB_EVENT_PROCEED; in i40e_pf_host_handle_vf_msg() 1410 ret_param.vfid = vf_id; in i40e_pf_host_handle_vf_msg() 1411 ret_param.msg_type = opcode; in i40e_pf_host_handle_vf_msg() 1412 ret_param.msg = (void *)msg; in i40e_pf_host_handle_vf_msg() 1413 ret_param.msglen = msglen; in i40e_pf_host_handle_vf_msg() 1423 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_VF_MBOX, &ret_param); in i40e_pf_host_handle_vf_msg() 1424 if (ret_param.retval != RTE_PMD_I40E_MB_EVENT_PROCEED) { in i40e_pf_host_handle_vf_msg()
|
| /dpdk/examples/link_status_interrupt/ |
| H A D | main.c | 448 void *ret_param) in lsi_event_callback() argument 455 RTE_SET_USED(ret_param); in lsi_event_callback()
|
| /dpdk/drivers/net/bonding/ |
| H A D | eth_bond_private.h | 280 void *param, void *ret_param);
|
| H A D | rte_eth_bond_pmd.c | 2906 void *param, void *ret_param __rte_unused) in bond_ethdev_lsc_event_callback()
|
| /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 | 2617 void *ret_param) in dequeue_event_callback() argument 2623 uint16_t queue_id = *(uint16_t *) ret_param; in dequeue_event_callback()
|
| /dpdk/app/test-pmd/ |
| H A D | testpmd.c | 639 void *param, void *ret_param); 3552 void *ret_param) in eth_event_callback() argument 3555 RTE_SET_USED(ret_param); in eth_event_callback()
|
| /dpdk/examples/ipsec-secgw/ |
| H A D | ipsec-secgw.c | 2594 void *param, void *ret_param) in inline_ipsec_event_callback() argument 2606 event_desc = ret_param; in inline_ipsec_event_callback() 2627 void *param __rte_unused, void *ret_param __rte_unused) in ethdev_reset_event_callback()
|
| /dpdk/doc/guides/rel_notes/ |
| H A D | release_17_08.rst | 194 *ret_param`` has been added.
|
| /dpdk/app/test/ |
| H A D | test_link_bonding.c | 1195 void *ret_param __rte_unused) in test_bonding_lsc_event_callback()
|