aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00mac.c
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-01-06 17:38:34 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:09:22 -0500
commit1230cb83f46731ca4eaa57c480788ed3c9d05935 (patch)
tree60be0e3211fafdd2d3afba7aa6527badb2e29790 /drivers/net/wireless/rt2x00/rt2x00mac.c
parent3e34c6dcb36bbd5294cae2654c32e24b9787da3a (diff)
rt2x00: Always call ieee80211_stop_queue() when return NETDEV_TX_BUSY
Apparently it was possible that ieee80211_stop_queue() was not full while NETDEV_TX_BUSY was being reported back. I think that is what causing the WARN_ON(). This moves all calls to ieee80211_stop_queue() in rt2x00mac.c where it is easier to determine if the queue should be halted. 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/rt2x00mac.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00mac.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00mac.c b/drivers/net/wireless/rt2x00/rt2x00mac.c
index bae444292d63..1ab2fb6c38da 100644
--- a/drivers/net/wireless/rt2x00/rt2x00mac.c
+++ b/drivers/net/wireless/rt2x00/rt2x00mac.c
@@ -84,7 +84,7 @@ int rt2x00mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
84 */ 84 */
85 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags)) { 85 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags)) {
86 ieee80211_stop_queues(hw); 86 ieee80211_stop_queues(hw);
87 return 0; 87 return NETDEV_TX_OK;
88 } 88 }
89 89
90 /* 90 /*
@@ -110,15 +110,24 @@ int rt2x00mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
110 if (!is_rts_frame(frame_control) && !is_cts_frame(frame_control) && 110 if (!is_rts_frame(frame_control) && !is_cts_frame(frame_control) &&
111 (control->flags & (IEEE80211_TXCTL_USE_RTS_CTS | 111 (control->flags & (IEEE80211_TXCTL_USE_RTS_CTS |
112 IEEE80211_TXCTL_USE_CTS_PROTECT))) { 112 IEEE80211_TXCTL_USE_CTS_PROTECT))) {
113 if (rt2x00_ring_free(ring) <= 1) 113 if (rt2x00_ring_free(ring) <= 1) {
114 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
114 return NETDEV_TX_BUSY; 115 return NETDEV_TX_BUSY;
116 }
115 117
116 if (rt2x00mac_tx_rts_cts(rt2x00dev, ring, skb, control)) 118 if (rt2x00mac_tx_rts_cts(rt2x00dev, ring, skb, control)) {
119 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
117 return NETDEV_TX_BUSY; 120 return NETDEV_TX_BUSY;
121 }
118 } 122 }
119 123
120 if (rt2x00dev->ops->lib->write_tx_data(rt2x00dev, ring, skb, control)) 124 if (rt2x00dev->ops->lib->write_tx_data(rt2x00dev, ring, skb, control)) {
125 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
121 return NETDEV_TX_BUSY; 126 return NETDEV_TX_BUSY;
127 }
128
129 if (rt2x00_ring_full(ring))
130 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
122 131
123 if (rt2x00dev->ops->lib->kick_tx_queue) 132 if (rt2x00dev->ops->lib->kick_tx_queue)
124 rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, control->queue); 133 rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, control->queue);