mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
backport mac80211, hostapd, iw, crda from trunk as of r26369
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@26370 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
21
package/hostapd/patches/710-bring_down_interface.patch
Normal file
21
package/hostapd/patches/710-bring_down_interface.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
--- a/src/drivers/driver_nl80211.c
|
||||
+++ b/src/drivers/driver_nl80211.c
|
||||
@@ -4883,9 +4883,6 @@ static int wpa_driver_nl80211_set_mode(v
|
||||
/* Try to set the mode again while the interface is
|
||||
* down */
|
||||
ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
|
||||
- if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname,
|
||||
- 1))
|
||||
- ret = -1;
|
||||
if (!ret)
|
||||
break;
|
||||
} else
|
||||
@@ -4898,6 +4895,8 @@ static int wpa_driver_nl80211_set_mode(v
|
||||
wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
|
||||
"interface is down");
|
||||
drv->nlmode = nlmode;
|
||||
+ if (linux_set_iface_flags(drv->ioctl_sock, bss->ifname, 1))
|
||||
+ ret = -1;
|
||||
}
|
||||
|
||||
done:
|
||||
Reference in New Issue
Block a user