[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220601150428.33945-1-lianglixuehao@126.com>
Date: Wed, 1 Jun 2022 15:04:28 +0000
From: Lixue Liang <lianglixuehao@....com>
To: pmenzel@...gen.mpg.de
Cc: anthony.l.nguyen@...el.com, intel-wired-lan@...ts.osuosl.org,
jesse.brandeburg@...el.com, kuba@...nel.org,
lianglixue@...atwall.com.cn, netdev@...r.kernel.org
Subject: [PATCH v4] igb: Assign random MAC address instead of fail in case of invalid one
From: Lixue Liang <lianglixue@...atwall.com.cn>
In some cases, when the user uses igb_set_eeprom to modify the MAC
address to be invalid, the igb driver will fail to load. If there is no
network card device, the user must modify it to a valid MAC address by
other means.
Since the MAC address can be modified, then add a random valid MAC address
to replace the invalid MAC address in the driver can be workable, it can
continue to finish the loading, and output the relevant log reminder.
Signed-off-by: Lixue Liang <lianglixue@...atwall.com.cn>
---
Changelog:
* v4:
- Change the igb_mian in the title to igb
- Fix dev_err message: replace "already assigned random MAC address"
with "Invalid MAC address. Assigned random MAC address"
Suggested-by Tony <anthony.l.nguyen@...el.com>
* v3:
- Add space after comma in commit message
- Correct spelling of MAC address
Suggested-by Paul <pmenzel@...gen.mpg.de>
* v2:
- Change memcpy to ether_addr_copy
- Change dev_info to dev_err
- Fix the description of the commit message
- Change eth_random_addr to eth_hw_addr_random
Reported-by: kernel test robot <lkp@...el.com>
drivers/net/ethernet/intel/igb/igb_main.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index 34b33b21e0dc..5e3b162e50ac 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -3359,9 +3359,10 @@ static int igb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
eth_hw_addr_set(netdev, hw->mac.addr);
if (!is_valid_ether_addr(netdev->dev_addr)) {
- dev_err(&pdev->dev, "Invalid MAC Address\n");
- err = -EIO;
- goto err_eeprom;
+ eth_hw_addr_random(netdev);
+ ether_addr_copy(hw->mac.addr, netdev->dev_addr);
+ dev_err(&pdev->dev,
+ "Invalid MAC address. Assigned random MAC address\n");
}
igb_set_default_mac_filter(adapter);
--
2.27.0
Powered by blists - more mailing lists