You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which is supported only when the pf and vf is ixgbe, i40e or bnxt device. But what I am using is qdma device (i.e: device name of the VF is "qdma_vf" ).
The below is the one of the driver function for setting mac address
In qdma driver I can only fetch the function id of the VF on the vfinfo.
struct qdma_vf_info {
uint16_t func_id;
};
Can you tell me how to access the mac address and received packets of the qdma_vf device(VF) through the physical function(PF) on QDMA-DPDK testpmd application.
This issue is causing a major disruption in our production environment. Could you please consider labeling it as high priority?
Thank you in advance
The text was updated successfully, but these errors were encountered:
Hi team,
I am trying to do port representor testing on QDMA-DPDK using the openNIC design project.
github link for the openNIC design project
For that I need to test changing the mac address of the PF and VF (from the PF).
For setting MAC of PF I use this command
testpmd> mac_addr set <port id> <XX:XX:XX:XX:XX:XX>
I was able to do that by writing a function which is given below
For setting MAC of VF I use this command
testpmd> set vf mac addr <port id> <vf id> <XX:XX:XX:XX:XX:XX>
I hope the below funciton is called.
Which is supported only when the pf and vf is ixgbe, i40e or bnxt device. But what I am using is qdma device (i.e: device name of the VF is "qdma_vf" ).
The below is the one of the driver function for setting mac address
As you can see the dev->data->private member was casted by the ixgbe driver preference to fetch the VF's info.
Structure of ixgbe_vf_info
In qdma driver I can only fetch the function id of the VF on the vfinfo.
Can you tell me how to access the mac address and received packets of the qdma_vf device(VF) through the physical function(PF) on QDMA-DPDK testpmd application.
This issue is causing a major disruption in our production environment. Could you please consider labeling it as high priority?
Thank you in advance
The text was updated successfully, but these errors were encountered: