Skip to content

Commit

Permalink
netxen_nic: restrict force firmware dump when dump is disabled.
Browse files Browse the repository at this point in the history
o Set the ethtool_dump flag (=ETH_FW_DUMP_DISABLE) when dump is disabled.
o update driver version to 4.0.80

Signed-off-by: Manish chopra <manish.chopra@qlogic.com>
Signed-off-by: Rajesh Borundia <rajesh.borundia@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Manish chopra authored and David S. Miller committed Jun 29, 2012
1 parent d0087b2 commit a777c89
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/qlogic/netxen/netxen_nic.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@

#define _NETXEN_NIC_LINUX_MAJOR 4
#define _NETXEN_NIC_LINUX_MINOR 0
#define _NETXEN_NIC_LINUX_SUBVERSION 79
#define NETXEN_NIC_LINUX_VERSIONID "4.0.79"
#define _NETXEN_NIC_LINUX_SUBVERSION 80
#define NETXEN_NIC_LINUX_VERSIONID "4.0.80"

#define NETXEN_VERSION_CODE(a, b, c) (((a) << 24) + ((b) << 16) + (c))
#define _major(v) (((v) >> 24) & 0xff)
Expand Down
13 changes: 10 additions & 3 deletions drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,12 @@ netxen_get_dump_flag(struct net_device *netdev, struct ethtool_dump *dump)
dump->len = mdump->md_dump_size;
else
dump->len = 0;
dump->flag = mdump->md_capture_mask;

if (!mdump->md_enabled)
dump->flag = ETH_FW_DUMP_DISABLE;
else
dump->flag = mdump->md_capture_mask;

dump->version = adapter->fw_version;
return 0;
}
Expand All @@ -840,8 +845,10 @@ netxen_set_dump(struct net_device *netdev, struct ethtool_dump *val)

switch (val->flag) {
case NX_FORCE_FW_DUMP_KEY:
if (!mdump->md_enabled)
mdump->md_enabled = 1;
if (!mdump->md_enabled) {
netdev_info(netdev, "FW dump not enabled\n");
return 0;
}
if (adapter->fw_mdump_rdy) {
netdev_info(netdev, "Previous dump not cleared, not forcing dump\n");
return 0;
Expand Down

0 comments on commit a777c89

Please sign in to comment.