blob: 04b5a14c8a054e33227b893de78912e5ee4a6f80 [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>
Johannes Berg28656a12012-11-05 20:24:38 +010013#include <linux/if_ether.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070014#include <linux/interrupt.h>
15#include <linux/netdevice.h>
16#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Jiri Bence9f207f2007-05-05 11:46:38 -070018#include <linux/notifier.h>
19#include <net/mac80211.h>
20#include <net/cfg80211.h>
21#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040022#include "rate.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070023#include "debugfs.h"
24#include "debugfs_netdev.h"
Eliad Peller37a41b42011-09-21 14:06:11 +030025#include "driver-ops.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070026
27static ssize_t ieee80211_if_read(
28 struct ieee80211_sub_if_data *sdata,
29 char __user *userbuf,
30 size_t count, loff_t *ppos,
31 ssize_t (*format)(const struct ieee80211_sub_if_data *, char *, int))
32{
33 char buf[70];
34 ssize_t ret = -EINVAL;
35
36 read_lock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070037 if (sdata->dev->reg_state == NETREG_REGISTERED)
Jiri Bence9f207f2007-05-05 11:46:38 -070038 ret = (*format)(sdata, buf, sizeof(buf));
Jiri Bence9f207f2007-05-05 11:46:38 -070039 read_unlock(&dev_base_lock);
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070040
Jouni Malinen681d1192011-02-03 18:35:19 +020041 if (ret >= 0)
Luis Carlos Cobo73bb3e42008-03-31 15:10:22 -070042 ret = simple_read_from_buffer(userbuf, count, ppos, buf, ret);
43
Jiri Bence9f207f2007-05-05 11:46:38 -070044 return ret;
45}
46
Johannes Berg0f782312009-12-01 13:37:02 +010047static ssize_t ieee80211_if_write(
48 struct ieee80211_sub_if_data *sdata,
49 const char __user *userbuf,
50 size_t count, loff_t *ppos,
51 ssize_t (*write)(struct ieee80211_sub_if_data *, const char *, int))
52{
Eliad Pellerada577c2012-03-14 16:15:02 +020053 char buf[64];
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010054 ssize_t ret;
Johannes Berg0f782312009-12-01 13:37:02 +010055
Eliad Pellerada577c2012-03-14 16:15:02 +020056 if (count >= sizeof(buf))
57 return -E2BIG;
Johannes Berg0f782312009-12-01 13:37:02 +010058
59 if (copy_from_user(buf, userbuf, count))
Eliad Pellerada577c2012-03-14 16:15:02 +020060 return -EFAULT;
61 buf[count] = '\0';
Johannes Berg0f782312009-12-01 13:37:02 +010062
Eric Dumazet51f5f8c2010-03-10 17:13:36 +010063 ret = -ENODEV;
Johannes Berg0f782312009-12-01 13:37:02 +010064 rtnl_lock();
65 if (sdata->dev->reg_state == NETREG_REGISTERED)
66 ret = (*write)(sdata, buf, count);
67 rtnl_unlock();
68
69 return ret;
70}
71
Jiri Bence9f207f2007-05-05 11:46:38 -070072#define IEEE80211_IF_FMT(name, field, format_string) \
73static ssize_t ieee80211_if_fmt_##name( \
74 const struct ieee80211_sub_if_data *sdata, char *buf, \
75 int buflen) \
76{ \
77 return scnprintf(buf, buflen, format_string, sdata->field); \
78}
79#define IEEE80211_IF_FMT_DEC(name, field) \
80 IEEE80211_IF_FMT(name, field, "%d\n")
81#define IEEE80211_IF_FMT_HEX(name, field) \
82 IEEE80211_IF_FMT(name, field, "%#x\n")
Ben Greear4914b3b2011-01-27 22:09:34 -080083#define IEEE80211_IF_FMT_LHEX(name, field) \
84 IEEE80211_IF_FMT(name, field, "%#lx\n")
Jiri Bence9f207f2007-05-05 11:46:38 -070085#define IEEE80211_IF_FMT_SIZE(name, field) \
86 IEEE80211_IF_FMT(name, field, "%zd\n")
87
Simon Wunderlich19468412012-01-28 17:25:33 +010088#define IEEE80211_IF_FMT_HEXARRAY(name, field) \
89static ssize_t ieee80211_if_fmt_##name( \
90 const struct ieee80211_sub_if_data *sdata, \
91 char *buf, int buflen) \
92{ \
93 char *p = buf; \
94 int i; \
95 for (i = 0; i < sizeof(sdata->field); i++) { \
96 p += scnprintf(p, buflen + buf - p, "%.2x ", \
97 sdata->field[i]); \
98 } \
99 p += scnprintf(p, buflen + buf - p, "\n"); \
100 return p - buf; \
101}
102
Jiri Bence9f207f2007-05-05 11:46:38 -0700103#define IEEE80211_IF_FMT_ATOMIC(name, field) \
104static ssize_t ieee80211_if_fmt_##name( \
105 const struct ieee80211_sub_if_data *sdata, \
106 char *buf, int buflen) \
107{ \
108 return scnprintf(buf, buflen, "%d\n", atomic_read(&sdata->field));\
109}
110
111#define IEEE80211_IF_FMT_MAC(name, field) \
112static ssize_t ieee80211_if_fmt_##name( \
113 const struct ieee80211_sub_if_data *sdata, char *buf, \
114 int buflen) \
115{ \
Johannes Berg0c68ae262008-10-27 15:56:10 -0700116 return scnprintf(buf, buflen, "%pM\n", sdata->field); \
Jiri Bence9f207f2007-05-05 11:46:38 -0700117}
118
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700119#define IEEE80211_IF_FMT_DEC_DIV_16(name, field) \
120static ssize_t ieee80211_if_fmt_##name( \
121 const struct ieee80211_sub_if_data *sdata, \
122 char *buf, int buflen) \
123{ \
124 return scnprintf(buf, buflen, "%d\n", sdata->field / 16); \
125}
126
Ben Greear78e443e2013-03-25 11:19:34 -0700127#define IEEE80211_IF_FMT_JIFFIES_TO_MS(name, field) \
128static ssize_t ieee80211_if_fmt_##name( \
129 const struct ieee80211_sub_if_data *sdata, \
130 char *buf, int buflen) \
131{ \
132 return scnprintf(buf, buflen, "%d\n", \
133 jiffies_to_msecs(sdata->field)); \
134}
135
Johannes Berg0f782312009-12-01 13:37:02 +0100136#define __IEEE80211_IF_FILE(name, _write) \
Jiri Bence9f207f2007-05-05 11:46:38 -0700137static ssize_t ieee80211_if_read_##name(struct file *file, \
138 char __user *userbuf, \
139 size_t count, loff_t *ppos) \
140{ \
141 return ieee80211_if_read(file->private_data, \
142 userbuf, count, ppos, \
143 ieee80211_if_fmt_##name); \
144} \
145static const struct file_operations name##_ops = { \
146 .read = ieee80211_if_read_##name, \
Johannes Berg0f782312009-12-01 13:37:02 +0100147 .write = (_write), \
Stephen Boyd234e3402012-04-05 14:25:11 -0700148 .open = simple_open, \
Arnd Bergmann2b18ab362010-07-06 19:05:31 +0200149 .llseek = generic_file_llseek, \
Jiri Bence9f207f2007-05-05 11:46:38 -0700150}
151
Johannes Berg0f782312009-12-01 13:37:02 +0100152#define __IEEE80211_IF_FILE_W(name) \
153static ssize_t ieee80211_if_write_##name(struct file *file, \
154 const char __user *userbuf, \
155 size_t count, loff_t *ppos) \
156{ \
157 return ieee80211_if_write(file->private_data, userbuf, count, \
158 ppos, ieee80211_if_parse_##name); \
159} \
160__IEEE80211_IF_FILE(name, ieee80211_if_write_##name)
161
162
Jiri Bence9f207f2007-05-05 11:46:38 -0700163#define IEEE80211_IF_FILE(name, field, format) \
164 IEEE80211_IF_FMT_##format(name, field) \
Johannes Berg0f782312009-12-01 13:37:02 +0100165 __IEEE80211_IF_FILE(name, NULL)
Jiri Bence9f207f2007-05-05 11:46:38 -0700166
167/* common attributes */
Jiri Bence9f207f2007-05-05 11:46:38 -0700168IEEE80211_IF_FILE(drop_unencrypted, drop_unencrypted, DEC);
Jouni Malinen37eb0b12010-01-06 13:09:08 +0200169IEEE80211_IF_FILE(rc_rateidx_mask_2ghz, rc_rateidx_mask[IEEE80211_BAND_2GHZ],
170 HEX);
171IEEE80211_IF_FILE(rc_rateidx_mask_5ghz, rc_rateidx_mask[IEEE80211_BAND_5GHZ],
172 HEX);
Simon Wunderlich19468412012-01-28 17:25:33 +0100173IEEE80211_IF_FILE(rc_rateidx_mcs_mask_2ghz,
174 rc_rateidx_mcs_mask[IEEE80211_BAND_2GHZ], HEXARRAY);
175IEEE80211_IF_FILE(rc_rateidx_mcs_mask_5ghz,
176 rc_rateidx_mcs_mask[IEEE80211_BAND_5GHZ], HEXARRAY);
177
Ben Greear4914b3b2011-01-27 22:09:34 -0800178IEEE80211_IF_FILE(flags, flags, HEX);
179IEEE80211_IF_FILE(state, state, LHEX);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200180IEEE80211_IF_FILE(txpower, vif.bss_conf.txpower, DEC);
181IEEE80211_IF_FILE(ap_power_level, ap_power_level, DEC);
182IEEE80211_IF_FILE(user_power_level, user_power_level, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700183
Johannes Berg08643312012-11-08 15:29:28 +0100184static ssize_t
185ieee80211_if_fmt_hw_queues(const struct ieee80211_sub_if_data *sdata,
186 char *buf, int buflen)
187{
188 int len;
189
190 len = scnprintf(buf, buflen, "AC queues: VO:%d VI:%d BE:%d BK:%d\n",
191 sdata->vif.hw_queue[IEEE80211_AC_VO],
192 sdata->vif.hw_queue[IEEE80211_AC_VI],
193 sdata->vif.hw_queue[IEEE80211_AC_BE],
194 sdata->vif.hw_queue[IEEE80211_AC_BK]);
195
196 if (sdata->vif.type == NL80211_IFTYPE_AP)
197 len += scnprintf(buf + len, buflen - len, "cab queue: %d\n",
198 sdata->vif.cab_queue);
199
200 return len;
201}
202__IEEE80211_IF_FILE(hw_queues, NULL);
203
Johannes Berg46900292009-02-15 12:44:28 +0100204/* STA attributes */
Johannes Berg46900292009-02-15 12:44:28 +0100205IEEE80211_IF_FILE(bssid, u.mgd.bssid, MAC);
Johannes Berg46900292009-02-15 12:44:28 +0100206IEEE80211_IF_FILE(aid, u.mgd.aid, DEC);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700207IEEE80211_IF_FILE(last_beacon, u.mgd.last_beacon_signal, DEC);
208IEEE80211_IF_FILE(ave_beacon, u.mgd.ave_beacon_signal, DEC_DIV_16);
Ben Greear78e443e2013-03-25 11:19:34 -0700209IEEE80211_IF_FILE(beacon_timeout, u.mgd.beacon_timeout, JIFFIES_TO_MS);
Jiri Bence9f207f2007-05-05 11:46:38 -0700210
Johannes Berg0f782312009-12-01 13:37:02 +0100211static int ieee80211_set_smps(struct ieee80211_sub_if_data *sdata,
212 enum ieee80211_smps_mode smps_mode)
213{
214 struct ieee80211_local *local = sdata->local;
215 int err;
216
217 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_STATIC_SMPS) &&
218 smps_mode == IEEE80211_SMPS_STATIC)
219 return -EINVAL;
220
221 /* auto should be dynamic if in PS mode */
222 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS) &&
223 (smps_mode == IEEE80211_SMPS_DYNAMIC ||
224 smps_mode == IEEE80211_SMPS_AUTOMATIC))
225 return -EINVAL;
226
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300227 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
228 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg0f782312009-12-01 13:37:02 +0100229 return -EOPNOTSUPP;
230
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200231 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300232 if (sdata->vif.type == NL80211_IFTYPE_STATION)
233 err = __ieee80211_request_smps_mgd(sdata, smps_mode);
234 else
235 err = __ieee80211_request_smps_ap(sdata, smps_mode);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200236 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +0100237
238 return err;
239}
240
241static const char *smps_modes[IEEE80211_SMPS_NUM_MODES] = {
242 [IEEE80211_SMPS_AUTOMATIC] = "auto",
243 [IEEE80211_SMPS_OFF] = "off",
244 [IEEE80211_SMPS_STATIC] = "static",
245 [IEEE80211_SMPS_DYNAMIC] = "dynamic",
246};
247
248static ssize_t ieee80211_if_fmt_smps(const struct ieee80211_sub_if_data *sdata,
249 char *buf, int buflen)
250{
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300251 if (sdata->vif.type == NL80211_IFTYPE_STATION)
252 return snprintf(buf, buflen, "request: %s\nused: %s\n",
253 smps_modes[sdata->u.mgd.req_smps],
254 smps_modes[sdata->smps_mode]);
255 if (sdata->vif.type == NL80211_IFTYPE_AP)
256 return snprintf(buf, buflen, "request: %s\nused: %s\n",
257 smps_modes[sdata->u.ap.req_smps],
258 smps_modes[sdata->smps_mode]);
259 return -EINVAL;
Johannes Berg0f782312009-12-01 13:37:02 +0100260}
261
262static ssize_t ieee80211_if_parse_smps(struct ieee80211_sub_if_data *sdata,
263 const char *buf, int buflen)
264{
265 enum ieee80211_smps_mode mode;
266
267 for (mode = 0; mode < IEEE80211_SMPS_NUM_MODES; mode++) {
268 if (strncmp(buf, smps_modes[mode], buflen) == 0) {
269 int err = ieee80211_set_smps(sdata, mode);
270 if (!err)
271 return buflen;
272 return err;
273 }
274 }
275
276 return -EINVAL;
277}
278
279__IEEE80211_IF_FILE_W(smps);
280
Jouni Malinen681d1192011-02-03 18:35:19 +0200281static ssize_t ieee80211_if_fmt_tkip_mic_test(
282 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
283{
284 return -EOPNOTSUPP;
285}
286
Jouni Malinen681d1192011-02-03 18:35:19 +0200287static ssize_t ieee80211_if_parse_tkip_mic_test(
288 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
289{
290 struct ieee80211_local *local = sdata->local;
291 u8 addr[ETH_ALEN];
292 struct sk_buff *skb;
293 struct ieee80211_hdr *hdr;
294 __le16 fc;
295
Johannes Berg28656a12012-11-05 20:24:38 +0100296 if (!mac_pton(buf, addr))
Jouni Malinen681d1192011-02-03 18:35:19 +0200297 return -EINVAL;
298
299 if (!ieee80211_sdata_running(sdata))
300 return -ENOTCONN;
301
302 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 24 + 100);
303 if (!skb)
304 return -ENOMEM;
305 skb_reserve(skb, local->hw.extra_tx_headroom);
306
307 hdr = (struct ieee80211_hdr *) skb_put(skb, 24);
308 memset(hdr, 0, 24);
309 fc = cpu_to_le16(IEEE80211_FTYPE_DATA | IEEE80211_STYPE_DATA);
310
311 switch (sdata->vif.type) {
312 case NL80211_IFTYPE_AP:
313 fc |= cpu_to_le16(IEEE80211_FCTL_FROMDS);
314 /* DA BSSID SA */
315 memcpy(hdr->addr1, addr, ETH_ALEN);
316 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
317 memcpy(hdr->addr3, sdata->vif.addr, ETH_ALEN);
318 break;
319 case NL80211_IFTYPE_STATION:
320 fc |= cpu_to_le16(IEEE80211_FCTL_TODS);
321 /* BSSID SA DA */
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200322 sdata_lock(sdata);
Johannes Berg41c97a22012-11-05 20:27:57 +0100323 if (!sdata->u.mgd.associated) {
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200324 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200325 dev_kfree_skb(skb);
326 return -ENOTCONN;
327 }
Johannes Berg41c97a22012-11-05 20:27:57 +0100328 memcpy(hdr->addr1, sdata->u.mgd.associated->bssid, ETH_ALEN);
Jouni Malinen681d1192011-02-03 18:35:19 +0200329 memcpy(hdr->addr2, sdata->vif.addr, ETH_ALEN);
330 memcpy(hdr->addr3, addr, ETH_ALEN);
Johannes Berg8d61ffa2013-05-10 12:32:47 +0200331 sdata_unlock(sdata);
Jouni Malinen681d1192011-02-03 18:35:19 +0200332 break;
333 default:
334 dev_kfree_skb(skb);
335 return -EOPNOTSUPP;
336 }
337 hdr->frame_control = fc;
338
339 /*
340 * Add some length to the test frame to make it look bit more valid.
341 * The exact contents does not matter since the recipient is required
342 * to drop this because of the Michael MIC failure.
343 */
344 memset(skb_put(skb, 50), 0, 50);
345
346 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_INTFL_TKIP_MIC_FAILURE;
347
348 ieee80211_tx_skb(sdata, skb);
349
350 return buflen;
351}
352
353__IEEE80211_IF_FILE_W(tkip_mic_test);
354
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200355static ssize_t ieee80211_if_fmt_uapsd_queues(
356 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
357{
358 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
359
360 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_queues);
361}
362
363static ssize_t ieee80211_if_parse_uapsd_queues(
364 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
365{
366 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
367 u8 val;
368 int ret;
369
370 ret = kstrtou8(buf, 0, &val);
371 if (ret)
372 return ret;
373
374 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
375 return -ERANGE;
376
377 ifmgd->uapsd_queues = val;
378
379 return buflen;
380}
381__IEEE80211_IF_FILE_W(uapsd_queues);
382
383static ssize_t ieee80211_if_fmt_uapsd_max_sp_len(
384 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
385{
386 const struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
387
388 return snprintf(buf, buflen, "0x%x\n", ifmgd->uapsd_max_sp_len);
389}
390
391static ssize_t ieee80211_if_parse_uapsd_max_sp_len(
392 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
393{
394 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
395 unsigned long val;
396 int ret;
397
398 ret = kstrtoul(buf, 0, &val);
399 if (ret)
400 return -EINVAL;
401
402 if (val & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
403 return -ERANGE;
404
405 ifmgd->uapsd_max_sp_len = val;
406
407 return buflen;
408}
409__IEEE80211_IF_FILE_W(uapsd_max_sp_len);
410
Jiri Bence9f207f2007-05-05 11:46:38 -0700411/* AP attributes */
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200412IEEE80211_IF_FILE(num_mcast_sta, u.ap.num_mcast_sta, ATOMIC);
Marco Porschd012a602012-10-10 12:39:50 -0700413IEEE80211_IF_FILE(num_sta_ps, u.ap.ps.num_sta_ps, ATOMIC);
414IEEE80211_IF_FILE(dtim_count, u.ap.ps.dtim_count, DEC);
Jiri Bence9f207f2007-05-05 11:46:38 -0700415
416static ssize_t ieee80211_if_fmt_num_buffered_multicast(
417 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
418{
419 return scnprintf(buf, buflen, "%u\n",
Marco Porschd012a602012-10-10 12:39:50 -0700420 skb_queue_len(&sdata->u.ap.ps.bc_buf));
Jiri Bence9f207f2007-05-05 11:46:38 -0700421}
Johannes Berg0f782312009-12-01 13:37:02 +0100422__IEEE80211_IF_FILE(num_buffered_multicast, NULL);
Jiri Bence9f207f2007-05-05 11:46:38 -0700423
Eliad Peller37a41b42011-09-21 14:06:11 +0300424/* IBSS attributes */
425static ssize_t ieee80211_if_fmt_tsf(
426 const struct ieee80211_sub_if_data *sdata, char *buf, int buflen)
427{
428 struct ieee80211_local *local = sdata->local;
429 u64 tsf;
430
431 tsf = drv_get_tsf(local, (struct ieee80211_sub_if_data *)sdata);
432
433 return scnprintf(buf, buflen, "0x%016llx\n", (unsigned long long) tsf);
434}
435
436static ssize_t ieee80211_if_parse_tsf(
437 struct ieee80211_sub_if_data *sdata, const char *buf, int buflen)
438{
439 struct ieee80211_local *local = sdata->local;
440 unsigned long long tsf;
441 int ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700442 int tsf_is_delta = 0;
Eliad Peller37a41b42011-09-21 14:06:11 +0300443
444 if (strncmp(buf, "reset", 5) == 0) {
445 if (local->ops->reset_tsf) {
446 drv_reset_tsf(local, sdata);
447 wiphy_info(local->hw.wiphy, "debugfs reset TSF\n");
448 }
449 } else {
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700450 if (buflen > 10 && buf[1] == '=') {
451 if (buf[0] == '+')
452 tsf_is_delta = 1;
453 else if (buf[0] == '-')
454 tsf_is_delta = -1;
455 else
456 return -EINVAL;
457 buf += 2;
458 }
Eliad Peller37a41b42011-09-21 14:06:11 +0300459 ret = kstrtoull(buf, 10, &tsf);
460 if (ret < 0)
Johannes Berg6fc1da92012-11-05 20:30:39 +0100461 return ret;
Javier Cardona9bdd3a62012-03-31 11:31:31 -0700462 if (tsf_is_delta)
463 tsf = drv_get_tsf(local, sdata) + tsf_is_delta * tsf;
Eliad Peller37a41b42011-09-21 14:06:11 +0300464 if (local->ops->set_tsf) {
465 drv_set_tsf(local, sdata, tsf);
466 wiphy_info(local->hw.wiphy,
467 "debugfs set TSF to %#018llx\n", tsf);
468 }
469 }
470
471 return buflen;
472}
473__IEEE80211_IF_FILE_W(tsf);
474
475
Jiri Bence9f207f2007-05-05 11:46:38 -0700476/* WDS attributes */
477IEEE80211_IF_FILE(peer, u.wds.remote_addr, MAC);
478
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100479#ifdef CONFIG_MAC80211_MESH
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700480IEEE80211_IF_FILE(estab_plinks, u.mesh.estab_plinks, ATOMIC);
481
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100482/* Mesh stats attributes */
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700483IEEE80211_IF_FILE(fwded_mcast, u.mesh.mshstats.fwded_mcast, DEC);
484IEEE80211_IF_FILE(fwded_unicast, u.mesh.mshstats.fwded_unicast, DEC);
Johannes Berg472dbc42008-09-11 00:01:49 +0200485IEEE80211_IF_FILE(fwded_frames, u.mesh.mshstats.fwded_frames, DEC);
486IEEE80211_IF_FILE(dropped_frames_ttl, u.mesh.mshstats.dropped_frames_ttl, DEC);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700487IEEE80211_IF_FILE(dropped_frames_congestion,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800488 u.mesh.mshstats.dropped_frames_congestion, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100489IEEE80211_IF_FILE(dropped_frames_no_route,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800490 u.mesh.mshstats.dropped_frames_no_route, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100491
492/* Mesh parameters */
Johannes Berg36ff3822008-10-07 12:04:31 +0200493IEEE80211_IF_FILE(dot11MeshMaxRetries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800494 u.mesh.mshcfg.dot11MeshMaxRetries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200495IEEE80211_IF_FILE(dot11MeshRetryTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800496 u.mesh.mshcfg.dot11MeshRetryTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200497IEEE80211_IF_FILE(dot11MeshConfirmTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800498 u.mesh.mshcfg.dot11MeshConfirmTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200499IEEE80211_IF_FILE(dot11MeshHoldingTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800500 u.mesh.mshcfg.dot11MeshHoldingTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200501IEEE80211_IF_FILE(dot11MeshTTL, u.mesh.mshcfg.dot11MeshTTL, DEC);
Javier Cardona45904f22010-12-03 09:20:40 +0100502IEEE80211_IF_FILE(element_ttl, u.mesh.mshcfg.element_ttl, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200503IEEE80211_IF_FILE(auto_open_plinks, u.mesh.mshcfg.auto_open_plinks, DEC);
504IEEE80211_IF_FILE(dot11MeshMaxPeerLinks,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800505 u.mesh.mshcfg.dot11MeshMaxPeerLinks, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200506IEEE80211_IF_FILE(dot11MeshHWMPactivePathTimeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800507 u.mesh.mshcfg.dot11MeshHWMPactivePathTimeout, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200508IEEE80211_IF_FILE(dot11MeshHWMPpreqMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800509 u.mesh.mshcfg.dot11MeshHWMPpreqMinInterval, DEC);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800510IEEE80211_IF_FILE(dot11MeshHWMPperrMinInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800511 u.mesh.mshcfg.dot11MeshHWMPperrMinInterval, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200512IEEE80211_IF_FILE(dot11MeshHWMPnetDiameterTraversalTime,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800513 u.mesh.mshcfg.dot11MeshHWMPnetDiameterTraversalTime, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200514IEEE80211_IF_FILE(dot11MeshHWMPmaxPREQretries,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800515 u.mesh.mshcfg.dot11MeshHWMPmaxPREQretries, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200516IEEE80211_IF_FILE(path_refresh_time,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800517 u.mesh.mshcfg.path_refresh_time, DEC);
Johannes Berg36ff3822008-10-07 12:04:31 +0200518IEEE80211_IF_FILE(min_discovery_timeout,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800519 u.mesh.mshcfg.min_discovery_timeout, DEC);
Rui Paulo63c57232009-11-09 23:46:57 +0000520IEEE80211_IF_FILE(dot11MeshHWMPRootMode,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800521 u.mesh.mshcfg.dot11MeshHWMPRootMode, DEC);
Javier Cardona16dd7262011-08-09 16:45:11 -0700522IEEE80211_IF_FILE(dot11MeshGateAnnouncementProtocol,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800523 u.mesh.mshcfg.dot11MeshGateAnnouncementProtocol, DEC);
Javier Cardona0507e152011-08-09 16:45:10 -0700524IEEE80211_IF_FILE(dot11MeshHWMPRannInterval,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800525 u.mesh.mshcfg.dot11MeshHWMPRannInterval, DEC);
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +0800526IEEE80211_IF_FILE(dot11MeshForwarding, u.mesh.mshcfg.dot11MeshForwarding, DEC);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800527IEEE80211_IF_FILE(rssi_threshold, u.mesh.mshcfg.rssi_threshold, DEC);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700528IEEE80211_IF_FILE(ht_opmode, u.mesh.mshcfg.ht_opmode, DEC);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800529IEEE80211_IF_FILE(dot11MeshHWMPactivePathToRootTimeout,
530 u.mesh.mshcfg.dot11MeshHWMPactivePathToRootTimeout, DEC);
531IEEE80211_IF_FILE(dot11MeshHWMProotInterval,
532 u.mesh.mshcfg.dot11MeshHWMProotInterval, DEC);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800533IEEE80211_IF_FILE(dot11MeshHWMPconfirmationInterval,
534 u.mesh.mshcfg.dot11MeshHWMPconfirmationInterval, DEC);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100535IEEE80211_IF_FILE(power_mode, u.mesh.mshcfg.power_mode, DEC);
536IEEE80211_IF_FILE(dot11MeshAwakeWindowDuration,
537 u.mesh.mshcfg.dot11MeshAwakeWindowDuration, DEC);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100538#endif
539
Johannes Berg0f782312009-12-01 13:37:02 +0100540#define DEBUGFS_ADD_MODE(name, mode) \
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100541 debugfs_create_file(#name, mode, sdata->vif.debugfs_dir, \
Johannes Berg0f782312009-12-01 13:37:02 +0100542 sdata, &name##_ops);
543
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100544#define DEBUGFS_ADD(name) DEBUGFS_ADD_MODE(name, 0400)
545
546static void add_common_files(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700547{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100548 DEBUGFS_ADD(drop_unencrypted);
549 DEBUGFS_ADD(rc_rateidx_mask_2ghz);
550 DEBUGFS_ADD(rc_rateidx_mask_5ghz);
Simon Wunderlich19468412012-01-28 17:25:33 +0100551 DEBUGFS_ADD(rc_rateidx_mcs_mask_2ghz);
552 DEBUGFS_ADD(rc_rateidx_mcs_mask_5ghz);
Johannes Berg08643312012-11-08 15:29:28 +0100553 DEBUGFS_ADD(hw_queues);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100554}
Johannes Berg3e122be2008-07-09 14:40:34 +0200555
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100556static void add_sta_files(struct ieee80211_sub_if_data *sdata)
557{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100558 DEBUGFS_ADD(bssid);
559 DEBUGFS_ADD(aid);
Jouni Malinen17e4ec12010-03-29 23:28:30 -0700560 DEBUGFS_ADD(last_beacon);
561 DEBUGFS_ADD(ave_beacon);
Ben Greear78e443e2013-03-25 11:19:34 -0700562 DEBUGFS_ADD(beacon_timeout);
Johannes Berg0f782312009-12-01 13:37:02 +0100563 DEBUGFS_ADD_MODE(smps, 0600);
Jouni Malinen681d1192011-02-03 18:35:19 +0200564 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Eliad Pellerdc41e4d2012-03-14 16:15:03 +0200565 DEBUGFS_ADD_MODE(uapsd_queues, 0600);
566 DEBUGFS_ADD_MODE(uapsd_max_sp_len, 0600);
Jiri Bence9f207f2007-05-05 11:46:38 -0700567}
568
569static void add_ap_files(struct ieee80211_sub_if_data *sdata)
570{
Felix Fietkau030ef8f2012-04-23 19:49:02 +0200571 DEBUGFS_ADD(num_mcast_sta);
Emmanuel Grumbach687da132013-10-01 16:45:43 +0300572 DEBUGFS_ADD_MODE(smps, 0600);
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100573 DEBUGFS_ADD(num_sta_ps);
574 DEBUGFS_ADD(dtim_count);
575 DEBUGFS_ADD(num_buffered_multicast);
Jouni Malinen681d1192011-02-03 18:35:19 +0200576 DEBUGFS_ADD_MODE(tkip_mic_test, 0200);
Jiri Bence9f207f2007-05-05 11:46:38 -0700577}
578
Eliad Peller37a41b42011-09-21 14:06:11 +0300579static void add_ibss_files(struct ieee80211_sub_if_data *sdata)
580{
581 DEBUGFS_ADD_MODE(tsf, 0600);
582}
583
Jiri Bence9f207f2007-05-05 11:46:38 -0700584static void add_wds_files(struct ieee80211_sub_if_data *sdata)
585{
Johannes Berg2d46d7c2010-01-10 17:12:41 +0100586 DEBUGFS_ADD(peer);
Jiri Bence9f207f2007-05-05 11:46:38 -0700587}
588
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100589#ifdef CONFIG_MAC80211_MESH
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100590
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800591static void add_mesh_files(struct ieee80211_sub_if_data *sdata)
592{
593 DEBUGFS_ADD_MODE(tsf, 0600);
Ashok Nagarajand4a5a482013-05-13 17:08:04 -0700594 DEBUGFS_ADD_MODE(estab_plinks, 0400);
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800595}
596
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100597static void add_mesh_stats(struct ieee80211_sub_if_data *sdata)
598{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100599 struct dentry *dir = debugfs_create_dir("mesh_stats",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100600 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100601#define MESHSTATS_ADD(name)\
602 debugfs_create_file(#name, 0400, dir, sdata, &name##_ops);
603
Daniel Walkerc8a61a72009-08-18 10:59:00 -0700604 MESHSTATS_ADD(fwded_mcast);
605 MESHSTATS_ADD(fwded_unicast);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100606 MESHSTATS_ADD(fwded_frames);
607 MESHSTATS_ADD(dropped_frames_ttl);
608 MESHSTATS_ADD(dropped_frames_no_route);
Javier Cardonacfee66b2011-09-06 13:05:21 -0700609 MESHSTATS_ADD(dropped_frames_congestion);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100610#undef MESHSTATS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100611}
612
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100613static void add_mesh_config(struct ieee80211_sub_if_data *sdata)
614{
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100615 struct dentry *dir = debugfs_create_dir("mesh_config",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100616 sdata->vif.debugfs_dir);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100617
618#define MESHPARAMS_ADD(name) \
619 debugfs_create_file(#name, 0600, dir, sdata, &name##_ops);
620
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100621 MESHPARAMS_ADD(dot11MeshMaxRetries);
622 MESHPARAMS_ADD(dot11MeshRetryTimeout);
623 MESHPARAMS_ADD(dot11MeshConfirmTimeout);
624 MESHPARAMS_ADD(dot11MeshHoldingTimeout);
625 MESHPARAMS_ADD(dot11MeshTTL);
Javier Cardona45904f22010-12-03 09:20:40 +0100626 MESHPARAMS_ADD(element_ttl);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100627 MESHPARAMS_ADD(auto_open_plinks);
628 MESHPARAMS_ADD(dot11MeshMaxPeerLinks);
629 MESHPARAMS_ADD(dot11MeshHWMPactivePathTimeout);
630 MESHPARAMS_ADD(dot11MeshHWMPpreqMinInterval);
Thomas Pedersendca7e942011-11-24 17:15:24 -0800631 MESHPARAMS_ADD(dot11MeshHWMPperrMinInterval);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100632 MESHPARAMS_ADD(dot11MeshHWMPnetDiameterTraversalTime);
633 MESHPARAMS_ADD(dot11MeshHWMPmaxPREQretries);
634 MESHPARAMS_ADD(path_refresh_time);
635 MESHPARAMS_ADD(min_discovery_timeout);
Javier Cardona699403d2011-08-09 16:45:09 -0700636 MESHPARAMS_ADD(dot11MeshHWMPRootMode);
Javier Cardona0507e152011-08-09 16:45:10 -0700637 MESHPARAMS_ADD(dot11MeshHWMPRannInterval);
Chun-Yeow Yeoh8c06e8c2012-05-31 18:17:30 +0800638 MESHPARAMS_ADD(dot11MeshForwarding);
Javier Cardona16dd7262011-08-09 16:45:11 -0700639 MESHPARAMS_ADD(dot11MeshGateAnnouncementProtocol);
Ashok Nagarajan55335132012-02-28 17:04:08 -0800640 MESHPARAMS_ADD(rssi_threshold);
Ashok Nagarajan4416f5d2012-05-07 21:00:32 -0700641 MESHPARAMS_ADD(ht_opmode);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +0800642 MESHPARAMS_ADD(dot11MeshHWMPactivePathToRootTimeout);
643 MESHPARAMS_ADD(dot11MeshHWMProotInterval);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +0800644 MESHPARAMS_ADD(dot11MeshHWMPconfirmationInterval);
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100645 MESHPARAMS_ADD(power_mode);
646 MESHPARAMS_ADD(dot11MeshAwakeWindowDuration);
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100647#undef MESHPARAMS_ADD
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100648}
649#endif
650
Jiri Bence9f207f2007-05-05 11:46:38 -0700651static void add_files(struct ieee80211_sub_if_data *sdata)
652{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100653 if (!sdata->vif.debugfs_dir)
Jiri Bence9f207f2007-05-05 11:46:38 -0700654 return;
655
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100656 DEBUGFS_ADD(flags);
657 DEBUGFS_ADD(state);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200658 DEBUGFS_ADD(txpower);
659 DEBUGFS_ADD(user_power_level);
660 DEBUGFS_ADD(ap_power_level);
Felix Fietkaufcb2c9e2012-03-18 22:58:05 +0100661
662 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
663 add_common_files(sdata);
664
Johannes Berg51fb61e2007-12-19 01:31:27 +0100665 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200666 case NL80211_IFTYPE_MESH_POINT:
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100667#ifdef CONFIG_MAC80211_MESH
Javier Cardona12ce8ba2012-03-05 17:20:38 -0800668 add_mesh_files(sdata);
Luis Carlos Cobo9f42f602008-02-23 15:17:16 +0100669 add_mesh_stats(sdata);
670 add_mesh_config(sdata);
671#endif
Johannes Berg472dbc42008-09-11 00:01:49 +0200672 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200673 case NL80211_IFTYPE_STATION:
Jiri Bence9f207f2007-05-05 11:46:38 -0700674 add_sta_files(sdata);
675 break;
Johannes Berg46900292009-02-15 12:44:28 +0100676 case NL80211_IFTYPE_ADHOC:
Eliad Peller37a41b42011-09-21 14:06:11 +0300677 add_ibss_files(sdata);
Johannes Berg46900292009-02-15 12:44:28 +0100678 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200679 case NL80211_IFTYPE_AP:
Jiri Bence9f207f2007-05-05 11:46:38 -0700680 add_ap_files(sdata);
681 break;
Johannes Berg05c914f2008-09-11 00:01:58 +0200682 case NL80211_IFTYPE_WDS:
Jiri Bence9f207f2007-05-05 11:46:38 -0700683 add_wds_files(sdata);
684 break;
Jiri Bence9f207f2007-05-05 11:46:38 -0700685 default:
686 break;
687 }
688}
689
Jiri Bence9f207f2007-05-05 11:46:38 -0700690void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
691{
692 char buf[10+IFNAMSIZ];
693
Johannes Berg47846c92009-11-25 17:46:19 +0100694 sprintf(buf, "netdev:%s", sdata->name);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100695 sdata->vif.debugfs_dir = debugfs_create_dir(buf,
Jiri Bence9f207f2007-05-05 11:46:38 -0700696 sdata->local->hw.wiphy->debugfsdir);
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100697 if (sdata->vif.debugfs_dir)
Ben Greear295bafb2010-09-22 20:29:01 -0700698 sdata->debugfs.subdir_stations = debugfs_create_dir("stations",
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100699 sdata->vif.debugfs_dir);
Johannes Berg75636522008-07-09 14:40:35 +0200700 add_files(sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -0700701}
702
703void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
704{
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100705 if (!sdata->vif.debugfs_dir)
Johannes Berg7bcfaf22009-10-27 12:59:03 +0100706 return;
707
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100708 debugfs_remove_recursive(sdata->vif.debugfs_dir);
709 sdata->vif.debugfs_dir = NULL;
Jiri Bence9f207f2007-05-05 11:46:38 -0700710}
711
Johannes Berg47846c92009-11-25 17:46:19 +0100712void ieee80211_debugfs_rename_netdev(struct ieee80211_sub_if_data *sdata)
Jiri Bence9f207f2007-05-05 11:46:38 -0700713{
Johannes Berg7c8081e2007-06-21 18:30:19 +0200714 struct dentry *dir;
Johannes Berg47846c92009-11-25 17:46:19 +0100715 char buf[10 + IFNAMSIZ];
Johannes Berg3e122be2008-07-09 14:40:34 +0200716
Stanislaw Gruszkaddbfe862013-03-08 14:46:14 +0100717 dir = sdata->vif.debugfs_dir;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200718
719 if (!dir)
Johannes Berg47846c92009-11-25 17:46:19 +0100720 return;
Johannes Bergc74e90a2008-10-08 10:18:36 +0200721
Johannes Berg47846c92009-11-25 17:46:19 +0100722 sprintf(buf, "netdev:%s", sdata->name);
Johannes Berg7c8081e2007-06-21 18:30:19 +0200723 if (!debugfs_rename(dir->d_parent, dir, dir->d_parent, buf))
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200724 sdata_err(sdata,
725 "debugfs: failed to rename debugfs dir to %s\n",
726 buf);
Jiri Bence9f207f2007-05-05 11:46:38 -0700727}