From: Eilon Greenstein Date: Wed, 14 Jan 2009 06:44:07 +0000 (+0000) Subject: bnx2x: Block nvram access when the device is inactive X-Git-Tag: v2.6.27.14~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e230bf234f40f493a284c4dbcec0b331529b609f;p=karo-tx-linux.git bnx2x: Block nvram access when the device is inactive commit 2add3acb11a26cc14b54669433ae6ace6406cbf2 upstream. Don't dump eeprom when bnx2x adapter is down. Running ethtool -e causes an eeh without it when the device is down Signed-off-by: Paul Larson Signed-off-by: Eilon Greenstein Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 53459db67ba5..8d44404ce081 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c @@ -8078,6 +8078,9 @@ static int bnx2x_get_eeprom(struct net_device *dev, struct bnx2x *bp = netdev_priv(dev); int rc; + if (!netif_running(dev)) + return -EAGAIN; + DP(BNX2X_MSG_NVM, "ethtool_eeprom: cmd %d\n" DP_LEVEL " magic 0x%x offset 0x%x (%d) len 0x%x (%d)\n", eeprom->cmd, eeprom->magic, eeprom->offset, eeprom->offset,