aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/p54
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2008-05-30 15:07:15 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-06-03 15:00:28 -0400
commit552fe53f48ef2fd54b031b37d304211cee893ba0 (patch)
tree6eb0e980cacb500703f8779d19cf2f90edabe54e /drivers/net/wireless/p54
parentf409e348005693016281bf29535c9d0a91b21f77 (diff)
p54: fix skb->cb tx info conversion
When I moved the TX info into skb->cb apparently I forgot to change a few places to put the p54-internal data into info->driver_data rather than skb->cb. This should fix it. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/p54')
-rw-r--r--drivers/net/wireless/p54/p54common.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/drivers/net/wireless/p54/p54common.c b/drivers/net/wireless/p54/p54common.c
index 91ac9208b77d..9f7224de6fd1 100644
--- a/drivers/net/wireless/p54/p54common.c
+++ b/drivers/net/wireless/p54/p54common.c
@@ -392,16 +392,21 @@ static void p54_rx_frame_sent(struct ieee80211_hw *dev, struct sk_buff *skb)
392 u32 last_addr = priv->rx_start; 392 u32 last_addr = priv->rx_start;
393 393
394 while (entry != (struct sk_buff *)&priv->tx_queue) { 394 while (entry != (struct sk_buff *)&priv->tx_queue) {
395 range = (struct memrecord *)&entry->cb; 395 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
396 range = (void *)info->driver_data;
396 if (range->start_addr == addr) { 397 if (range->start_addr == addr) {
397 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(entry);
398 struct p54_control_hdr *entry_hdr; 398 struct p54_control_hdr *entry_hdr;
399 struct p54_tx_control_allocdata *entry_data; 399 struct p54_tx_control_allocdata *entry_data;
400 int pad = 0; 400 int pad = 0;
401 401
402 if (entry->next != (struct sk_buff *)&priv->tx_queue) 402 if (entry->next != (struct sk_buff *)&priv->tx_queue) {
403 freed = ((struct memrecord *)&entry->next->cb)->start_addr - last_addr; 403 struct ieee80211_tx_info *ni;
404 else 404 struct memrecord *mr;
405
406 ni = IEEE80211_SKB_CB(entry->next);
407 mr = (struct memrecord *)ni->driver_data;
408 freed = mr->start_addr - last_addr;
409 } else
405 freed = priv->rx_end - last_addr; 410 freed = priv->rx_end - last_addr;
406 411
407 last_addr = range->end_addr; 412 last_addr = range->end_addr;