#include "bnxt_devlink.h"
 
 static int bnxt_fw_reporter_diagnose(struct devlink_health_reporter *reporter,
-                                    struct devlink_fmsg *fmsg)
+                                    struct devlink_fmsg *fmsg,
+                                    struct netlink_ext_ack *extack)
 {
        struct bnxt *bp = devlink_health_reporter_priv(reporter);
        struct bnxt_fw_health *health = bp->fw_health;
 };
 
 static int bnxt_fw_reset_recover(struct devlink_health_reporter *reporter,
-                                void *priv_ctx)
+                                void *priv_ctx,
+                                struct netlink_ext_ack *extack)
 {
        struct bnxt *bp = devlink_health_reporter_priv(reporter);
 
 };
 
 static int bnxt_fw_fatal_recover(struct devlink_health_reporter *reporter,
-                                void *priv_ctx)
+                                void *priv_ctx,
+                                struct netlink_ext_ack *extack)
 {
        struct bnxt *bp = devlink_health_reporter_priv(reporter);
        struct bnxt_fw_reporter_ctx *fw_reporter_ctx = priv_ctx;
 
 }
 
 static int mlx5e_rx_reporter_recover(struct devlink_health_reporter *reporter,
-                                    void *context)
+                                    void *context,
+                                    struct netlink_ext_ack *extack)
 {
        struct mlx5e_priv *priv = devlink_health_reporter_priv(reporter);
        struct mlx5e_err_ctx *err_ctx = context;
 }
 
 static int mlx5e_rx_reporter_diagnose(struct devlink_health_reporter *reporter,
-                                     struct devlink_fmsg *fmsg)
+                                     struct devlink_fmsg *fmsg,
+                                     struct netlink_ext_ack *extack)
 {
        struct mlx5e_priv *priv = devlink_health_reporter_priv(reporter);
        struct mlx5e_params *params = &priv->channels.params;
 
 }
 
 static int mlx5e_tx_reporter_recover(struct devlink_health_reporter *reporter,
-                                    void *context)
+                                    void *context,
+                                    struct netlink_ext_ack *extack)
 {
        struct mlx5e_priv *priv = devlink_health_reporter_priv(reporter);
        struct mlx5e_err_ctx *err_ctx = context;
 }
 
 static int mlx5e_tx_reporter_diagnose(struct devlink_health_reporter *reporter,
-                                     struct devlink_fmsg *fmsg)
+                                     struct devlink_fmsg *fmsg,
+                                     struct netlink_ext_ack *extack)
 {
        struct mlx5e_priv *priv = devlink_health_reporter_priv(reporter);
        struct mlx5e_txqsq *generic_sq = priv->txq2sq[0];
 
 
 static int
 mlx5_fw_reporter_diagnose(struct devlink_health_reporter *reporter,
-                         struct devlink_fmsg *fmsg)
+                         struct devlink_fmsg *fmsg,
+                         struct netlink_ext_ack *extack)
 {
        struct mlx5_core_dev *dev = devlink_health_reporter_priv(reporter);
        struct mlx5_core_health *health = &dev->priv.health;
 
 static int
 mlx5_fw_reporter_dump(struct devlink_health_reporter *reporter,
-                     struct devlink_fmsg *fmsg, void *priv_ctx)
+                     struct devlink_fmsg *fmsg, void *priv_ctx,
+                     struct netlink_ext_ack *extack)
 {
        struct mlx5_core_dev *dev = devlink_health_reporter_priv(reporter);
        int err;
 
 static int
 mlx5_fw_fatal_reporter_recover(struct devlink_health_reporter *reporter,
-                              void *priv_ctx)
+                              void *priv_ctx,
+                              struct netlink_ext_ack *extack)
 {
        struct mlx5_core_dev *dev = devlink_health_reporter_priv(reporter);
 
 #define MLX5_CR_DUMP_CHUNK_SIZE 256
 static int
 mlx5_fw_fatal_reporter_dump(struct devlink_health_reporter *reporter,
-                           struct devlink_fmsg *fmsg, void *priv_ctx)
+                           struct devlink_fmsg *fmsg, void *priv_ctx,
+                           struct netlink_ext_ack *extack)
 {
        struct mlx5_core_dev *dev = devlink_health_reporter_priv(reporter);
        u32 crdump_size = dev->priv.health.crdump_size;
 
 struct devlink_health_reporter_ops {
        char *name;
        int (*recover)(struct devlink_health_reporter *reporter,
-                      void *priv_ctx);
+                      void *priv_ctx, struct netlink_ext_ack *extack);
        int (*dump)(struct devlink_health_reporter *reporter,
-                   struct devlink_fmsg *fmsg, void *priv_ctx);
+                   struct devlink_fmsg *fmsg, void *priv_ctx,
+                   struct netlink_ext_ack *extack);
        int (*diagnose)(struct devlink_health_reporter *reporter,
-                       struct devlink_fmsg *fmsg);
+                       struct devlink_fmsg *fmsg,
+                       struct netlink_ext_ack *extack);
 };
 
 /**
 
 
 static int
 devlink_health_reporter_recover(struct devlink_health_reporter *reporter,
-                               void *priv_ctx)
+                               void *priv_ctx, struct netlink_ext_ack *extack)
 {
        int err;
 
        if (!reporter->ops->recover)
                return -EOPNOTSUPP;
 
-       err = reporter->ops->recover(reporter, priv_ctx);
+       err = reporter->ops->recover(reporter, priv_ctx, extack);
        if (err)
                return err;
 
 }
 
 static int devlink_health_do_dump(struct devlink_health_reporter *reporter,
-                                 void *priv_ctx)
+                                 void *priv_ctx,
+                                 struct netlink_ext_ack *extack)
 {
        int err;
 
                goto dump_err;
 
        err = reporter->ops->dump(reporter, reporter->dump_fmsg,
-                                 priv_ctx);
+                                 priv_ctx, extack);
        if (err)
                goto dump_err;
 
 
        mutex_lock(&reporter->dump_lock);
        /* store current dump of current error, for later analysis */
-       devlink_health_do_dump(reporter, priv_ctx);
+       devlink_health_do_dump(reporter, priv_ctx, NULL);
        mutex_unlock(&reporter->dump_lock);
 
        if (reporter->auto_recover)
-               return devlink_health_reporter_recover(reporter, priv_ctx);
+               return devlink_health_reporter_recover(reporter,
+                                                      priv_ctx, NULL);
 
        return 0;
 }
        if (!reporter)
                return -EINVAL;
 
-       err = devlink_health_reporter_recover(reporter, NULL);
+       err = devlink_health_reporter_recover(reporter, NULL, info->extack);
 
        devlink_health_reporter_put(reporter);
        return err;
        if (err)
                goto out;
 
-       err = reporter->ops->diagnose(reporter, fmsg);
+       err = reporter->ops->diagnose(reporter, fmsg, info->extack);
        if (err)
                goto out;
 
        }
        mutex_lock(&reporter->dump_lock);
        if (!start) {
-               err = devlink_health_do_dump(reporter, NULL);
+               err = devlink_health_do_dump(reporter, NULL, cb->extack);
                if (err)
                        goto unlock;
                cb->args[1] = reporter->dump_ts;