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