Home
last modified time | relevance | path

Searched refs:msglen (Results 1 – 15 of 15) sorted by relevance

/dpdk/drivers/net/i40e/
H A Di40e_pf.c252 uint16_t msglen) in i40e_pf_host_send_msg_to_vf() argument
259 msg, msglen, NULL); in i40e_pf_host_send_msg_to_vf()
503 uint16_t msglen, in i40e_pf_host_process_cmd_config_vsi_queues() argument
812 uint16_t msglen, in i40e_pf_host_process_cmd_disable_queues() argument
844 uint16_t msglen, in i40e_pf_host_process_cmd_add_ether_address() argument
891 uint16_t msglen, in i40e_pf_host_process_cmd_del_ether_address() argument
973 uint16_t msglen, in i40e_pf_host_process_cmd_del_vlan() argument
1014 uint16_t msglen, in i40e_pf_host_process_cmd_config_promisc_mode() argument
1349 uint16_t msglen) in i40e_pf_host_handle_vf_msg() argument
1413 ret_param.msglen = msglen; in i40e_pf_host_handle_vf_msg()
[all …]
H A Di40e_pf.h34 uint8_t *msg, uint16_t msglen);
H A Drte_pmd_i40e.h43 uint16_t msglen; /**< length of the message */ member
H A Di40e_ethdev.h1347 uint16_t msglen);
/dpdk/drivers/net/i40e/base/
H A Dvirtchnl.h658 u8 *msg, u16 msglen) in virtchnl_vc_validate_vf_msg() argument
682 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
694 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
710 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
722 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
742 if (msglen) in virtchnl_vc_validate_vf_msg()
743 valid_len = msglen; in virtchnl_vc_validate_vf_msg()
751 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
765 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
773 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
[all …]
H A Di40e_common.c3554 if (msglen) { in i40e_aq_send_msg_to_vf()
3557 if (msglen > I40E_AQ_LARGE_BUF) in i40e_aq_send_msg_to_vf()
3559 desc.datalen = CPU_TO_LE16(msglen); in i40e_aq_send_msg_to_vf()
7709 u8 *msg, u16 msglen, in i40e_aq_send_msg_to_pf() argument
7720 if (msglen) { in i40e_aq_send_msg_to_pf()
7723 if (msglen > I40E_AQ_LARGE_BUF) in i40e_aq_send_msg_to_pf()
7733 msglen, cmd_details); in i40e_aq_send_msg_to_pf()
8147 u16 msglen; in i40e_ddp_exec_aq_section() local
8154 msglen = aq->datalen; in i40e_ddp_exec_aq_section()
8155 if (msglen) { in i40e_ddp_exec_aq_section()
[all …]
H A Di40e_prototype.h227 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
562 u8 *msg, u16 msglen,
/dpdk/drivers/common/iavf/
H A Dvirtchnl.h2109 u8 *msg, u16 msglen) in virtchnl_vc_validate_vf_msg() argument
2133 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2150 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2173 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2190 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2211 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2225 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2250 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
2278 valid_len = msglen; in virtchnl_vc_validate_vf_msg()
2286 if (msglen >= valid_len) { in virtchnl_vc_validate_vf_msg()
[all …]
H A Diavf_prototype.h91 u8 *msg, u16 msglen,
H A Diavf_common.c928 u8 *msg, u16 msglen, in iavf_aq_send_msg_to_pf() argument
939 if (msglen) { in iavf_aq_send_msg_to_pf()
942 if (msglen > IAVF_AQ_LARGE_BUF) in iavf_aq_send_msg_to_pf()
944 desc.datalen = CPU_TO_LE16(msglen); in iavf_aq_send_msg_to_pf()
952 msglen, cmd_details); in iavf_aq_send_msg_to_pf()
/dpdk/drivers/net/ice/
H A Dice_dcf_ethdev.h69 uint8_t *msg, uint16_t msglen);
H A Dice_dcf_parent.c227 uint8_t *msg, uint16_t msglen) in ice_dcf_handle_pf_event_msg() argument
234 if (msglen < sizeof(struct virtchnl_pf_event)) { in ice_dcf_handle_pf_event_msg()
235 PMD_DRV_LOG(DEBUG, "Invalid event message length : %u", msglen); in ice_dcf_handle_pf_event_msg()
H A Dice_dcf.h106 uint8_t *msg, uint16_t msglen);
/dpdk/lib/eal/common/
H A Deal_common_proc.c265 int msglen; in read_msg() local
284 msglen = recvmsg(mp_fd, &msgh, 0); in read_msg()
287 if (msglen == 0) in read_msg()
290 if (msglen < 0) { in read_msg()
298 if (msglen != buflen || (msgh.msg_flags & (MSG_TRUNC | MSG_CTRUNC))) { in read_msg()
321 return msglen; in read_msg()
/dpdk/drivers/net/iavf/
H A Diavf_vchnl.c260 uint16_t msglen) in iavf_handle_pf_event_msg() argument
268 if (msglen < sizeof(struct virtchnl_pf_event)) { in iavf_handle_pf_event_msg()