Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Johannes Berg | 295f4a1 | 2007-04-26 20:43:56 -0700 | [diff] [blame] | 2 | #ifndef __NET_WEXT_H |
| 3 | #define __NET_WEXT_H |
| 4 | |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 5 | #include <net/iw_handler.h> |
Johannes Berg | 295f4a1 | 2007-04-26 20:43:56 -0700 | [diff] [blame] | 6 | |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 7 | struct net; |
| 8 | |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 9 | #ifdef CONFIG_WEXT_CORE |
Al Viro | b1b0c24 | 2017-10-01 20:13:08 -0400 | [diff] [blame] | 10 | int wext_handle_ioctl(struct net *net, unsigned int cmd, |
Joe Perches | 9e4638c | 2013-09-23 11:33:42 -0700 | [diff] [blame] | 11 | void __user *arg); |
| 12 | int compat_wext_handle_ioctl(struct net *net, unsigned int cmd, |
| 13 | unsigned long arg); |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 14 | |
Joe Perches | 9e4638c | 2013-09-23 11:33:42 -0700 | [diff] [blame] | 15 | struct iw_statistics *get_wireless_stats(struct net_device *dev); |
| 16 | int call_commit_handler(struct net_device *dev); |
Johannes Berg | 295f4a1 | 2007-04-26 20:43:56 -0700 | [diff] [blame] | 17 | #else |
Al Viro | b1b0c24 | 2017-10-01 20:13:08 -0400 | [diff] [blame] | 18 | static inline int wext_handle_ioctl(struct net *net, unsigned int cmd, |
Johannes Berg | 295f4a1 | 2007-04-26 20:43:56 -0700 | [diff] [blame] | 19 | void __user *arg) |
| 20 | { |
| 21 | return -EINVAL; |
| 22 | } |
David S. Miller | 87de87d | 2008-06-03 09:14:03 -0700 | [diff] [blame] | 23 | static inline int compat_wext_handle_ioctl(struct net *net, unsigned int cmd, |
| 24 | unsigned long arg) |
| 25 | { |
| 26 | return -EINVAL; |
| 27 | } |
Johannes Berg | 295f4a1 | 2007-04-26 20:43:56 -0700 | [diff] [blame] | 28 | #endif |
| 29 | |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 30 | #ifdef CONFIG_WEXT_PROC |
Joe Perches | 9e4638c | 2013-09-23 11:33:42 -0700 | [diff] [blame] | 31 | int wext_proc_init(struct net *net); |
| 32 | void wext_proc_exit(struct net *net); |
Johannes Berg | 3d23e34 | 2009-09-29 23:27:28 +0200 | [diff] [blame] | 33 | #else |
| 34 | static inline int wext_proc_init(struct net *net) |
| 35 | { |
| 36 | return 0; |
| 37 | } |
| 38 | static inline void wext_proc_exit(struct net *net) |
| 39 | { |
| 40 | return; |
| 41 | } |
| 42 | #endif |
| 43 | |
| 44 | #ifdef CONFIG_WEXT_PRIV |
| 45 | int ioctl_private_call(struct net_device *dev, struct iwreq *iwr, |
| 46 | unsigned int cmd, struct iw_request_info *info, |
| 47 | iw_handler handler); |
| 48 | int compat_private_call(struct net_device *dev, struct iwreq *iwr, |
| 49 | unsigned int cmd, struct iw_request_info *info, |
| 50 | iw_handler handler); |
| 51 | int iw_handler_get_private(struct net_device * dev, |
| 52 | struct iw_request_info * info, |
| 53 | union iwreq_data * wrqu, |
| 54 | char * extra); |
| 55 | #else |
| 56 | #define ioctl_private_call NULL |
| 57 | #define compat_private_call NULL |
| 58 | #endif |
| 59 | |
| 60 | |
Johannes Berg | 295f4a1 | 2007-04-26 20:43:56 -0700 | [diff] [blame] | 61 | #endif /* __NET_WEXT_H */ |