mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 12:14:01 +08:00
gianfar: Fix a memory leak in gianfar close code
gianfar needed to ensure existence of the *skbuff arrays before freeing the skbs in them, rather than ensuring their nonexistence. Signed-off-by: Andy Fleming <afleming@freescale.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
baff42ab14
commit
7c0d10d35f
@ -1638,13 +1638,13 @@ static void free_skb_resources(struct gfar_private *priv)
|
|||||||
/* Go through all the buffer descriptors and free their data buffers */
|
/* Go through all the buffer descriptors and free their data buffers */
|
||||||
for (i = 0; i < priv->num_tx_queues; i++) {
|
for (i = 0; i < priv->num_tx_queues; i++) {
|
||||||
tx_queue = priv->tx_queue[i];
|
tx_queue = priv->tx_queue[i];
|
||||||
if(!tx_queue->tx_skbuff)
|
if(tx_queue->tx_skbuff)
|
||||||
free_skb_tx_queue(tx_queue);
|
free_skb_tx_queue(tx_queue);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < priv->num_rx_queues; i++) {
|
for (i = 0; i < priv->num_rx_queues; i++) {
|
||||||
rx_queue = priv->rx_queue[i];
|
rx_queue = priv->rx_queue[i];
|
||||||
if(!rx_queue->rx_skbuff)
|
if(rx_queue->rx_skbuff)
|
||||||
free_skb_rx_queue(rx_queue);
|
free_skb_rx_queue(rx_queue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user