mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-24 01:49:41 +07:00
ice: Deduce TSA value from the priority value in the CEE mode
In CEE mode, the TSA information can be derived from the reported priority value. Signed-off-by: Chinh T Cao <chinh.t.cao@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
567af267fa
commit
d24ef08a9d
@ -444,9 +444,15 @@ ice_parse_cee_pgcfg_tlv(struct ice_cee_feat_tlv *tlv,
|
|||||||
* |pg0|pg1|pg2|pg3|pg4|pg5|pg6|pg7|
|
* |pg0|pg1|pg2|pg3|pg4|pg5|pg6|pg7|
|
||||||
* ---------------------------------
|
* ---------------------------------
|
||||||
*/
|
*/
|
||||||
ice_for_each_traffic_class(i)
|
ice_for_each_traffic_class(i) {
|
||||||
etscfg->tcbwtable[i] = buf[offset++];
|
etscfg->tcbwtable[i] = buf[offset++];
|
||||||
|
|
||||||
|
if (etscfg->prio_table[i] == ICE_CEE_PGID_STRICT)
|
||||||
|
dcbcfg->etscfg.tsatable[i] = ICE_IEEE_TSA_STRICT;
|
||||||
|
else
|
||||||
|
dcbcfg->etscfg.tsatable[i] = ICE_IEEE_TSA_ETS;
|
||||||
|
}
|
||||||
|
|
||||||
/* Number of TCs supported (1 octet) */
|
/* Number of TCs supported (1 octet) */
|
||||||
etscfg->maxtcs = buf[offset];
|
etscfg->maxtcs = buf[offset];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user