diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-06-20 16:10:53 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-27 09:09:17 -0400 |
commit | 61243d8e79de67d703b192fae2c4ab80fc0fac34 (patch) | |
tree | 86dfc875e2426ffe46b1c641c6c00e7c6140d08d /drivers/net/wireless/rt2x00/rt2x00queue.c | |
parent | 923fd7036ff04381b265037469c79a2e7d0d6b67 (diff) |
rt2x00: Remove duplicate deinitialization
When rt2x00queue_alloc_rxskbs() fails rt2x00queue_unitialize()
will be called which will free all rxskb. So we don't need
to do this in the rt2x00queue_alloc_rxskb() function as well.
rt2x00queue_free_skb() unmaps the DMA but doesn't clear the
allocation flag. Since the code is copied from rt2x00queue_unmap_skb()
anyway (and that function does clear the flag) we might as well
use that function directly.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00queue.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00queue.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00queue.c b/drivers/net/wireless/rt2x00/rt2x00queue.c index 49d3bb84ab6b..8e86611791f0 100644 --- a/drivers/net/wireless/rt2x00/rt2x00queue.c +++ b/drivers/net/wireless/rt2x00/rt2x00queue.c | |||
@@ -107,18 +107,7 @@ void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | |||
107 | 107 | ||
108 | void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | 108 | void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) |
109 | { | 109 | { |
110 | struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 110 | rt2x00queue_unmap_skb(rt2x00dev, skb); |
111 | |||
112 | if (skbdesc->flags & SKBDESC_DMA_MAPPED_RX) { | ||
113 | dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len, | ||
114 | DMA_FROM_DEVICE); | ||
115 | } | ||
116 | |||
117 | if (skbdesc->flags & SKBDESC_DMA_MAPPED_TX) { | ||
118 | dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len, | ||
119 | DMA_TO_DEVICE); | ||
120 | } | ||
121 | |||
122 | dev_kfree_skb_any(skb); | 111 | dev_kfree_skb_any(skb); |
123 | } | 112 | } |
124 | 113 | ||
@@ -509,16 +498,11 @@ static int rt2x00queue_alloc_rxskbs(struct rt2x00_dev *rt2x00dev, | |||
509 | for (i = 0; i < queue->limit; i++) { | 498 | for (i = 0; i < queue->limit; i++) { |
510 | skb = rt2x00queue_alloc_rxskb(rt2x00dev, &queue->entries[i]); | 499 | skb = rt2x00queue_alloc_rxskb(rt2x00dev, &queue->entries[i]); |
511 | if (!skb) | 500 | if (!skb) |
512 | goto exit; | 501 | return -ENOMEM; |
513 | queue->entries[i].skb = skb; | 502 | queue->entries[i].skb = skb; |
514 | } | 503 | } |
515 | 504 | ||
516 | return 0; | 505 | return 0; |
517 | |||
518 | exit: | ||
519 | rt2x00queue_free_skbs(rt2x00dev, queue); | ||
520 | |||
521 | return -ENOMEM; | ||
522 | } | 506 | } |
523 | 507 | ||
524 | int rt2x00queue_initialize(struct rt2x00_dev *rt2x00dev) | 508 | int rt2x00queue_initialize(struct rt2x00_dev *rt2x00dev) |