* [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
@ 2007-12-14 23:35 Auke Kok
2007-12-15 1:08 ` Randy Dunlap
2007-12-15 1:31 ` Joe Perches
0 siblings, 2 replies; 7+ messages in thread
From: Auke Kok @ 2007-12-14 23:35 UTC (permalink / raw)
To: jeff; +Cc: netdev, davem, john.ronciak, jesse.brandeburg
To help supporting users with a bad eeprom checksum, dump the
eeprom info when such a situation is encountered by a user.
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
---
drivers/net/e1000/e1000_main.c | 90 +++++++++++++++++++++++++++++++++++-----
1 files changed, 79 insertions(+), 11 deletions(-)
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index efd8c2d..2dab1a6 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -817,6 +817,69 @@ e1000_reset(struct e1000_adapter *adapter)
}
/**
+ * Dump the eeprom for users having checksum issues
+ **/
+void e1000_dump_eeprom(struct e1000_adapter *adapter)
+{
+ struct net_device *netdev = adapter->netdev;
+ struct ethtool_eeprom eeprom;
+ const struct ethtool_ops *ops = netdev->ethtool_ops;
+ u8 *data;
+ int i;
+ u16 csum_old, csum_new = 0;
+
+ eeprom.len = ops->get_eeprom_len(netdev);
+ eeprom.offset = 0;
+
+ data = kmalloc(eeprom.len, GFP_KERNEL);
+ if (!data) {
+ printk(KERN_ERR "Unable to allocate memory to dump EEPROM"
+ " data\n");
+ return;
+ }
+
+ ops->get_eeprom(netdev, &eeprom, data);
+
+ csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
+ (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
+ for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
+ csum_new += data[i] + (data[i + 1] << 8);
+ csum_new = EEPROM_SUM - csum_new;
+
+ printk(KERN_ERR "/*********************/\n");
+ printk(KERN_ERR "Current EEPROM: 0x%04x\nCalculated : 0x%04x\n",
+ csum_old, csum_new);
+
+ printk(KERN_ERR "Offset Values\n");
+ printk(KERN_ERR "====== ======\n");
+ for (i = 0; i < eeprom.len; i += 16)
+ printk(KERN_ERR "0x%04x "
+ "%02x %02x %02x %02x %02x %02x %02x %02x "
+ "%02x %02x %02x %02x %02x %02x %02x %02x\n",
+ i, data[i], data[i + 1], data[i + 2], data[i + 3],
+ data[i + 4], data[i + 5], data[i + 6], data[i + 7],
+ data[i + 8], data[i + 9], data[i + 10], data[i + 11],
+ data[i + 12], data[i + 13], data[i + 14], data[i + 15]);
+
+ printk(KERN_ERR "Include this output when contacting your support "
+ "provider.\n\nThis is not a software error! Something bad "
+ "happened to your hardware or\nEEPROM image. Ignoring this "
+ "problem could result in further problems,\npossibly loss "
+ "of data, corruption or system hangs!\n\n");
+ printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
+ "which is invalid\nand requires you to set the proper MAC "
+ "address manually before continuing\nto enable this network "
+ "device.\n\n");
+ printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
+ "to your hardware vendor\nor Intel Customer Support: "
+ "linux-nics@intel.com\n");
+
+ printk(KERN_ERR "/*********************/\n");
+
+ kfree(data);
+}
+
+/**
* e1000_probe - Device Initialization Routine
* @pdev: PCI device information struct
* @ent: entry in e1000_pci_tbl
@@ -967,7 +1030,6 @@ e1000_probe(struct pci_dev *pdev,
adapter->en_mng_pt = e1000_enable_mng_pass_thru(&adapter->hw);
/* initialize eeprom parameters */
-
if (e1000_init_eeprom_params(&adapter->hw)) {
E1000_ERR("EEPROM initialization failed\n");
goto err_eeprom;
@@ -979,23 +1041,29 @@ e1000_probe(struct pci_dev *pdev,
e1000_reset_hw(&adapter->hw);
/* make sure the EEPROM is good */
-
if (e1000_validate_eeprom_checksum(&adapter->hw) < 0) {
DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
- goto err_eeprom;
+ e1000_dump_eeprom(adapter);
+ /*
+ * set MAC address to all zeroes to invalidate and temporary
+ * disable this device for the user. This blocks regular
+ * traffic while still permitting ethtool ioctls from reaching
+ * the hardware as well as allowing the user to run the
+ * interface after manually setting a hw addr using
+ * `ip set address`
+ */
+ memset(adapter->hw.mac_addr, 0, netdev->addr_len);
+ } else {
+ /* copy the MAC address out of the EEPROM */
+ if (e1000_read_mac_addr(&adapter->hw))
+ DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
}
-
- /* copy the MAC address out of the EEPROM */
-
- if (e1000_read_mac_addr(&adapter->hw))
- DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
+ /* don't block initalization here due to bad MAC address */
memcpy(netdev->dev_addr, adapter->hw.mac_addr, netdev->addr_len);
memcpy(netdev->perm_addr, adapter->hw.mac_addr, netdev->addr_len);
- if (!is_valid_ether_addr(netdev->perm_addr)) {
+ if (!is_valid_ether_addr(netdev->perm_addr))
DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
- goto err_eeprom;
- }
e1000_get_bus_info(&adapter->hw);
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
2007-12-14 23:35 [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum Auke Kok
@ 2007-12-15 1:08 ` Randy Dunlap
2007-12-15 1:31 ` Joe Perches
1 sibling, 0 replies; 7+ messages in thread
From: Randy Dunlap @ 2007-12-15 1:08 UTC (permalink / raw)
To: Auke Kok; +Cc: jeff, netdev, davem, john.ronciak, jesse.brandeburg
On Fri, 14 Dec 2007 15:35:30 -0800 Auke Kok wrote:
> To help supporting users with a bad eeprom checksum, dump the
> eeprom info when such a situation is encountered by a user.
>
> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
> ---
>
> drivers/net/e1000/e1000_main.c | 90 +++++++++++++++++++++++++++++++++++-----
> 1 files changed, 79 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
> index efd8c2d..2dab1a6 100644
> --- a/drivers/net/e1000/e1000_main.c
> +++ b/drivers/net/e1000/e1000_main.c
> @@ -817,6 +817,69 @@ e1000_reset(struct e1000_adapter *adapter)
> }
>
> /**
> + * Dump the eeprom for users having checksum issues
> + **/
> +void e1000_dump_eeprom(struct e1000_adapter *adapter)
> +{
> + struct net_device *netdev = adapter->netdev;
> + struct ethtool_eeprom eeprom;
> + const struct ethtool_ops *ops = netdev->ethtool_ops;
> + u8 *data;
> + int i;
> + u16 csum_old, csum_new = 0;
> +
> + eeprom.len = ops->get_eeprom_len(netdev);
> + eeprom.offset = 0;
> +
> + data = kmalloc(eeprom.len, GFP_KERNEL);
> + if (!data) {
> + printk(KERN_ERR "Unable to allocate memory to dump EEPROM"
> + " data\n");
> + return;
> + }
> +
> + ops->get_eeprom(netdev, &eeprom, data);
> +
> + csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
> + (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
> + for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
> + csum_new += data[i] + (data[i + 1] << 8);
> + csum_new = EEPROM_SUM - csum_new;
> +
> + printk(KERN_ERR "/*********************/\n");
> + printk(KERN_ERR "Current EEPROM: 0x%04x\nCalculated : 0x%04x\n",
> + csum_old, csum_new);
add the word "checksum" in that line somewhere?
> + printk(KERN_ERR "Offset Values\n");
> + printk(KERN_ERR "====== ======\n");
> + for (i = 0; i < eeprom.len; i += 16)
> + printk(KERN_ERR "0x%04x "
> + "%02x %02x %02x %02x %02x %02x %02x %02x "
> + "%02x %02x %02x %02x %02x %02x %02x %02x\n",
> + i, data[i], data[i + 1], data[i + 2], data[i + 3],
> + data[i + 4], data[i + 5], data[i + 6], data[i + 7],
> + data[i + 8], data[i + 9], data[i + 10], data[i + 11],
> + data[i + 12], data[i + 13], data[i + 14], data[i + 15]);
how about:
for (i = 0; i < eeprom.len; i += 16)
print_hex_dump(KERN_ERR, "data:", DUMP_PREFIX_OFFSET,
16, 1, data + i, 16, 0);
> + printk(KERN_ERR "Include this output when contacting your support "
> + "provider.\n\nThis is not a software error! Something bad "
> + "happened to your hardware or\nEEPROM image. Ignoring this "
> + "problem could result in further problems,\npossibly loss "
> + "of data, corruption or system hangs!\n\n");
> + printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
> + "which is invalid\nand requires you to set the proper MAC "
> + "address manually before continuing\nto enable this network "
> + "device.\n\n");
> + printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
> + "to your hardware vendor\nor Intel Customer Support: "
> + "linux-nics@intel.com\n");
> +
> + printk(KERN_ERR "/*********************/\n");
> +
> + kfree(data);
> +}
---
~Randy
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
2007-12-14 23:35 [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum Auke Kok
2007-12-15 1:08 ` Randy Dunlap
@ 2007-12-15 1:31 ` Joe Perches
2007-12-15 20:35 ` Kok, Auke
1 sibling, 1 reply; 7+ messages in thread
From: Joe Perches @ 2007-12-15 1:31 UTC (permalink / raw)
To: Auke Kok; +Cc: jeff, netdev, davem, john.ronciak, jesse.brandeburg
On Fri, 2007-12-14 at 15:35 -0800, Auke Kok wrote:
> + printk(KERN_ERR "/*********************/\n");
> + printk(KERN_ERR "Current EEPROM: 0x%04x\nCalculated : 0x%04x\n",
> + csum_old, csum_new);
Multiline printks need a KERN_<level> after every newline. Perhaps:
printk(KERN_ERR "Current EEPROM: 0x%04x\n"
KERN_ERR "Calculated : 0x%04x\n",
csum_old, csum_new);
> + printk(KERN_ERR "Offset Values\n");
> + printk(KERN_ERR "====== ======\n");
> + for (i = 0; i < eeprom.len; i += 16)
> + printk(KERN_ERR "0x%04x "
> + "%02x %02x %02x %02x %02x %02x %02x %02x "
> + "%02x %02x %02x %02x %02x %02x %02x %02x\n",
> + i, data[i], data[i + 1], data[i + 2], data[i + 3],
> + data[i + 4], data[i + 5], data[i + 6], data[i + 7],
> + data[i + 8], data[i + 9], data[i + 10], data[i + 11],
> + data[i + 12], data[i + 13], data[i + 14], data[i + 15]);
print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data,
eeprom.len, true);
> + printk(KERN_ERR "Include this output when contacting your support "
> + "provider.\n\nThis is not a software error! Something bad "
> + "happened to your hardware or\nEEPROM image. Ignoring this "
> + "problem could result in further problems,\npossibly loss "
> + "of data, corruption or system hangs!\n\n");
> + printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
> + "which is invalid\nand requires you to set the proper MAC "
> + "address manually before continuing\nto enable this network "
> + "device.\n\n");
> + printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
> + "to your hardware vendor\nor Intel Customer Support: "
> + "linux-nics@intel.com\n");
multiline printks...
cheers, Joe
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
2007-12-15 1:31 ` Joe Perches
@ 2007-12-15 20:35 ` Kok, Auke
0 siblings, 0 replies; 7+ messages in thread
From: Kok, Auke @ 2007-12-15 20:35 UTC (permalink / raw)
To: Joe Perches
Cc: Auke Kok, jeff, netdev, davem, john.ronciak, jesse.brandeburg,
Randy Dunlap
Joe Perches wrote:
> On Fri, 2007-12-14 at 15:35 -0800, Auke Kok wrote:
>> + printk(KERN_ERR "/*********************/\n");
>> + printk(KERN_ERR "Current EEPROM: 0x%04x\nCalculated : 0x%04x\n",
>> + csum_old, csum_new);
>
> Multiline printks need a KERN_<level> after every newline. Perhaps:
>
> printk(KERN_ERR "Current EEPROM: 0x%04x\n"
> KERN_ERR "Calculated : 0x%04x\n",
> csum_old, csum_new);
>
>> + printk(KERN_ERR "Offset Values\n");
>> + printk(KERN_ERR "====== ======\n");
>> + for (i = 0; i < eeprom.len; i += 16)
>> + printk(KERN_ERR "0x%04x "
>> + "%02x %02x %02x %02x %02x %02x %02x %02x "
>> + "%02x %02x %02x %02x %02x %02x %02x %02x\n",
>> + i, data[i], data[i + 1], data[i + 2], data[i + 3],
>> + data[i + 4], data[i + 5], data[i + 6], data[i + 7],
>> + data[i + 8], data[i + 9], data[i + 10], data[i + 11],
>> + data[i + 12], data[i + 13], data[i + 14], data[i + 15]);
>
> print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data,
> eeprom.len, true);
>
>> + printk(KERN_ERR "Include this output when contacting your support "
>> + "provider.\n\nThis is not a software error! Something bad "
>> + "happened to your hardware or\nEEPROM image. Ignoring this "
>> + "problem could result in further problems,\npossibly loss "
>> + "of data, corruption or system hangs!\n\n");
>> + printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
>> + "which is invalid\nand requires you to set the proper MAC "
>> + "address manually before continuing\nto enable this network "
>> + "device.\n\n");
>> + printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
>> + "to your hardware vendor\nor Intel Customer Support: "
>> + "linux-nics@intel.com\n");
>
> multiline printks...
>
given these and Randy's comments I'll respin this and resubmit. thanks for the
comments!
Auke
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
@ 2007-12-17 21:50 Auke Kok
2007-12-17 22:14 ` Joe Perches
2007-12-18 1:17 ` Jeff Garzik
0 siblings, 2 replies; 7+ messages in thread
From: Auke Kok @ 2007-12-17 21:50 UTC (permalink / raw)
To: jeff; +Cc: netdev, davem, john.ronciak, jesse.brandeburg, randy.dunlap, joe
To help supporting users with a bad eeprom checksum, dump the
eeprom info when such a situation is encountered by a user.
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
---
drivers/net/e1000/e1000_main.c | 85 +++++++++++++++++++++++++++++++++++-----
1 files changed, 74 insertions(+), 11 deletions(-)
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index efd8c2d..aac55be 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -817,6 +817,64 @@ e1000_reset(struct e1000_adapter *adapter)
}
/**
+ * Dump the eeprom for users having checksum issues
+ **/
+void e1000_dump_eeprom(struct e1000_adapter *adapter)
+{
+ struct net_device *netdev = adapter->netdev;
+ struct ethtool_eeprom eeprom;
+ const struct ethtool_ops *ops = netdev->ethtool_ops;
+ u8 *data;
+ int i;
+ u16 csum_old, csum_new = 0;
+
+ eeprom.len = ops->get_eeprom_len(netdev);
+ eeprom.offset = 0;
+
+ data = kmalloc(eeprom.len, GFP_KERNEL);
+ if (!data) {
+ printk(KERN_ERR "Unable to allocate memory to dump EEPROM"
+ " data\n");
+ return;
+ }
+
+ ops->get_eeprom(netdev, &eeprom, data);
+
+ csum_old = (data[EEPROM_CHECKSUM_REG * 2]) +
+ (data[EEPROM_CHECKSUM_REG * 2 + 1] << 8);
+ for (i = 0; i < EEPROM_CHECKSUM_REG * 2; i += 2)
+ csum_new += data[i] + (data[i + 1] << 8);
+ csum_new = EEPROM_SUM - csum_new;
+
+ printk(KERN_ERR "/*********************/\n");
+ printk(KERN_ERR "Current EEPROM Checksum : 0x%04x\n", csum_old);
+ printk(KERN_ERR "Calculated : 0x%04x\n", csum_new);
+
+ printk(KERN_ERR "Offset Values\n");
+ printk(KERN_ERR "======== ======\n");
+ print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, data, 128, 0);
+
+ printk(KERN_ERR "Include this output when contacting your support "
+ "provider.\n");
+ printk(KERN_ERR "This is not a software error! Something bad "
+ "happened to your hardware or\n");
+ printk(KERN_ERR "EEPROM image. Ignoring this "
+ "problem could result in further problems,\n");
+ printk(KERN_ERR "possibly loss of data, corruption or system hangs!\n");
+ printk(KERN_ERR "The MAC Address will be reset to 00:00:00:00:00:00, "
+ "which is invalid\n");
+ printk(KERN_ERR "and requires you to set the proper MAC "
+ "address manually before continuing\n");
+ printk(KERN_ERR "to enable this network device.\n");
+ printk(KERN_ERR "Please inspect the EEPROM dump and report the issue "
+ "to your hardware vendor\n");
+ printk(KERN_ERR "or Intel Customer Support: linux-nics@intel.com\n");
+ printk(KERN_ERR "/*********************/\n");
+
+ kfree(data);
+}
+
+/**
* e1000_probe - Device Initialization Routine
* @pdev: PCI device information struct
* @ent: entry in e1000_pci_tbl
@@ -967,7 +1025,6 @@ e1000_probe(struct pci_dev *pdev,
adapter->en_mng_pt = e1000_enable_mng_pass_thru(&adapter->hw);
/* initialize eeprom parameters */
-
if (e1000_init_eeprom_params(&adapter->hw)) {
E1000_ERR("EEPROM initialization failed\n");
goto err_eeprom;
@@ -979,23 +1036,29 @@ e1000_probe(struct pci_dev *pdev,
e1000_reset_hw(&adapter->hw);
/* make sure the EEPROM is good */
-
if (e1000_validate_eeprom_checksum(&adapter->hw) < 0) {
DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
- goto err_eeprom;
+ e1000_dump_eeprom(adapter);
+ /*
+ * set MAC address to all zeroes to invalidate and temporary
+ * disable this device for the user. This blocks regular
+ * traffic while still permitting ethtool ioctls from reaching
+ * the hardware as well as allowing the user to run the
+ * interface after manually setting a hw addr using
+ * `ip set address`
+ */
+ memset(adapter->hw.mac_addr, 0, netdev->addr_len);
+ } else {
+ /* copy the MAC address out of the EEPROM */
+ if (e1000_read_mac_addr(&adapter->hw))
+ DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
}
-
- /* copy the MAC address out of the EEPROM */
-
- if (e1000_read_mac_addr(&adapter->hw))
- DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
+ /* don't block initalization here due to bad MAC address */
memcpy(netdev->dev_addr, adapter->hw.mac_addr, netdev->addr_len);
memcpy(netdev->perm_addr, adapter->hw.mac_addr, netdev->addr_len);
- if (!is_valid_ether_addr(netdev->perm_addr)) {
+ if (!is_valid_ether_addr(netdev->perm_addr))
DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
- goto err_eeprom;
- }
e1000_get_bus_info(&adapter->hw);
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
2007-12-17 21:50 Auke Kok
@ 2007-12-17 22:14 ` Joe Perches
2007-12-18 1:17 ` Jeff Garzik
1 sibling, 0 replies; 7+ messages in thread
From: Joe Perches @ 2007-12-17 22:14 UTC (permalink / raw)
To: Auke Kok
Cc: jeff, netdev, davem, john.ronciak, jesse.brandeburg, randy.dunlap
On Mon, 2007-12-17 at 13:50 -0800, Auke Kok wrote:
> diff --git a/drivers/net/e1000/e1000_main.c
> b/drivers/net/e1000/e1000_main.c
> index efd8c2d..aac55be 100644
> --- a/drivers/net/e1000/e1000_main.c
> +++ b/drivers/net/e1000/e1000_main.c
> @@ -979,23 +1036,29 @@ e1000_probe(struct pci_dev *pdev,
> e1000_reset_hw(&adapter->hw);
>
> /* make sure the EEPROM is good */
> -
> if (e1000_validate_eeprom_checksum(&adapter->hw) < 0) {
> DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
> - goto err_eeprom;
> + e1000_dump_eeprom(adapter);
> + /*
> + * set MAC address to all zeroes to invalidate and temporary
> + * disable this device for the user. This blocks regular
> + * traffic while still permitting ethtool ioctls from reaching
> + * the hardware as well as allowing the user to run the
> + * interface after manually setting a hw addr using
> + * `ip set address`
> + */
> + memset(adapter->hw.mac_addr, 0, netdev->addr_len);
Do you need to set netdev->dev_addr too?
> + } else {
> + /* copy the MAC address out of the EEPROM */
> + if (e1000_read_mac_addr(&adapter->hw))
> + DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
> }
> -
> - /* copy the MAC address out of the EEPROM */
> -
> - if (e1000_read_mac_addr(&adapter->hw))
> - DPRINTK(PROBE, ERR, "EEPROM Read Error\n");
> + /* don't block initalization here due to bad MAC address */
I just sent a patch to fix these typos and another pops up...
initialization
cheers, Joe
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum
2007-12-17 21:50 Auke Kok
2007-12-17 22:14 ` Joe Perches
@ 2007-12-18 1:17 ` Jeff Garzik
1 sibling, 0 replies; 7+ messages in thread
From: Jeff Garzik @ 2007-12-18 1:17 UTC (permalink / raw)
To: Auke Kok; +Cc: netdev, davem, john.ronciak, jesse.brandeburg, randy.dunlap, joe
Auke Kok wrote:
> To help supporting users with a bad eeprom checksum, dump the
> eeprom info when such a situation is encountered by a user.
>
> Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
> ---
>
> drivers/net/e1000/e1000_main.c | 85 +++++++++++++++++++++++++++++++++++-----
> 1 files changed, 74 insertions(+), 11 deletions(-)
applied #upstream
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-12-18 1:18 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-14 23:35 [PATCH] e1000: Dump the eeprom when a user encounters a bad checksum Auke Kok
2007-12-15 1:08 ` Randy Dunlap
2007-12-15 1:31 ` Joe Perches
2007-12-15 20:35 ` Kok, Auke
-- strict thread matches above, loose matches on Subject: below --
2007-12-17 21:50 Auke Kok
2007-12-17 22:14 ` Joe Perches
2007-12-18 1:17 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).