]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
devlink: Move health reporter recovery abort logic to a separate function
authorShahar Shitrit <shshitrit@nvidia.com>
Sun, 24 Aug 2025 08:43:51 +0000 (11:43 +0300)
committerJakub Kicinski <kuba@kernel.org>
Wed, 27 Aug 2025 00:24:16 +0000 (17:24 -0700)
Extract the health reporter recovery abort logic into a separate
function devlink_health_recover_abort().
The function encapsulates the conditions for aborting recovery:
- When auto-recovery is disabled
- When previous error wasn't recovered
- When within the grace period after last recovery

Signed-off-by: Shahar Shitrit <shshitrit@nvidia.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: Dragos Tatulea <dtatulea@nvidia.com>
Reviewed-by: Carolina Jubran <cjubran@nvidia.com>
Signed-off-by: Mark Bloch <mbloch@nvidia.com>
Link: https://patch.msgid.link/20250824084354.533182-3-mbloch@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/devlink/health.c

index ba144b7426fa4d3120489572f2018d5f1973b3ae..9d0d4a9face783553dc2a1d81b33e1a8f41684ff 100644 (file)
@@ -586,12 +586,33 @@ dump_err:
        return err;
 }
 
+static bool
+devlink_health_recover_abort(struct devlink_health_reporter *reporter,
+                            enum devlink_health_reporter_state prev_state)
+{
+       unsigned long recover_ts_threshold;
+
+       if (!reporter->auto_recover)
+               return false;
+
+       /* abort if the previous error wasn't recovered */
+       if (prev_state != DEVLINK_HEALTH_REPORTER_STATE_HEALTHY)
+               return true;
+
+       recover_ts_threshold = reporter->last_recovery_ts +
+               msecs_to_jiffies(reporter->graceful_period);
+       if (reporter->last_recovery_ts && reporter->recovery_count &&
+           time_is_after_jiffies(recover_ts_threshold))
+               return true;
+
+       return false;
+}
+
 int devlink_health_report(struct devlink_health_reporter *reporter,
                          const char *msg, void *priv_ctx)
 {
        enum devlink_health_reporter_state prev_health_state;
        struct devlink *devlink = reporter->devlink;
-       unsigned long recover_ts_threshold;
        int ret;
 
        /* write a log message of the current error */
@@ -602,13 +623,7 @@ int devlink_health_report(struct devlink_health_reporter *reporter,
        reporter->health_state = DEVLINK_HEALTH_REPORTER_STATE_ERROR;
        devlink_recover_notify(reporter, DEVLINK_CMD_HEALTH_REPORTER_RECOVER);
 
-       /* abort if the previous error wasn't recovered */
-       recover_ts_threshold = reporter->last_recovery_ts +
-                              msecs_to_jiffies(reporter->graceful_period);
-       if (reporter->auto_recover &&
-           (prev_health_state != DEVLINK_HEALTH_REPORTER_STATE_HEALTHY ||
-            (reporter->last_recovery_ts && reporter->recovery_count &&
-             time_is_after_jiffies(recover_ts_threshold)))) {
+       if (devlink_health_recover_abort(reporter, prev_health_state)) {
                trace_devlink_health_recover_aborted(devlink,
                                                     reporter->ops->name,
                                                     reporter->health_state,