* [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM
@ 2008-09-02 21:48 akpm
2008-09-02 22:01 ` Brandeburg, Jesse
2008-09-03 20:59 ` Kok, Auke
0 siblings, 2 replies; 4+ messages in thread
From: akpm @ 2008-09-02 21:48 UTC (permalink / raw)
To: jeff
Cc: netdev, akpm, chrisl, arvidjaar, bruce.w.allan, jeffrey.t.kirsher,
jesse.brandeburg, john.ronciak, peter.p.waskiewicz.jr, pratap,
zach
From: Christopher Li <chrisl@vmware.com>
Andrey reports e1000e corruption, and that a patch in vmware's ESX fixed
it.
The EEPROM corruption is triggered by concurrent access of the EEPROM
read/write. Putting a lock around it solve the problem.
[akpm@linux-foundation.org: use DEFINE_SPINLOCK to avoid confusing lockdep]
Signed-off-by: Christopher Li <chrisl@vmware.com>
Reported-by: Andrey Borzenkov <arvidjaar@mail.ru>
Cc: Zach Amsden <zach@vmware.com>
Cc: Pratap Subrahmanyam <pratap@vmware.com>
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Cc: Jesse Brandeburg <jesse.brandeburg@intel.com>
Cc: Bruce Allan <bruce.w.allan@intel.com>
Cc: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
Cc: John Ronciak <john.ronciak@intel.com>
Cc: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/net/e1000/e1000_hw.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff -puN drivers/net/e1000/e1000_hw.c~e1000e-prevent-corruption-of-eeprom-nvm drivers/net/e1000/e1000_hw.c
--- a/drivers/net/e1000/e1000_hw.c~e1000e-prevent-corruption-of-eeprom-nvm
+++ a/drivers/net/e1000/e1000_hw.c
@@ -144,6 +144,8 @@ static s32 e1000_host_if_read_cookie(str
static u8 e1000_calculate_mng_checksum(char *buffer, u32 length);
static s32 e1000_configure_kmrn_for_10_100(struct e1000_hw *hw, u16 duplex);
static s32 e1000_configure_kmrn_for_1000(struct e1000_hw *hw);
+static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
+static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
/* IGP cable length table */
static const
@@ -168,6 +170,8 @@ u16 e1000_igp_2_cable_length_table[IGP02
83, 89, 95, 100, 105, 109, 113, 116, 119, 122, 124,
104, 109, 114, 118, 121, 124};
+static DEFINE_SPINLOCK(e1000_eeprom_lock);
+
/******************************************************************************
* Set the phy type member in the hw struct.
*
@@ -4904,6 +4908,15 @@ static s32 e1000_spi_eeprom_ready(struct
*****************************************************************************/
s32 e1000_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
{
+ s32 ret;
+ spin_lock(&e1000_eeprom_lock);
+ ret = e1000_do_read_eeprom(hw, offset, words, data);
+ spin_unlock(&e1000_eeprom_lock);
+ return ret;
+}
+
+static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
+{
struct e1000_eeprom_info *eeprom = &hw->eeprom;
u32 i = 0;
@@ -5236,6 +5249,16 @@ s32 e1000_update_eeprom_checksum(struct
*****************************************************************************/
s32 e1000_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
{
+ s32 ret;
+ spin_lock(&e1000_eeprom_lock);
+ ret = e1000_do_write_eeprom(hw, offset, words, data);
+ spin_unlock(&e1000_eeprom_lock);
+ return ret;
+}
+
+
+static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
+{
struct e1000_eeprom_info *eeprom = &hw->eeprom;
s32 status = 0;
_
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM
2008-09-02 21:48 [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM akpm
@ 2008-09-02 22:01 ` Brandeburg, Jesse
2008-09-13 19:15 ` Jeff Garzik
2008-09-03 20:59 ` Kok, Auke
1 sibling, 1 reply; 4+ messages in thread
From: Brandeburg, Jesse @ 2008-09-02 22:01 UTC (permalink / raw)
To: akpm, jeff
Cc: netdev, chrisl, arvidjaar, Allan, Bruce W, Kirsher, Jeffrey T,
Ronciak, John, Waskiewicz Jr, Peter P, pratap, zach
akpm@linux-foundation.org wrote:
> From: Christopher Li <chrisl@vmware.com>
>
> Andrey reports e1000e corruption, and that a patch in vmware's ESX
> fixed
> it.
>
> The EEPROM corruption is triggered by concurrent access of the EEPROM
> read/write. Putting a lock around it solve the problem.
>
NAK. Please do not apply this patch, for reasons mentioned in my other
reply just sent to netdev.
The RTNL should be preventing this from being a possible bug in *Linux*
and if it is not we have much larger problems, not the least of which is
that this patch doesn't lock against the driver accessing the eeprom
simultaneously.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM
2008-09-02 21:48 [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM akpm
2008-09-02 22:01 ` Brandeburg, Jesse
@ 2008-09-03 20:59 ` Kok, Auke
1 sibling, 0 replies; 4+ messages in thread
From: Kok, Auke @ 2008-09-03 20:59 UTC (permalink / raw)
To: akpm
Cc: jeff, netdev, chrisl, arvidjaar, bruce.w.allan, jeffrey.t.kirsher,
jesse.brandeburg, john.ronciak, peter.p.waskiewicz.jr, pratap,
zach
akpm@linux-foundation.org wrote:
> From: Christopher Li <chrisl@vmware.com>
>
> Andrey reports e1000e corruption, and that a patch in vmware's ESX fixed
> it.
wrong subject? the patch applies to e1000, not e1000e...
>
> The EEPROM corruption is triggered by concurrent access of the EEPROM
> read/write. Putting a lock around it solve the problem.
>
> [akpm@linux-foundation.org: use DEFINE_SPINLOCK to avoid confusing lockdep]
> Signed-off-by: Christopher Li <chrisl@vmware.com>
> Reported-by: Andrey Borzenkov <arvidjaar@mail.ru>
> Cc: Zach Amsden <zach@vmware.com>
> Cc: Pratap Subrahmanyam <pratap@vmware.com>
> Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
> Cc: Jesse Brandeburg <jesse.brandeburg@intel.com>
> Cc: Bruce Allan <bruce.w.allan@intel.com>
> Cc: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
> Cc: John Ronciak <john.ronciak@intel.com>
> Cc: Jeff Garzik <jeff@garzik.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
>
> drivers/net/e1000/e1000_hw.c | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> diff -puN drivers/net/e1000/e1000_hw.c~e1000e-prevent-corruption-of-eeprom-nvm drivers/net/e1000/e1000_hw.c
> --- a/drivers/net/e1000/e1000_hw.c~e1000e-prevent-corruption-of-eeprom-nvm
> +++ a/drivers/net/e1000/e1000_hw.c
> @@ -144,6 +144,8 @@ static s32 e1000_host_if_read_cookie(str
> static u8 e1000_calculate_mng_checksum(char *buffer, u32 length);
> static s32 e1000_configure_kmrn_for_10_100(struct e1000_hw *hw, u16 duplex);
> static s32 e1000_configure_kmrn_for_1000(struct e1000_hw *hw);
> +static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
> +static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
>
> /* IGP cable length table */
> static const
> @@ -168,6 +170,8 @@ u16 e1000_igp_2_cable_length_table[IGP02
> 83, 89, 95, 100, 105, 109, 113, 116, 119, 122, 124,
> 104, 109, 114, 118, 121, 124};
>
> +static DEFINE_SPINLOCK(e1000_eeprom_lock);
> +
> /******************************************************************************
> * Set the phy type member in the hw struct.
> *
> @@ -4904,6 +4908,15 @@ static s32 e1000_spi_eeprom_ready(struct
> *****************************************************************************/
> s32 e1000_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
> {
> + s32 ret;
> + spin_lock(&e1000_eeprom_lock);
> + ret = e1000_do_read_eeprom(hw, offset, words, data);
> + spin_unlock(&e1000_eeprom_lock);
> + return ret;
> +}
> +
> +static s32 e1000_do_read_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
> +{
> struct e1000_eeprom_info *eeprom = &hw->eeprom;
> u32 i = 0;
>
> @@ -5236,6 +5249,16 @@ s32 e1000_update_eeprom_checksum(struct
> *****************************************************************************/
> s32 e1000_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
> {
> + s32 ret;
> + spin_lock(&e1000_eeprom_lock);
> + ret = e1000_do_write_eeprom(hw, offset, words, data);
> + spin_unlock(&e1000_eeprom_lock);
> + return ret;
> +}
> +
> +
> +static s32 e1000_do_write_eeprom(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
> +{
> struct e1000_eeprom_info *eeprom = &hw->eeprom;
> s32 status = 0;
>
> _
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM
2008-09-02 22:01 ` Brandeburg, Jesse
@ 2008-09-13 19:15 ` Jeff Garzik
0 siblings, 0 replies; 4+ messages in thread
From: Jeff Garzik @ 2008-09-13 19:15 UTC (permalink / raw)
To: Brandeburg, Jesse
Cc: akpm, netdev, chrisl, arvidjaar, Allan, Bruce W,
Kirsher, Jeffrey T, Ronciak, John, Waskiewicz Jr, Peter P, pratap,
zach
Brandeburg, Jesse wrote:
> akpm@linux-foundation.org wrote:
>> From: Christopher Li <chrisl@vmware.com>
>>
>> Andrey reports e1000e corruption, and that a patch in vmware's ESX
>> fixed
>> it.
>>
>> The EEPROM corruption is triggered by concurrent access of the EEPROM
>> read/write. Putting a lock around it solve the problem.
>>
>
> NAK. Please do not apply this patch, for reasons mentioned in my other
> reply just sent to netdev.
>
> The RTNL should be preventing this from being a possible bug in *Linux*
> and if it is not we have much larger problems, not the least of which is
> that this patch doesn't lock against the driver accessing the eeprom
> simultaneously.
Ping. A problem still occurs, regardless of what should be prevented?
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-09-13 19:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-02 21:48 [patch for 2.6.27? 4/4] e1000e: prevent corruption of EEPROM/NVM akpm
2008-09-02 22:01 ` Brandeburg, Jesse
2008-09-13 19:15 ` Jeff Garzik
2008-09-03 20:59 ` Kok, Auke
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).