#include <linux/netdevice.h>
#include <linux/types.h>
#include <linux/skbuff.h>
#include <linux/debugfs.h>
#include <linux/ieee80211.h>
#include <linux/export.h>
#include <net/mac80211.h>
#include "rc80211_minstrel.h"
#include "rc80211_minstrel_ht.h"
Go to the source code of this file.
Functions | |
void | minstrel_ht_add_sta_debugfs (void *priv, void *priv_sta, struct dentry *dir) |
void | minstrel_ht_remove_sta_debugfs (void *priv, void *priv_sta) |
static int | minstrel_ht_stats_open (struct inode *inode, struct file *file) |
Variables | |
static struct file_operations | minstrel_ht_stat_fops |
void minstrel_ht_add_sta_debugfs | ( | void * | priv, |
void * | priv_sta, | ||
struct dentry * | dir | ||
) |
Definition at line 106 of file kernel-3.2/rc80211_minstrel_ht_debugfs.c.
void minstrel_ht_remove_sta_debugfs | ( | void * | priv, |
void * | priv_sta | ||
) |
Definition at line 115 of file kernel-3.2/rc80211_minstrel_ht_debugfs.c.
static int minstrel_ht_stats_open | ( | struct inode * | inode, |
struct file * | file | ||
) | [static] |
Definition at line 19 of file kernel-3.2/rc80211_minstrel_ht_debugfs.c.
struct file_operations minstrel_ht_stat_fops [static] |
{ .owner = THIS_MODULE, .open = minstrel_ht_stats_open, .read = minstrel_stats_read, .release = minstrel_stats_release, .llseek = no_llseek, }
Definition at line 97 of file kernel-3.2/rc80211_minstrel_ht_debugfs.c.