mirror of https://gitee.com/openkylin/linux.git
net: stmmac: selftests: Fix L3/L4 Filtering test
Since commit319a1d1947
, stmmac only support basic HW stats type for action. Set this field in the L3/L4 Filtering test so that it correctly setups the filter instead of returning EOPNOTSUPP. Fixes:319a1d1947
("flow_offload: check for basic action hw stats type") Signed-off-by: Jose Abreu <Jose.Abreu@synopsys.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0fa81b304a
commit
c7211ff3be
|
@ -1387,6 +1387,7 @@ static int __stmmac_test_l3filt(struct stmmac_priv *priv, u32 dst, u32 src,
|
|||
cls->rule = rule;
|
||||
|
||||
rule->action.entries[0].id = FLOW_ACTION_DROP;
|
||||
rule->action.entries[0].hw_stats_type = FLOW_ACTION_HW_STATS_TYPE_ANY;
|
||||
rule->action.num_entries = 1;
|
||||
|
||||
attr.dst = priv->dev->dev_addr;
|
||||
|
@ -1515,6 +1516,7 @@ static int __stmmac_test_l4filt(struct stmmac_priv *priv, u32 dst, u32 src,
|
|||
cls->rule = rule;
|
||||
|
||||
rule->action.entries[0].id = FLOW_ACTION_DROP;
|
||||
rule->action.entries[0].hw_stats_type = FLOW_ACTION_HW_STATS_TYPE_ANY;
|
||||
rule->action.num_entries = 1;
|
||||
|
||||
attr.dst = priv->dev->dev_addr;
|
||||
|
|
Loading…
Reference in New Issue