mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
net: qede: use return from qede_parse_actions()
When calling qede_parse_actions() then the
return code was only used for a non-zero check,
and then -EINVAL was returned.
qede_parse_actions() can currently fail with:
* -EINVAL
* -EOPNOTSUPP
This patch changes the code to use the actual
return code, not just return -EINVAL.
The blaimed commit broke the implicit assumption
that only -EINVAL would ever be returned.
Only compile tested.
Fixes: 319a1d1947 ("flow_offload: check for basic action hw stats type")
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>
This commit is contained in:
parent
27b44414a3
commit
f26f719a36
|
|
@ -1894,10 +1894,9 @@ int qede_add_tc_flower_fltr(struct qede_dev *edev, __be16 proto,
|
|||
}
|
||||
|
||||
/* parse tc actions and get the vf_id */
|
||||
if (qede_parse_actions(edev, &f->rule->action, f->common.extack)) {
|
||||
rc = -EINVAL;
|
||||
rc = qede_parse_actions(edev, &f->rule->action, f->common.extack);
|
||||
if (rc)
|
||||
goto unlock;
|
||||
}
|
||||
|
||||
if (qede_flow_find_fltr(edev, &t)) {
|
||||
rc = -EEXIST;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user