* [PATCH net-next 0/1] netxen: bug fix
@ 2012-06-29 6:12 Rajesh Borundia
2012-06-29 6:12 ` [PATCH net-next 1/1] netxen_nic: restrict force firmware dump when dump is disabled Rajesh Borundia
0 siblings, 1 reply; 3+ messages in thread
From: Rajesh Borundia @ 2012-06-29 6:12 UTC (permalink / raw)
To: davem; +Cc: netdev, ameen.rahman
Please apply it to net-next.
Thanks,
Rajesh
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH net-next 1/1] netxen_nic: restrict force firmware dump when dump is disabled.
2012-06-29 6:12 [PATCH net-next 0/1] netxen: bug fix Rajesh Borundia
@ 2012-06-29 6:12 ` Rajesh Borundia
2012-06-29 7:54 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Rajesh Borundia @ 2012-06-29 6:12 UTC (permalink / raw)
To: davem; +Cc: netdev, ameen.rahman, Manish chopra
From: Manish chopra <manish.chopra@qlogic.com>
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>
---
drivers/net/ethernet/qlogic/netxen/netxen_nic.h | 4 ++--
.../ethernet/qlogic/netxen/netxen_nic_ethtool.c | 13 ++++++++++---
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/drivers/net/ethernet/qlogic/netxen/netxen_nic.h b/drivers/net/ethernet/qlogic/netxen/netxen_nic.h
index 37ccbe5..eb3dfdb 100644
--- a/drivers/net/ethernet/qlogic/netxen/netxen_nic.h
+++ b/drivers/net/ethernet/qlogic/netxen/netxen_nic.h
@@ -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)
diff --git a/drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c b/drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c
index 9103e3e..10468e7 100644
--- a/drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c
+++ b/drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c
@@ -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;
}
@@ -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;
--
1.7.3.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net-next 1/1] netxen_nic: restrict force firmware dump when dump is disabled.
2012-06-29 6:12 ` [PATCH net-next 1/1] netxen_nic: restrict force firmware dump when dump is disabled Rajesh Borundia
@ 2012-06-29 7:54 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2012-06-29 7:54 UTC (permalink / raw)
To: rajesh.borundia; +Cc: netdev, ameen.rahman, manish.chopra
From: Rajesh Borundia <rajesh.borundia@qlogic.com>
Date: Fri, 29 Jun 2012 02:12:21 -0400
> From: Manish chopra <manish.chopra@qlogic.com>
>
> 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>
Applied.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-06-29 7:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-29 6:12 [PATCH net-next 0/1] netxen: bug fix Rajesh Borundia
2012-06-29 6:12 ` [PATCH net-next 1/1] netxen_nic: restrict force firmware dump when dump is disabled Rajesh Borundia
2012-06-29 7:54 ` David Miller
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).