#include <linux/netdevice.h>
#include <linux/types.h>
#include <linux/skbuff.h>
#include <linux/debugfs.h>
#include <linux/ieee80211.h>
#include <linux/slab.h>
#include <linux/export.h>
#include <net/mac80211.h>
#include "rc80211_minstrel.h"
Go to the source code of this file.
Functions | |
void | minstrel_add_sta_debugfs (void *priv, void *priv_sta, struct dentry *dir) |
void | minstrel_remove_sta_debugfs (void *priv, void *priv_sta) |
int | minstrel_stats_open (struct inode *inode, struct file *file) |
ssize_t | minstrel_stats_read (struct file *file, char __user *buf, size_t len, loff_t *ppos) |
int | minstrel_stats_release (struct inode *inode, struct file *file) |
Variables | |
static struct file_operations | minstrel_stat_fops |
void minstrel_add_sta_debugfs | ( | void * | priv, |
void * | priv_sta, | ||
struct dentry * | dir | ||
) |
Definition at line 130 of file kernel-3.2/rc80211_minstrel_debugfs.c.
void minstrel_remove_sta_debugfs | ( | void * | priv, |
void * | priv_sta | ||
) |
Definition at line 139 of file kernel-3.2/rc80211_minstrel_debugfs.c.
int minstrel_stats_open | ( | struct inode * | inode, |
struct file * | file | ||
) |
Definition at line 58 of file kernel-3.2/rc80211_minstrel_debugfs.c.
ssize_t minstrel_stats_read | ( | struct file * | file, |
char __user * | buf, | ||
size_t | len, | ||
loff_t * | ppos | ||
) |
Definition at line 106 of file kernel-3.2/rc80211_minstrel_debugfs.c.
int minstrel_stats_release | ( | struct inode * | inode, |
struct file * | file | ||
) |
Definition at line 115 of file kernel-3.2/rc80211_minstrel_debugfs.c.
struct file_operations minstrel_stat_fops [static] |
{ .owner = THIS_MODULE, .open = minstrel_stats_open, .read = minstrel_stats_read, .release = minstrel_stats_release, .llseek = default_llseek, }
Definition at line 121 of file kernel-3.2/rc80211_minstrel_debugfs.c.