diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2008-05-10 07:46:13 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-05-21 21:47:34 -0400 |
commit | 7050ec821c52826b63835dde54ee3d71c7db4262 (patch) | |
tree | f8154413b4ed1e8ff01b6dbb1c79240dcce83dc8 /drivers/net/wireless/rt2x00/rt2x00pci.c | |
parent | 4de36fe5abe077a4c65bf0b6a309865aa043e055 (diff) |
rt2x00: Split rt2x00lib_write_tx_desc()
Split rt2x00lib_write_tx_desc() up into a TX descriptor initializor
and TX descriptor writer.
This split is required to properly allow mac80211 to move its
tx_control structure into the skb->cb array.
The rt2x00queue_create_tx_descriptor() function will read all tx control
information and convert it into a rt2x00 TX descriptor information structure.
After that function is complete, we have all information we needed from the
tx control structure and are free to start writing into the skb->cb array
for our own purposes.
rt2x00queue_write_tx_descriptor() will be in charge of really sending
the TX descriptor to the hardware and kicking the TX queue.
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.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00pci.c b/drivers/net/wireless/rt2x00/rt2x00pci.c index c17078eac197..a056b12fbd1c 100644 --- a/drivers/net/wireless/rt2x00/rt2x00pci.c +++ b/drivers/net/wireless/rt2x00/rt2x00pci.c | |||
@@ -41,6 +41,7 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev, | |||
41 | struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX); | 41 | struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX); |
42 | struct queue_entry_priv_pci_tx *priv_tx = entry->priv_data; | 42 | struct queue_entry_priv_pci_tx *priv_tx = entry->priv_data; |
43 | struct skb_frame_desc *skbdesc; | 43 | struct skb_frame_desc *skbdesc; |
44 | struct txentry_desc txdesc; | ||
44 | u32 word; | 45 | u32 word; |
45 | 46 | ||
46 | if (rt2x00queue_full(queue)) | 47 | if (rt2x00queue_full(queue)) |
@@ -58,6 +59,14 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev, | |||
58 | } | 59 | } |
59 | 60 | ||
60 | /* | 61 | /* |
62 | * Copy all TX descriptor information into txdesc, | ||
63 | * after that we are free to use the skb->cb array | ||
64 | * for our information. | ||
65 | */ | ||
66 | entry->skb = skb; | ||
67 | rt2x00queue_create_tx_descriptor(entry, &txdesc, control); | ||
68 | |||
69 | /* | ||
61 | * Fill in skb descriptor | 70 | * Fill in skb descriptor |
62 | */ | 71 | */ |
63 | skbdesc = get_skb_frame_desc(skb); | 72 | skbdesc = get_skb_frame_desc(skb); |
@@ -69,8 +78,8 @@ int rt2x00pci_write_tx_data(struct rt2x00_dev *rt2x00dev, | |||
69 | 78 | ||
70 | memcpy(&priv_tx->control, control, sizeof(priv_tx->control)); | 79 | memcpy(&priv_tx->control, control, sizeof(priv_tx->control)); |
71 | memcpy(priv_tx->data, skb->data, skb->len); | 80 | memcpy(priv_tx->data, skb->data, skb->len); |
72 | rt2x00lib_write_tx_desc(rt2x00dev, skb, control); | ||
73 | 81 | ||
82 | rt2x00queue_write_tx_descriptor(entry, &txdesc); | ||
74 | rt2x00queue_index_inc(queue, Q_INDEX); | 83 | rt2x00queue_index_inc(queue, Q_INDEX); |
75 | 84 | ||
76 | return 0; | 85 | return 0; |