aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/iw_handler.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-09-29 17:27:28 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-10-07 16:39:43 -0400
commit3d23e349d807177eaf519d444677cee86b1a04cf (patch)
treee800dee247598e59185ddd2dd47d2ac6fe090b9c /include/net/iw_handler.h
parentbc974f4a230756faf4f69114f271de2e678b363b (diff)
wext: refactor
Refactor wext to * split out iwpriv handling * split out iwspy handling * split out procfs support * allow cfg80211 to have wireless extensions compat code w/o CONFIG_WIRELESS_EXT After this, drivers need to - select WIRELESS_EXT - for wext support - select WEXT_PRIV - for iwpriv support - select WEXT_SPY - for iwspy support except cfg80211 -- which gets new hooks in wext-core.c and can then get wext handlers without CONFIG_WIRELESS_EXT. Wireless extensions procfs support is auto-selected based on PROC_FS and anything that requires the wext core (i.e. WIRELESS_EXT or CFG80211_WEXT). Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/iw_handler.h')
-rw-r--r--include/net/iw_handler.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/net/iw_handler.h b/include/net/iw_handler.h
index e9054a283fde..d5d337170a56 100644
--- a/include/net/iw_handler.h
+++ b/include/net/iw_handler.h
@@ -323,18 +323,19 @@ typedef int (*iw_handler)(struct net_device *dev, struct iw_request_info *info,
323 */ 323 */
324struct iw_handler_def 324struct iw_handler_def
325{ 325{
326 /* Number of handlers defined (more precisely, index of the
327 * last defined handler + 1) */
328 __u16 num_standard;
329 __u16 num_private;
330 /* Number of private arg description */
331 __u16 num_private_args;
332 326
333 /* Array of handlers for standard ioctls 327 /* Array of handlers for standard ioctls
334 * We will call dev->wireless_handlers->standard[ioctl - SIOCSIWCOMMIT] 328 * We will call dev->wireless_handlers->standard[ioctl - SIOCSIWCOMMIT]
335 */ 329 */
336 const iw_handler * standard; 330 const iw_handler * standard;
331 /* Number of handlers defined (more precisely, index of the
332 * last defined handler + 1) */
333 __u16 num_standard;
337 334
335#ifdef CONFIG_WEXT_PRIV
336 __u16 num_private;
337 /* Number of private arg description */
338 __u16 num_private_args;
338 /* Array of handlers for private ioctls 339 /* Array of handlers for private ioctls
339 * Will call dev->wireless_handlers->private[ioctl - SIOCIWFIRSTPRIV] 340 * Will call dev->wireless_handlers->private[ioctl - SIOCIWFIRSTPRIV]
340 */ 341 */
@@ -344,6 +345,7 @@ struct iw_handler_def
344 * can put it in any order you want and should not leave holes... 345 * can put it in any order you want and should not leave holes...
345 * We will automatically export that to user space... */ 346 * We will automatically export that to user space... */
346 const struct iw_priv_args * private_args; 347 const struct iw_priv_args * private_args;
348#endif
347 349
348 /* New location of get_wireless_stats, to de-bloat struct net_device. 350 /* New location of get_wireless_stats, to de-bloat struct net_device.
349 * The old pointer in struct net_device will be gradually phased 351 * The old pointer in struct net_device will be gradually phased