blob: bc28346ba2078dcf204994292d64db3c25552cd6 [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
Michal Kaziorc3645ea2012-06-26 14:37:17 +020031#define CHANCTX_ENTRY __field(int, freq) \
Johannes Berg04ecd252012-09-11 14:34:12 +020032 __field(int, chantype) \
33 __field(u8, rx_chains_static) \
34 __field(u8, rx_chains_dynamic)
Michal Kaziorc3645ea2012-06-26 14:37:17 +020035#define CHANCTX_ASSIGN __entry->freq = ctx->conf.channel->center_freq; \
Johannes Berg04ecd252012-09-11 14:34:12 +020036 __entry->chantype = ctx->conf.channel_type; \
37 __entry->rx_chains_static = ctx->conf.rx_chains_static; \
38 __entry->rx_chains_dynamic = ctx->conf.rx_chains_dynamic
39#define CHANCTX_PR_FMT " freq:%d MHz chantype:%d chains:%d/%d"
40#define CHANCTX_PR_ARG __entry->freq, __entry->chantype, \
41 __entry->rx_chains_static, __entry->rx_chains_dynamic
Michal Kaziorc3645ea2012-06-26 14:37:17 +020042
43
44
Johannes Bergb5878a22010-04-07 16:48:40 +020045/*
46 * Tracing for driver callbacks.
47 */
48
Johannes Bergba99d932011-01-26 09:22:15 +010049DECLARE_EVENT_CLASS(local_only_evt,
Johannes Berg4efc76b2010-06-10 10:56:20 +020050 TP_PROTO(struct ieee80211_local *local),
51 TP_ARGS(local),
52 TP_STRUCT__entry(
53 LOCAL_ENTRY
54 ),
55 TP_fast_assign(
56 LOCAL_ASSIGN;
57 ),
58 TP_printk(LOCAL_PR_FMT, LOCAL_PR_ARG)
59);
60
Luciano Coelho92ddc112011-05-09 14:40:06 +030061DECLARE_EVENT_CLASS(local_sdata_addr_evt,
62 TP_PROTO(struct ieee80211_local *local,
63 struct ieee80211_sub_if_data *sdata),
64 TP_ARGS(local, sdata),
65
66 TP_STRUCT__entry(
67 LOCAL_ENTRY
68 VIF_ENTRY
69 __array(char, addr, 6)
70 ),
71
72 TP_fast_assign(
73 LOCAL_ASSIGN;
74 VIF_ASSIGN;
75 memcpy(__entry->addr, sdata->vif.addr, 6);
76 ),
77
78 TP_printk(
79 LOCAL_PR_FMT VIF_PR_FMT " addr:%pM",
80 LOCAL_PR_ARG, VIF_PR_ARG, __entry->addr
81 )
82);
83
84DECLARE_EVENT_CLASS(local_u32_evt,
85 TP_PROTO(struct ieee80211_local *local, u32 value),
86 TP_ARGS(local, value),
87
88 TP_STRUCT__entry(
89 LOCAL_ENTRY
90 __field(u32, value)
91 ),
92
93 TP_fast_assign(
94 LOCAL_ASSIGN;
95 __entry->value = value;
96 ),
97
98 TP_printk(
99 LOCAL_PR_FMT " value:%d",
100 LOCAL_PR_ARG, __entry->value
101 )
102);
103
Luciano Coelho79f460c2011-05-11 17:09:36 +0300104DECLARE_EVENT_CLASS(local_sdata_evt,
105 TP_PROTO(struct ieee80211_local *local,
106 struct ieee80211_sub_if_data *sdata),
107 TP_ARGS(local, sdata),
108
109 TP_STRUCT__entry(
110 LOCAL_ENTRY
111 VIF_ENTRY
112 ),
113
114 TP_fast_assign(
115 LOCAL_ASSIGN;
116 VIF_ASSIGN;
117 ),
118
119 TP_printk(
120 LOCAL_PR_FMT VIF_PR_FMT,
121 LOCAL_PR_ARG, VIF_PR_ARG
122 )
123);
124
Johannes Bergba99d932011-01-26 09:22:15 +0100125DEFINE_EVENT(local_only_evt, drv_return_void,
126 TP_PROTO(struct ieee80211_local *local),
127 TP_ARGS(local)
128);
129
Johannes Berg4efc76b2010-06-10 10:56:20 +0200130TRACE_EVENT(drv_return_int,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200131 TP_PROTO(struct ieee80211_local *local, int ret),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200132 TP_ARGS(local, ret),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200133 TP_STRUCT__entry(
134 LOCAL_ENTRY
135 __field(int, ret)
136 ),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200137 TP_fast_assign(
138 LOCAL_ASSIGN;
139 __entry->ret = ret;
140 ),
Johannes Berg4efc76b2010-06-10 10:56:20 +0200141 TP_printk(LOCAL_PR_FMT " - %d", LOCAL_PR_ARG, __entry->ret)
142);
143
Vivek Natarajane8306f92011-04-06 11:41:10 +0530144TRACE_EVENT(drv_return_bool,
145 TP_PROTO(struct ieee80211_local *local, bool ret),
146 TP_ARGS(local, ret),
147 TP_STRUCT__entry(
148 LOCAL_ENTRY
149 __field(bool, ret)
150 ),
151 TP_fast_assign(
152 LOCAL_ASSIGN;
153 __entry->ret = ret;
154 ),
155 TP_printk(LOCAL_PR_FMT " - %s", LOCAL_PR_ARG, (__entry->ret) ?
156 "true" : "false")
157);
158
Johannes Berg4efc76b2010-06-10 10:56:20 +0200159TRACE_EVENT(drv_return_u64,
160 TP_PROTO(struct ieee80211_local *local, u64 ret),
161 TP_ARGS(local, ret),
162 TP_STRUCT__entry(
163 LOCAL_ENTRY
164 __field(u64, ret)
165 ),
166 TP_fast_assign(
167 LOCAL_ASSIGN;
168 __entry->ret = ret;
169 ),
170 TP_printk(LOCAL_PR_FMT " - %llu", LOCAL_PR_ARG, __entry->ret)
171);
172
Johannes Bergba99d932011-01-26 09:22:15 +0100173DEFINE_EVENT(local_only_evt, drv_start,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200174 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100175 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200176);
177
Ben Greeare3521142012-04-23 12:50:31 -0700178DEFINE_EVENT(local_u32_evt, drv_get_et_strings,
179 TP_PROTO(struct ieee80211_local *local, u32 sset),
180 TP_ARGS(local, sset)
181);
182
183DEFINE_EVENT(local_u32_evt, drv_get_et_sset_count,
184 TP_PROTO(struct ieee80211_local *local, u32 sset),
185 TP_ARGS(local, sset)
186);
187
188DEFINE_EVENT(local_only_evt, drv_get_et_stats,
189 TP_PROTO(struct ieee80211_local *local),
190 TP_ARGS(local)
191);
192
Johannes Bergeecc4802011-05-04 15:37:29 +0200193DEFINE_EVENT(local_only_evt, drv_suspend,
194 TP_PROTO(struct ieee80211_local *local),
195 TP_ARGS(local)
196);
197
198DEFINE_EVENT(local_only_evt, drv_resume,
199 TP_PROTO(struct ieee80211_local *local),
200 TP_ARGS(local)
201);
202
Johannes Berg6d525632012-04-04 15:05:25 +0200203TRACE_EVENT(drv_set_wakeup,
204 TP_PROTO(struct ieee80211_local *local, bool enabled),
205 TP_ARGS(local, enabled),
206 TP_STRUCT__entry(
207 LOCAL_ENTRY
208 __field(bool, enabled)
209 ),
210 TP_fast_assign(
211 LOCAL_ASSIGN;
212 __entry->enabled = enabled;
213 ),
214 TP_printk(LOCAL_PR_FMT " enabled:%d", LOCAL_PR_ARG, __entry->enabled)
215);
216
Johannes Bergba99d932011-01-26 09:22:15 +0100217DEFINE_EVENT(local_only_evt, drv_stop,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200218 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100219 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200220);
221
Luciano Coelho92ddc112011-05-09 14:40:06 +0300222DEFINE_EVENT(local_sdata_addr_evt, drv_add_interface,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200223 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200224 struct ieee80211_sub_if_data *sdata),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300225 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200226);
227
Johannes Berg34d4bc42010-08-27 12:35:58 +0200228TRACE_EVENT(drv_change_interface,
229 TP_PROTO(struct ieee80211_local *local,
230 struct ieee80211_sub_if_data *sdata,
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200231 enum nl80211_iftype type, bool p2p),
Johannes Berg34d4bc42010-08-27 12:35:58 +0200232
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200233 TP_ARGS(local, sdata, type, p2p),
Johannes Berg34d4bc42010-08-27 12:35:58 +0200234
235 TP_STRUCT__entry(
236 LOCAL_ENTRY
237 VIF_ENTRY
238 __field(u32, new_type)
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200239 __field(bool, new_p2p)
Johannes Berg34d4bc42010-08-27 12:35:58 +0200240 ),
241
242 TP_fast_assign(
243 LOCAL_ASSIGN;
244 VIF_ASSIGN;
245 __entry->new_type = type;
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200246 __entry->new_p2p = p2p;
Johannes Berg34d4bc42010-08-27 12:35:58 +0200247 ),
248
249 TP_printk(
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200250 LOCAL_PR_FMT VIF_PR_FMT " new type:%d%s",
251 LOCAL_PR_ARG, VIF_PR_ARG, __entry->new_type,
252 __entry->new_p2p ? "/p2p" : ""
Johannes Berg34d4bc42010-08-27 12:35:58 +0200253 )
254);
255
Luciano Coelho92ddc112011-05-09 14:40:06 +0300256DEFINE_EVENT(local_sdata_addr_evt, drv_remove_interface,
257 TP_PROTO(struct ieee80211_local *local,
258 struct ieee80211_sub_if_data *sdata),
259 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200260);
261
262TRACE_EVENT(drv_config,
263 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200264 u32 changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200265
Johannes Berg4efc76b2010-06-10 10:56:20 +0200266 TP_ARGS(local, changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200267
268 TP_STRUCT__entry(
269 LOCAL_ENTRY
270 __field(u32, changed)
Johannes Bergf911ab82009-11-25 19:07:20 +0100271 __field(u32, flags)
272 __field(int, power_level)
273 __field(int, dynamic_ps_timeout)
274 __field(int, max_sleep_period)
275 __field(u16, listen_interval)
276 __field(u8, long_frame_max_tx_count)
277 __field(u8, short_frame_max_tx_count)
278 __field(int, center_freq)
279 __field(int, channel_type)
Johannes Berg0f782312009-12-01 13:37:02 +0100280 __field(int, smps)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200281 ),
282
283 TP_fast_assign(
284 LOCAL_ASSIGN;
285 __entry->changed = changed;
Johannes Bergf911ab82009-11-25 19:07:20 +0100286 __entry->flags = local->hw.conf.flags;
287 __entry->power_level = local->hw.conf.power_level;
288 __entry->dynamic_ps_timeout = local->hw.conf.dynamic_ps_timeout;
289 __entry->max_sleep_period = local->hw.conf.max_sleep_period;
290 __entry->listen_interval = local->hw.conf.listen_interval;
Johannes Berg3d01be72012-07-26 14:27:39 +0200291 __entry->long_frame_max_tx_count =
292 local->hw.conf.long_frame_max_tx_count;
293 __entry->short_frame_max_tx_count =
294 local->hw.conf.short_frame_max_tx_count;
295 __entry->center_freq = local->hw.conf.channel ?
296 local->hw.conf.channel->center_freq : 0;
Johannes Bergf911ab82009-11-25 19:07:20 +0100297 __entry->channel_type = local->hw.conf.channel_type;
Johannes Berg0f782312009-12-01 13:37:02 +0100298 __entry->smps = local->hw.conf.smps_mode;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200299 ),
300
301 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200302 LOCAL_PR_FMT " ch:%#x freq:%d",
303 LOCAL_PR_ARG, __entry->changed, __entry->center_freq
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200304 )
305);
306
307TRACE_EVENT(drv_bss_info_changed,
308 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100309 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200310 struct ieee80211_bss_conf *info,
311 u32 changed),
312
Johannes Berg12375ef2009-11-25 20:30:31 +0100313 TP_ARGS(local, sdata, info, changed),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200314
315 TP_STRUCT__entry(
316 LOCAL_ENTRY
317 VIF_ENTRY
Johannes Berg1724ffb2012-10-24 11:38:30 +0200318 __field(u32, changed)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200319 __field(bool, assoc)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200320 __field(bool, ibss_joined)
321 __field(bool, ibss_creator)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200322 __field(u16, aid)
323 __field(bool, cts)
324 __field(bool, shortpre)
325 __field(bool, shortslot)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200326 __field(bool, enable_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200327 __field(u8, dtimper)
328 __field(u16, bcnint)
329 __field(u16, assoc_cap)
Johannes Berg8c358bc2012-05-22 22:13:05 +0200330 __field(u64, sync_tsf)
331 __field(u32, sync_device_ts)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200332 __field(u32, basic_rates)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200333 __array(int, mcast_rate, IEEE80211_NUM_BANDS)
Johannes Bergf911ab82009-11-25 19:07:20 +0100334 __field(u16, ht_operation_mode)
Johannes Berg1724ffb2012-10-24 11:38:30 +0200335 __field(s32, cqm_rssi_thold);
336 __field(s32, cqm_rssi_hyst);
337 __field(u32, channel_type);
338 __dynamic_array(u32, arp_addr_list, info->arp_addr_cnt);
339 __field(bool, arp_filter_enabled);
340 __field(bool, qos);
341 __field(bool, idle);
342 __field(bool, ps);
343 __dynamic_array(u8, ssid, info->ssid_len);
344 __field(bool, hidden_ssid);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200345 __field(int, txpower)
Johannes Berg488dd7b2012-10-29 20:08:01 +0100346 __field(u8, p2p_ctwindow)
347 __field(bool, p2p_oppps)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200348 ),
349
350 TP_fast_assign(
351 LOCAL_ASSIGN;
352 VIF_ASSIGN;
353 __entry->changed = changed;
354 __entry->aid = info->aid;
355 __entry->assoc = info->assoc;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200356 __entry->ibss_joined = info->ibss_joined;
357 __entry->ibss_creator = info->ibss_creator;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200358 __entry->shortpre = info->use_short_preamble;
359 __entry->cts = info->use_cts_prot;
360 __entry->shortslot = info->use_short_slot;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200361 __entry->enable_beacon = info->enable_beacon;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200362 __entry->dtimper = info->dtim_period;
363 __entry->bcnint = info->beacon_int;
364 __entry->assoc_cap = info->assoc_capability;
Johannes Berg8c358bc2012-05-22 22:13:05 +0200365 __entry->sync_tsf = info->sync_tsf;
366 __entry->sync_device_ts = info->sync_device_ts;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200367 __entry->basic_rates = info->basic_rates;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200368 memcpy(__entry->mcast_rate, info->mcast_rate,
369 sizeof(__entry->mcast_rate));
Johannes Bergf911ab82009-11-25 19:07:20 +0100370 __entry->ht_operation_mode = info->ht_operation_mode;
Johannes Berg1724ffb2012-10-24 11:38:30 +0200371 __entry->cqm_rssi_thold = info->cqm_rssi_thold;
372 __entry->cqm_rssi_hyst = info->cqm_rssi_hyst;
373 __entry->channel_type = info->channel_type;
374 memcpy(__get_dynamic_array(arp_addr_list), info->arp_addr_list,
375 sizeof(u32) * info->arp_addr_cnt);
376 __entry->arp_filter_enabled = info->arp_filter_enabled;
377 __entry->qos = info->qos;
378 __entry->idle = info->idle;
379 __entry->ps = info->ps;
380 memcpy(__get_dynamic_array(ssid), info->ssid, info->ssid_len);
381 __entry->hidden_ssid = info->hidden_ssid;
Johannes Berg1ea6f9c2012-10-24 10:59:25 +0200382 __entry->txpower = info->txpower;
Johannes Berg488dd7b2012-10-29 20:08:01 +0100383 __entry->p2p_ctwindow = info->p2p_ctwindow;
384 __entry->p2p_oppps = info->p2p_oppps;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200385 ),
386
387 TP_printk(
388 LOCAL_PR_FMT VIF_PR_FMT " changed:%#x",
389 LOCAL_PR_ARG, VIF_PR_ARG, __entry->changed
390 )
391);
392
Johannes Berg3ac64be2009-08-17 16:16:53 +0200393TRACE_EVENT(drv_prepare_multicast,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200394 TP_PROTO(struct ieee80211_local *local, int mc_count),
Johannes Berg3ac64be2009-08-17 16:16:53 +0200395
Johannes Berg4efc76b2010-06-10 10:56:20 +0200396 TP_ARGS(local, mc_count),
Johannes Berg3ac64be2009-08-17 16:16:53 +0200397
398 TP_STRUCT__entry(
399 LOCAL_ENTRY
400 __field(int, mc_count)
Johannes Berg3ac64be2009-08-17 16:16:53 +0200401 ),
402
403 TP_fast_assign(
404 LOCAL_ASSIGN;
405 __entry->mc_count = mc_count;
Johannes Berg3ac64be2009-08-17 16:16:53 +0200406 ),
407
408 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200409 LOCAL_PR_FMT " prepare mc (%d)",
410 LOCAL_PR_ARG, __entry->mc_count
Johannes Berg3ac64be2009-08-17 16:16:53 +0200411 )
412);
413
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200414TRACE_EVENT(drv_configure_filter,
415 TP_PROTO(struct ieee80211_local *local,
416 unsigned int changed_flags,
417 unsigned int *total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200418 u64 multicast),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200419
Johannes Berg3ac64be2009-08-17 16:16:53 +0200420 TP_ARGS(local, changed_flags, total_flags, multicast),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200421
422 TP_STRUCT__entry(
423 LOCAL_ENTRY
424 __field(unsigned int, changed)
425 __field(unsigned int, total)
Johannes Berg3ac64be2009-08-17 16:16:53 +0200426 __field(u64, multicast)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200427 ),
428
429 TP_fast_assign(
430 LOCAL_ASSIGN;
431 __entry->changed = changed_flags;
432 __entry->total = *total_flags;
Johannes Berg3ac64be2009-08-17 16:16:53 +0200433 __entry->multicast = multicast;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200434 ),
435
436 TP_printk(
Johannes Berg3ac64be2009-08-17 16:16:53 +0200437 LOCAL_PR_FMT " changed:%#x total:%#x",
438 LOCAL_PR_ARG, __entry->changed, __entry->total
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200439 )
440);
441
442TRACE_EVENT(drv_set_tim,
443 TP_PROTO(struct ieee80211_local *local,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200444 struct ieee80211_sta *sta, bool set),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200445
Johannes Berg4efc76b2010-06-10 10:56:20 +0200446 TP_ARGS(local, sta, set),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200447
448 TP_STRUCT__entry(
449 LOCAL_ENTRY
450 STA_ENTRY
451 __field(bool, set)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200452 ),
453
454 TP_fast_assign(
455 LOCAL_ASSIGN;
456 STA_ASSIGN;
457 __entry->set = set;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200458 ),
459
460 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200461 LOCAL_PR_FMT STA_PR_FMT " set:%d",
462 LOCAL_PR_ARG, STA_PR_FMT, __entry->set
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200463 )
464);
465
466TRACE_EVENT(drv_set_key,
467 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100468 enum set_key_cmd cmd, struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200469 struct ieee80211_sta *sta,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200470 struct ieee80211_key_conf *key),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200471
Johannes Berg4efc76b2010-06-10 10:56:20 +0200472 TP_ARGS(local, cmd, sdata, sta, key),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200473
474 TP_STRUCT__entry(
475 LOCAL_ENTRY
476 VIF_ENTRY
477 STA_ENTRY
Johannes Berg97359d12010-08-10 09:46:38 +0200478 __field(u32, cipher)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200479 __field(u8, hw_key_idx)
480 __field(u8, flags)
481 __field(s8, keyidx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200482 ),
483
484 TP_fast_assign(
485 LOCAL_ASSIGN;
486 VIF_ASSIGN;
487 STA_ASSIGN;
Johannes Berg97359d12010-08-10 09:46:38 +0200488 __entry->cipher = key->cipher;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200489 __entry->flags = key->flags;
490 __entry->keyidx = key->keyidx;
491 __entry->hw_key_idx = key->hw_key_idx;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200492 ),
493
494 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200495 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
496 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200497 )
498);
499
500TRACE_EVENT(drv_update_tkip_key,
501 TP_PROTO(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100502 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200503 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100504 struct ieee80211_sta *sta, u32 iv32),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200505
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100506 TP_ARGS(local, sdata, conf, sta, iv32),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200507
508 TP_STRUCT__entry(
509 LOCAL_ENTRY
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100510 VIF_ENTRY
511 STA_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200512 __field(u32, iv32)
513 ),
514
515 TP_fast_assign(
516 LOCAL_ASSIGN;
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100517 VIF_ASSIGN;
518 STA_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200519 __entry->iv32 = iv32;
520 ),
521
522 TP_printk(
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100523 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " iv32:%#x",
524 LOCAL_PR_ARG,VIF_PR_ARG,STA_PR_ARG, __entry->iv32
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200525 )
526);
527
Luciano Coelho79f460c2011-05-11 17:09:36 +0300528DEFINE_EVENT(local_sdata_evt, drv_hw_scan,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200529 TP_PROTO(struct ieee80211_local *local,
Luciano Coelho79f460c2011-05-11 17:09:36 +0300530 struct ieee80211_sub_if_data *sdata),
531 TP_ARGS(local, sdata)
532);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200533
Eliad Pellerb8564392011-06-13 12:47:30 +0300534DEFINE_EVENT(local_sdata_evt, drv_cancel_hw_scan,
535 TP_PROTO(struct ieee80211_local *local,
536 struct ieee80211_sub_if_data *sdata),
537 TP_ARGS(local, sdata)
538);
539
Luciano Coelho79f460c2011-05-11 17:09:36 +0300540DEFINE_EVENT(local_sdata_evt, drv_sched_scan_start,
541 TP_PROTO(struct ieee80211_local *local,
542 struct ieee80211_sub_if_data *sdata),
543 TP_ARGS(local, sdata)
544);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200545
Luciano Coelho79f460c2011-05-11 17:09:36 +0300546DEFINE_EVENT(local_sdata_evt, drv_sched_scan_stop,
547 TP_PROTO(struct ieee80211_local *local,
548 struct ieee80211_sub_if_data *sdata),
549 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200550);
551
Johannes Bergba99d932011-01-26 09:22:15 +0100552DEFINE_EVENT(local_only_evt, drv_sw_scan_start,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200553 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100554 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200555);
556
Johannes Bergba99d932011-01-26 09:22:15 +0100557DEFINE_EVENT(local_only_evt, drv_sw_scan_complete,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200558 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100559 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200560);
561
562TRACE_EVENT(drv_get_stats,
563 TP_PROTO(struct ieee80211_local *local,
564 struct ieee80211_low_level_stats *stats,
565 int ret),
566
567 TP_ARGS(local, stats, ret),
568
569 TP_STRUCT__entry(
570 LOCAL_ENTRY
571 __field(int, ret)
572 __field(unsigned int, ackfail)
573 __field(unsigned int, rtsfail)
574 __field(unsigned int, fcserr)
575 __field(unsigned int, rtssucc)
576 ),
577
578 TP_fast_assign(
579 LOCAL_ASSIGN;
580 __entry->ret = ret;
581 __entry->ackfail = stats->dot11ACKFailureCount;
582 __entry->rtsfail = stats->dot11RTSFailureCount;
583 __entry->fcserr = stats->dot11FCSErrorCount;
584 __entry->rtssucc = stats->dot11RTSSuccessCount;
585 ),
586
587 TP_printk(
588 LOCAL_PR_FMT " ret:%d",
589 LOCAL_PR_ARG, __entry->ret
590 )
591);
592
593TRACE_EVENT(drv_get_tkip_seq,
594 TP_PROTO(struct ieee80211_local *local,
595 u8 hw_key_idx, u32 *iv32, u16 *iv16),
596
597 TP_ARGS(local, hw_key_idx, iv32, iv16),
598
599 TP_STRUCT__entry(
600 LOCAL_ENTRY
601 __field(u8, hw_key_idx)
602 __field(u32, iv32)
603 __field(u16, iv16)
604 ),
605
606 TP_fast_assign(
607 LOCAL_ASSIGN;
608 __entry->hw_key_idx = hw_key_idx;
609 __entry->iv32 = *iv32;
610 __entry->iv16 = *iv16;
611 ),
612
613 TP_printk(
614 LOCAL_PR_FMT, LOCAL_PR_ARG
615 )
616);
617
Luciano Coelho92ddc112011-05-09 14:40:06 +0300618DEFINE_EVENT(local_u32_evt, drv_set_frag_threshold,
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200619 TP_PROTO(struct ieee80211_local *local, u32 value),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300620 TP_ARGS(local, value)
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200621);
622
Luciano Coelho92ddc112011-05-09 14:40:06 +0300623DEFINE_EVENT(local_u32_evt, drv_set_rts_threshold,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200624 TP_PROTO(struct ieee80211_local *local, u32 value),
Luciano Coelho92ddc112011-05-09 14:40:06 +0300625 TP_ARGS(local, value)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200626);
627
Lukáš Turek310bc672009-12-21 22:50:48 +0100628TRACE_EVENT(drv_set_coverage_class,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200629 TP_PROTO(struct ieee80211_local *local, u8 value),
Lukáš Turek310bc672009-12-21 22:50:48 +0100630
Johannes Berg4efc76b2010-06-10 10:56:20 +0200631 TP_ARGS(local, value),
Lukáš Turek310bc672009-12-21 22:50:48 +0100632
633 TP_STRUCT__entry(
634 LOCAL_ENTRY
635 __field(u8, value)
Lukáš Turek310bc672009-12-21 22:50:48 +0100636 ),
637
638 TP_fast_assign(
639 LOCAL_ASSIGN;
Lukáš Turek310bc672009-12-21 22:50:48 +0100640 __entry->value = value;
641 ),
642
643 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200644 LOCAL_PR_FMT " value:%d",
645 LOCAL_PR_ARG, __entry->value
Lukáš Turek310bc672009-12-21 22:50:48 +0100646 )
647);
648
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200649TRACE_EVENT(drv_sta_notify,
650 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100651 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200652 enum sta_notify_cmd cmd,
653 struct ieee80211_sta *sta),
654
Johannes Berg12375ef2009-11-25 20:30:31 +0100655 TP_ARGS(local, sdata, cmd, sta),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200656
657 TP_STRUCT__entry(
658 LOCAL_ENTRY
659 VIF_ENTRY
660 STA_ENTRY
661 __field(u32, cmd)
662 ),
663
664 TP_fast_assign(
665 LOCAL_ASSIGN;
666 VIF_ASSIGN;
667 STA_ASSIGN;
668 __entry->cmd = cmd;
669 ),
670
671 TP_printk(
672 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " cmd:%d",
673 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->cmd
674 )
675);
676
Johannes Bergf09603a2012-01-20 13:55:21 +0100677TRACE_EVENT(drv_sta_state,
678 TP_PROTO(struct ieee80211_local *local,
679 struct ieee80211_sub_if_data *sdata,
680 struct ieee80211_sta *sta,
681 enum ieee80211_sta_state old_state,
682 enum ieee80211_sta_state new_state),
683
684 TP_ARGS(local, sdata, sta, old_state, new_state),
685
686 TP_STRUCT__entry(
687 LOCAL_ENTRY
688 VIF_ENTRY
689 STA_ENTRY
690 __field(u32, old_state)
691 __field(u32, new_state)
692 ),
693
694 TP_fast_assign(
695 LOCAL_ASSIGN;
696 VIF_ASSIGN;
697 STA_ASSIGN;
698 __entry->old_state = old_state;
699 __entry->new_state = new_state;
700 ),
701
702 TP_printk(
703 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " state: %d->%d",
704 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG,
705 __entry->old_state, __entry->new_state
706 )
707);
708
Johannes Berg8f727ef2012-03-30 08:43:32 +0200709TRACE_EVENT(drv_sta_rc_update,
710 TP_PROTO(struct ieee80211_local *local,
711 struct ieee80211_sub_if_data *sdata,
712 struct ieee80211_sta *sta,
713 u32 changed),
714
715 TP_ARGS(local, sdata, sta, changed),
716
717 TP_STRUCT__entry(
718 LOCAL_ENTRY
719 VIF_ENTRY
720 STA_ENTRY
721 __field(u32, changed)
722 ),
723
724 TP_fast_assign(
725 LOCAL_ASSIGN;
726 VIF_ASSIGN;
727 STA_ASSIGN;
728 __entry->changed = changed;
729 ),
730
731 TP_printk(
732 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " changed: 0x%x",
733 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->changed
734 )
735);
736
Johannes Berg34e89502010-02-03 13:59:58 +0100737TRACE_EVENT(drv_sta_add,
738 TP_PROTO(struct ieee80211_local *local,
739 struct ieee80211_sub_if_data *sdata,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200740 struct ieee80211_sta *sta),
Johannes Berg34e89502010-02-03 13:59:58 +0100741
Johannes Berg4efc76b2010-06-10 10:56:20 +0200742 TP_ARGS(local, sdata, sta),
Johannes Berg34e89502010-02-03 13:59:58 +0100743
744 TP_STRUCT__entry(
745 LOCAL_ENTRY
746 VIF_ENTRY
747 STA_ENTRY
Johannes Berg34e89502010-02-03 13:59:58 +0100748 ),
749
750 TP_fast_assign(
751 LOCAL_ASSIGN;
752 VIF_ASSIGN;
753 STA_ASSIGN;
Johannes Berg34e89502010-02-03 13:59:58 +0100754 ),
755
756 TP_printk(
Johannes Berg4efc76b2010-06-10 10:56:20 +0200757 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
758 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
Johannes Berg34e89502010-02-03 13:59:58 +0100759 )
760);
761
762TRACE_EVENT(drv_sta_remove,
763 TP_PROTO(struct ieee80211_local *local,
764 struct ieee80211_sub_if_data *sdata,
765 struct ieee80211_sta *sta),
766
767 TP_ARGS(local, sdata, sta),
768
769 TP_STRUCT__entry(
770 LOCAL_ENTRY
771 VIF_ENTRY
772 STA_ENTRY
773 ),
774
775 TP_fast_assign(
776 LOCAL_ASSIGN;
777 VIF_ASSIGN;
778 STA_ASSIGN;
779 ),
780
781 TP_printk(
782 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT,
783 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG
784 )
785);
786
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200787TRACE_EVENT(drv_conf_tx,
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300788 TP_PROTO(struct ieee80211_local *local,
789 struct ieee80211_sub_if_data *sdata,
Johannes Berga3304b02012-03-28 11:04:24 +0200790 u16 ac, const struct ieee80211_tx_queue_params *params),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200791
Johannes Berga3304b02012-03-28 11:04:24 +0200792 TP_ARGS(local, sdata, ac, params),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200793
794 TP_STRUCT__entry(
795 LOCAL_ENTRY
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300796 VIF_ENTRY
Johannes Berga3304b02012-03-28 11:04:24 +0200797 __field(u16, ac)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200798 __field(u16, txop)
799 __field(u16, cw_min)
800 __field(u16, cw_max)
801 __field(u8, aifs)
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300802 __field(bool, uapsd)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200803 ),
804
805 TP_fast_assign(
806 LOCAL_ASSIGN;
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300807 VIF_ASSIGN;
Johannes Berga3304b02012-03-28 11:04:24 +0200808 __entry->ac = ac;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200809 __entry->txop = params->txop;
810 __entry->cw_max = params->cw_max;
811 __entry->cw_min = params->cw_min;
812 __entry->aifs = params->aifs;
Eliad Pellerf6f3def2011-09-25 20:06:54 +0300813 __entry->uapsd = params->uapsd;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200814 ),
815
816 TP_printk(
Johannes Berga3304b02012-03-28 11:04:24 +0200817 LOCAL_PR_FMT VIF_PR_FMT " AC:%d",
818 LOCAL_PR_ARG, VIF_PR_ARG, __entry->ac
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200819 )
820);
821
Eliad Peller37a41b42011-09-21 14:06:11 +0300822DEFINE_EVENT(local_sdata_evt, drv_get_tsf,
823 TP_PROTO(struct ieee80211_local *local,
824 struct ieee80211_sub_if_data *sdata),
825 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200826);
827
828TRACE_EVENT(drv_set_tsf,
Eliad Peller37a41b42011-09-21 14:06:11 +0300829 TP_PROTO(struct ieee80211_local *local,
830 struct ieee80211_sub_if_data *sdata,
831 u64 tsf),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200832
Eliad Peller37a41b42011-09-21 14:06:11 +0300833 TP_ARGS(local, sdata, tsf),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200834
835 TP_STRUCT__entry(
836 LOCAL_ENTRY
Eliad Peller37a41b42011-09-21 14:06:11 +0300837 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200838 __field(u64, tsf)
839 ),
840
841 TP_fast_assign(
842 LOCAL_ASSIGN;
Eliad Peller37a41b42011-09-21 14:06:11 +0300843 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200844 __entry->tsf = tsf;
845 ),
846
847 TP_printk(
Eliad Peller37a41b42011-09-21 14:06:11 +0300848 LOCAL_PR_FMT VIF_PR_FMT " tsf:%llu",
849 LOCAL_PR_ARG, VIF_PR_ARG, (unsigned long long)__entry->tsf
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200850 )
851);
852
Eliad Peller37a41b42011-09-21 14:06:11 +0300853DEFINE_EVENT(local_sdata_evt, drv_reset_tsf,
854 TP_PROTO(struct ieee80211_local *local,
855 struct ieee80211_sub_if_data *sdata),
856 TP_ARGS(local, sdata)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200857);
858
Johannes Bergba99d932011-01-26 09:22:15 +0100859DEFINE_EVENT(local_only_evt, drv_tx_last_beacon,
Johannes Berg4efc76b2010-06-10 10:56:20 +0200860 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +0100861 TP_ARGS(local)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200862);
863
864TRACE_EVENT(drv_ampdu_action,
865 TP_PROTO(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100866 struct ieee80211_sub_if_data *sdata,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200867 enum ieee80211_ampdu_mlme_action action,
868 struct ieee80211_sta *sta, u16 tid,
Johannes Berg0b01f032011-01-18 13:51:05 +0100869 u16 *ssn, u8 buf_size),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200870
Johannes Berg0b01f032011-01-18 13:51:05 +0100871 TP_ARGS(local, sdata, action, sta, tid, ssn, buf_size),
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200872
873 TP_STRUCT__entry(
874 LOCAL_ENTRY
875 STA_ENTRY
876 __field(u32, action)
877 __field(u16, tid)
878 __field(u16, ssn)
Johannes Berg0b01f032011-01-18 13:51:05 +0100879 __field(u8, buf_size)
Johannes Bergc951ad32009-11-16 12:00:38 +0100880 VIF_ENTRY
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200881 ),
882
883 TP_fast_assign(
884 LOCAL_ASSIGN;
Johannes Bergc951ad32009-11-16 12:00:38 +0100885 VIF_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200886 STA_ASSIGN;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200887 __entry->action = action;
888 __entry->tid = tid;
Zhu Yi3092ad02010-01-26 15:58:57 +0800889 __entry->ssn = ssn ? *ssn : 0;
Johannes Berg0b01f032011-01-18 13:51:05 +0100890 __entry->buf_size = buf_size;
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200891 ),
892
893 TP_printk(
Johannes Berg0b01f032011-01-18 13:51:05 +0100894 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " action:%d tid:%d buf:%d",
895 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->action,
896 __entry->tid, __entry->buf_size
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200897 )
898);
Johannes Berga80f7c02009-12-23 13:15:32 +0100899
John W. Linvillec466d4e2010-06-29 14:51:23 -0400900TRACE_EVENT(drv_get_survey,
901 TP_PROTO(struct ieee80211_local *local, int idx,
902 struct survey_info *survey),
903
904 TP_ARGS(local, idx, survey),
905
906 TP_STRUCT__entry(
907 LOCAL_ENTRY
908 __field(int, idx)
909 ),
910
911 TP_fast_assign(
912 LOCAL_ASSIGN;
913 __entry->idx = idx;
914 ),
915
916 TP_printk(
917 LOCAL_PR_FMT " idx:%d",
918 LOCAL_PR_ARG, __entry->idx
919 )
920);
921
Johannes Berga80f7c02009-12-23 13:15:32 +0100922TRACE_EVENT(drv_flush,
923 TP_PROTO(struct ieee80211_local *local, bool drop),
924
925 TP_ARGS(local, drop),
926
927 TP_STRUCT__entry(
928 LOCAL_ENTRY
929 __field(bool, drop)
930 ),
931
932 TP_fast_assign(
933 LOCAL_ASSIGN;
934 __entry->drop = drop;
935 ),
936
937 TP_printk(
938 LOCAL_PR_FMT " drop:%d",
939 LOCAL_PR_ARG, __entry->drop
940 )
941);
Johannes Bergb5878a22010-04-07 16:48:40 +0200942
Johannes Berg5ce6e432010-05-11 16:20:57 +0200943TRACE_EVENT(drv_channel_switch,
944 TP_PROTO(struct ieee80211_local *local,
945 struct ieee80211_channel_switch *ch_switch),
946
947 TP_ARGS(local, ch_switch),
948
949 TP_STRUCT__entry(
950 LOCAL_ENTRY
951 __field(u64, timestamp)
952 __field(bool, block_tx)
953 __field(u16, freq)
954 __field(u8, count)
955 ),
956
957 TP_fast_assign(
958 LOCAL_ASSIGN;
959 __entry->timestamp = ch_switch->timestamp;
960 __entry->block_tx = ch_switch->block_tx;
961 __entry->freq = ch_switch->channel->center_freq;
962 __entry->count = ch_switch->count;
963 ),
964
965 TP_printk(
966 LOCAL_PR_FMT " new freq:%u count:%d",
967 LOCAL_PR_ARG, __entry->freq, __entry->count
968 )
969);
970
Bruno Randolf15d96752010-11-10 12:50:56 +0900971TRACE_EVENT(drv_set_antenna,
972 TP_PROTO(struct ieee80211_local *local, u32 tx_ant, u32 rx_ant, int ret),
973
974 TP_ARGS(local, tx_ant, rx_ant, ret),
975
976 TP_STRUCT__entry(
977 LOCAL_ENTRY
978 __field(u32, tx_ant)
979 __field(u32, rx_ant)
980 __field(int, ret)
981 ),
982
983 TP_fast_assign(
984 LOCAL_ASSIGN;
985 __entry->tx_ant = tx_ant;
986 __entry->rx_ant = rx_ant;
987 __entry->ret = ret;
988 ),
989
990 TP_printk(
991 LOCAL_PR_FMT " tx_ant:%d rx_ant:%d ret:%d",
992 LOCAL_PR_ARG, __entry->tx_ant, __entry->rx_ant, __entry->ret
993 )
994);
995
996TRACE_EVENT(drv_get_antenna,
997 TP_PROTO(struct ieee80211_local *local, u32 tx_ant, u32 rx_ant, int ret),
998
999 TP_ARGS(local, tx_ant, rx_ant, ret),
1000
1001 TP_STRUCT__entry(
1002 LOCAL_ENTRY
1003 __field(u32, tx_ant)
1004 __field(u32, rx_ant)
1005 __field(int, ret)
1006 ),
1007
1008 TP_fast_assign(
1009 LOCAL_ASSIGN;
1010 __entry->tx_ant = tx_ant;
1011 __entry->rx_ant = rx_ant;
1012 __entry->ret = ret;
1013 ),
1014
1015 TP_printk(
1016 LOCAL_PR_FMT " tx_ant:%d rx_ant:%d ret:%d",
1017 LOCAL_PR_ARG, __entry->tx_ant, __entry->rx_ant, __entry->ret
1018 )
1019);
1020
Johannes Berg21f83582010-12-18 17:20:47 +01001021TRACE_EVENT(drv_remain_on_channel,
Eliad Peller49884562012-11-19 17:05:09 +02001022 TP_PROTO(struct ieee80211_local *local,
1023 struct ieee80211_sub_if_data *sdata,
1024 struct ieee80211_channel *chan,
Johannes Berg42d97a52012-11-08 18:31:02 +01001025 unsigned int duration),
Johannes Berg21f83582010-12-18 17:20:47 +01001026
Johannes Berg42d97a52012-11-08 18:31:02 +01001027 TP_ARGS(local, sdata, chan, duration),
Johannes Berg21f83582010-12-18 17:20:47 +01001028
1029 TP_STRUCT__entry(
1030 LOCAL_ENTRY
Eliad Peller49884562012-11-19 17:05:09 +02001031 VIF_ENTRY
Johannes Berg21f83582010-12-18 17:20:47 +01001032 __field(int, center_freq)
Johannes Berg21f83582010-12-18 17:20:47 +01001033 __field(unsigned int, duration)
1034 ),
1035
1036 TP_fast_assign(
1037 LOCAL_ASSIGN;
Eliad Peller49884562012-11-19 17:05:09 +02001038 VIF_ASSIGN;
Johannes Berg21f83582010-12-18 17:20:47 +01001039 __entry->center_freq = chan->center_freq;
Johannes Berg21f83582010-12-18 17:20:47 +01001040 __entry->duration = duration;
1041 ),
1042
1043 TP_printk(
Eliad Peller49884562012-11-19 17:05:09 +02001044 LOCAL_PR_FMT VIF_PR_FMT " freq:%dMHz duration:%dms",
1045 LOCAL_PR_ARG, VIF_PR_ARG,
1046 __entry->center_freq, __entry->duration
Johannes Berg21f83582010-12-18 17:20:47 +01001047 )
1048);
1049
Johannes Bergba99d932011-01-26 09:22:15 +01001050DEFINE_EVENT(local_only_evt, drv_cancel_remain_on_channel,
Johannes Berg21f83582010-12-18 17:20:47 +01001051 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001052 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001053);
1054
John W. Linville38c09152011-03-07 16:19:18 -05001055TRACE_EVENT(drv_set_ringparam,
1056 TP_PROTO(struct ieee80211_local *local, u32 tx, u32 rx),
1057
1058 TP_ARGS(local, tx, rx),
1059
1060 TP_STRUCT__entry(
1061 LOCAL_ENTRY
1062 __field(u32, tx)
1063 __field(u32, rx)
1064 ),
1065
1066 TP_fast_assign(
1067 LOCAL_ASSIGN;
1068 __entry->tx = tx;
1069 __entry->rx = rx;
1070 ),
1071
1072 TP_printk(
1073 LOCAL_PR_FMT " tx:%d rx %d",
1074 LOCAL_PR_ARG, __entry->tx, __entry->rx
1075 )
1076);
1077
1078TRACE_EVENT(drv_get_ringparam,
1079 TP_PROTO(struct ieee80211_local *local, u32 *tx, u32 *tx_max,
1080 u32 *rx, u32 *rx_max),
1081
1082 TP_ARGS(local, tx, tx_max, rx, rx_max),
1083
1084 TP_STRUCT__entry(
1085 LOCAL_ENTRY
1086 __field(u32, tx)
1087 __field(u32, tx_max)
1088 __field(u32, rx)
1089 __field(u32, rx_max)
1090 ),
1091
1092 TP_fast_assign(
1093 LOCAL_ASSIGN;
1094 __entry->tx = *tx;
1095 __entry->tx_max = *tx_max;
1096 __entry->rx = *rx;
1097 __entry->rx_max = *rx_max;
1098 ),
1099
1100 TP_printk(
1101 LOCAL_PR_FMT " tx:%d tx_max %d rx %d rx_max %d",
1102 LOCAL_PR_ARG,
1103 __entry->tx, __entry->tx_max, __entry->rx, __entry->rx_max
1104 )
1105);
1106
Vivek Natarajane8306f92011-04-06 11:41:10 +05301107DEFINE_EVENT(local_only_evt, drv_tx_frames_pending,
1108 TP_PROTO(struct ieee80211_local *local),
1109 TP_ARGS(local)
1110);
1111
Johannes Berg5f16a432011-02-25 15:36:57 +01001112DEFINE_EVENT(local_only_evt, drv_offchannel_tx_cancel_wait,
1113 TP_PROTO(struct ieee80211_local *local),
1114 TP_ARGS(local)
1115);
1116
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05301117TRACE_EVENT(drv_set_bitrate_mask,
1118 TP_PROTO(struct ieee80211_local *local,
1119 struct ieee80211_sub_if_data *sdata,
1120 const struct cfg80211_bitrate_mask *mask),
1121
1122 TP_ARGS(local, sdata, mask),
1123
1124 TP_STRUCT__entry(
1125 LOCAL_ENTRY
1126 VIF_ENTRY
1127 __field(u32, legacy_2g)
1128 __field(u32, legacy_5g)
1129 ),
1130
1131 TP_fast_assign(
1132 LOCAL_ASSIGN;
1133 VIF_ASSIGN;
1134 __entry->legacy_2g = mask->control[IEEE80211_BAND_2GHZ].legacy;
1135 __entry->legacy_5g = mask->control[IEEE80211_BAND_5GHZ].legacy;
1136 ),
1137
1138 TP_printk(
1139 LOCAL_PR_FMT VIF_PR_FMT " 2G Mask:0x%x 5G Mask:0x%x",
1140 LOCAL_PR_ARG, VIF_PR_ARG, __entry->legacy_2g, __entry->legacy_5g
1141 )
1142);
1143
Johannes Bergc68f4b82011-07-05 16:35:41 +02001144TRACE_EVENT(drv_set_rekey_data,
1145 TP_PROTO(struct ieee80211_local *local,
1146 struct ieee80211_sub_if_data *sdata,
1147 struct cfg80211_gtk_rekey_data *data),
1148
1149 TP_ARGS(local, sdata, data),
1150
1151 TP_STRUCT__entry(
1152 LOCAL_ENTRY
1153 VIF_ENTRY
1154 __array(u8, kek, NL80211_KEK_LEN)
1155 __array(u8, kck, NL80211_KCK_LEN)
1156 __array(u8, replay_ctr, NL80211_REPLAY_CTR_LEN)
1157 ),
1158
1159 TP_fast_assign(
1160 LOCAL_ASSIGN;
1161 VIF_ASSIGN;
1162 memcpy(__entry->kek, data->kek, NL80211_KEK_LEN);
1163 memcpy(__entry->kck, data->kck, NL80211_KCK_LEN);
1164 memcpy(__entry->replay_ctr, data->replay_ctr,
1165 NL80211_REPLAY_CTR_LEN);
1166 ),
1167
1168 TP_printk(LOCAL_PR_FMT VIF_PR_FMT,
1169 LOCAL_PR_ARG, VIF_PR_ARG)
1170);
1171
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001172TRACE_EVENT(drv_rssi_callback,
1173 TP_PROTO(struct ieee80211_local *local,
1174 enum ieee80211_rssi_event rssi_event),
1175
1176 TP_ARGS(local, rssi_event),
1177
1178 TP_STRUCT__entry(
1179 LOCAL_ENTRY
1180 __field(u32, rssi_event)
1181 ),
1182
1183 TP_fast_assign(
1184 LOCAL_ASSIGN;
1185 __entry->rssi_event = rssi_event;
1186 ),
1187
1188 TP_printk(
1189 LOCAL_PR_FMT " rssi_event:%d",
1190 LOCAL_PR_ARG, __entry->rssi_event
1191 )
1192);
1193
Johannes Berg40b96402011-09-29 16:04:38 +02001194DECLARE_EVENT_CLASS(release_evt,
Johannes Berg4049e092011-09-29 16:04:32 +02001195 TP_PROTO(struct ieee80211_local *local,
1196 struct ieee80211_sta *sta,
1197 u16 tids, int num_frames,
1198 enum ieee80211_frame_release_type reason,
1199 bool more_data),
1200
1201 TP_ARGS(local, sta, tids, num_frames, reason, more_data),
1202
1203 TP_STRUCT__entry(
1204 LOCAL_ENTRY
1205 STA_ENTRY
1206 __field(u16, tids)
1207 __field(int, num_frames)
1208 __field(int, reason)
1209 __field(bool, more_data)
1210 ),
1211
1212 TP_fast_assign(
1213 LOCAL_ASSIGN;
1214 STA_ASSIGN;
1215 __entry->tids = tids;
1216 __entry->num_frames = num_frames;
1217 __entry->reason = reason;
1218 __entry->more_data = more_data;
1219 ),
1220
1221 TP_printk(
1222 LOCAL_PR_FMT STA_PR_FMT
1223 " TIDs:0x%.4x frames:%d reason:%d more:%d",
1224 LOCAL_PR_ARG, STA_PR_ARG, __entry->tids, __entry->num_frames,
1225 __entry->reason, __entry->more_data
1226 )
1227);
1228
Johannes Berg40b96402011-09-29 16:04:38 +02001229DEFINE_EVENT(release_evt, drv_release_buffered_frames,
1230 TP_PROTO(struct ieee80211_local *local,
1231 struct ieee80211_sta *sta,
1232 u16 tids, int num_frames,
1233 enum ieee80211_frame_release_type reason,
1234 bool more_data),
1235
1236 TP_ARGS(local, sta, tids, num_frames, reason, more_data)
1237);
1238
1239DEFINE_EVENT(release_evt, drv_allow_buffered_frames,
1240 TP_PROTO(struct ieee80211_local *local,
1241 struct ieee80211_sta *sta,
1242 u16 tids, int num_frames,
1243 enum ieee80211_frame_release_type reason,
1244 bool more_data),
1245
1246 TP_ARGS(local, sta, tids, num_frames, reason, more_data)
1247);
1248
Victor Goldenshtein66572cf2012-06-21 10:56:46 +03001249TRACE_EVENT(drv_get_rssi,
1250 TP_PROTO(struct ieee80211_local *local, struct ieee80211_sta *sta,
1251 s8 rssi, int ret),
1252
1253 TP_ARGS(local, sta, rssi, ret),
1254
1255 TP_STRUCT__entry(
1256 LOCAL_ENTRY
1257 STA_ENTRY
1258 __field(s8, rssi)
1259 __field(int, ret)
1260 ),
1261
1262 TP_fast_assign(
1263 LOCAL_ASSIGN;
1264 STA_ASSIGN;
1265 __entry->rssi = rssi;
1266 __entry->ret = ret;
1267 ),
1268
1269 TP_printk(
1270 LOCAL_PR_FMT STA_PR_FMT " rssi:%d ret:%d",
1271 LOCAL_PR_ARG, STA_PR_ARG, __entry->rssi, __entry->ret
1272 )
1273);
1274
Johannes Berga1845fc2012-06-27 13:18:36 +02001275DEFINE_EVENT(local_sdata_evt, drv_mgd_prepare_tx,
1276 TP_PROTO(struct ieee80211_local *local,
1277 struct ieee80211_sub_if_data *sdata),
1278
1279 TP_ARGS(local, sdata)
1280);
1281
Michal Kaziorc3645ea2012-06-26 14:37:17 +02001282DECLARE_EVENT_CLASS(local_chanctx,
1283 TP_PROTO(struct ieee80211_local *local,
1284 struct ieee80211_chanctx *ctx),
1285
1286 TP_ARGS(local, ctx),
1287
1288 TP_STRUCT__entry(
1289 LOCAL_ENTRY
1290 CHANCTX_ENTRY
1291 ),
1292
1293 TP_fast_assign(
1294 LOCAL_ASSIGN;
1295 CHANCTX_ASSIGN;
1296 ),
1297
1298 TP_printk(
1299 LOCAL_PR_FMT CHANCTX_PR_FMT,
1300 LOCAL_PR_ARG, CHANCTX_PR_ARG
1301 )
1302);
1303
1304DEFINE_EVENT(local_chanctx, drv_add_chanctx,
1305 TP_PROTO(struct ieee80211_local *local,
1306 struct ieee80211_chanctx *ctx),
1307 TP_ARGS(local, ctx)
1308);
1309
1310DEFINE_EVENT(local_chanctx, drv_remove_chanctx,
1311 TP_PROTO(struct ieee80211_local *local,
1312 struct ieee80211_chanctx *ctx),
1313 TP_ARGS(local, ctx)
1314);
1315
1316TRACE_EVENT(drv_change_chanctx,
1317 TP_PROTO(struct ieee80211_local *local,
1318 struct ieee80211_chanctx *ctx,
1319 u32 changed),
1320
1321 TP_ARGS(local, ctx, changed),
1322
1323 TP_STRUCT__entry(
1324 LOCAL_ENTRY
1325 CHANCTX_ENTRY
1326 __field(u32, changed)
1327 ),
1328
1329 TP_fast_assign(
1330 LOCAL_ASSIGN;
1331 CHANCTX_ASSIGN;
1332 __entry->changed = changed;
1333 ),
1334
1335 TP_printk(
1336 LOCAL_PR_FMT CHANCTX_PR_FMT " changed:%#x",
1337 LOCAL_PR_ARG, CHANCTX_PR_ARG, __entry->changed
1338 )
1339);
1340
1341DECLARE_EVENT_CLASS(local_sdata_chanctx,
1342 TP_PROTO(struct ieee80211_local *local,
1343 struct ieee80211_sub_if_data *sdata,
1344 struct ieee80211_chanctx *ctx),
1345
1346 TP_ARGS(local, sdata, ctx),
1347
1348 TP_STRUCT__entry(
1349 LOCAL_ENTRY
1350 VIF_ENTRY
1351 CHANCTX_ENTRY
1352 ),
1353
1354 TP_fast_assign(
1355 LOCAL_ASSIGN;
1356 VIF_ASSIGN;
1357 CHANCTX_ASSIGN;
1358 ),
1359
1360 TP_printk(
1361 LOCAL_PR_FMT VIF_PR_FMT CHANCTX_PR_FMT,
1362 LOCAL_PR_ARG, VIF_PR_ARG, CHANCTX_PR_ARG
1363 )
1364);
1365
1366DEFINE_EVENT(local_sdata_chanctx, drv_assign_vif_chanctx,
1367 TP_PROTO(struct ieee80211_local *local,
1368 struct ieee80211_sub_if_data *sdata,
1369 struct ieee80211_chanctx *ctx),
1370 TP_ARGS(local, sdata, ctx)
1371);
1372
1373DEFINE_EVENT(local_sdata_chanctx, drv_unassign_vif_chanctx,
1374 TP_PROTO(struct ieee80211_local *local,
1375 struct ieee80211_sub_if_data *sdata,
1376 struct ieee80211_chanctx *ctx),
1377 TP_ARGS(local, sdata, ctx)
1378);
1379
Johannes Berg10416382012-10-19 15:44:42 +02001380TRACE_EVENT(drv_start_ap,
1381 TP_PROTO(struct ieee80211_local *local,
1382 struct ieee80211_sub_if_data *sdata,
1383 struct ieee80211_bss_conf *info),
1384
1385 TP_ARGS(local, sdata, info),
1386
1387 TP_STRUCT__entry(
1388 LOCAL_ENTRY
1389 VIF_ENTRY
1390 __field(u8, dtimper)
1391 __field(u16, bcnint)
1392 __dynamic_array(u8, ssid, info->ssid_len);
1393 __field(bool, hidden_ssid);
1394 ),
1395
1396 TP_fast_assign(
1397 LOCAL_ASSIGN;
1398 VIF_ASSIGN;
1399 __entry->dtimper = info->dtim_period;
1400 __entry->bcnint = info->beacon_int;
1401 memcpy(__get_dynamic_array(ssid), info->ssid, info->ssid_len);
1402 __entry->hidden_ssid = info->hidden_ssid;
1403 ),
1404
1405 TP_printk(
1406 LOCAL_PR_FMT VIF_PR_FMT,
1407 LOCAL_PR_ARG, VIF_PR_ARG
1408 )
1409);
1410
1411DEFINE_EVENT(local_sdata_evt, drv_stop_ap,
1412 TP_PROTO(struct ieee80211_local *local,
1413 struct ieee80211_sub_if_data *sdata),
1414 TP_ARGS(local, sdata)
1415);
1416
Johannes Berg9214ad72012-11-06 19:18:13 +01001417DEFINE_EVENT(local_only_evt, drv_restart_complete,
1418 TP_PROTO(struct ieee80211_local *local),
1419 TP_ARGS(local)
1420);
1421
Johannes Bergb5878a22010-04-07 16:48:40 +02001422/*
1423 * Tracing for API calls that drivers call.
1424 */
1425
1426TRACE_EVENT(api_start_tx_ba_session,
1427 TP_PROTO(struct ieee80211_sta *sta, u16 tid),
1428
1429 TP_ARGS(sta, tid),
1430
1431 TP_STRUCT__entry(
1432 STA_ENTRY
1433 __field(u16, tid)
1434 ),
1435
1436 TP_fast_assign(
1437 STA_ASSIGN;
1438 __entry->tid = tid;
1439 ),
1440
1441 TP_printk(
1442 STA_PR_FMT " tid:%d",
1443 STA_PR_ARG, __entry->tid
1444 )
1445);
1446
1447TRACE_EVENT(api_start_tx_ba_cb,
1448 TP_PROTO(struct ieee80211_sub_if_data *sdata, const u8 *ra, u16 tid),
1449
1450 TP_ARGS(sdata, ra, tid),
1451
1452 TP_STRUCT__entry(
1453 VIF_ENTRY
1454 __array(u8, ra, ETH_ALEN)
1455 __field(u16, tid)
1456 ),
1457
1458 TP_fast_assign(
1459 VIF_ASSIGN;
1460 memcpy(__entry->ra, ra, ETH_ALEN);
1461 __entry->tid = tid;
1462 ),
1463
1464 TP_printk(
1465 VIF_PR_FMT " ra:%pM tid:%d",
1466 VIF_PR_ARG, __entry->ra, __entry->tid
1467 )
1468);
1469
1470TRACE_EVENT(api_stop_tx_ba_session,
Johannes Berg6a8579d2010-05-27 14:41:07 +02001471 TP_PROTO(struct ieee80211_sta *sta, u16 tid),
Johannes Bergb5878a22010-04-07 16:48:40 +02001472
Johannes Berg6a8579d2010-05-27 14:41:07 +02001473 TP_ARGS(sta, tid),
Johannes Bergb5878a22010-04-07 16:48:40 +02001474
1475 TP_STRUCT__entry(
1476 STA_ENTRY
1477 __field(u16, tid)
Johannes Bergb5878a22010-04-07 16:48:40 +02001478 ),
1479
1480 TP_fast_assign(
1481 STA_ASSIGN;
1482 __entry->tid = tid;
Johannes Bergb5878a22010-04-07 16:48:40 +02001483 ),
1484
1485 TP_printk(
Johannes Berg6a8579d2010-05-27 14:41:07 +02001486 STA_PR_FMT " tid:%d",
1487 STA_PR_ARG, __entry->tid
Johannes Bergb5878a22010-04-07 16:48:40 +02001488 )
1489);
1490
1491TRACE_EVENT(api_stop_tx_ba_cb,
1492 TP_PROTO(struct ieee80211_sub_if_data *sdata, const u8 *ra, u16 tid),
1493
1494 TP_ARGS(sdata, ra, tid),
1495
1496 TP_STRUCT__entry(
1497 VIF_ENTRY
1498 __array(u8, ra, ETH_ALEN)
1499 __field(u16, tid)
1500 ),
1501
1502 TP_fast_assign(
1503 VIF_ASSIGN;
1504 memcpy(__entry->ra, ra, ETH_ALEN);
1505 __entry->tid = tid;
1506 ),
1507
1508 TP_printk(
1509 VIF_PR_FMT " ra:%pM tid:%d",
1510 VIF_PR_ARG, __entry->ra, __entry->tid
1511 )
1512);
1513
Johannes Bergba99d932011-01-26 09:22:15 +01001514DEFINE_EVENT(local_only_evt, api_restart_hw,
Johannes Bergb5878a22010-04-07 16:48:40 +02001515 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001516 TP_ARGS(local)
Johannes Bergb5878a22010-04-07 16:48:40 +02001517);
1518
1519TRACE_EVENT(api_beacon_loss,
1520 TP_PROTO(struct ieee80211_sub_if_data *sdata),
1521
1522 TP_ARGS(sdata),
1523
1524 TP_STRUCT__entry(
1525 VIF_ENTRY
1526 ),
1527
1528 TP_fast_assign(
1529 VIF_ASSIGN;
1530 ),
1531
1532 TP_printk(
1533 VIF_PR_FMT,
1534 VIF_PR_ARG
1535 )
1536);
1537
1538TRACE_EVENT(api_connection_loss,
1539 TP_PROTO(struct ieee80211_sub_if_data *sdata),
1540
1541 TP_ARGS(sdata),
1542
1543 TP_STRUCT__entry(
1544 VIF_ENTRY
1545 ),
1546
1547 TP_fast_assign(
1548 VIF_ASSIGN;
1549 ),
1550
1551 TP_printk(
1552 VIF_PR_FMT,
1553 VIF_PR_ARG
1554 )
1555);
1556
1557TRACE_EVENT(api_cqm_rssi_notify,
1558 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1559 enum nl80211_cqm_rssi_threshold_event rssi_event),
1560
1561 TP_ARGS(sdata, rssi_event),
1562
1563 TP_STRUCT__entry(
1564 VIF_ENTRY
1565 __field(u32, rssi_event)
1566 ),
1567
1568 TP_fast_assign(
1569 VIF_ASSIGN;
1570 __entry->rssi_event = rssi_event;
1571 ),
1572
1573 TP_printk(
1574 VIF_PR_FMT " event:%d",
1575 VIF_PR_ARG, __entry->rssi_event
1576 )
1577);
1578
1579TRACE_EVENT(api_scan_completed,
1580 TP_PROTO(struct ieee80211_local *local, bool aborted),
1581
1582 TP_ARGS(local, aborted),
1583
1584 TP_STRUCT__entry(
1585 LOCAL_ENTRY
1586 __field(bool, aborted)
1587 ),
1588
1589 TP_fast_assign(
1590 LOCAL_ASSIGN;
1591 __entry->aborted = aborted;
1592 ),
1593
1594 TP_printk(
1595 LOCAL_PR_FMT " aborted:%d",
1596 LOCAL_PR_ARG, __entry->aborted
1597 )
1598);
1599
Luciano Coelho79f460c2011-05-11 17:09:36 +03001600TRACE_EVENT(api_sched_scan_results,
1601 TP_PROTO(struct ieee80211_local *local),
1602
1603 TP_ARGS(local),
1604
1605 TP_STRUCT__entry(
1606 LOCAL_ENTRY
1607 ),
1608
1609 TP_fast_assign(
1610 LOCAL_ASSIGN;
1611 ),
1612
1613 TP_printk(
1614 LOCAL_PR_FMT, LOCAL_PR_ARG
1615 )
1616);
1617
1618TRACE_EVENT(api_sched_scan_stopped,
1619 TP_PROTO(struct ieee80211_local *local),
1620
1621 TP_ARGS(local),
1622
1623 TP_STRUCT__entry(
1624 LOCAL_ENTRY
1625 ),
1626
1627 TP_fast_assign(
1628 LOCAL_ASSIGN;
1629 ),
1630
1631 TP_printk(
1632 LOCAL_PR_FMT, LOCAL_PR_ARG
1633 )
1634);
1635
Johannes Bergb5878a22010-04-07 16:48:40 +02001636TRACE_EVENT(api_sta_block_awake,
1637 TP_PROTO(struct ieee80211_local *local,
1638 struct ieee80211_sta *sta, bool block),
1639
1640 TP_ARGS(local, sta, block),
1641
1642 TP_STRUCT__entry(
1643 LOCAL_ENTRY
1644 STA_ENTRY
1645 __field(bool, block)
1646 ),
1647
1648 TP_fast_assign(
1649 LOCAL_ASSIGN;
1650 STA_ASSIGN;
1651 __entry->block = block;
1652 ),
1653
1654 TP_printk(
1655 LOCAL_PR_FMT STA_PR_FMT " block:%d",
1656 LOCAL_PR_ARG, STA_PR_FMT, __entry->block
1657 )
1658);
1659
Johannes Berg5ce6e432010-05-11 16:20:57 +02001660TRACE_EVENT(api_chswitch_done,
1661 TP_PROTO(struct ieee80211_sub_if_data *sdata, bool success),
1662
1663 TP_ARGS(sdata, success),
1664
1665 TP_STRUCT__entry(
1666 VIF_ENTRY
1667 __field(bool, success)
1668 ),
1669
1670 TP_fast_assign(
1671 VIF_ASSIGN;
1672 __entry->success = success;
1673 ),
1674
1675 TP_printk(
1676 VIF_PR_FMT " success=%d",
1677 VIF_PR_ARG, __entry->success
1678 )
1679);
1680
Johannes Bergba99d932011-01-26 09:22:15 +01001681DEFINE_EVENT(local_only_evt, api_ready_on_channel,
Johannes Berg21f83582010-12-18 17:20:47 +01001682 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001683 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001684);
1685
Johannes Bergba99d932011-01-26 09:22:15 +01001686DEFINE_EVENT(local_only_evt, api_remain_on_channel_expired,
Johannes Berg21f83582010-12-18 17:20:47 +01001687 TP_PROTO(struct ieee80211_local *local),
Johannes Bergba99d932011-01-26 09:22:15 +01001688 TP_ARGS(local)
Johannes Berg21f83582010-12-18 17:20:47 +01001689);
1690
Johannes Bergc68f4b82011-07-05 16:35:41 +02001691TRACE_EVENT(api_gtk_rekey_notify,
1692 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1693 const u8 *bssid, const u8 *replay_ctr),
1694
1695 TP_ARGS(sdata, bssid, replay_ctr),
1696
1697 TP_STRUCT__entry(
1698 VIF_ENTRY
1699 __array(u8, bssid, ETH_ALEN)
1700 __array(u8, replay_ctr, NL80211_REPLAY_CTR_LEN)
1701 ),
1702
1703 TP_fast_assign(
1704 VIF_ASSIGN;
1705 memcpy(__entry->bssid, bssid, ETH_ALEN);
1706 memcpy(__entry->replay_ctr, replay_ctr, NL80211_REPLAY_CTR_LEN);
1707 ),
1708
1709 TP_printk(VIF_PR_FMT, VIF_PR_ARG)
1710);
1711
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -07001712TRACE_EVENT(api_enable_rssi_reports,
1713 TP_PROTO(struct ieee80211_sub_if_data *sdata,
1714 int rssi_min_thold, int rssi_max_thold),
1715
1716 TP_ARGS(sdata, rssi_min_thold, rssi_max_thold),
1717
1718 TP_STRUCT__entry(
1719 VIF_ENTRY
1720 __field(int, rssi_min_thold)
1721 __field(int, rssi_max_thold)
1722 ),
1723
1724 TP_fast_assign(
1725 VIF_ASSIGN;
1726 __entry->rssi_min_thold = rssi_min_thold;
1727 __entry->rssi_max_thold = rssi_max_thold;
1728 ),
1729
1730 TP_printk(
1731 VIF_PR_FMT " rssi_min_thold =%d, rssi_max_thold = %d",
1732 VIF_PR_ARG, __entry->rssi_min_thold, __entry->rssi_max_thold
1733 )
1734);
1735
Johannes Berg37fbd902011-09-29 16:04:39 +02001736TRACE_EVENT(api_eosp,
1737 TP_PROTO(struct ieee80211_local *local,
1738 struct ieee80211_sta *sta),
1739
1740 TP_ARGS(local, sta),
1741
1742 TP_STRUCT__entry(
1743 LOCAL_ENTRY
1744 STA_ENTRY
1745 ),
1746
1747 TP_fast_assign(
1748 LOCAL_ASSIGN;
1749 STA_ASSIGN;
1750 ),
1751
1752 TP_printk(
1753 LOCAL_PR_FMT STA_PR_FMT,
1754 LOCAL_PR_ARG, STA_PR_FMT
1755 )
1756);
1757
Johannes Bergb5878a22010-04-07 16:48:40 +02001758/*
1759 * Tracing for internal functions
1760 * (which may also be called in response to driver calls)
1761 */
1762
1763TRACE_EVENT(wake_queue,
1764 TP_PROTO(struct ieee80211_local *local, u16 queue,
1765 enum queue_stop_reason reason),
1766
1767 TP_ARGS(local, queue, reason),
1768
1769 TP_STRUCT__entry(
1770 LOCAL_ENTRY
1771 __field(u16, queue)
1772 __field(u32, reason)
1773 ),
1774
1775 TP_fast_assign(
1776 LOCAL_ASSIGN;
1777 __entry->queue = queue;
1778 __entry->reason = reason;
1779 ),
1780
1781 TP_printk(
1782 LOCAL_PR_FMT " queue:%d, reason:%d",
1783 LOCAL_PR_ARG, __entry->queue, __entry->reason
1784 )
1785);
1786
1787TRACE_EVENT(stop_queue,
1788 TP_PROTO(struct ieee80211_local *local, u16 queue,
1789 enum queue_stop_reason reason),
1790
1791 TP_ARGS(local, queue, reason),
1792
1793 TP_STRUCT__entry(
1794 LOCAL_ENTRY
1795 __field(u16, queue)
1796 __field(u32, reason)
1797 ),
1798
1799 TP_fast_assign(
1800 LOCAL_ASSIGN;
1801 __entry->queue = queue;
1802 __entry->reason = reason;
1803 ),
1804
1805 TP_printk(
1806 LOCAL_PR_FMT " queue:%d, reason:%d",
1807 LOCAL_PR_ARG, __entry->queue, __entry->reason
1808 )
1809);
Johannes Berg3fae0272012-06-22 13:36:25 +02001810
1811#ifdef CONFIG_MAC80211_MESSAGE_TRACING
1812#undef TRACE_SYSTEM
1813#define TRACE_SYSTEM mac80211_msg
1814
1815#define MAX_MSG_LEN 100
1816
1817DECLARE_EVENT_CLASS(mac80211_msg_event,
1818 TP_PROTO(struct va_format *vaf),
1819
1820 TP_ARGS(vaf),
1821
1822 TP_STRUCT__entry(
1823 __dynamic_array(char, msg, MAX_MSG_LEN)
1824 ),
1825
1826 TP_fast_assign(
1827 WARN_ON_ONCE(vsnprintf(__get_dynamic_array(msg),
1828 MAX_MSG_LEN, vaf->fmt,
1829 *vaf->va) >= MAX_MSG_LEN);
1830 ),
1831
1832 TP_printk("%s", __get_str(msg))
1833);
1834
1835DEFINE_EVENT(mac80211_msg_event, mac80211_info,
1836 TP_PROTO(struct va_format *vaf),
1837 TP_ARGS(vaf)
1838);
1839DEFINE_EVENT(mac80211_msg_event, mac80211_dbg,
1840 TP_PROTO(struct va_format *vaf),
1841 TP_ARGS(vaf)
1842);
1843DEFINE_EVENT(mac80211_msg_event, mac80211_err,
1844 TP_PROTO(struct va_format *vaf),
1845 TP_ARGS(vaf)
1846);
1847#endif
1848
Christian Lamparterf7428802009-07-19 23:21:07 +02001849#endif /* !__MAC80211_DRIVER_TRACE || TRACE_HEADER_MULTI_READ */
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02001850
1851#undef TRACE_INCLUDE_PATH
1852#define TRACE_INCLUDE_PATH .
1853#undef TRACE_INCLUDE_FILE
Johannes Berg011ad0e2012-06-22 12:55:52 +02001854#define TRACE_INCLUDE_FILE trace
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02001855#include <trace/define_trace.h>