mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-13 20:59:37 +02:00
net: qede: use return from qede_parse_flow_attr() for flow_spec
[ Upstream commit27b44414a3
] In qede_flow_spec_to_rule(), when calling qede_parse_flow_attr() then the return code was only used for a non-zero check, and then -EINVAL was returned. qede_parse_flow_attr() can currently fail with: * -EINVAL * -EOPNOTSUPP * -EPROTONOSUPPORT This patch changes the code to use the actual return code, not just return -EINVAL. The blaimed commit introduced qede_flow_spec_to_rule(), and this call to qede_parse_flow_attr(), it looks like it just duplicated how it was already used. Only compile tested. Fixes:37c5d3efd7
("qede: use ethtool_rx_flow_rule() to remove duplicated parser code") Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
b633de6ae9
commit
40fbad8885
|
@ -2002,10 +2002,9 @@ static int qede_flow_spec_to_rule(struct qede_dev *edev,
|
||||||
if (IS_ERR(flow))
|
if (IS_ERR(flow))
|
||||||
return PTR_ERR(flow);
|
return PTR_ERR(flow);
|
||||||
|
|
||||||
if (qede_parse_flow_attr(edev, proto, flow->rule, t)) {
|
err = qede_parse_flow_attr(edev, proto, flow->rule, t);
|
||||||
err = -EINVAL;
|
if (err)
|
||||||
goto err_out;
|
goto err_out;
|
||||||
}
|
|
||||||
|
|
||||||
/* Make sure location is valid and filter isn't already set */
|
/* Make sure location is valid and filter isn't already set */
|
||||||
err = qede_flow_spec_validate(edev, &flow->rule->action, t,
|
err = qede_flow_spec_validate(edev, &flow->rule->action, t,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user