mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
gve: Flow steering trigger reset only for timeout error
When configuring flow steering rules, the driver is currently going
through a reset for all errors from the device. Instead, the driver
should only reset when there's a timeout error from the device.
Fixes: 57718b60df
("gve: Add flow steering adminq commands")
Cc: stable@vger.kernel.org
Signed-off-by: Ziwei Xiao <ziweixiao@google.com>
Signed-off-by: Jeroen de Borst <jeroendb@google.com>
Reviewed-by: Harshitha Ramamurthy <hramamurthy@google.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20241113175930.2585680-1-jeroendb@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
41ffcd9501
commit
8ffade77b6
@ -1248,10 +1248,10 @@ gve_adminq_configure_flow_rule(struct gve_priv *priv,
|
||||
sizeof(struct gve_adminq_configure_flow_rule),
|
||||
flow_rule_cmd);
|
||||
|
||||
if (err) {
|
||||
if (err == -ETIME) {
|
||||
dev_err(&priv->pdev->dev, "Timeout to configure the flow rule, trigger reset");
|
||||
gve_reset(priv, true);
|
||||
} else {
|
||||
} else if (!err) {
|
||||
priv->flow_rules_cache.rules_cache_synced = false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user