Merge branch 'sched/urgent'
[linux-2.6/x86.git] / net / mac80211 / rc80211_pid_debugfs.c
blob4851e9e2daeda8e7988de6e74ca90913e8c30c0d
1 /*
2 * Copyright 2007, Mattias Nissler <mattias.nissler@gmx.de>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #include <linux/sched.h>
10 #include <linux/spinlock.h>
11 #include <linux/poll.h>
12 #include <linux/netdevice.h>
13 #include <linux/types.h>
14 #include <linux/skbuff.h>
15 #include <linux/slab.h>
17 #include <net/mac80211.h>
18 #include "rate.h"
20 #include "rc80211_pid.h"
22 static void rate_control_pid_event(struct rc_pid_event_buffer *buf,
23 enum rc_pid_event_type type,
24 union rc_pid_event_data *data)
26 struct rc_pid_event *ev;
27 unsigned long status;
29 spin_lock_irqsave(&buf->lock, status);
30 ev = &(buf->ring[buf->next_entry]);
31 buf->next_entry = (buf->next_entry + 1) % RC_PID_EVENT_RING_SIZE;
33 ev->timestamp = jiffies;
34 ev->id = buf->ev_count++;
35 ev->type = type;
36 ev->data = *data;
38 spin_unlock_irqrestore(&buf->lock, status);
40 wake_up_all(&buf->waitqueue);
43 void rate_control_pid_event_tx_status(struct rc_pid_event_buffer *buf,
44 struct ieee80211_tx_info *stat)
46 union rc_pid_event_data evd;
48 evd.flags = stat->flags;
49 memcpy(&evd.tx_status, stat, sizeof(struct ieee80211_tx_info));
50 rate_control_pid_event(buf, RC_PID_EVENT_TYPE_TX_STATUS, &evd);
53 void rate_control_pid_event_rate_change(struct rc_pid_event_buffer *buf,
54 int index, int rate)
56 union rc_pid_event_data evd;
58 evd.index = index;
59 evd.rate = rate;
60 rate_control_pid_event(buf, RC_PID_EVENT_TYPE_RATE_CHANGE, &evd);
63 void rate_control_pid_event_tx_rate(struct rc_pid_event_buffer *buf,
64 int index, int rate)
66 union rc_pid_event_data evd;
68 evd.index = index;
69 evd.rate = rate;
70 rate_control_pid_event(buf, RC_PID_EVENT_TYPE_TX_RATE, &evd);
73 void rate_control_pid_event_pf_sample(struct rc_pid_event_buffer *buf,
74 s32 pf_sample, s32 prop_err,
75 s32 int_err, s32 der_err)
77 union rc_pid_event_data evd;
79 evd.pf_sample = pf_sample;
80 evd.prop_err = prop_err;
81 evd.int_err = int_err;
82 evd.der_err = der_err;
83 rate_control_pid_event(buf, RC_PID_EVENT_TYPE_PF_SAMPLE, &evd);
86 static int rate_control_pid_events_open(struct inode *inode, struct file *file)
88 struct rc_pid_sta_info *sinfo = inode->i_private;
89 struct rc_pid_event_buffer *events = &sinfo->events;
90 struct rc_pid_events_file_info *file_info;
91 unsigned long status;
93 /* Allocate a state struct */
94 file_info = kmalloc(sizeof(*file_info), GFP_KERNEL);
95 if (file_info == NULL)
96 return -ENOMEM;
98 spin_lock_irqsave(&events->lock, status);
100 file_info->next_entry = events->next_entry;
101 file_info->events = events;
103 spin_unlock_irqrestore(&events->lock, status);
105 file->private_data = file_info;
107 return 0;
110 static int rate_control_pid_events_release(struct inode *inode,
111 struct file *file)
113 struct rc_pid_events_file_info *file_info = file->private_data;
115 kfree(file_info);
117 return 0;
120 static unsigned int rate_control_pid_events_poll(struct file *file,
121 poll_table *wait)
123 struct rc_pid_events_file_info *file_info = file->private_data;
125 poll_wait(file, &file_info->events->waitqueue, wait);
127 return POLLIN | POLLRDNORM;
130 #define RC_PID_PRINT_BUF_SIZE 64
132 static ssize_t rate_control_pid_events_read(struct file *file, char __user *buf,
133 size_t length, loff_t *offset)
135 struct rc_pid_events_file_info *file_info = file->private_data;
136 struct rc_pid_event_buffer *events = file_info->events;
137 struct rc_pid_event *ev;
138 char pb[RC_PID_PRINT_BUF_SIZE];
139 int ret;
140 int p;
141 unsigned long status;
143 /* Check if there is something to read. */
144 if (events->next_entry == file_info->next_entry) {
145 if (file->f_flags & O_NONBLOCK)
146 return -EAGAIN;
148 /* Wait */
149 ret = wait_event_interruptible(events->waitqueue,
150 events->next_entry != file_info->next_entry);
152 if (ret)
153 return ret;
156 /* Write out one event per call. I don't care whether it's a little
157 * inefficient, this is debugging code anyway. */
158 spin_lock_irqsave(&events->lock, status);
160 /* Get an event */
161 ev = &(events->ring[file_info->next_entry]);
162 file_info->next_entry = (file_info->next_entry + 1) %
163 RC_PID_EVENT_RING_SIZE;
165 /* Print information about the event. Note that userspace needs to
166 * provide large enough buffers. */
167 length = length < RC_PID_PRINT_BUF_SIZE ?
168 length : RC_PID_PRINT_BUF_SIZE;
169 p = snprintf(pb, length, "%u %lu ", ev->id, ev->timestamp);
170 switch (ev->type) {
171 case RC_PID_EVENT_TYPE_TX_STATUS:
172 p += snprintf(pb + p, length - p, "tx_status %u %u",
173 !(ev->data.flags & IEEE80211_TX_STAT_ACK),
174 ev->data.tx_status.status.rates[0].idx);
175 break;
176 case RC_PID_EVENT_TYPE_RATE_CHANGE:
177 p += snprintf(pb + p, length - p, "rate_change %d %d",
178 ev->data.index, ev->data.rate);
179 break;
180 case RC_PID_EVENT_TYPE_TX_RATE:
181 p += snprintf(pb + p, length - p, "tx_rate %d %d",
182 ev->data.index, ev->data.rate);
183 break;
184 case RC_PID_EVENT_TYPE_PF_SAMPLE:
185 p += snprintf(pb + p, length - p,
186 "pf_sample %d %d %d %d",
187 ev->data.pf_sample, ev->data.prop_err,
188 ev->data.int_err, ev->data.der_err);
189 break;
191 p += snprintf(pb + p, length - p, "\n");
193 spin_unlock_irqrestore(&events->lock, status);
195 if (copy_to_user(buf, pb, p))
196 return -EFAULT;
198 return p;
201 #undef RC_PID_PRINT_BUF_SIZE
203 static const struct file_operations rc_pid_fop_events = {
204 .owner = THIS_MODULE,
205 .read = rate_control_pid_events_read,
206 .poll = rate_control_pid_events_poll,
207 .open = rate_control_pid_events_open,
208 .release = rate_control_pid_events_release,
209 .llseek = noop_llseek,
212 void rate_control_pid_add_sta_debugfs(void *priv, void *priv_sta,
213 struct dentry *dir)
215 struct rc_pid_sta_info *spinfo = priv_sta;
217 spinfo->events_entry = debugfs_create_file("rc_pid_events", S_IRUGO,
218 dir, spinfo,
219 &rc_pid_fop_events);
222 void rate_control_pid_remove_sta_debugfs(void *priv, void *priv_sta)
224 struct rc_pid_sta_info *spinfo = priv_sta;
226 debugfs_remove(spinfo->events_entry);