nl80211: Fix AP VLAN handling for WDS STA reassociation

When a STA reassociates, the AP VLAN interface is still present,
do not attempt to create it in that case.
This commit is contained in:
Felix Fietkau 2010-11-09 16:03:05 +02:00 committed by Jouni Malinen
parent 7826ceae91
commit 4a8c72959e

View file

@ -4987,7 +4987,8 @@ static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val)
wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
" aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
if (val) {
if (nl80211_create_iface(drv, name, NL80211_IFTYPE_AP_VLAN,
if (!if_nametoindex(name) &&
nl80211_create_iface(drv, name, NL80211_IFTYPE_AP_VLAN,
NULL, 1) < 0)
return -1;
linux_set_iface_flags(drv->ioctl_sock, name, 1);