diff options
author | Ido Schimmel <idosch@mellanox.com> | 2016-04-06 17:10:11 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-06 17:24:19 -0400 |
commit | cc7cf5175807daa9cb51f6e0eb034f60ced6b251 (patch) | |
tree | 7499e00b94ea2ed068ee98857c391ad3be9a07e0 /drivers/net/ethernet/mellanox/mlxsw/spectrum.h | |
parent | 8e8dfe9fdf063cd61f35ed82f5be463791a613a5 (diff) | |
download | op-kernel-dev-cc7cf5175807daa9cb51f6e0eb034f60ced6b251.zip op-kernel-dev-cc7cf5175807daa9cb51f6e0eb034f60ced6b251.tar.gz |
mlxsw: spectrum: Allow setting maximum rate for a TC
Allow a user to set maximum rate for a particular TC using DCB ops.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlxsw/spectrum.h')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlxsw/spectrum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlxsw/spectrum.h b/drivers/net/ethernet/mellanox/mlxsw/spectrum.h index ef02081..9e1e4fe 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/spectrum.h +++ b/drivers/net/ethernet/mellanox/mlxsw/spectrum.h @@ -173,6 +173,7 @@ struct mlxsw_sp_port { } vport; struct { struct ieee_ets *ets; + struct ieee_maxrate *maxrate; } dcb; /* 802.1Q bridge VLANs */ unsigned long *active_vlans; @@ -280,6 +281,9 @@ int mlxsw_sp_port_prio_tc_set(struct mlxsw_sp_port *mlxsw_sp_port, u8 switch_prio, u8 tclass); int __mlxsw_sp_port_headroom_set(struct mlxsw_sp_port *mlxsw_sp_port, int mtu, u8 *prio_tc); +int mlxsw_sp_port_ets_maxrate_set(struct mlxsw_sp_port *mlxsw_sp_port, + enum mlxsw_reg_qeec_hr hr, u8 index, + u8 next_index, u32 maxrate); #ifdef CONFIG_MLXSW_SPECTRUM_DCB |