diff options
-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 3104c844b54..da878c14182 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c | |||
@@ -1222,7 +1222,8 @@ ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata, | |||
1222 | tx->sta = rcu_dereference(sdata->u.vlan.sta); | 1222 | tx->sta = rcu_dereference(sdata->u.vlan.sta); |
1223 | if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr) | 1223 | if (!tx->sta && sdata->dev->ieee80211_ptr->use_4addr) |
1224 | return TX_DROP; | 1224 | return TX_DROP; |
1225 | } else if (info->flags & IEEE80211_TX_CTL_INJECTED) { | 1225 | } else if (info->flags & IEEE80211_TX_CTL_INJECTED || |
1226 | tx->sdata->control_port_protocol == tx->skb->protocol) { | ||
1226 | tx->sta = sta_info_get_bss(sdata, hdr->addr1); | 1227 | tx->sta = sta_info_get_bss(sdata, hdr->addr1); |
1227 | } | 1228 | } |
1228 | if (!tx->sta) | 1229 | if (!tx->sta) |