diff options
| author | Amit Kumar Salecha <amit.salecha@qlogic.com> | 2010-01-07 17:10:14 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-01-08 03:35:27 -0500 |
| commit | 011f4ea09768fdf6f95e3781cba2ed681a2ac710 (patch) | |
| tree | b21804d01315379dcb9b8d6e9181c93728953441 /drivers | |
| parent | 704da560c0a0120d8869187f511491a00951a1d3 (diff) | |
netxen: fix tx ring memory leak
o While unloading driver or resetting the context, tx ring was not
getting free.
Signed-off-by: Amit Kumar Salecha <amit.salecha@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/net/netxen/netxen_nic_init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/netxen/netxen_nic_init.c b/drivers/net/netxen/netxen_nic_init.c index 02f8d4b4db63..925b69958da5 100644 --- a/drivers/net/netxen/netxen_nic_init.c +++ b/drivers/net/netxen/netxen_nic_init.c | |||
| @@ -184,6 +184,8 @@ skip_rds: | |||
| 184 | 184 | ||
| 185 | tx_ring = adapter->tx_ring; | 185 | tx_ring = adapter->tx_ring; |
| 186 | vfree(tx_ring->cmd_buf_arr); | 186 | vfree(tx_ring->cmd_buf_arr); |
| 187 | kfree(tx_ring); | ||
| 188 | adapter->tx_ring = NULL; | ||
| 187 | } | 189 | } |
| 188 | 190 | ||
| 189 | int netxen_alloc_sw_resources(struct netxen_adapter *adapter) | 191 | int netxen_alloc_sw_resources(struct netxen_adapter *adapter) |
