diff options
author | Eliad Peller <eliad@wizery.com> | 2014-03-13 08:30:47 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-03-19 16:29:55 -0400 |
commit | a0f995a561d90636120bce2e89157b537a174c92 (patch) | |
tree | 371197132d85c66eb9696517b024b2111190391a /include/net/mac80211.h | |
parent | 71228a1eabaf7fa4b2c3060cfee60875254cec14 (diff) |
mac80211: add status_driver_data array to ieee80211_tx_info
Drivers might want to have private data in addition
to all other ieee80211_tx_info.status fields.
The current ieee80211_tx_info.rate_driver_data overlaps
with some of the non-rate data (e.g. ampdu_ack_len), so
it might not be good enough.
Since we already know how much free bytes remained,
simply use this size to define (void *) array.
While on it, change ack_signal type from int to the more
explicit s32 type.
Signed-off-by: Eliad Peller <eliadx.peller@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 86faa413b37d..f6988fe8dfd2 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -697,11 +697,11 @@ struct ieee80211_tx_info { | |||
697 | } control; | 697 | } control; |
698 | struct { | 698 | struct { |
699 | struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; | 699 | struct ieee80211_tx_rate rates[IEEE80211_TX_MAX_RATES]; |
700 | int ack_signal; | 700 | s32 ack_signal; |
701 | u8 ampdu_ack_len; | 701 | u8 ampdu_ack_len; |
702 | u8 ampdu_len; | 702 | u8 ampdu_len; |
703 | u8 antenna; | 703 | u8 antenna; |
704 | /* 21 bytes free */ | 704 | void *status_driver_data[21 / sizeof(void *)]; |
705 | } status; | 705 | } status; |
706 | struct { | 706 | struct { |
707 | struct ieee80211_tx_rate driver_rates[ | 707 | struct ieee80211_tx_rate driver_rates[ |