From: Karen Sornek Date: Tue, 31 Aug 2021 10:12:02 +0000 (+0200) Subject: iavf: Refactor text of informational message X-Git-Tag: howlett/maple/20220722_2~1498^2~286^2~2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fbe66f57d371d787835f1f2a0612720f655bda2f;p=users%2Fjedix%2Flinux-maple.git iavf: Refactor text of informational message This message is intended to be informational to indicate a reset is about to happen, but the use of "warning" in the message text can cause concern with users. Reword the message to make it less alarming. Signed-off-by: Bruce Allan Signed-off-by: Karen Sornek Tested-by: George Kuruvinakunnel Signed-off-by: Tony Nguyen --- diff --git a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c index 5c64f06d44f8..b902650aa594 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c +++ b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c @@ -1530,7 +1530,7 @@ void iavf_virtchnl_completion(struct iavf_adapter *adapter, iavf_print_link_message(adapter); break; case VIRTCHNL_EVENT_RESET_IMPENDING: - dev_info(&adapter->pdev->dev, "Reset warning received from the PF\n"); + dev_info(&adapter->pdev->dev, "Reset indication received from the PF\n"); if (!(adapter->flags & IAVF_FLAG_RESET_PENDING)) { adapter->flags |= IAVF_FLAG_RESET_PENDING; dev_info(&adapter->pdev->dev, "Scheduling reset task\n");