diff options
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 5f9a8d7af83d..8f68bf9746d0 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c | |||
@@ -1087,7 +1087,10 @@ __ieee80211_tx_prepare(struct ieee80211_tx_data *tx, | |||
1087 | info->flags |= IEEE80211_TX_CTL_NO_ACK; | 1087 | info->flags |= IEEE80211_TX_CTL_NO_ACK; |
1088 | } else { | 1088 | } else { |
1089 | tx->flags |= IEEE80211_TX_UNICAST; | 1089 | tx->flags |= IEEE80211_TX_UNICAST; |
1090 | info->flags &= ~IEEE80211_TX_CTL_NO_ACK; | 1090 | if (unlikely(local->wifi_wme_noack_test)) |
1091 | info->flags |= IEEE80211_TX_CTL_NO_ACK; | ||
1092 | else | ||
1093 | info->flags &= ~IEEE80211_TX_CTL_NO_ACK; | ||
1091 | } | 1094 | } |
1092 | 1095 | ||
1093 | if (tx->flags & IEEE80211_TX_FRAGMENTED) { | 1096 | if (tx->flags & IEEE80211_TX_FRAGMENTED) { |