summaryrefslogtreecommitdiffstats
path: root/sys/dev/iwn
diff options
context:
space:
mode:
authorthompsa <thompsa@FreeBSD.org>2008-05-01 04:55:00 +0000
committerthompsa <thompsa@FreeBSD.org>2008-05-01 04:55:00 +0000
commita96561521e584f7ce37efdbc079f9f3d125f8f39 (patch)
treeb983721c7e7ac121297fd8475a3fd70e7cdc0166 /sys/dev/iwn
parentbaf49360e8bbe44e4ec849b9c8e2374de1cb3f12 (diff)
downloadFreeBSD-src-a96561521e584f7ce37efdbc079f9f3d125f8f39.zip
FreeBSD-src-a96561521e584f7ce37efdbc079f9f3d125f8f39.tar.gz
Unify all the wifi *_ioctl routines
- Limit grabbing the lock to SIOCSIFFLAGS. - Move ieee80211_start_all() to SIOCSIFFLAGS. - Remove SIOCSIFMEDIA as it is not useful. - Limit ether_ioctl to only SIOCGIFADDR. SIOCSIFADDR and SIOCSIFMTU have no affect as there is no input/output path in the vap parent. The vap code will handle the reinit of the mac address changes. - Split off ndis_ioctl_80211 as it was getting too different to wired devices. This fixes a copyout while locked and a lock recursion. Reviewed by: sam
Diffstat (limited to 'sys/dev/iwn')
-rw-r--r--sys/dev/iwn/if_iwn.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/sys/dev/iwn/if_iwn.c b/sys/dev/iwn/if_iwn.c
index 3cdad75..cca04ec 100644
--- a/sys/dev/iwn/if_iwn.c
+++ b/sys/dev/iwn/if_iwn.c
@@ -2365,9 +2365,9 @@ iwn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
struct ifreq *ifr = (struct ifreq *) data;
int error = 0, startall = 0;
- IWN_LOCK(sc);
switch (cmd) {
case SIOCSIFFLAGS:
+ IWN_LOCK(sc);
if (ifp->if_flags & IFF_UP) {
if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
iwn_init_locked(sc);
@@ -2377,19 +2377,20 @@ iwn_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
if (ifp->if_drv_flags & IFF_DRV_RUNNING)
iwn_stop_locked(sc);
}
+ IWN_UNLOCK(sc);
+ if (startall)
+ ieee80211_start_all(ic);
break;
case SIOCGIFMEDIA:
- case SIOCSIFMEDIA:
error = ifmedia_ioctl(ifp, ifr, &ic->ic_media, cmd);
break;
- default:
+ case SIOCGIFADDR:
error = ether_ioctl(ifp, cmd, data);
break;
+ default:
+ error = EINVAL;
+ break;
}
- IWN_UNLOCK(sc);
-
- if (startall)
- ieee80211_start_all(ic);
return error;
}
OpenPOWER on IntegriCloud