Skip to content

Commit

Permalink
qlcnic: fix memory leak in qlcnic_blink_led.
Browse files Browse the repository at this point in the history
o Memory allocated in ETHTOOL_ACTIVE mode, is not getting freed. So,
  in ETHTOOL_ID_INACTIVE mode, return after freeing allocated memory.
o Using set bit instead of blink_down field, as it is also required
  in internal Loopback test and etc.

Signed-off-by: Sucheta Chakraborty <[email protected]>
Signed-off-by: Amit Kumar Salecha <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Sucheta Chakraborty authored and davem330 committed Apr 28, 2011
1 parent 63c3a66 commit 89b4208
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion drivers/net/qlcnic/qlcnic.h
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,7 @@ struct qlcnic_ipaddr {
#define __QLCNIC_RESETTING 2
#define __QLCNIC_START_FW 4
#define __QLCNIC_AER 5
#define __QLCNIC_DIAG_RES_ALLOC 6

#define QLCNIC_INTERRUPT_TEST 1
#define QLCNIC_LOOPBACK_TEST 2
Expand Down Expand Up @@ -913,7 +914,6 @@ struct qlcnic_adapter {
struct net_device *netdev;
struct pci_dev *pdev;

bool blink_was_down;
unsigned long state;
u32 flags;

Expand Down
12 changes: 5 additions & 7 deletions drivers/net/qlcnic/qlcnic_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,6 @@ static int qlcnic_set_led(struct net_device *dev,

switch (state) {
case ETHTOOL_ID_ACTIVE:
adapter->blink_was_down = false;
if (!test_bit(__QLCNIC_DEV_UP, &adapter->state)) {
if (test_and_set_bit(__QLCNIC_RESETTING, &adapter->state))
return -EIO;
Expand All @@ -781,7 +780,7 @@ static int qlcnic_set_led(struct net_device *dev,
clear_bit(__QLCNIC_RESETTING, &adapter->state);
return -EIO;
}
adapter->blink_was_down = true;
set_bit(__QLCNIC_DIAG_RES_ALLOC, &adapter->state);
}

if (adapter->nic_ops->config_led(adapter, 1, 0xf) == 0)
Expand All @@ -792,18 +791,17 @@ static int qlcnic_set_led(struct net_device *dev,
break;

case ETHTOOL_ID_INACTIVE:
if (adapter->nic_ops->config_led(adapter, 0, 0xf) == 0)
return 0;
if (adapter->nic_ops->config_led(adapter, 0, 0xf))
dev_err(&adapter->pdev->dev,
"Failed to reset LED blink state.\n");

dev_err(&adapter->pdev->dev,
"Failed to reset LED blink state.\n");
break;

default:
return -EINVAL;
}

if (adapter->blink_was_down) {
if (test_and_clear_bit(__QLCNIC_DIAG_RES_ALLOC, &adapter->state)) {
qlcnic_diag_free_res(dev, max_sds_rings);
clear_bit(__QLCNIC_RESETTING, &adapter->state);
}
Expand Down

0 comments on commit 89b4208

Please sign in to comment.