blob: c5899797a8d4b0f01da791da6e2b1be8a685627f [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
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02008#undef TRACE_SYSTEM
9#define TRACE_SYSTEM mac80211
10
11#define MAXNAME 32
12#define LOCAL_ENTRY __array(char, wiphy_name, 32)
13#define LOCAL_ASSIGN strlcpy(__entry->wiphy_name, wiphy_name(local->hw.wiphy), MAXNAME)
14#define LOCAL_PR_FMT "%s"
15#define LOCAL_PR_ARG __entry->wiphy_name
16
17#define STA_ENTRY __array(char, sta_addr, ETH_ALEN)
18#define STA_ASSIGN (sta ? memcpy(__entry->sta_addr, sta->addr, ETH_ALEN) : memset(__entry->sta_addr, 0, ETH_ALEN))
19#define STA_PR_FMT " sta:%pM"
20#define STA_PR_ARG __entry->sta_addr
21
Johannes Berg2ca27bc2010-09-16 14:58:23 +020022#define VIF_ENTRY __field(enum nl80211_iftype, vif_type) __field(void *, sdata) \
23 __field(bool, p2p) \
Johannes Berg12375ef2009-11-25 20:30:31 +010024 __string(vif_name, sdata->dev ? sdata->dev->name : "<nodev>")
Johannes Berg2ca27bc2010-09-16 14:58:23 +020025#define VIF_ASSIGN __entry->vif_type = sdata->vif.type; __entry->sdata = sdata; \
26 __entry->p2p = sdata->vif.p2p; \
Johannes Bergf142c6b2012-06-18 20:07:15 +020027 __assign_str(vif_name, sdata->dev ? sdata->dev->name : sdata->name)
Johannes Berg2ca27bc2010-09-16 14:58:23 +020028#define VIF_PR_FMT " vif:%s(%d%s)"
29#define VIF_PR_ARG __get_str(vif_name), __entry->vif_type, __entry->p2p ? "/p2p" : ""
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020030
Johannes Berg5a32aff2012-12-21 12:36:33 +010031#define CHANDEF_ENTRY __field(u32, control_freq) \
Johannes Berg4bf88532012-11-09 11:39:59 +010032 __field(u32, chan_width) \
33 __field(u32, center_freq1) \
Johannes Berg5a32aff2012-12-21 12:36:33 +010034 __field(u32, center_freq2)
35#define CHANDEF_ASSIGN(c) \
36 __entry->control_freq = (c)->chan->center_freq; \
37 __entry->chan_width = (c)->width; \
38 __entry->center_freq1 = (c)->center_freq1; \
Johannes Berg757af6f2013-02-08 21:29:59 +010039 __entry->center_freq2 = (c)->center_freq2;
Johannes Berg5a32aff2012-12-21 12:36:33 +010040#define CHANDEF_PR_FMT " control:%d MHz width:%d center: %d/%d MHz"
41#define CHANDEF_PR_ARG __entry->control_freq, __entry->chan_width, \
42 __entry->center_freq1, __entry->center_freq2
43
44#define CHANCTX_ENTRY CHANDEF_ENTRY \
Johannes Berg04ecd252012-09-11 14:34:12 +020045 __field(u8, rx_chains_static) \
46 __field(u8, rx_chains_dynamic)
Johannes Berg5a32aff2012-12-21 12:36:33 +010047#define CHANCTX_ASSIGN CHANDEF_ASSIGN(&ctx->conf.def) \
Johannes Berg04ecd252012-09-11 14:34:12 +020048 __entry->rx_chains_static = ctx->conf.rx_chains_static; \
49 __entry->rx_chains_dynamic = ctx->conf.rx_chains_dynamic
Johannes Berg5a32aff2012-12-21 12:36:33 +010050#define CHANCTX_PR_FMT CHANDEF_PR_FMT " chains:%d/%d"
51#define CHANCTX_PR_ARG CHANDEF_PR_ARG, \
Johannes Berg04ecd252012-09-11 14:34:12 +020052 __entry->rx_chains_static, __entry->rx_chains_dynamic
Michal Kaziorc3645ea2012-06-26 14:37:17 +020053
54
55
Johannes Bergb5878a22010-04-07 16:48:40 +020056/*
57 * Tracing for driver callbacks.
58 */
59
Johannes Bergba99d932011-01-26 09:22:15 +010060DECLARE_EVENT_CLASS(local_only_evt,
Johannes Berg4efc76b2010-06-10 10:56:20 +020061 TP_PROTO(struct ieee80211_local *local),
62 TP_ARGS(local),
63 TP_STRUCT__entry(
64 LOCAL_ENTRY
65 ),
66 TP_fast_assign(
67 LOCAL_ASSIGN;
68 ),
69 TP_printk(LOCAL_PR_FMT, LOCAL_PR_ARG)
70);
71
Luciano Coelho92ddc112011-05-09 14:40:06 +030072DECLARE_EVENT_CLASS(local_sdata_addr_evt,
73 TP_PROTO(struct ieee80211_local *local,
74 struct ieee80211_sub_if_data *sdata),
75 TP_ARGS(local, sdata),
76
77 TP_STRUCT__entry(
78 LOCAL_ENTRY
79 VIF_ENTRY
80 __array(char, addr, 6)
81 ),
82
83 TP_fast_assign(
84 LOCAL_ASSIGN;
85 VIF_ASSIGN;
86 memcpy(__entry->addr, sdata->vif.addr, 6);
87 ),
88
89 TP_printk(
90 LOCAL_PR_FMT VIF_PR_FMT " addr:%pM",
91 LOCAL_PR_ARG, VIF_PR_ARG, __entry->addr
92 )
93);
94
95DECLARE_EVENT_CLASS(local_u32_evt,
96 TP_PROTO(struct ieee80211_local *local, u32 value),
97 TP_ARGS(local, value),
98
99 TP_STRUCT__entry(
100 LOCAL_ENTRY
101 __field(u32, value)
102 ),
103
104 TP_fast_assign(
105 LOCAL_ASSIGN;
106 __entry->value = value;
107 ),
108
109 TP_printk(
110 LOCAL_PR_FMT " value:%d",
111 LOCAL_PR_ARG, __entry->value
112 )
113);
114
Luciano Coelho79f460c2011-05-11 17:09:36 +0300115DECLARE_EVENT_CLASS(local_sdata_evt,
116 TP_PROTO(struct ieee80211_local *local,
117 struct ieee80211_sub_if_data *sdata),
118 TP_ARGS(local, sdata),
119
120 TP_STRUCT__entry(
121 LOCAL_ENTRY
122 VIF_ENTRY
123 ),
124
125 TP_fast_assign(
126 LOCAL_ASSIGN;
127 VIF_ASSIGN;
128 ),
129
130 TP_printk(
131 LOCAL_PR_FMT VIF_PR_FMT,
132 LOCAL_PR_ARG, VIF_PR_ARG
133 )
134);
135
Johannes Bergba99d932011-01-26 09:22:15 +0100136DEFINE_EVENT(local_only_evt, drv_return_void,
137 TP_PROTO(struct ieee80211_local *local),
138 TP_ARGS(local)
139);
140
Johannes Berg4efc76b2010-06-10 10:56:20 +0200141TRACE_EVENT(drv_return_int,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200142 TP_PROTO(struct ieee80211_local *local, int ret),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200143 TP_ARGS(local, ret),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200144 TP_STRUCT__entry(
145 LOCAL_ENTRY
146 __field(int, ret)
147 ),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200148 TP_fast_assign(
149 LOCAL_ASSIGN;
150 __entry->ret = ret;
151 ),
Johannes Berg4efc76b2010-06-10 10:56:20 +0200152 TP_printk(LOCAL_PR_FMT " - %d", LOCAL_PR_ARG, __entry->ret)
153);
154
Vivek Natarajane8306f92011-04-06 11:41:10 +0530155TRACE_EVENT(drv_return_bool,
156 TP_PROTO(struct ieee80211_local *local, bool ret),
157 TP_ARGS(local, ret),
158 TP_STRUCT__entry(
159 LOCAL_ENTRY
160 __field(bool, ret)
161 ),
162 TP_fast_assign(
163 LOCAL_ASSIGN;
164 __entry->ret = ret;
165 ),
166 TP_printk(LOCAL_PR_FMT " - %s", LOCAL_PR_ARG, (__entry->ret) ?
167 "true" : "false")
168);
169
Johannes Berg4efc76b2010-06-10 10:56:20 +0200170TRACE_EVENT(drv_return_u64,
171 TP_PROTO(struct ieee80211_local *local, u64 ret),
172 TP_ARGS(local, ret),
173 TP_STRUCT__entry(
174 LOCAL_ENTRY
175 __field(u64, ret)
176 ),
177 TP_fast_assign(
178 LOCAL_ASSIGN;
179 __entry->ret = ret;
180 ),
181 TP_printk(LOCAL_PR_FMT " - %llu", LOCAL_PR_ARG, __entry->ret)
182);
183
Johannes Bergba99d932011-01-26 09:22:15 +0100184DEFINE_EVENT(local_only_evt, drv_start,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200185 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100186 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200187);
188
Ben Greeare3521142012-04-23 12:50:31 -0700189DEFINE_EVENT(local_u32_evt, drv_get_et_strings,
190 TP_PROTO(struct ieee80211_local *local, u32 sset),
191 TP_ARGS(local, sset)
192);
193
194DEFINE_EVENT(local_u32_evt, drv_get_et_sset_count,
195 TP_PROTO(struct ieee80211_local *local, u32 sset),
196 TP_ARGS(local, sset)
197);
198
199DEFINE_EVENT(local_only_evt, drv_get_et_stats,
200 TP_PROTO(struct ieee80211_local *local),
201 TP_ARGS(local)
202);
203
Johannes Bergeecc4802011-05-04 15:37:29 +0200204DEFINE_EVENT(local_only_evt, drv_suspend,
205 TP_PROTO(struct ieee80211_local *local),
206 TP_ARGS(local)
207);
208
209DEFINE_EVENT(local_only_evt, drv_resume,
210 TP_PROTO(struct ieee80211_local *local),
211 TP_ARGS(local)
212);
213
Johannes Berg6d525632012-04-04 15:05:25 +0200214TRACE_EVENT(drv_set_wakeup,
215 TP_PROTO(struct ieee80211_local *local, bool enabled),
216 TP_ARGS(local, enabled),
217 TP_STRUCT__entry(
218 LOCAL_ENTRY
219 __field(bool, enabled)
220 ),
221 TP_fast_assign(
222 LOCAL_ASSIGN;
223 __entry->enabled = enabled;
224 ),
225 TP_printk(LOCAL_PR_FMT " enabled:%d", LOCAL_PR_ARG, __entry->enabled)
226);
227
Johannes Bergba99d932011-01-26 09:22:15 +0100228DEFINE_EVENT(local_only_evt, drv_stop,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200229 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100230 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200231);
232
Luciano Coelho92ddc112011-05-09 14:40:06 +0300233DEFINE_EVENT(local_sdata_addr_evt, drv_add_interface,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200234 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200235 struct ieee80211_sub_if_data *sdata),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300236 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200237);
238
Johannes Berg34d4bc42010-08-27 12:35:58 +0200239TRACE_EVENT(drv_change_interface,
240 TP_PROTO(struct ieee80211_local *local,
241 struct ieee80211_sub_if_data *sdata,
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200242 enum nl80211_iftype type, bool p2p),
Johannes Berg34d4bc42010-08-27 12:35:58 +0200243
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200244 TP_ARGS(local, sdata, type, p2p),
Johannes Berg34d4bc42010-08-27 12:35:58 +0200245
246 TP_STRUCT__entry(
247 LOCAL_ENTRY
248 VIF_ENTRY
249 __field(u32, new_type)
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200250 __field(bool, new_p2p)
Johannes Berg34d4bc42010-08-27 12:35:58 +0200251 ),
252
253 TP_fast_assign(
254 LOCAL_ASSIGN;
255 VIF_ASSIGN;
256 __entry->new_type = type;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200257 __entry->new_p2p = p2p;
Johannes Berg34d4bc42010-08-27 12:35:58 +0200258 ),
259
260 TP_printk(
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200261 LOCAL_PR_FMT VIF_PR_FMT " new type:%d%s",
262 LOCAL_PR_ARG, VIF_PR_ARG, __entry->new_type,
263 __entry->new_p2p ? "/p2p" : ""
Johannes Berg34d4bc42010-08-27 12:35:58 +0200264 )
265);
266
Luciano Coelho92ddc112011-05-09 14:40:06 +0300267DEFINE_EVENT(local_sdata_addr_evt, drv_remove_interface,
268 TP_PROTO(struct ieee80211_local *local,
269 struct ieee80211_sub_if_data *sdata),
270 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200271);
272
273TRACE_EVENT(drv_config,
274 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200275 u32 changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200276
Johannes Berg4efc76b2010-06-10 10:56:20 +0200277 TP_ARGS(local, changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200278
279 TP_STRUCT__entry(
280 LOCAL_ENTRY
281 __field(u32, changed)
Johannes Bergf911ab82009-11-25 19:07:20 +0100282 __field(u32, flags)
283 __field(int, power_level)
284 __field(int, dynamic_ps_timeout)
285 __field(int, max_sleep_period)
286 __field(u16, listen_interval)
287 __field(u8, long_frame_max_tx_count)
288 __field(u8, short_frame_max_tx_count)
289 __field(int, center_freq)
290 __field(int, channel_type)
Johannes Berg0f782312009-12-01 13:37:02 +0100291 __field(int, smps)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200292 ),
293
294 TP_fast_assign(
295 LOCAL_ASSIGN;
296 __entry->changed = changed;
Johannes Bergf911ab82009-11-25 19:07:20 +0100297 __entry->flags = local->hw.conf.flags;
298 __entry->power_level = local->hw.conf.power_level;
299 __entry->dynamic_ps_timeout = local->hw.conf.dynamic_ps_timeout;
300 __entry->max_sleep_period = local->hw.conf.max_sleep_period;
301 __entry->listen_interval = local->hw.conf.listen_interval;
Johannes Berg3d01be72012-07-26 14:27:39 +0200302 __entry->long_frame_max_tx_count =
303 local->hw.conf.long_frame_max_tx_count;
304 __entry->short_frame_max_tx_count =
305 local->hw.conf.short_frame_max_tx_count;
306 __entry->center_freq = local->hw.conf.channel ?
307 local->hw.conf.channel->center_freq : 0;
Johannes Bergf911ab82009-11-25 19:07:20 +0100308 __entry->channel_type = local->hw.conf.channel_type;
Johannes Berg0f782312009-12-01 13:37:02 +0100309 __entry->smps = local->hw.conf.smps_mode;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200310 ),
311
312 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200313 LOCAL_PR_FMT " ch:%#x freq:%d",
314 LOCAL_PR_ARG, __entry->changed, __entry->center_freq
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200315 )
316);
317
318TRACE_EVENT(drv_bss_info_changed,
319 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100320 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200321 struct ieee80211_bss_conf *info,
322 u32 changed),
323
Johannes Berg12375ef2009-11-25 20:30:31 +0100324 TP_ARGS(local, sdata, info, changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200325
326 TP_STRUCT__entry(
327 LOCAL_ENTRY
328 VIF_ENTRY
Johannes Berg1724ffb2012-10-24 11:38:30 +0200329 __field(u32, changed)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200330 __field(bool, assoc)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200331 __field(bool, ibss_joined)
332 __field(bool, ibss_creator)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200333 __field(u16, aid)
334 __field(bool, cts)
335 __field(bool, shortpre)
336 __field(bool, shortslot)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200337 __field(bool, enable_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200338 __field(u8, dtimper)
339 __field(u16, bcnint)
340 __field(u16, assoc_cap)
Johannes Berg8c358bc2012-05-22 22:13:05 +0200341 __field(u64, sync_tsf)
342 __field(u32, sync_device_ts)
Johannes Bergef429da2013-02-05 17:48:40 +0100343 __field(u8, sync_dtim_count)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200344 __field(u32, basic_rates)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200345 __array(int, mcast_rate, IEEE80211_NUM_BANDS)
Johannes Bergf911ab82009-11-25 19:07:20 +0100346 __field(u16, ht_operation_mode)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200347 __field(s32, cqm_rssi_thold);
348 __field(s32, cqm_rssi_hyst);
Johannes Berg4bf88532012-11-09 11:39:59 +0100349 __field(u32, channel_width);
350 __field(u32, channel_cfreq1);
Johannes Berg0f19b412013-01-14 16:39:07 +0100351 __dynamic_array(u32, arp_addr_list,
352 info->arp_addr_cnt > IEEE80211_BSS_ARP_ADDR_LIST_LEN ?
353 IEEE80211_BSS_ARP_ADDR_LIST_LEN :
354 info->arp_addr_cnt);
355 __field(int, arp_addr_cnt);
Johannes Berg1724ffb2012-10-24 11:38:30 +0200356 __field(bool, qos);
357 __field(bool, idle);
358 __field(bool, ps);
359 __dynamic_array(u8, ssid, info->ssid_len);
360 __field(bool, hidden_ssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200361 __field(int, txpower)
Johannes Berg488dd7b2012-10-29 20:08:01 +0100362 __field(u8, p2p_ctwindow)
363 __field(bool, p2p_oppps)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200364 ),
365
366 TP_fast_assign(
367 LOCAL_ASSIGN;
368 VIF_ASSIGN;
369 __entry->changed = changed;
370 __entry->aid = info->aid;
371 __entry->assoc = info->assoc;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200372 __entry->ibss_joined = info->ibss_joined;
373 __entry->ibss_creator = info->ibss_creator;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200374 __entry->shortpre = info->use_short_preamble;
375 __entry->cts = info->use_cts_prot;
376 __entry->shortslot = info->use_short_slot;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200377 __entry->enable_beacon = info->enable_beacon;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200378 __entry->dtimper = info->dtim_period;
379 __entry->bcnint = info->beacon_int;
380 __entry->assoc_cap = info->assoc_capability;
Johannes Berg8c358bc2012-05-22 22:13:05 +0200381 __entry->sync_tsf = info->sync_tsf;
382 __entry->sync_device_ts = info->sync_device_ts;
Johannes Bergef429da2013-02-05 17:48:40 +0100383 __entry->sync_dtim_count = info->sync_dtim_count;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200384 __entry->basic_rates = info->basic_rates;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200385 memcpy(__entry->mcast_rate, info->mcast_rate,
386 sizeof(__entry->mcast_rate));
Johannes Bergf911ab82009-11-25 19:07:20 +0100387 __entry->ht_operation_mode = info->ht_operation_mode;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200388 __entry->cqm_rssi_thold = info->cqm_rssi_thold;
389 __entry->cqm_rssi_hyst = info->cqm_rssi_hyst;
Johannes Berg4bf88532012-11-09 11:39:59 +0100390 __entry->channel_width = info->chandef.width;
391 __entry->channel_cfreq1 = info->chandef.center_freq1;
Johannes Berg0f19b412013-01-14 16:39:07 +0100392 __entry->arp_addr_cnt = info->arp_addr_cnt;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200393 memcpy(__get_dynamic_array(arp_addr_list), info->arp_addr_list,
Johannes Berg0f19b412013-01-14 16:39:07 +0100394 sizeof(u32) * (info->arp_addr_cnt > IEEE80211_BSS_ARP_ADDR_LIST_LEN ?
395 IEEE80211_BSS_ARP_ADDR_LIST_LEN :
396 info->arp_addr_cnt));
Johannes Berg1724ffb2012-10-24 11:38:30 +0200397 __entry->qos = info->qos;
398 __entry->idle = info->idle;
399 __entry->ps = info->ps;
400 memcpy(__get_dynamic_array(ssid), info->ssid, info->ssid_len);
401 __entry->hidden_ssid = info->hidden_ssid;
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200402 __entry->txpower = info->txpower;
Johannes Berg488dd7b2012-10-29 20:08:01 +0100403 __entry->p2p_ctwindow = info->p2p_ctwindow;
404 __entry->p2p_oppps = info->p2p_oppps;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200405 ),
406
407 TP_printk(
408 LOCAL_PR_FMT VIF_PR_FMT " changed:%#x",
409 LOCAL_PR_ARG, VIF_PR_ARG, __entry->changed
410 )
411);
412
Johannes Berg3ac64be2009-08-17 16:16:53 +0200413TRACE_EVENT(drv_prepare_multicast,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200414 TP_PROTO(struct ieee80211_local *local, int mc_count),
Johannes Berg3ac64be2009-08-17 16:16:53 +0200415
Johannes Berg4efc76b2010-06-10 10:56:20 +0200416 TP_ARGS(local, mc_count),
Johannes Berg3ac64be2009-08-17 16:16:53 +0200417
418 TP_STRUCT__entry(
419 LOCAL_ENTRY
420 __field(int, mc_count)
Johannes Berg3ac64be2009-08-17 16:16:53 +0200421 ),
422
423 TP_fast_assign(
424 LOCAL_ASSIGN;
425 __entry->mc_count = mc_count;
Johannes Berg3ac64be2009-08-17 16:16:53 +0200426 ),
427
428 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200429 LOCAL_PR_FMT " prepare mc (%d)",
430 LOCAL_PR_ARG, __entry->mc_count
Johannes Berg3ac64be2009-08-17 16:16:53 +0200431 )
432);
433
Alexander Bondar488b3662013-02-11 14:56:29 +0200434TRACE_EVENT(drv_set_multicast_list,
435 TP_PROTO(struct ieee80211_local *local,
436 struct ieee80211_sub_if_data *sdata, int mc_count),
437
438 TP_ARGS(local, sdata, mc_count),
439
440 TP_STRUCT__entry(
441 LOCAL_ENTRY
442 __field(bool, allmulti)
443 __field(int, mc_count)
444 ),
445
446 TP_fast_assign(
447 LOCAL_ASSIGN;
448 __entry->allmulti = sdata->flags & IEEE80211_SDATA_ALLMULTI;
449 __entry->mc_count = mc_count;
450 ),
451
452 TP_printk(
453 LOCAL_PR_FMT " configure mc filter, count=%d, allmulti=%d",
454 LOCAL_PR_ARG, __entry->mc_count, __entry->allmulti
455 )
456);
457
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200458TRACE_EVENT(drv_configure_filter,
459 TP_PROTO(struct ieee80211_local *local,
460 unsigned int changed_flags,
461 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200462 u64 multicast),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200463
Johannes Berg3ac64be2009-08-17 16:16:53 +0200464 TP_ARGS(local, changed_flags, total_flags, multicast),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200465
466 TP_STRUCT__entry(
467 LOCAL_ENTRY
468 __field(unsigned int, changed)
469 __field(unsigned int, total)
Johannes Berg3ac64be2009-08-17 16:16:53 +0200470 __field(u64, multicast)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200471 ),
472
473 TP_fast_assign(
474 LOCAL_ASSIGN;
475 __entry->changed = changed_flags;
476 __entry->total = *total_flags;
Johannes Berg3ac64be2009-08-17 16:16:53 +0200477 __entry->multicast = multicast;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200478 ),
479
480 TP_printk(
Johannes Berg3ac64be2009-08-17 16:16:53 +0200481 LOCAL_PR_FMT " changed:%#x total:%#x",
482 LOCAL_PR_ARG, __entry->changed, __entry->total
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200483 )
484);
485
486TRACE_EVENT(drv_set_tim,
487 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200488 struct ieee80211_sta *sta, bool set),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200489
Johannes Berg4efc76b2010-06-10 10:56:20 +0200490 TP_ARGS(local, sta, set),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200491
492 TP_STRUCT__entry(
493 LOCAL_ENTRY
494 STA_ENTRY
495 __field(bool, set)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200496 ),
497
498 TP_fast_assign(
499 LOCAL_ASSIGN;
500 STA_ASSIGN;
501 __entry->set = set;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200502 ),
503
504 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200505 LOCAL_PR_FMT STA_PR_FMT " set:%d",
Seth Forshee15ac7c42013-02-15 13:15:48 -0600506 LOCAL_PR_ARG, STA_PR_ARG, __entry->set
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200507 )
508);
509
510TRACE_EVENT(drv_set_key,
511 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100512 enum set_key_cmd cmd, struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200513 struct ieee80211_sta *sta,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200514 struct ieee80211_key_conf *key),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200515
Johannes Berg4efc76b2010-06-10 10:56:20 +0200516 TP_ARGS(local, cmd, sdata, sta, key),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200517
518 TP_STRUCT__entry(
519 LOCAL_ENTRY
520 VIF_ENTRY
521 STA_ENTRY
Johannes Berg97359d12010-08-10 09:46:38 +0200522 __field(u32, cipher)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200523 __field(u8, hw_key_idx)
524 __field(u8, flags)
525 __field(s8, keyidx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200526 ),
527
528 TP_fast_assign(
529 LOCAL_ASSIGN;
530 VIF_ASSIGN;
531 STA_ASSIGN;
Johannes Berg97359d12010-08-10 09:46:38 +0200532 __entry->cipher = key->cipher;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200533 __entry->flags = key->flags;
534 __entry->keyidx = key->keyidx;
535 __entry->hw_key_idx = key->hw_key_idx;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200536 ),
537
538 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200539 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
540 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200541 )
542);
543
544TRACE_EVENT(drv_update_tkip_key,
545 TP_PROTO(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100546 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200547 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100548 struct ieee80211_sta *sta, u32 iv32),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200549
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100550 TP_ARGS(local, sdata, conf, sta, iv32),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200551
552 TP_STRUCT__entry(
553 LOCAL_ENTRY
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100554 VIF_ENTRY
555 STA_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200556 __field(u32, iv32)
557 ),
558
559 TP_fast_assign(
560 LOCAL_ASSIGN;
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100561 VIF_ASSIGN;
562 STA_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200563 __entry->iv32 = iv32;
564 ),
565
566 TP_printk(
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100567 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " iv32:%#x",
568 LOCAL_PR_ARG,VIF_PR_ARG,STA_PR_ARG, __entry->iv32
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200569 )
570);
571
Luciano Coelho79f460c2011-05-11 17:09:36 +0300572DEFINE_EVENT(local_sdata_evt, drv_hw_scan,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200573 TP_PROTO(struct ieee80211_local *local,
Luciano Coelho79f460c2011-05-11 17:09:36 +0300574 struct ieee80211_sub_if_data *sdata),
575 TP_ARGS(local, sdata)
576);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200577
Eliad Pellerb8564392011-06-13 12:47:30 +0300578DEFINE_EVENT(local_sdata_evt, drv_cancel_hw_scan,
579 TP_PROTO(struct ieee80211_local *local,
580 struct ieee80211_sub_if_data *sdata),
581 TP_ARGS(local, sdata)
582);
583
Luciano Coelho79f460c2011-05-11 17:09:36 +0300584DEFINE_EVENT(local_sdata_evt, drv_sched_scan_start,
585 TP_PROTO(struct ieee80211_local *local,
586 struct ieee80211_sub_if_data *sdata),
587 TP_ARGS(local, sdata)
588);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200589
Luciano Coelho79f460c2011-05-11 17:09:36 +0300590DEFINE_EVENT(local_sdata_evt, drv_sched_scan_stop,
591 TP_PROTO(struct ieee80211_local *local,
592 struct ieee80211_sub_if_data *sdata),
593 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200594);
595
Johannes Bergba99d932011-01-26 09:22:15 +0100596DEFINE_EVENT(local_only_evt, drv_sw_scan_start,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200597 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100598 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200599);
600
Johannes Bergba99d932011-01-26 09:22:15 +0100601DEFINE_EVENT(local_only_evt, drv_sw_scan_complete,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200602 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100603 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200604);
605
606TRACE_EVENT(drv_get_stats,
607 TP_PROTO(struct ieee80211_local *local,
608 struct ieee80211_low_level_stats *stats,
609 int ret),
610
611 TP_ARGS(local, stats, ret),
612
613 TP_STRUCT__entry(
614 LOCAL_ENTRY
615 __field(int, ret)
616 __field(unsigned int, ackfail)
617 __field(unsigned int, rtsfail)
618 __field(unsigned int, fcserr)
619 __field(unsigned int, rtssucc)
620 ),
621
622 TP_fast_assign(
623 LOCAL_ASSIGN;
624 __entry->ret = ret;
625 __entry->ackfail = stats->dot11ACKFailureCount;
626 __entry->rtsfail = stats->dot11RTSFailureCount;
627 __entry->fcserr = stats->dot11FCSErrorCount;
628 __entry->rtssucc = stats->dot11RTSSuccessCount;
629 ),
630
631 TP_printk(
632 LOCAL_PR_FMT " ret:%d",
633 LOCAL_PR_ARG, __entry->ret
634 )
635);
636
637TRACE_EVENT(drv_get_tkip_seq,
638 TP_PROTO(struct ieee80211_local *local,
639 u8 hw_key_idx, u32 *iv32, u16 *iv16),
640
641 TP_ARGS(local, hw_key_idx, iv32, iv16),
642
643 TP_STRUCT__entry(
644 LOCAL_ENTRY
645 __field(u8, hw_key_idx)
646 __field(u32, iv32)
647 __field(u16, iv16)
648 ),
649
650 TP_fast_assign(
651 LOCAL_ASSIGN;
652 __entry->hw_key_idx = hw_key_idx;
653 __entry->iv32 = *iv32;
654 __entry->iv16 = *iv16;
655 ),
656
657 TP_printk(
658 LOCAL_PR_FMT, LOCAL_PR_ARG
659 )
660);
661
Luciano Coelho92ddc112011-05-09 14:40:06 +0300662DEFINE_EVENT(local_u32_evt, drv_set_frag_threshold,
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200663 TP_PROTO(struct ieee80211_local *local, u32 value),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300664 TP_ARGS(local, value)
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200665);
666
Luciano Coelho92ddc112011-05-09 14:40:06 +0300667DEFINE_EVENT(local_u32_evt, drv_set_rts_threshold,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200668 TP_PROTO(struct ieee80211_local *local, u32 value),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300669 TP_ARGS(local, value)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200670);
671
Lukáš Turek310bc672009-12-21 22:50:48 +0100672TRACE_EVENT(drv_set_coverage_class,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200673 TP_PROTO(struct ieee80211_local *local, u8 value),
Lukáš Turek310bc672009-12-21 22:50:48 +0100674
Johannes Berg4efc76b2010-06-10 10:56:20 +0200675 TP_ARGS(local, value),
Lukáš Turek310bc672009-12-21 22:50:48 +0100676
677 TP_STRUCT__entry(
678 LOCAL_ENTRY
679 __field(u8, value)
Lukáš Turek310bc672009-12-21 22:50:48 +0100680 ),
681
682 TP_fast_assign(
683 LOCAL_ASSIGN;
Lukáš Turek310bc672009-12-21 22:50:48 +0100684 __entry->value = value;
685 ),
686
687 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200688 LOCAL_PR_FMT " value:%d",
689 LOCAL_PR_ARG, __entry->value
Lukáš Turek310bc672009-12-21 22:50:48 +0100690 )
691);
692
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200693TRACE_EVENT(drv_sta_notify,
694 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100695 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200696 enum sta_notify_cmd cmd,
697 struct ieee80211_sta *sta),
698
Johannes Berg12375ef2009-11-25 20:30:31 +0100699 TP_ARGS(local, sdata, cmd, sta),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200700
701 TP_STRUCT__entry(
702 LOCAL_ENTRY
703 VIF_ENTRY
704 STA_ENTRY
705 __field(u32, cmd)
706 ),
707
708 TP_fast_assign(
709 LOCAL_ASSIGN;
710 VIF_ASSIGN;
711 STA_ASSIGN;
712 __entry->cmd = cmd;
713 ),
714
715 TP_printk(
716 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " cmd:%d",
717 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->cmd
718 )
719);
720
Johannes Bergf09603a2012-01-20 13:55:21 +0100721TRACE_EVENT(drv_sta_state,
722 TP_PROTO(struct ieee80211_local *local,
723 struct ieee80211_sub_if_data *sdata,
724 struct ieee80211_sta *sta,
725 enum ieee80211_sta_state old_state,
726 enum ieee80211_sta_state new_state),
727
728 TP_ARGS(local, sdata, sta, old_state, new_state),
729
730 TP_STRUCT__entry(
731 LOCAL_ENTRY
732 VIF_ENTRY
733 STA_ENTRY
734 __field(u32, old_state)
735 __field(u32, new_state)
736 ),
737
738 TP_fast_assign(
739 LOCAL_ASSIGN;
740 VIF_ASSIGN;
741 STA_ASSIGN;
742 __entry->old_state = old_state;
743 __entry->new_state = new_state;
744 ),
745
746 TP_printk(
747 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " state: %d->%d",
748 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG,
749 __entry->old_state, __entry->new_state
750 )
751);
752
Johannes Berg8f727ef2012-03-30 08:43:32 +0200753TRACE_EVENT(drv_sta_rc_update,
754 TP_PROTO(struct ieee80211_local *local,
755 struct ieee80211_sub_if_data *sdata,
756 struct ieee80211_sta *sta,
757 u32 changed),
758
759 TP_ARGS(local, sdata, sta, changed),
760
761 TP_STRUCT__entry(
762 LOCAL_ENTRY
763 VIF_ENTRY
764 STA_ENTRY
765 __field(u32, changed)
766 ),
767
768 TP_fast_assign(
769 LOCAL_ASSIGN;
770 VIF_ASSIGN;
771 STA_ASSIGN;
772 __entry->changed = changed;
773 ),
774
775 TP_printk(
776 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " changed: 0x%x",
777 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->changed
778 )
779);
780
Johannes Berg34e89502010-02-03 13:59:58 +0100781TRACE_EVENT(drv_sta_add,
782 TP_PROTO(struct ieee80211_local *local,
783 struct ieee80211_sub_if_data *sdata,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200784 struct ieee80211_sta *sta),
Johannes Berg34e89502010-02-03 13:59:58 +0100785
Johannes Berg4efc76b2010-06-10 10:56:20 +0200786 TP_ARGS(local, sdata, sta),
Johannes Berg34e89502010-02-03 13:59:58 +0100787
788 TP_STRUCT__entry(
789 LOCAL_ENTRY
790 VIF_ENTRY
791 STA_ENTRY
Johannes Berg34e89502010-02-03 13:59:58 +0100792 ),
793
794 TP_fast_assign(
795 LOCAL_ASSIGN;
796 VIF_ASSIGN;
797 STA_ASSIGN;
Johannes Berg34e89502010-02-03 13:59:58 +0100798 ),
799
800 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200801 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
802 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
Johannes Berg34e89502010-02-03 13:59:58 +0100803 )
804);
805
806TRACE_EVENT(drv_sta_remove,
807 TP_PROTO(struct ieee80211_local *local,
808 struct ieee80211_sub_if_data *sdata,
809 struct ieee80211_sta *sta),
810
811 TP_ARGS(local, sdata, sta),
812
813 TP_STRUCT__entry(
814 LOCAL_ENTRY
815 VIF_ENTRY
816 STA_ENTRY
817 ),
818
819 TP_fast_assign(
820 LOCAL_ASSIGN;
821 VIF_ASSIGN;
822 STA_ASSIGN;
823 ),
824
825 TP_printk(
826 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
827 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
828 )
829);
830
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200831TRACE_EVENT(drv_conf_tx,
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300832 TP_PROTO(struct ieee80211_local *local,
833 struct ieee80211_sub_if_data *sdata,
Johannes Berga3304b02012-03-28 11:04:24 +0200834 u16 ac, const struct ieee80211_tx_queue_params *params),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200835
Johannes Berga3304b02012-03-28 11:04:24 +0200836 TP_ARGS(local, sdata, ac, params),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200837
838 TP_STRUCT__entry(
839 LOCAL_ENTRY
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300840 VIF_ENTRY
Johannes Berga3304b02012-03-28 11:04:24 +0200841 __field(u16, ac)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200842 __field(u16, txop)
843 __field(u16, cw_min)
844 __field(u16, cw_max)
845 __field(u8, aifs)
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300846 __field(bool, uapsd)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200847 ),
848
849 TP_fast_assign(
850 LOCAL_ASSIGN;
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300851 VIF_ASSIGN;
Johannes Berga3304b02012-03-28 11:04:24 +0200852 __entry->ac = ac;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200853 __entry->txop = params->txop;
854 __entry->cw_max = params->cw_max;
855 __entry->cw_min = params->cw_min;
856 __entry->aifs = params->aifs;
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300857 __entry->uapsd = params->uapsd;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200858 ),
859
860 TP_printk(
Johannes Berga3304b02012-03-28 11:04:24 +0200861 LOCAL_PR_FMT VIF_PR_FMT " AC:%d",
862 LOCAL_PR_ARG, VIF_PR_ARG, __entry->ac
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200863 )
864);
865
Eliad Peller37a41b42011-09-21 14:06:11 +0300866DEFINE_EVENT(local_sdata_evt, drv_get_tsf,
867 TP_PROTO(struct ieee80211_local *local,
868 struct ieee80211_sub_if_data *sdata),
869 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200870);
871
872TRACE_EVENT(drv_set_tsf,
Eliad Peller37a41b42011-09-21 14:06:11 +0300873 TP_PROTO(struct ieee80211_local *local,
874 struct ieee80211_sub_if_data *sdata,
875 u64 tsf),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200876
Eliad Peller37a41b42011-09-21 14:06:11 +0300877 TP_ARGS(local, sdata, tsf),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200878
879 TP_STRUCT__entry(
880 LOCAL_ENTRY
Eliad Peller37a41b42011-09-21 14:06:11 +0300881 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200882 __field(u64, tsf)
883 ),
884
885 TP_fast_assign(
886 LOCAL_ASSIGN;
Eliad Peller37a41b42011-09-21 14:06:11 +0300887 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200888 __entry->tsf = tsf;
889 ),
890
891 TP_printk(
Eliad Peller37a41b42011-09-21 14:06:11 +0300892 LOCAL_PR_FMT VIF_PR_FMT " tsf:%llu",
893 LOCAL_PR_ARG, VIF_PR_ARG, (unsigned long long)__entry->tsf
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200894 )
895);
896
Eliad Peller37a41b42011-09-21 14:06:11 +0300897DEFINE_EVENT(local_sdata_evt, drv_reset_tsf,
898 TP_PROTO(struct ieee80211_local *local,
899 struct ieee80211_sub_if_data *sdata),
900 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200901);
902
Johannes Bergba99d932011-01-26 09:22:15 +0100903DEFINE_EVENT(local_only_evt, drv_tx_last_beacon,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200904 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100905 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200906);
907
908TRACE_EVENT(drv_ampdu_action,
909 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100910 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200911 enum ieee80211_ampdu_mlme_action action,
912 struct ieee80211_sta *sta, u16 tid,
Johannes Berg0b01f032011-01-18 13:51:05 +0100913 u16 *ssn, u8 buf_size),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200914
Johannes Berg0b01f032011-01-18 13:51:05 +0100915 TP_ARGS(local, sdata, action, sta, tid, ssn, buf_size),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200916
917 TP_STRUCT__entry(
918 LOCAL_ENTRY
919 STA_ENTRY
920 __field(u32, action)
921 __field(u16, tid)
922 __field(u16, ssn)
Johannes Berg0b01f032011-01-18 13:51:05 +0100923 __field(u8, buf_size)
Johannes Bergc951ad32009-11-16 12:00:38 +0100924 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200925 ),
926
927 TP_fast_assign(
928 LOCAL_ASSIGN;
Johannes Bergc951ad32009-11-16 12:00:38 +0100929 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200930 STA_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200931 __entry->action = action;
932 __entry->tid = tid;
Zhu Yi3092ad02010-01-26 15:58:57 +0800933 __entry->ssn = ssn ? *ssn : 0;
Johannes Berg0b01f032011-01-18 13:51:05 +0100934 __entry->buf_size = buf_size;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200935 ),
936
937 TP_printk(
Johannes Berg0b01f032011-01-18 13:51:05 +0100938 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " action:%d tid:%d buf:%d",
939 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->action,
940 __entry->tid, __entry->buf_size
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200941 )
942);
Johannes Berga80f7c02009-12-23 13:15:32 +0100943
John W. Linvillec466d4e2010-06-29 14:51:23 -0400944TRACE_EVENT(drv_get_survey,
945 TP_PROTO(struct ieee80211_local *local, int idx,
946 struct survey_info *survey),
947
948 TP_ARGS(local, idx, survey),
949
950 TP_STRUCT__entry(
951 LOCAL_ENTRY
952 __field(int, idx)
953 ),
954
955 TP_fast_assign(
956 LOCAL_ASSIGN;
957 __entry->idx = idx;
958 ),
959
960 TP_printk(
961 LOCAL_PR_FMT " idx:%d",
962 LOCAL_PR_ARG, __entry->idx
963 )
964);
965
Johannes Berga80f7c02009-12-23 13:15:32 +0100966TRACE_EVENT(drv_flush,
Johannes Berg39ecc012013-02-13 12:11:00 +0100967 TP_PROTO(struct ieee80211_local *local,
968 u32 queues, bool drop),
Johannes Berga80f7c02009-12-23 13:15:32 +0100969
Johannes Berg39ecc012013-02-13 12:11:00 +0100970 TP_ARGS(local, queues, drop),
Johannes Berga80f7c02009-12-23 13:15:32 +0100971
972 TP_STRUCT__entry(
973 LOCAL_ENTRY
974 __field(bool, drop)
Johannes Berg39ecc012013-02-13 12:11:00 +0100975 __field(u32, queues)
Johannes Berga80f7c02009-12-23 13:15:32 +0100976 ),
977
978 TP_fast_assign(
979 LOCAL_ASSIGN;
980 __entry->drop = drop;
Johannes Berg39ecc012013-02-13 12:11:00 +0100981 __entry->queues = queues;
Johannes Berga80f7c02009-12-23 13:15:32 +0100982 ),
983
984 TP_printk(
Johannes Berg39ecc012013-02-13 12:11:00 +0100985 LOCAL_PR_FMT " queues:0x%x drop:%d",
986 LOCAL_PR_ARG, __entry->queues, __entry->drop
Johannes Berga80f7c02009-12-23 13:15:32 +0100987 )
988);
Johannes Bergb5878a22010-04-07 16:48:40 +0200989
Johannes Berg5ce6e432010-05-11 16:20:57 +0200990TRACE_EVENT(drv_channel_switch,
991 TP_PROTO(struct ieee80211_local *local,
992 struct ieee80211_channel_switch *ch_switch),
993
994 TP_ARGS(local, ch_switch),
995
996 TP_STRUCT__entry(
997 LOCAL_ENTRY
998 __field(u64, timestamp)
999 __field(bool, block_tx)
1000 __field(u16, freq)
1001 __field(u8, count)
1002 ),
1003
1004 TP_fast_assign(
1005 LOCAL_ASSIGN;
1006 __entry->timestamp = ch_switch->timestamp;
1007 __entry->block_tx = ch_switch->block_tx;
1008 __entry->freq = ch_switch->channel->center_freq;
1009 __entry->count = ch_switch->count;
1010 ),
1011
1012 TP_printk(
1013 LOCAL_PR_FMT " new freq:%u count:%d",
1014 LOCAL_PR_ARG, __entry->freq, __entry->count
1015 )
1016);
1017
Bruno Randolf15d96752010-11-10 12:50:56 +09001018TRACE_EVENT(drv_set_antenna,
1019 TP_PROTO(struct ieee80211_local *local, u32 tx_ant, u32 rx_ant, int ret),
1020
1021 TP_ARGS(local, tx_ant, rx_ant, ret),
1022
1023 TP_STRUCT__entry(
1024 LOCAL_ENTRY
1025 __field(u32, tx_ant)
1026 __field(u32, rx_ant)
1027 __field(int, ret)
1028 ),
1029
1030 TP_fast_assign(
1031 LOCAL_ASSIGN;
1032 __entry->tx_ant = tx_ant;
1033 __entry->rx_ant = rx_ant;
1034 __entry->ret = ret;
1035 ),
1036
1037 TP_printk(
1038 LOCAL_PR_FMT " tx_ant:%d rx_ant:%d ret:%d",
1039 LOCAL_PR_ARG, __entry->tx_ant, __entry->rx_ant, __entry->ret
1040 )
1041);
1042
1043TRACE_EVENT(drv_get_antenna,
1044 TP_PROTO(struct ieee80211_local *local, u32 tx_ant, u32 rx_ant, int ret),
1045
1046 TP_ARGS(local, tx_ant, rx_ant, ret),
1047
1048 TP_STRUCT__entry(
1049 LOCAL_ENTRY
1050 __field(u32, tx_ant)
1051 __field(u32, rx_ant)
1052 __field(int, ret)
1053 ),
1054
1055 TP_fast_assign(
1056 LOCAL_ASSIGN;
1057 __entry->tx_ant = tx_ant;
1058 __entry->rx_ant = rx_ant;
1059 __entry->ret = ret;
1060 ),
1061
1062 TP_printk(
1063 LOCAL_PR_FMT " tx_ant:%d rx_ant:%d ret:%d",
1064 LOCAL_PR_ARG, __entry->tx_ant, __entry->rx_ant, __entry->ret
1065 )
1066);
1067
Johannes Berg21f83582010-12-18 17:20:47 +01001068TRACE_EVENT(drv_remain_on_channel,
Eliad Peller49884562012-11-19 17:05:09 +02001069 TP_PROTO(struct ieee80211_local *local,
1070 struct ieee80211_sub_if_data *sdata,
1071 struct ieee80211_channel *chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02001072 unsigned int duration,
1073 enum ieee80211_roc_type type),
Johannes Berg21f83582010-12-18 17:20:47 +01001074
Ilan Peerd339d5c2013-02-12 09:34:13 +02001075 TP_ARGS(local, sdata, chan, duration, type),
Johannes Berg21f83582010-12-18 17:20:47 +01001076
1077 TP_STRUCT__entry(
1078 LOCAL_ENTRY
Eliad Peller49884562012-11-19 17:05:09 +02001079 VIF_ENTRY
Johannes Berg21f83582010-12-18 17:20:47 +01001080 __field(int, center_freq)
Johannes Berg21f83582010-12-18 17:20:47 +01001081 __field(unsigned int, duration)
Ilan Peerd339d5c2013-02-12 09:34:13 +02001082 __field(u32, type)
Johannes Berg21f83582010-12-18 17:20:47 +01001083 ),
1084
1085 TP_fast_assign(
1086 LOCAL_ASSIGN;
Eliad Peller49884562012-11-19 17:05:09 +02001087 VIF_ASSIGN;
Johannes Berg21f83582010-12-18 17:20:47 +01001088 __entry->center_freq = chan->center_freq;
Johannes Berg21f83582010-12-18 17:20:47 +01001089 __entry->duration = duration;
Ilan Peerd339d5c2013-02-12 09:34:13 +02001090 __entry->type = type;
Johannes Berg21f83582010-12-18 17:20:47 +01001091 ),
1092
1093 TP_printk(
Ilan Peerd339d5c2013-02-12 09:34:13 +02001094 LOCAL_PR_FMT VIF_PR_FMT " freq:%dMHz duration:%dms type=%d",
Eliad Peller49884562012-11-19 17:05:09 +02001095 LOCAL_PR_ARG, VIF_PR_ARG,
Ilan Peerd339d5c2013-02-12 09:34:13 +02001096 __entry->center_freq, __entry->duration, __entry->type
Johannes Berg21f83582010-12-18 17:20:47 +01001097 )
1098);
1099
Johannes Bergba99d932011-01-26 09:22:15 +01001100DEFINE_EVENT(local_only_evt, drv_cancel_remain_on_channel,
Johannes Berg21f83582010-12-18 17:20:47 +01001101 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001102 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001103);
1104
John W. Linville38c09152011-03-07 16:19:18 -05001105TRACE_EVENT(drv_set_ringparam,
1106 TP_PROTO(struct ieee80211_local *local, u32 tx, u32 rx),
1107
1108 TP_ARGS(local, tx, rx),
1109
1110 TP_STRUCT__entry(
1111 LOCAL_ENTRY
1112 __field(u32, tx)
1113 __field(u32, rx)
1114 ),
1115
1116 TP_fast_assign(
1117 LOCAL_ASSIGN;
1118 __entry->tx = tx;
1119 __entry->rx = rx;
1120 ),
1121
1122 TP_printk(
1123 LOCAL_PR_FMT " tx:%d rx %d",
1124 LOCAL_PR_ARG, __entry->tx, __entry->rx
1125 )
1126);
1127
1128TRACE_EVENT(drv_get_ringparam,
1129 TP_PROTO(struct ieee80211_local *local, u32 *tx, u32 *tx_max,
1130 u32 *rx, u32 *rx_max),
1131
1132 TP_ARGS(local, tx, tx_max, rx, rx_max),
1133
1134 TP_STRUCT__entry(
1135 LOCAL_ENTRY
1136 __field(u32, tx)
1137 __field(u32, tx_max)
1138 __field(u32, rx)
1139 __field(u32, rx_max)
1140 ),
1141
1142 TP_fast_assign(
1143 LOCAL_ASSIGN;
1144 __entry->tx = *tx;
1145 __entry->tx_max = *tx_max;
1146 __entry->rx = *rx;
1147 __entry->rx_max = *rx_max;
1148 ),
1149
1150 TP_printk(
1151 LOCAL_PR_FMT " tx:%d tx_max %d rx %d rx_max %d",
1152 LOCAL_PR_ARG,
1153 __entry->tx, __entry->tx_max, __entry->rx, __entry->rx_max
1154 )
1155);
1156
Vivek Natarajane8306f92011-04-06 11:41:10 +05301157DEFINE_EVENT(local_only_evt, drv_tx_frames_pending,
1158 TP_PROTO(struct ieee80211_local *local),
1159 TP_ARGS(local)
1160);
1161
Johannes Berg5f16a432011-02-25 15:36:57 +01001162DEFINE_EVENT(local_only_evt, drv_offchannel_tx_cancel_wait,
1163 TP_PROTO(struct ieee80211_local *local),
1164 TP_ARGS(local)
1165);
1166
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05301167TRACE_EVENT(drv_set_bitrate_mask,
1168 TP_PROTO(struct ieee80211_local *local,
1169 struct ieee80211_sub_if_data *sdata,
1170 const struct cfg80211_bitrate_mask *mask),
1171
1172 TP_ARGS(local, sdata, mask),
1173
1174 TP_STRUCT__entry(
1175 LOCAL_ENTRY
1176 VIF_ENTRY
1177 __field(u32, legacy_2g)
1178 __field(u32, legacy_5g)
1179 ),
1180
1181 TP_fast_assign(
1182 LOCAL_ASSIGN;
1183 VIF_ASSIGN;
1184 __entry->legacy_2g = mask->control[IEEE80211_BAND_2GHZ].legacy;
1185 __entry->legacy_5g = mask->control[IEEE80211_BAND_5GHZ].legacy;
1186 ),
1187
1188 TP_printk(
1189 LOCAL_PR_FMT VIF_PR_FMT " 2G Mask:0x%x 5G Mask:0x%x",
1190 LOCAL_PR_ARG, VIF_PR_ARG, __entry->legacy_2g, __entry->legacy_5g
1191 )
1192);
1193
Johannes Bergc68f4b82011-07-05 16:35:41 +02001194TRACE_EVENT(drv_set_rekey_data,
1195 TP_PROTO(struct ieee80211_local *local,
1196 struct ieee80211_sub_if_data *sdata,
1197 struct cfg80211_gtk_rekey_data *data),
1198
1199 TP_ARGS(local, sdata, data),
1200
1201 TP_STRUCT__entry(
1202 LOCAL_ENTRY
1203 VIF_ENTRY
1204 __array(u8, kek, NL80211_KEK_LEN)
1205 __array(u8, kck, NL80211_KCK_LEN)
1206 __array(u8, replay_ctr, NL80211_REPLAY_CTR_LEN)
1207 ),
1208
1209 TP_fast_assign(
1210 LOCAL_ASSIGN;
1211 VIF_ASSIGN;
1212 memcpy(__entry->kek, data->kek, NL80211_KEK_LEN);
1213 memcpy(__entry->kck, data->kck, NL80211_KCK_LEN);
1214 memcpy(__entry->replay_ctr, data->replay_ctr,
1215 NL80211_REPLAY_CTR_LEN);
1216 ),
1217
1218 TP_printk(LOCAL_PR_FMT VIF_PR_FMT,
1219 LOCAL_PR_ARG, VIF_PR_ARG)
1220);
1221
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001222TRACE_EVENT(drv_rssi_callback,
1223 TP_PROTO(struct ieee80211_local *local,
Emmanuel Grumbach887da912013-01-20 17:32:41 +02001224 struct ieee80211_sub_if_data *sdata,
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001225 enum ieee80211_rssi_event rssi_event),
1226
Emmanuel Grumbach887da912013-01-20 17:32:41 +02001227 TP_ARGS(local, sdata, rssi_event),
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001228
1229 TP_STRUCT__entry(
1230 LOCAL_ENTRY
Emmanuel Grumbach887da912013-01-20 17:32:41 +02001231 VIF_ENTRY
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001232 __field(u32, rssi_event)
1233 ),
1234
1235 TP_fast_assign(
1236 LOCAL_ASSIGN;
Emmanuel Grumbach887da912013-01-20 17:32:41 +02001237 VIF_ASSIGN;
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001238 __entry->rssi_event = rssi_event;
1239 ),
1240
1241 TP_printk(
Emmanuel Grumbach887da912013-01-20 17:32:41 +02001242 LOCAL_PR_FMT VIF_PR_FMT " rssi_event:%d",
1243 LOCAL_PR_ARG, VIF_PR_ARG, __entry->rssi_event
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001244 )
1245);
1246
Johannes Berg40b96402011-09-29 16:04:38 +02001247DECLARE_EVENT_CLASS(release_evt,
Johannes Berg4049e092011-09-29 16:04:32 +02001248 TP_PROTO(struct ieee80211_local *local,
1249 struct ieee80211_sta *sta,
1250 u16 tids, int num_frames,
1251 enum ieee80211_frame_release_type reason,
1252 bool more_data),
1253
1254 TP_ARGS(local, sta, tids, num_frames, reason, more_data),
1255
1256 TP_STRUCT__entry(
1257 LOCAL_ENTRY
1258 STA_ENTRY
1259 __field(u16, tids)
1260 __field(int, num_frames)
1261 __field(int, reason)
1262 __field(bool, more_data)
1263 ),
1264
1265 TP_fast_assign(
1266 LOCAL_ASSIGN;
1267 STA_ASSIGN;
1268 __entry->tids = tids;
1269 __entry->num_frames = num_frames;
1270 __entry->reason = reason;
1271 __entry->more_data = more_data;
1272 ),
1273
1274 TP_printk(
1275 LOCAL_PR_FMT STA_PR_FMT
1276 " TIDs:0x%.4x frames:%d reason:%d more:%d",
1277 LOCAL_PR_ARG, STA_PR_ARG, __entry->tids, __entry->num_frames,
1278 __entry->reason, __entry->more_data
1279 )
1280);
1281
Johannes Berg40b96402011-09-29 16:04:38 +02001282DEFINE_EVENT(release_evt, drv_release_buffered_frames,
1283 TP_PROTO(struct ieee80211_local *local,
1284 struct ieee80211_sta *sta,
1285 u16 tids, int num_frames,
1286 enum ieee80211_frame_release_type reason,
1287 bool more_data),
1288
1289 TP_ARGS(local, sta, tids, num_frames, reason, more_data)
1290);
1291
1292DEFINE_EVENT(release_evt, drv_allow_buffered_frames,
1293 TP_PROTO(struct ieee80211_local *local,
1294 struct ieee80211_sta *sta,
1295 u16 tids, int num_frames,
1296 enum ieee80211_frame_release_type reason,
1297 bool more_data),
1298
1299 TP_ARGS(local, sta, tids, num_frames, reason, more_data)
1300);
1301
Victor Goldenshtein66572cf2012-06-21 10:56:46 +03001302TRACE_EVENT(drv_get_rssi,
1303 TP_PROTO(struct ieee80211_local *local, struct ieee80211_sta *sta,
1304 s8 rssi, int ret),
1305
1306 TP_ARGS(local, sta, rssi, ret),
1307
1308 TP_STRUCT__entry(
1309 LOCAL_ENTRY
1310 STA_ENTRY
1311 __field(s8, rssi)
1312 __field(int, ret)
1313 ),
1314
1315 TP_fast_assign(
1316 LOCAL_ASSIGN;
1317 STA_ASSIGN;
1318 __entry->rssi = rssi;
1319 __entry->ret = ret;
1320 ),
1321
1322 TP_printk(
1323 LOCAL_PR_FMT STA_PR_FMT " rssi:%d ret:%d",
1324 LOCAL_PR_ARG, STA_PR_ARG, __entry->rssi, __entry->ret
1325 )
1326);
1327
Johannes Berga1845fc2012-06-27 13:18:36 +02001328DEFINE_EVENT(local_sdata_evt, drv_mgd_prepare_tx,
1329 TP_PROTO(struct ieee80211_local *local,
1330 struct ieee80211_sub_if_data *sdata),
1331
1332 TP_ARGS(local, sdata)
1333);
1334
Michal Kaziorc3645ea2012-06-26 14:37:17 +02001335DECLARE_EVENT_CLASS(local_chanctx,
1336 TP_PROTO(struct ieee80211_local *local,
1337 struct ieee80211_chanctx *ctx),
1338
1339 TP_ARGS(local, ctx),
1340
1341 TP_STRUCT__entry(
1342 LOCAL_ENTRY
1343 CHANCTX_ENTRY
1344 ),
1345
1346 TP_fast_assign(
1347 LOCAL_ASSIGN;
1348 CHANCTX_ASSIGN;
1349 ),
1350
1351 TP_printk(
1352 LOCAL_PR_FMT CHANCTX_PR_FMT,
1353 LOCAL_PR_ARG, CHANCTX_PR_ARG
1354 )
1355);
1356
1357DEFINE_EVENT(local_chanctx, drv_add_chanctx,
1358 TP_PROTO(struct ieee80211_local *local,
1359 struct ieee80211_chanctx *ctx),
1360 TP_ARGS(local, ctx)
1361);
1362
1363DEFINE_EVENT(local_chanctx, drv_remove_chanctx,
1364 TP_PROTO(struct ieee80211_local *local,
1365 struct ieee80211_chanctx *ctx),
1366 TP_ARGS(local, ctx)
1367);
1368
1369TRACE_EVENT(drv_change_chanctx,
1370 TP_PROTO(struct ieee80211_local *local,
1371 struct ieee80211_chanctx *ctx,
1372 u32 changed),
1373
1374 TP_ARGS(local, ctx, changed),
1375
1376 TP_STRUCT__entry(
1377 LOCAL_ENTRY
1378 CHANCTX_ENTRY
1379 __field(u32, changed)
1380 ),
1381
1382 TP_fast_assign(
1383 LOCAL_ASSIGN;
1384 CHANCTX_ASSIGN;
1385 __entry->changed = changed;
1386 ),
1387
1388 TP_printk(
1389 LOCAL_PR_FMT CHANCTX_PR_FMT " changed:%#x",
1390 LOCAL_PR_ARG, CHANCTX_PR_ARG, __entry->changed
1391 )
1392);
1393
1394DECLARE_EVENT_CLASS(local_sdata_chanctx,
1395 TP_PROTO(struct ieee80211_local *local,
1396 struct ieee80211_sub_if_data *sdata,
1397 struct ieee80211_chanctx *ctx),
1398
1399 TP_ARGS(local, sdata, ctx),
1400
1401 TP_STRUCT__entry(
1402 LOCAL_ENTRY
1403 VIF_ENTRY
1404 CHANCTX_ENTRY
1405 ),
1406
1407 TP_fast_assign(
1408 LOCAL_ASSIGN;
1409 VIF_ASSIGN;
1410 CHANCTX_ASSIGN;
1411 ),
1412
1413 TP_printk(
1414 LOCAL_PR_FMT VIF_PR_FMT CHANCTX_PR_FMT,
1415 LOCAL_PR_ARG, VIF_PR_ARG, CHANCTX_PR_ARG
1416 )
1417);
1418
1419DEFINE_EVENT(local_sdata_chanctx, drv_assign_vif_chanctx,
1420 TP_PROTO(struct ieee80211_local *local,
1421 struct ieee80211_sub_if_data *sdata,
1422 struct ieee80211_chanctx *ctx),
1423 TP_ARGS(local, sdata, ctx)
1424);
1425
1426DEFINE_EVENT(local_sdata_chanctx, drv_unassign_vif_chanctx,
1427 TP_PROTO(struct ieee80211_local *local,
1428 struct ieee80211_sub_if_data *sdata,
1429 struct ieee80211_chanctx *ctx),
1430 TP_ARGS(local, sdata, ctx)
1431);
1432
Johannes Berg10416382012-10-19 15:44:42 +02001433TRACE_EVENT(drv_start_ap,
1434 TP_PROTO(struct ieee80211_local *local,
1435 struct ieee80211_sub_if_data *sdata,
1436 struct ieee80211_bss_conf *info),
1437
1438 TP_ARGS(local, sdata, info),
1439
1440 TP_STRUCT__entry(
1441 LOCAL_ENTRY
1442 VIF_ENTRY
1443 __field(u8, dtimper)
1444 __field(u16, bcnint)
1445 __dynamic_array(u8, ssid, info->ssid_len);
1446 __field(bool, hidden_ssid);
1447 ),
1448
1449 TP_fast_assign(
1450 LOCAL_ASSIGN;
1451 VIF_ASSIGN;
1452 __entry->dtimper = info->dtim_period;
1453 __entry->bcnint = info->beacon_int;
1454 memcpy(__get_dynamic_array(ssid), info->ssid, info->ssid_len);
1455 __entry->hidden_ssid = info->hidden_ssid;
1456 ),
1457
1458 TP_printk(
1459 LOCAL_PR_FMT VIF_PR_FMT,
1460 LOCAL_PR_ARG, VIF_PR_ARG
1461 )
1462);
1463
1464DEFINE_EVENT(local_sdata_evt, drv_stop_ap,
1465 TP_PROTO(struct ieee80211_local *local,
1466 struct ieee80211_sub_if_data *sdata),
1467 TP_ARGS(local, sdata)
1468);
1469
Johannes Berg9214ad72012-11-06 19:18:13 +01001470DEFINE_EVENT(local_only_evt, drv_restart_complete,
1471 TP_PROTO(struct ieee80211_local *local),
1472 TP_ARGS(local)
1473);
1474
Johannes Berga65240c2013-01-14 15:14:34 +01001475#if IS_ENABLED(CONFIG_IPV6)
1476DEFINE_EVENT(local_sdata_evt, drv_ipv6_addr_change,
1477 TP_PROTO(struct ieee80211_local *local,
1478 struct ieee80211_sub_if_data *sdata),
1479 TP_ARGS(local, sdata)
1480);
1481#endif
1482
Johannes Bergb5878a22010-04-07 16:48:40 +02001483/*
1484 * Tracing for API calls that drivers call.
1485 */
1486
1487TRACE_EVENT(api_start_tx_ba_session,
1488 TP_PROTO(struct ieee80211_sta *sta, u16 tid),
1489
1490 TP_ARGS(sta, tid),
1491
1492 TP_STRUCT__entry(
1493 STA_ENTRY
1494 __field(u16, tid)
1495 ),
1496
1497 TP_fast_assign(
1498 STA_ASSIGN;
1499 __entry->tid = tid;
1500 ),
1501
1502 TP_printk(
1503 STA_PR_FMT " tid:%d",
1504 STA_PR_ARG, __entry->tid
1505 )
1506);
1507
1508TRACE_EVENT(api_start_tx_ba_cb,
1509 TP_PROTO(struct ieee80211_sub_if_data *sdata, const u8 *ra, u16 tid),
1510
1511 TP_ARGS(sdata, ra, tid),
1512
1513 TP_STRUCT__entry(
1514 VIF_ENTRY
1515 __array(u8, ra, ETH_ALEN)
1516 __field(u16, tid)
1517 ),
1518
1519 TP_fast_assign(
1520 VIF_ASSIGN;
1521 memcpy(__entry->ra, ra, ETH_ALEN);
1522 __entry->tid = tid;
1523 ),
1524
1525 TP_printk(
1526 VIF_PR_FMT " ra:%pM tid:%d",
1527 VIF_PR_ARG, __entry->ra, __entry->tid
1528 )
1529);
1530
1531TRACE_EVENT(api_stop_tx_ba_session,
Johannes Berg6a8579d2010-05-27 14:41:07 +02001532 TP_PROTO(struct ieee80211_sta *sta, u16 tid),
Johannes Bergb5878a22010-04-07 16:48:40 +02001533
Johannes Berg6a8579d2010-05-27 14:41:07 +02001534 TP_ARGS(sta, tid),
Johannes Bergb5878a22010-04-07 16:48:40 +02001535
1536 TP_STRUCT__entry(
1537 STA_ENTRY
1538 __field(u16, tid)
Johannes Bergb5878a22010-04-07 16:48:40 +02001539 ),
1540
1541 TP_fast_assign(
1542 STA_ASSIGN;
1543 __entry->tid = tid;
Johannes Bergb5878a22010-04-07 16:48:40 +02001544 ),
1545
1546 TP_printk(
Johannes Berg6a8579d2010-05-27 14:41:07 +02001547 STA_PR_FMT " tid:%d",
1548 STA_PR_ARG, __entry->tid
Johannes Bergb5878a22010-04-07 16:48:40 +02001549 )
1550);
1551
1552TRACE_EVENT(api_stop_tx_ba_cb,
1553 TP_PROTO(struct ieee80211_sub_if_data *sdata, const u8 *ra, u16 tid),
1554
1555 TP_ARGS(sdata, ra, tid),
1556
1557 TP_STRUCT__entry(
1558 VIF_ENTRY
1559 __array(u8, ra, ETH_ALEN)
1560 __field(u16, tid)
1561 ),
1562
1563 TP_fast_assign(
1564 VIF_ASSIGN;
1565 memcpy(__entry->ra, ra, ETH_ALEN);
1566 __entry->tid = tid;
1567 ),
1568
1569 TP_printk(
1570 VIF_PR_FMT " ra:%pM tid:%d",
1571 VIF_PR_ARG, __entry->ra, __entry->tid
1572 )
1573);
1574
Johannes Bergba99d932011-01-26 09:22:15 +01001575DEFINE_EVENT(local_only_evt, api_restart_hw,
Johannes Bergb5878a22010-04-07 16:48:40 +02001576 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001577 TP_ARGS(local)
Johannes Bergb5878a22010-04-07 16:48:40 +02001578);
1579
1580TRACE_EVENT(api_beacon_loss,
1581 TP_PROTO(struct ieee80211_sub_if_data *sdata),
1582
1583 TP_ARGS(sdata),
1584
1585 TP_STRUCT__entry(
1586 VIF_ENTRY
1587 ),
1588
1589 TP_fast_assign(
1590 VIF_ASSIGN;
1591 ),
1592
1593 TP_printk(
1594 VIF_PR_FMT,
1595 VIF_PR_ARG
1596 )
1597);
1598
1599TRACE_EVENT(api_connection_loss,
1600 TP_PROTO(struct ieee80211_sub_if_data *sdata),
1601
1602 TP_ARGS(sdata),
1603
1604 TP_STRUCT__entry(
1605 VIF_ENTRY
1606 ),
1607
1608 TP_fast_assign(
1609 VIF_ASSIGN;
1610 ),
1611
1612 TP_printk(
1613 VIF_PR_FMT,
1614 VIF_PR_ARG
1615 )
1616);
1617
1618TRACE_EVENT(api_cqm_rssi_notify,
1619 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1620 enum nl80211_cqm_rssi_threshold_event rssi_event),
1621
1622 TP_ARGS(sdata, rssi_event),
1623
1624 TP_STRUCT__entry(
1625 VIF_ENTRY
1626 __field(u32, rssi_event)
1627 ),
1628
1629 TP_fast_assign(
1630 VIF_ASSIGN;
1631 __entry->rssi_event = rssi_event;
1632 ),
1633
1634 TP_printk(
1635 VIF_PR_FMT " event:%d",
1636 VIF_PR_ARG, __entry->rssi_event
1637 )
1638);
1639
1640TRACE_EVENT(api_scan_completed,
1641 TP_PROTO(struct ieee80211_local *local, bool aborted),
1642
1643 TP_ARGS(local, aborted),
1644
1645 TP_STRUCT__entry(
1646 LOCAL_ENTRY
1647 __field(bool, aborted)
1648 ),
1649
1650 TP_fast_assign(
1651 LOCAL_ASSIGN;
1652 __entry->aborted = aborted;
1653 ),
1654
1655 TP_printk(
1656 LOCAL_PR_FMT " aborted:%d",
1657 LOCAL_PR_ARG, __entry->aborted
1658 )
1659);
1660
Luciano Coelho79f460c2011-05-11 17:09:36 +03001661TRACE_EVENT(api_sched_scan_results,
1662 TP_PROTO(struct ieee80211_local *local),
1663
1664 TP_ARGS(local),
1665
1666 TP_STRUCT__entry(
1667 LOCAL_ENTRY
1668 ),
1669
1670 TP_fast_assign(
1671 LOCAL_ASSIGN;
1672 ),
1673
1674 TP_printk(
1675 LOCAL_PR_FMT, LOCAL_PR_ARG
1676 )
1677);
1678
1679TRACE_EVENT(api_sched_scan_stopped,
1680 TP_PROTO(struct ieee80211_local *local),
1681
1682 TP_ARGS(local),
1683
1684 TP_STRUCT__entry(
1685 LOCAL_ENTRY
1686 ),
1687
1688 TP_fast_assign(
1689 LOCAL_ASSIGN;
1690 ),
1691
1692 TP_printk(
1693 LOCAL_PR_FMT, LOCAL_PR_ARG
1694 )
1695);
1696
Johannes Bergb5878a22010-04-07 16:48:40 +02001697TRACE_EVENT(api_sta_block_awake,
1698 TP_PROTO(struct ieee80211_local *local,
1699 struct ieee80211_sta *sta, bool block),
1700
1701 TP_ARGS(local, sta, block),
1702
1703 TP_STRUCT__entry(
1704 LOCAL_ENTRY
1705 STA_ENTRY
1706 __field(bool, block)
1707 ),
1708
1709 TP_fast_assign(
1710 LOCAL_ASSIGN;
1711 STA_ASSIGN;
1712 __entry->block = block;
1713 ),
1714
1715 TP_printk(
1716 LOCAL_PR_FMT STA_PR_FMT " block:%d",
Seth Forshee15ac7c42013-02-15 13:15:48 -06001717 LOCAL_PR_ARG, STA_PR_ARG, __entry->block
Johannes Bergb5878a22010-04-07 16:48:40 +02001718 )
1719);
1720
Johannes Berg5ce6e432010-05-11 16:20:57 +02001721TRACE_EVENT(api_chswitch_done,
1722 TP_PROTO(struct ieee80211_sub_if_data *sdata, bool success),
1723
1724 TP_ARGS(sdata, success),
1725
1726 TP_STRUCT__entry(
1727 VIF_ENTRY
1728 __field(bool, success)
1729 ),
1730
1731 TP_fast_assign(
1732 VIF_ASSIGN;
1733 __entry->success = success;
1734 ),
1735
1736 TP_printk(
1737 VIF_PR_FMT " success=%d",
1738 VIF_PR_ARG, __entry->success
1739 )
1740);
1741
Johannes Bergba99d932011-01-26 09:22:15 +01001742DEFINE_EVENT(local_only_evt, api_ready_on_channel,
Johannes Berg21f83582010-12-18 17:20:47 +01001743 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001744 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001745);
1746
Johannes Bergba99d932011-01-26 09:22:15 +01001747DEFINE_EVENT(local_only_evt, api_remain_on_channel_expired,
Johannes Berg21f83582010-12-18 17:20:47 +01001748 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001749 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001750);
1751
Johannes Bergc68f4b82011-07-05 16:35:41 +02001752TRACE_EVENT(api_gtk_rekey_notify,
1753 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1754 const u8 *bssid, const u8 *replay_ctr),
1755
1756 TP_ARGS(sdata, bssid, replay_ctr),
1757
1758 TP_STRUCT__entry(
1759 VIF_ENTRY
1760 __array(u8, bssid, ETH_ALEN)
1761 __array(u8, replay_ctr, NL80211_REPLAY_CTR_LEN)
1762 ),
1763
1764 TP_fast_assign(
1765 VIF_ASSIGN;
1766 memcpy(__entry->bssid, bssid, ETH_ALEN);
1767 memcpy(__entry->replay_ctr, replay_ctr, NL80211_REPLAY_CTR_LEN);
1768 ),
1769
1770 TP_printk(VIF_PR_FMT, VIF_PR_ARG)
1771);
1772
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001773TRACE_EVENT(api_enable_rssi_reports,
1774 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1775 int rssi_min_thold, int rssi_max_thold),
1776
1777 TP_ARGS(sdata, rssi_min_thold, rssi_max_thold),
1778
1779 TP_STRUCT__entry(
1780 VIF_ENTRY
1781 __field(int, rssi_min_thold)
1782 __field(int, rssi_max_thold)
1783 ),
1784
1785 TP_fast_assign(
1786 VIF_ASSIGN;
1787 __entry->rssi_min_thold = rssi_min_thold;
1788 __entry->rssi_max_thold = rssi_max_thold;
1789 ),
1790
1791 TP_printk(
1792 VIF_PR_FMT " rssi_min_thold =%d, rssi_max_thold = %d",
1793 VIF_PR_ARG, __entry->rssi_min_thold, __entry->rssi_max_thold
1794 )
1795);
1796
Johannes Berg37fbd902011-09-29 16:04:39 +02001797TRACE_EVENT(api_eosp,
1798 TP_PROTO(struct ieee80211_local *local,
1799 struct ieee80211_sta *sta),
1800
1801 TP_ARGS(local, sta),
1802
1803 TP_STRUCT__entry(
1804 LOCAL_ENTRY
1805 STA_ENTRY
1806 ),
1807
1808 TP_fast_assign(
1809 LOCAL_ASSIGN;
1810 STA_ASSIGN;
1811 ),
1812
1813 TP_printk(
1814 LOCAL_PR_FMT STA_PR_FMT,
Seth Forshee15ac7c42013-02-15 13:15:48 -06001815 LOCAL_PR_ARG, STA_PR_ARG
Johannes Berg37fbd902011-09-29 16:04:39 +02001816 )
1817);
1818
Johannes Bergb5878a22010-04-07 16:48:40 +02001819/*
1820 * Tracing for internal functions
1821 * (which may also be called in response to driver calls)
1822 */
1823
1824TRACE_EVENT(wake_queue,
1825 TP_PROTO(struct ieee80211_local *local, u16 queue,
1826 enum queue_stop_reason reason),
1827
1828 TP_ARGS(local, queue, reason),
1829
1830 TP_STRUCT__entry(
1831 LOCAL_ENTRY
1832 __field(u16, queue)
1833 __field(u32, reason)
1834 ),
1835
1836 TP_fast_assign(
1837 LOCAL_ASSIGN;
1838 __entry->queue = queue;
1839 __entry->reason = reason;
1840 ),
1841
1842 TP_printk(
1843 LOCAL_PR_FMT " queue:%d, reason:%d",
1844 LOCAL_PR_ARG, __entry->queue, __entry->reason
1845 )
1846);
1847
1848TRACE_EVENT(stop_queue,
1849 TP_PROTO(struct ieee80211_local *local, u16 queue,
1850 enum queue_stop_reason reason),
1851
1852 TP_ARGS(local, queue, reason),
1853
1854 TP_STRUCT__entry(
1855 LOCAL_ENTRY
1856 __field(u16, queue)
1857 __field(u32, reason)
1858 ),
1859
1860 TP_fast_assign(
1861 LOCAL_ASSIGN;
1862 __entry->queue = queue;
1863 __entry->reason = reason;
1864 ),
1865
1866 TP_printk(
1867 LOCAL_PR_FMT " queue:%d, reason:%d",
1868 LOCAL_PR_ARG, __entry->queue, __entry->reason
1869 )
1870);
Johannes Berg3fae0272012-06-22 13:36:25 +02001871
Yoni Divinskyde5fad82012-05-30 11:36:39 +03001872TRACE_EVENT(drv_set_default_unicast_key,
1873 TP_PROTO(struct ieee80211_local *local,
1874 struct ieee80211_sub_if_data *sdata,
1875 int key_idx),
1876
1877 TP_ARGS(local, sdata, key_idx),
1878
1879 TP_STRUCT__entry(
1880 LOCAL_ENTRY
1881 VIF_ENTRY
1882 __field(int, key_idx)
1883 ),
1884
1885 TP_fast_assign(
1886 LOCAL_ASSIGN;
1887 VIF_ASSIGN;
1888 __entry->key_idx = key_idx;
1889 ),
1890
1891 TP_printk(LOCAL_PR_FMT VIF_PR_FMT " key_idx:%d",
1892 LOCAL_PR_ARG, VIF_PR_ARG, __entry->key_idx)
1893);
1894
Simon Wunderlich164eb022013-02-08 18:16:20 +01001895TRACE_EVENT(api_radar_detected,
1896 TP_PROTO(struct ieee80211_local *local),
1897
1898 TP_ARGS(local),
1899
1900 TP_STRUCT__entry(
1901 LOCAL_ENTRY
1902 ),
1903
1904 TP_fast_assign(
1905 LOCAL_ASSIGN;
1906 ),
1907
1908 TP_printk(
1909 LOCAL_PR_FMT " radar detected",
1910 LOCAL_PR_ARG
1911 )
1912);
1913
Johannes Berg3fae0272012-06-22 13:36:25 +02001914#ifdef CONFIG_MAC80211_MESSAGE_TRACING
1915#undef TRACE_SYSTEM
1916#define TRACE_SYSTEM mac80211_msg
1917
1918#define MAX_MSG_LEN 100
1919
1920DECLARE_EVENT_CLASS(mac80211_msg_event,
1921 TP_PROTO(struct va_format *vaf),
1922
1923 TP_ARGS(vaf),
1924
1925 TP_STRUCT__entry(
1926 __dynamic_array(char, msg, MAX_MSG_LEN)
1927 ),
1928
1929 TP_fast_assign(
1930 WARN_ON_ONCE(vsnprintf(__get_dynamic_array(msg),
1931 MAX_MSG_LEN, vaf->fmt,
1932 *vaf->va) >= MAX_MSG_LEN);
1933 ),
1934
1935 TP_printk("%s", __get_str(msg))
1936);
1937
1938DEFINE_EVENT(mac80211_msg_event, mac80211_info,
1939 TP_PROTO(struct va_format *vaf),
1940 TP_ARGS(vaf)
1941);
1942DEFINE_EVENT(mac80211_msg_event, mac80211_dbg,
1943 TP_PROTO(struct va_format *vaf),
1944 TP_ARGS(vaf)
1945);
1946DEFINE_EVENT(mac80211_msg_event, mac80211_err,
1947 TP_PROTO(struct va_format *vaf),
1948 TP_ARGS(vaf)
1949);
1950#endif
1951
Christian Lamparterf7428802009-07-19 23:21:07 +02001952#endif /* !__MAC80211_DRIVER_TRACE || TRACE_HEADER_MULTI_READ */
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02001953
1954#undef TRACE_INCLUDE_PATH
1955#define TRACE_INCLUDE_PATH .
1956#undef TRACE_INCLUDE_FILE
Johannes Berg011ad0e2012-06-22 12:55:52 +02001957#define TRACE_INCLUDE_FILE trace
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02001958#include <trace/define_trace.h>