common/iavf: replace macro for MAC address length

Replace ETH_ALEN with VIRTCHNL_ETH_LENGTH_OF_ADDRESS to keep consistent.

Signed-off-by: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
Acked-by: Beilei Xing <beilei.xing@intel.com>
This commit is contained in:
Qi Zhang 2020-10-15 08:43:23 +08:00 committed by Ferruh Yigit
parent 05292bf931
commit 9c43dd22c4

View File

@ -624,8 +624,8 @@ VIRTCHNL_CHECK_STRUCT_LEN(24, virtchnl_tc_info);
*/ */
struct virtchnl_l4_spec { struct virtchnl_l4_spec {
u8 src_mac[ETH_ALEN]; u8 src_mac[VIRTCHNL_ETH_LENGTH_OF_ADDRESS];
u8 dst_mac[ETH_ALEN]; u8 dst_mac[VIRTCHNL_ETH_LENGTH_OF_ADDRESS];
/* vlan_prio is part of this 16 bit field even from OS perspective /* vlan_prio is part of this 16 bit field even from OS perspective
* vlan_id:12 is actual vlan_id, then vlanid:bit14..12 is vlan_prio * vlan_id:12 is actual vlan_id, then vlanid:bit14..12 is vlan_prio
* in future, when decided to offload vlan_prio, pass that information * in future, when decided to offload vlan_prio, pass that information