diff options
author | Naveen Mamindlapalli <naveenm@marvell.com> | 2023-07-19 16:34:42 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-07-21 09:55:53 +0100 |
commit | 47a9656f168a4b76a1e069ed8a67924ea8c1ac43 (patch) | |
tree | ad05be79296faac03153733bbeecf7ad559af603 /drivers/net/ethernet/marvell/octeontx2/nic/qos.h | |
parent | 9fe63d5f1da939855bdfaebfd9e95c96938b6411 (diff) |
octeontx2-pf: htb offload support for Round Robin scheduling
When multiple traffic flows reach Transmit level with the same
priority, with Round robin scheduling traffic flow with the highest
quantum value is picked. With this support, the user can add multiple
classes with the same priority and different quantum. This patch
does necessary changes to support the same.
Signed-off-by: Naveen Mamindlapalli <naveenm@marvell.com>
Signed-off-by: Hariprasad Kelam <hkelam@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/marvell/octeontx2/nic/qos.h')
-rw-r--r-- | drivers/net/ethernet/marvell/octeontx2/nic/qos.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/octeontx2/nic/qos.h b/drivers/net/ethernet/marvell/octeontx2/nic/qos.h index faa7c24675d1..221bd0438f60 100644 --- a/drivers/net/ethernet/marvell/octeontx2/nic/qos.h +++ b/drivers/net/ethernet/marvell/octeontx2/nic/qos.h @@ -60,12 +60,15 @@ struct otx2_qos_node { u64 ceil; u32 classid; u32 prio; - u16 schq; /* hw txschq */ + u32 quantum; + /* hw txschq */ + u16 schq; u16 qid; u16 prio_anchor; u16 max_static_prio; u16 child_dwrr_cnt; u16 child_static_cnt; + u16 child_dwrr_prio; u16 txschq_idx; /* txschq allocation index */ u8 level; bool is_static; |