Commit 30613070 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

mac80211: pass AP vif pointer for VLANs

We cannot pass a VLAN vif pointer to the driver since those are
entirely virtual and we never tell the driver.
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ff550cb4
...@@ -1351,6 +1351,10 @@ int ieee80211_master_start_xmit(struct sk_buff *skb, ...@@ -1351,6 +1351,10 @@ int ieee80211_master_start_xmit(struct sk_buff *skb,
return 0; return 0;
} }
if (osdata->vif.type == NL80211_IFTYPE_AP_VLAN)
osdata = container_of(osdata->bss,
struct ieee80211_sub_if_data,
u.ap);
info->control.vif = &osdata->vif; info->control.vif = &osdata->vif;
ret = ieee80211_tx(odev, skb); ret = ieee80211_tx(odev, skb);
dev_put(odev); dev_put(odev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment