mac80211: add boilerplate code for start / stop NAN
[linux-2.6-block.git] / net / wireless / trace.h
CommitLineData
14e8a3c4
BL
1#undef TRACE_SYSTEM
2#define TRACE_SYSTEM cfg80211
3
4#if !defined(__RDEV_OPS_TRACE) || defined(TRACE_HEADER_MULTI_READ)
5#define __RDEV_OPS_TRACE
6
7#include <linux/tracepoint.h>
8
9#include <linux/rtnetlink.h>
d2beae10 10#include <linux/etherdevice.h>
14e8a3c4
BL
11#include <net/cfg80211.h>
12#include "core.h"
13
14#define MAC_ENTRY(entry_mac) __array(u8, entry_mac, ETH_ALEN)
15#define MAC_ASSIGN(entry_mac, given_mac) do { \
16 if (given_mac) \
17 memcpy(__entry->entry_mac, given_mac, ETH_ALEN); \
18 else \
d2beae10 19 eth_zero_addr(__entry->entry_mac); \
14e8a3c4
BL
20 } while (0)
21#define MAC_PR_FMT "%pM"
22#define MAC_PR_ARG(entry_mac) (__entry->entry_mac)
23
ec816087
JB
24#define MAXNAME 32
25#define WIPHY_ENTRY __array(char, wiphy_name, 32)
26#define WIPHY_ASSIGN strlcpy(__entry->wiphy_name, wiphy_name(wiphy), MAXNAME)
27#define WIPHY_PR_FMT "%s"
28#define WIPHY_PR_ARG __entry->wiphy_name
29
30#define WDEV_ENTRY __field(u32, id)
ce1eadda
JB
31#define WDEV_ASSIGN (__entry->id) = (!IS_ERR_OR_NULL(wdev) \
32 ? wdev->identifier : 0)
ec816087
JB
33#define WDEV_PR_FMT "wdev(%u)"
34#define WDEV_PR_ARG (__entry->id)
35
36#define NETDEV_ENTRY __array(char, name, IFNAMSIZ) \
37 __field(int, ifindex)
14e8a3c4
BL
38#define NETDEV_ASSIGN \
39 do { \
40 memcpy(__entry->name, netdev->name, IFNAMSIZ); \
14e8a3c4
BL
41 (__entry->ifindex) = (netdev->ifindex); \
42 } while (0)
ec816087
JB
43#define NETDEV_PR_FMT "netdev:%s(%d)"
44#define NETDEV_PR_ARG __entry->name, __entry->ifindex
14e8a3c4
BL
45
46#define MESH_CFG_ENTRY __field(u16, dot11MeshRetryTimeout) \
47 __field(u16, dot11MeshConfirmTimeout) \
48 __field(u16, dot11MeshHoldingTimeout) \
49 __field(u16, dot11MeshMaxPeerLinks) \
50 __field(u8, dot11MeshMaxRetries) \
51 __field(u8, dot11MeshTTL) \
52 __field(u8, element_ttl) \
53 __field(bool, auto_open_plinks) \
54 __field(u32, dot11MeshNbrOffsetMaxNeighbor) \
55 __field(u8, dot11MeshHWMPmaxPREQretries) \
56 __field(u32, path_refresh_time) \
57 __field(u32, dot11MeshHWMPactivePathTimeout) \
58 __field(u16, min_discovery_timeout) \
59 __field(u16, dot11MeshHWMPpreqMinInterval) \
60 __field(u16, dot11MeshHWMPperrMinInterval) \
61 __field(u16, dot11MeshHWMPnetDiameterTraversalTime) \
62 __field(u8, dot11MeshHWMPRootMode) \
63 __field(u16, dot11MeshHWMPRannInterval) \
64 __field(bool, dot11MeshGateAnnouncementProtocol) \
65 __field(bool, dot11MeshForwarding) \
66 __field(s32, rssi_threshold) \
67 __field(u16, ht_opmode) \
68 __field(u32, dot11MeshHWMPactivePathToRootTimeout) \
69 __field(u16, dot11MeshHWMProotInterval) \
70 __field(u16, dot11MeshHWMPconfirmationInterval)
71#define MESH_CFG_ASSIGN \
72 do { \
73 __entry->dot11MeshRetryTimeout = conf->dot11MeshRetryTimeout; \
74 __entry->dot11MeshConfirmTimeout = \
75 conf->dot11MeshConfirmTimeout; \
76 __entry->dot11MeshHoldingTimeout = \
77 conf->dot11MeshHoldingTimeout; \
78 __entry->dot11MeshMaxPeerLinks = conf->dot11MeshMaxPeerLinks; \
79 __entry->dot11MeshMaxRetries = conf->dot11MeshMaxRetries; \
80 __entry->dot11MeshTTL = conf->dot11MeshTTL; \
81 __entry->element_ttl = conf->element_ttl; \
82 __entry->auto_open_plinks = conf->auto_open_plinks; \
83 __entry->dot11MeshNbrOffsetMaxNeighbor = \
84 conf->dot11MeshNbrOffsetMaxNeighbor; \
85 __entry->dot11MeshHWMPmaxPREQretries = \
86 conf->dot11MeshHWMPmaxPREQretries; \
87 __entry->path_refresh_time = conf->path_refresh_time; \
88 __entry->dot11MeshHWMPactivePathTimeout = \
89 conf->dot11MeshHWMPactivePathTimeout; \
90 __entry->min_discovery_timeout = conf->min_discovery_timeout; \
91 __entry->dot11MeshHWMPpreqMinInterval = \
92 conf->dot11MeshHWMPpreqMinInterval; \
93 __entry->dot11MeshHWMPperrMinInterval = \
94 conf->dot11MeshHWMPperrMinInterval; \
95 __entry->dot11MeshHWMPnetDiameterTraversalTime = \
96 conf->dot11MeshHWMPnetDiameterTraversalTime; \
97 __entry->dot11MeshHWMPRootMode = conf->dot11MeshHWMPRootMode; \
98 __entry->dot11MeshHWMPRannInterval = \
99 conf->dot11MeshHWMPRannInterval; \
100 __entry->dot11MeshGateAnnouncementProtocol = \
101 conf->dot11MeshGateAnnouncementProtocol; \
102 __entry->dot11MeshForwarding = conf->dot11MeshForwarding; \
103 __entry->rssi_threshold = conf->rssi_threshold; \
104 __entry->ht_opmode = conf->ht_opmode; \
105 __entry->dot11MeshHWMPactivePathToRootTimeout = \
106 conf->dot11MeshHWMPactivePathToRootTimeout; \
107 __entry->dot11MeshHWMProotInterval = \
108 conf->dot11MeshHWMProotInterval; \
109 __entry->dot11MeshHWMPconfirmationInterval = \
110 conf->dot11MeshHWMPconfirmationInterval; \
111 } while (0)
112
57fbcce3 113#define CHAN_ENTRY __field(enum nl80211_band, band) \
14e8a3c4
BL
114 __field(u16, center_freq)
115#define CHAN_ASSIGN(chan) \
116 do { \
117 if (chan) { \
118 __entry->band = chan->band; \
119 __entry->center_freq = chan->center_freq; \
120 } else { \
121 __entry->band = 0; \
122 __entry->center_freq = 0; \
123 } \
124 } while (0)
ec816087 125#define CHAN_PR_FMT "band: %d, freq: %u"
14e8a3c4
BL
126#define CHAN_PR_ARG __entry->band, __entry->center_freq
127
57fbcce3 128#define CHAN_DEF_ENTRY __field(enum nl80211_band, band) \
3d9d1d66
JB
129 __field(u32, control_freq) \
130 __field(u32, width) \
131 __field(u32, center_freq1) \
132 __field(u32, center_freq2)
683b6d3b
JB
133#define CHAN_DEF_ASSIGN(chandef) \
134 do { \
135 if ((chandef) && (chandef)->chan) { \
136 __entry->band = (chandef)->chan->band; \
3d9d1d66 137 __entry->control_freq = \
683b6d3b 138 (chandef)->chan->center_freq; \
3d9d1d66
JB
139 __entry->width = (chandef)->width; \
140 __entry->center_freq1 = (chandef)->center_freq1;\
141 __entry->center_freq2 = (chandef)->center_freq2;\
683b6d3b
JB
142 } else { \
143 __entry->band = 0; \
3d9d1d66
JB
144 __entry->control_freq = 0; \
145 __entry->width = 0; \
146 __entry->center_freq1 = 0; \
147 __entry->center_freq2 = 0; \
683b6d3b
JB
148 } \
149 } while (0)
3d9d1d66 150#define CHAN_DEF_PR_FMT \
ec816087 151 "band: %d, control freq: %u, width: %d, cf1: %u, cf2: %u"
3d9d1d66
JB
152#define CHAN_DEF_PR_ARG __entry->band, __entry->control_freq, \
153 __entry->width, __entry->center_freq1, \
154 __entry->center_freq2
683b6d3b 155
14e8a3c4
BL
156#define SINFO_ENTRY __field(int, generation) \
157 __field(u32, connected_time) \
158 __field(u32, inactive_time) \
159 __field(u32, rx_bytes) \
160 __field(u32, tx_bytes) \
161 __field(u32, rx_packets) \
162 __field(u32, tx_packets) \
163 __field(u32, tx_retries) \
164 __field(u32, tx_failed) \
165 __field(u32, rx_dropped_misc) \
166 __field(u32, beacon_loss_count) \
167 __field(u16, llid) \
168 __field(u16, plid) \
169 __field(u8, plink_state)
170#define SINFO_ASSIGN \
171 do { \
172 __entry->generation = sinfo->generation; \
173 __entry->connected_time = sinfo->connected_time; \
174 __entry->inactive_time = sinfo->inactive_time; \
175 __entry->rx_bytes = sinfo->rx_bytes; \
176 __entry->tx_bytes = sinfo->tx_bytes; \
177 __entry->rx_packets = sinfo->rx_packets; \
178 __entry->tx_packets = sinfo->tx_packets; \
179 __entry->tx_retries = sinfo->tx_retries; \
180 __entry->tx_failed = sinfo->tx_failed; \
181 __entry->rx_dropped_misc = sinfo->rx_dropped_misc; \
182 __entry->beacon_loss_count = sinfo->beacon_loss_count; \
183 __entry->llid = sinfo->llid; \
184 __entry->plid = sinfo->plid; \
185 __entry->plink_state = sinfo->plink_state; \
186 } while (0)
187
188#define BOOL_TO_STR(bo) (bo) ? "true" : "false"
189
fa9ffc74
KP
190#define QOS_MAP_ENTRY __field(u8, num_des) \
191 __array(u8, dscp_exception, \
192 2 * IEEE80211_QOS_MAP_MAX_EX) \
193 __array(u8, up, IEEE80211_QOS_MAP_LEN_MIN)
194#define QOS_MAP_ASSIGN(qos_map) \
195 do { \
196 if ((qos_map)) { \
197 __entry->num_des = (qos_map)->num_des; \
198 memcpy(__entry->dscp_exception, \
199 &(qos_map)->dscp_exception, \
200 2 * IEEE80211_QOS_MAP_MAX_EX); \
201 memcpy(__entry->up, &(qos_map)->up, \
202 IEEE80211_QOS_MAP_LEN_MIN); \
203 } else { \
204 __entry->num_des = 0; \
205 memset(__entry->dscp_exception, 0, \
206 2 * IEEE80211_QOS_MAP_MAX_EX); \
207 memset(__entry->up, 0, \
208 IEEE80211_QOS_MAP_LEN_MIN); \
209 } \
210 } while (0)
211
14e8a3c4
BL
212/*************************************************************
213 * rdev->ops traces *
214 *************************************************************/
215
216TRACE_EVENT(rdev_suspend,
217 TP_PROTO(struct wiphy *wiphy, struct cfg80211_wowlan *wow),
218 TP_ARGS(wiphy, wow),
219 TP_STRUCT__entry(
220 WIPHY_ENTRY
221 __field(bool, any)
222 __field(bool, disconnect)
223 __field(bool, magic_pkt)
224 __field(bool, gtk_rekey_failure)
225 __field(bool, eap_identity_req)
226 __field(bool, four_way_handshake)
227 __field(bool, rfkill_release)
228 __field(bool, valid_wow)
229 ),
230 TP_fast_assign(
231 WIPHY_ASSIGN;
232 if (wow) {
233 __entry->any = wow->any;
234 __entry->disconnect = wow->disconnect;
235 __entry->magic_pkt = wow->magic_pkt;
236 __entry->gtk_rekey_failure = wow->gtk_rekey_failure;
237 __entry->eap_identity_req = wow->eap_identity_req;
238 __entry->four_way_handshake = wow->four_way_handshake;
239 __entry->rfkill_release = wow->rfkill_release;
240 __entry->valid_wow = true;
241 } else {
242 __entry->valid_wow = false;
243 }
244 ),
245 TP_printk(WIPHY_PR_FMT ", wow%s - any: %d, disconnect: %d, "
246 "magic pkt: %d, gtk rekey failure: %d, eap identify req: %d, "
247 "four way handshake: %d, rfkill release: %d.",
248 WIPHY_PR_ARG, __entry->valid_wow ? "" : "(Not configured!)",
249 __entry->any, __entry->disconnect, __entry->magic_pkt,
250 __entry->gtk_rekey_failure, __entry->eap_identity_req,
251 __entry->four_way_handshake, __entry->rfkill_release)
252);
253
254TRACE_EVENT(rdev_return_int,
255 TP_PROTO(struct wiphy *wiphy, int ret),
256 TP_ARGS(wiphy, ret),
257 TP_STRUCT__entry(
258 WIPHY_ENTRY
259 __field(int, ret)
260 ),
261 TP_fast_assign(
262 WIPHY_ASSIGN;
263 __entry->ret = ret;
264 ),
265 TP_printk(WIPHY_PR_FMT ", returned: %d", WIPHY_PR_ARG, __entry->ret)
266);
267
268TRACE_EVENT(rdev_scan,
269 TP_PROTO(struct wiphy *wiphy, struct cfg80211_scan_request *request),
270 TP_ARGS(wiphy, request),
271 TP_STRUCT__entry(
272 WIPHY_ENTRY
273 ),
274 TP_fast_assign(
275 WIPHY_ASSIGN;
276 ),
277 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
278);
279
280DECLARE_EVENT_CLASS(wiphy_only_evt,
281 TP_PROTO(struct wiphy *wiphy),
282 TP_ARGS(wiphy),
283 TP_STRUCT__entry(
284 WIPHY_ENTRY
285 ),
286 TP_fast_assign(
287 WIPHY_ASSIGN;
288 ),
289 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
290);
291
292DEFINE_EVENT(wiphy_only_evt, rdev_resume,
293 TP_PROTO(struct wiphy *wiphy),
294 TP_ARGS(wiphy)
295);
296
297DEFINE_EVENT(wiphy_only_evt, rdev_return_void,
298 TP_PROTO(struct wiphy *wiphy),
299 TP_ARGS(wiphy)
300);
301
14e8a3c4
BL
302DEFINE_EVENT(wiphy_only_evt, rdev_get_antenna,
303 TP_PROTO(struct wiphy *wiphy),
304 TP_ARGS(wiphy)
305);
306
14e8a3c4
BL
307DEFINE_EVENT(wiphy_only_evt, rdev_rfkill_poll,
308 TP_PROTO(struct wiphy *wiphy),
309 TP_ARGS(wiphy)
310);
311
312DECLARE_EVENT_CLASS(wiphy_enabled_evt,
313 TP_PROTO(struct wiphy *wiphy, bool enabled),
314 TP_ARGS(wiphy, enabled),
315 TP_STRUCT__entry(
316 WIPHY_ENTRY
317 __field(bool, enabled)
318 ),
319 TP_fast_assign(
320 WIPHY_ASSIGN;
321 __entry->enabled = enabled;
322 ),
323 TP_printk(WIPHY_PR_FMT ", %senabled ",
324 WIPHY_PR_ARG, __entry->enabled ? "" : "not ")
325);
326
327DEFINE_EVENT(wiphy_enabled_evt, rdev_set_wakeup,
328 TP_PROTO(struct wiphy *wiphy, bool enabled),
329 TP_ARGS(wiphy, enabled)
330);
331
332TRACE_EVENT(rdev_add_virtual_intf,
333 TP_PROTO(struct wiphy *wiphy, char *name, enum nl80211_iftype type),
334 TP_ARGS(wiphy, name, type),
335 TP_STRUCT__entry(
336 WIPHY_ENTRY
337 __string(vir_intf_name, name ? name : "<noname>")
338 __field(enum nl80211_iftype, type)
339 ),
340 TP_fast_assign(
341 WIPHY_ASSIGN;
342 __assign_str(vir_intf_name, name ? name : "<noname>");
343 __entry->type = type;
344 ),
345 TP_printk(WIPHY_PR_FMT ", virtual intf name: %s, type: %d",
346 WIPHY_PR_ARG, __get_str(vir_intf_name), __entry->type)
347);
348
349DECLARE_EVENT_CLASS(wiphy_wdev_evt,
350 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
351 TP_ARGS(wiphy, wdev),
352 TP_STRUCT__entry(
353 WIPHY_ENTRY
354 WDEV_ENTRY
355 ),
356 TP_fast_assign(
357 WIPHY_ASSIGN;
358 WDEV_ASSIGN;
359 ),
ec816087 360 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
14e8a3c4
BL
361);
362
363DEFINE_EVENT(wiphy_wdev_evt, rdev_return_wdev,
364 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
365 TP_ARGS(wiphy, wdev)
366);
367
368DEFINE_EVENT(wiphy_wdev_evt, rdev_del_virtual_intf,
369 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
370 TP_ARGS(wiphy, wdev)
371);
372
373TRACE_EVENT(rdev_change_virtual_intf,
374 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
375 enum nl80211_iftype type),
376 TP_ARGS(wiphy, netdev, type),
377 TP_STRUCT__entry(
378 WIPHY_ENTRY
379 NETDEV_ENTRY
380 __field(enum nl80211_iftype, type)
381 ),
382 TP_fast_assign(
383 WIPHY_ASSIGN;
384 NETDEV_ASSIGN;
385 __entry->type = type;
386 ),
ec816087 387 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", type: %d",
14e8a3c4
BL
388 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->type)
389);
390
391DECLARE_EVENT_CLASS(key_handle,
392 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
393 bool pairwise, const u8 *mac_addr),
394 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr),
395 TP_STRUCT__entry(
396 WIPHY_ENTRY
397 NETDEV_ENTRY
398 MAC_ENTRY(mac_addr)
399 __field(u8, key_index)
400 __field(bool, pairwise)
401 ),
402 TP_fast_assign(
403 WIPHY_ASSIGN;
404 NETDEV_ASSIGN;
405 MAC_ASSIGN(mac_addr, mac_addr);
406 __entry->key_index = key_index;
407 __entry->pairwise = pairwise;
408 ),
ec816087 409 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", key_index: %u, pairwise: %s, mac addr: " MAC_PR_FMT,
14e8a3c4
BL
410 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->key_index,
411 BOOL_TO_STR(__entry->pairwise), MAC_PR_ARG(mac_addr))
412);
413
414DEFINE_EVENT(key_handle, rdev_add_key,
415 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
416 bool pairwise, const u8 *mac_addr),
417 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr)
418);
419
420DEFINE_EVENT(key_handle, rdev_get_key,
421 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
422 bool pairwise, const u8 *mac_addr),
423 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr)
424);
425
426DEFINE_EVENT(key_handle, rdev_del_key,
427 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
428 bool pairwise, const u8 *mac_addr),
429 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr)
430);
431
432TRACE_EVENT(rdev_set_default_key,
433 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
434 bool unicast, bool multicast),
435 TP_ARGS(wiphy, netdev, key_index, unicast, multicast),
436 TP_STRUCT__entry(
437 WIPHY_ENTRY
438 NETDEV_ENTRY
439 __field(u8, key_index)
440 __field(bool, unicast)
441 __field(bool, multicast)
442 ),
443 TP_fast_assign(
444 WIPHY_ASSIGN;
445 NETDEV_ASSIGN;
446 __entry->key_index = key_index;
447 __entry->unicast = unicast;
448 __entry->multicast = multicast;
449 ),
ec816087 450 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", key index: %u, unicast: %s, multicast: %s",
14e8a3c4
BL
451 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->key_index,
452 BOOL_TO_STR(__entry->unicast),
453 BOOL_TO_STR(__entry->multicast))
454);
455
456TRACE_EVENT(rdev_set_default_mgmt_key,
457 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index),
458 TP_ARGS(wiphy, netdev, key_index),
459 TP_STRUCT__entry(
460 WIPHY_ENTRY
461 NETDEV_ENTRY
462 __field(u8, key_index)
463 ),
464 TP_fast_assign(
465 WIPHY_ASSIGN;
466 NETDEV_ASSIGN;
467 __entry->key_index = key_index;
468 ),
ec816087 469 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", key index: %u",
14e8a3c4
BL
470 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->key_index)
471);
472
473TRACE_EVENT(rdev_start_ap,
474 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
475 struct cfg80211_ap_settings *settings),
476 TP_ARGS(wiphy, netdev, settings),
477 TP_STRUCT__entry(
478 WIPHY_ENTRY
479 NETDEV_ENTRY
683b6d3b 480 CHAN_DEF_ENTRY
14e8a3c4
BL
481 __field(int, beacon_interval)
482 __field(int, dtim_period)
483 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
484 __field(enum nl80211_hidden_ssid, hidden_ssid)
485 __field(u32, wpa_ver)
486 __field(bool, privacy)
487 __field(enum nl80211_auth_type, auth_type)
488 __field(int, inactivity_timeout)
489 ),
490 TP_fast_assign(
491 WIPHY_ASSIGN;
492 NETDEV_ASSIGN;
683b6d3b 493 CHAN_DEF_ASSIGN(&settings->chandef);
14e8a3c4
BL
494 __entry->beacon_interval = settings->beacon_interval;
495 __entry->dtim_period = settings->dtim_period;
496 __entry->hidden_ssid = settings->hidden_ssid;
497 __entry->wpa_ver = settings->crypto.wpa_versions;
498 __entry->privacy = settings->privacy;
499 __entry->auth_type = settings->auth_type;
500 __entry->inactivity_timeout = settings->inactivity_timeout;
501 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
502 memcpy(__entry->ssid, settings->ssid, settings->ssid_len);
503 ),
ec816087 504 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", AP settings - ssid: %s, "
683b6d3b 505 CHAN_DEF_PR_FMT ", beacon interval: %d, dtim period: %d, "
14e8a3c4
BL
506 "hidden ssid: %d, wpa versions: %u, privacy: %s, "
507 "auth type: %d, inactivity timeout: %d",
683b6d3b 508 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ssid, CHAN_DEF_PR_ARG,
14e8a3c4
BL
509 __entry->beacon_interval, __entry->dtim_period,
510 __entry->hidden_ssid, __entry->wpa_ver,
511 BOOL_TO_STR(__entry->privacy), __entry->auth_type,
512 __entry->inactivity_timeout)
513);
514
515TRACE_EVENT(rdev_change_beacon,
516 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
517 struct cfg80211_beacon_data *info),
518 TP_ARGS(wiphy, netdev, info),
519 TP_STRUCT__entry(
520 WIPHY_ENTRY
521 NETDEV_ENTRY
522 __dynamic_array(u8, head, info ? info->head_len : 0)
523 __dynamic_array(u8, tail, info ? info->tail_len : 0)
524 __dynamic_array(u8, beacon_ies, info ? info->beacon_ies_len : 0)
525 __dynamic_array(u8, proberesp_ies,
526 info ? info->proberesp_ies_len : 0)
527 __dynamic_array(u8, assocresp_ies,
528 info ? info->assocresp_ies_len : 0)
529 __dynamic_array(u8, probe_resp, info ? info->probe_resp_len : 0)
530 ),
531 TP_fast_assign(
532 WIPHY_ASSIGN;
533 NETDEV_ASSIGN;
534 if (info) {
535 if (info->head)
536 memcpy(__get_dynamic_array(head), info->head,
537 info->head_len);
538 if (info->tail)
539 memcpy(__get_dynamic_array(tail), info->tail,
540 info->tail_len);
541 if (info->beacon_ies)
542 memcpy(__get_dynamic_array(beacon_ies),
543 info->beacon_ies, info->beacon_ies_len);
544 if (info->proberesp_ies)
545 memcpy(__get_dynamic_array(proberesp_ies),
546 info->proberesp_ies,
547 info->proberesp_ies_len);
548 if (info->assocresp_ies)
549 memcpy(__get_dynamic_array(assocresp_ies),
550 info->assocresp_ies,
551 info->assocresp_ies_len);
552 if (info->probe_resp)
553 memcpy(__get_dynamic_array(probe_resp),
554 info->probe_resp, info->probe_resp_len);
555 }
556 ),
ec816087 557 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG)
14e8a3c4
BL
558);
559
560DECLARE_EVENT_CLASS(wiphy_netdev_evt,
561 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
562 TP_ARGS(wiphy, netdev),
563 TP_STRUCT__entry(
564 WIPHY_ENTRY
565 NETDEV_ENTRY
566 ),
567 TP_fast_assign(
568 WIPHY_ASSIGN;
569 NETDEV_ASSIGN;
570 ),
ec816087 571 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG)
14e8a3c4
BL
572);
573
574DEFINE_EVENT(wiphy_netdev_evt, rdev_stop_ap,
575 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
576 TP_ARGS(wiphy, netdev)
577);
578
14e8a3c4
BL
579DEFINE_EVENT(wiphy_netdev_evt, rdev_sched_scan_stop,
580 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
581 TP_ARGS(wiphy, netdev)
582);
583
584DEFINE_EVENT(wiphy_netdev_evt, rdev_set_rekey_data,
585 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
586 TP_ARGS(wiphy, netdev)
587);
588
589DEFINE_EVENT(wiphy_netdev_evt, rdev_get_mesh_config,
590 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
591 TP_ARGS(wiphy, netdev)
592);
593
594DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_mesh,
595 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
596 TP_ARGS(wiphy, netdev)
597);
598
599DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_ibss,
600 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
601 TP_ARGS(wiphy, netdev)
602);
603
6e0bd6c3
RL
604DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_ocb,
605 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
606 TP_ARGS(wiphy, netdev)
607);
608
14e8a3c4
BL
609DEFINE_EVENT(wiphy_netdev_evt, rdev_flush_pmksa,
610 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
611 TP_ARGS(wiphy, netdev)
612);
613
614DECLARE_EVENT_CLASS(station_add_change,
615 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
616 struct station_parameters *params),
617 TP_ARGS(wiphy, netdev, mac, params),
618 TP_STRUCT__entry(
619 WIPHY_ENTRY
620 NETDEV_ENTRY
621 MAC_ENTRY(sta_mac)
622 __field(u32, sta_flags_mask)
623 __field(u32, sta_flags_set)
624 __field(u32, sta_modify_mask)
625 __field(int, listen_interval)
6e045905 626 __field(u16, capability)
14e8a3c4
BL
627 __field(u16, aid)
628 __field(u8, plink_action)
629 __field(u8, plink_state)
630 __field(u8, uapsd_queues)
6e045905
JB
631 __field(u8, max_sp)
632 __field(u8, opmode_notif)
633 __field(bool, opmode_notif_used)
14e8a3c4 634 __array(u8, ht_capa, (int)sizeof(struct ieee80211_ht_cap))
6e045905 635 __array(u8, vht_capa, (int)sizeof(struct ieee80211_vht_cap))
5d8325ec 636 __array(char, vlan, IFNAMSIZ)
6e045905
JB
637 __dynamic_array(u8, supported_rates,
638 params->supported_rates_len)
639 __dynamic_array(u8, ext_capab, params->ext_capab_len)
640 __dynamic_array(u8, supported_channels,
641 params->supported_channels_len)
642 __dynamic_array(u8, supported_oper_classes,
643 params->supported_oper_classes_len)
14e8a3c4
BL
644 ),
645 TP_fast_assign(
646 WIPHY_ASSIGN;
647 NETDEV_ASSIGN;
648 MAC_ASSIGN(sta_mac, mac);
649 __entry->sta_flags_mask = params->sta_flags_mask;
650 __entry->sta_flags_set = params->sta_flags_set;
651 __entry->sta_modify_mask = params->sta_modify_mask;
652 __entry->listen_interval = params->listen_interval;
653 __entry->aid = params->aid;
654 __entry->plink_action = params->plink_action;
655 __entry->plink_state = params->plink_state;
656 __entry->uapsd_queues = params->uapsd_queues;
657 memset(__entry->ht_capa, 0, sizeof(struct ieee80211_ht_cap));
658 if (params->ht_capa)
659 memcpy(__entry->ht_capa, params->ht_capa,
660 sizeof(struct ieee80211_ht_cap));
6e045905
JB
661 memset(__entry->vht_capa, 0, sizeof(struct ieee80211_vht_cap));
662 if (params->vht_capa)
663 memcpy(__entry->vht_capa, params->vht_capa,
664 sizeof(struct ieee80211_vht_cap));
5d8325ec
JB
665 memset(__entry->vlan, 0, sizeof(__entry->vlan));
666 if (params->vlan)
667 memcpy(__entry->vlan, params->vlan->name, IFNAMSIZ);
6e045905
JB
668 if (params->supported_rates && params->supported_rates_len)
669 memcpy(__get_dynamic_array(supported_rates),
670 params->supported_rates,
671 params->supported_rates_len);
672 if (params->ext_capab && params->ext_capab_len)
673 memcpy(__get_dynamic_array(ext_capab),
674 params->ext_capab,
675 params->ext_capab_len);
676 if (params->supported_channels &&
677 params->supported_channels_len)
678 memcpy(__get_dynamic_array(supported_channels),
679 params->supported_channels,
680 params->supported_channels_len);
681 if (params->supported_oper_classes &&
682 params->supported_oper_classes_len)
683 memcpy(__get_dynamic_array(supported_oper_classes),
684 params->supported_oper_classes,
685 params->supported_oper_classes_len);
686 __entry->max_sp = params->max_sp;
687 __entry->capability = params->capability;
688 __entry->opmode_notif = params->opmode_notif;
689 __entry->opmode_notif_used = params->opmode_notif_used;
14e8a3c4 690 ),
ec816087 691 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: " MAC_PR_FMT
14e8a3c4
BL
692 ", station flags mask: %u, station flags set: %u, "
693 "station modify mask: %u, listen interval: %d, aid: %u, "
5d8325ec 694 "plink action: %u, plink state: %u, uapsd queues: %u, vlan:%s",
14e8a3c4
BL
695 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac),
696 __entry->sta_flags_mask, __entry->sta_flags_set,
697 __entry->sta_modify_mask, __entry->listen_interval,
698 __entry->aid, __entry->plink_action, __entry->plink_state,
5d8325ec 699 __entry->uapsd_queues, __entry->vlan)
14e8a3c4
BL
700);
701
702DEFINE_EVENT(station_add_change, rdev_add_station,
703 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
704 struct station_parameters *params),
705 TP_ARGS(wiphy, netdev, mac, params)
706);
707
708DEFINE_EVENT(station_add_change, rdev_change_station,
709 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
710 struct station_parameters *params),
711 TP_ARGS(wiphy, netdev, mac, params)
712);
713
714DECLARE_EVENT_CLASS(wiphy_netdev_mac_evt,
715 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
716 TP_ARGS(wiphy, netdev, mac),
717 TP_STRUCT__entry(
718 WIPHY_ENTRY
719 NETDEV_ENTRY
720 MAC_ENTRY(sta_mac)
721 ),
722 TP_fast_assign(
723 WIPHY_ASSIGN;
724 NETDEV_ASSIGN;
725 MAC_ASSIGN(sta_mac, mac);
726 ),
ec816087 727 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mac: " MAC_PR_FMT,
14e8a3c4
BL
728 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac))
729);
730
89c771e5
JM
731DECLARE_EVENT_CLASS(station_del,
732 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
733 struct station_del_parameters *params),
734 TP_ARGS(wiphy, netdev, params),
735 TP_STRUCT__entry(
736 WIPHY_ENTRY
737 NETDEV_ENTRY
738 MAC_ENTRY(sta_mac)
98856866
JM
739 __field(u8, subtype)
740 __field(u16, reason_code)
89c771e5
JM
741 ),
742 TP_fast_assign(
743 WIPHY_ASSIGN;
744 NETDEV_ASSIGN;
745 MAC_ASSIGN(sta_mac, params->mac);
98856866
JM
746 __entry->subtype = params->subtype;
747 __entry->reason_code = params->reason_code;
89c771e5 748 ),
98856866
JM
749 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: " MAC_PR_FMT
750 ", subtype: %u, reason_code: %u",
751 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac),
752 __entry->subtype, __entry->reason_code)
89c771e5
JM
753);
754
755DEFINE_EVENT(station_del, rdev_del_station,
756 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
757 struct station_del_parameters *params),
758 TP_ARGS(wiphy, netdev, params)
14e8a3c4
BL
759);
760
761DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_get_station,
762 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
763 TP_ARGS(wiphy, netdev, mac)
764);
765
766DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_del_mpath,
767 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
768 TP_ARGS(wiphy, netdev, mac)
769);
770
771DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_set_wds_peer,
772 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
773 TP_ARGS(wiphy, netdev, mac)
774);
775
776TRACE_EVENT(rdev_dump_station,
777 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx,
778 u8 *mac),
779 TP_ARGS(wiphy, netdev, idx, mac),
780 TP_STRUCT__entry(
781 WIPHY_ENTRY
782 NETDEV_ENTRY
783 MAC_ENTRY(sta_mac)
784 __field(int, idx)
785 ),
786 TP_fast_assign(
787 WIPHY_ASSIGN;
788 NETDEV_ASSIGN;
789 MAC_ASSIGN(sta_mac, mac);
790 __entry->idx = idx;
791 ),
ec816087 792 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: " MAC_PR_FMT ", idx: %d",
14e8a3c4
BL
793 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac),
794 __entry->idx)
795);
796
797TRACE_EVENT(rdev_return_int_station_info,
798 TP_PROTO(struct wiphy *wiphy, int ret, struct station_info *sinfo),
799 TP_ARGS(wiphy, ret, sinfo),
800 TP_STRUCT__entry(
801 WIPHY_ENTRY
802 __field(int, ret)
803 SINFO_ENTRY
804 ),
805 TP_fast_assign(
806 WIPHY_ASSIGN;
807 __entry->ret = ret;
808 SINFO_ASSIGN;
809 ),
810 TP_printk(WIPHY_PR_FMT ", returned %d" ,
811 WIPHY_PR_ARG, __entry->ret)
812);
813
814DECLARE_EVENT_CLASS(mpath_evt,
815 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
816 u8 *next_hop),
817 TP_ARGS(wiphy, netdev, dst, next_hop),
818 TP_STRUCT__entry(
819 WIPHY_ENTRY
820 NETDEV_ENTRY
821 MAC_ENTRY(dst)
822 MAC_ENTRY(next_hop)
823 ),
824 TP_fast_assign(
825 WIPHY_ASSIGN;
826 NETDEV_ASSIGN;
827 MAC_ASSIGN(dst, dst);
828 MAC_ASSIGN(next_hop, next_hop);
829 ),
ec816087 830 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", destination: " MAC_PR_FMT ", next hop: " MAC_PR_FMT,
14e8a3c4
BL
831 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(dst),
832 MAC_PR_ARG(next_hop))
833);
834
835DEFINE_EVENT(mpath_evt, rdev_add_mpath,
836 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
837 u8 *next_hop),
838 TP_ARGS(wiphy, netdev, dst, next_hop)
839);
840
841DEFINE_EVENT(mpath_evt, rdev_change_mpath,
842 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
843 u8 *next_hop),
844 TP_ARGS(wiphy, netdev, dst, next_hop)
845);
846
847DEFINE_EVENT(mpath_evt, rdev_get_mpath,
848 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
849 u8 *next_hop),
850 TP_ARGS(wiphy, netdev, dst, next_hop)
851);
852
853TRACE_EVENT(rdev_dump_mpath,
854 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx,
855 u8 *dst, u8 *next_hop),
856 TP_ARGS(wiphy, netdev, idx, dst, next_hop),
857 TP_STRUCT__entry(
858 WIPHY_ENTRY
859 NETDEV_ENTRY
860 MAC_ENTRY(dst)
861 MAC_ENTRY(next_hop)
862 __field(int, idx)
863 ),
864 TP_fast_assign(
865 WIPHY_ASSIGN;
866 NETDEV_ASSIGN;
867 MAC_ASSIGN(dst, dst);
868 MAC_ASSIGN(next_hop, next_hop);
869 __entry->idx = idx;
870 ),
ec816087 871 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d, destination: "
14e8a3c4
BL
872 MAC_PR_FMT ", next hop: " MAC_PR_FMT,
873 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx, MAC_PR_ARG(dst),
874 MAC_PR_ARG(next_hop))
875);
876
66be7d2b
HR
877TRACE_EVENT(rdev_get_mpp,
878 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
879 u8 *dst, u8 *mpp),
880 TP_ARGS(wiphy, netdev, dst, mpp),
881 TP_STRUCT__entry(
882 WIPHY_ENTRY
883 NETDEV_ENTRY
884 MAC_ENTRY(dst)
885 MAC_ENTRY(mpp)
886 ),
887 TP_fast_assign(
888 WIPHY_ASSIGN;
889 NETDEV_ASSIGN;
890 MAC_ASSIGN(dst, dst);
891 MAC_ASSIGN(mpp, mpp);
892 ),
893 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", destination: " MAC_PR_FMT
894 ", mpp: " MAC_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG,
895 MAC_PR_ARG(dst), MAC_PR_ARG(mpp))
896);
897
898TRACE_EVENT(rdev_dump_mpp,
899 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx,
900 u8 *dst, u8 *mpp),
901 TP_ARGS(wiphy, netdev, idx, mpp, dst),
902 TP_STRUCT__entry(
903 WIPHY_ENTRY
904 NETDEV_ENTRY
905 MAC_ENTRY(dst)
906 MAC_ENTRY(mpp)
907 __field(int, idx)
908 ),
909 TP_fast_assign(
910 WIPHY_ASSIGN;
911 NETDEV_ASSIGN;
912 MAC_ASSIGN(dst, dst);
913 MAC_ASSIGN(mpp, mpp);
914 __entry->idx = idx;
915 ),
916 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d, destination: "
917 MAC_PR_FMT ", mpp: " MAC_PR_FMT,
918 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx, MAC_PR_ARG(dst),
919 MAC_PR_ARG(mpp))
920);
921
14e8a3c4
BL
922TRACE_EVENT(rdev_return_int_mpath_info,
923 TP_PROTO(struct wiphy *wiphy, int ret, struct mpath_info *pinfo),
924 TP_ARGS(wiphy, ret, pinfo),
925 TP_STRUCT__entry(
926 WIPHY_ENTRY
927 __field(int, ret)
928 __field(int, generation)
929 __field(u32, filled)
930 __field(u32, frame_qlen)
931 __field(u32, sn)
932 __field(u32, metric)
933 __field(u32, exptime)
934 __field(u32, discovery_timeout)
935 __field(u8, discovery_retries)
936 __field(u8, flags)
937 ),
938 TP_fast_assign(
939 WIPHY_ASSIGN;
940 __entry->ret = ret;
941 __entry->generation = pinfo->generation;
942 __entry->filled = pinfo->filled;
943 __entry->frame_qlen = pinfo->frame_qlen;
944 __entry->sn = pinfo->sn;
945 __entry->metric = pinfo->metric;
946 __entry->exptime = pinfo->exptime;
947 __entry->discovery_timeout = pinfo->discovery_timeout;
948 __entry->discovery_retries = pinfo->discovery_retries;
949 __entry->flags = pinfo->flags;
950 ),
951 TP_printk(WIPHY_PR_FMT ", returned %d. mpath info - generation: %d, "
952 "filled: %u, frame qlen: %u, sn: %u, metric: %u, exptime: %u,"
953 " discovery timeout: %u, discovery retries: %u, flags: %u",
954 WIPHY_PR_ARG, __entry->ret, __entry->generation,
955 __entry->filled, __entry->frame_qlen, __entry->sn,
956 __entry->metric, __entry->exptime, __entry->discovery_timeout,
957 __entry->discovery_retries, __entry->flags)
958);
959
960TRACE_EVENT(rdev_return_int_mesh_config,
961 TP_PROTO(struct wiphy *wiphy, int ret, struct mesh_config *conf),
962 TP_ARGS(wiphy, ret, conf),
963 TP_STRUCT__entry(
964 WIPHY_ENTRY
965 MESH_CFG_ENTRY
966 __field(int, ret)
967 ),
968 TP_fast_assign(
969 WIPHY_ASSIGN;
970 MESH_CFG_ASSIGN;
971 __entry->ret = ret;
972 ),
973 TP_printk(WIPHY_PR_FMT ", returned: %d",
974 WIPHY_PR_ARG, __entry->ret)
975);
976
977TRACE_EVENT(rdev_update_mesh_config,
978 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u32 mask,
979 const struct mesh_config *conf),
980 TP_ARGS(wiphy, netdev, mask, conf),
981 TP_STRUCT__entry(
982 WIPHY_ENTRY
983 NETDEV_ENTRY
984 MESH_CFG_ENTRY
985 __field(u32, mask)
986 ),
987 TP_fast_assign(
988 WIPHY_ASSIGN;
989 NETDEV_ASSIGN;
990 MESH_CFG_ASSIGN;
991 __entry->mask = mask;
992 ),
ec816087 993 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mask: %u",
14e8a3c4
BL
994 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->mask)
995);
996
997TRACE_EVENT(rdev_join_mesh,
998 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
999 const struct mesh_config *conf,
1000 const struct mesh_setup *setup),
1001 TP_ARGS(wiphy, netdev, conf, setup),
1002 TP_STRUCT__entry(
1003 WIPHY_ENTRY
1004 NETDEV_ENTRY
1005 MESH_CFG_ENTRY
1006 ),
1007 TP_fast_assign(
1008 WIPHY_ASSIGN;
1009 NETDEV_ASSIGN;
1010 MESH_CFG_ASSIGN;
1011 ),
ec816087 1012 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
14e8a3c4
BL
1013 WIPHY_PR_ARG, NETDEV_PR_ARG)
1014);
1015
1016TRACE_EVENT(rdev_change_bss,
1017 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1018 struct bss_parameters *params),
1019 TP_ARGS(wiphy, netdev, params),
1020 TP_STRUCT__entry(
1021 WIPHY_ENTRY
1022 NETDEV_ENTRY
1023 __field(int, use_cts_prot)
1024 __field(int, use_short_preamble)
1025 __field(int, use_short_slot_time)
1026 __field(int, ap_isolate)
1027 __field(int, ht_opmode)
1028 ),
1029 TP_fast_assign(
1030 WIPHY_ASSIGN;
1031 NETDEV_ASSIGN;
1032 __entry->use_cts_prot = params->use_cts_prot;
1033 __entry->use_short_preamble = params->use_short_preamble;
1034 __entry->use_short_slot_time = params->use_short_slot_time;
1035 __entry->ap_isolate = params->ap_isolate;
1036 __entry->ht_opmode = params->ht_opmode;
1037 ),
ec816087 1038 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", use cts prot: %d, "
14e8a3c4
BL
1039 "use short preamble: %d, use short slot time: %d, "
1040 "ap isolate: %d, ht opmode: %d",
1041 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->use_cts_prot,
1042 __entry->use_short_preamble, __entry->use_short_slot_time,
1043 __entry->ap_isolate, __entry->ht_opmode)
1044);
1045
1046TRACE_EVENT(rdev_set_txq_params,
1047 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1048 struct ieee80211_txq_params *params),
1049 TP_ARGS(wiphy, netdev, params),
1050 TP_STRUCT__entry(
1051 WIPHY_ENTRY
1052 NETDEV_ENTRY
1053 __field(enum nl80211_ac, ac)
1054 __field(u16, txop)
1055 __field(u16, cwmin)
1056 __field(u16, cwmax)
1057 __field(u8, aifs)
1058 ),
1059 TP_fast_assign(
1060 WIPHY_ASSIGN;
1061 NETDEV_ASSIGN;
1062 __entry->ac = params->ac;
1063 __entry->txop = params->txop;
1064 __entry->cwmin = params->cwmin;
1065 __entry->cwmax = params->cwmax;
1066 __entry->aifs = params->aifs;
1067 ),
ec816087 1068 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", ac: %d, txop: %u, cwmin: %u, cwmax: %u, aifs: %u",
14e8a3c4
BL
1069 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ac, __entry->txop,
1070 __entry->cwmin, __entry->cwmax, __entry->aifs)
1071);
1072
1073TRACE_EVENT(rdev_libertas_set_mesh_channel,
1074 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1075 struct ieee80211_channel *chan),
1076 TP_ARGS(wiphy, netdev, chan),
1077 TP_STRUCT__entry(
1078 WIPHY_ENTRY
1079 NETDEV_ENTRY
1080 CHAN_ENTRY
1081 ),
1082 TP_fast_assign(
1083 WIPHY_ASSIGN;
1084 NETDEV_ASSIGN;
1085 CHAN_ASSIGN(chan);
1086 ),
ec816087 1087 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_PR_FMT, WIPHY_PR_ARG,
14e8a3c4
BL
1088 NETDEV_PR_ARG, CHAN_PR_ARG)
1089);
1090
1091TRACE_EVENT(rdev_set_monitor_channel,
683b6d3b
JB
1092 TP_PROTO(struct wiphy *wiphy,
1093 struct cfg80211_chan_def *chandef),
1094 TP_ARGS(wiphy, chandef),
14e8a3c4
BL
1095 TP_STRUCT__entry(
1096 WIPHY_ENTRY
683b6d3b 1097 CHAN_DEF_ENTRY
14e8a3c4
BL
1098 ),
1099 TP_fast_assign(
1100 WIPHY_ASSIGN;
683b6d3b 1101 CHAN_DEF_ASSIGN(chandef);
14e8a3c4 1102 ),
ec816087 1103 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
683b6d3b 1104 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
14e8a3c4
BL
1105);
1106
1107TRACE_EVENT(rdev_auth,
1108 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1109 struct cfg80211_auth_request *req),
1110 TP_ARGS(wiphy, netdev, req),
1111 TP_STRUCT__entry(
1112 WIPHY_ENTRY
1113 NETDEV_ENTRY
1114 MAC_ENTRY(bssid)
1115 __field(enum nl80211_auth_type, auth_type)
1116 ),
1117 TP_fast_assign(
1118 WIPHY_ASSIGN;
1119 NETDEV_ASSIGN;
1120 if (req->bss)
1121 MAC_ASSIGN(bssid, req->bss->bssid);
1122 else
d2beae10 1123 eth_zero_addr(__entry->bssid);
14e8a3c4
BL
1124 __entry->auth_type = req->auth_type;
1125 ),
ec816087 1126 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", auth type: %d, bssid: " MAC_PR_FMT,
14e8a3c4
BL
1127 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->auth_type,
1128 MAC_PR_ARG(bssid))
1129);
1130
1131TRACE_EVENT(rdev_assoc,
1132 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1133 struct cfg80211_assoc_request *req),
1134 TP_ARGS(wiphy, netdev, req),
1135 TP_STRUCT__entry(
1136 WIPHY_ENTRY
1137 NETDEV_ENTRY
1138 MAC_ENTRY(bssid)
1139 MAC_ENTRY(prev_bssid)
1140 __field(bool, use_mfp)
1141 __field(u32, flags)
1142 ),
1143 TP_fast_assign(
1144 WIPHY_ASSIGN;
1145 NETDEV_ASSIGN;
1146 if (req->bss)
1147 MAC_ASSIGN(bssid, req->bss->bssid);
1148 else
d2beae10 1149 eth_zero_addr(__entry->bssid);
14e8a3c4
BL
1150 MAC_ASSIGN(prev_bssid, req->prev_bssid);
1151 __entry->use_mfp = req->use_mfp;
1152 __entry->flags = req->flags;
1153 ),
ec816087 1154 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT
14e8a3c4
BL
1155 ", previous bssid: " MAC_PR_FMT ", use mfp: %s, flags: %u",
1156 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid),
1157 MAC_PR_ARG(prev_bssid), BOOL_TO_STR(__entry->use_mfp),
1158 __entry->flags)
1159);
1160
1161TRACE_EVENT(rdev_deauth,
1162 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1163 struct cfg80211_deauth_request *req),
1164 TP_ARGS(wiphy, netdev, req),
1165 TP_STRUCT__entry(
1166 WIPHY_ENTRY
1167 NETDEV_ENTRY
1168 MAC_ENTRY(bssid)
1169 __field(u16, reason_code)
1170 ),
1171 TP_fast_assign(
1172 WIPHY_ASSIGN;
1173 NETDEV_ASSIGN;
1174 MAC_ASSIGN(bssid, req->bssid);
1175 __entry->reason_code = req->reason_code;
1176 ),
ec816087 1177 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT ", reason: %u",
14e8a3c4
BL
1178 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid),
1179 __entry->reason_code)
1180);
1181
1182TRACE_EVENT(rdev_disassoc,
1183 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1184 struct cfg80211_disassoc_request *req),
1185 TP_ARGS(wiphy, netdev, req),
1186 TP_STRUCT__entry(
1187 WIPHY_ENTRY
1188 NETDEV_ENTRY
1189 MAC_ENTRY(bssid)
1190 __field(u16, reason_code)
1191 __field(bool, local_state_change)
1192 ),
1193 TP_fast_assign(
1194 WIPHY_ASSIGN;
1195 NETDEV_ASSIGN;
1196 if (req->bss)
1197 MAC_ASSIGN(bssid, req->bss->bssid);
1198 else
d2beae10 1199 eth_zero_addr(__entry->bssid);
14e8a3c4
BL
1200 __entry->reason_code = req->reason_code;
1201 __entry->local_state_change = req->local_state_change;
1202 ),
ec816087 1203 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT
14e8a3c4
BL
1204 ", reason: %u, local state change: %s",
1205 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid),
1206 __entry->reason_code,
1207 BOOL_TO_STR(__entry->local_state_change))
1208);
1209
1210TRACE_EVENT(rdev_mgmt_tx_cancel_wait,
1211 TP_PROTO(struct wiphy *wiphy,
1212 struct wireless_dev *wdev, u64 cookie),
1213 TP_ARGS(wiphy, wdev, cookie),
1214 TP_STRUCT__entry(
1215 WIPHY_ENTRY
1216 WDEV_ENTRY
1217 __field(u64, cookie)
1218 ),
1219 TP_fast_assign(
1220 WIPHY_ASSIGN;
1221 WDEV_ASSIGN;
1222 __entry->cookie = cookie;
1223 ),
ec816087 1224 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %llu ",
14e8a3c4
BL
1225 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
1226);
1227
1228TRACE_EVENT(rdev_set_power_mgmt,
1229 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1230 bool enabled, int timeout),
1231 TP_ARGS(wiphy, netdev, enabled, timeout),
1232 TP_STRUCT__entry(
1233 WIPHY_ENTRY
1234 NETDEV_ENTRY
1235 __field(bool, enabled)
1236 __field(int, timeout)
1237 ),
1238 TP_fast_assign(
1239 WIPHY_ASSIGN;
1240 NETDEV_ASSIGN;
1241 __entry->enabled = enabled;
1242 __entry->timeout = timeout;
1243 ),
ec816087 1244 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %senabled, timeout: %d ",
14e8a3c4
BL
1245 WIPHY_PR_ARG, NETDEV_PR_ARG,
1246 __entry->enabled ? "" : "not ", __entry->timeout)
1247);
1248
1249TRACE_EVENT(rdev_connect,
1250 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1251 struct cfg80211_connect_params *sme),
1252 TP_ARGS(wiphy, netdev, sme),
1253 TP_STRUCT__entry(
1254 WIPHY_ENTRY
1255 NETDEV_ENTRY
1256 MAC_ENTRY(bssid)
1257 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
1258 __field(enum nl80211_auth_type, auth_type)
1259 __field(bool, privacy)
1260 __field(u32, wpa_versions)
1261 __field(u32, flags)
ba6fbacf 1262 MAC_ENTRY(prev_bssid)
14e8a3c4
BL
1263 ),
1264 TP_fast_assign(
1265 WIPHY_ASSIGN;
1266 NETDEV_ASSIGN;
1267 MAC_ASSIGN(bssid, sme->bssid);
1268 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
1269 memcpy(__entry->ssid, sme->ssid, sme->ssid_len);
1270 __entry->auth_type = sme->auth_type;
1271 __entry->privacy = sme->privacy;
1272 __entry->wpa_versions = sme->crypto.wpa_versions;
1273 __entry->flags = sme->flags;
ba6fbacf 1274 MAC_ASSIGN(prev_bssid, sme->prev_bssid);
14e8a3c4 1275 ),
ec816087 1276 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT
14e8a3c4 1277 ", ssid: %s, auth type: %d, privacy: %s, wpa versions: %u, "
ba6fbacf 1278 "flags: %u, previous bssid: " MAC_PR_FMT,
14e8a3c4
BL
1279 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid), __entry->ssid,
1280 __entry->auth_type, BOOL_TO_STR(__entry->privacy),
ba6fbacf 1281 __entry->wpa_versions, __entry->flags, MAC_PR_ARG(prev_bssid))
14e8a3c4
BL
1282);
1283
1284TRACE_EVENT(rdev_set_cqm_rssi_config,
1285 TP_PROTO(struct wiphy *wiphy,
1286 struct net_device *netdev, s32 rssi_thold,
1287 u32 rssi_hyst),
1288 TP_ARGS(wiphy, netdev, rssi_thold, rssi_hyst),
1289 TP_STRUCT__entry(
1290 WIPHY_ENTRY
1291 NETDEV_ENTRY
1292 __field(s32, rssi_thold)
1293 __field(u32, rssi_hyst)
1294 ),
1295 TP_fast_assign(
1296 WIPHY_ASSIGN;
1297 NETDEV_ASSIGN;
1298 __entry->rssi_thold = rssi_thold;
1299 __entry->rssi_hyst = rssi_hyst;
1300 ),
ec816087 1301 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT
14e8a3c4
BL
1302 ", rssi_thold: %d, rssi_hyst: %u ",
1303 WIPHY_PR_ARG, NETDEV_PR_ARG,
1304 __entry->rssi_thold, __entry->rssi_hyst)
1305);
1306
1307TRACE_EVENT(rdev_set_cqm_txe_config,
1308 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u32 rate,
1309 u32 pkts, u32 intvl),
1310 TP_ARGS(wiphy, netdev, rate, pkts, intvl),
1311 TP_STRUCT__entry(
1312 WIPHY_ENTRY
1313 NETDEV_ENTRY
1314 __field(u32, rate)
1315 __field(u32, pkts)
1316 __field(u32, intvl)
1317 ),
1318 TP_fast_assign(
1319 WIPHY_ASSIGN;
1320 NETDEV_ASSIGN;
1321 __entry->rate = rate;
1322 __entry->pkts = pkts;
1323 __entry->intvl = intvl;
1324 ),
ec816087 1325 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", rate: %u, packets: %u, interval: %u",
14e8a3c4
BL
1326 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->rate, __entry->pkts,
1327 __entry->intvl)
1328);
1329
1330TRACE_EVENT(rdev_disconnect,
1331 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1332 u16 reason_code),
1333 TP_ARGS(wiphy, netdev, reason_code),
1334 TP_STRUCT__entry(
1335 WIPHY_ENTRY
1336 NETDEV_ENTRY
1337 __field(u16, reason_code)
1338 ),
1339 TP_fast_assign(
1340 WIPHY_ASSIGN;
1341 NETDEV_ASSIGN;
1342 __entry->reason_code = reason_code;
1343 ),
ec816087 1344 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", reason code: %u", WIPHY_PR_ARG,
14e8a3c4
BL
1345 NETDEV_PR_ARG, __entry->reason_code)
1346);
1347
1348TRACE_EVENT(rdev_join_ibss,
1349 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1350 struct cfg80211_ibss_params *params),
1351 TP_ARGS(wiphy, netdev, params),
1352 TP_STRUCT__entry(
1353 WIPHY_ENTRY
1354 NETDEV_ENTRY
1355 MAC_ENTRY(bssid)
1356 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
1357 ),
1358 TP_fast_assign(
1359 WIPHY_ASSIGN;
1360 NETDEV_ASSIGN;
1361 MAC_ASSIGN(bssid, params->bssid);
1362 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
1363 memcpy(__entry->ssid, params->ssid, params->ssid_len);
1364 ),
ec816087 1365 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT ", ssid: %s",
14e8a3c4
BL
1366 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid), __entry->ssid)
1367);
1368
6e0bd6c3
RL
1369TRACE_EVENT(rdev_join_ocb,
1370 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1371 const struct ocb_setup *setup),
1372 TP_ARGS(wiphy, netdev, setup),
1373 TP_STRUCT__entry(
1374 WIPHY_ENTRY
1375 NETDEV_ENTRY
1376 ),
1377 TP_fast_assign(
1378 WIPHY_ASSIGN;
1379 NETDEV_ASSIGN;
1380 ),
1381 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
1382 WIPHY_PR_ARG, NETDEV_PR_ARG)
1383);
1384
14e8a3c4
BL
1385TRACE_EVENT(rdev_set_wiphy_params,
1386 TP_PROTO(struct wiphy *wiphy, u32 changed),
1387 TP_ARGS(wiphy, changed),
1388 TP_STRUCT__entry(
1389 WIPHY_ENTRY
1390 __field(u32, changed)
1391 ),
1392 TP_fast_assign(
1393 WIPHY_ASSIGN;
1394 __entry->changed = changed;
1395 ),
1396 TP_printk(WIPHY_PR_FMT ", changed: %u",
1397 WIPHY_PR_ARG, __entry->changed)
1398);
1399
c8442118
JB
1400DEFINE_EVENT(wiphy_wdev_evt, rdev_get_tx_power,
1401 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1402 TP_ARGS(wiphy, wdev)
1403);
1404
14e8a3c4 1405TRACE_EVENT(rdev_set_tx_power,
c8442118
JB
1406 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1407 enum nl80211_tx_power_setting type, int mbm),
1408 TP_ARGS(wiphy, wdev, type, mbm),
14e8a3c4
BL
1409 TP_STRUCT__entry(
1410 WIPHY_ENTRY
c8442118 1411 WDEV_ENTRY
14e8a3c4
BL
1412 __field(enum nl80211_tx_power_setting, type)
1413 __field(int, mbm)
1414 ),
1415 TP_fast_assign(
1416 WIPHY_ASSIGN;
c8442118 1417 WDEV_ASSIGN;
14e8a3c4
BL
1418 __entry->type = type;
1419 __entry->mbm = mbm;
1420 ),
ec816087 1421 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", type: %u, mbm: %d",
c8442118 1422 WIPHY_PR_ARG, WDEV_PR_ARG,__entry->type, __entry->mbm)
14e8a3c4
BL
1423);
1424
1425TRACE_EVENT(rdev_return_int_int,
1426 TP_PROTO(struct wiphy *wiphy, int func_ret, int func_fill),
1427 TP_ARGS(wiphy, func_ret, func_fill),
1428 TP_STRUCT__entry(
1429 WIPHY_ENTRY
1430 __field(int, func_ret)
1431 __field(int, func_fill)
1432 ),
1433 TP_fast_assign(
1434 WIPHY_ASSIGN;
1435 __entry->func_ret = func_ret;
1436 __entry->func_fill = func_fill;
1437 ),
1438 TP_printk(WIPHY_PR_FMT ", function returns: %d, function filled: %d",
1439 WIPHY_PR_ARG, __entry->func_ret, __entry->func_fill)
1440);
1441
1442#ifdef CONFIG_NL80211_TESTMODE
1443TRACE_EVENT(rdev_testmode_cmd,
fc73f11f
DS
1444 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1445 TP_ARGS(wiphy, wdev),
14e8a3c4
BL
1446 TP_STRUCT__entry(
1447 WIPHY_ENTRY
fc73f11f 1448 WDEV_ENTRY
14e8a3c4
BL
1449 ),
1450 TP_fast_assign(
1451 WIPHY_ASSIGN;
fc73f11f 1452 WDEV_ASSIGN;
14e8a3c4 1453 ),
fc73f11f 1454 TP_printk(WIPHY_PR_FMT WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
14e8a3c4
BL
1455);
1456
1457TRACE_EVENT(rdev_testmode_dump,
1458 TP_PROTO(struct wiphy *wiphy),
1459 TP_ARGS(wiphy),
1460 TP_STRUCT__entry(
1461 WIPHY_ENTRY
1462 ),
1463 TP_fast_assign(
1464 WIPHY_ASSIGN;
1465 ),
1466 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
1467);
1468#endif /* CONFIG_NL80211_TESTMODE */
1469
1470TRACE_EVENT(rdev_set_bitrate_mask,
1471 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1472 const u8 *peer, const struct cfg80211_bitrate_mask *mask),
1473 TP_ARGS(wiphy, netdev, peer, mask),
1474 TP_STRUCT__entry(
1475 WIPHY_ENTRY
1476 NETDEV_ENTRY
1477 MAC_ENTRY(peer)
1478 ),
1479 TP_fast_assign(
1480 WIPHY_ASSIGN;
1481 NETDEV_ASSIGN;
1482 MAC_ASSIGN(peer, peer);
1483 ),
ec816087 1484 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: " MAC_PR_FMT,
14e8a3c4
BL
1485 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer))
1486);
1487
1488TRACE_EVENT(rdev_mgmt_frame_register,
1489 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1490 u16 frame_type, bool reg),
1491 TP_ARGS(wiphy, wdev, frame_type, reg),
1492 TP_STRUCT__entry(
1493 WIPHY_ENTRY
1494 WDEV_ENTRY
1495 __field(u16, frame_type)
1496 __field(bool, reg)
1497 ),
1498 TP_fast_assign(
1499 WIPHY_ASSIGN;
1500 WDEV_ASSIGN;
1501 __entry->frame_type = frame_type;
1502 __entry->reg = reg;
1503 ),
ec816087 1504 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", frame_type: 0x%.2x, reg: %s ",
14e8a3c4
BL
1505 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->frame_type,
1506 __entry->reg ? "true" : "false")
1507);
1508
1509TRACE_EVENT(rdev_return_int_tx_rx,
1510 TP_PROTO(struct wiphy *wiphy, int ret, u32 tx, u32 rx),
1511 TP_ARGS(wiphy, ret, tx, rx),
1512 TP_STRUCT__entry(
1513 WIPHY_ENTRY
1514 __field(int, ret)
1515 __field(u32, tx)
1516 __field(u32, rx)
1517 ),
1518 TP_fast_assign(
1519 WIPHY_ASSIGN;
1520 __entry->ret = ret;
1521 __entry->tx = tx;
1522 __entry->rx = rx;
1523 ),
1524 TP_printk(WIPHY_PR_FMT ", returned %d, tx: %u, rx: %u",
1525 WIPHY_PR_ARG, __entry->ret, __entry->tx, __entry->rx)
1526);
1527
1528TRACE_EVENT(rdev_return_void_tx_rx,
1529 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 tx_max,
1530 u32 rx, u32 rx_max),
1531 TP_ARGS(wiphy, tx, tx_max, rx, rx_max),
1532 TP_STRUCT__entry(
1533 WIPHY_ENTRY
1534 __field(u32, tx)
1535 __field(u32, tx_max)
1536 __field(u32, rx)
1537 __field(u32, rx_max)
1538 ),
1539 TP_fast_assign(
1540 WIPHY_ASSIGN;
1541 __entry->tx = tx;
1542 __entry->tx_max = tx_max;
1543 __entry->rx = rx;
1544 __entry->rx_max = rx_max;
1545 ),
1546 TP_printk(WIPHY_PR_FMT ", tx: %u, tx_max: %u, rx: %u, rx_max: %u ",
1547 WIPHY_PR_ARG, __entry->tx, __entry->tx_max, __entry->rx,
1548 __entry->rx_max)
1549);
1550
1551DECLARE_EVENT_CLASS(tx_rx_evt,
1552 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 rx),
1553 TP_ARGS(wiphy, rx, tx),
1554 TP_STRUCT__entry(
1555 WIPHY_ENTRY
1556 __field(u32, tx)
1557 __field(u32, rx)
1558 ),
1559 TP_fast_assign(
1560 WIPHY_ASSIGN;
1561 __entry->tx = tx;
1562 __entry->rx = rx;
1563 ),
1564 TP_printk(WIPHY_PR_FMT ", tx: %u, rx: %u ",
1565 WIPHY_PR_ARG, __entry->tx, __entry->rx)
1566);
1567
14e8a3c4
BL
1568DEFINE_EVENT(tx_rx_evt, rdev_set_antenna,
1569 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 rx),
1570 TP_ARGS(wiphy, rx, tx)
1571);
1572
1573TRACE_EVENT(rdev_sched_scan_start,
1574 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1575 struct cfg80211_sched_scan_request *request),
1576 TP_ARGS(wiphy, netdev, request),
1577 TP_STRUCT__entry(
1578 WIPHY_ENTRY
1579 NETDEV_ENTRY
1580 ),
1581 TP_fast_assign(
1582 WIPHY_ASSIGN;
1583 NETDEV_ASSIGN;
1584 ),
ec816087 1585 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
14e8a3c4
BL
1586 WIPHY_PR_ARG, NETDEV_PR_ARG)
1587);
1588
1589TRACE_EVENT(rdev_tdls_mgmt,
1590 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1591 u8 *peer, u8 action_code, u8 dialog_token,
df942e7b 1592 u16 status_code, u32 peer_capability,
31fa97c5 1593 bool initiator, const u8 *buf, size_t len),
14e8a3c4 1594 TP_ARGS(wiphy, netdev, peer, action_code, dialog_token, status_code,
31fa97c5 1595 peer_capability, initiator, buf, len),
14e8a3c4
BL
1596 TP_STRUCT__entry(
1597 WIPHY_ENTRY
1598 NETDEV_ENTRY
1599 MAC_ENTRY(peer)
1600 __field(u8, action_code)
1601 __field(u8, dialog_token)
1602 __field(u16, status_code)
df942e7b 1603 __field(u32, peer_capability)
31fa97c5 1604 __field(bool, initiator)
14e8a3c4
BL
1605 __dynamic_array(u8, buf, len)
1606 ),
1607 TP_fast_assign(
1608 WIPHY_ASSIGN;
1609 NETDEV_ASSIGN;
1610 MAC_ASSIGN(peer, peer);
1611 __entry->action_code = action_code;
1612 __entry->dialog_token = dialog_token;
1613 __entry->status_code = status_code;
df942e7b 1614 __entry->peer_capability = peer_capability;
31fa97c5 1615 __entry->initiator = initiator;
14e8a3c4
BL
1616 memcpy(__get_dynamic_array(buf), buf, len);
1617 ),
ec816087 1618 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", action_code: %u, "
31fa97c5
AN
1619 "dialog_token: %u, status_code: %u, peer_capability: %u "
1620 "initiator: %s buf: %#.2x ",
14e8a3c4
BL
1621 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer),
1622 __entry->action_code, __entry->dialog_token,
df942e7b 1623 __entry->status_code, __entry->peer_capability,
31fa97c5 1624 BOOL_TO_STR(__entry->initiator),
df942e7b 1625 ((u8 *)__get_dynamic_array(buf))[0])
14e8a3c4
BL
1626);
1627
1628TRACE_EVENT(rdev_dump_survey,
1629 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx),
1630 TP_ARGS(wiphy, netdev, idx),
1631 TP_STRUCT__entry(
1632 WIPHY_ENTRY
1633 NETDEV_ENTRY
1634 __field(int, idx)
1635 ),
1636 TP_fast_assign(
1637 WIPHY_ASSIGN;
1638 NETDEV_ASSIGN;
1639 __entry->idx = idx;
1640 ),
ec816087 1641 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d",
14e8a3c4
BL
1642 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx)
1643);
1644
1645TRACE_EVENT(rdev_return_int_survey_info,
1646 TP_PROTO(struct wiphy *wiphy, int ret, struct survey_info *info),
1647 TP_ARGS(wiphy, ret, info),
1648 TP_STRUCT__entry(
1649 WIPHY_ENTRY
1650 CHAN_ENTRY
1651 __field(int, ret)
4ed20beb
JB
1652 __field(u64, time)
1653 __field(u64, time_busy)
1654 __field(u64, time_ext_busy)
1655 __field(u64, time_rx)
1656 __field(u64, time_tx)
052536ab 1657 __field(u64, time_scan)
14e8a3c4
BL
1658 __field(u32, filled)
1659 __field(s8, noise)
1660 ),
1661 TP_fast_assign(
1662 WIPHY_ASSIGN;
1663 CHAN_ASSIGN(info->channel);
1664 __entry->ret = ret;
4ed20beb
JB
1665 __entry->time = info->time;
1666 __entry->time_busy = info->time_busy;
1667 __entry->time_ext_busy = info->time_ext_busy;
1668 __entry->time_rx = info->time_rx;
1669 __entry->time_tx = info->time_tx;
052536ab 1670 __entry->time_scan = info->time_scan;
14e8a3c4
BL
1671 __entry->filled = info->filled;
1672 __entry->noise = info->noise;
1673 ),
1674 TP_printk(WIPHY_PR_FMT ", returned: %d, " CHAN_PR_FMT
1675 ", channel time: %llu, channel time busy: %llu, "
1676 "channel time extension busy: %llu, channel time rx: %llu, "
052536ab 1677 "channel time tx: %llu, scan time: %llu, filled: %u, noise: %d",
14e8a3c4 1678 WIPHY_PR_ARG, __entry->ret, CHAN_PR_ARG,
4ed20beb
JB
1679 __entry->time, __entry->time_busy,
1680 __entry->time_ext_busy, __entry->time_rx,
052536ab
JB
1681 __entry->time_tx, __entry->time_scan,
1682 __entry->filled, __entry->noise)
14e8a3c4
BL
1683);
1684
1685TRACE_EVENT(rdev_tdls_oper,
1686 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1687 u8 *peer, enum nl80211_tdls_operation oper),
1688 TP_ARGS(wiphy, netdev, peer, oper),
1689 TP_STRUCT__entry(
1690 WIPHY_ENTRY
1691 NETDEV_ENTRY
1692 MAC_ENTRY(peer)
1693 __field(enum nl80211_tdls_operation, oper)
1694 ),
1695 TP_fast_assign(
1696 WIPHY_ASSIGN;
1697 NETDEV_ASSIGN;
1698 MAC_ASSIGN(peer, peer);
1699 __entry->oper = oper;
1700 ),
ec816087 1701 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", oper: %d",
14e8a3c4
BL
1702 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->oper)
1703);
1704
1705DECLARE_EVENT_CLASS(rdev_pmksa,
1706 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1707 struct cfg80211_pmksa *pmksa),
1708 TP_ARGS(wiphy, netdev, pmksa),
1709 TP_STRUCT__entry(
1710 WIPHY_ENTRY
1711 NETDEV_ENTRY
1712 MAC_ENTRY(bssid)
1713 ),
1714 TP_fast_assign(
1715 WIPHY_ASSIGN;
1716 NETDEV_ASSIGN;
1717 MAC_ASSIGN(bssid, pmksa->bssid);
1718 ),
ec816087 1719 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT,
14e8a3c4
BL
1720 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid))
1721);
1722
1723TRACE_EVENT(rdev_probe_client,
1724 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1725 const u8 *peer),
1726 TP_ARGS(wiphy, netdev, peer),
1727 TP_STRUCT__entry(
1728 WIPHY_ENTRY
1729 NETDEV_ENTRY
1730 MAC_ENTRY(peer)
1731 ),
1732 TP_fast_assign(
1733 WIPHY_ASSIGN;
1734 NETDEV_ASSIGN;
1735 MAC_ASSIGN(peer, peer);
1736 ),
ec816087 1737 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT,
14e8a3c4
BL
1738 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer))
1739);
1740
1741DEFINE_EVENT(rdev_pmksa, rdev_set_pmksa,
1742 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1743 struct cfg80211_pmksa *pmksa),
1744 TP_ARGS(wiphy, netdev, pmksa)
1745);
1746
1747DEFINE_EVENT(rdev_pmksa, rdev_del_pmksa,
1748 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1749 struct cfg80211_pmksa *pmksa),
1750 TP_ARGS(wiphy, netdev, pmksa)
1751);
1752
1753TRACE_EVENT(rdev_remain_on_channel,
1754 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1755 struct ieee80211_channel *chan,
42d97a59
JB
1756 unsigned int duration),
1757 TP_ARGS(wiphy, wdev, chan, duration),
14e8a3c4
BL
1758 TP_STRUCT__entry(
1759 WIPHY_ENTRY
1760 WDEV_ENTRY
1761 CHAN_ENTRY
14e8a3c4
BL
1762 __field(unsigned int, duration)
1763 ),
1764 TP_fast_assign(
1765 WIPHY_ASSIGN;
1766 WDEV_ASSIGN;
1767 CHAN_ASSIGN(chan);
14e8a3c4
BL
1768 __entry->duration = duration;
1769 ),
ec816087 1770 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", " CHAN_PR_FMT ", duration: %u",
42d97a59 1771 WIPHY_PR_ARG, WDEV_PR_ARG, CHAN_PR_ARG, __entry->duration)
14e8a3c4
BL
1772);
1773
1774TRACE_EVENT(rdev_return_int_cookie,
1775 TP_PROTO(struct wiphy *wiphy, int ret, u64 cookie),
1776 TP_ARGS(wiphy, ret, cookie),
1777 TP_STRUCT__entry(
1778 WIPHY_ENTRY
1779 __field(int, ret)
1780 __field(u64, cookie)
1781 ),
1782 TP_fast_assign(
1783 WIPHY_ASSIGN;
1784 __entry->ret = ret;
1785 __entry->cookie = cookie;
1786 ),
1787 TP_printk(WIPHY_PR_FMT ", returned %d, cookie: %llu",
1788 WIPHY_PR_ARG, __entry->ret, __entry->cookie)
1789);
1790
1791TRACE_EVENT(rdev_cancel_remain_on_channel,
1792 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
1793 TP_ARGS(wiphy, wdev, cookie),
1794 TP_STRUCT__entry(
1795 WIPHY_ENTRY
1796 WDEV_ENTRY
1797 __field(u64, cookie)
1798 ),
1799 TP_fast_assign(
1800 WIPHY_ASSIGN;
1801 WDEV_ASSIGN;
1802 __entry->cookie = cookie;
1803 ),
ec816087 1804 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %llu",
14e8a3c4
BL
1805 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
1806);
1807
1808TRACE_EVENT(rdev_mgmt_tx,
1809 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
b176e629
AO
1810 struct cfg80211_mgmt_tx_params *params),
1811 TP_ARGS(wiphy, wdev, params),
14e8a3c4
BL
1812 TP_STRUCT__entry(
1813 WIPHY_ENTRY
1814 WDEV_ENTRY
1815 CHAN_ENTRY
1816 __field(bool, offchan)
14e8a3c4
BL
1817 __field(unsigned int, wait)
1818 __field(bool, no_cck)
1819 __field(bool, dont_wait_for_ack)
1820 ),
1821 TP_fast_assign(
1822 WIPHY_ASSIGN;
1823 WDEV_ASSIGN;
b176e629
AO
1824 CHAN_ASSIGN(params->chan);
1825 __entry->offchan = params->offchan;
1826 __entry->wait = params->wait;
1827 __entry->no_cck = params->no_cck;
1828 __entry->dont_wait_for_ack = params->dont_wait_for_ack;
14e8a3c4 1829 ),
ec816087 1830 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", " CHAN_PR_FMT ", offchan: %s,"
42d97a59 1831 " wait: %u, no cck: %s, dont wait for ack: %s",
14e8a3c4 1832 WIPHY_PR_ARG, WDEV_PR_ARG, CHAN_PR_ARG,
42d97a59 1833 BOOL_TO_STR(__entry->offchan), __entry->wait,
14e8a3c4
BL
1834 BOOL_TO_STR(__entry->no_cck),
1835 BOOL_TO_STR(__entry->dont_wait_for_ack))
1836);
1837
1838TRACE_EVENT(rdev_set_noack_map,
1839 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1840 u16 noack_map),
1841 TP_ARGS(wiphy, netdev, noack_map),
1842 TP_STRUCT__entry(
1843 WIPHY_ENTRY
1844 NETDEV_ENTRY
1845 __field(u16, noack_map)
1846 ),
1847 TP_fast_assign(
1848 WIPHY_ASSIGN;
1849 NETDEV_ASSIGN;
1850 __entry->noack_map = noack_map;
1851 ),
ec816087 1852 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", noack_map: %u",
14e8a3c4
BL
1853 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->noack_map)
1854);
1855
14e8a3c4
BL
1856DEFINE_EVENT(wiphy_wdev_evt, rdev_get_channel,
1857 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1858 TP_ARGS(wiphy, wdev)
1859);
1860
683b6d3b
JB
1861TRACE_EVENT(rdev_return_chandef,
1862 TP_PROTO(struct wiphy *wiphy, int ret,
1863 struct cfg80211_chan_def *chandef),
1864 TP_ARGS(wiphy, ret, chandef),
14e8a3c4
BL
1865 TP_STRUCT__entry(
1866 WIPHY_ENTRY
683b6d3b
JB
1867 __field(int, ret)
1868 CHAN_DEF_ENTRY
14e8a3c4
BL
1869 ),
1870 TP_fast_assign(
1871 WIPHY_ASSIGN;
683b6d3b
JB
1872 if (ret == 0)
1873 CHAN_DEF_ASSIGN(chandef);
1874 else
1875 CHAN_DEF_ASSIGN((struct cfg80211_chan_def *)NULL);
1876 __entry->ret = ret;
14e8a3c4 1877 ),
ec816087 1878 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", ret: %d",
683b6d3b 1879 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->ret)
14e8a3c4
BL
1880);
1881
eeb126e9
JB
1882DEFINE_EVENT(wiphy_wdev_evt, rdev_start_p2p_device,
1883 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1884 TP_ARGS(wiphy, wdev)
1885);
1886
1887DEFINE_EVENT(wiphy_wdev_evt, rdev_stop_p2p_device,
1888 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1889 TP_ARGS(wiphy, wdev)
1890);
1891
cb3b7d87
AB
1892TRACE_EVENT(rdev_start_nan,
1893 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1894 struct cfg80211_nan_conf *conf),
1895 TP_ARGS(wiphy, wdev, conf),
1896 TP_STRUCT__entry(
1897 WIPHY_ENTRY
1898 WDEV_ENTRY
1899 __field(u8, master_pref)
1900 __field(u8, dual);
1901 ),
1902 TP_fast_assign(
1903 WIPHY_ASSIGN;
1904 WDEV_ASSIGN;
1905 __entry->master_pref = conf->master_pref;
1906 __entry->dual = conf->dual;
1907 ),
1908 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT
1909 ", master preference: %u, dual: %d",
1910 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->master_pref,
1911 __entry->dual)
1912);
1913
1914DEFINE_EVENT(wiphy_wdev_evt, rdev_stop_nan,
1915 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1916 TP_ARGS(wiphy, wdev)
1917);
1918
77765eaf
VT
1919TRACE_EVENT(rdev_set_mac_acl,
1920 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1921 struct cfg80211_acl_data *params),
1922 TP_ARGS(wiphy, netdev, params),
1923 TP_STRUCT__entry(
1924 WIPHY_ENTRY
1925 NETDEV_ENTRY
1926 __field(u32, acl_policy)
1927 ),
1928 TP_fast_assign(
1929 WIPHY_ASSIGN;
021fcdc1 1930 NETDEV_ASSIGN;
77765eaf
VT
1931 __entry->acl_policy = params->acl_policy;
1932 ),
1933 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", acl policy: %d",
1934 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->acl_policy)
1935);
1936
355199e0
JM
1937TRACE_EVENT(rdev_update_ft_ies,
1938 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1939 struct cfg80211_update_ft_ies_params *ftie),
1940 TP_ARGS(wiphy, netdev, ftie),
1941 TP_STRUCT__entry(
1942 WIPHY_ENTRY
1943 NETDEV_ENTRY
1944 __field(u16, md)
1945 __dynamic_array(u8, ie, ftie->ie_len)
1946 ),
1947 TP_fast_assign(
1948 WIPHY_ASSIGN;
1949 NETDEV_ASSIGN;
1950 __entry->md = ftie->md;
1951 memcpy(__get_dynamic_array(ie), ftie->ie, ftie->ie_len);
1952 ),
1953 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", md: 0x%x",
1954 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->md)
1955);
1956
5de17984
AS
1957TRACE_EVENT(rdev_crit_proto_start,
1958 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1959 enum nl80211_crit_proto_id protocol, u16 duration),
1960 TP_ARGS(wiphy, wdev, protocol, duration),
1961 TP_STRUCT__entry(
1962 WIPHY_ENTRY
1963 WDEV_ENTRY
1964 __field(u16, proto)
1965 __field(u16, duration)
1966 ),
1967 TP_fast_assign(
1968 WIPHY_ASSIGN;
1969 WDEV_ASSIGN;
1970 __entry->proto = protocol;
1971 __entry->duration = duration;
1972 ),
1973 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", proto=%x, duration=%u",
1974 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->proto, __entry->duration)
1975);
1976
1977TRACE_EVENT(rdev_crit_proto_stop,
1978 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1979 TP_ARGS(wiphy, wdev),
1980 TP_STRUCT__entry(
1981 WIPHY_ENTRY
1982 WDEV_ENTRY
1983 ),
1984 TP_fast_assign(
1985 WIPHY_ASSIGN;
1986 WDEV_ASSIGN;
1987 ),
1988 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT,
1989 WIPHY_PR_ARG, WDEV_PR_ARG)
1990);
1991
16ef1fe2
SW
1992TRACE_EVENT(rdev_channel_switch,
1993 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1994 struct cfg80211_csa_settings *params),
1995 TP_ARGS(wiphy, netdev, params),
1996 TP_STRUCT__entry(
1997 WIPHY_ENTRY
1998 NETDEV_ENTRY
1999 CHAN_DEF_ENTRY
16ef1fe2
SW
2000 __field(bool, radar_required)
2001 __field(bool, block_tx)
2002 __field(u8, count)
9a774c78
AO
2003 __dynamic_array(u16, bcn_ofs, params->n_counter_offsets_beacon)
2004 __dynamic_array(u16, pres_ofs, params->n_counter_offsets_presp)
16ef1fe2
SW
2005 ),
2006 TP_fast_assign(
2007 WIPHY_ASSIGN;
2008 NETDEV_ASSIGN;
2009 CHAN_DEF_ASSIGN(&params->chandef);
16ef1fe2
SW
2010 __entry->radar_required = params->radar_required;
2011 __entry->block_tx = params->block_tx;
2012 __entry->count = params->count;
9a774c78
AO
2013 memcpy(__get_dynamic_array(bcn_ofs),
2014 params->counter_offsets_beacon,
2015 params->n_counter_offsets_beacon * sizeof(u16));
2016
2017 /* probe response offsets are optional */
2018 if (params->n_counter_offsets_presp)
2019 memcpy(__get_dynamic_array(pres_ofs),
2020 params->counter_offsets_presp,
2021 params->n_counter_offsets_presp * sizeof(u16));
16ef1fe2
SW
2022 ),
2023 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
9a774c78 2024 ", block_tx: %d, count: %u, radar_required: %d",
16ef1fe2 2025 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
9a774c78 2026 __entry->block_tx, __entry->count, __entry->radar_required)
16ef1fe2
SW
2027);
2028
fa9ffc74
KP
2029TRACE_EVENT(rdev_set_qos_map,
2030 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2031 struct cfg80211_qos_map *qos_map),
2032 TP_ARGS(wiphy, netdev, qos_map),
2033 TP_STRUCT__entry(
2034 WIPHY_ENTRY
2035 NETDEV_ENTRY
2036 QOS_MAP_ENTRY
2037 ),
2038 TP_fast_assign(
2039 WIPHY_ASSIGN;
2040 NETDEV_ASSIGN;
2041 QOS_MAP_ASSIGN(qos_map);
2042 ),
2043 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", num_des: %u",
2044 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->num_des)
2045);
2046
e16821bc
JM
2047TRACE_EVENT(rdev_set_ap_chanwidth,
2048 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2049 struct cfg80211_chan_def *chandef),
2050 TP_ARGS(wiphy, netdev, chandef),
2051 TP_STRUCT__entry(
2052 WIPHY_ENTRY
2053 NETDEV_ENTRY
2054 CHAN_DEF_ENTRY
2055 ),
2056 TP_fast_assign(
2057 WIPHY_ASSIGN;
2058 NETDEV_ASSIGN;
2059 CHAN_DEF_ASSIGN(chandef);
2060 ),
2061 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT,
2062 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG)
2063);
2064
960d01ac
JB
2065TRACE_EVENT(rdev_add_tx_ts,
2066 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2067 u8 tsid, const u8 *peer, u8 user_prio, u16 admitted_time),
2068 TP_ARGS(wiphy, netdev, tsid, peer, user_prio, admitted_time),
2069 TP_STRUCT__entry(
2070 WIPHY_ENTRY
2071 NETDEV_ENTRY
2072 MAC_ENTRY(peer)
2073 __field(u8, tsid)
2074 __field(u8, user_prio)
2075 __field(u16, admitted_time)
2076 ),
2077 TP_fast_assign(
2078 WIPHY_ASSIGN;
2079 NETDEV_ASSIGN;
2080 MAC_ASSIGN(peer, peer);
2081 __entry->tsid = tsid;
2082 __entry->user_prio = user_prio;
2083 __entry->admitted_time = admitted_time;
2084 ),
2085 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", TSID %d, UP %d, time %d",
2086 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer),
2087 __entry->tsid, __entry->user_prio, __entry->admitted_time)
2088);
2089
2090TRACE_EVENT(rdev_del_tx_ts,
2091 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2092 u8 tsid, const u8 *peer),
2093 TP_ARGS(wiphy, netdev, tsid, peer),
2094 TP_STRUCT__entry(
2095 WIPHY_ENTRY
2096 NETDEV_ENTRY
2097 MAC_ENTRY(peer)
2098 __field(u8, tsid)
2099 ),
2100 TP_fast_assign(
2101 WIPHY_ASSIGN;
2102 NETDEV_ASSIGN;
2103 MAC_ASSIGN(peer, peer);
2104 __entry->tsid = tsid;
2105 ),
2106 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", TSID %d",
2107 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->tsid)
2108);
2109
1057d35e
AN
2110TRACE_EVENT(rdev_tdls_channel_switch,
2111 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2112 const u8 *addr, u8 oper_class,
2113 struct cfg80211_chan_def *chandef),
2114 TP_ARGS(wiphy, netdev, addr, oper_class, chandef),
2115 TP_STRUCT__entry(
2116 WIPHY_ENTRY
2117 NETDEV_ENTRY
2118 MAC_ENTRY(addr)
2119 __field(u8, oper_class)
2120 CHAN_DEF_ENTRY
2121 ),
2122 TP_fast_assign(
2123 WIPHY_ASSIGN;
2124 NETDEV_ASSIGN;
2125 MAC_ASSIGN(addr, addr);
2126 CHAN_DEF_ASSIGN(chandef);
2127 ),
2128 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT
2129 " oper class %d, " CHAN_DEF_PR_FMT,
2130 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(addr),
2131 __entry->oper_class, CHAN_DEF_PR_ARG)
2132);
2133
2134TRACE_EVENT(rdev_tdls_cancel_channel_switch,
2135 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2136 const u8 *addr),
2137 TP_ARGS(wiphy, netdev, addr),
2138 TP_STRUCT__entry(
2139 WIPHY_ENTRY
2140 NETDEV_ENTRY
2141 MAC_ENTRY(addr)
2142 ),
2143 TP_fast_assign(
2144 WIPHY_ASSIGN;
2145 NETDEV_ASSIGN;
2146 MAC_ASSIGN(addr, addr);
2147 ),
2148 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT,
2149 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(addr))
2150);
2151
4ee3e063
BL
2152/*************************************************************
2153 * cfg80211 exported functions traces *
2154 *************************************************************/
2155
2156TRACE_EVENT(cfg80211_return_bool,
2157 TP_PROTO(bool ret),
2158 TP_ARGS(ret),
2159 TP_STRUCT__entry(
2160 __field(bool, ret)
2161 ),
2162 TP_fast_assign(
2163 __entry->ret = ret;
2164 ),
2165 TP_printk("returned %s", BOOL_TO_STR(__entry->ret))
2166);
2167
2168DECLARE_EVENT_CLASS(cfg80211_netdev_mac_evt,
2169 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2170 TP_ARGS(netdev, macaddr),
2171 TP_STRUCT__entry(
2172 NETDEV_ENTRY
2173 MAC_ENTRY(macaddr)
2174 ),
2175 TP_fast_assign(
2176 NETDEV_ASSIGN;
2177 MAC_ASSIGN(macaddr, macaddr);
2178 ),
2179 TP_printk(NETDEV_PR_FMT ", mac: " MAC_PR_FMT,
2180 NETDEV_PR_ARG, MAC_PR_ARG(macaddr))
2181);
2182
2183DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_notify_new_peer_candidate,
2184 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2185 TP_ARGS(netdev, macaddr)
2186);
2187
2188DECLARE_EVENT_CLASS(netdev_evt_only,
2189 TP_PROTO(struct net_device *netdev),
2190 TP_ARGS(netdev),
2191 TP_STRUCT__entry(
2192 NETDEV_ENTRY
2193 ),
2194 TP_fast_assign(
2195 NETDEV_ASSIGN;
2196 ),
2197 TP_printk(NETDEV_PR_FMT , NETDEV_PR_ARG)
2198);
2199
2200DEFINE_EVENT(netdev_evt_only, cfg80211_send_rx_auth,
2201 TP_PROTO(struct net_device *netdev),
2202 TP_ARGS(netdev)
2203);
2204
2205TRACE_EVENT(cfg80211_send_rx_assoc,
2206 TP_PROTO(struct net_device *netdev, struct cfg80211_bss *bss),
2207 TP_ARGS(netdev, bss),
2208 TP_STRUCT__entry(
2209 NETDEV_ENTRY
2210 MAC_ENTRY(bssid)
2211 CHAN_ENTRY
2212 ),
2213 TP_fast_assign(
2214 NETDEV_ASSIGN;
2215 MAC_ASSIGN(bssid, bss->bssid);
2216 CHAN_ASSIGN(bss->channel);
2217 ),
ec816087 2218 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT ", " CHAN_PR_FMT,
4ee3e063
BL
2219 NETDEV_PR_ARG, MAC_PR_ARG(bssid), CHAN_PR_ARG)
2220);
2221
6ff57cf8
JB
2222DECLARE_EVENT_CLASS(netdev_frame_event,
2223 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2224 TP_ARGS(netdev, buf, len),
2225 TP_STRUCT__entry(
2226 NETDEV_ENTRY
2227 __dynamic_array(u8, frame, len)
2228 ),
2229 TP_fast_assign(
2230 NETDEV_ASSIGN;
2231 memcpy(__get_dynamic_array(frame), buf, len);
2232 ),
2233 TP_printk(NETDEV_PR_FMT ", ftype:0x%.2x",
2234 NETDEV_PR_ARG,
2235 le16_to_cpup((__le16 *)__get_dynamic_array(frame)))
4ee3e063
BL
2236);
2237
6ff57cf8
JB
2238DEFINE_EVENT(netdev_frame_event, cfg80211_rx_unprot_mlme_mgmt,
2239 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2240 TP_ARGS(netdev, buf, len)
4ee3e063
BL
2241);
2242
6ff57cf8
JB
2243DEFINE_EVENT(netdev_frame_event, cfg80211_rx_mlme_mgmt,
2244 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2245 TP_ARGS(netdev, buf, len)
4ee3e063
BL
2246);
2247
6ff57cf8
JB
2248TRACE_EVENT(cfg80211_tx_mlme_mgmt,
2249 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2250 TP_ARGS(netdev, buf, len),
2251 TP_STRUCT__entry(
2252 NETDEV_ENTRY
2253 __dynamic_array(u8, frame, len)
2254 ),
2255 TP_fast_assign(
2256 NETDEV_ASSIGN;
2257 memcpy(__get_dynamic_array(frame), buf, len);
2258 ),
2259 TP_printk(NETDEV_PR_FMT ", ftype:0x%.2x",
2260 NETDEV_PR_ARG,
2261 le16_to_cpup((__le16 *)__get_dynamic_array(frame)))
4ee3e063
BL
2262);
2263
2264DECLARE_EVENT_CLASS(netdev_mac_evt,
2265 TP_PROTO(struct net_device *netdev, const u8 *mac),
2266 TP_ARGS(netdev, mac),
2267 TP_STRUCT__entry(
2268 NETDEV_ENTRY
2269 MAC_ENTRY(mac)
2270 ),
2271 TP_fast_assign(
2272 NETDEV_ASSIGN;
2273 MAC_ASSIGN(mac, mac)
2274 ),
2275 TP_printk(NETDEV_PR_FMT ", mac: " MAC_PR_FMT,
2276 NETDEV_PR_ARG, MAC_PR_ARG(mac))
2277);
2278
2279DEFINE_EVENT(netdev_mac_evt, cfg80211_send_auth_timeout,
2280 TP_PROTO(struct net_device *netdev, const u8 *mac),
2281 TP_ARGS(netdev, mac)
2282);
2283
2284DEFINE_EVENT(netdev_mac_evt, cfg80211_send_assoc_timeout,
2285 TP_PROTO(struct net_device *netdev, const u8 *mac),
2286 TP_ARGS(netdev, mac)
2287);
2288
2289TRACE_EVENT(cfg80211_michael_mic_failure,
2290 TP_PROTO(struct net_device *netdev, const u8 *addr,
2291 enum nl80211_key_type key_type, int key_id, const u8 *tsc),
2292 TP_ARGS(netdev, addr, key_type, key_id, tsc),
2293 TP_STRUCT__entry(
2294 NETDEV_ENTRY
2295 MAC_ENTRY(addr)
2296 __field(enum nl80211_key_type, key_type)
2297 __field(int, key_id)
2298 __array(u8, tsc, 6)
2299 ),
2300 TP_fast_assign(
2301 NETDEV_ASSIGN;
2302 MAC_ASSIGN(addr, addr);
2303 __entry->key_type = key_type;
2304 __entry->key_id = key_id;
8c26d458
EP
2305 if (tsc)
2306 memcpy(__entry->tsc, tsc, 6);
4ee3e063 2307 ),
ec816087 2308 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT ", key type: %d, key id: %d, tsc: %pm",
4ee3e063
BL
2309 NETDEV_PR_ARG, MAC_PR_ARG(addr), __entry->key_type,
2310 __entry->key_id, __entry->tsc)
2311);
2312
2313TRACE_EVENT(cfg80211_ready_on_channel,
2314 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
2315 struct ieee80211_channel *chan,
42d97a59
JB
2316 unsigned int duration),
2317 TP_ARGS(wdev, cookie, chan, duration),
4ee3e063
BL
2318 TP_STRUCT__entry(
2319 WDEV_ENTRY
2320 __field(u64, cookie)
2321 CHAN_ENTRY
4ee3e063
BL
2322 __field(unsigned int, duration)
2323 ),
2324 TP_fast_assign(
2325 WDEV_ASSIGN;
2326 __entry->cookie = cookie;
2327 CHAN_ASSIGN(chan);
4ee3e063
BL
2328 __entry->duration = duration;
2329 ),
42d97a59 2330 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT ", duration: %u",
4ee3e063 2331 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG,
42d97a59 2332 __entry->duration)
4ee3e063
BL
2333);
2334
2335TRACE_EVENT(cfg80211_ready_on_channel_expired,
2336 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
42d97a59
JB
2337 struct ieee80211_channel *chan),
2338 TP_ARGS(wdev, cookie, chan),
4ee3e063
BL
2339 TP_STRUCT__entry(
2340 WDEV_ENTRY
2341 __field(u64, cookie)
2342 CHAN_ENTRY
4ee3e063
BL
2343 ),
2344 TP_fast_assign(
2345 WDEV_ASSIGN;
2346 __entry->cookie = cookie;
2347 CHAN_ASSIGN(chan);
4ee3e063 2348 ),
42d97a59
JB
2349 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT,
2350 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG)
4ee3e063
BL
2351);
2352
2353TRACE_EVENT(cfg80211_new_sta,
2354 TP_PROTO(struct net_device *netdev, const u8 *mac_addr,
2355 struct station_info *sinfo),
2356 TP_ARGS(netdev, mac_addr, sinfo),
2357 TP_STRUCT__entry(
2358 NETDEV_ENTRY
2359 MAC_ENTRY(mac_addr)
2360 SINFO_ENTRY
2361 ),
2362 TP_fast_assign(
2363 NETDEV_ASSIGN;
2364 MAC_ASSIGN(mac_addr, mac_addr);
2365 SINFO_ASSIGN;
2366 ),
ec816087 2367 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT,
4ee3e063
BL
2368 NETDEV_PR_ARG, MAC_PR_ARG(mac_addr))
2369);
2370
2371DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_del_sta,
2372 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2373 TP_ARGS(netdev, macaddr)
2374);
2375
2376TRACE_EVENT(cfg80211_rx_mgmt,
2377 TP_PROTO(struct wireless_dev *wdev, int freq, int sig_mbm),
2378 TP_ARGS(wdev, freq, sig_mbm),
2379 TP_STRUCT__entry(
2380 WDEV_ENTRY
2381 __field(int, freq)
2382 __field(int, sig_mbm)
2383 ),
2384 TP_fast_assign(
2385 WDEV_ASSIGN;
2386 __entry->freq = freq;
2387 __entry->sig_mbm = sig_mbm;
2388 ),
2389 TP_printk(WDEV_PR_FMT ", freq: %d, sig mbm: %d",
2390 WDEV_PR_ARG, __entry->freq, __entry->sig_mbm)
2391);
2392
2393TRACE_EVENT(cfg80211_mgmt_tx_status,
2394 TP_PROTO(struct wireless_dev *wdev, u64 cookie, bool ack),
2395 TP_ARGS(wdev, cookie, ack),
2396 TP_STRUCT__entry(
2397 WDEV_ENTRY
2398 __field(u64, cookie)
2399 __field(bool, ack)
2400 ),
2401 TP_fast_assign(
2402 WDEV_ASSIGN;
2403 __entry->cookie = cookie;
2404 __entry->ack = ack;
2405 ),
2406 TP_printk(WDEV_PR_FMT", cookie: %llu, ack: %s",
2407 WDEV_PR_ARG, __entry->cookie, BOOL_TO_STR(__entry->ack))
2408);
2409
2410TRACE_EVENT(cfg80211_cqm_rssi_notify,
2411 TP_PROTO(struct net_device *netdev,
2412 enum nl80211_cqm_rssi_threshold_event rssi_event),
2413 TP_ARGS(netdev, rssi_event),
2414 TP_STRUCT__entry(
2415 NETDEV_ENTRY
2416 __field(enum nl80211_cqm_rssi_threshold_event, rssi_event)
2417 ),
2418 TP_fast_assign(
2419 NETDEV_ASSIGN;
2420 __entry->rssi_event = rssi_event;
2421 ),
2422 TP_printk(NETDEV_PR_FMT ", rssi event: %d",
2423 NETDEV_PR_ARG, __entry->rssi_event)
2424);
2425
683b6d3b 2426TRACE_EVENT(cfg80211_reg_can_beacon,
174e0cd2 2427 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
923b352f
AN
2428 enum nl80211_iftype iftype, bool check_no_ir),
2429 TP_ARGS(wiphy, chandef, iftype, check_no_ir),
4ee3e063
BL
2430 TP_STRUCT__entry(
2431 WIPHY_ENTRY
683b6d3b 2432 CHAN_DEF_ENTRY
174e0cd2 2433 __field(enum nl80211_iftype, iftype)
923b352f 2434 __field(bool, check_no_ir)
4ee3e063
BL
2435 ),
2436 TP_fast_assign(
2437 WIPHY_ASSIGN;
683b6d3b 2438 CHAN_DEF_ASSIGN(chandef);
174e0cd2 2439 __entry->iftype = iftype;
923b352f 2440 __entry->check_no_ir = check_no_ir;
4ee3e063 2441 ),
923b352f
AN
2442 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", iftype=%d check_no_ir=%s",
2443 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->iftype,
2444 BOOL_TO_STR(__entry->check_no_ir))
4ee3e063
BL
2445);
2446
04f39047
SW
2447TRACE_EVENT(cfg80211_chandef_dfs_required,
2448 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef),
2449 TP_ARGS(wiphy, chandef),
2450 TP_STRUCT__entry(
2451 WIPHY_ENTRY
2452 CHAN_DEF_ENTRY
2453 ),
2454 TP_fast_assign(
2455 WIPHY_ASSIGN;
2456 CHAN_DEF_ASSIGN(chandef);
2457 ),
2458 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
2459 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
2460);
2461
4ee3e063 2462TRACE_EVENT(cfg80211_ch_switch_notify,
683b6d3b
JB
2463 TP_PROTO(struct net_device *netdev,
2464 struct cfg80211_chan_def *chandef),
2465 TP_ARGS(netdev, chandef),
4ee3e063
BL
2466 TP_STRUCT__entry(
2467 NETDEV_ENTRY
683b6d3b 2468 CHAN_DEF_ENTRY
4ee3e063
BL
2469 ),
2470 TP_fast_assign(
2471 NETDEV_ASSIGN;
683b6d3b 2472 CHAN_DEF_ASSIGN(chandef);
4ee3e063 2473 ),
ec816087 2474 TP_printk(NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT,
683b6d3b 2475 NETDEV_PR_ARG, CHAN_DEF_PR_ARG)
4ee3e063
BL
2476);
2477
f8d7552e
LC
2478TRACE_EVENT(cfg80211_ch_switch_started_notify,
2479 TP_PROTO(struct net_device *netdev,
2480 struct cfg80211_chan_def *chandef),
2481 TP_ARGS(netdev, chandef),
2482 TP_STRUCT__entry(
2483 NETDEV_ENTRY
2484 CHAN_DEF_ENTRY
2485 ),
2486 TP_fast_assign(
2487 NETDEV_ASSIGN;
2488 CHAN_DEF_ASSIGN(chandef);
2489 ),
2490 TP_printk(NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT,
2491 NETDEV_PR_ARG, CHAN_DEF_PR_ARG)
2492);
2493
04f39047
SW
2494TRACE_EVENT(cfg80211_radar_event,
2495 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef),
2496 TP_ARGS(wiphy, chandef),
2497 TP_STRUCT__entry(
2498 WIPHY_ENTRY
2499 CHAN_DEF_ENTRY
2500 ),
2501 TP_fast_assign(
2502 WIPHY_ASSIGN;
2503 CHAN_DEF_ASSIGN(chandef);
2504 ),
2505 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
2506 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
2507);
2508
2509TRACE_EVENT(cfg80211_cac_event,
2510 TP_PROTO(struct net_device *netdev, enum nl80211_radar_event evt),
2511 TP_ARGS(netdev, evt),
2512 TP_STRUCT__entry(
2513 NETDEV_ENTRY
2514 __field(enum nl80211_radar_event, evt)
2515 ),
2516 TP_fast_assign(
2517 NETDEV_ASSIGN;
2518 __entry->evt = evt;
2519 ),
2520 TP_printk(NETDEV_PR_FMT ", event: %d",
2521 NETDEV_PR_ARG, __entry->evt)
2522);
2523
4ee3e063
BL
2524DECLARE_EVENT_CLASS(cfg80211_rx_evt,
2525 TP_PROTO(struct net_device *netdev, const u8 *addr),
2526 TP_ARGS(netdev, addr),
2527 TP_STRUCT__entry(
2528 NETDEV_ENTRY
2529 MAC_ENTRY(addr)
2530 ),
2531 TP_fast_assign(
2532 NETDEV_ASSIGN;
2533 MAC_ASSIGN(addr, addr);
2534 ),
ec816087 2535 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT, NETDEV_PR_ARG, MAC_PR_ARG(addr))
4ee3e063
BL
2536);
2537
4ee3e063
BL
2538DEFINE_EVENT(cfg80211_rx_evt, cfg80211_rx_spurious_frame,
2539 TP_PROTO(struct net_device *netdev, const u8 *addr),
2540 TP_ARGS(netdev, addr)
2541);
2542
2543DEFINE_EVENT(cfg80211_rx_evt, cfg80211_rx_unexpected_4addr_frame,
2544 TP_PROTO(struct net_device *netdev, const u8 *addr),
2545 TP_ARGS(netdev, addr)
2546);
2547
fe94f3a4
AQ
2548TRACE_EVENT(cfg80211_ibss_joined,
2549 TP_PROTO(struct net_device *netdev, const u8 *bssid,
2550 struct ieee80211_channel *channel),
2551 TP_ARGS(netdev, bssid, channel),
2552 TP_STRUCT__entry(
2553 NETDEV_ENTRY
2554 MAC_ENTRY(bssid)
2555 CHAN_ENTRY
2556 ),
2557 TP_fast_assign(
2558 NETDEV_ASSIGN;
2559 MAC_ASSIGN(bssid, bssid);
2560 CHAN_ASSIGN(channel);
2561 ),
2562 TP_printk(NETDEV_PR_FMT ", bssid: " MAC_PR_FMT ", " CHAN_PR_FMT,
2563 NETDEV_PR_ARG, MAC_PR_ARG(bssid), CHAN_PR_ARG)
2564);
2565
4ee3e063
BL
2566TRACE_EVENT(cfg80211_probe_status,
2567 TP_PROTO(struct net_device *netdev, const u8 *addr, u64 cookie,
2568 bool acked),
2569 TP_ARGS(netdev, addr, cookie, acked),
2570 TP_STRUCT__entry(
2571 NETDEV_ENTRY
2572 MAC_ENTRY(addr)
2573 __field(u64, cookie)
2574 __field(bool, acked)
2575 ),
2576 TP_fast_assign(
2577 NETDEV_ASSIGN;
2578 MAC_ASSIGN(addr, addr);
2579 __entry->cookie = cookie;
2580 __entry->acked = acked;
2581 ),
ec816087 2582 TP_printk(NETDEV_PR_FMT " addr:" MAC_PR_FMT ", cookie: %llu, acked: %s",
4ee3e063
BL
2583 NETDEV_PR_ARG, MAC_PR_ARG(addr), __entry->cookie,
2584 BOOL_TO_STR(__entry->acked))
2585);
2586
2587TRACE_EVENT(cfg80211_cqm_pktloss_notify,
2588 TP_PROTO(struct net_device *netdev, const u8 *peer, u32 num_packets),
2589 TP_ARGS(netdev, peer, num_packets),
2590 TP_STRUCT__entry(
2591 NETDEV_ENTRY
2592 MAC_ENTRY(peer)
2593 __field(u32, num_packets)
2594 ),
2595 TP_fast_assign(
2596 NETDEV_ASSIGN;
2597 MAC_ASSIGN(peer, peer);
2598 __entry->num_packets = num_packets;
2599 ),
2600 TP_printk(NETDEV_PR_FMT ", peer: " MAC_PR_FMT ", num of lost packets: %u",
2601 NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->num_packets)
2602);
2603
2604DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_gtk_rekey_notify,
2605 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2606 TP_ARGS(netdev, macaddr)
2607);
2608
2609TRACE_EVENT(cfg80211_pmksa_candidate_notify,
2610 TP_PROTO(struct net_device *netdev, int index, const u8 *bssid,
2611 bool preauth),
2612 TP_ARGS(netdev, index, bssid, preauth),
2613 TP_STRUCT__entry(
2614 NETDEV_ENTRY
2615 __field(int, index)
2616 MAC_ENTRY(bssid)
2617 __field(bool, preauth)
2618 ),
2619 TP_fast_assign(
2620 NETDEV_ASSIGN;
2621 __entry->index = index;
2622 MAC_ASSIGN(bssid, bssid);
2623 __entry->preauth = preauth;
2624 ),
2625 TP_printk(NETDEV_PR_FMT ", index:%d, bssid: " MAC_PR_FMT ", pre auth: %s",
2626 NETDEV_PR_ARG, __entry->index, MAC_PR_ARG(bssid),
2627 BOOL_TO_STR(__entry->preauth))
2628);
2629
2630TRACE_EVENT(cfg80211_report_obss_beacon,
2631 TP_PROTO(struct wiphy *wiphy, const u8 *frame, size_t len,
2632 int freq, int sig_dbm),
2633 TP_ARGS(wiphy, frame, len, freq, sig_dbm),
2634 TP_STRUCT__entry(
2635 WIPHY_ENTRY
2636 __field(int, freq)
2637 __field(int, sig_dbm)
2638 ),
2639 TP_fast_assign(
2640 WIPHY_ASSIGN;
2641 __entry->freq = freq;
2642 __entry->sig_dbm = sig_dbm;
2643 ),
2644 TP_printk(WIPHY_PR_FMT ", freq: %d, sig_dbm: %d",
2645 WIPHY_PR_ARG, __entry->freq, __entry->sig_dbm)
2646);
2647
3475b094
JM
2648TRACE_EVENT(cfg80211_tdls_oper_request,
2649 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *peer,
2650 enum nl80211_tdls_operation oper, u16 reason_code),
2651 TP_ARGS(wiphy, netdev, peer, oper, reason_code),
2652 TP_STRUCT__entry(
2653 WIPHY_ENTRY
2654 NETDEV_ENTRY
2655 MAC_ENTRY(peer)
2656 __field(enum nl80211_tdls_operation, oper)
2657 __field(u16, reason_code)
2658 ),
2659 TP_fast_assign(
2660 WIPHY_ASSIGN;
2661 NETDEV_ASSIGN;
2662 MAC_ASSIGN(peer, peer);
2663 __entry->oper = oper;
2664 __entry->reason_code = reason_code;
2665 ),
2666 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: " MAC_PR_FMT ", oper: %d, reason_code %u",
2667 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->oper,
2668 __entry->reason_code)
2669 );
2670
4ee3e063 2671TRACE_EVENT(cfg80211_scan_done,
1d76250b
AS
2672 TP_PROTO(struct cfg80211_scan_request *request,
2673 struct cfg80211_scan_info *info),
2674 TP_ARGS(request, info),
4ee3e063
BL
2675 TP_STRUCT__entry(
2676 __field(u32, n_channels)
2677 __dynamic_array(u8, ie, request ? request->ie_len : 0)
57fbcce3 2678 __array(u32, rates, NUM_NL80211_BANDS)
4ee3e063
BL
2679 __field(u32, wdev_id)
2680 MAC_ENTRY(wiphy_mac)
2681 __field(bool, no_cck)
2682 __field(bool, aborted)
1d76250b
AS
2683 __field(u64, scan_start_tsf)
2684 MAC_ENTRY(tsf_bssid)
4ee3e063
BL
2685 ),
2686 TP_fast_assign(
2687 if (request) {
2688 memcpy(__get_dynamic_array(ie), request->ie,
2689 request->ie_len);
2690 memcpy(__entry->rates, request->rates,
57fbcce3 2691 NUM_NL80211_BANDS);
4ee3e063
BL
2692 __entry->wdev_id = request->wdev ?
2693 request->wdev->identifier : 0;
2694 if (request->wiphy)
2695 MAC_ASSIGN(wiphy_mac,
2696 request->wiphy->perm_addr);
2697 __entry->no_cck = request->no_cck;
2698 }
1d76250b
AS
2699 if (info) {
2700 __entry->aborted = info->aborted;
2701 __entry->scan_start_tsf = info->scan_start_tsf;
2702 MAC_ASSIGN(tsf_bssid, info->tsf_bssid);
2703 }
4ee3e063 2704 ),
1d76250b
AS
2705 TP_printk("aborted: %s, scan start (TSF): %llu, tsf_bssid: " MAC_PR_FMT,
2706 BOOL_TO_STR(__entry->aborted),
2707 (unsigned long long)__entry->scan_start_tsf,
2708 MAC_PR_ARG(tsf_bssid))
4ee3e063
BL
2709);
2710
2711DEFINE_EVENT(wiphy_only_evt, cfg80211_sched_scan_results,
2712 TP_PROTO(struct wiphy *wiphy),
2713 TP_ARGS(wiphy)
2714);
2715
2716DEFINE_EVENT(wiphy_only_evt, cfg80211_sched_scan_stopped,
2717 TP_PROTO(struct wiphy *wiphy),
2718 TP_ARGS(wiphy)
2719);
2720
2721TRACE_EVENT(cfg80211_get_bss,
2722 TP_PROTO(struct wiphy *wiphy, struct ieee80211_channel *channel,
2723 const u8 *bssid, const u8 *ssid, size_t ssid_len,
6eb18137
DL
2724 enum ieee80211_bss_type bss_type,
2725 enum ieee80211_privacy privacy),
2726 TP_ARGS(wiphy, channel, bssid, ssid, ssid_len, bss_type, privacy),
4ee3e063
BL
2727 TP_STRUCT__entry(
2728 WIPHY_ENTRY
2729 CHAN_ENTRY
2730 MAC_ENTRY(bssid)
2731 __dynamic_array(u8, ssid, ssid_len)
6eb18137
DL
2732 __field(enum ieee80211_bss_type, bss_type)
2733 __field(enum ieee80211_privacy, privacy)
4ee3e063
BL
2734 ),
2735 TP_fast_assign(
2736 WIPHY_ASSIGN;
2737 CHAN_ASSIGN(channel);
2738 MAC_ASSIGN(bssid, bssid);
2739 memcpy(__get_dynamic_array(ssid), ssid, ssid_len);
6eb18137
DL
2740 __entry->bss_type = bss_type;
2741 __entry->privacy = privacy;
2742 ),
2743 TP_printk(WIPHY_PR_FMT ", " CHAN_PR_FMT ", " MAC_PR_FMT
2744 ", buf: %#.2x, bss_type: %d, privacy: %d",
2745 WIPHY_PR_ARG, CHAN_PR_ARG, MAC_PR_ARG(bssid),
2746 ((u8 *)__get_dynamic_array(ssid))[0], __entry->bss_type,
2747 __entry->privacy)
4ee3e063
BL
2748);
2749
6e19bc4b
DS
2750TRACE_EVENT(cfg80211_inform_bss_frame,
2751 TP_PROTO(struct wiphy *wiphy, struct cfg80211_inform_bss *data,
2752 struct ieee80211_mgmt *mgmt, size_t len),
2753 TP_ARGS(wiphy, data, mgmt, len),
4ee3e063
BL
2754 TP_STRUCT__entry(
2755 WIPHY_ENTRY
2756 CHAN_ENTRY
dcd6eac1 2757 __field(enum nl80211_bss_scan_width, scan_width)
4ee3e063
BL
2758 __dynamic_array(u8, mgmt, len)
2759 __field(s32, signal)
6e19bc4b 2760 __field(u64, ts_boottime)
1d76250b
AS
2761 __field(u64, parent_tsf)
2762 MAC_ENTRY(parent_bssid)
4ee3e063
BL
2763 ),
2764 TP_fast_assign(
2765 WIPHY_ASSIGN;
6e19bc4b
DS
2766 CHAN_ASSIGN(data->chan);
2767 __entry->scan_width = data->scan_width;
4ee3e063
BL
2768 if (mgmt)
2769 memcpy(__get_dynamic_array(mgmt), mgmt, len);
6e19bc4b
DS
2770 __entry->signal = data->signal;
2771 __entry->ts_boottime = data->boottime_ns;
1d76250b
AS
2772 __entry->parent_tsf = data->parent_tsf;
2773 MAC_ASSIGN(parent_bssid, data->parent_bssid);
2774 ),
2775 TP_printk(WIPHY_PR_FMT ", " CHAN_PR_FMT
2776 "(scan_width: %d) signal: %d, tsb:%llu, detect_tsf:%llu, tsf_bssid: "
2777 MAC_PR_FMT, WIPHY_PR_ARG, CHAN_PR_ARG, __entry->scan_width,
2778 __entry->signal, (unsigned long long)__entry->ts_boottime,
2779 (unsigned long long)__entry->parent_tsf,
2780 MAC_PR_ARG(parent_bssid))
4ee3e063
BL
2781);
2782
2783DECLARE_EVENT_CLASS(cfg80211_bss_evt,
2784 TP_PROTO(struct cfg80211_bss *pub),
2785 TP_ARGS(pub),
2786 TP_STRUCT__entry(
2787 MAC_ENTRY(bssid)
2788 CHAN_ENTRY
2789 ),
2790 TP_fast_assign(
2791 MAC_ASSIGN(bssid, pub->bssid);
2792 CHAN_ASSIGN(pub->channel);
2793 ),
ec816087 2794 TP_printk(MAC_PR_FMT ", " CHAN_PR_FMT, MAC_PR_ARG(bssid), CHAN_PR_ARG)
4ee3e063
BL
2795);
2796
2797DEFINE_EVENT(cfg80211_bss_evt, cfg80211_return_bss,
2798 TP_PROTO(struct cfg80211_bss *pub),
2799 TP_ARGS(pub)
2800);
2801
2802TRACE_EVENT(cfg80211_return_uint,
2803 TP_PROTO(unsigned int ret),
2804 TP_ARGS(ret),
2805 TP_STRUCT__entry(
2806 __field(unsigned int, ret)
2807 ),
2808 TP_fast_assign(
2809 __entry->ret = ret;
2810 ),
2811 TP_printk("ret: %d", __entry->ret)
2812);
2813
2814TRACE_EVENT(cfg80211_return_u32,
2815 TP_PROTO(u32 ret),
2816 TP_ARGS(ret),
2817 TP_STRUCT__entry(
2818 __field(u32, ret)
2819 ),
2820 TP_fast_assign(
2821 __entry->ret = ret;
2822 ),
2823 TP_printk("ret: %u", __entry->ret)
2824);
2825
cd8f7cb4
JB
2826TRACE_EVENT(cfg80211_report_wowlan_wakeup,
2827 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2828 struct cfg80211_wowlan_wakeup *wakeup),
2829 TP_ARGS(wiphy, wdev, wakeup),
2830 TP_STRUCT__entry(
2831 WIPHY_ENTRY
2832 WDEV_ENTRY
a92eecbb 2833 __field(bool, non_wireless)
cd8f7cb4
JB
2834 __field(bool, disconnect)
2835 __field(bool, magic_pkt)
2836 __field(bool, gtk_rekey_failure)
2837 __field(bool, eap_identity_req)
2838 __field(bool, four_way_handshake)
2839 __field(bool, rfkill_release)
2840 __field(s32, pattern_idx)
2841 __field(u32, packet_len)
a92eecbb
JB
2842 __dynamic_array(u8, packet,
2843 wakeup ? wakeup->packet_present_len : 0)
cd8f7cb4
JB
2844 ),
2845 TP_fast_assign(
2846 WIPHY_ASSIGN;
2847 WDEV_ASSIGN;
a92eecbb
JB
2848 __entry->non_wireless = !wakeup;
2849 __entry->disconnect = wakeup ? wakeup->disconnect : false;
2850 __entry->magic_pkt = wakeup ? wakeup->magic_pkt : false;
2851 __entry->gtk_rekey_failure = wakeup ? wakeup->gtk_rekey_failure : false;
2852 __entry->eap_identity_req = wakeup ? wakeup->eap_identity_req : false;
2853 __entry->four_way_handshake = wakeup ? wakeup->four_way_handshake : false;
2854 __entry->rfkill_release = wakeup ? wakeup->rfkill_release : false;
2855 __entry->pattern_idx = wakeup ? wakeup->pattern_idx : false;
2856 __entry->packet_len = wakeup ? wakeup->packet_len : false;
2857 if (wakeup && wakeup->packet && wakeup->packet_present_len)
cd8f7cb4
JB
2858 memcpy(__get_dynamic_array(packet), wakeup->packet,
2859 wakeup->packet_present_len);
2860 ),
2861 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
2862);
2863
355199e0
JM
2864TRACE_EVENT(cfg80211_ft_event,
2865 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2866 struct cfg80211_ft_event_params *ft_event),
2867 TP_ARGS(wiphy, netdev, ft_event),
2868 TP_STRUCT__entry(
2869 WIPHY_ENTRY
2870 NETDEV_ENTRY
2871 __dynamic_array(u8, ies, ft_event->ies_len)
2872 MAC_ENTRY(target_ap)
2873 __dynamic_array(u8, ric_ies, ft_event->ric_ies_len)
2874 ),
2875 TP_fast_assign(
2876 WIPHY_ASSIGN;
2877 NETDEV_ASSIGN;
2878 if (ft_event->ies)
2879 memcpy(__get_dynamic_array(ies), ft_event->ies,
2880 ft_event->ies_len);
2881 MAC_ASSIGN(target_ap, ft_event->target_ap);
2882 if (ft_event->ric_ies)
2883 memcpy(__get_dynamic_array(ric_ies), ft_event->ric_ies,
2884 ft_event->ric_ies_len);
2885 ),
2886 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", target_ap: " MAC_PR_FMT,
2887 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(target_ap))
2888);
2889
f04c2203
MK
2890TRACE_EVENT(cfg80211_stop_iface,
2891 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2892 TP_ARGS(wiphy, wdev),
2893 TP_STRUCT__entry(
2894 WIPHY_ENTRY
2895 WDEV_ENTRY
2896 ),
2897 TP_fast_assign(
2898 WIPHY_ASSIGN;
2899 WDEV_ASSIGN;
2900 ),
2901 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT,
2902 WIPHY_PR_ARG, WDEV_PR_ARG)
2903);
2904
a1056b1b
IP
2905TRACE_EVENT(rdev_start_radar_detection,
2906 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2907 struct cfg80211_chan_def *chandef,
2908 u32 cac_time_ms),
2909 TP_ARGS(wiphy, netdev, chandef, cac_time_ms),
2910 TP_STRUCT__entry(
2911 WIPHY_ENTRY
2912 NETDEV_ENTRY
2913 CHAN_DEF_ENTRY
2914 __field(u32, cac_time_ms)
2915 ),
2916 TP_fast_assign(
2917 WIPHY_ASSIGN;
2918 NETDEV_ASSIGN;
2919 CHAN_DEF_ASSIGN(chandef);
2920 __entry->cac_time_ms = cac_time_ms;
2921 ),
2922 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
2923 ", cac_time_ms=%u",
2924 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
2925 __entry->cac_time_ms)
2926);
2927
2928TRACE_EVENT(rdev_set_mcast_rate,
2929 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
57fbcce3 2930 int mcast_rate[NUM_NL80211_BANDS]),
a1056b1b
IP
2931 TP_ARGS(wiphy, netdev, mcast_rate),
2932 TP_STRUCT__entry(
2933 WIPHY_ENTRY
2934 NETDEV_ENTRY
57fbcce3 2935 __array(int, mcast_rate, NUM_NL80211_BANDS)
a1056b1b
IP
2936 ),
2937 TP_fast_assign(
2938 WIPHY_ASSIGN;
2939 NETDEV_ASSIGN;
2940 memcpy(__entry->mcast_rate, mcast_rate,
57fbcce3 2941 sizeof(int) * NUM_NL80211_BANDS);
a1056b1b
IP
2942 ),
2943 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", "
2944 "mcast_rates [2.4GHz=0x%x, 5.2GHz=0x%x, 60GHz=0x%x]",
2945 WIPHY_PR_ARG, NETDEV_PR_ARG,
57fbcce3
JB
2946 __entry->mcast_rate[NL80211_BAND_2GHZ],
2947 __entry->mcast_rate[NL80211_BAND_5GHZ],
2948 __entry->mcast_rate[NL80211_BAND_60GHZ])
a1056b1b
IP
2949);
2950
2951TRACE_EVENT(rdev_set_coalesce,
2952 TP_PROTO(struct wiphy *wiphy, struct cfg80211_coalesce *coalesce),
2953 TP_ARGS(wiphy, coalesce),
2954 TP_STRUCT__entry(
2955 WIPHY_ENTRY
2956 __field(int, n_rules)
2957 ),
2958 TP_fast_assign(
2959 WIPHY_ASSIGN;
2960 __entry->n_rules = coalesce ? coalesce->n_rules : 0;
2961 ),
2962 TP_printk(WIPHY_PR_FMT ", n_rules=%d",
2963 WIPHY_PR_ARG, __entry->n_rules)
2964);
2965
91d3ab46
VK
2966DEFINE_EVENT(wiphy_wdev_evt, rdev_abort_scan,
2967 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2968 TP_ARGS(wiphy, wdev)
2969);
14e8a3c4
BL
2970#endif /* !__RDEV_OPS_TRACE || TRACE_HEADER_MULTI_READ */
2971
2972#undef TRACE_INCLUDE_PATH
2973#define TRACE_INCLUDE_PATH .
2974#undef TRACE_INCLUDE_FILE
2975#define TRACE_INCLUDE_FILE trace
2976#include <trace/define_trace.h>