mirror of https://gitee.com/openkylin/linux.git
ice: fix the vsi_id mask to be 10 bit for set_rss_lut
set_rss_lut can fail due to incorrect vsi_id mask. vsi_id is 10 bit but mask was 0x1FF whereas it should be 0x3FF. For vsi_num >= 512, FW set_rss_lut can fail with return code EACCESS (VSI ownership issue) because software was providing incorrect vsi_num (dropping 10th bit due to incorrect mask) for set_rss_lut admin command Signed-off-by: Kiran Patil <kiran.patil@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
585cdabdfd
commit
f07d134d37
|
@ -1581,7 +1581,7 @@ struct ice_aqc_get_set_rss_keys {
|
|||
struct ice_aqc_get_set_rss_lut {
|
||||
#define ICE_AQC_GSET_RSS_LUT_VSI_VALID BIT(15)
|
||||
#define ICE_AQC_GSET_RSS_LUT_VSI_ID_S 0
|
||||
#define ICE_AQC_GSET_RSS_LUT_VSI_ID_M (0x1FF << ICE_AQC_GSET_RSS_LUT_VSI_ID_S)
|
||||
#define ICE_AQC_GSET_RSS_LUT_VSI_ID_M (0x3FF << ICE_AQC_GSET_RSS_LUT_VSI_ID_S)
|
||||
__le16 vsi_id;
|
||||
#define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_S 0
|
||||
#define ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_M \
|
||||
|
|
Loading…
Reference in New Issue