net: mvpp2: cls: Fix leaked ethtool_rx_flow_rule
The flow_rule is only used when configuring the classification tables,
and should be free'd once we're done using it. The current code only
frees it in the error path.
Fixes: 90b509b39a
("net: mvpp2: cls: Add Classification offload support")
Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
903869bd10
commit
3f6f7a175a
@ -1271,6 +1271,9 @@ int mvpp2_ethtool_cls_rule_ins(struct mvpp2_port *port,
|
||||
if (ret)
|
||||
goto clean_eth_rule;
|
||||
|
||||
ethtool_rx_flow_rule_destroy(ethtool_rule);
|
||||
efs->rule.flow = NULL;
|
||||
|
||||
memcpy(&efs->rxnfc, info, sizeof(*info));
|
||||
port->rfs_rules[efs->rule.loc] = efs;
|
||||
port->n_rfs_rules++;
|
||||
|
Loading…
Reference in New Issue
Block a user