Commit fff77109 authored by Chr's avatar Chr Committed by John W. Linville

mac80211: add station aid into ieee80211_tx_control

This patch is necessary for the upcoming Accesspoint patch for p54.
Signed-off-by: default avatarChristian Lamparter <chunkeey@web.de>
Acked-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 2aee82de
...@@ -302,6 +302,7 @@ struct ieee80211_tx_control { ...@@ -302,6 +302,7 @@ struct ieee80211_tx_control {
u8 iv_len; /* length of the IV field in octets */ u8 iv_len; /* length of the IV field in octets */
u8 queue; /* hardware queue to use for this frame; u8 queue; /* hardware queue to use for this frame;
* 0 = highest, hw->queues-1 = lowest */ * 0 = highest, hw->queues-1 = lowest */
u16 aid; /* Station AID */
int type; /* internal */ int type; /* internal */
}; };
......
...@@ -741,6 +741,7 @@ ieee80211_tx_h_misc(struct ieee80211_tx_data *tx) ...@@ -741,6 +741,7 @@ ieee80211_tx_h_misc(struct ieee80211_tx_data *tx)
} }
if (tx->sta) { if (tx->sta) {
control->aid = tx->sta->aid;
tx->sta->tx_packets++; tx->sta->tx_packets++;
tx->sta->tx_fragments++; tx->sta->tx_fragments++;
tx->sta->tx_bytes += tx->skb->len; tx->sta->tx_bytes += tx->skb->len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment