diff options
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 44001c7e0e58..d67d36f57d78 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c | |||
@@ -1159,7 +1159,8 @@ ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata, | |||
1159 | tx->sta = rcu_dereference(sdata->u.vlan.sta); | 1159 | tx->sta = rcu_dereference(sdata->u.vlan.sta); |
1160 | if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr) | 1160 | if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr) |
1161 | return TX_DROP; | 1161 | return TX_DROP; |
1162 | } else if (info->flags & IEEE80211_TX_CTL_INJECTED) { | 1162 | } else if (info->flags & IEEE80211_TX_CTL_INJECTED || |
1163 | tx->sdata->control_port_protocol == tx->skb->protocol) { | ||
1163 | tx->sta = sta_info_get_bss(sdata, hdr->addr1); | 1164 | tx->sta = sta_info_get_bss(sdata, hdr->addr1); |
1164 | } | 1165 | } |
1165 | if (!tx->sta) | 1166 | if (!tx->sta) |