diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-11-18 22:20:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-11-18 22:20:45 +0000 |
commit | 9cd492b3e19ba211791e4433cd25c6ec84288ff6 (patch) | |
tree | bccf96000877b7f02f2b2b36475a55fe3718af20 /package/kernel/mac80211/patches/316-mac80211-minstrel-switch-to-.tx_status_noskb.patch | |
parent | 7b0b8556d8f19bbcb7e0d2ce0e913ab3129eb781 (diff) | |
download | mtk-20170518-9cd492b3e19ba211791e4433cd25c6ec84288ff6.zip mtk-20170518-9cd492b3e19ba211791e4433cd25c6ec84288ff6.tar.gz mtk-20170518-9cd492b3e19ba211791e4433cd25c6ec84288ff6.tar.bz2 |
mac80211: add support for reporting tx status without attached skb
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 43297
Diffstat (limited to 'package/kernel/mac80211/patches/316-mac80211-minstrel-switch-to-.tx_status_noskb.patch')
-rw-r--r-- | package/kernel/mac80211/patches/316-mac80211-minstrel-switch-to-.tx_status_noskb.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/316-mac80211-minstrel-switch-to-.tx_status_noskb.patch b/package/kernel/mac80211/patches/316-mac80211-minstrel-switch-to-.tx_status_noskb.patch new file mode 100644 index 0000000..b32e410 --- /dev/null +++ b/package/kernel/mac80211/patches/316-mac80211-minstrel-switch-to-.tx_status_noskb.patch @@ -0,0 +1,31 @@ +From: Felix Fietkau <nbd@openwrt.org> +Date: Sat, 15 Nov 2014 22:38:07 +0100 +Subject: [PATCH] mac80211: minstrel: switch to .tx_status_noskb + +Signed-off-by: Felix Fietkau <nbd@openwrt.org> +--- + +--- a/net/mac80211/rc80211_minstrel.c ++++ b/net/mac80211/rc80211_minstrel.c +@@ -223,11 +223,10 @@ minstrel_update_stats(struct minstrel_pr + static void + minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband, + struct ieee80211_sta *sta, void *priv_sta, +- struct sk_buff *skb) ++ struct ieee80211_tx_info *info) + { + struct minstrel_priv *mp = priv; + struct minstrel_sta_info *mi = priv_sta; +- struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); + struct ieee80211_tx_rate *ar = info->status.rates; + int i, ndx; + int success; +@@ -674,7 +673,7 @@ static u32 minstrel_get_expected_through + + const struct rate_control_ops mac80211_minstrel = { + .name = "minstrel", +- .tx_status = minstrel_tx_status, ++ .tx_status_noskb = minstrel_tx_status, + .get_rate = minstrel_get_rate, + .rate_init = minstrel_rate_init, + .alloc = minstrel_alloc, |