blob: 531fbd086794989de897e0aa1cb13934cfaa61cb [file] [log] [blame]
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02001#if !defined(__MAC80211_DRIVER_TRACE) || defined(TRACE_HEADER_MULTI_READ)
2#define __MAC80211_DRIVER_TRACE
3
4#include <linux/tracepoint.h>
5#include <net/mac80211.h>
6#include "ieee80211_i.h"
7
Christian Lamparterf7428802009-07-19 23:21:07 +02008#if !defined(CONFIG_MAC80211_DRIVER_API_TRACER) || defined(__CHECKER__)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02009#undef TRACE_EVENT
10#define TRACE_EVENT(name, proto, ...) \
11static inline void trace_ ## name(proto) {}
Johannes Bergba99d932011-01-26 09:22:15 +010012#undef DECLARE_EVENT_CLASS
13#define DECLARE_EVENT_CLASS(...)
14#undef DEFINE_EVENT
15#define DEFINE_EVENT(evt_class, name, proto, ...) \
16static inline void trace_ ## name(proto) {}
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020017#endif
18
19#undef TRACE_SYSTEM
20#define TRACE_SYSTEM mac80211
21
22#define MAXNAME 32
23#define LOCAL_ENTRY __array(char, wiphy_name, 32)
24#define LOCAL_ASSIGN strlcpy(__entry->wiphy_name, wiphy_name(local->hw.wiphy), MAXNAME)
25#define LOCAL_PR_FMT "%s"
26#define LOCAL_PR_ARG __entry->wiphy_name
27
28#define STA_ENTRY __array(char, sta_addr, ETH_ALEN)
29#define STA_ASSIGN (sta ? memcpy(__entry->sta_addr, sta->addr, ETH_ALEN) : memset(__entry->sta_addr, 0, ETH_ALEN))
30#define STA_PR_FMT " sta:%pM"
31#define STA_PR_ARG __entry->sta_addr
32
Johannes Berg2ca27bc2010-09-16 14:58:23 +020033#define VIF_ENTRY __field(enum nl80211_iftype, vif_type) __field(void *, sdata) \
34 __field(bool, p2p) \
Johannes Berg12375ef2009-11-25 20:30:31 +010035 __string(vif_name, sdata->dev ? sdata->dev->name : "<nodev>")
Johannes Berg2ca27bc2010-09-16 14:58:23 +020036#define VIF_ASSIGN __entry->vif_type = sdata->vif.type; __entry->sdata = sdata; \
37 __entry->p2p = sdata->vif.p2p; \
Johannes Berg12375ef2009-11-25 20:30:31 +010038 __assign_str(vif_name, sdata->dev ? sdata->dev->name : "<nodev>")
Johannes Berg2ca27bc2010-09-16 14:58:23 +020039#define VIF_PR_FMT " vif:%s(%d%s)"
40#define VIF_PR_ARG __get_str(vif_name), __entry->vif_type, __entry->p2p ? "/p2p" : ""
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020041
Johannes Bergb5878a22010-04-07 16:48:40 +020042/*
43 * Tracing for driver callbacks.
44 */
45
Johannes Bergba99d932011-01-26 09:22:15 +010046DECLARE_EVENT_CLASS(local_only_evt,
Johannes Berg4efc76b2010-06-10 10:56:20 +020047 TP_PROTO(struct ieee80211_local *local),
48 TP_ARGS(local),
49 TP_STRUCT__entry(
50 LOCAL_ENTRY
51 ),
52 TP_fast_assign(
53 LOCAL_ASSIGN;
54 ),
55 TP_printk(LOCAL_PR_FMT, LOCAL_PR_ARG)
56);
57
Luciano Coelho92ddc112011-05-09 14:40:06 +030058DECLARE_EVENT_CLASS(local_sdata_addr_evt,
59 TP_PROTO(struct ieee80211_local *local,
60 struct ieee80211_sub_if_data *sdata),
61 TP_ARGS(local, sdata),
62
63 TP_STRUCT__entry(
64 LOCAL_ENTRY
65 VIF_ENTRY
66 __array(char, addr, 6)
67 ),
68
69 TP_fast_assign(
70 LOCAL_ASSIGN;
71 VIF_ASSIGN;
72 memcpy(__entry->addr, sdata->vif.addr, 6);
73 ),
74
75 TP_printk(
76 LOCAL_PR_FMT VIF_PR_FMT " addr:%pM",
77 LOCAL_PR_ARG, VIF_PR_ARG, __entry->addr
78 )
79);
80
81DECLARE_EVENT_CLASS(local_u32_evt,
82 TP_PROTO(struct ieee80211_local *local, u32 value),
83 TP_ARGS(local, value),
84
85 TP_STRUCT__entry(
86 LOCAL_ENTRY
87 __field(u32, value)
88 ),
89
90 TP_fast_assign(
91 LOCAL_ASSIGN;
92 __entry->value = value;
93 ),
94
95 TP_printk(
96 LOCAL_PR_FMT " value:%d",
97 LOCAL_PR_ARG, __entry->value
98 )
99);
100
Luciano Coelho79f460c2011-05-11 17:09:36 +0300101DECLARE_EVENT_CLASS(local_sdata_evt,
102 TP_PROTO(struct ieee80211_local *local,
103 struct ieee80211_sub_if_data *sdata),
104 TP_ARGS(local, sdata),
105
106 TP_STRUCT__entry(
107 LOCAL_ENTRY
108 VIF_ENTRY
109 ),
110
111 TP_fast_assign(
112 LOCAL_ASSIGN;
113 VIF_ASSIGN;
114 ),
115
116 TP_printk(
117 LOCAL_PR_FMT VIF_PR_FMT,
118 LOCAL_PR_ARG, VIF_PR_ARG
119 )
120);
121
Johannes Bergba99d932011-01-26 09:22:15 +0100122DEFINE_EVENT(local_only_evt, drv_return_void,
123 TP_PROTO(struct ieee80211_local *local),
124 TP_ARGS(local)
125);
126
Johannes Berg4efc76b2010-06-10 10:56:20 +0200127TRACE_EVENT(drv_return_int,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200128 TP_PROTO(struct ieee80211_local *local, int ret),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200129 TP_ARGS(local, ret),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200130 TP_STRUCT__entry(
131 LOCAL_ENTRY
132 __field(int, ret)
133 ),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200134 TP_fast_assign(
135 LOCAL_ASSIGN;
136 __entry->ret = ret;
137 ),
Johannes Berg4efc76b2010-06-10 10:56:20 +0200138 TP_printk(LOCAL_PR_FMT " - %d", LOCAL_PR_ARG, __entry->ret)
139);
140
Vivek Natarajane8306f92011-04-06 11:41:10 +0530141TRACE_EVENT(drv_return_bool,
142 TP_PROTO(struct ieee80211_local *local, bool ret),
143 TP_ARGS(local, ret),
144 TP_STRUCT__entry(
145 LOCAL_ENTRY
146 __field(bool, ret)
147 ),
148 TP_fast_assign(
149 LOCAL_ASSIGN;
150 __entry->ret = ret;
151 ),
152 TP_printk(LOCAL_PR_FMT " - %s", LOCAL_PR_ARG, (__entry->ret) ?
153 "true" : "false")
154);
155
Johannes Berg4efc76b2010-06-10 10:56:20 +0200156TRACE_EVENT(drv_return_u64,
157 TP_PROTO(struct ieee80211_local *local, u64 ret),
158 TP_ARGS(local, ret),
159 TP_STRUCT__entry(
160 LOCAL_ENTRY
161 __field(u64, ret)
162 ),
163 TP_fast_assign(
164 LOCAL_ASSIGN;
165 __entry->ret = ret;
166 ),
167 TP_printk(LOCAL_PR_FMT " - %llu", LOCAL_PR_ARG, __entry->ret)
168);
169
Johannes Bergba99d932011-01-26 09:22:15 +0100170DEFINE_EVENT(local_only_evt, drv_start,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200171 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100172 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200173);
174
Johannes Bergeecc4802011-05-04 15:37:29 +0200175DEFINE_EVENT(local_only_evt, drv_suspend,
176 TP_PROTO(struct ieee80211_local *local),
177 TP_ARGS(local)
178);
179
180DEFINE_EVENT(local_only_evt, drv_resume,
181 TP_PROTO(struct ieee80211_local *local),
182 TP_ARGS(local)
183);
184
Johannes Bergba99d932011-01-26 09:22:15 +0100185DEFINE_EVENT(local_only_evt, drv_stop,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200186 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100187 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200188);
189
Luciano Coelho92ddc112011-05-09 14:40:06 +0300190DEFINE_EVENT(local_sdata_addr_evt, drv_add_interface,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200191 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200192 struct ieee80211_sub_if_data *sdata),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300193 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200194);
195
Johannes Berg34d4bc42010-08-27 12:35:58 +0200196TRACE_EVENT(drv_change_interface,
197 TP_PROTO(struct ieee80211_local *local,
198 struct ieee80211_sub_if_data *sdata,
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200199 enum nl80211_iftype type, bool p2p),
Johannes Berg34d4bc42010-08-27 12:35:58 +0200200
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200201 TP_ARGS(local, sdata, type, p2p),
Johannes Berg34d4bc42010-08-27 12:35:58 +0200202
203 TP_STRUCT__entry(
204 LOCAL_ENTRY
205 VIF_ENTRY
206 __field(u32, new_type)
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200207 __field(bool, new_p2p)
Johannes Berg34d4bc42010-08-27 12:35:58 +0200208 ),
209
210 TP_fast_assign(
211 LOCAL_ASSIGN;
212 VIF_ASSIGN;
213 __entry->new_type = type;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200214 __entry->new_p2p = p2p;
Johannes Berg34d4bc42010-08-27 12:35:58 +0200215 ),
216
217 TP_printk(
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200218 LOCAL_PR_FMT VIF_PR_FMT " new type:%d%s",
219 LOCAL_PR_ARG, VIF_PR_ARG, __entry->new_type,
220 __entry->new_p2p ? "/p2p" : ""
Johannes Berg34d4bc42010-08-27 12:35:58 +0200221 )
222);
223
Luciano Coelho92ddc112011-05-09 14:40:06 +0300224DEFINE_EVENT(local_sdata_addr_evt, drv_remove_interface,
225 TP_PROTO(struct ieee80211_local *local,
226 struct ieee80211_sub_if_data *sdata),
227 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200228);
229
230TRACE_EVENT(drv_config,
231 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200232 u32 changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200233
Johannes Berg4efc76b2010-06-10 10:56:20 +0200234 TP_ARGS(local, changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200235
236 TP_STRUCT__entry(
237 LOCAL_ENTRY
238 __field(u32, changed)
Johannes Bergf911ab82009-11-25 19:07:20 +0100239 __field(u32, flags)
240 __field(int, power_level)
241 __field(int, dynamic_ps_timeout)
242 __field(int, max_sleep_period)
243 __field(u16, listen_interval)
244 __field(u8, long_frame_max_tx_count)
245 __field(u8, short_frame_max_tx_count)
246 __field(int, center_freq)
247 __field(int, channel_type)
Johannes Berg0f782312009-12-01 13:37:02 +0100248 __field(int, smps)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200249 ),
250
251 TP_fast_assign(
252 LOCAL_ASSIGN;
253 __entry->changed = changed;
Johannes Bergf911ab82009-11-25 19:07:20 +0100254 __entry->flags = local->hw.conf.flags;
255 __entry->power_level = local->hw.conf.power_level;
256 __entry->dynamic_ps_timeout = local->hw.conf.dynamic_ps_timeout;
257 __entry->max_sleep_period = local->hw.conf.max_sleep_period;
258 __entry->listen_interval = local->hw.conf.listen_interval;
259 __entry->long_frame_max_tx_count = local->hw.conf.long_frame_max_tx_count;
260 __entry->short_frame_max_tx_count = local->hw.conf.short_frame_max_tx_count;
261 __entry->center_freq = local->hw.conf.channel->center_freq;
262 __entry->channel_type = local->hw.conf.channel_type;
Johannes Berg0f782312009-12-01 13:37:02 +0100263 __entry->smps = local->hw.conf.smps_mode;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200264 ),
265
266 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200267 LOCAL_PR_FMT " ch:%#x freq:%d",
268 LOCAL_PR_ARG, __entry->changed, __entry->center_freq
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200269 )
270);
271
272TRACE_EVENT(drv_bss_info_changed,
273 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100274 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200275 struct ieee80211_bss_conf *info,
276 u32 changed),
277
Johannes Berg12375ef2009-11-25 20:30:31 +0100278 TP_ARGS(local, sdata, info, changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200279
280 TP_STRUCT__entry(
281 LOCAL_ENTRY
282 VIF_ENTRY
283 __field(bool, assoc)
284 __field(u16, aid)
285 __field(bool, cts)
286 __field(bool, shortpre)
287 __field(bool, shortslot)
288 __field(u8, dtimper)
289 __field(u16, bcnint)
290 __field(u16, assoc_cap)
291 __field(u64, timestamp)
292 __field(u32, basic_rates)
293 __field(u32, changed)
Johannes Bergf911ab82009-11-25 19:07:20 +0100294 __field(bool, enable_beacon)
295 __field(u16, ht_operation_mode)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200296 ),
297
298 TP_fast_assign(
299 LOCAL_ASSIGN;
300 VIF_ASSIGN;
301 __entry->changed = changed;
302 __entry->aid = info->aid;
303 __entry->assoc = info->assoc;
304 __entry->shortpre = info->use_short_preamble;
305 __entry->cts = info->use_cts_prot;
306 __entry->shortslot = info->use_short_slot;
307 __entry->dtimper = info->dtim_period;
308 __entry->bcnint = info->beacon_int;
309 __entry->assoc_cap = info->assoc_capability;
310 __entry->timestamp = info->timestamp;
311 __entry->basic_rates = info->basic_rates;
Johannes Bergf911ab82009-11-25 19:07:20 +0100312 __entry->enable_beacon = info->enable_beacon;
313 __entry->ht_operation_mode = info->ht_operation_mode;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200314 ),
315
316 TP_printk(
317 LOCAL_PR_FMT VIF_PR_FMT " changed:%#x",
318 LOCAL_PR_ARG, VIF_PR_ARG, __entry->changed
319 )
320);
321
Johannes Bergb2abb6e2011-07-19 10:39:53 +0200322DECLARE_EVENT_CLASS(tx_sync_evt,
323 TP_PROTO(struct ieee80211_local *local,
324 struct ieee80211_sub_if_data *sdata,
325 const u8 *bssid,
326 enum ieee80211_tx_sync_type type),
327 TP_ARGS(local, sdata, bssid, type),
328
329 TP_STRUCT__entry(
330 LOCAL_ENTRY
331 VIF_ENTRY
332 __array(char, bssid, ETH_ALEN)
333 __field(u32, sync_type)
334 ),
335
336 TP_fast_assign(
337 LOCAL_ASSIGN;
338 VIF_ASSIGN;
339 memcpy(__entry->bssid, bssid, ETH_ALEN);
340 __entry->sync_type = type;
341 ),
342
343 TP_printk(
344 LOCAL_PR_FMT VIF_PR_FMT " bssid:%pM type:%d",
345 LOCAL_PR_ARG, VIF_PR_ARG, __entry->bssid, __entry->sync_type
346 )
347);
348
349DEFINE_EVENT(tx_sync_evt, drv_tx_sync,
350 TP_PROTO(struct ieee80211_local *local,
351 struct ieee80211_sub_if_data *sdata,
352 const u8 *bssid,
353 enum ieee80211_tx_sync_type type),
354 TP_ARGS(local, sdata, bssid, type)
355);
356
357DEFINE_EVENT(tx_sync_evt, drv_finish_tx_sync,
358 TP_PROTO(struct ieee80211_local *local,
359 struct ieee80211_sub_if_data *sdata,
360 const u8 *bssid,
361 enum ieee80211_tx_sync_type type),
362 TP_ARGS(local, sdata, bssid, type)
363);
364
Johannes Berg3ac64be2009-08-17 16:16:53 +0200365TRACE_EVENT(drv_prepare_multicast,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200366 TP_PROTO(struct ieee80211_local *local, int mc_count),
Johannes Berg3ac64be2009-08-17 16:16:53 +0200367
Johannes Berg4efc76b2010-06-10 10:56:20 +0200368 TP_ARGS(local, mc_count),
Johannes Berg3ac64be2009-08-17 16:16:53 +0200369
370 TP_STRUCT__entry(
371 LOCAL_ENTRY
372 __field(int, mc_count)
Johannes Berg3ac64be2009-08-17 16:16:53 +0200373 ),
374
375 TP_fast_assign(
376 LOCAL_ASSIGN;
377 __entry->mc_count = mc_count;
Johannes Berg3ac64be2009-08-17 16:16:53 +0200378 ),
379
380 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200381 LOCAL_PR_FMT " prepare mc (%d)",
382 LOCAL_PR_ARG, __entry->mc_count
Johannes Berg3ac64be2009-08-17 16:16:53 +0200383 )
384);
385
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200386TRACE_EVENT(drv_configure_filter,
387 TP_PROTO(struct ieee80211_local *local,
388 unsigned int changed_flags,
389 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200390 u64 multicast),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200391
Johannes Berg3ac64be2009-08-17 16:16:53 +0200392 TP_ARGS(local, changed_flags, total_flags, multicast),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200393
394 TP_STRUCT__entry(
395 LOCAL_ENTRY
396 __field(unsigned int, changed)
397 __field(unsigned int, total)
Johannes Berg3ac64be2009-08-17 16:16:53 +0200398 __field(u64, multicast)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200399 ),
400
401 TP_fast_assign(
402 LOCAL_ASSIGN;
403 __entry->changed = changed_flags;
404 __entry->total = *total_flags;
Johannes Berg3ac64be2009-08-17 16:16:53 +0200405 __entry->multicast = multicast;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200406 ),
407
408 TP_printk(
Johannes Berg3ac64be2009-08-17 16:16:53 +0200409 LOCAL_PR_FMT " changed:%#x total:%#x",
410 LOCAL_PR_ARG, __entry->changed, __entry->total
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200411 )
412);
413
414TRACE_EVENT(drv_set_tim,
415 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200416 struct ieee80211_sta *sta, bool set),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200417
Johannes Berg4efc76b2010-06-10 10:56:20 +0200418 TP_ARGS(local, sta, set),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200419
420 TP_STRUCT__entry(
421 LOCAL_ENTRY
422 STA_ENTRY
423 __field(bool, set)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200424 ),
425
426 TP_fast_assign(
427 LOCAL_ASSIGN;
428 STA_ASSIGN;
429 __entry->set = set;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200430 ),
431
432 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200433 LOCAL_PR_FMT STA_PR_FMT " set:%d",
434 LOCAL_PR_ARG, STA_PR_FMT, __entry->set
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200435 )
436);
437
438TRACE_EVENT(drv_set_key,
439 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100440 enum set_key_cmd cmd, struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200441 struct ieee80211_sta *sta,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200442 struct ieee80211_key_conf *key),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200443
Johannes Berg4efc76b2010-06-10 10:56:20 +0200444 TP_ARGS(local, cmd, sdata, sta, key),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200445
446 TP_STRUCT__entry(
447 LOCAL_ENTRY
448 VIF_ENTRY
449 STA_ENTRY
Johannes Berg97359d12010-08-10 09:46:38 +0200450 __field(u32, cipher)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200451 __field(u8, hw_key_idx)
452 __field(u8, flags)
453 __field(s8, keyidx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200454 ),
455
456 TP_fast_assign(
457 LOCAL_ASSIGN;
458 VIF_ASSIGN;
459 STA_ASSIGN;
Johannes Berg97359d12010-08-10 09:46:38 +0200460 __entry->cipher = key->cipher;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200461 __entry->flags = key->flags;
462 __entry->keyidx = key->keyidx;
463 __entry->hw_key_idx = key->hw_key_idx;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200464 ),
465
466 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200467 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
468 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200469 )
470);
471
472TRACE_EVENT(drv_update_tkip_key,
473 TP_PROTO(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100474 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200475 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100476 struct ieee80211_sta *sta, u32 iv32),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200477
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100478 TP_ARGS(local, sdata, conf, sta, iv32),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200479
480 TP_STRUCT__entry(
481 LOCAL_ENTRY
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100482 VIF_ENTRY
483 STA_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200484 __field(u32, iv32)
485 ),
486
487 TP_fast_assign(
488 LOCAL_ASSIGN;
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100489 VIF_ASSIGN;
490 STA_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200491 __entry->iv32 = iv32;
492 ),
493
494 TP_printk(
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100495 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " iv32:%#x",
496 LOCAL_PR_ARG,VIF_PR_ARG,STA_PR_ARG, __entry->iv32
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200497 )
498);
499
Luciano Coelho79f460c2011-05-11 17:09:36 +0300500DEFINE_EVENT(local_sdata_evt, drv_hw_scan,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200501 TP_PROTO(struct ieee80211_local *local,
Luciano Coelho79f460c2011-05-11 17:09:36 +0300502 struct ieee80211_sub_if_data *sdata),
503 TP_ARGS(local, sdata)
504);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200505
Eliad Pellerb8564392011-06-13 12:47:30 +0300506DEFINE_EVENT(local_sdata_evt, drv_cancel_hw_scan,
507 TP_PROTO(struct ieee80211_local *local,
508 struct ieee80211_sub_if_data *sdata),
509 TP_ARGS(local, sdata)
510);
511
Luciano Coelho79f460c2011-05-11 17:09:36 +0300512DEFINE_EVENT(local_sdata_evt, drv_sched_scan_start,
513 TP_PROTO(struct ieee80211_local *local,
514 struct ieee80211_sub_if_data *sdata),
515 TP_ARGS(local, sdata)
516);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200517
Luciano Coelho79f460c2011-05-11 17:09:36 +0300518DEFINE_EVENT(local_sdata_evt, drv_sched_scan_stop,
519 TP_PROTO(struct ieee80211_local *local,
520 struct ieee80211_sub_if_data *sdata),
521 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200522);
523
Johannes Bergba99d932011-01-26 09:22:15 +0100524DEFINE_EVENT(local_only_evt, drv_sw_scan_start,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200525 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100526 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200527);
528
Johannes Bergba99d932011-01-26 09:22:15 +0100529DEFINE_EVENT(local_only_evt, drv_sw_scan_complete,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200530 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100531 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200532);
533
534TRACE_EVENT(drv_get_stats,
535 TP_PROTO(struct ieee80211_local *local,
536 struct ieee80211_low_level_stats *stats,
537 int ret),
538
539 TP_ARGS(local, stats, ret),
540
541 TP_STRUCT__entry(
542 LOCAL_ENTRY
543 __field(int, ret)
544 __field(unsigned int, ackfail)
545 __field(unsigned int, rtsfail)
546 __field(unsigned int, fcserr)
547 __field(unsigned int, rtssucc)
548 ),
549
550 TP_fast_assign(
551 LOCAL_ASSIGN;
552 __entry->ret = ret;
553 __entry->ackfail = stats->dot11ACKFailureCount;
554 __entry->rtsfail = stats->dot11RTSFailureCount;
555 __entry->fcserr = stats->dot11FCSErrorCount;
556 __entry->rtssucc = stats->dot11RTSSuccessCount;
557 ),
558
559 TP_printk(
560 LOCAL_PR_FMT " ret:%d",
561 LOCAL_PR_ARG, __entry->ret
562 )
563);
564
565TRACE_EVENT(drv_get_tkip_seq,
566 TP_PROTO(struct ieee80211_local *local,
567 u8 hw_key_idx, u32 *iv32, u16 *iv16),
568
569 TP_ARGS(local, hw_key_idx, iv32, iv16),
570
571 TP_STRUCT__entry(
572 LOCAL_ENTRY
573 __field(u8, hw_key_idx)
574 __field(u32, iv32)
575 __field(u16, iv16)
576 ),
577
578 TP_fast_assign(
579 LOCAL_ASSIGN;
580 __entry->hw_key_idx = hw_key_idx;
581 __entry->iv32 = *iv32;
582 __entry->iv16 = *iv16;
583 ),
584
585 TP_printk(
586 LOCAL_PR_FMT, LOCAL_PR_ARG
587 )
588);
589
Luciano Coelho92ddc112011-05-09 14:40:06 +0300590DEFINE_EVENT(local_u32_evt, drv_set_frag_threshold,
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200591 TP_PROTO(struct ieee80211_local *local, u32 value),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300592 TP_ARGS(local, value)
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200593);
594
Luciano Coelho92ddc112011-05-09 14:40:06 +0300595DEFINE_EVENT(local_u32_evt, drv_set_rts_threshold,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200596 TP_PROTO(struct ieee80211_local *local, u32 value),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300597 TP_ARGS(local, value)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200598);
599
Lukáš Turek310bc672009-12-21 22:50:48 +0100600TRACE_EVENT(drv_set_coverage_class,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200601 TP_PROTO(struct ieee80211_local *local, u8 value),
Lukáš Turek310bc672009-12-21 22:50:48 +0100602
Johannes Berg4efc76b2010-06-10 10:56:20 +0200603 TP_ARGS(local, value),
Lukáš Turek310bc672009-12-21 22:50:48 +0100604
605 TP_STRUCT__entry(
606 LOCAL_ENTRY
607 __field(u8, value)
Lukáš Turek310bc672009-12-21 22:50:48 +0100608 ),
609
610 TP_fast_assign(
611 LOCAL_ASSIGN;
Lukáš Turek310bc672009-12-21 22:50:48 +0100612 __entry->value = value;
613 ),
614
615 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200616 LOCAL_PR_FMT " value:%d",
617 LOCAL_PR_ARG, __entry->value
Lukáš Turek310bc672009-12-21 22:50:48 +0100618 )
619);
620
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200621TRACE_EVENT(drv_sta_notify,
622 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100623 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200624 enum sta_notify_cmd cmd,
625 struct ieee80211_sta *sta),
626
Johannes Berg12375ef2009-11-25 20:30:31 +0100627 TP_ARGS(local, sdata, cmd, sta),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200628
629 TP_STRUCT__entry(
630 LOCAL_ENTRY
631 VIF_ENTRY
632 STA_ENTRY
633 __field(u32, cmd)
634 ),
635
636 TP_fast_assign(
637 LOCAL_ASSIGN;
638 VIF_ASSIGN;
639 STA_ASSIGN;
640 __entry->cmd = cmd;
641 ),
642
643 TP_printk(
644 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " cmd:%d",
645 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->cmd
646 )
647);
648
Johannes Berg34e89502010-02-03 13:59:58 +0100649TRACE_EVENT(drv_sta_add,
650 TP_PROTO(struct ieee80211_local *local,
651 struct ieee80211_sub_if_data *sdata,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200652 struct ieee80211_sta *sta),
Johannes Berg34e89502010-02-03 13:59:58 +0100653
Johannes Berg4efc76b2010-06-10 10:56:20 +0200654 TP_ARGS(local, sdata, sta),
Johannes Berg34e89502010-02-03 13:59:58 +0100655
656 TP_STRUCT__entry(
657 LOCAL_ENTRY
658 VIF_ENTRY
659 STA_ENTRY
Johannes Berg34e89502010-02-03 13:59:58 +0100660 ),
661
662 TP_fast_assign(
663 LOCAL_ASSIGN;
664 VIF_ASSIGN;
665 STA_ASSIGN;
Johannes Berg34e89502010-02-03 13:59:58 +0100666 ),
667
668 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200669 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
670 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
Johannes Berg34e89502010-02-03 13:59:58 +0100671 )
672);
673
674TRACE_EVENT(drv_sta_remove,
675 TP_PROTO(struct ieee80211_local *local,
676 struct ieee80211_sub_if_data *sdata,
677 struct ieee80211_sta *sta),
678
679 TP_ARGS(local, sdata, sta),
680
681 TP_STRUCT__entry(
682 LOCAL_ENTRY
683 VIF_ENTRY
684 STA_ENTRY
685 ),
686
687 TP_fast_assign(
688 LOCAL_ASSIGN;
689 VIF_ASSIGN;
690 STA_ASSIGN;
691 ),
692
693 TP_printk(
694 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
695 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
696 )
697);
698
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200699TRACE_EVENT(drv_conf_tx,
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300700 TP_PROTO(struct ieee80211_local *local,
701 struct ieee80211_sub_if_data *sdata,
702 u16 queue,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200703 const struct ieee80211_tx_queue_params *params),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200704
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300705 TP_ARGS(local, sdata, queue, params),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200706
707 TP_STRUCT__entry(
708 LOCAL_ENTRY
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300709 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200710 __field(u16, queue)
711 __field(u16, txop)
712 __field(u16, cw_min)
713 __field(u16, cw_max)
714 __field(u8, aifs)
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300715 __field(bool, uapsd)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200716 ),
717
718 TP_fast_assign(
719 LOCAL_ASSIGN;
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300720 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200721 __entry->queue = queue;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200722 __entry->txop = params->txop;
723 __entry->cw_max = params->cw_max;
724 __entry->cw_min = params->cw_min;
725 __entry->aifs = params->aifs;
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300726 __entry->uapsd = params->uapsd;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200727 ),
728
729 TP_printk(
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300730 LOCAL_PR_FMT VIF_PR_FMT " queue:%d",
731 LOCAL_PR_ARG, VIF_PR_ARG, __entry->queue
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200732 )
733);
734
Eliad Peller37a41b42011-09-21 14:06:11 +0300735DEFINE_EVENT(local_sdata_evt, drv_get_tsf,
736 TP_PROTO(struct ieee80211_local *local,
737 struct ieee80211_sub_if_data *sdata),
738 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200739);
740
741TRACE_EVENT(drv_set_tsf,
Eliad Peller37a41b42011-09-21 14:06:11 +0300742 TP_PROTO(struct ieee80211_local *local,
743 struct ieee80211_sub_if_data *sdata,
744 u64 tsf),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200745
Eliad Peller37a41b42011-09-21 14:06:11 +0300746 TP_ARGS(local, sdata, tsf),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200747
748 TP_STRUCT__entry(
749 LOCAL_ENTRY
Eliad Peller37a41b42011-09-21 14:06:11 +0300750 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200751 __field(u64, tsf)
752 ),
753
754 TP_fast_assign(
755 LOCAL_ASSIGN;
Eliad Peller37a41b42011-09-21 14:06:11 +0300756 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200757 __entry->tsf = tsf;
758 ),
759
760 TP_printk(
Eliad Peller37a41b42011-09-21 14:06:11 +0300761 LOCAL_PR_FMT VIF_PR_FMT " tsf:%llu",
762 LOCAL_PR_ARG, VIF_PR_ARG, (unsigned long long)__entry->tsf
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200763 )
764);
765
Eliad Peller37a41b42011-09-21 14:06:11 +0300766DEFINE_EVENT(local_sdata_evt, drv_reset_tsf,
767 TP_PROTO(struct ieee80211_local *local,
768 struct ieee80211_sub_if_data *sdata),
769 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200770);
771
Johannes Bergba99d932011-01-26 09:22:15 +0100772DEFINE_EVENT(local_only_evt, drv_tx_last_beacon,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200773 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100774 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200775);
776
777TRACE_EVENT(drv_ampdu_action,
778 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100779 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200780 enum ieee80211_ampdu_mlme_action action,
781 struct ieee80211_sta *sta, u16 tid,
Johannes Berg0b01f032011-01-18 13:51:05 +0100782 u16 *ssn, u8 buf_size),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200783
Johannes Berg0b01f032011-01-18 13:51:05 +0100784 TP_ARGS(local, sdata, action, sta, tid, ssn, buf_size),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200785
786 TP_STRUCT__entry(
787 LOCAL_ENTRY
788 STA_ENTRY
789 __field(u32, action)
790 __field(u16, tid)
791 __field(u16, ssn)
Johannes Berg0b01f032011-01-18 13:51:05 +0100792 __field(u8, buf_size)
Johannes Bergc951ad32009-11-16 12:00:38 +0100793 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200794 ),
795
796 TP_fast_assign(
797 LOCAL_ASSIGN;
Johannes Bergc951ad32009-11-16 12:00:38 +0100798 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200799 STA_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200800 __entry->action = action;
801 __entry->tid = tid;
Zhu Yi3092ad02010-01-26 15:58:57 +0800802 __entry->ssn = ssn ? *ssn : 0;
Johannes Berg0b01f032011-01-18 13:51:05 +0100803 __entry->buf_size = buf_size;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200804 ),
805
806 TP_printk(
Johannes Berg0b01f032011-01-18 13:51:05 +0100807 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " action:%d tid:%d buf:%d",
808 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->action,
809 __entry->tid, __entry->buf_size
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200810 )
811);
Johannes Berga80f7c02009-12-23 13:15:32 +0100812
John W. Linvillec466d4e2010-06-29 14:51:23 -0400813TRACE_EVENT(drv_get_survey,
814 TP_PROTO(struct ieee80211_local *local, int idx,
815 struct survey_info *survey),
816
817 TP_ARGS(local, idx, survey),
818
819 TP_STRUCT__entry(
820 LOCAL_ENTRY
821 __field(int, idx)
822 ),
823
824 TP_fast_assign(
825 LOCAL_ASSIGN;
826 __entry->idx = idx;
827 ),
828
829 TP_printk(
830 LOCAL_PR_FMT " idx:%d",
831 LOCAL_PR_ARG, __entry->idx
832 )
833);
834
Johannes Berga80f7c02009-12-23 13:15:32 +0100835TRACE_EVENT(drv_flush,
836 TP_PROTO(struct ieee80211_local *local, bool drop),
837
838 TP_ARGS(local, drop),
839
840 TP_STRUCT__entry(
841 LOCAL_ENTRY
842 __field(bool, drop)
843 ),
844
845 TP_fast_assign(
846 LOCAL_ASSIGN;
847 __entry->drop = drop;
848 ),
849
850 TP_printk(
851 LOCAL_PR_FMT " drop:%d",
852 LOCAL_PR_ARG, __entry->drop
853 )
854);
Johannes Bergb5878a22010-04-07 16:48:40 +0200855
Johannes Berg5ce6e432010-05-11 16:20:57 +0200856TRACE_EVENT(drv_channel_switch,
857 TP_PROTO(struct ieee80211_local *local,
858 struct ieee80211_channel_switch *ch_switch),
859
860 TP_ARGS(local, ch_switch),
861
862 TP_STRUCT__entry(
863 LOCAL_ENTRY
864 __field(u64, timestamp)
865 __field(bool, block_tx)
866 __field(u16, freq)
867 __field(u8, count)
868 ),
869
870 TP_fast_assign(
871 LOCAL_ASSIGN;
872 __entry->timestamp = ch_switch->timestamp;
873 __entry->block_tx = ch_switch->block_tx;
874 __entry->freq = ch_switch->channel->center_freq;
875 __entry->count = ch_switch->count;
876 ),
877
878 TP_printk(
879 LOCAL_PR_FMT " new freq:%u count:%d",
880 LOCAL_PR_ARG, __entry->freq, __entry->count
881 )
882);
883
Bruno Randolf15d96752010-11-10 12:50:56 +0900884TRACE_EVENT(drv_set_antenna,
885 TP_PROTO(struct ieee80211_local *local, u32 tx_ant, u32 rx_ant, int ret),
886
887 TP_ARGS(local, tx_ant, rx_ant, ret),
888
889 TP_STRUCT__entry(
890 LOCAL_ENTRY
891 __field(u32, tx_ant)
892 __field(u32, rx_ant)
893 __field(int, ret)
894 ),
895
896 TP_fast_assign(
897 LOCAL_ASSIGN;
898 __entry->tx_ant = tx_ant;
899 __entry->rx_ant = rx_ant;
900 __entry->ret = ret;
901 ),
902
903 TP_printk(
904 LOCAL_PR_FMT " tx_ant:%d rx_ant:%d ret:%d",
905 LOCAL_PR_ARG, __entry->tx_ant, __entry->rx_ant, __entry->ret
906 )
907);
908
909TRACE_EVENT(drv_get_antenna,
910 TP_PROTO(struct ieee80211_local *local, u32 tx_ant, u32 rx_ant, int ret),
911
912 TP_ARGS(local, tx_ant, rx_ant, ret),
913
914 TP_STRUCT__entry(
915 LOCAL_ENTRY
916 __field(u32, tx_ant)
917 __field(u32, rx_ant)
918 __field(int, ret)
919 ),
920
921 TP_fast_assign(
922 LOCAL_ASSIGN;
923 __entry->tx_ant = tx_ant;
924 __entry->rx_ant = rx_ant;
925 __entry->ret = ret;
926 ),
927
928 TP_printk(
929 LOCAL_PR_FMT " tx_ant:%d rx_ant:%d ret:%d",
930 LOCAL_PR_ARG, __entry->tx_ant, __entry->rx_ant, __entry->ret
931 )
932);
933
Johannes Berg21f83582010-12-18 17:20:47 +0100934TRACE_EVENT(drv_remain_on_channel,
935 TP_PROTO(struct ieee80211_local *local, struct ieee80211_channel *chan,
936 enum nl80211_channel_type chantype, unsigned int duration),
937
938 TP_ARGS(local, chan, chantype, duration),
939
940 TP_STRUCT__entry(
941 LOCAL_ENTRY
942 __field(int, center_freq)
943 __field(int, channel_type)
944 __field(unsigned int, duration)
945 ),
946
947 TP_fast_assign(
948 LOCAL_ASSIGN;
949 __entry->center_freq = chan->center_freq;
950 __entry->channel_type = chantype;
951 __entry->duration = duration;
952 ),
953
954 TP_printk(
955 LOCAL_PR_FMT " freq:%dMHz duration:%dms",
956 LOCAL_PR_ARG, __entry->center_freq, __entry->duration
957 )
958);
959
Johannes Bergba99d932011-01-26 09:22:15 +0100960DEFINE_EVENT(local_only_evt, drv_cancel_remain_on_channel,
Johannes Berg21f83582010-12-18 17:20:47 +0100961 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100962 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +0100963);
964
Johannes Berg5f16a432011-02-25 15:36:57 +0100965TRACE_EVENT(drv_offchannel_tx,
966 TP_PROTO(struct ieee80211_local *local, struct sk_buff *skb,
967 struct ieee80211_channel *chan,
968 enum nl80211_channel_type channel_type,
969 unsigned int wait),
970
971 TP_ARGS(local, skb, chan, channel_type, wait),
972
973 TP_STRUCT__entry(
974 LOCAL_ENTRY
975 __field(int, center_freq)
976 __field(int, channel_type)
977 __field(unsigned int, wait)
978 ),
979
980 TP_fast_assign(
981 LOCAL_ASSIGN;
982 __entry->center_freq = chan->center_freq;
983 __entry->channel_type = channel_type;
984 __entry->wait = wait;
985 ),
986
987 TP_printk(
988 LOCAL_PR_FMT " freq:%dMHz, wait:%dms",
989 LOCAL_PR_ARG, __entry->center_freq, __entry->wait
990 )
991);
992
John W. Linville38c09152011-03-07 16:19:18 -0500993TRACE_EVENT(drv_set_ringparam,
994 TP_PROTO(struct ieee80211_local *local, u32 tx, u32 rx),
995
996 TP_ARGS(local, tx, rx),
997
998 TP_STRUCT__entry(
999 LOCAL_ENTRY
1000 __field(u32, tx)
1001 __field(u32, rx)
1002 ),
1003
1004 TP_fast_assign(
1005 LOCAL_ASSIGN;
1006 __entry->tx = tx;
1007 __entry->rx = rx;
1008 ),
1009
1010 TP_printk(
1011 LOCAL_PR_FMT " tx:%d rx %d",
1012 LOCAL_PR_ARG, __entry->tx, __entry->rx
1013 )
1014);
1015
1016TRACE_EVENT(drv_get_ringparam,
1017 TP_PROTO(struct ieee80211_local *local, u32 *tx, u32 *tx_max,
1018 u32 *rx, u32 *rx_max),
1019
1020 TP_ARGS(local, tx, tx_max, rx, rx_max),
1021
1022 TP_STRUCT__entry(
1023 LOCAL_ENTRY
1024 __field(u32, tx)
1025 __field(u32, tx_max)
1026 __field(u32, rx)
1027 __field(u32, rx_max)
1028 ),
1029
1030 TP_fast_assign(
1031 LOCAL_ASSIGN;
1032 __entry->tx = *tx;
1033 __entry->tx_max = *tx_max;
1034 __entry->rx = *rx;
1035 __entry->rx_max = *rx_max;
1036 ),
1037
1038 TP_printk(
1039 LOCAL_PR_FMT " tx:%d tx_max %d rx %d rx_max %d",
1040 LOCAL_PR_ARG,
1041 __entry->tx, __entry->tx_max, __entry->rx, __entry->rx_max
1042 )
1043);
1044
Vivek Natarajane8306f92011-04-06 11:41:10 +05301045DEFINE_EVENT(local_only_evt, drv_tx_frames_pending,
1046 TP_PROTO(struct ieee80211_local *local),
1047 TP_ARGS(local)
1048);
1049
Johannes Berg5f16a432011-02-25 15:36:57 +01001050DEFINE_EVENT(local_only_evt, drv_offchannel_tx_cancel_wait,
1051 TP_PROTO(struct ieee80211_local *local),
1052 TP_ARGS(local)
1053);
1054
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05301055TRACE_EVENT(drv_set_bitrate_mask,
1056 TP_PROTO(struct ieee80211_local *local,
1057 struct ieee80211_sub_if_data *sdata,
1058 const struct cfg80211_bitrate_mask *mask),
1059
1060 TP_ARGS(local, sdata, mask),
1061
1062 TP_STRUCT__entry(
1063 LOCAL_ENTRY
1064 VIF_ENTRY
1065 __field(u32, legacy_2g)
1066 __field(u32, legacy_5g)
1067 ),
1068
1069 TP_fast_assign(
1070 LOCAL_ASSIGN;
1071 VIF_ASSIGN;
1072 __entry->legacy_2g = mask->control[IEEE80211_BAND_2GHZ].legacy;
1073 __entry->legacy_5g = mask->control[IEEE80211_BAND_5GHZ].legacy;
1074 ),
1075
1076 TP_printk(
1077 LOCAL_PR_FMT VIF_PR_FMT " 2G Mask:0x%x 5G Mask:0x%x",
1078 LOCAL_PR_ARG, VIF_PR_ARG, __entry->legacy_2g, __entry->legacy_5g
1079 )
1080);
1081
Johannes Bergc68f4b82011-07-05 16:35:41 +02001082TRACE_EVENT(drv_set_rekey_data,
1083 TP_PROTO(struct ieee80211_local *local,
1084 struct ieee80211_sub_if_data *sdata,
1085 struct cfg80211_gtk_rekey_data *data),
1086
1087 TP_ARGS(local, sdata, data),
1088
1089 TP_STRUCT__entry(
1090 LOCAL_ENTRY
1091 VIF_ENTRY
1092 __array(u8, kek, NL80211_KEK_LEN)
1093 __array(u8, kck, NL80211_KCK_LEN)
1094 __array(u8, replay_ctr, NL80211_REPLAY_CTR_LEN)
1095 ),
1096
1097 TP_fast_assign(
1098 LOCAL_ASSIGN;
1099 VIF_ASSIGN;
1100 memcpy(__entry->kek, data->kek, NL80211_KEK_LEN);
1101 memcpy(__entry->kck, data->kck, NL80211_KCK_LEN);
1102 memcpy(__entry->replay_ctr, data->replay_ctr,
1103 NL80211_REPLAY_CTR_LEN);
1104 ),
1105
1106 TP_printk(LOCAL_PR_FMT VIF_PR_FMT,
1107 LOCAL_PR_ARG, VIF_PR_ARG)
1108);
1109
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001110TRACE_EVENT(drv_rssi_callback,
1111 TP_PROTO(struct ieee80211_local *local,
1112 enum ieee80211_rssi_event rssi_event),
1113
1114 TP_ARGS(local, rssi_event),
1115
1116 TP_STRUCT__entry(
1117 LOCAL_ENTRY
1118 __field(u32, rssi_event)
1119 ),
1120
1121 TP_fast_assign(
1122 LOCAL_ASSIGN;
1123 __entry->rssi_event = rssi_event;
1124 ),
1125
1126 TP_printk(
1127 LOCAL_PR_FMT " rssi_event:%d",
1128 LOCAL_PR_ARG, __entry->rssi_event
1129 )
1130);
1131
Johannes Berg4049e092011-09-29 16:04:32 +02001132TRACE_EVENT(drv_release_buffered_frames,
1133 TP_PROTO(struct ieee80211_local *local,
1134 struct ieee80211_sta *sta,
1135 u16 tids, int num_frames,
1136 enum ieee80211_frame_release_type reason,
1137 bool more_data),
1138
1139 TP_ARGS(local, sta, tids, num_frames, reason, more_data),
1140
1141 TP_STRUCT__entry(
1142 LOCAL_ENTRY
1143 STA_ENTRY
1144 __field(u16, tids)
1145 __field(int, num_frames)
1146 __field(int, reason)
1147 __field(bool, more_data)
1148 ),
1149
1150 TP_fast_assign(
1151 LOCAL_ASSIGN;
1152 STA_ASSIGN;
1153 __entry->tids = tids;
1154 __entry->num_frames = num_frames;
1155 __entry->reason = reason;
1156 __entry->more_data = more_data;
1157 ),
1158
1159 TP_printk(
1160 LOCAL_PR_FMT STA_PR_FMT
1161 " TIDs:0x%.4x frames:%d reason:%d more:%d",
1162 LOCAL_PR_ARG, STA_PR_ARG, __entry->tids, __entry->num_frames,
1163 __entry->reason, __entry->more_data
1164 )
1165);
1166
Johannes Bergb5878a22010-04-07 16:48:40 +02001167/*
1168 * Tracing for API calls that drivers call.
1169 */
1170
1171TRACE_EVENT(api_start_tx_ba_session,
1172 TP_PROTO(struct ieee80211_sta *sta, u16 tid),
1173
1174 TP_ARGS(sta, tid),
1175
1176 TP_STRUCT__entry(
1177 STA_ENTRY
1178 __field(u16, tid)
1179 ),
1180
1181 TP_fast_assign(
1182 STA_ASSIGN;
1183 __entry->tid = tid;
1184 ),
1185
1186 TP_printk(
1187 STA_PR_FMT " tid:%d",
1188 STA_PR_ARG, __entry->tid
1189 )
1190);
1191
1192TRACE_EVENT(api_start_tx_ba_cb,
1193 TP_PROTO(struct ieee80211_sub_if_data *sdata, const u8 *ra, u16 tid),
1194
1195 TP_ARGS(sdata, ra, tid),
1196
1197 TP_STRUCT__entry(
1198 VIF_ENTRY
1199 __array(u8, ra, ETH_ALEN)
1200 __field(u16, tid)
1201 ),
1202
1203 TP_fast_assign(
1204 VIF_ASSIGN;
1205 memcpy(__entry->ra, ra, ETH_ALEN);
1206 __entry->tid = tid;
1207 ),
1208
1209 TP_printk(
1210 VIF_PR_FMT " ra:%pM tid:%d",
1211 VIF_PR_ARG, __entry->ra, __entry->tid
1212 )
1213);
1214
1215TRACE_EVENT(api_stop_tx_ba_session,
Johannes Berg6a8579d2010-05-27 14:41:07 +02001216 TP_PROTO(struct ieee80211_sta *sta, u16 tid),
Johannes Bergb5878a22010-04-07 16:48:40 +02001217
Johannes Berg6a8579d2010-05-27 14:41:07 +02001218 TP_ARGS(sta, tid),
Johannes Bergb5878a22010-04-07 16:48:40 +02001219
1220 TP_STRUCT__entry(
1221 STA_ENTRY
1222 __field(u16, tid)
Johannes Bergb5878a22010-04-07 16:48:40 +02001223 ),
1224
1225 TP_fast_assign(
1226 STA_ASSIGN;
1227 __entry->tid = tid;
Johannes Bergb5878a22010-04-07 16:48:40 +02001228 ),
1229
1230 TP_printk(
Johannes Berg6a8579d2010-05-27 14:41:07 +02001231 STA_PR_FMT " tid:%d",
1232 STA_PR_ARG, __entry->tid
Johannes Bergb5878a22010-04-07 16:48:40 +02001233 )
1234);
1235
1236TRACE_EVENT(api_stop_tx_ba_cb,
1237 TP_PROTO(struct ieee80211_sub_if_data *sdata, const u8 *ra, u16 tid),
1238
1239 TP_ARGS(sdata, ra, tid),
1240
1241 TP_STRUCT__entry(
1242 VIF_ENTRY
1243 __array(u8, ra, ETH_ALEN)
1244 __field(u16, tid)
1245 ),
1246
1247 TP_fast_assign(
1248 VIF_ASSIGN;
1249 memcpy(__entry->ra, ra, ETH_ALEN);
1250 __entry->tid = tid;
1251 ),
1252
1253 TP_printk(
1254 VIF_PR_FMT " ra:%pM tid:%d",
1255 VIF_PR_ARG, __entry->ra, __entry->tid
1256 )
1257);
1258
Johannes Bergba99d932011-01-26 09:22:15 +01001259DEFINE_EVENT(local_only_evt, api_restart_hw,
Johannes Bergb5878a22010-04-07 16:48:40 +02001260 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001261 TP_ARGS(local)
Johannes Bergb5878a22010-04-07 16:48:40 +02001262);
1263
1264TRACE_EVENT(api_beacon_loss,
1265 TP_PROTO(struct ieee80211_sub_if_data *sdata),
1266
1267 TP_ARGS(sdata),
1268
1269 TP_STRUCT__entry(
1270 VIF_ENTRY
1271 ),
1272
1273 TP_fast_assign(
1274 VIF_ASSIGN;
1275 ),
1276
1277 TP_printk(
1278 VIF_PR_FMT,
1279 VIF_PR_ARG
1280 )
1281);
1282
1283TRACE_EVENT(api_connection_loss,
1284 TP_PROTO(struct ieee80211_sub_if_data *sdata),
1285
1286 TP_ARGS(sdata),
1287
1288 TP_STRUCT__entry(
1289 VIF_ENTRY
1290 ),
1291
1292 TP_fast_assign(
1293 VIF_ASSIGN;
1294 ),
1295
1296 TP_printk(
1297 VIF_PR_FMT,
1298 VIF_PR_ARG
1299 )
1300);
1301
1302TRACE_EVENT(api_cqm_rssi_notify,
1303 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1304 enum nl80211_cqm_rssi_threshold_event rssi_event),
1305
1306 TP_ARGS(sdata, rssi_event),
1307
1308 TP_STRUCT__entry(
1309 VIF_ENTRY
1310 __field(u32, rssi_event)
1311 ),
1312
1313 TP_fast_assign(
1314 VIF_ASSIGN;
1315 __entry->rssi_event = rssi_event;
1316 ),
1317
1318 TP_printk(
1319 VIF_PR_FMT " event:%d",
1320 VIF_PR_ARG, __entry->rssi_event
1321 )
1322);
1323
1324TRACE_EVENT(api_scan_completed,
1325 TP_PROTO(struct ieee80211_local *local, bool aborted),
1326
1327 TP_ARGS(local, aborted),
1328
1329 TP_STRUCT__entry(
1330 LOCAL_ENTRY
1331 __field(bool, aborted)
1332 ),
1333
1334 TP_fast_assign(
1335 LOCAL_ASSIGN;
1336 __entry->aborted = aborted;
1337 ),
1338
1339 TP_printk(
1340 LOCAL_PR_FMT " aborted:%d",
1341 LOCAL_PR_ARG, __entry->aborted
1342 )
1343);
1344
Luciano Coelho79f460c2011-05-11 17:09:36 +03001345TRACE_EVENT(api_sched_scan_results,
1346 TP_PROTO(struct ieee80211_local *local),
1347
1348 TP_ARGS(local),
1349
1350 TP_STRUCT__entry(
1351 LOCAL_ENTRY
1352 ),
1353
1354 TP_fast_assign(
1355 LOCAL_ASSIGN;
1356 ),
1357
1358 TP_printk(
1359 LOCAL_PR_FMT, LOCAL_PR_ARG
1360 )
1361);
1362
1363TRACE_EVENT(api_sched_scan_stopped,
1364 TP_PROTO(struct ieee80211_local *local),
1365
1366 TP_ARGS(local),
1367
1368 TP_STRUCT__entry(
1369 LOCAL_ENTRY
1370 ),
1371
1372 TP_fast_assign(
1373 LOCAL_ASSIGN;
1374 ),
1375
1376 TP_printk(
1377 LOCAL_PR_FMT, LOCAL_PR_ARG
1378 )
1379);
1380
Johannes Bergb5878a22010-04-07 16:48:40 +02001381TRACE_EVENT(api_sta_block_awake,
1382 TP_PROTO(struct ieee80211_local *local,
1383 struct ieee80211_sta *sta, bool block),
1384
1385 TP_ARGS(local, sta, block),
1386
1387 TP_STRUCT__entry(
1388 LOCAL_ENTRY
1389 STA_ENTRY
1390 __field(bool, block)
1391 ),
1392
1393 TP_fast_assign(
1394 LOCAL_ASSIGN;
1395 STA_ASSIGN;
1396 __entry->block = block;
1397 ),
1398
1399 TP_printk(
1400 LOCAL_PR_FMT STA_PR_FMT " block:%d",
1401 LOCAL_PR_ARG, STA_PR_FMT, __entry->block
1402 )
1403);
1404
Johannes Berg5ce6e432010-05-11 16:20:57 +02001405TRACE_EVENT(api_chswitch_done,
1406 TP_PROTO(struct ieee80211_sub_if_data *sdata, bool success),
1407
1408 TP_ARGS(sdata, success),
1409
1410 TP_STRUCT__entry(
1411 VIF_ENTRY
1412 __field(bool, success)
1413 ),
1414
1415 TP_fast_assign(
1416 VIF_ASSIGN;
1417 __entry->success = success;
1418 ),
1419
1420 TP_printk(
1421 VIF_PR_FMT " success=%d",
1422 VIF_PR_ARG, __entry->success
1423 )
1424);
1425
Johannes Bergba99d932011-01-26 09:22:15 +01001426DEFINE_EVENT(local_only_evt, api_ready_on_channel,
Johannes Berg21f83582010-12-18 17:20:47 +01001427 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001428 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001429);
1430
Johannes Bergba99d932011-01-26 09:22:15 +01001431DEFINE_EVENT(local_only_evt, api_remain_on_channel_expired,
Johannes Berg21f83582010-12-18 17:20:47 +01001432 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001433 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001434);
1435
Johannes Bergc68f4b82011-07-05 16:35:41 +02001436TRACE_EVENT(api_gtk_rekey_notify,
1437 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1438 const u8 *bssid, const u8 *replay_ctr),
1439
1440 TP_ARGS(sdata, bssid, replay_ctr),
1441
1442 TP_STRUCT__entry(
1443 VIF_ENTRY
1444 __array(u8, bssid, ETH_ALEN)
1445 __array(u8, replay_ctr, NL80211_REPLAY_CTR_LEN)
1446 ),
1447
1448 TP_fast_assign(
1449 VIF_ASSIGN;
1450 memcpy(__entry->bssid, bssid, ETH_ALEN);
1451 memcpy(__entry->replay_ctr, replay_ctr, NL80211_REPLAY_CTR_LEN);
1452 ),
1453
1454 TP_printk(VIF_PR_FMT, VIF_PR_ARG)
1455);
1456
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001457TRACE_EVENT(api_enable_rssi_reports,
1458 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1459 int rssi_min_thold, int rssi_max_thold),
1460
1461 TP_ARGS(sdata, rssi_min_thold, rssi_max_thold),
1462
1463 TP_STRUCT__entry(
1464 VIF_ENTRY
1465 __field(int, rssi_min_thold)
1466 __field(int, rssi_max_thold)
1467 ),
1468
1469 TP_fast_assign(
1470 VIF_ASSIGN;
1471 __entry->rssi_min_thold = rssi_min_thold;
1472 __entry->rssi_max_thold = rssi_max_thold;
1473 ),
1474
1475 TP_printk(
1476 VIF_PR_FMT " rssi_min_thold =%d, rssi_max_thold = %d",
1477 VIF_PR_ARG, __entry->rssi_min_thold, __entry->rssi_max_thold
1478 )
1479);
1480
Johannes Bergb5878a22010-04-07 16:48:40 +02001481/*
1482 * Tracing for internal functions
1483 * (which may also be called in response to driver calls)
1484 */
1485
1486TRACE_EVENT(wake_queue,
1487 TP_PROTO(struct ieee80211_local *local, u16 queue,
1488 enum queue_stop_reason reason),
1489
1490 TP_ARGS(local, queue, reason),
1491
1492 TP_STRUCT__entry(
1493 LOCAL_ENTRY
1494 __field(u16, queue)
1495 __field(u32, reason)
1496 ),
1497
1498 TP_fast_assign(
1499 LOCAL_ASSIGN;
1500 __entry->queue = queue;
1501 __entry->reason = reason;
1502 ),
1503
1504 TP_printk(
1505 LOCAL_PR_FMT " queue:%d, reason:%d",
1506 LOCAL_PR_ARG, __entry->queue, __entry->reason
1507 )
1508);
1509
1510TRACE_EVENT(stop_queue,
1511 TP_PROTO(struct ieee80211_local *local, u16 queue,
1512 enum queue_stop_reason reason),
1513
1514 TP_ARGS(local, queue, reason),
1515
1516 TP_STRUCT__entry(
1517 LOCAL_ENTRY
1518 __field(u16, queue)
1519 __field(u32, reason)
1520 ),
1521
1522 TP_fast_assign(
1523 LOCAL_ASSIGN;
1524 __entry->queue = queue;
1525 __entry->reason = reason;
1526 ),
1527
1528 TP_printk(
1529 LOCAL_PR_FMT " queue:%d, reason:%d",
1530 LOCAL_PR_ARG, __entry->queue, __entry->reason
1531 )
1532);
Christian Lamparterf7428802009-07-19 23:21:07 +02001533#endif /* !__MAC80211_DRIVER_TRACE || TRACE_HEADER_MULTI_READ */
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02001534
1535#undef TRACE_INCLUDE_PATH
1536#define TRACE_INCLUDE_PATH .
1537#undef TRACE_INCLUDE_FILE
1538#define TRACE_INCLUDE_FILE driver-trace
1539#include <trace/define_trace.h>