mirror of
https://github.com/torvalds/linux.git
synced 2026-07-29 10:41:49 +02:00
net/mlx5: HWS, Fix an error code in mlx5hws_bwc_rule_create_complex()
This was intended to be negative -ENOMEM but the '-' character was left
off accidentally. This typo doesn't affect runtime because the caller
treats all non-zero returns the same.
Fixes: 17e0accac5 ("net/mlx5: HWS, support complex matchers")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Yevgeny Kliteynik <kliteyn@nvidia.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Link: https://patch.msgid.link/aDCbjNcquNC68Hyj@stanley.mountain
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
c8ef20fe72
commit
a540ee7594
|
|
@ -1188,7 +1188,7 @@ int mlx5hws_bwc_rule_create_complex(struct mlx5hws_bwc_rule *bwc_rule,
|
|||
GFP_KERNEL);
|
||||
if (unlikely(!match_buf_2)) {
|
||||
mlx5hws_err(ctx, "Complex rule: failed allocating match_buf\n");
|
||||
ret = ENOMEM;
|
||||
ret = -ENOMEM;
|
||||
goto hash_node_put;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user