projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e88afe7
)
net/mlx5e: Avoid overriding the user provided priority for offloaded tc rules
author
Or Gerlitz
<
[email protected]
>
Sun, 9 Dec 2018 15:15:23 +0000
(17:15 +0200)
committer
Saeed Mahameed
<
[email protected]
>
Thu, 13 Dec 2018 09:24:44 +0000
(
01:24
-0800)
Just a leftover which was wrongly left there, remove it while spawning
a message to suggest firmware upgrade.
Fixes: bf07aa730a04 ('net/mlx5e: Support offloading tc priorities and chains for eswitch flows')
Signed-off-by: Or Gerlitz <
[email protected]
>
Reviewed-by: Paul Blakey <
[email protected]
>
Signed-off-by: Saeed Mahameed <
[email protected]
>
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
index 1f01c905a04208e834cb685bb18e85d41c2e83d3..e6170ddf2cc4310028d8ae424fe13b5631a018e4 100644
(file)
--- a/
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
+++ b/
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
@@
-907,11
+907,10
@@
mlx5e_tc_add_fdb_flow(struct mlx5e_priv *priv,
struct mlx5e_priv *out_priv;
int err = 0, encap_err = 0;
- /* if prios are not supported, keep the old behaviour of using same prio
- * for all offloaded rules.
- */
- if (!mlx5_eswitch_prios_supported(esw))
- attr->prio = 1;
+ if (!mlx5_eswitch_prios_supported(esw) && attr->prio != 1) {
+ NL_SET_ERR_MSG(extack, "E-switch priorities unsupported, upgrade FW");
+ return -EOPNOTSUPP;
+ }
if (attr->chain > max_chain) {
NL_SET_ERR_MSG(extack, "Requested chain is out of supported range");