net: qede: use return from qede_parse_flow_attr() for flower
[ Upstream commit fcee2065a178f78be6fd516302830378b17dba3d ] In qede_add_tc_flower_fltr(), 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 these functions. Only compile tested. Fixes: 2ce9c93eaca6 ("qede: Ingress tc flower offload (drop action) support.") 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
264a97baaa
commit
8ea3806798
1 changed files with 2 additions and 3 deletions
|
@ -1888,10 +1888,9 @@ int qede_add_tc_flower_fltr(struct qede_dev *edev, __be16 proto,
|
|||
}
|
||||
|
||||
/* parse flower attribute and prepare filter */
|
||||
if (qede_parse_flow_attr(edev, proto, f->rule, &t)) {
|
||||
rc = -EINVAL;
|
||||
rc = qede_parse_flow_attr(edev, proto, f->rule, &t);
|
||||
if (rc)
|
||||
goto unlock;
|
||||
}
|
||||
|
||||
/* Validate profile mode and number of filters */
|
||||
if ((edev->arfs->filter_count && edev->arfs->mode != t.mode) ||
|
||||
|
|
Loading…
Reference in a new issue