* [PATCH] Add eeprom_bad_csum_allow module option to e1000.
@ 2007-10-23 14:58 Adam Jackson
2007-10-23 16:18 ` Kok, Auke
0 siblings, 1 reply; 16+ messages in thread
From: Adam Jackson @ 2007-10-23 14:58 UTC (permalink / raw)
To: linux-kernel; +Cc: Adam Jackson
When the EEPROM gets corrupted, you can fix it with ethtool, but only if
the module loads and creates a network device. But, without this option,
if the EEPROM is corrupted, the driver will not create a network device.
Signed-off-by: Adam Jackson <ajax@redhat.com>
---
drivers/net/e1000/e1000_main.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index f1ce348..b308c32 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -255,6 +255,10 @@ static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
module_param(debug, int, 0);
MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
+static int eeprom_bad_csum_allow = 0;
+module_param(eeprom_bad_csum_allow, int, 0);
+MODULE_PARM_DESC(eeprom_bad_csum_allow, "Allow bad eeprom checksums");
+
/**
* e1000_init_module - Driver Registration Routine
*
@@ -1012,7 +1016,8 @@ e1000_probe(struct pci_dev *pdev,
if (e1000_validate_eeprom_checksum(&adapter->hw) < 0) {
DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
- goto err_eeprom;
+ if (!eeprom_bad_csum_allow)
+ goto err_eeprom;
}
/* copy the MAC address out of the EEPROM */
@@ -1024,7 +1029,8 @@ e1000_probe(struct pci_dev *pdev,
if (!is_valid_ether_addr(netdev->perm_addr)) {
DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
- goto err_eeprom;
+ if (!eeprom_bad_csum_allow)
+ goto err_eeprom;
}
e1000_get_bus_info(&adapter->hw);
--
1.5.2.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 14:58 Adam Jackson
@ 2007-10-23 16:18 ` Kok, Auke
2007-10-23 16:21 ` Adam Jackson
0 siblings, 1 reply; 16+ messages in thread
From: Kok, Auke @ 2007-10-23 16:18 UTC (permalink / raw)
To: Adam Jackson; +Cc: linux-kernel
Adam Jackson wrote:
> When the EEPROM gets corrupted, you can fix it with ethtool, but only if
> the module loads and creates a network device. But, without this option,
> if the EEPROM is corrupted, the driver will not create a network device.
>
> Signed-off-by: Adam Jackson <ajax@redhat.com>
NAK
wrong list, not sent to me, and while for e100 I was OK with this patch, for e1000
it really does not make sense to 'just allow' a bad checksum - if your eeprom is
randomly messed up then you cannot just fix it like this anyway.
Auke
> ---
> drivers/net/e1000/e1000_main.c | 10 ++++++++--
> 1 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
> index f1ce348..b308c32 100644
> --- a/drivers/net/e1000/e1000_main.c
> +++ b/drivers/net/e1000/e1000_main.c
> @@ -255,6 +255,10 @@ static int debug = NETIF_MSG_DRV | NETIF_MSG_PROBE;
> module_param(debug, int, 0);
> MODULE_PARM_DESC(debug, "Debug level (0=none,...,16=all)");
>
> +static int eeprom_bad_csum_allow = 0;
> +module_param(eeprom_bad_csum_allow, int, 0);
> +MODULE_PARM_DESC(eeprom_bad_csum_allow, "Allow bad eeprom checksums");
> +
> /**
> * e1000_init_module - Driver Registration Routine
> *
> @@ -1012,7 +1016,8 @@ e1000_probe(struct pci_dev *pdev,
>
> if (e1000_validate_eeprom_checksum(&adapter->hw) < 0) {
> DPRINTK(PROBE, ERR, "The EEPROM Checksum Is Not Valid\n");
> - goto err_eeprom;
> + if (!eeprom_bad_csum_allow)
> + goto err_eeprom;
> }
>
> /* copy the MAC address out of the EEPROM */
> @@ -1024,7 +1029,8 @@ e1000_probe(struct pci_dev *pdev,
>
> if (!is_valid_ether_addr(netdev->perm_addr)) {
> DPRINTK(PROBE, ERR, "Invalid MAC Address\n");
> - goto err_eeprom;
> + if (!eeprom_bad_csum_allow)
> + goto err_eeprom;
> }
>
> e1000_get_bus_info(&adapter->hw);
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 16:18 ` Kok, Auke
@ 2007-10-23 16:21 ` Adam Jackson
2007-10-23 17:09 ` Kok, Auke
0 siblings, 1 reply; 16+ messages in thread
From: Adam Jackson @ 2007-10-23 16:21 UTC (permalink / raw)
To: Kok, Auke; +Cc: linux-kernel
On Tue, 2007-10-23 at 09:18 -0700, Kok, Auke wrote:
> Adam Jackson wrote:
> > When the EEPROM gets corrupted, you can fix it with ethtool, but only if
> > the module loads and creates a network device. But, without this option,
> > if the EEPROM is corrupted, the driver will not create a network device.
> >
> > Signed-off-by: Adam Jackson <ajax@redhat.com>
>
> NAK
>
> wrong list, not sent to me, and while for e100 I was OK with this patch, for e1000
> it really does not make sense to 'just allow' a bad checksum - if your eeprom is
> randomly messed up then you cannot just fix it like this anyway.
That's strange, I managed to recover an otherwise horked e1000 with it.
What should I have done instead?
- ajax
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 16:21 ` Adam Jackson
@ 2007-10-23 17:09 ` Kok, Auke
2007-10-23 20:40 ` Jeff Garzik
0 siblings, 1 reply; 16+ messages in thread
From: Kok, Auke @ 2007-10-23 17:09 UTC (permalink / raw)
To: Adam Jackson; +Cc: linux-kernel
Adam Jackson wrote:
> On Tue, 2007-10-23 at 09:18 -0700, Kok, Auke wrote:
>> Adam Jackson wrote:
>>> When the EEPROM gets corrupted, you can fix it with ethtool, but only if
>>> the module loads and creates a network device. But, without this option,
>>> if the EEPROM is corrupted, the driver will not create a network device.
>>>
>>> Signed-off-by: Adam Jackson <ajax@redhat.com>
>> NAK
>>
>> wrong list, not sent to me, and while for e100 I was OK with this patch, for e1000
>> it really does not make sense to 'just allow' a bad checksum - if your eeprom is
>> randomly messed up then you cannot just fix it like this anyway.
>
> That's strange, I managed to recover an otherwise horked e1000 with it.
> What should I have done instead?
Dump the eeprom and send us a copy, plus any and all information to the card,
system etc.. I realize that you need the patch to actually create it but the
danger is that people will start using it *without* troubleshooting the real
issue. In various systems the eeprom checksum failure is actually due to a
misconfigured powersavings feature and the checksum is really not bad at all, but
the card just reports random values.
In any case, this patch should not be merged. We often send it around to users to
debug their issue in case it involves eeproms, but merging it will just conceal
the real issue and all of a sudden a flood of people stop reporting *real* issues
to us.
for e100 the case is completely different: there are many boarded e100 chips out
there mostly on embedded devices where the embedded manufacturer just forgot to
even program the eeprom, and the device really does not care that much at all.
Cheers,
Auke
Auke
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 17:09 ` Kok, Auke
@ 2007-10-23 20:40 ` Jeff Garzik
2007-10-23 21:01 ` Kok, Auke
` (2 more replies)
0 siblings, 3 replies; 16+ messages in thread
From: Jeff Garzik @ 2007-10-23 20:40 UTC (permalink / raw)
To: Kok, Auke; +Cc: Adam Jackson, linux-kernel, David Miller, netdev
Kok, Auke wrote:
> Adam Jackson wrote:
>> On Tue, 2007-10-23 at 09:18 -0700, Kok, Auke wrote:
>>> Adam Jackson wrote:
>>>> When the EEPROM gets corrupted, you can fix it with ethtool, but only if
>>>> the module loads and creates a network device. But, without this option,
>>>> if the EEPROM is corrupted, the driver will not create a network device.
>>>>
>>>> Signed-off-by: Adam Jackson <ajax@redhat.com>
>>> NAK
>>>
>>> wrong list, not sent to me, and while for e100 I was OK with this patch, for e1000
>>> it really does not make sense to 'just allow' a bad checksum - if your eeprom is
>>> randomly messed up then you cannot just fix it like this anyway.
>> That's strange, I managed to recover an otherwise horked e1000 with it.
>> What should I have done instead?
>
>
> Dump the eeprom and send us a copy, plus any and all information to the card,
> system etc.. I realize that you need the patch to actually create it but the
> danger is that people will start using it *without* troubleshooting the real
> issue. In various systems the eeprom checksum failure is actually due to a
> misconfigured powersavings feature and the checksum is really not bad at all, but
> the card just reports random values.
>
> In any case, this patch should not be merged. We often send it around to users to
> debug their issue in case it involves eeproms, but merging it will just conceal
> the real issue and all of a sudden a flood of people stop reporting *real* issues
> to us.
Sorry, I disagree. Just as with e100, if there is a clear way the user
can recover their setup -- and Adam says his was effective -- I don't
see why we should be denying users the ability to use their own hardware.
Jeff
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 20:40 ` Jeff Garzik
@ 2007-10-23 21:01 ` Kok, Auke
2007-10-23 21:51 ` David Miller
2007-10-23 21:20 ` Dave Jones
2007-10-23 21:48 ` David Miller
2 siblings, 1 reply; 16+ messages in thread
From: Kok, Auke @ 2007-10-23 21:01 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Adam Jackson, linux-kernel, David Miller, netdev
Jeff Garzik wrote:
> Kok, Auke wrote:
>> Adam Jackson wrote:
>>> On Tue, 2007-10-23 at 09:18 -0700, Kok, Auke wrote:
>>>> Adam Jackson wrote:
>>>>> When the EEPROM gets corrupted, you can fix it with ethtool, but
>>>>> only if
>>>>> the module loads and creates a network device. But, without this
>>>>> option,
>>>>> if the EEPROM is corrupted, the driver will not create a network
>>>>> device.
>>>>>
>>>>> Signed-off-by: Adam Jackson <ajax@redhat.com>
>>>> NAK
>>>>
>>>> wrong list, not sent to me, and while for e100 I was OK with this
>>>> patch, for e1000
>>>> it really does not make sense to 'just allow' a bad checksum - if
>>>> your eeprom is
>>>> randomly messed up then you cannot just fix it like this anyway.
>>> That's strange, I managed to recover an otherwise horked e1000 with it.
>>> What should I have done instead?
>>
>>
>> Dump the eeprom and send us a copy, plus any and all information to
>> the card,
>> system etc.. I realize that you need the patch to actually create it
>> but the
>> danger is that people will start using it *without* troubleshooting
>> the real
>> issue. In various systems the eeprom checksum failure is actually due
>> to a
>> misconfigured powersavings feature and the checksum is really not bad
>> at all, but
>> the card just reports random values.
>>
>> In any case, this patch should not be merged. We often send it around
>> to users to
>> debug their issue in case it involves eeproms, but merging it will
>> just conceal
>> the real issue and all of a sudden a flood of people stop reporting
>> *real* issues
>> to us.
>
>
> Sorry, I disagree. Just as with e100, if there is a clear way the user
> can recover their setup -- and Adam says his was effective -- I don't
> see why we should be denying users the ability to use their own hardware.
That's not even relevant, I already offer the same patch offline to people who
*really* only have a wrong checksum, AFTER we check the contents of their eeprom
for them.
We help everyone out, and if you merge this patch you will prevent users from
getting to us for support in the first place.
I realize that we should probably document the "bad eeprom checksum" case more
decently but I think merging this patch is a bad idea for the *user* in all cases.
You completely bypass the fact that e100 eeproms and e1000 eeproms are completely
different beasts as well, one can be practically empty in all cases (e100), the
other one every bit counts (most e1000's), which is an unfair representation and
falsely tells the user that he can just do this without any information or
disclaimer as to what he may expect afterwards.
Auke
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 20:40 ` Jeff Garzik
2007-10-23 21:01 ` Kok, Auke
@ 2007-10-23 21:20 ` Dave Jones
2007-10-23 21:38 ` Alan Cox
` (2 more replies)
2007-10-23 21:48 ` David Miller
2 siblings, 3 replies; 16+ messages in thread
From: Dave Jones @ 2007-10-23 21:20 UTC (permalink / raw)
To: Jeff Garzik; +Cc: Kok, Auke, Adam Jackson, linux-kernel, David Miller, netdev
On Tue, Oct 23, 2007 at 04:40:01PM -0400, Jeff Garzik wrote:
> > In any case, this patch should not be merged. We often send it around to users to
> > debug their issue in case it involves eeproms, but merging it will just conceal
> > the real issue and all of a sudden a flood of people stop reporting *real* issues
> > to us.
>
> Sorry, I disagree. Just as with e100, if there is a clear way the user
> can recover their setup -- and Adam says his was effective -- I don't
> see why we should be denying users the ability to use their own hardware.
Indeed. This is a common enough problem that not including it causes more pain
than its worth. I have two affected boxes myself that I actually thought
the hardware was dead before I tried ajax's patch.
People aren't going to report this as a bug. They aren't going to try out patches,
they're going to do what I did and stick another network card in the box and
go on with life.
Our users deserve better than this.
Dave
--
http://www.codemonkey.org.uk
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 21:20 ` Dave Jones
@ 2007-10-23 21:38 ` Alan Cox
2007-10-23 21:53 ` David Miller
2007-10-23 23:03 ` Kok, Auke
2 siblings, 0 replies; 16+ messages in thread
From: Alan Cox @ 2007-10-23 21:38 UTC (permalink / raw)
To: Dave Jones
Cc: Jeff Garzik, Kok, Auke, Adam Jackson, linux-kernel, David Miller,
netdev
> People aren't going to report this as a bug. They aren't going to try out patches,
> they're going to do what I did and stick another network card in the box and
> go on with life.
>
> Our users deserve better than this.
Agreed. By all means warn people, or give them a 1-800 Intel number to
phone, but they should be able to continue as well.
Alan
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 20:40 ` Jeff Garzik
2007-10-23 21:01 ` Kok, Auke
2007-10-23 21:20 ` Dave Jones
@ 2007-10-23 21:48 ` David Miller
2 siblings, 0 replies; 16+ messages in thread
From: David Miller @ 2007-10-23 21:48 UTC (permalink / raw)
To: jeff; +Cc: auke-jan.h.kok, ajax, linux-kernel, netdev
From: Jeff Garzik <jeff@garzik.org>
Date: Tue, 23 Oct 2007 16:40:01 -0400
> Sorry, I disagree. Just as with e100, if there is a clear way the user
> can recover their setup -- and Adam says his was effective -- I don't
> see why we should be denying users the ability to use their own hardware.
I'd like to second these sentiments.
Just because you can come up with cases where using a wrong
eeprom would fail, does not mean the facility should not be
provided at all.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 21:01 ` Kok, Auke
@ 2007-10-23 21:51 ` David Miller
0 siblings, 0 replies; 16+ messages in thread
From: David Miller @ 2007-10-23 21:51 UTC (permalink / raw)
To: auke-jan.h.kok; +Cc: jeff, ajax, linux-kernel, netdev
From: "Kok, Auke" <auke-jan.h.kok@intel.com>
Date: Tue, 23 Oct 2007 14:01:21 -0700
> We help everyone out, and if you merge this patch you will prevent
> users from getting to us for support in the first place.
If using the bad eeprom has to be explicitly enabled by the user, your
argument holds no water. We just need to make sure the patch does
that.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 21:20 ` Dave Jones
2007-10-23 21:38 ` Alan Cox
@ 2007-10-23 21:53 ` David Miller
2007-10-23 23:19 ` Kok, Auke
2007-10-23 23:03 ` Kok, Auke
2 siblings, 1 reply; 16+ messages in thread
From: David Miller @ 2007-10-23 21:53 UTC (permalink / raw)
To: davej; +Cc: jeff, auke-jan.h.kok, ajax, linux-kernel, netdev
From: Dave Jones <davej@redhat.com>
Date: Tue, 23 Oct 2007 17:20:26 -0400
> Indeed. This is a common enough problem that not including it causes
> more pain than its worth. I have two affected boxes myself that I
> actually thought the hardware was dead before I tried ajax's patch.
>
> People aren't going to report this as a bug. They aren't going to
> try out patches, they're going to do what I did and stick another
> network card in the box and go on with life.
>
> Our users deserve better than this.
Seconded. The resistence to this patch is just flat-out rediculious,
just like it was in the e100 case.
And I think all of this "e1000 is different!" talk is merely a
scarecrow for the fact that Intel simply doesn't want this patch
merged for some other reason.
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 21:20 ` Dave Jones
2007-10-23 21:38 ` Alan Cox
2007-10-23 21:53 ` David Miller
@ 2007-10-23 23:03 ` Kok, Auke
2007-10-23 23:53 ` Stephen Hemminger
2007-10-24 5:38 ` Dave Jones
2 siblings, 2 replies; 16+ messages in thread
From: Kok, Auke @ 2007-10-23 23:03 UTC (permalink / raw)
To: Dave Jones, Jeff Garzik, Kok, Auke, Adam Jackson, linux-kernel,
David Miller, netdev
Dave Jones wrote:
> On Tue, Oct 23, 2007 at 04:40:01PM -0400, Jeff Garzik wrote:
>
> > > In any case, this patch should not be merged. We often send it around to users to
> > > debug their issue in case it involves eeproms, but merging it will just conceal
> > > the real issue and all of a sudden a flood of people stop reporting *real* issues
> > > to us.
> >
> > Sorry, I disagree. Just as with e100, if there is a clear way the user
> > can recover their setup -- and Adam says his was effective -- I don't
> > see why we should be denying users the ability to use their own hardware.
>
> Indeed. This is a common enough problem that not including it causes more pain
> than its worth. I have two affected boxes myself that I actually thought
> the hardware was dead before I tried ajax's patch.
look: You should have reported this to us and you didn't. Now you are using the
fact that you did not report it as an argument which is out of place.
why do you say it is common? how often have you seen this and not reported it back
to our support? are you willingly trying to frustrate this issue?
Auke
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 21:53 ` David Miller
@ 2007-10-23 23:19 ` Kok, Auke
0 siblings, 0 replies; 16+ messages in thread
From: Kok, Auke @ 2007-10-23 23:19 UTC (permalink / raw)
To: David Miller; +Cc: davej, jeff, ajax, linux-kernel, netdev
David Miller wrote:
> From: Dave Jones <davej@redhat.com>
> Date: Tue, 23 Oct 2007 17:20:26 -0400
>
>> Indeed. This is a common enough problem that not including it causes
>> more pain than its worth. I have two affected boxes myself that I
>> actually thought the hardware was dead before I tried ajax's patch.
>>
>> People aren't going to report this as a bug. They aren't going to
>> try out patches, they're going to do what I did and stick another
>> network card in the box and go on with life.
>>
>> Our users deserve better than this.
>
> Seconded. The resistence to this patch is just flat-out rediculious,
> just like it was in the e100 case.
>
> And I think all of this "e1000 is different!" talk is merely a
> scarecrow for the fact that Intel simply doesn't want this patch
> merged for some other reason.
no, e1000 eeproms contain many timing information and bits crucial to getting the
adapter working in the first place. All of these are documented in our PUBLICALLY
available SDM which is downloadable from our e1000.sf.net website. (e.g. 8254x
sdm, section 5.6, page 98+). For pci-e silicon this gets much more complex.
we haven't even heard from the user what hardware he has nor gotten an eeprom dump
from him.
I'm not hiding anything and you're deliberately creating a negative atmosphere here.
The people who do have eeprom checksum issues have come to us in the past. The
fact that you didn't see them means that they *properly* made it to us.
As a matter of fact I am still working on a permanent solution for bad eeprom
checksums on lenovo T60 laptops. Should I just drop that issue and leave the real
problem unsolved?
This patch only affirms *YOUR* point of view, not that of many customers who have
come to us and received help with many issues. You're completely ignoring that and
that is unfair.
If we want this patch in the kernel in some form that actually shows in a decent
way what a user *should* do and more importantly should *know*, then maybe we can
talk about that.
The patch in question does not add any extra information nor does it do some
sanity checking on the eeprom values or turn off any of the problematic features
that we really should disable. We even have code that allows some of the hardware
to run without a properly setup eeprom in a few hardware cases. And we definately
should print out a lot more warnings to the user that running with garbage eeprom
data is _not_ a good idea.
Auke
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 23:03 ` Kok, Auke
@ 2007-10-23 23:53 ` Stephen Hemminger
2007-10-24 5:38 ` Dave Jones
1 sibling, 0 replies; 16+ messages in thread
From: Stephen Hemminger @ 2007-10-23 23:53 UTC (permalink / raw)
To: Kok, Auke
Cc: Dave Jones, Jeff Garzik, Kok, Auke, Adam Jackson, linux-kernel,
David Miller, netdev
On Tue, 23 Oct 2007 16:03:38 -0700
"Kok, Auke" <auke-jan.h.kok@intel.com> wrote:
> Dave Jones wrote:
> > On Tue, Oct 23, 2007 at 04:40:01PM -0400, Jeff Garzik wrote:
> >
> > > > In any case, this patch should not be merged. We often send it around to users to
> > > > debug their issue in case it involves eeproms, but merging it will just conceal
> > > > the real issue and all of a sudden a flood of people stop reporting *real* issues
> > > > to us.
> > >
> > > Sorry, I disagree. Just as with e100, if there is a clear way the user
> > > can recover their setup -- and Adam says his was effective -- I don't
> > > see why we should be denying users the ability to use their own hardware.
> >
> > Indeed. This is a common enough problem that not including it causes more pain
> > than its worth. I have two affected boxes myself that I actually thought
> > the hardware was dead before I tried ajax's patch.
>
>
> look: You should have reported this to us and you didn't. Now you are using the
> fact that you did not report it as an argument which is out of place.
>
> why do you say it is common? how often have you seen this and not reported it back
> to our support? are you willingly trying to frustrate this issue?
>
>
> Auke
What about a compromise like "ignore_checksum" module option?
That way users with bad checksums wouldn't just ignore the problem (no one reads console logs),
but would have a way to correct the checksum.
There are many reasons would want the ability to fix the problem themselves without
asking Intel.
--
Stephen Hemminger <shemminger@linux-foundation.org>
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
@ 2007-10-24 4:53 speedy
0 siblings, 0 replies; 16+ messages in thread
From: speedy @ 2007-10-24 4:53 UTC (permalink / raw)
To: Kok, Auke; +Cc: linux-kernel
Hello Auke, Kernel crew,
> I realize that you need the patch to actually create it but the
> danger is that people will start using it *without* troubleshooting the real
> issue.
Just write out a big fat kernel output with explanations of
the override parameter, possible repercusionss of not fixing it
and an email address to which you (or, better yet - Intel) want
stuff "this and that" reported.
I hadn't the slightest idea from the kernel messages or the skim of
the driver source that anyone is wanting feedback on this issue...
ps. Were there recently (2.6.22+) any known issues about e1000 refusing
to send packets out / getting stuck upon jumbo-frames being enabled?
ps2. I'm not following this list, sorry about the poor thread CC:
quality
--
Best regards,
speedy mailto:speedy@3d-io.com
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [PATCH] Add eeprom_bad_csum_allow module option to e1000.
2007-10-23 23:03 ` Kok, Auke
2007-10-23 23:53 ` Stephen Hemminger
@ 2007-10-24 5:38 ` Dave Jones
1 sibling, 0 replies; 16+ messages in thread
From: Dave Jones @ 2007-10-24 5:38 UTC (permalink / raw)
To: Kok, Auke; +Cc: Jeff Garzik, Adam Jackson, linux-kernel, David Miller, netdev
On Tue, Oct 23, 2007 at 04:03:38PM -0700, Kok, Auke wrote:
> Dave Jones wrote:
> > On Tue, Oct 23, 2007 at 04:40:01PM -0400, Jeff Garzik wrote:
> >
> > > > In any case, this patch should not be merged. We often send it around to users to
> > > > debug their issue in case it involves eeproms, but merging it will just conceal
> > > > the real issue and all of a sudden a flood of people stop reporting *real* issues
> > > > to us.
> > >
> > > Sorry, I disagree. Just as with e100, if there is a clear way the user
> > > can recover their setup -- and Adam says his was effective -- I don't
> > > see why we should be denying users the ability to use their own hardware.
> >
> > Indeed. This is a common enough problem that not including it causes more pain
> > than its worth. I have two affected boxes myself that I actually thought
> > the hardware was dead before I tried ajax's patch.
>
>
> look: You should have reported this to us and you didn't. Now you are using the
> fact that you did not report it as an argument which is out of place.
you're missing the point. It looks like a hardware failure. Why would I report this?
> why do you say it is common? how often have you seen this and not reported it back
> to our support? are you willingly trying to frustrate this issue?
Not at all. The only frustration here is that I used to have a kernel that
worked, upgraded, and thought that my hardware was broken.
How many other users thought the same ?
Dave
--
http://www.codemonkey.org.uk
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2007-10-24 5:41 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-24 4:53 [PATCH] Add eeprom_bad_csum_allow module option to e1000 speedy
-- strict thread matches above, loose matches on Subject: below --
2007-10-23 14:58 Adam Jackson
2007-10-23 16:18 ` Kok, Auke
2007-10-23 16:21 ` Adam Jackson
2007-10-23 17:09 ` Kok, Auke
2007-10-23 20:40 ` Jeff Garzik
2007-10-23 21:01 ` Kok, Auke
2007-10-23 21:51 ` David Miller
2007-10-23 21:20 ` Dave Jones
2007-10-23 21:38 ` Alan Cox
2007-10-23 21:53 ` David Miller
2007-10-23 23:19 ` Kok, Auke
2007-10-23 23:03 ` Kok, Auke
2007-10-23 23:53 ` Stephen Hemminger
2007-10-24 5:38 ` Dave Jones
2007-10-23 21:48 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox