mirror of https://gitee.com/openkylin/linux.git
i40e/i40evf: Explicitly assign enum index for VSI type
Ran into an issue where PF's VSI type list was different from VF's, which was resulted in different enum index. The VSI type list can be different depending on what build flag is used for PF and VF. The change is to explicitly assign enum index for each VSI type so that PF and VF always reference to the same VSI type event if the enum lists are different. Change-ID: I8c0e5fdb515f324f7964df863a458073cf467e57 Signed-off-by: Serey Kong <serey.kong@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
9ac7726637
commit
66486cd717
|
@ -160,14 +160,14 @@ enum i40e_set_fc_aq_failures {
|
|||
};
|
||||
|
||||
enum i40e_vsi_type {
|
||||
I40E_VSI_MAIN = 0,
|
||||
I40E_VSI_VMDQ1,
|
||||
I40E_VSI_VMDQ2,
|
||||
I40E_VSI_CTRL,
|
||||
I40E_VSI_FCOE,
|
||||
I40E_VSI_MIRROR,
|
||||
I40E_VSI_SRIOV,
|
||||
I40E_VSI_FDIR,
|
||||
I40E_VSI_MAIN = 0,
|
||||
I40E_VSI_VMDQ1 = 1,
|
||||
I40E_VSI_VMDQ2 = 2,
|
||||
I40E_VSI_CTRL = 3,
|
||||
I40E_VSI_FCOE = 4,
|
||||
I40E_VSI_MIRROR = 5,
|
||||
I40E_VSI_SRIOV = 6,
|
||||
I40E_VSI_FDIR = 7,
|
||||
I40E_VSI_TYPE_UNKNOWN
|
||||
};
|
||||
|
||||
|
|
|
@ -160,14 +160,14 @@ enum i40e_set_fc_aq_failures {
|
|||
};
|
||||
|
||||
enum i40e_vsi_type {
|
||||
I40E_VSI_MAIN = 0,
|
||||
I40E_VSI_VMDQ1,
|
||||
I40E_VSI_VMDQ2,
|
||||
I40E_VSI_CTRL,
|
||||
I40E_VSI_FCOE,
|
||||
I40E_VSI_MIRROR,
|
||||
I40E_VSI_SRIOV,
|
||||
I40E_VSI_FDIR,
|
||||
I40E_VSI_MAIN = 0,
|
||||
I40E_VSI_VMDQ1 = 1,
|
||||
I40E_VSI_VMDQ2 = 2,
|
||||
I40E_VSI_CTRL = 3,
|
||||
I40E_VSI_FCOE = 4,
|
||||
I40E_VSI_MIRROR = 5,
|
||||
I40E_VSI_SRIOV = 6,
|
||||
I40E_VSI_FDIR = 7,
|
||||
I40E_VSI_TYPE_UNKNOWN
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue