|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/types.h>#include <linux/skbuff.h>#include <linux/slab.h>#include <linux/proc_fs.h>#include <linux/interrupt.h>#include <linux/netdevice.h>#include <linux/kmod.h>#include <linux/if_arp.h>#include <linux/wireless.h>#include <linux/sockios.h>#include <linux/etherdevice.h>#include <linux/if_ether.h>#include <linux/byteorder/generic.h>#include <linux/bitops.h>#include <linux/uaccess.h>#include <asm/byteorder.h>#include <net/iw_handler.h>#include <net/net_namespace.h>#include <net/cfg80211.h>#include "p80211types.h"#include "p80211hdr.h"#include "p80211conv.h"#include "p80211mgmt.h"#include "p80211msg.h"#include "p80211netdev.h"#include "p80211ioctl.h"#include "p80211req.h"#include "p80211metastruct.h"#include "p80211metadef.h"#include "cfg80211.c"Go to the source code of this file.
Functions | |
| module_param (wlan_watchdog, int, 0644) | |
| MODULE_PARM_DESC (wlan_watchdog,"transmit timeout in milliseconds") | |
| module_param (wlan_wext_write, int, 0644) | |
| MODULE_PARM_DESC (wlan_wext_write,"enable write wireless extensions") | |
| void | p80211netdev_rx (wlandevice_t *wlandev, struct sk_buff *skb) |
| int | wlan_setup (wlandevice_t *wlandev, struct device *physdev) |
| void | wlan_unsetup (wlandevice_t *wlandev) |
| int | register_wlandev (wlandevice_t *wlandev) |
| int | unregister_wlandev (wlandevice_t *wlandev) |
| void | p80211netdev_hwremoved (wlandevice_t *wlandev) |
Variables | |
| int | wlan_watchdog = 5000 |
| int | wlan_wext_write = 1 |
| module_param | ( | wlan_watchdog | , |
| int | , | ||
| 0644 | |||
| ) |
| module_param | ( | wlan_wext_write | , |
| int | , | ||
| 0644 | |||
| ) |
| MODULE_PARM_DESC | ( | wlan_watchdog | , |
| "transmit timeout in milliseconds" | |||
| ) |
| MODULE_PARM_DESC | ( | wlan_wext_write | , |
| "enable write wireless extensions" | |||
| ) |
| void p80211netdev_hwremoved | ( | wlandevice_t * | wlandev | ) |
Definition at line 911 of file p80211netdev.c.
| void p80211netdev_rx | ( | wlandevice_t * | wlandev, |
| struct sk_buff * | skb | ||
| ) |
Definition at line 239 of file p80211netdev.c.
| int register_wlandev | ( | wlandevice_t * | wlandev | ) |
Definition at line 846 of file p80211netdev.c.
| int unregister_wlandev | ( | wlandevice_t * | wlandev | ) |
Definition at line 868 of file p80211netdev.c.
| int wlan_setup | ( | wlandevice_t * | wlandev, |
| struct device * | physdev | ||
| ) |
Definition at line 746 of file p80211netdev.c.
| void wlan_unsetup | ( | wlandevice_t * | wlandev | ) |
Definition at line 812 of file p80211netdev.c.
| int wlan_watchdog = 5000 |
Definition at line 110 of file p80211netdev.c.
| int wlan_wext_write = 1 |
Definition at line 114 of file p80211netdev.c.
1.8.2