aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00pci.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/rt2x00pci.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/rt2x00pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00pci.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.c b/drivers/net/wireless/rt2x00/rt2x00pci.c
index 483380819f9d..804a9980055d 100644
--- a/drivers/net/wireless/rt2x00/rt2x00pci.c
+++ b/drivers/net/wireless/rt2x00/rt2x00pci.c
@@ -86,10 +86,8 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev,
86 struct skb_desc *desc; 86 struct skb_desc *desc;
87 u32 word; 87 u32 word;
88 88
89 if (rt2x00_ring_full(ring)) { 89 if (rt2x00_ring_full(ring))
90 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
91 return -EINVAL; 90 return -EINVAL;
92 }
93 91
94 rt2x00_desc_read(txd, 0, &word); 92 rt2x00_desc_read(txd, 0, &word);
95 93
@@ -99,7 +97,6 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev,
99 "Arrived at non-free entry in the non-full queue %d.\n" 97 "Arrived at non-free entry in the non-full queue %d.\n"
100 "Please file bug report to %s.\n", 98 "Please file bug report to %s.\n",
101 control->queue, DRV_PROJECT); 99 control->queue, DRV_PROJECT);
102 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
103 return -EINVAL; 100 return -EINVAL;
104 } 101 }
105 102
@@ -119,9 +116,6 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev,
119 116
120 rt2x00_ring_index_inc(ring); 117 rt2x00_ring_index_inc(ring);
121 118
122 if (rt2x00_ring_full(ring))
123 ieee80211_stop_queue(rt2x00dev->hw, control->queue);
124
125 return 0; 119 return 0;
126} 120}
127EXPORT_SYMBOL_GPL(rt2x00pci_write_tx_data); 121EXPORT_SYMBOL_GPL(rt2x00pci_write_tx_data);