Skip to content

Commit

Permalink
i40evf: make messages less dire
Browse files Browse the repository at this point in the history
Depending on the timing of what the PF driver is doing, it make take a
few tries before the VF driver is able to communicate with the PF driver
on init or reset recovery. In order to prevent confusion, make the most
common messages less scary by lowering them to a less terrifying log
level and indicate that the driver will retry.

Change-ID: I1ec22aa59a68f4469aabe14775a1bfc1ab4b7f2f
Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Tested-by: Sibai Li <sibai.li@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
  • Loading branch information
Mitch Williams authored and Jeff Kirsher committed Jun 6, 2014
1 parent 2c5fe33 commit 0d9c7ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/intel/i40evf/i40evf_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,7 @@ static void i40evf_init_task(struct work_struct *work)
}
err = i40evf_check_reset_complete(hw);
if (err) {
dev_err(&pdev->dev, "Device is still in reset (%d)\n",
dev_info(&pdev->dev, "Device is still in reset (%d), retrying\n",
err);
goto err;
}
Expand Down Expand Up @@ -1996,7 +1996,7 @@ static void i40evf_init_task(struct work_struct *work)
/* aq msg sent, awaiting reply */
err = i40evf_verify_api_ver(adapter);
if (err) {
dev_err(&pdev->dev, "Unable to verify API version (%d)\n",
dev_info(&pdev->dev, "Unable to verify API version (%d), retrying\n",
err);
goto err;
}
Expand Down

0 comments on commit 0d9c7ea

Please sign in to comment.