diff options
-rw-r--r-- | net/mac80211/status.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mac80211/status.c b/net/mac80211/status.c index 5bad05e9af90..6101deb805a8 100644 --- a/net/mac80211/status.c +++ b/net/mac80211/status.c | |||
@@ -51,6 +51,11 @@ static void ieee80211_handle_filtered_frame(struct ieee80211_local *local, | |||
51 | struct ieee80211_hdr *hdr = (void *)skb->data; | 51 | struct ieee80211_hdr *hdr = (void *)skb->data; |
52 | int ac; | 52 | int ac; |
53 | 53 | ||
54 | if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER) { | ||
55 | ieee80211_free_txskb(&local->hw, skb); | ||
56 | return; | ||
57 | } | ||
58 | |||
54 | /* | 59 | /* |
55 | * This skb 'survived' a round-trip through the driver, and | 60 | * This skb 'survived' a round-trip through the driver, and |
56 | * hopefully the driver didn't mangle it too badly. However, | 61 | * hopefully the driver didn't mangle it too badly. However, |