Skip to content
Snippets Groups Projects
Commit ad5da7ab authored by Andy Fleming's avatar Andy Fleming Committed by Jeff Garzik
Browse files

gianfar: Fix a bug where the pointer never moves for dma_unmap...


The loop that unmaps all of the TX Buffer Descriptors never actually
moves the txbd pointer, so we were just repeatedly unmapping the first one.

Signed-off-by: default avatarAndy Fleming <afleming@freescale.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 204e2f98
No related branches found
No related tags found
No related merge requests found
...@@ -635,6 +635,8 @@ static void free_skb_resources(struct gfar_private *priv) ...@@ -635,6 +635,8 @@ static void free_skb_resources(struct gfar_private *priv)
dev_kfree_skb_any(priv->tx_skbuff[i]); dev_kfree_skb_any(priv->tx_skbuff[i]);
priv->tx_skbuff[i] = NULL; priv->tx_skbuff[i] = NULL;
} }
txbdp++;
} }
kfree(priv->tx_skbuff); kfree(priv->tx_skbuff);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment