blob: 35598350388577b17d35b340383ecbfeec9f92d5 [file] [log] [blame]
Jiri Bence9f207f2007-05-05 11:46:38 -07001/*
2 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
3 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10#include <linux/kernel.h>
11#include <linux/device.h>
12#include <linux/if.h>
13#include <linux/interrupt.h>
14#include <linux/netdevice.h>
15#include <linux/rtnetlink.h>
16#include <linux/notifier.h>
17#include <net/mac80211.h>
18#include <net/cfg80211.h>
19#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040020#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070021#include "debugfs.h"
22#include "debugfs_netdev.h"
23
24static ssize_t ieee80211_if_read(
25 struct ieee80211_sub_if_data *sdata,
26 char __user *userbuf,
27 size_t count, loff_t *ppos,
28 ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int))
29{
30 char buf[70];
31 ssize_t ret = -EINVAL;
32
33 read_lock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070034 if (sdata->dev->reg_state == NETREG_REGISTERED)
Jiri Bence9f207f2007-05-05 11:46:38 -070035 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070036 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070037
38 if (ret != -EINVAL)
39 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
40
Jiri Bence9f207f2007-05-05 11:46:38 -070041 return ret;
42}
43
Johannes Berg0f782312009-12-01 13:37:02 +010044static ssize_t ieee80211_if_write(
45 struct ieee80211_sub_if_data *sdata,
46 const char __user *userbuf,
47 size_t count, loff_t *ppos,
48 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
49{
50 u8 *buf;
51 ssize_t ret = -ENODEV;
52
53 buf = kzalloc(count, GFP_KERNEL);
54 if (!buf)
55 return -ENOMEM;
56
57 if (copy_from_user(buf, userbuf, count))
58 return -EFAULT;
59
60 rtnl_lock();
61 if (sdata->dev->reg_state == NETREG_REGISTERED)
62 ret = (*write)(sdata, buf, count);
63 rtnl_unlock();
64
65 return ret;
66}
67
Jiri Bence9f207f2007-05-05 11:46:38 -070068#define IEEE80211_IF_FMT(name, field, format_string) \
69static ssize_t ieee80211_if_fmt_##name( \
70 const struct ieee80211_sub_if_data *sdata, char *buf, \
71 int buflen) \
72{ \
73 return scnprintf(buf, buflen, format_string, sdata->field); \
74}
75#define IEEE80211_IF_FMT_DEC(name, field) \
76 IEEE80211_IF_FMT(name, field, "%d\n")
77#define IEEE80211_IF_FMT_HEX(name, field) \
78 IEEE80211_IF_FMT(name, field, "%#x\n")
79#define IEEE80211_IF_FMT_SIZE(name, field) \
80 IEEE80211_IF_FMT(name, field, "%zd\n")
81
82#define IEEE80211_IF_FMT_ATOMIC(name, field) \
83static ssize_t ieee80211_if_fmt_##name( \
84 const struct ieee80211_sub_if_data *sdata, \
85 char *buf, int buflen) \
86{ \
87 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
88}
89
90#define IEEE80211_IF_FMT_MAC(name, field) \
91static ssize_t ieee80211_if_fmt_##name( \
92 const struct ieee80211_sub_if_data *sdata, char *buf, \
93 int buflen) \
94{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -070095 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -070096}
97
Johannes Berg0f782312009-12-01 13:37:02 +010098#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -070099static ssize_t ieee80211_if_read_##name(struct file *file, \
100 char __user *userbuf, \
101 size_t count, loff_t *ppos) \
102{ \
103 return ieee80211_if_read(file->private_data, \
104 userbuf, count, ppos, \
105 ieee80211_if_fmt_##name); \
106} \
107static const struct file_operations name##_ops = { \
108 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100109 .write = (_write), \
Jiri Bence9f207f2007-05-05 11:46:38 -0700110 .open = mac80211_open_file_generic, \
111}
112
Johannes Berg0f782312009-12-01 13:37:02 +0100113#define __IEEE80211_IF_FILE_W(name) \
114static ssize_t ieee80211_if_write_##name(struct file *file, \
115 const char __user *userbuf, \
116 size_t count, loff_t *ppos) \
117{ \
118 return ieee80211_if_write(file->private_data, userbuf, count, \
119 ppos, ieee80211_if_parse_##name); \
120} \
121__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
122
123
Jiri Bence9f207f2007-05-05 11:46:38 -0700124#define IEEE80211_IF_FILE(name, field, format) \
125 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100126 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700127
128/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700129IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Johannes Berg3e122be2008-07-09 14:40:34 +0200130IEEE80211_IF_FILE(force_unicast_rateidx, force_unicast_rateidx, DEC);
131IEEE80211_IF_FILE(max_ratectrl_rateidx, max_ratectrl_rateidx, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700132
Johannes Berg46900292009-02-15 12:44:28 +0100133/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100134IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100135IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Johannes Berg46900292009-02-15 12:44:28 +0100136IEEE80211_IF_FILE(capab, u.mgd.capab, HEX);
Jiri Bence9f207f2007-05-05 11:46:38 -0700137
Johannes Berg0f782312009-12-01 13:37:02 +0100138static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
139 enum ieee80211_smps_mode smps_mode)
140{
141 struct ieee80211_local *local = sdata->local;
142 int err;
143
144 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
145 smps_mode == IEEE80211_SMPS_STATIC)
146 return -EINVAL;
147
148 /* auto should be dynamic if in PS mode */
149 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
150 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
151 smps_mode == IEEE80211_SMPS_AUTOMATIC))
152 return -EINVAL;
153
154 /* supported only on managed interfaces for now */
155 if (sdata->vif.type != NL80211_IFTYPE_STATION)
156 return -EOPNOTSUPP;
157
158 mutex_lock(&local->iflist_mtx);
159 err = __ieee80211_request_smps(sdata, smps_mode);
160 mutex_unlock(&local->iflist_mtx);
161
162 return err;
163}
164
165static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
166 [IEEE80211_SMPS_AUTOMATIC] = "auto",
167 [IEEE80211_SMPS_OFF] = "off",
168 [IEEE80211_SMPS_STATIC] = "static",
169 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
170};
171
172static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
173 char *buf, int buflen)
174{
175 if (sdata->vif.type != NL80211_IFTYPE_STATION)
176 return -EOPNOTSUPP;
177
178 return snprintf(buf, buflen, "request: %s\nused: %s\n",
179 smps_modes[sdata->u.mgd.req_smps],
180 smps_modes[sdata->u.mgd.ap_smps]);
181}
182
183static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
184 const char *buf, int buflen)
185{
186 enum ieee80211_smps_mode mode;
187
188 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
189 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
190 int err = ieee80211_set_smps(sdata, mode);
191 if (!err)
192 return buflen;
193 return err;
194 }
195 }
196
197 return -EINVAL;
198}
199
200__IEEE80211_IF_FILE_W(smps);
201
Jiri Bence9f207f2007-05-05 11:46:38 -0700202/* AP attributes */
203IEEE80211_IF_FILE(num_sta_ps, u.ap.num_sta_ps, ATOMIC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700204IEEE80211_IF_FILE(dtim_count, u.ap.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700205
206static ssize_t ieee80211_if_fmt_num_buffered_multicast(
207 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
208{
209 return scnprintf(buf, buflen, "%u\n",
210 skb_queue_len(&sdata->u.ap.ps_bc_buf));
211}
Johannes Berg0f782312009-12-01 13:37:02 +0100212__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700213
Jiri Bence9f207f2007-05-05 11:46:38 -0700214/* WDS attributes */
215IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
216
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100217#ifdef CONFIG_MAC80211_MESH
218/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700219IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
220IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200221IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
222IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100223IEEE80211_IF_FILE(dropped_frames_no_route,
Johannes Berg472dbc42008-09-11 00:01:49 +0200224 u.mesh.mshstats.dropped_frames_no_route, DEC);
225IEEE80211_IF_FILE(estab_plinks, u.mesh.mshstats.estab_plinks, ATOMIC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100226
227/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200228IEEE80211_IF_FILE(dot11MeshMaxRetries,
229 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
230IEEE80211_IF_FILE(dot11MeshRetryTimeout,
231 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
232IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
233 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
234IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
235 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
236IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
237IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
238IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
239 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
240IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
241 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
242IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
243 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
244IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
245 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
246IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
247 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
248IEEE80211_IF_FILE(path_refresh_time,
249 u.mesh.mshcfg.path_refresh_time, DEC);
250IEEE80211_IF_FILE(min_discovery_timeout,
251 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000252IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
253 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100254#endif
255
256
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100257#define DEBUGFS_ADD(name, type) \
258 debugfs_create_file(#name, 0400, sdata->debugfs.dir, \
259 sdata, &name##_ops);
Jiri Bence9f207f2007-05-05 11:46:38 -0700260
Johannes Berg0f782312009-12-01 13:37:02 +0100261#define DEBUGFS_ADD_MODE(name, mode) \
262 debugfs_create_file(#name, mode, sdata->debugfs.dir, \
263 sdata, &name##_ops);
264
Jiri Bence9f207f2007-05-05 11:46:38 -0700265static void add_sta_files(struct ieee80211_sub_if_data *sdata)
266{
Jiri Bence9f207f2007-05-05 11:46:38 -0700267 DEBUGFS_ADD(drop_unencrypted, sta);
Jouni Malinen93015f02008-08-25 11:57:06 +0300268 DEBUGFS_ADD(force_unicast_rateidx, sta);
269 DEBUGFS_ADD(max_ratectrl_rateidx, sta);
Johannes Berg3e122be2008-07-09 14:40:34 +0200270
Jiri Bence9f207f2007-05-05 11:46:38 -0700271 DEBUGFS_ADD(bssid, sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700272 DEBUGFS_ADD(aid, sta);
Jiri Bence9f207f2007-05-05 11:46:38 -0700273 DEBUGFS_ADD(capab, sta);
Johannes Berg0f782312009-12-01 13:37:02 +0100274 DEBUGFS_ADD_MODE(smps, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700275}
276
277static void add_ap_files(struct ieee80211_sub_if_data *sdata)
278{
Jiri Bence9f207f2007-05-05 11:46:38 -0700279 DEBUGFS_ADD(drop_unencrypted, ap);
Johannes Berg3e122be2008-07-09 14:40:34 +0200280 DEBUGFS_ADD(force_unicast_rateidx, ap);
281 DEBUGFS_ADD(max_ratectrl_rateidx, ap);
282
Jiri Bence9f207f2007-05-05 11:46:38 -0700283 DEBUGFS_ADD(num_sta_ps, ap);
Jiri Bence9f207f2007-05-05 11:46:38 -0700284 DEBUGFS_ADD(dtim_count, ap);
Jiri Bence9f207f2007-05-05 11:46:38 -0700285 DEBUGFS_ADD(num_buffered_multicast, ap);
Jiri Bence9f207f2007-05-05 11:46:38 -0700286}
287
288static void add_wds_files(struct ieee80211_sub_if_data *sdata)
289{
Jiri Bence9f207f2007-05-05 11:46:38 -0700290 DEBUGFS_ADD(drop_unencrypted, wds);
Jouni Malinen93015f02008-08-25 11:57:06 +0300291 DEBUGFS_ADD(force_unicast_rateidx, wds);
292 DEBUGFS_ADD(max_ratectrl_rateidx, wds);
Johannes Berg3e122be2008-07-09 14:40:34 +0200293
Jiri Bence9f207f2007-05-05 11:46:38 -0700294 DEBUGFS_ADD(peer, wds);
295}
296
297static void add_vlan_files(struct ieee80211_sub_if_data *sdata)
298{
Jiri Bence9f207f2007-05-05 11:46:38 -0700299 DEBUGFS_ADD(drop_unencrypted, vlan);
Jouni Malinen93015f02008-08-25 11:57:06 +0300300 DEBUGFS_ADD(force_unicast_rateidx, vlan);
301 DEBUGFS_ADD(max_ratectrl_rateidx, vlan);
Jiri Bence9f207f2007-05-05 11:46:38 -0700302}
303
304static void add_monitor_files(struct ieee80211_sub_if_data *sdata)
305{
Jiri Bence9f207f2007-05-05 11:46:38 -0700306}
307
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100308#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100309
310static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
311{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100312 struct dentry *dir = debugfs_create_dir("mesh_stats",
313 sdata->debugfs.dir);
314
315#define MESHSTATS_ADD(name)\
316 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
317
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700318 MESHSTATS_ADD(fwded_mcast);
319 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100320 MESHSTATS_ADD(fwded_frames);
321 MESHSTATS_ADD(dropped_frames_ttl);
322 MESHSTATS_ADD(dropped_frames_no_route);
323 MESHSTATS_ADD(estab_plinks);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100324#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100325}
326
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100327static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
328{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100329 struct dentry *dir = debugfs_create_dir("mesh_config",
330 sdata->debugfs.dir);
331
332#define MESHPARAMS_ADD(name) \
333 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
334
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100335 MESHPARAMS_ADD(dot11MeshMaxRetries);
336 MESHPARAMS_ADD(dot11MeshRetryTimeout);
337 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
338 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
339 MESHPARAMS_ADD(dot11MeshTTL);
340 MESHPARAMS_ADD(auto_open_plinks);
341 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
342 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
343 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
344 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
345 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
346 MESHPARAMS_ADD(path_refresh_time);
347 MESHPARAMS_ADD(min_discovery_timeout);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100348
349#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100350}
351#endif
352
Jiri Bence9f207f2007-05-05 11:46:38 -0700353static void add_files(struct ieee80211_sub_if_data *sdata)
354{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100355 if (!sdata->debugfs.dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700356 return;
357
Johannes Berg51fb61e2007-12-19 01:31:27 +0100358 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200359 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100360#ifdef CONFIG_MAC80211_MESH
361 add_mesh_stats(sdata);
362 add_mesh_config(sdata);
363#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200364 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200365 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700366 add_sta_files(sdata);
367 break;
Johannes Berg46900292009-02-15 12:44:28 +0100368 case NL80211_IFTYPE_ADHOC:
369 /* XXX */
370 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200371 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700372 add_ap_files(sdata);
373 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200374 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700375 add_wds_files(sdata);
376 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200377 case NL80211_IFTYPE_MONITOR:
Jiri Bence9f207f2007-05-05 11:46:38 -0700378 add_monitor_files(sdata);
379 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200380 case NL80211_IFTYPE_AP_VLAN:
Jiri Bence9f207f2007-05-05 11:46:38 -0700381 add_vlan_files(sdata);
382 break;
383 default:
384 break;
385 }
386}
387
Jiri Bence9f207f2007-05-05 11:46:38 -0700388void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
389{
390 char buf[10+IFNAMSIZ];
391
Johannes Berg47846c92009-11-25 17:46:19 +0100392 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100393 sdata->debugfs.dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700394 sdata->local->hw.wiphy->debugfsdir);
Johannes Berg75636522008-07-09 14:40:35 +0200395 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700396}
397
398void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
399{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100400 if (!sdata->debugfs.dir)
401 return;
402
403 debugfs_remove_recursive(sdata->debugfs.dir);
404 sdata->debugfs.dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700405}
406
Johannes Berg47846c92009-11-25 17:46:19 +0100407void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700408{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200409 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100410 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200411
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100412 dir = sdata->debugfs.dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200413
414 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100415 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200416
Johannes Berg47846c92009-11-25 17:46:19 +0100417 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200418 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
419 printk(KERN_ERR "mac80211: debugfs: failed to rename debugfs "
420 "dir to %s\n", buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700421}