ath9k: avoid the copy skb->cb on every RX'd skb
authorLuis R. Rodriguez <lrodriguez@atheros.com>
Wed, 4 Nov 2009 16:20:42 +0000 (08:20 -0800)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 11 Nov 2009 22:09:07 +0000 (17:09 -0500)
commit5ca42627f3ddc0e4fc3e62d879cc35ab5beaaa8b
tree097aec55f4b63beb7d2d37d81161e51d93d09be7
parentdbfc22df1afbeb91d528e2f84d6603ac9ce98bc2
ath9k: avoid the copy skb->cb on every RX'd skb

The skb->cb (control buffer, 48 bytes) is available to the skb
upon skb allocation. You can fill it up imediately after skb
allocation. ath9k was copying onto the skb->cb the data from the
processed skb for mac80211 from a stack struct ieee80211_rx_status
structure. This is unnecessary, instead use the skb->cb for the
rx status immediately after the skb becomes available and DMA
synched.

Additionally, avoid the copy of the skb->cb also for virtual wiphys
as skb_copy() will copy over the skb->cb for us as well.

Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/recv.c