diff options
author | Johannes Berg <johannes.berg@intel.com> | 2014-10-07 10:38:50 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2014-10-22 10:42:09 +0200 |
commit | 02219b3abca59fca81711bfe7ee78df7abad97ce (patch) | |
tree | afaa7b17ffde140c2791a87c9dde1a489a949f36 /include/net/mac80211.h | |
parent | f409079bb678600be0201cd03afb4731f0480b4e (diff) | |
download | op-kernel-dev-02219b3abca59fca81711bfe7ee78df7abad97ce.zip op-kernel-dev-02219b3abca59fca81711bfe7ee78df7abad97ce.tar.gz |
mac80211: add WMM admission control support
Use the currently existing APIs between mac80211 and the low
level driver to implement WMM admission control.
The low level driver needs to report the media time used by
each transmitted packet in ieee80211_tx_status. Based on that
information, mac80211 will modify the QoS parameters of the
admission controlled Access Category when the limit is
reached. Once the original QoS parameters can be restored,
mac80211 will do so.
One issue with this approach is that management frames will
also erroneously be downgraded, but the upside is that the
implementation is simple. In the future, it can be extended
to driver- or device-based implementations that are better.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 9bb2fc7..9dc5e76 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -739,7 +739,8 @@ struct ieee80211_tx_info { u8 ampdu_ack_len; u8 ampdu_len; u8 antenna; - void *status_driver_data[21 / sizeof(void *)]; + u16 tx_time; + void *status_driver_data[19 / sizeof(void *)]; } status; struct { struct ieee80211_tx_rate driver_rates[ |