1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM cfg80211
5 #if !defined(__RDEV_OPS_TRACE) || defined(TRACE_HEADER_MULTI_READ)
6 #define __RDEV_OPS_TRACE
8 #include <linux/tracepoint.h>
10 #include <linux/rtnetlink.h>
11 #include <linux/etherdevice.h>
12 #include <net/cfg80211.h>
15 #define MAC_ENTRY(entry_mac) __array(u8, entry_mac, ETH_ALEN)
16 #define MAC_ASSIGN(entry_mac, given_mac) do { \
18 memcpy(__entry->entry_mac, given_mac, ETH_ALEN); \
20 eth_zero_addr(__entry->entry_mac); \
24 #define WIPHY_ENTRY __array(char, wiphy_name, 32)
25 #define WIPHY_ASSIGN strscpy(__entry->wiphy_name, wiphy_name(wiphy), MAXNAME)
26 #define WIPHY_PR_FMT "%s"
27 #define WIPHY_PR_ARG __entry->wiphy_name
29 #define WDEV_ENTRY __field(u32, id)
30 #define WDEV_ASSIGN (__entry->id) = (!IS_ERR_OR_NULL(wdev) \
31 ? wdev->identifier : 0)
32 #define WDEV_PR_FMT "wdev(%u)"
33 #define WDEV_PR_ARG (__entry->id)
35 #define NETDEV_ENTRY __array(char, name, IFNAMSIZ) \
37 #define NETDEV_ASSIGN \
39 memcpy(__entry->name, netdev->name, IFNAMSIZ); \
40 (__entry->ifindex) = (netdev->ifindex); \
42 #define NETDEV_PR_FMT "netdev:%s(%d)"
43 #define NETDEV_PR_ARG __entry->name, __entry->ifindex
45 #define MESH_CFG_ENTRY __field(u16, dot11MeshRetryTimeout) \
46 __field(u16, dot11MeshConfirmTimeout) \
47 __field(u16, dot11MeshHoldingTimeout) \
48 __field(u16, dot11MeshMaxPeerLinks) \
49 __field(u8, dot11MeshMaxRetries) \
50 __field(u8, dot11MeshTTL) \
51 __field(u8, element_ttl) \
52 __field(bool, auto_open_plinks) \
53 __field(u32, dot11MeshNbrOffsetMaxNeighbor) \
54 __field(u8, dot11MeshHWMPmaxPREQretries) \
55 __field(u32, path_refresh_time) \
56 __field(u32, dot11MeshHWMPactivePathTimeout) \
57 __field(u16, min_discovery_timeout) \
58 __field(u16, dot11MeshHWMPpreqMinInterval) \
59 __field(u16, dot11MeshHWMPperrMinInterval) \
60 __field(u16, dot11MeshHWMPnetDiameterTraversalTime) \
61 __field(u8, dot11MeshHWMPRootMode) \
62 __field(u16, dot11MeshHWMPRannInterval) \
63 __field(bool, dot11MeshGateAnnouncementProtocol) \
64 __field(bool, dot11MeshForwarding) \
65 __field(s32, rssi_threshold) \
66 __field(u16, ht_opmode) \
67 __field(u32, dot11MeshHWMPactivePathToRootTimeout) \
68 __field(u16, dot11MeshHWMProotInterval) \
69 __field(u16, dot11MeshHWMPconfirmationInterval) \
70 __field(bool, dot11MeshNolearn)
71 #define MESH_CFG_ASSIGN \
73 __entry->dot11MeshRetryTimeout = conf->dot11MeshRetryTimeout; \
74 __entry->dot11MeshConfirmTimeout = \
75 conf->dot11MeshConfirmTimeout; \
76 __entry->dot11MeshHoldingTimeout = \
77 conf->dot11MeshHoldingTimeout; \
78 __entry->dot11MeshMaxPeerLinks = conf->dot11MeshMaxPeerLinks; \
79 __entry->dot11MeshMaxRetries = conf->dot11MeshMaxRetries; \
80 __entry->dot11MeshTTL = conf->dot11MeshTTL; \
81 __entry->element_ttl = conf->element_ttl; \
82 __entry->auto_open_plinks = conf->auto_open_plinks; \
83 __entry->dot11MeshNbrOffsetMaxNeighbor = \
84 conf->dot11MeshNbrOffsetMaxNeighbor; \
85 __entry->dot11MeshHWMPmaxPREQretries = \
86 conf->dot11MeshHWMPmaxPREQretries; \
87 __entry->path_refresh_time = conf->path_refresh_time; \
88 __entry->dot11MeshHWMPactivePathTimeout = \
89 conf->dot11MeshHWMPactivePathTimeout; \
90 __entry->min_discovery_timeout = conf->min_discovery_timeout; \
91 __entry->dot11MeshHWMPpreqMinInterval = \
92 conf->dot11MeshHWMPpreqMinInterval; \
93 __entry->dot11MeshHWMPperrMinInterval = \
94 conf->dot11MeshHWMPperrMinInterval; \
95 __entry->dot11MeshHWMPnetDiameterTraversalTime = \
96 conf->dot11MeshHWMPnetDiameterTraversalTime; \
97 __entry->dot11MeshHWMPRootMode = conf->dot11MeshHWMPRootMode; \
98 __entry->dot11MeshHWMPRannInterval = \
99 conf->dot11MeshHWMPRannInterval; \
100 __entry->dot11MeshGateAnnouncementProtocol = \
101 conf->dot11MeshGateAnnouncementProtocol; \
102 __entry->dot11MeshForwarding = conf->dot11MeshForwarding; \
103 __entry->rssi_threshold = conf->rssi_threshold; \
104 __entry->ht_opmode = conf->ht_opmode; \
105 __entry->dot11MeshHWMPactivePathToRootTimeout = \
106 conf->dot11MeshHWMPactivePathToRootTimeout; \
107 __entry->dot11MeshHWMProotInterval = \
108 conf->dot11MeshHWMProotInterval; \
109 __entry->dot11MeshHWMPconfirmationInterval = \
110 conf->dot11MeshHWMPconfirmationInterval; \
111 __entry->dot11MeshNolearn = conf->dot11MeshNolearn; \
114 #define CHAN_ENTRY __field(enum nl80211_band, band) \
115 __field(u32, center_freq) \
116 __field(u16, freq_offset)
117 #define CHAN_ASSIGN(chan) \
120 __entry->band = chan->band; \
121 __entry->center_freq = chan->center_freq; \
122 __entry->freq_offset = chan->freq_offset; \
125 __entry->center_freq = 0; \
126 __entry->freq_offset = 0; \
129 #define CHAN_PR_FMT "band: %d, freq: %u.%03u"
130 #define CHAN_PR_ARG __entry->band, __entry->center_freq, __entry->freq_offset
132 #define CHAN_DEF_ENTRY __field(enum nl80211_band, band) \
133 __field(u32, control_freq) \
134 __field(u32, freq_offset) \
135 __field(u32, width) \
136 __field(u32, center_freq1) \
137 __field(u32, freq1_offset) \
138 __field(u32, center_freq2)
139 #define CHAN_DEF_ASSIGN(chandef) \
141 if ((chandef) && (chandef)->chan) { \
142 __entry->band = (chandef)->chan->band; \
143 __entry->control_freq = \
144 (chandef)->chan->center_freq; \
145 __entry->freq_offset = \
146 (chandef)->chan->freq_offset; \
147 __entry->width = (chandef)->width; \
148 __entry->center_freq1 = (chandef)->center_freq1;\
149 __entry->freq1_offset = (chandef)->freq1_offset;\
150 __entry->center_freq2 = (chandef)->center_freq2;\
153 __entry->control_freq = 0; \
154 __entry->freq_offset = 0; \
155 __entry->width = 0; \
156 __entry->center_freq1 = 0; \
157 __entry->freq1_offset = 0; \
158 __entry->center_freq2 = 0; \
161 #define CHAN_DEF_PR_FMT \
162 "band: %d, control freq: %u.%03u, width: %d, cf1: %u.%03u, cf2: %u"
163 #define CHAN_DEF_PR_ARG __entry->band, __entry->control_freq, \
164 __entry->freq_offset, __entry->width, \
165 __entry->center_freq1, __entry->freq1_offset, \
166 __entry->center_freq2
168 #define FILS_AAD_ASSIGN(fa) \
171 ether_addr_copy(__entry->macaddr, fa->macaddr); \
172 __entry->kek_len = fa->kek_len; \
174 eth_zero_addr(__entry->macaddr); \
175 __entry->kek_len = 0; \
178 #define FILS_AAD_PR_FMT \
179 "macaddr: %pM, kek_len: %d"
181 #define SINFO_ENTRY __field(int, generation) \
182 __field(u32, connected_time) \
183 __field(u32, inactive_time) \
184 __field(u32, rx_bytes) \
185 __field(u32, tx_bytes) \
186 __field(u32, rx_packets) \
187 __field(u32, tx_packets) \
188 __field(u32, tx_retries) \
189 __field(u32, tx_failed) \
190 __field(u32, rx_dropped_misc) \
191 __field(u32, beacon_loss_count) \
194 __field(u8, plink_state)
195 #define SINFO_ASSIGN \
197 __entry->generation = sinfo->generation; \
198 __entry->connected_time = sinfo->connected_time; \
199 __entry->inactive_time = sinfo->inactive_time; \
200 __entry->rx_bytes = sinfo->rx_bytes; \
201 __entry->tx_bytes = sinfo->tx_bytes; \
202 __entry->rx_packets = sinfo->rx_packets; \
203 __entry->tx_packets = sinfo->tx_packets; \
204 __entry->tx_retries = sinfo->tx_retries; \
205 __entry->tx_failed = sinfo->tx_failed; \
206 __entry->rx_dropped_misc = sinfo->rx_dropped_misc; \
207 __entry->beacon_loss_count = sinfo->beacon_loss_count; \
208 __entry->llid = sinfo->llid; \
209 __entry->plid = sinfo->plid; \
210 __entry->plink_state = sinfo->plink_state; \
213 #define BOOL_TO_STR(bo) (bo) ? "true" : "false"
215 #define QOS_MAP_ENTRY __field(u8, num_des) \
216 __array(u8, dscp_exception, \
217 2 * IEEE80211_QOS_MAP_MAX_EX) \
218 __array(u8, up, IEEE80211_QOS_MAP_LEN_MIN)
219 #define QOS_MAP_ASSIGN(qos_map) \
222 __entry->num_des = (qos_map)->num_des; \
223 memcpy(__entry->dscp_exception, \
224 &(qos_map)->dscp_exception, \
225 2 * IEEE80211_QOS_MAP_MAX_EX); \
226 memcpy(__entry->up, &(qos_map)->up, \
227 IEEE80211_QOS_MAP_LEN_MIN); \
229 __entry->num_des = 0; \
230 memset(__entry->dscp_exception, 0, \
231 2 * IEEE80211_QOS_MAP_MAX_EX); \
232 memset(__entry->up, 0, \
233 IEEE80211_QOS_MAP_LEN_MIN); \
237 /*************************************************************
239 *************************************************************/
241 TRACE_EVENT(rdev_suspend,
242 TP_PROTO(struct wiphy *wiphy, struct cfg80211_wowlan *wow),
247 __field(bool, disconnect)
248 __field(bool, magic_pkt)
249 __field(bool, gtk_rekey_failure)
250 __field(bool, eap_identity_req)
251 __field(bool, four_way_handshake)
252 __field(bool, rfkill_release)
253 __field(bool, valid_wow)
258 __entry->any = wow->any;
259 __entry->disconnect = wow->disconnect;
260 __entry->magic_pkt = wow->magic_pkt;
261 __entry->gtk_rekey_failure = wow->gtk_rekey_failure;
262 __entry->eap_identity_req = wow->eap_identity_req;
263 __entry->four_way_handshake = wow->four_way_handshake;
264 __entry->rfkill_release = wow->rfkill_release;
265 __entry->valid_wow = true;
267 __entry->valid_wow = false;
270 TP_printk(WIPHY_PR_FMT ", wow%s - any: %d, disconnect: %d, "
271 "magic pkt: %d, gtk rekey failure: %d, eap identify req: %d, "
272 "four way handshake: %d, rfkill release: %d.",
273 WIPHY_PR_ARG, __entry->valid_wow ? "" : "(Not configured!)",
274 __entry->any, __entry->disconnect, __entry->magic_pkt,
275 __entry->gtk_rekey_failure, __entry->eap_identity_req,
276 __entry->four_way_handshake, __entry->rfkill_release)
279 TRACE_EVENT(rdev_return_int,
280 TP_PROTO(struct wiphy *wiphy, int ret),
290 TP_printk(WIPHY_PR_FMT ", returned: %d", WIPHY_PR_ARG, __entry->ret)
293 TRACE_EVENT(rdev_scan,
294 TP_PROTO(struct wiphy *wiphy, struct cfg80211_scan_request *request),
295 TP_ARGS(wiphy, request),
302 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
305 DECLARE_EVENT_CLASS(wiphy_only_evt,
306 TP_PROTO(struct wiphy *wiphy),
314 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
317 DEFINE_EVENT(wiphy_only_evt, rdev_resume,
318 TP_PROTO(struct wiphy *wiphy),
322 DEFINE_EVENT(wiphy_only_evt, rdev_return_void,
323 TP_PROTO(struct wiphy *wiphy),
327 DEFINE_EVENT(wiphy_only_evt, rdev_get_antenna,
328 TP_PROTO(struct wiphy *wiphy),
332 DEFINE_EVENT(wiphy_only_evt, rdev_rfkill_poll,
333 TP_PROTO(struct wiphy *wiphy),
337 DECLARE_EVENT_CLASS(wiphy_enabled_evt,
338 TP_PROTO(struct wiphy *wiphy, bool enabled),
339 TP_ARGS(wiphy, enabled),
342 __field(bool, enabled)
346 __entry->enabled = enabled;
348 TP_printk(WIPHY_PR_FMT ", %senabled ",
349 WIPHY_PR_ARG, __entry->enabled ? "" : "not ")
352 DEFINE_EVENT(wiphy_enabled_evt, rdev_set_wakeup,
353 TP_PROTO(struct wiphy *wiphy, bool enabled),
354 TP_ARGS(wiphy, enabled)
357 TRACE_EVENT(rdev_add_virtual_intf,
358 TP_PROTO(struct wiphy *wiphy, char *name, enum nl80211_iftype type),
359 TP_ARGS(wiphy, name, type),
362 __string(vir_intf_name, name ? name : "<noname>")
363 __field(enum nl80211_iftype, type)
367 __assign_str(vir_intf_name, name ? name : "<noname>");
368 __entry->type = type;
370 TP_printk(WIPHY_PR_FMT ", virtual intf name: %s, type: %d",
371 WIPHY_PR_ARG, __get_str(vir_intf_name), __entry->type)
374 DECLARE_EVENT_CLASS(wiphy_wdev_evt,
375 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
376 TP_ARGS(wiphy, wdev),
385 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
388 DECLARE_EVENT_CLASS(wiphy_wdev_cookie_evt,
389 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
390 TP_ARGS(wiphy, wdev, cookie),
399 __entry->cookie = cookie;
401 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %lld",
402 WIPHY_PR_ARG, WDEV_PR_ARG,
403 (unsigned long long)__entry->cookie)
406 DEFINE_EVENT(wiphy_wdev_evt, rdev_return_wdev,
407 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
411 DEFINE_EVENT(wiphy_wdev_evt, rdev_del_virtual_intf,
412 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
416 TRACE_EVENT(rdev_change_virtual_intf,
417 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
418 enum nl80211_iftype type),
419 TP_ARGS(wiphy, netdev, type),
423 __field(enum nl80211_iftype, type)
428 __entry->type = type;
430 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", type: %d",
431 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->type)
434 DECLARE_EVENT_CLASS(key_handle,
435 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
436 u8 key_index, bool pairwise, const u8 *mac_addr),
437 TP_ARGS(wiphy, netdev, link_id, key_index, pairwise, mac_addr),
442 __field(int, link_id)
443 __field(u8, key_index)
444 __field(bool, pairwise)
449 MAC_ASSIGN(mac_addr, mac_addr);
450 __entry->link_id = link_id;
451 __entry->key_index = key_index;
452 __entry->pairwise = pairwise;
454 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d, "
455 "key_index: %u, pairwise: %s, mac addr: %pM",
456 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->link_id,
457 __entry->key_index, BOOL_TO_STR(__entry->pairwise),
461 DEFINE_EVENT(key_handle, rdev_get_key,
462 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
463 u8 key_index, bool pairwise, const u8 *mac_addr),
464 TP_ARGS(wiphy, netdev, link_id, key_index, pairwise, mac_addr)
467 DEFINE_EVENT(key_handle, rdev_del_key,
468 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
469 u8 key_index, bool pairwise, const u8 *mac_addr),
470 TP_ARGS(wiphy, netdev, link_id, key_index, pairwise, mac_addr)
473 TRACE_EVENT(rdev_add_key,
474 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
475 u8 key_index, bool pairwise, const u8 *mac_addr, u8 mode),
476 TP_ARGS(wiphy, netdev, link_id, key_index, pairwise, mac_addr, mode),
481 __field(int, link_id)
482 __field(u8, key_index)
483 __field(bool, pairwise)
489 MAC_ASSIGN(mac_addr, mac_addr);
490 __entry->link_id = link_id;
491 __entry->key_index = key_index;
492 __entry->pairwise = pairwise;
493 __entry->mode = mode;
495 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d, "
496 "key_index: %u, mode: %u, pairwise: %s, "
498 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->link_id,
499 __entry->key_index, __entry->mode,
500 BOOL_TO_STR(__entry->pairwise), __entry->mac_addr)
503 TRACE_EVENT(rdev_set_default_key,
504 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
505 u8 key_index, bool unicast, bool multicast),
506 TP_ARGS(wiphy, netdev, link_id, key_index, unicast, multicast),
510 __field(int, link_id)
511 __field(u8, key_index)
512 __field(bool, unicast)
513 __field(bool, multicast)
518 __entry->link_id = link_id;
519 __entry->key_index = key_index;
520 __entry->unicast = unicast;
521 __entry->multicast = multicast;
523 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d, "
524 "key index: %u, unicast: %s, multicast: %s",
525 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->link_id,
526 __entry->key_index, BOOL_TO_STR(__entry->unicast),
527 BOOL_TO_STR(__entry->multicast))
530 TRACE_EVENT(rdev_set_default_mgmt_key,
531 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
533 TP_ARGS(wiphy, netdev, link_id, key_index),
537 __field(int, link_id)
538 __field(u8, key_index)
543 __entry->link_id = link_id;
544 __entry->key_index = key_index;
546 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d, "
547 "key index: %u", WIPHY_PR_ARG, NETDEV_PR_ARG,
548 __entry->link_id, __entry->key_index)
551 TRACE_EVENT(rdev_set_default_beacon_key,
552 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int link_id,
554 TP_ARGS(wiphy, netdev, link_id, key_index),
558 __field(int, link_id)
559 __field(u8, key_index)
564 __entry->link_id = link_id;
565 __entry->key_index = key_index;
567 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d, "
568 "key index: %u", WIPHY_PR_ARG, NETDEV_PR_ARG,
569 __entry->link_id, __entry->key_index)
572 TRACE_EVENT(rdev_start_ap,
573 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
574 struct cfg80211_ap_settings *settings),
575 TP_ARGS(wiphy, netdev, settings),
580 __field(int, beacon_interval)
581 __field(int, dtim_period)
582 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
583 __field(enum nl80211_hidden_ssid, hidden_ssid)
584 __field(u32, wpa_ver)
585 __field(bool, privacy)
586 __field(enum nl80211_auth_type, auth_type)
587 __field(int, inactivity_timeout)
588 __field(unsigned int, link_id)
593 CHAN_DEF_ASSIGN(&settings->chandef);
594 __entry->beacon_interval = settings->beacon_interval;
595 __entry->dtim_period = settings->dtim_period;
596 __entry->hidden_ssid = settings->hidden_ssid;
597 __entry->wpa_ver = settings->crypto.wpa_versions;
598 __entry->privacy = settings->privacy;
599 __entry->auth_type = settings->auth_type;
600 __entry->inactivity_timeout = settings->inactivity_timeout;
601 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
602 memcpy(__entry->ssid, settings->ssid, settings->ssid_len);
603 __entry->link_id = settings->beacon.link_id;
605 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", AP settings - ssid: %s, "
606 CHAN_DEF_PR_FMT ", beacon interval: %d, dtim period: %d, "
607 "hidden ssid: %d, wpa versions: %u, privacy: %s, "
608 "auth type: %d, inactivity timeout: %d, link_id: %d",
609 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ssid, CHAN_DEF_PR_ARG,
610 __entry->beacon_interval, __entry->dtim_period,
611 __entry->hidden_ssid, __entry->wpa_ver,
612 BOOL_TO_STR(__entry->privacy), __entry->auth_type,
613 __entry->inactivity_timeout, __entry->link_id)
616 TRACE_EVENT(rdev_change_beacon,
617 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
618 struct cfg80211_beacon_data *info),
619 TP_ARGS(wiphy, netdev, info),
623 __field(int, link_id)
624 __dynamic_array(u8, head, info ? info->head_len : 0)
625 __dynamic_array(u8, tail, info ? info->tail_len : 0)
626 __dynamic_array(u8, beacon_ies, info ? info->beacon_ies_len : 0)
627 __dynamic_array(u8, proberesp_ies,
628 info ? info->proberesp_ies_len : 0)
629 __dynamic_array(u8, assocresp_ies,
630 info ? info->assocresp_ies_len : 0)
631 __dynamic_array(u8, probe_resp, info ? info->probe_resp_len : 0)
637 __entry->link_id = info->link_id;
639 memcpy(__get_dynamic_array(head), info->head,
642 memcpy(__get_dynamic_array(tail), info->tail,
644 if (info->beacon_ies)
645 memcpy(__get_dynamic_array(beacon_ies),
646 info->beacon_ies, info->beacon_ies_len);
647 if (info->proberesp_ies)
648 memcpy(__get_dynamic_array(proberesp_ies),
650 info->proberesp_ies_len);
651 if (info->assocresp_ies)
652 memcpy(__get_dynamic_array(assocresp_ies),
654 info->assocresp_ies_len);
655 if (info->probe_resp)
656 memcpy(__get_dynamic_array(probe_resp),
657 info->probe_resp, info->probe_resp_len);
659 __entry->link_id = -1;
662 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id:%d",
663 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->link_id)
666 TRACE_EVENT(rdev_stop_ap,
667 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
668 unsigned int link_id),
669 TP_ARGS(wiphy, netdev, link_id),
673 __field(unsigned int, link_id)
678 __entry->link_id = link_id;
680 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d",
681 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->link_id)
684 DECLARE_EVENT_CLASS(wiphy_netdev_evt,
685 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
686 TP_ARGS(wiphy, netdev),
695 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG)
698 DEFINE_EVENT(wiphy_netdev_evt, rdev_set_rekey_data,
699 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
700 TP_ARGS(wiphy, netdev)
703 DEFINE_EVENT(wiphy_netdev_evt, rdev_get_mesh_config,
704 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
705 TP_ARGS(wiphy, netdev)
708 DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_mesh,
709 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
710 TP_ARGS(wiphy, netdev)
713 DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_ibss,
714 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
715 TP_ARGS(wiphy, netdev)
718 DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_ocb,
719 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
720 TP_ARGS(wiphy, netdev)
723 DEFINE_EVENT(wiphy_netdev_evt, rdev_flush_pmksa,
724 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
725 TP_ARGS(wiphy, netdev)
728 DEFINE_EVENT(wiphy_netdev_evt, rdev_end_cac,
729 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
730 TP_ARGS(wiphy, netdev)
733 DECLARE_EVENT_CLASS(station_add_change,
734 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
735 struct station_parameters *params),
736 TP_ARGS(wiphy, netdev, mac, params),
741 __field(u32, sta_flags_mask)
742 __field(u32, sta_flags_set)
743 __field(u32, sta_modify_mask)
744 __field(int, listen_interval)
745 __field(u16, capability)
747 __field(u8, plink_action)
748 __field(u8, plink_state)
749 __field(u8, uapsd_queues)
751 __field(u8, opmode_notif)
752 __field(bool, opmode_notif_used)
753 __array(u8, ht_capa, (int)sizeof(struct ieee80211_ht_cap))
754 __array(u8, vht_capa, (int)sizeof(struct ieee80211_vht_cap))
755 __array(char, vlan, IFNAMSIZ)
756 __dynamic_array(u8, supported_rates,
757 params->link_sta_params.supported_rates_len)
758 __dynamic_array(u8, ext_capab, params->ext_capab_len)
759 __dynamic_array(u8, supported_channels,
760 params->supported_channels_len)
761 __dynamic_array(u8, supported_oper_classes,
762 params->supported_oper_classes_len)
767 MAC_ASSIGN(sta_mac, mac);
768 __entry->sta_flags_mask = params->sta_flags_mask;
769 __entry->sta_flags_set = params->sta_flags_set;
770 __entry->sta_modify_mask = params->sta_modify_mask;
771 __entry->listen_interval = params->listen_interval;
772 __entry->aid = params->aid;
773 __entry->plink_action = params->plink_action;
774 __entry->plink_state = params->plink_state;
775 __entry->uapsd_queues = params->uapsd_queues;
776 memset(__entry->ht_capa, 0, sizeof(struct ieee80211_ht_cap));
777 if (params->link_sta_params.ht_capa)
778 memcpy(__entry->ht_capa,
779 params->link_sta_params.ht_capa,
780 sizeof(struct ieee80211_ht_cap));
781 memset(__entry->vht_capa, 0, sizeof(struct ieee80211_vht_cap));
782 if (params->link_sta_params.vht_capa)
783 memcpy(__entry->vht_capa,
784 params->link_sta_params.vht_capa,
785 sizeof(struct ieee80211_vht_cap));
786 memset(__entry->vlan, 0, sizeof(__entry->vlan));
788 memcpy(__entry->vlan, params->vlan->name, IFNAMSIZ);
789 if (params->link_sta_params.supported_rates &&
790 params->link_sta_params.supported_rates_len)
791 memcpy(__get_dynamic_array(supported_rates),
792 params->link_sta_params.supported_rates,
793 params->link_sta_params.supported_rates_len);
794 if (params->ext_capab && params->ext_capab_len)
795 memcpy(__get_dynamic_array(ext_capab),
797 params->ext_capab_len);
798 if (params->supported_channels &&
799 params->supported_channels_len)
800 memcpy(__get_dynamic_array(supported_channels),
801 params->supported_channels,
802 params->supported_channels_len);
803 if (params->supported_oper_classes &&
804 params->supported_oper_classes_len)
805 memcpy(__get_dynamic_array(supported_oper_classes),
806 params->supported_oper_classes,
807 params->supported_oper_classes_len);
808 __entry->max_sp = params->max_sp;
809 __entry->capability = params->capability;
810 __entry->opmode_notif = params->link_sta_params.opmode_notif;
811 __entry->opmode_notif_used =
812 params->link_sta_params.opmode_notif_used;
814 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: %pM"
815 ", station flags mask: %u, station flags set: %u, "
816 "station modify mask: %u, listen interval: %d, aid: %u, "
817 "plink action: %u, plink state: %u, uapsd queues: %u, vlan:%s",
818 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->sta_mac,
819 __entry->sta_flags_mask, __entry->sta_flags_set,
820 __entry->sta_modify_mask, __entry->listen_interval,
821 __entry->aid, __entry->plink_action, __entry->plink_state,
822 __entry->uapsd_queues, __entry->vlan)
825 DEFINE_EVENT(station_add_change, rdev_add_station,
826 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
827 struct station_parameters *params),
828 TP_ARGS(wiphy, netdev, mac, params)
831 DEFINE_EVENT(station_add_change, rdev_change_station,
832 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
833 struct station_parameters *params),
834 TP_ARGS(wiphy, netdev, mac, params)
837 DECLARE_EVENT_CLASS(wiphy_netdev_mac_evt,
838 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
839 TP_ARGS(wiphy, netdev, mac),
848 MAC_ASSIGN(sta_mac, mac);
850 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mac: %pM",
851 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->sta_mac)
854 DECLARE_EVENT_CLASS(station_del,
855 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
856 struct station_del_parameters *params),
857 TP_ARGS(wiphy, netdev, params),
863 __field(u16, reason_code)
868 MAC_ASSIGN(sta_mac, params->mac);
869 __entry->subtype = params->subtype;
870 __entry->reason_code = params->reason_code;
872 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: %pM"
873 ", subtype: %u, reason_code: %u",
874 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->sta_mac,
875 __entry->subtype, __entry->reason_code)
878 DEFINE_EVENT(station_del, rdev_del_station,
879 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
880 struct station_del_parameters *params),
881 TP_ARGS(wiphy, netdev, params)
884 DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_get_station,
885 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
886 TP_ARGS(wiphy, netdev, mac)
889 DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_del_mpath,
890 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
891 TP_ARGS(wiphy, netdev, mac)
894 TRACE_EVENT(rdev_dump_station,
895 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int _idx,
897 TP_ARGS(wiphy, netdev, _idx, mac),
907 MAC_ASSIGN(sta_mac, mac);
910 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: %pM, idx: %d",
911 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->sta_mac,
915 TRACE_EVENT(rdev_return_int_station_info,
916 TP_PROTO(struct wiphy *wiphy, int ret, struct station_info *sinfo),
917 TP_ARGS(wiphy, ret, sinfo),
928 TP_printk(WIPHY_PR_FMT ", returned %d" ,
929 WIPHY_PR_ARG, __entry->ret)
932 DECLARE_EVENT_CLASS(mpath_evt,
933 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
935 TP_ARGS(wiphy, netdev, dst, next_hop),
945 MAC_ASSIGN(dst, dst);
946 MAC_ASSIGN(next_hop, next_hop);
948 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", destination: %pM, next hop: %pM",
949 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->dst,
953 DEFINE_EVENT(mpath_evt, rdev_add_mpath,
954 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
956 TP_ARGS(wiphy, netdev, dst, next_hop)
959 DEFINE_EVENT(mpath_evt, rdev_change_mpath,
960 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
962 TP_ARGS(wiphy, netdev, dst, next_hop)
965 DEFINE_EVENT(mpath_evt, rdev_get_mpath,
966 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
968 TP_ARGS(wiphy, netdev, dst, next_hop)
971 TRACE_EVENT(rdev_dump_mpath,
972 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int _idx,
973 u8 *dst, u8 *next_hop),
974 TP_ARGS(wiphy, netdev, _idx, dst, next_hop),
985 MAC_ASSIGN(dst, dst);
986 MAC_ASSIGN(next_hop, next_hop);
989 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d, destination: %pM, next hop: %pM",
990 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx, __entry->dst,
994 TRACE_EVENT(rdev_get_mpp,
995 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
997 TP_ARGS(wiphy, netdev, dst, mpp),
1007 MAC_ASSIGN(dst, dst);
1008 MAC_ASSIGN(mpp, mpp);
1010 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", destination: %pM"
1011 ", mpp: %pM", WIPHY_PR_ARG, NETDEV_PR_ARG,
1012 __entry->dst, __entry->mpp)
1015 TRACE_EVENT(rdev_dump_mpp,
1016 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int _idx,
1018 TP_ARGS(wiphy, netdev, _idx, mpp, dst),
1029 MAC_ASSIGN(dst, dst);
1030 MAC_ASSIGN(mpp, mpp);
1031 __entry->idx = _idx;
1033 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d, destination: %pM, mpp: %pM",
1034 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx, __entry->dst,
1038 TRACE_EVENT(rdev_return_int_mpath_info,
1039 TP_PROTO(struct wiphy *wiphy, int ret, struct mpath_info *pinfo),
1040 TP_ARGS(wiphy, ret, pinfo),
1044 __field(int, generation)
1045 __field(u32, filled)
1046 __field(u32, frame_qlen)
1048 __field(u32, metric)
1049 __field(u32, exptime)
1050 __field(u32, discovery_timeout)
1051 __field(u8, discovery_retries)
1057 __entry->generation = pinfo->generation;
1058 __entry->filled = pinfo->filled;
1059 __entry->frame_qlen = pinfo->frame_qlen;
1060 __entry->sn = pinfo->sn;
1061 __entry->metric = pinfo->metric;
1062 __entry->exptime = pinfo->exptime;
1063 __entry->discovery_timeout = pinfo->discovery_timeout;
1064 __entry->discovery_retries = pinfo->discovery_retries;
1065 __entry->flags = pinfo->flags;
1067 TP_printk(WIPHY_PR_FMT ", returned %d. mpath info - generation: %d, "
1068 "filled: %u, frame qlen: %u, sn: %u, metric: %u, exptime: %u,"
1069 " discovery timeout: %u, discovery retries: %u, flags: %u",
1070 WIPHY_PR_ARG, __entry->ret, __entry->generation,
1071 __entry->filled, __entry->frame_qlen, __entry->sn,
1072 __entry->metric, __entry->exptime, __entry->discovery_timeout,
1073 __entry->discovery_retries, __entry->flags)
1076 TRACE_EVENT(rdev_return_int_mesh_config,
1077 TP_PROTO(struct wiphy *wiphy, int ret, struct mesh_config *conf),
1078 TP_ARGS(wiphy, ret, conf),
1089 TP_printk(WIPHY_PR_FMT ", returned: %d",
1090 WIPHY_PR_ARG, __entry->ret)
1093 TRACE_EVENT(rdev_update_mesh_config,
1094 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u32 mask,
1095 const struct mesh_config *conf),
1096 TP_ARGS(wiphy, netdev, mask, conf),
1107 __entry->mask = mask;
1109 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mask: %u",
1110 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->mask)
1113 TRACE_EVENT(rdev_join_mesh,
1114 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1115 const struct mesh_config *conf,
1116 const struct mesh_setup *setup),
1117 TP_ARGS(wiphy, netdev, conf, setup),
1128 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
1129 WIPHY_PR_ARG, NETDEV_PR_ARG)
1132 TRACE_EVENT(rdev_change_bss,
1133 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1134 struct bss_parameters *params),
1135 TP_ARGS(wiphy, netdev, params),
1139 __field(int, use_cts_prot)
1140 __field(int, use_short_preamble)
1141 __field(int, use_short_slot_time)
1142 __field(int, ap_isolate)
1143 __field(int, ht_opmode)
1148 __entry->use_cts_prot = params->use_cts_prot;
1149 __entry->use_short_preamble = params->use_short_preamble;
1150 __entry->use_short_slot_time = params->use_short_slot_time;
1151 __entry->ap_isolate = params->ap_isolate;
1152 __entry->ht_opmode = params->ht_opmode;
1154 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", use cts prot: %d, "
1155 "use short preamble: %d, use short slot time: %d, "
1156 "ap isolate: %d, ht opmode: %d",
1157 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->use_cts_prot,
1158 __entry->use_short_preamble, __entry->use_short_slot_time,
1159 __entry->ap_isolate, __entry->ht_opmode)
1162 TRACE_EVENT(rdev_inform_bss,
1163 TP_PROTO(struct wiphy *wiphy, struct cfg80211_bss *bss),
1164 TP_ARGS(wiphy, bss),
1172 MAC_ASSIGN(bssid, bss->bssid);
1173 CHAN_ASSIGN(bss->channel);
1175 TP_printk(WIPHY_PR_FMT ", %pM, " CHAN_PR_FMT,
1176 WIPHY_PR_ARG, __entry->bssid, CHAN_PR_ARG)
1179 TRACE_EVENT(rdev_set_txq_params,
1180 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1181 struct ieee80211_txq_params *params),
1182 TP_ARGS(wiphy, netdev, params),
1186 __field(enum nl80211_ac, ac)
1195 __entry->ac = params->ac;
1196 __entry->txop = params->txop;
1197 __entry->cwmin = params->cwmin;
1198 __entry->cwmax = params->cwmax;
1199 __entry->aifs = params->aifs;
1201 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", ac: %d, txop: %u, cwmin: %u, cwmax: %u, aifs: %u",
1202 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ac, __entry->txop,
1203 __entry->cwmin, __entry->cwmax, __entry->aifs)
1206 TRACE_EVENT(rdev_libertas_set_mesh_channel,
1207 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1208 struct ieee80211_channel *chan),
1209 TP_ARGS(wiphy, netdev, chan),
1220 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_PR_FMT, WIPHY_PR_ARG,
1221 NETDEV_PR_ARG, CHAN_PR_ARG)
1224 TRACE_EVENT(rdev_set_monitor_channel,
1225 TP_PROTO(struct wiphy *wiphy,
1226 struct cfg80211_chan_def *chandef),
1227 TP_ARGS(wiphy, chandef),
1234 CHAN_DEF_ASSIGN(chandef);
1236 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
1237 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
1240 TRACE_EVENT(rdev_auth,
1241 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1242 struct cfg80211_auth_request *req),
1243 TP_ARGS(wiphy, netdev, req),
1248 __field(enum nl80211_auth_type, auth_type)
1254 MAC_ASSIGN(bssid, req->bss->bssid);
1256 eth_zero_addr(__entry->bssid);
1257 __entry->auth_type = req->auth_type;
1259 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", auth type: %d, bssid: %pM",
1260 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->auth_type,
1264 TRACE_EVENT(rdev_assoc,
1265 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1266 struct cfg80211_assoc_request *req),
1267 TP_ARGS(wiphy, netdev, req),
1272 MAC_ENTRY(prev_bssid)
1273 __field(bool, use_mfp)
1275 __dynamic_array(u8, elements, req->ie_len)
1276 __array(u8, ht_capa, sizeof(struct ieee80211_ht_cap))
1277 __array(u8, ht_capa_mask, sizeof(struct ieee80211_ht_cap))
1278 __array(u8, vht_capa, sizeof(struct ieee80211_vht_cap))
1279 __array(u8, vht_capa_mask, sizeof(struct ieee80211_vht_cap))
1280 __dynamic_array(u8, fils_kek, req->fils_kek_len)
1281 __dynamic_array(u8, fils_nonces,
1282 req->fils_nonces ? 2 * FILS_NONCE_LEN : 0)
1288 MAC_ASSIGN(bssid, req->bss->bssid);
1290 eth_zero_addr(__entry->bssid);
1291 MAC_ASSIGN(prev_bssid, req->prev_bssid);
1292 __entry->use_mfp = req->use_mfp;
1293 __entry->flags = req->flags;
1295 memcpy(__get_dynamic_array(elements),
1296 req->ie, req->ie_len);
1297 memcpy(__entry->ht_capa, &req->ht_capa, sizeof(req->ht_capa));
1298 memcpy(__entry->ht_capa_mask, &req->ht_capa_mask,
1299 sizeof(req->ht_capa_mask));
1300 memcpy(__entry->vht_capa, &req->vht_capa, sizeof(req->vht_capa));
1301 memcpy(__entry->vht_capa_mask, &req->vht_capa_mask,
1302 sizeof(req->vht_capa_mask));
1304 memcpy(__get_dynamic_array(fils_kek),
1305 req->fils_kek, req->fils_kek_len);
1306 if (req->fils_nonces)
1307 memcpy(__get_dynamic_array(fils_nonces),
1308 req->fils_nonces, 2 * FILS_NONCE_LEN);
1310 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM"
1311 ", previous bssid: %pM, use mfp: %s, flags: %u",
1312 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid,
1313 __entry->prev_bssid, BOOL_TO_STR(__entry->use_mfp),
1317 TRACE_EVENT(rdev_deauth,
1318 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1319 struct cfg80211_deauth_request *req),
1320 TP_ARGS(wiphy, netdev, req),
1325 __field(u16, reason_code)
1330 MAC_ASSIGN(bssid, req->bssid);
1331 __entry->reason_code = req->reason_code;
1333 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM, reason: %u",
1334 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid,
1335 __entry->reason_code)
1338 TRACE_EVENT(rdev_disassoc,
1339 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1340 struct cfg80211_disassoc_request *req),
1341 TP_ARGS(wiphy, netdev, req),
1346 __field(u16, reason_code)
1347 __field(bool, local_state_change)
1352 MAC_ASSIGN(bssid, req->ap_addr);
1353 __entry->reason_code = req->reason_code;
1354 __entry->local_state_change = req->local_state_change;
1356 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM"
1357 ", reason: %u, local state change: %s",
1358 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid,
1359 __entry->reason_code,
1360 BOOL_TO_STR(__entry->local_state_change))
1363 TRACE_EVENT(rdev_mgmt_tx_cancel_wait,
1364 TP_PROTO(struct wiphy *wiphy,
1365 struct wireless_dev *wdev, u64 cookie),
1366 TP_ARGS(wiphy, wdev, cookie),
1370 __field(u64, cookie)
1375 __entry->cookie = cookie;
1377 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %llu ",
1378 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
1381 TRACE_EVENT(rdev_set_power_mgmt,
1382 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1383 bool enabled, int timeout),
1384 TP_ARGS(wiphy, netdev, enabled, timeout),
1388 __field(bool, enabled)
1389 __field(int, timeout)
1394 __entry->enabled = enabled;
1395 __entry->timeout = timeout;
1397 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %senabled, timeout: %d ",
1398 WIPHY_PR_ARG, NETDEV_PR_ARG,
1399 __entry->enabled ? "" : "not ", __entry->timeout)
1402 TRACE_EVENT(rdev_connect,
1403 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1404 struct cfg80211_connect_params *sme),
1405 TP_ARGS(wiphy, netdev, sme),
1410 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
1411 __field(enum nl80211_auth_type, auth_type)
1412 __field(bool, privacy)
1413 __field(u32, wpa_versions)
1415 MAC_ENTRY(prev_bssid)
1420 MAC_ASSIGN(bssid, sme->bssid);
1421 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
1422 memcpy(__entry->ssid, sme->ssid, sme->ssid_len);
1423 __entry->auth_type = sme->auth_type;
1424 __entry->privacy = sme->privacy;
1425 __entry->wpa_versions = sme->crypto.wpa_versions;
1426 __entry->flags = sme->flags;
1427 MAC_ASSIGN(prev_bssid, sme->prev_bssid);
1429 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM"
1430 ", ssid: %s, auth type: %d, privacy: %s, wpa versions: %u, "
1431 "flags: %u, previous bssid: %pM",
1432 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid, __entry->ssid,
1433 __entry->auth_type, BOOL_TO_STR(__entry->privacy),
1434 __entry->wpa_versions, __entry->flags, __entry->prev_bssid)
1437 TRACE_EVENT(rdev_update_connect_params,
1438 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1439 struct cfg80211_connect_params *sme, u32 changed),
1440 TP_ARGS(wiphy, netdev, sme, changed),
1444 __field(u32, changed)
1449 __entry->changed = changed;
1451 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", parameters changed: %u",
1452 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->changed)
1455 TRACE_EVENT(rdev_set_cqm_rssi_config,
1456 TP_PROTO(struct wiphy *wiphy,
1457 struct net_device *netdev, s32 rssi_thold,
1459 TP_ARGS(wiphy, netdev, rssi_thold, rssi_hyst),
1463 __field(s32, rssi_thold)
1464 __field(u32, rssi_hyst)
1469 __entry->rssi_thold = rssi_thold;
1470 __entry->rssi_hyst = rssi_hyst;
1472 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT
1473 ", rssi_thold: %d, rssi_hyst: %u ",
1474 WIPHY_PR_ARG, NETDEV_PR_ARG,
1475 __entry->rssi_thold, __entry->rssi_hyst)
1478 TRACE_EVENT(rdev_set_cqm_rssi_range_config,
1479 TP_PROTO(struct wiphy *wiphy,
1480 struct net_device *netdev, s32 low, s32 high),
1481 TP_ARGS(wiphy, netdev, low, high),
1485 __field(s32, rssi_low)
1486 __field(s32, rssi_high)
1491 __entry->rssi_low = low;
1492 __entry->rssi_high = high;
1494 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT
1495 ", range: %d - %d ",
1496 WIPHY_PR_ARG, NETDEV_PR_ARG,
1497 __entry->rssi_low, __entry->rssi_high)
1500 TRACE_EVENT(rdev_set_cqm_txe_config,
1501 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u32 rate,
1502 u32 pkts, u32 intvl),
1503 TP_ARGS(wiphy, netdev, rate, pkts, intvl),
1514 __entry->rate = rate;
1515 __entry->pkts = pkts;
1516 __entry->intvl = intvl;
1518 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", rate: %u, packets: %u, interval: %u",
1519 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->rate, __entry->pkts,
1523 TRACE_EVENT(rdev_disconnect,
1524 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1526 TP_ARGS(wiphy, netdev, reason_code),
1530 __field(u16, reason_code)
1535 __entry->reason_code = reason_code;
1537 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", reason code: %u", WIPHY_PR_ARG,
1538 NETDEV_PR_ARG, __entry->reason_code)
1541 TRACE_EVENT(rdev_join_ibss,
1542 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1543 struct cfg80211_ibss_params *params),
1544 TP_ARGS(wiphy, netdev, params),
1549 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
1554 MAC_ASSIGN(bssid, params->bssid);
1555 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
1556 memcpy(__entry->ssid, params->ssid, params->ssid_len);
1558 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM, ssid: %s",
1559 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid, __entry->ssid)
1562 TRACE_EVENT(rdev_join_ocb,
1563 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1564 const struct ocb_setup *setup),
1565 TP_ARGS(wiphy, netdev, setup),
1574 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
1575 WIPHY_PR_ARG, NETDEV_PR_ARG)
1578 TRACE_EVENT(rdev_set_wiphy_params,
1579 TP_PROTO(struct wiphy *wiphy, u32 changed),
1580 TP_ARGS(wiphy, changed),
1583 __field(u32, changed)
1587 __entry->changed = changed;
1589 TP_printk(WIPHY_PR_FMT ", changed: %u",
1590 WIPHY_PR_ARG, __entry->changed)
1593 DEFINE_EVENT(wiphy_wdev_evt, rdev_get_tx_power,
1594 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1595 TP_ARGS(wiphy, wdev)
1598 TRACE_EVENT(rdev_set_tx_power,
1599 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1600 enum nl80211_tx_power_setting type, int mbm),
1601 TP_ARGS(wiphy, wdev, type, mbm),
1605 __field(enum nl80211_tx_power_setting, type)
1611 __entry->type = type;
1614 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", type: %u, mbm: %d",
1615 WIPHY_PR_ARG, WDEV_PR_ARG,__entry->type, __entry->mbm)
1618 TRACE_EVENT(rdev_return_int_int,
1619 TP_PROTO(struct wiphy *wiphy, int func_ret, int func_fill),
1620 TP_ARGS(wiphy, func_ret, func_fill),
1623 __field(int, func_ret)
1624 __field(int, func_fill)
1628 __entry->func_ret = func_ret;
1629 __entry->func_fill = func_fill;
1631 TP_printk(WIPHY_PR_FMT ", function returns: %d, function filled: %d",
1632 WIPHY_PR_ARG, __entry->func_ret, __entry->func_fill)
1635 #ifdef CONFIG_NL80211_TESTMODE
1636 TRACE_EVENT(rdev_testmode_cmd,
1637 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1638 TP_ARGS(wiphy, wdev),
1647 TP_printk(WIPHY_PR_FMT WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
1650 TRACE_EVENT(rdev_testmode_dump,
1651 TP_PROTO(struct wiphy *wiphy),
1659 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
1661 #endif /* CONFIG_NL80211_TESTMODE */
1663 TRACE_EVENT(rdev_set_bitrate_mask,
1664 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1665 unsigned int link_id,
1666 const u8 *peer, const struct cfg80211_bitrate_mask *mask),
1667 TP_ARGS(wiphy, netdev, link_id, peer, mask),
1671 __field(unsigned int, link_id)
1677 __entry->link_id = link_id;
1678 MAC_ASSIGN(peer, peer);
1680 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", link_id: %d, peer: %pM",
1681 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->link_id,
1685 TRACE_EVENT(rdev_update_mgmt_frame_registrations,
1686 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1687 struct mgmt_frame_regs *upd),
1688 TP_ARGS(wiphy, wdev, upd),
1692 __field(u16, global_stypes)
1693 __field(u16, interface_stypes)
1698 __entry->global_stypes = upd->global_stypes;
1699 __entry->interface_stypes = upd->interface_stypes;
1701 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", global: 0x%.2x, intf: 0x%.2x",
1702 WIPHY_PR_ARG, WDEV_PR_ARG,
1703 __entry->global_stypes, __entry->interface_stypes)
1706 TRACE_EVENT(rdev_return_int_tx_rx,
1707 TP_PROTO(struct wiphy *wiphy, int ret, u32 tx, u32 rx),
1708 TP_ARGS(wiphy, ret, tx, rx),
1721 TP_printk(WIPHY_PR_FMT ", returned %d, tx: %u, rx: %u",
1722 WIPHY_PR_ARG, __entry->ret, __entry->tx, __entry->rx)
1725 TRACE_EVENT(rdev_return_void_tx_rx,
1726 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 tx_max,
1727 u32 rx, u32 rx_max),
1728 TP_ARGS(wiphy, tx, tx_max, rx, rx_max),
1732 __field(u32, tx_max)
1734 __field(u32, rx_max)
1739 __entry->tx_max = tx_max;
1741 __entry->rx_max = rx_max;
1743 TP_printk(WIPHY_PR_FMT ", tx: %u, tx_max: %u, rx: %u, rx_max: %u ",
1744 WIPHY_PR_ARG, __entry->tx, __entry->tx_max, __entry->rx,
1748 DECLARE_EVENT_CLASS(tx_rx_evt,
1749 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 rx),
1750 TP_ARGS(wiphy, rx, tx),
1761 TP_printk(WIPHY_PR_FMT ", tx: %u, rx: %u ",
1762 WIPHY_PR_ARG, __entry->tx, __entry->rx)
1765 DEFINE_EVENT(tx_rx_evt, rdev_set_antenna,
1766 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 rx),
1767 TP_ARGS(wiphy, rx, tx)
1770 DECLARE_EVENT_CLASS(wiphy_netdev_id_evt,
1771 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u64 id),
1772 TP_ARGS(wiphy, netdev, id),
1783 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", id: %llu",
1784 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->id)
1787 DEFINE_EVENT(wiphy_netdev_id_evt, rdev_sched_scan_start,
1788 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u64 id),
1789 TP_ARGS(wiphy, netdev, id)
1792 DEFINE_EVENT(wiphy_netdev_id_evt, rdev_sched_scan_stop,
1793 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u64 id),
1794 TP_ARGS(wiphy, netdev, id)
1797 TRACE_EVENT(rdev_tdls_mgmt,
1798 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1799 u8 *peer, int link_id, u8 action_code, u8 dialog_token,
1800 u16 status_code, u32 peer_capability,
1801 bool initiator, const u8 *buf, size_t len),
1802 TP_ARGS(wiphy, netdev, peer, link_id, action_code, dialog_token,
1803 status_code, peer_capability, initiator, buf, len),
1808 __field(int, link_id)
1809 __field(u8, action_code)
1810 __field(u8, dialog_token)
1811 __field(u16, status_code)
1812 __field(u32, peer_capability)
1813 __field(bool, initiator)
1814 __dynamic_array(u8, buf, len)
1819 MAC_ASSIGN(peer, peer);
1820 __entry->link_id = link_id;
1821 __entry->action_code = action_code;
1822 __entry->dialog_token = dialog_token;
1823 __entry->status_code = status_code;
1824 __entry->peer_capability = peer_capability;
1825 __entry->initiator = initiator;
1826 memcpy(__get_dynamic_array(buf), buf, len);
1828 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM"
1829 ", link_id: %d, action_code: %u "
1830 "dialog_token: %u, status_code: %u, peer_capability: %u "
1831 "initiator: %s buf: %#.2x ",
1832 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer,
1833 __entry->link_id, __entry->action_code, __entry->dialog_token,
1834 __entry->status_code, __entry->peer_capability,
1835 BOOL_TO_STR(__entry->initiator),
1836 ((u8 *)__get_dynamic_array(buf))[0])
1839 TRACE_EVENT(rdev_dump_survey,
1840 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int _idx),
1841 TP_ARGS(wiphy, netdev, _idx),
1850 __entry->idx = _idx;
1852 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d",
1853 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx)
1856 TRACE_EVENT(rdev_return_int_survey_info,
1857 TP_PROTO(struct wiphy *wiphy, int ret, struct survey_info *info),
1858 TP_ARGS(wiphy, ret, info),
1864 __field(u64, time_busy)
1865 __field(u64, time_ext_busy)
1866 __field(u64, time_rx)
1867 __field(u64, time_tx)
1868 __field(u64, time_scan)
1869 __field(u32, filled)
1874 CHAN_ASSIGN(info->channel);
1876 __entry->time = info->time;
1877 __entry->time_busy = info->time_busy;
1878 __entry->time_ext_busy = info->time_ext_busy;
1879 __entry->time_rx = info->time_rx;
1880 __entry->time_tx = info->time_tx;
1881 __entry->time_scan = info->time_scan;
1882 __entry->filled = info->filled;
1883 __entry->noise = info->noise;
1885 TP_printk(WIPHY_PR_FMT ", returned: %d, " CHAN_PR_FMT
1886 ", channel time: %llu, channel time busy: %llu, "
1887 "channel time extension busy: %llu, channel time rx: %llu, "
1888 "channel time tx: %llu, scan time: %llu, filled: %u, noise: %d",
1889 WIPHY_PR_ARG, __entry->ret, CHAN_PR_ARG,
1890 __entry->time, __entry->time_busy,
1891 __entry->time_ext_busy, __entry->time_rx,
1892 __entry->time_tx, __entry->time_scan,
1893 __entry->filled, __entry->noise)
1896 TRACE_EVENT(rdev_tdls_oper,
1897 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1898 u8 *peer, enum nl80211_tdls_operation oper),
1899 TP_ARGS(wiphy, netdev, peer, oper),
1904 __field(enum nl80211_tdls_operation, oper)
1909 MAC_ASSIGN(peer, peer);
1910 __entry->oper = oper;
1912 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM, oper: %d",
1913 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer, __entry->oper)
1916 DECLARE_EVENT_CLASS(rdev_pmksa,
1917 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1918 struct cfg80211_pmksa *pmksa),
1919 TP_ARGS(wiphy, netdev, pmksa),
1928 MAC_ASSIGN(bssid, pmksa->bssid);
1930 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM",
1931 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid)
1934 TRACE_EVENT(rdev_probe_client,
1935 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1937 TP_ARGS(wiphy, netdev, peer),
1946 MAC_ASSIGN(peer, peer);
1948 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM",
1949 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer)
1952 DEFINE_EVENT(rdev_pmksa, rdev_set_pmksa,
1953 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1954 struct cfg80211_pmksa *pmksa),
1955 TP_ARGS(wiphy, netdev, pmksa)
1958 DEFINE_EVENT(rdev_pmksa, rdev_del_pmksa,
1959 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1960 struct cfg80211_pmksa *pmksa),
1961 TP_ARGS(wiphy, netdev, pmksa)
1964 TRACE_EVENT(rdev_remain_on_channel,
1965 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1966 struct ieee80211_channel *chan,
1967 unsigned int duration),
1968 TP_ARGS(wiphy, wdev, chan, duration),
1973 __field(unsigned int, duration)
1979 __entry->duration = duration;
1981 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", " CHAN_PR_FMT ", duration: %u",
1982 WIPHY_PR_ARG, WDEV_PR_ARG, CHAN_PR_ARG, __entry->duration)
1985 TRACE_EVENT(rdev_return_int_cookie,
1986 TP_PROTO(struct wiphy *wiphy, int ret, u64 cookie),
1987 TP_ARGS(wiphy, ret, cookie),
1991 __field(u64, cookie)
1996 __entry->cookie = cookie;
1998 TP_printk(WIPHY_PR_FMT ", returned %d, cookie: %llu",
1999 WIPHY_PR_ARG, __entry->ret, __entry->cookie)
2002 TRACE_EVENT(rdev_cancel_remain_on_channel,
2003 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
2004 TP_ARGS(wiphy, wdev, cookie),
2008 __field(u64, cookie)
2013 __entry->cookie = cookie;
2015 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %llu",
2016 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
2019 TRACE_EVENT(rdev_mgmt_tx,
2020 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2021 struct cfg80211_mgmt_tx_params *params),
2022 TP_ARGS(wiphy, wdev, params),
2027 __field(bool, offchan)
2028 __field(unsigned int, wait)
2029 __field(bool, no_cck)
2030 __field(bool, dont_wait_for_ack)
2035 CHAN_ASSIGN(params->chan);
2036 __entry->offchan = params->offchan;
2037 __entry->wait = params->wait;
2038 __entry->no_cck = params->no_cck;
2039 __entry->dont_wait_for_ack = params->dont_wait_for_ack;
2041 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", " CHAN_PR_FMT ", offchan: %s,"
2042 " wait: %u, no cck: %s, dont wait for ack: %s",
2043 WIPHY_PR_ARG, WDEV_PR_ARG, CHAN_PR_ARG,
2044 BOOL_TO_STR(__entry->offchan), __entry->wait,
2045 BOOL_TO_STR(__entry->no_cck),
2046 BOOL_TO_STR(__entry->dont_wait_for_ack))
2049 TRACE_EVENT(rdev_tx_control_port,
2050 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2051 const u8 *buf, size_t len, const u8 *dest, __be16 proto,
2052 bool unencrypted, int link_id),
2053 TP_ARGS(wiphy, netdev, buf, len, dest, proto, unencrypted, link_id),
2058 __field(__be16, proto)
2059 __field(bool, unencrypted)
2060 __field(int, link_id)
2065 MAC_ASSIGN(dest, dest);
2066 __entry->proto = proto;
2067 __entry->unencrypted = unencrypted;
2068 __entry->link_id = link_id;
2070 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM,"
2071 " proto: 0x%x, unencrypted: %s, link: %d",
2072 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->dest,
2073 be16_to_cpu(__entry->proto),
2074 BOOL_TO_STR(__entry->unencrypted),
2078 TRACE_EVENT(rdev_set_noack_map,
2079 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2081 TP_ARGS(wiphy, netdev, noack_map),
2085 __field(u16, noack_map)
2090 __entry->noack_map = noack_map;
2092 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", noack_map: %u",
2093 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->noack_map)
2096 DECLARE_EVENT_CLASS(wiphy_wdev_link_evt,
2097 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2098 unsigned int link_id),
2099 TP_ARGS(wiphy, wdev, link_id),
2103 __field(unsigned int, link_id)
2108 __entry->link_id = link_id;
2110 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", link_id: %u",
2111 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->link_id)
2114 DEFINE_EVENT(wiphy_wdev_link_evt, rdev_get_channel,
2115 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2116 unsigned int link_id),
2117 TP_ARGS(wiphy, wdev, link_id)
2120 TRACE_EVENT(rdev_return_chandef,
2121 TP_PROTO(struct wiphy *wiphy, int ret,
2122 struct cfg80211_chan_def *chandef),
2123 TP_ARGS(wiphy, ret, chandef),
2132 CHAN_DEF_ASSIGN(chandef);
2134 CHAN_DEF_ASSIGN((struct cfg80211_chan_def *)NULL);
2137 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", ret: %d",
2138 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->ret)
2141 DEFINE_EVENT(wiphy_wdev_evt, rdev_start_p2p_device,
2142 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2143 TP_ARGS(wiphy, wdev)
2146 DEFINE_EVENT(wiphy_wdev_evt, rdev_stop_p2p_device,
2147 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2148 TP_ARGS(wiphy, wdev)
2151 TRACE_EVENT(rdev_start_nan,
2152 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2153 struct cfg80211_nan_conf *conf),
2154 TP_ARGS(wiphy, wdev, conf),
2158 __field(u8, master_pref)
2164 __entry->master_pref = conf->master_pref;
2165 __entry->bands = conf->bands;
2167 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT
2168 ", master preference: %u, bands: 0x%0x",
2169 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->master_pref,
2173 TRACE_EVENT(rdev_nan_change_conf,
2174 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2175 struct cfg80211_nan_conf *conf, u32 changes),
2176 TP_ARGS(wiphy, wdev, conf, changes),
2180 __field(u8, master_pref)
2182 __field(u32, changes)
2187 __entry->master_pref = conf->master_pref;
2188 __entry->bands = conf->bands;
2189 __entry->changes = changes;
2191 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT
2192 ", master preference: %u, bands: 0x%0x, changes: %x",
2193 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->master_pref,
2194 __entry->bands, __entry->changes)
2197 DEFINE_EVENT(wiphy_wdev_evt, rdev_stop_nan,
2198 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2199 TP_ARGS(wiphy, wdev)
2202 TRACE_EVENT(rdev_add_nan_func,
2203 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2204 const struct cfg80211_nan_func *func),
2205 TP_ARGS(wiphy, wdev, func),
2209 __field(u8, func_type)
2210 __field(u64, cookie)
2215 __entry->func_type = func->type;
2216 __entry->cookie = func->cookie
2218 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", type=%u, cookie=%llu",
2219 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->func_type,
2223 TRACE_EVENT(rdev_del_nan_func,
2224 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2226 TP_ARGS(wiphy, wdev, cookie),
2230 __field(u64, cookie)
2235 __entry->cookie = cookie;
2237 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie=%llu",
2238 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
2241 TRACE_EVENT(rdev_set_mac_acl,
2242 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2243 struct cfg80211_acl_data *params),
2244 TP_ARGS(wiphy, netdev, params),
2248 __field(u32, acl_policy)
2253 __entry->acl_policy = params->acl_policy;
2255 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", acl policy: %d",
2256 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->acl_policy)
2259 TRACE_EVENT(rdev_update_ft_ies,
2260 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2261 struct cfg80211_update_ft_ies_params *ftie),
2262 TP_ARGS(wiphy, netdev, ftie),
2267 __dynamic_array(u8, ie, ftie->ie_len)
2272 __entry->md = ftie->md;
2273 memcpy(__get_dynamic_array(ie), ftie->ie, ftie->ie_len);
2275 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", md: 0x%x",
2276 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->md)
2279 TRACE_EVENT(rdev_crit_proto_start,
2280 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2281 enum nl80211_crit_proto_id protocol, u16 duration),
2282 TP_ARGS(wiphy, wdev, protocol, duration),
2287 __field(u16, duration)
2292 __entry->proto = protocol;
2293 __entry->duration = duration;
2295 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", proto=%x, duration=%u",
2296 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->proto, __entry->duration)
2299 TRACE_EVENT(rdev_crit_proto_stop,
2300 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2301 TP_ARGS(wiphy, wdev),
2310 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT,
2311 WIPHY_PR_ARG, WDEV_PR_ARG)
2314 TRACE_EVENT(rdev_channel_switch,
2315 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2316 struct cfg80211_csa_settings *params),
2317 TP_ARGS(wiphy, netdev, params),
2322 __field(bool, radar_required)
2323 __field(bool, block_tx)
2325 __dynamic_array(u16, bcn_ofs, params->n_counter_offsets_beacon)
2326 __dynamic_array(u16, pres_ofs, params->n_counter_offsets_presp)
2331 CHAN_DEF_ASSIGN(¶ms->chandef);
2332 __entry->radar_required = params->radar_required;
2333 __entry->block_tx = params->block_tx;
2334 __entry->count = params->count;
2335 memcpy(__get_dynamic_array(bcn_ofs),
2336 params->counter_offsets_beacon,
2337 params->n_counter_offsets_beacon * sizeof(u16));
2339 /* probe response offsets are optional */
2340 if (params->n_counter_offsets_presp)
2341 memcpy(__get_dynamic_array(pres_ofs),
2342 params->counter_offsets_presp,
2343 params->n_counter_offsets_presp * sizeof(u16));
2345 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
2346 ", block_tx: %d, count: %u, radar_required: %d",
2347 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
2348 __entry->block_tx, __entry->count, __entry->radar_required)
2351 TRACE_EVENT(rdev_set_qos_map,
2352 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2353 struct cfg80211_qos_map *qos_map),
2354 TP_ARGS(wiphy, netdev, qos_map),
2363 QOS_MAP_ASSIGN(qos_map);
2365 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", num_des: %u",
2366 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->num_des)
2369 TRACE_EVENT(rdev_set_ap_chanwidth,
2370 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2371 unsigned int link_id,
2372 struct cfg80211_chan_def *chandef),
2373 TP_ARGS(wiphy, netdev, link_id, chandef),
2378 __field(unsigned int, link_id)
2383 CHAN_DEF_ASSIGN(chandef);
2384 __entry->link_id = link_id;
2386 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT ", link:%d",
2387 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
2391 TRACE_EVENT(rdev_add_tx_ts,
2392 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2393 u8 tsid, const u8 *peer, u8 user_prio, u16 admitted_time),
2394 TP_ARGS(wiphy, netdev, tsid, peer, user_prio, admitted_time),
2400 __field(u8, user_prio)
2401 __field(u16, admitted_time)
2406 MAC_ASSIGN(peer, peer);
2407 __entry->tsid = tsid;
2408 __entry->user_prio = user_prio;
2409 __entry->admitted_time = admitted_time;
2411 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM, TSID %d, UP %d, time %d",
2412 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer,
2413 __entry->tsid, __entry->user_prio, __entry->admitted_time)
2416 TRACE_EVENT(rdev_del_tx_ts,
2417 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2418 u8 tsid, const u8 *peer),
2419 TP_ARGS(wiphy, netdev, tsid, peer),
2429 MAC_ASSIGN(peer, peer);
2430 __entry->tsid = tsid;
2432 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM, TSID %d",
2433 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer, __entry->tsid)
2436 TRACE_EVENT(rdev_tdls_channel_switch,
2437 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2438 const u8 *addr, u8 oper_class,
2439 struct cfg80211_chan_def *chandef),
2440 TP_ARGS(wiphy, netdev, addr, oper_class, chandef),
2445 __field(u8, oper_class)
2451 MAC_ASSIGN(addr, addr);
2452 CHAN_DEF_ASSIGN(chandef);
2454 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM"
2455 " oper class %d, " CHAN_DEF_PR_FMT,
2456 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->addr,
2457 __entry->oper_class, CHAN_DEF_PR_ARG)
2460 TRACE_EVENT(rdev_tdls_cancel_channel_switch,
2461 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2463 TP_ARGS(wiphy, netdev, addr),
2472 MAC_ASSIGN(addr, addr);
2474 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM",
2475 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->addr)
2478 TRACE_EVENT(rdev_set_pmk,
2479 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2480 struct cfg80211_pmk_conf *pmk_conf),
2482 TP_ARGS(wiphy, netdev, pmk_conf),
2488 __field(u8, pmk_len)
2489 __field(u8, pmk_r0_name_len)
2490 __dynamic_array(u8, pmk, pmk_conf->pmk_len)
2491 __dynamic_array(u8, pmk_r0_name, WLAN_PMK_NAME_LEN)
2497 MAC_ASSIGN(aa, pmk_conf->aa);
2498 __entry->pmk_len = pmk_conf->pmk_len;
2499 __entry->pmk_r0_name_len =
2500 pmk_conf->pmk_r0_name ? WLAN_PMK_NAME_LEN : 0;
2501 memcpy(__get_dynamic_array(pmk), pmk_conf->pmk,
2503 memcpy(__get_dynamic_array(pmk_r0_name), pmk_conf->pmk_r0_name,
2504 pmk_conf->pmk_r0_name ? WLAN_PMK_NAME_LEN : 0);
2507 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM"
2508 "pmk_len=%u, pmk: %s pmk_r0_name: %s", WIPHY_PR_ARG,
2509 NETDEV_PR_ARG, __entry->aa, __entry->pmk_len,
2510 __print_array(__get_dynamic_array(pmk),
2511 __get_dynamic_array_len(pmk), 1),
2512 __entry->pmk_r0_name_len ?
2513 __print_array(__get_dynamic_array(pmk_r0_name),
2514 __get_dynamic_array_len(pmk_r0_name), 1) : "")
2517 TRACE_EVENT(rdev_del_pmk,
2518 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *aa),
2520 TP_ARGS(wiphy, netdev, aa),
2534 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM",
2535 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->aa)
2538 TRACE_EVENT(rdev_external_auth,
2539 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2540 struct cfg80211_external_auth_params *params),
2541 TP_ARGS(wiphy, netdev, params),
2542 TP_STRUCT__entry(WIPHY_ENTRY
2545 __array(u8, ssid, IEEE80211_MAX_SSID_LEN + 1)
2546 __field(u16, status)
2549 TP_fast_assign(WIPHY_ASSIGN;
2551 MAC_ASSIGN(bssid, params->bssid);
2552 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
2553 memcpy(__entry->ssid, params->ssid.ssid,
2554 params->ssid.ssid_len);
2555 __entry->status = params->status;
2556 MAC_ASSIGN(mld_addr, params->mld_addr);
2558 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: %pM"
2559 ", ssid: %s, status: %u, mld_addr: %pM",
2560 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->bssid,
2561 __entry->ssid, __entry->status, __entry->mld_addr)
2564 TRACE_EVENT(rdev_start_radar_detection,
2565 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2566 struct cfg80211_chan_def *chandef,
2568 TP_ARGS(wiphy, netdev, chandef, cac_time_ms),
2573 __field(u32, cac_time_ms)
2578 CHAN_DEF_ASSIGN(chandef);
2579 __entry->cac_time_ms = cac_time_ms;
2581 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
2583 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
2584 __entry->cac_time_ms)
2587 TRACE_EVENT(rdev_set_mcast_rate,
2588 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2590 TP_ARGS(wiphy, netdev, mcast_rate),
2594 __array(int, mcast_rate, NUM_NL80211_BANDS)
2599 memcpy(__entry->mcast_rate, mcast_rate,
2600 sizeof(int) * NUM_NL80211_BANDS);
2602 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", "
2603 "mcast_rates [2.4GHz=0x%x, 5.2GHz=0x%x, 6GHz=0x%x, 60GHz=0x%x]",
2604 WIPHY_PR_ARG, NETDEV_PR_ARG,
2605 __entry->mcast_rate[NL80211_BAND_2GHZ],
2606 __entry->mcast_rate[NL80211_BAND_5GHZ],
2607 __entry->mcast_rate[NL80211_BAND_6GHZ],
2608 __entry->mcast_rate[NL80211_BAND_60GHZ])
2611 TRACE_EVENT(rdev_set_coalesce,
2612 TP_PROTO(struct wiphy *wiphy, struct cfg80211_coalesce *coalesce),
2613 TP_ARGS(wiphy, coalesce),
2616 __field(int, n_rules)
2620 __entry->n_rules = coalesce ? coalesce->n_rules : 0;
2622 TP_printk(WIPHY_PR_FMT ", n_rules=%d",
2623 WIPHY_PR_ARG, __entry->n_rules)
2626 DEFINE_EVENT(wiphy_wdev_evt, rdev_abort_scan,
2627 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2628 TP_ARGS(wiphy, wdev)
2631 TRACE_EVENT(rdev_set_multicast_to_unicast,
2632 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2633 const bool enabled),
2634 TP_ARGS(wiphy, netdev, enabled),
2638 __field(bool, enabled)
2643 __entry->enabled = enabled;
2645 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", unicast: %s",
2646 WIPHY_PR_ARG, NETDEV_PR_ARG,
2647 BOOL_TO_STR(__entry->enabled))
2650 DEFINE_EVENT(wiphy_wdev_evt, rdev_get_txq_stats,
2651 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2652 TP_ARGS(wiphy, wdev)
2655 TRACE_EVENT(rdev_get_ftm_responder_stats,
2656 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2657 struct cfg80211_ftm_responder_stats *ftm_stats),
2659 TP_ARGS(wiphy, netdev, ftm_stats),
2664 __field(u64, timestamp)
2665 __field(u32, success_num)
2666 __field(u32, partial_num)
2667 __field(u32, failed_num)
2668 __field(u32, asap_num)
2669 __field(u32, non_asap_num)
2670 __field(u64, duration)
2671 __field(u32, unknown_triggers)
2672 __field(u32, reschedule)
2673 __field(u32, out_of_window)
2679 __entry->success_num = ftm_stats->success_num;
2680 __entry->partial_num = ftm_stats->partial_num;
2681 __entry->failed_num = ftm_stats->failed_num;
2682 __entry->asap_num = ftm_stats->asap_num;
2683 __entry->non_asap_num = ftm_stats->non_asap_num;
2684 __entry->duration = ftm_stats->total_duration_ms;
2685 __entry->unknown_triggers = ftm_stats->unknown_triggers_num;
2686 __entry->reschedule = ftm_stats->reschedule_requests_num;
2687 __entry->out_of_window = ftm_stats->out_of_window_triggers_num;
2690 TP_printk(WIPHY_PR_FMT "Ftm responder stats: success %u, partial %u, "
2691 "failed %u, asap %u, non asap %u, total duration %llu, unknown "
2692 "triggers %u, rescheduled %u, out of window %u", WIPHY_PR_ARG,
2693 __entry->success_num, __entry->partial_num, __entry->failed_num,
2694 __entry->asap_num, __entry->non_asap_num, __entry->duration,
2695 __entry->unknown_triggers, __entry->reschedule,
2696 __entry->out_of_window)
2699 DEFINE_EVENT(wiphy_wdev_cookie_evt, rdev_start_pmsr,
2700 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
2701 TP_ARGS(wiphy, wdev, cookie)
2704 DEFINE_EVENT(wiphy_wdev_cookie_evt, rdev_abort_pmsr,
2705 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
2706 TP_ARGS(wiphy, wdev, cookie)
2709 TRACE_EVENT(rdev_set_fils_aad,
2710 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2711 struct cfg80211_fils_aad *fils_aad),
2712 TP_ARGS(wiphy, netdev, fils_aad),
2713 TP_STRUCT__entry(WIPHY_ENTRY
2715 __array(u8, macaddr, ETH_ALEN)
2716 __field(u8, kek_len)
2718 TP_fast_assign(WIPHY_ASSIGN;
2720 FILS_AAD_ASSIGN(fils_aad);
2722 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " FILS_AAD_PR_FMT,
2723 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->macaddr,
2727 TRACE_EVENT(rdev_update_owe_info,
2728 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2729 struct cfg80211_update_owe_info *owe_info),
2730 TP_ARGS(wiphy, netdev, owe_info),
2731 TP_STRUCT__entry(WIPHY_ENTRY
2734 __field(u16, status)
2735 __dynamic_array(u8, ie, owe_info->ie_len)),
2736 TP_fast_assign(WIPHY_ASSIGN;
2738 MAC_ASSIGN(peer, owe_info->peer);
2739 __entry->status = owe_info->status;
2740 memcpy(__get_dynamic_array(ie),
2741 owe_info->ie, owe_info->ie_len);),
2742 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: %pM"
2743 " status %d", WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer,
2747 TRACE_EVENT(rdev_probe_mesh_link,
2748 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2749 const u8 *dest, const u8 *buf, size_t len),
2750 TP_ARGS(wiphy, netdev, dest, buf, len),
2759 MAC_ASSIGN(dest, dest);
2761 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %pM",
2762 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->dest)
2765 TRACE_EVENT(rdev_set_tid_config,
2766 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2767 struct cfg80211_tid_config *tid_conf),
2768 TP_ARGS(wiphy, netdev, tid_conf),
2777 MAC_ASSIGN(peer, tid_conf->peer);
2779 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: %pM",
2780 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer)
2783 TRACE_EVENT(rdev_reset_tid_config,
2784 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2785 const u8 *peer, u8 tids),
2786 TP_ARGS(wiphy, netdev, peer, tids),
2796 MAC_ASSIGN(peer, peer);
2797 __entry->tids = tids;
2799 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: %pM, tids: 0x%x",
2800 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer, __entry->tids)
2803 TRACE_EVENT(rdev_set_sar_specs,
2804 TP_PROTO(struct wiphy *wiphy, struct cfg80211_sar_specs *sar),
2805 TP_ARGS(wiphy, sar),
2813 __entry->type = sar->type;
2814 __entry->num = sar->num_sub_specs;
2817 TP_printk(WIPHY_PR_FMT ", Set type:%d, num_specs:%d",
2818 WIPHY_PR_ARG, __entry->type, __entry->num)
2821 TRACE_EVENT(rdev_color_change,
2822 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2823 struct cfg80211_color_change_settings *params),
2824 TP_ARGS(wiphy, netdev, params),
2829 __field(u16, bcn_ofs)
2830 __field(u16, pres_ofs)
2835 __entry->count = params->count;
2836 __entry->bcn_ofs = params->counter_offset_beacon;
2837 __entry->pres_ofs = params->counter_offset_presp;
2839 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT
2841 WIPHY_PR_ARG, NETDEV_PR_ARG,
2845 TRACE_EVENT(rdev_set_radar_background,
2846 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef),
2848 TP_ARGS(wiphy, chandef),
2857 CHAN_DEF_ASSIGN(chandef)
2860 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
2861 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
2864 DEFINE_EVENT(wiphy_wdev_link_evt, rdev_add_intf_link,
2865 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2866 unsigned int link_id),
2867 TP_ARGS(wiphy, wdev, link_id)
2870 DEFINE_EVENT(wiphy_wdev_link_evt, rdev_del_intf_link,
2871 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2872 unsigned int link_id),
2873 TP_ARGS(wiphy, wdev, link_id)
2876 /*************************************************************
2877 * cfg80211 exported functions traces *
2878 *************************************************************/
2880 TRACE_EVENT(cfg80211_return_bool,
2889 TP_printk("returned %s", BOOL_TO_STR(__entry->ret))
2892 DECLARE_EVENT_CLASS(cfg80211_netdev_mac_evt,
2893 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2894 TP_ARGS(netdev, macaddr),
2901 MAC_ASSIGN(macaddr, macaddr);
2903 TP_printk(NETDEV_PR_FMT ", mac: %pM",
2904 NETDEV_PR_ARG, __entry->macaddr)
2907 DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_notify_new_peer_candidate,
2908 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2909 TP_ARGS(netdev, macaddr)
2912 DECLARE_EVENT_CLASS(netdev_evt_only,
2913 TP_PROTO(struct net_device *netdev),
2921 TP_printk(NETDEV_PR_FMT , NETDEV_PR_ARG)
2924 DEFINE_EVENT(netdev_evt_only, cfg80211_send_rx_auth,
2925 TP_PROTO(struct net_device *netdev),
2929 TRACE_EVENT(cfg80211_send_rx_assoc,
2930 TP_PROTO(struct net_device *netdev,
2931 struct cfg80211_rx_assoc_resp *data),
2932 TP_ARGS(netdev, data),
2940 data->ap_mld_addr ?: data->links[0].bss->bssid);
2942 TP_printk(NETDEV_PR_FMT ", %pM",
2943 NETDEV_PR_ARG, __entry->ap_addr)
2946 DECLARE_EVENT_CLASS(netdev_frame_event,
2947 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2948 TP_ARGS(netdev, buf, len),
2951 __dynamic_array(u8, frame, len)
2955 memcpy(__get_dynamic_array(frame), buf, len);
2957 TP_printk(NETDEV_PR_FMT ", ftype:0x%.2x",
2959 le16_to_cpup((__le16 *)__get_dynamic_array(frame)))
2962 DEFINE_EVENT(netdev_frame_event, cfg80211_rx_unprot_mlme_mgmt,
2963 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2964 TP_ARGS(netdev, buf, len)
2967 DEFINE_EVENT(netdev_frame_event, cfg80211_rx_mlme_mgmt,
2968 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2969 TP_ARGS(netdev, buf, len)
2972 TRACE_EVENT(cfg80211_tx_mlme_mgmt,
2973 TP_PROTO(struct net_device *netdev, const u8 *buf, int len,
2975 TP_ARGS(netdev, buf, len, reconnect),
2978 __dynamic_array(u8, frame, len)
2979 __field(int, reconnect)
2983 memcpy(__get_dynamic_array(frame), buf, len);
2984 __entry->reconnect = reconnect;
2986 TP_printk(NETDEV_PR_FMT ", ftype:0x%.2x reconnect:%d",
2988 le16_to_cpup((__le16 *)__get_dynamic_array(frame)),
2992 DECLARE_EVENT_CLASS(netdev_mac_evt,
2993 TP_PROTO(struct net_device *netdev, const u8 *mac),
2994 TP_ARGS(netdev, mac),
3001 MAC_ASSIGN(mac, mac)
3003 TP_printk(NETDEV_PR_FMT ", mac: %pM",
3004 NETDEV_PR_ARG, __entry->mac)
3007 DEFINE_EVENT(netdev_mac_evt, cfg80211_send_auth_timeout,
3008 TP_PROTO(struct net_device *netdev, const u8 *mac),
3009 TP_ARGS(netdev, mac)
3012 TRACE_EVENT(cfg80211_send_assoc_failure,
3013 TP_PROTO(struct net_device *netdev,
3014 struct cfg80211_assoc_failure *data),
3015 TP_ARGS(netdev, data),
3019 __field(bool, timeout)
3023 MAC_ASSIGN(ap_addr, data->ap_mld_addr ?: data->bss[0]->bssid);
3024 __entry->timeout = data->timeout;
3026 TP_printk(NETDEV_PR_FMT ", mac: %pM, timeout: %d",
3027 NETDEV_PR_ARG, __entry->ap_addr, __entry->timeout)
3030 TRACE_EVENT(cfg80211_michael_mic_failure,
3031 TP_PROTO(struct net_device *netdev, const u8 *addr,
3032 enum nl80211_key_type key_type, int key_id, const u8 *tsc),
3033 TP_ARGS(netdev, addr, key_type, key_id, tsc),
3037 __field(enum nl80211_key_type, key_type)
3038 __field(int, key_id)
3043 MAC_ASSIGN(addr, addr);
3044 __entry->key_type = key_type;
3045 __entry->key_id = key_id;
3047 memcpy(__entry->tsc, tsc, 6);
3049 TP_printk(NETDEV_PR_FMT ", %pM, key type: %d, key id: %d, tsc: %pm",
3050 NETDEV_PR_ARG, __entry->addr, __entry->key_type,
3051 __entry->key_id, __entry->tsc)
3054 TRACE_EVENT(cfg80211_ready_on_channel,
3055 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
3056 struct ieee80211_channel *chan,
3057 unsigned int duration),
3058 TP_ARGS(wdev, cookie, chan, duration),
3061 __field(u64, cookie)
3063 __field(unsigned int, duration)
3067 __entry->cookie = cookie;
3069 __entry->duration = duration;
3071 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT ", duration: %u",
3072 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG,
3076 TRACE_EVENT(cfg80211_ready_on_channel_expired,
3077 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
3078 struct ieee80211_channel *chan),
3079 TP_ARGS(wdev, cookie, chan),
3082 __field(u64, cookie)
3087 __entry->cookie = cookie;
3090 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT,
3091 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG)
3094 TRACE_EVENT(cfg80211_tx_mgmt_expired,
3095 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
3096 struct ieee80211_channel *chan),
3097 TP_ARGS(wdev, cookie, chan),
3100 __field(u64, cookie)
3105 __entry->cookie = cookie;
3108 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT,
3109 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG)
3112 TRACE_EVENT(cfg80211_new_sta,
3113 TP_PROTO(struct net_device *netdev, const u8 *mac_addr,
3114 struct station_info *sinfo),
3115 TP_ARGS(netdev, mac_addr, sinfo),
3123 MAC_ASSIGN(mac_addr, mac_addr);
3126 TP_printk(NETDEV_PR_FMT ", %pM",
3127 NETDEV_PR_ARG, __entry->mac_addr)
3130 DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_del_sta,
3131 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
3132 TP_ARGS(netdev, macaddr)
3135 TRACE_EVENT(cfg80211_rx_mgmt,
3136 TP_PROTO(struct wireless_dev *wdev, struct cfg80211_rx_info *info),
3137 TP_ARGS(wdev, info),
3141 __field(int, sig_dbm)
3145 __entry->freq = info->freq;
3146 __entry->sig_dbm = info->sig_dbm;
3148 TP_printk(WDEV_PR_FMT ", freq: "KHZ_F", sig dbm: %d",
3149 WDEV_PR_ARG, PR_KHZ(__entry->freq), __entry->sig_dbm)
3152 TRACE_EVENT(cfg80211_mgmt_tx_status,
3153 TP_PROTO(struct wireless_dev *wdev, u64 cookie, bool ack),
3154 TP_ARGS(wdev, cookie, ack),
3157 __field(u64, cookie)
3162 __entry->cookie = cookie;
3165 TP_printk(WDEV_PR_FMT", cookie: %llu, ack: %s",
3166 WDEV_PR_ARG, __entry->cookie, BOOL_TO_STR(__entry->ack))
3169 TRACE_EVENT(cfg80211_control_port_tx_status,
3170 TP_PROTO(struct wireless_dev *wdev, u64 cookie, bool ack),
3171 TP_ARGS(wdev, cookie, ack),
3174 __field(u64, cookie)
3179 __entry->cookie = cookie;
3182 TP_printk(WDEV_PR_FMT", cookie: %llu, ack: %s",
3183 WDEV_PR_ARG, __entry->cookie, BOOL_TO_STR(__entry->ack))
3186 TRACE_EVENT(cfg80211_rx_control_port,
3187 TP_PROTO(struct net_device *netdev, struct sk_buff *skb,
3188 bool unencrypted, int link_id),
3189 TP_ARGS(netdev, skb, unencrypted, link_id),
3195 __field(bool, unencrypted)
3196 __field(int, link_id)
3200 __entry->len = skb->len;
3201 MAC_ASSIGN(from, eth_hdr(skb)->h_source);
3202 __entry->proto = be16_to_cpu(skb->protocol);
3203 __entry->unencrypted = unencrypted;
3204 __entry->link_id = link_id;
3206 TP_printk(NETDEV_PR_FMT ", len=%d, %pM, proto: 0x%x, unencrypted: %s, link: %d",
3207 NETDEV_PR_ARG, __entry->len, __entry->from,
3208 __entry->proto, BOOL_TO_STR(__entry->unencrypted),
3212 TRACE_EVENT(cfg80211_cqm_rssi_notify,
3213 TP_PROTO(struct net_device *netdev,
3214 enum nl80211_cqm_rssi_threshold_event rssi_event,
3216 TP_ARGS(netdev, rssi_event, rssi_level),
3219 __field(enum nl80211_cqm_rssi_threshold_event, rssi_event)
3220 __field(s32, rssi_level)
3224 __entry->rssi_event = rssi_event;
3225 __entry->rssi_level = rssi_level;
3227 TP_printk(NETDEV_PR_FMT ", rssi event: %d, level: %d",
3228 NETDEV_PR_ARG, __entry->rssi_event, __entry->rssi_level)
3231 TRACE_EVENT(cfg80211_reg_can_beacon,
3232 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
3233 enum nl80211_iftype iftype, bool check_no_ir),
3234 TP_ARGS(wiphy, chandef, iftype, check_no_ir),
3238 __field(enum nl80211_iftype, iftype)
3239 __field(bool, check_no_ir)
3243 CHAN_DEF_ASSIGN(chandef);
3244 __entry->iftype = iftype;
3245 __entry->check_no_ir = check_no_ir;
3247 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", iftype=%d check_no_ir=%s",
3248 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->iftype,
3249 BOOL_TO_STR(__entry->check_no_ir))
3252 TRACE_EVENT(cfg80211_chandef_dfs_required,
3253 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef),
3254 TP_ARGS(wiphy, chandef),
3261 CHAN_DEF_ASSIGN(chandef);
3263 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
3264 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
3267 TRACE_EVENT(cfg80211_ch_switch_notify,
3268 TP_PROTO(struct net_device *netdev,
3269 struct cfg80211_chan_def *chandef,
3270 unsigned int link_id,
3272 TP_ARGS(netdev, chandef, link_id, punct_bitmap),
3276 __field(unsigned int, link_id)
3277 __field(u16, punct_bitmap)
3281 CHAN_DEF_ASSIGN(chandef);
3282 __entry->link_id = link_id;
3283 __entry->punct_bitmap = punct_bitmap;
3285 TP_printk(NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT ", link:%d, punct_bitmap:%u",
3286 NETDEV_PR_ARG, CHAN_DEF_PR_ARG, __entry->link_id,
3287 __entry->punct_bitmap)
3290 TRACE_EVENT(cfg80211_ch_switch_started_notify,
3291 TP_PROTO(struct net_device *netdev,
3292 struct cfg80211_chan_def *chandef,
3293 unsigned int link_id,
3295 TP_ARGS(netdev, chandef, link_id, punct_bitmap),
3299 __field(unsigned int, link_id)
3300 __field(u16, punct_bitmap)
3304 CHAN_DEF_ASSIGN(chandef);
3305 __entry->link_id = link_id;
3306 __entry->punct_bitmap = punct_bitmap;
3308 TP_printk(NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT ", link:%d, punct_bitmap:%u",
3309 NETDEV_PR_ARG, CHAN_DEF_PR_ARG, __entry->link_id,
3310 __entry->punct_bitmap)
3313 TRACE_EVENT(cfg80211_radar_event,
3314 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
3316 TP_ARGS(wiphy, chandef, offchan),
3320 __field(bool, offchan)
3324 CHAN_DEF_ASSIGN(chandef);
3325 __entry->offchan = offchan;
3327 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", offchan %d",
3328 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->offchan)
3331 TRACE_EVENT(cfg80211_cac_event,
3332 TP_PROTO(struct net_device *netdev, enum nl80211_radar_event evt),
3333 TP_ARGS(netdev, evt),
3336 __field(enum nl80211_radar_event, evt)
3342 TP_printk(NETDEV_PR_FMT ", event: %d",
3343 NETDEV_PR_ARG, __entry->evt)
3346 DECLARE_EVENT_CLASS(cfg80211_rx_evt,
3347 TP_PROTO(struct net_device *netdev, const u8 *addr),
3348 TP_ARGS(netdev, addr),
3355 MAC_ASSIGN(addr, addr);
3357 TP_printk(NETDEV_PR_FMT ", %pM", NETDEV_PR_ARG, __entry->addr)
3360 DEFINE_EVENT(cfg80211_rx_evt, cfg80211_rx_spurious_frame,
3361 TP_PROTO(struct net_device *netdev, const u8 *addr),
3362 TP_ARGS(netdev, addr)
3365 DEFINE_EVENT(cfg80211_rx_evt, cfg80211_rx_unexpected_4addr_frame,
3366 TP_PROTO(struct net_device *netdev, const u8 *addr),
3367 TP_ARGS(netdev, addr)
3370 TRACE_EVENT(cfg80211_ibss_joined,
3371 TP_PROTO(struct net_device *netdev, const u8 *bssid,
3372 struct ieee80211_channel *channel),
3373 TP_ARGS(netdev, bssid, channel),
3381 MAC_ASSIGN(bssid, bssid);
3382 CHAN_ASSIGN(channel);
3384 TP_printk(NETDEV_PR_FMT ", bssid: %pM, " CHAN_PR_FMT,
3385 NETDEV_PR_ARG, __entry->bssid, CHAN_PR_ARG)
3388 TRACE_EVENT(cfg80211_probe_status,
3389 TP_PROTO(struct net_device *netdev, const u8 *addr, u64 cookie,
3391 TP_ARGS(netdev, addr, cookie, acked),
3395 __field(u64, cookie)
3396 __field(bool, acked)
3400 MAC_ASSIGN(addr, addr);
3401 __entry->cookie = cookie;
3402 __entry->acked = acked;
3404 TP_printk(NETDEV_PR_FMT " addr:%pM, cookie: %llu, acked: %s",
3405 NETDEV_PR_ARG, __entry->addr, __entry->cookie,
3406 BOOL_TO_STR(__entry->acked))
3409 TRACE_EVENT(cfg80211_cqm_pktloss_notify,
3410 TP_PROTO(struct net_device *netdev, const u8 *peer, u32 num_packets),
3411 TP_ARGS(netdev, peer, num_packets),
3415 __field(u32, num_packets)
3419 MAC_ASSIGN(peer, peer);
3420 __entry->num_packets = num_packets;
3422 TP_printk(NETDEV_PR_FMT ", peer: %pM, num of lost packets: %u",
3423 NETDEV_PR_ARG, __entry->peer, __entry->num_packets)
3426 DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_gtk_rekey_notify,
3427 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
3428 TP_ARGS(netdev, macaddr)
3431 TRACE_EVENT(cfg80211_pmksa_candidate_notify,
3432 TP_PROTO(struct net_device *netdev, int index, const u8 *bssid,
3434 TP_ARGS(netdev, index, bssid, preauth),
3439 __field(bool, preauth)
3443 __entry->index = index;
3444 MAC_ASSIGN(bssid, bssid);
3445 __entry->preauth = preauth;
3447 TP_printk(NETDEV_PR_FMT ", index:%d, bssid: %pM, pre auth: %s",
3448 NETDEV_PR_ARG, __entry->index, __entry->bssid,
3449 BOOL_TO_STR(__entry->preauth))
3452 TRACE_EVENT(cfg80211_report_obss_beacon,
3453 TP_PROTO(struct wiphy *wiphy, const u8 *frame, size_t len,
3454 int freq, int sig_dbm),
3455 TP_ARGS(wiphy, frame, len, freq, sig_dbm),
3459 __field(int, sig_dbm)
3463 __entry->freq = freq;
3464 __entry->sig_dbm = sig_dbm;
3466 TP_printk(WIPHY_PR_FMT ", freq: "KHZ_F", sig_dbm: %d",
3467 WIPHY_PR_ARG, PR_KHZ(__entry->freq), __entry->sig_dbm)
3470 TRACE_EVENT(cfg80211_tdls_oper_request,
3471 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *peer,
3472 enum nl80211_tdls_operation oper, u16 reason_code),
3473 TP_ARGS(wiphy, netdev, peer, oper, reason_code),
3478 __field(enum nl80211_tdls_operation, oper)
3479 __field(u16, reason_code)
3484 MAC_ASSIGN(peer, peer);
3485 __entry->oper = oper;
3486 __entry->reason_code = reason_code;
3488 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: %pM, oper: %d, reason_code %u",
3489 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer, __entry->oper,
3490 __entry->reason_code)
3493 TRACE_EVENT(cfg80211_scan_done,
3494 TP_PROTO(struct cfg80211_scan_request *request,
3495 struct cfg80211_scan_info *info),
3496 TP_ARGS(request, info),
3498 __field(u32, n_channels)
3499 __dynamic_array(u8, ie, request ? request->ie_len : 0)
3500 __array(u32, rates, NUM_NL80211_BANDS)
3501 __field(u32, wdev_id)
3502 MAC_ENTRY(wiphy_mac)
3503 __field(bool, no_cck)
3504 __field(bool, aborted)
3505 __field(u64, scan_start_tsf)
3506 MAC_ENTRY(tsf_bssid)
3510 memcpy(__get_dynamic_array(ie), request->ie,
3512 memcpy(__entry->rates, request->rates,
3514 __entry->wdev_id = request->wdev ?
3515 request->wdev->identifier : 0;
3517 MAC_ASSIGN(wiphy_mac,
3518 request->wiphy->perm_addr);
3519 __entry->no_cck = request->no_cck;
3522 __entry->aborted = info->aborted;
3523 __entry->scan_start_tsf = info->scan_start_tsf;
3524 MAC_ASSIGN(tsf_bssid, info->tsf_bssid);
3527 TP_printk("aborted: %s, scan start (TSF): %llu, tsf_bssid: %pM",
3528 BOOL_TO_STR(__entry->aborted),
3529 (unsigned long long)__entry->scan_start_tsf,
3533 DECLARE_EVENT_CLASS(wiphy_id_evt,
3534 TP_PROTO(struct wiphy *wiphy, u64 id),
3544 TP_printk(WIPHY_PR_FMT ", id: %llu", WIPHY_PR_ARG, __entry->id)
3547 DEFINE_EVENT(wiphy_id_evt, cfg80211_sched_scan_stopped,
3548 TP_PROTO(struct wiphy *wiphy, u64 id),
3552 DEFINE_EVENT(wiphy_id_evt, cfg80211_sched_scan_results,
3553 TP_PROTO(struct wiphy *wiphy, u64 id),
3557 TRACE_EVENT(cfg80211_get_bss,
3558 TP_PROTO(struct wiphy *wiphy, struct ieee80211_channel *channel,
3559 const u8 *bssid, const u8 *ssid, size_t ssid_len,
3560 enum ieee80211_bss_type bss_type,
3561 enum ieee80211_privacy privacy),
3562 TP_ARGS(wiphy, channel, bssid, ssid, ssid_len, bss_type, privacy),
3567 __dynamic_array(u8, ssid, ssid_len)
3568 __field(enum ieee80211_bss_type, bss_type)
3569 __field(enum ieee80211_privacy, privacy)
3573 CHAN_ASSIGN(channel);
3574 MAC_ASSIGN(bssid, bssid);
3575 memcpy(__get_dynamic_array(ssid), ssid, ssid_len);
3576 __entry->bss_type = bss_type;
3577 __entry->privacy = privacy;
3579 TP_printk(WIPHY_PR_FMT ", " CHAN_PR_FMT ", %pM"
3580 ", buf: %#.2x, bss_type: %d, privacy: %d",
3581 WIPHY_PR_ARG, CHAN_PR_ARG, __entry->bssid,
3582 ((u8 *)__get_dynamic_array(ssid))[0], __entry->bss_type,
3586 TRACE_EVENT(cfg80211_inform_bss_frame,
3587 TP_PROTO(struct wiphy *wiphy, struct cfg80211_inform_bss *data,
3588 struct ieee80211_mgmt *mgmt, size_t len),
3589 TP_ARGS(wiphy, data, mgmt, len),
3593 __field(enum nl80211_bss_scan_width, scan_width)
3594 __dynamic_array(u8, mgmt, len)
3595 __field(s32, signal)
3596 __field(u64, ts_boottime)
3597 __field(u64, parent_tsf)
3598 MAC_ENTRY(parent_bssid)
3602 CHAN_ASSIGN(data->chan);
3603 __entry->scan_width = data->scan_width;
3605 memcpy(__get_dynamic_array(mgmt), mgmt, len);
3606 __entry->signal = data->signal;
3607 __entry->ts_boottime = data->boottime_ns;
3608 __entry->parent_tsf = data->parent_tsf;
3609 MAC_ASSIGN(parent_bssid, data->parent_bssid);
3611 TP_printk(WIPHY_PR_FMT ", " CHAN_PR_FMT
3612 "(scan_width: %d) signal: %d, tsb:%llu, detect_tsf:%llu, tsf_bssid: %pM",
3613 WIPHY_PR_ARG, CHAN_PR_ARG, __entry->scan_width,
3614 __entry->signal, (unsigned long long)__entry->ts_boottime,
3615 (unsigned long long)__entry->parent_tsf,
3616 __entry->parent_bssid)
3619 DECLARE_EVENT_CLASS(cfg80211_bss_evt,
3620 TP_PROTO(struct cfg80211_bss *pub),
3627 MAC_ASSIGN(bssid, pub->bssid);
3628 CHAN_ASSIGN(pub->channel);
3630 TP_printk("%pM, " CHAN_PR_FMT, __entry->bssid, CHAN_PR_ARG)
3633 DEFINE_EVENT(cfg80211_bss_evt, cfg80211_return_bss,
3634 TP_PROTO(struct cfg80211_bss *pub),
3638 TRACE_EVENT(cfg80211_return_uint,
3639 TP_PROTO(unsigned int ret),
3642 __field(unsigned int, ret)
3647 TP_printk("ret: %d", __entry->ret)
3650 TRACE_EVENT(cfg80211_return_u32,
3659 TP_printk("ret: %u", __entry->ret)
3662 TRACE_EVENT(cfg80211_report_wowlan_wakeup,
3663 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
3664 struct cfg80211_wowlan_wakeup *wakeup),
3665 TP_ARGS(wiphy, wdev, wakeup),
3669 __field(bool, non_wireless)
3670 __field(bool, disconnect)
3671 __field(bool, magic_pkt)
3672 __field(bool, gtk_rekey_failure)
3673 __field(bool, eap_identity_req)
3674 __field(bool, four_way_handshake)
3675 __field(bool, rfkill_release)
3676 __field(s32, pattern_idx)
3677 __field(u32, packet_len)
3678 __dynamic_array(u8, packet,
3679 wakeup ? wakeup->packet_present_len : 0)
3684 __entry->non_wireless = !wakeup;
3685 __entry->disconnect = wakeup ? wakeup->disconnect : false;
3686 __entry->magic_pkt = wakeup ? wakeup->magic_pkt : false;
3687 __entry->gtk_rekey_failure = wakeup ? wakeup->gtk_rekey_failure : false;
3688 __entry->eap_identity_req = wakeup ? wakeup->eap_identity_req : false;
3689 __entry->four_way_handshake = wakeup ? wakeup->four_way_handshake : false;
3690 __entry->rfkill_release = wakeup ? wakeup->rfkill_release : false;
3691 __entry->pattern_idx = wakeup ? wakeup->pattern_idx : false;
3692 __entry->packet_len = wakeup ? wakeup->packet_len : false;
3693 if (wakeup && wakeup->packet && wakeup->packet_present_len)
3694 memcpy(__get_dynamic_array(packet), wakeup->packet,
3695 wakeup->packet_present_len);
3697 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
3700 TRACE_EVENT(cfg80211_ft_event,
3701 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3702 struct cfg80211_ft_event_params *ft_event),
3703 TP_ARGS(wiphy, netdev, ft_event),
3707 __dynamic_array(u8, ies, ft_event->ies_len)
3708 MAC_ENTRY(target_ap)
3709 __dynamic_array(u8, ric_ies, ft_event->ric_ies_len)
3715 memcpy(__get_dynamic_array(ies), ft_event->ies,
3717 MAC_ASSIGN(target_ap, ft_event->target_ap);
3718 if (ft_event->ric_ies)
3719 memcpy(__get_dynamic_array(ric_ies), ft_event->ric_ies,
3720 ft_event->ric_ies_len);
3722 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", target_ap: %pM",
3723 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->target_ap)
3726 TRACE_EVENT(cfg80211_stop_iface,
3727 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
3728 TP_ARGS(wiphy, wdev),
3737 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT,
3738 WIPHY_PR_ARG, WDEV_PR_ARG)
3741 TRACE_EVENT(cfg80211_pmsr_report,
3742 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
3743 u64 cookie, const u8 *addr),
3744 TP_ARGS(wiphy, wdev, cookie, addr),
3748 __field(u64, cookie)
3754 __entry->cookie = cookie;
3755 MAC_ASSIGN(addr, addr);
3757 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie:%lld, %pM",
3758 WIPHY_PR_ARG, WDEV_PR_ARG,
3759 (unsigned long long)__entry->cookie,
3763 TRACE_EVENT(cfg80211_pmsr_complete,
3764 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
3765 TP_ARGS(wiphy, wdev, cookie),
3769 __field(u64, cookie)
3774 __entry->cookie = cookie;
3776 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie:%lld",
3777 WIPHY_PR_ARG, WDEV_PR_ARG,
3778 (unsigned long long)__entry->cookie)
3781 TRACE_EVENT(cfg80211_update_owe_info_event,
3782 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3783 struct cfg80211_update_owe_info *owe_info),
3784 TP_ARGS(wiphy, netdev, owe_info),
3789 __dynamic_array(u8, ie, owe_info->ie_len)
3790 __field(int, assoc_link_id)
3791 MAC_ENTRY(peer_mld_addr)
3796 MAC_ASSIGN(peer, owe_info->peer);
3797 memcpy(__get_dynamic_array(ie), owe_info->ie,
3799 __entry->assoc_link_id = owe_info->assoc_link_id;
3800 MAC_ASSIGN(peer_mld_addr, owe_info->peer_mld_addr);
3802 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: %pM,"
3803 " assoc_link_id: %d, peer_mld_addr: %pM",
3804 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->peer,
3805 __entry->assoc_link_id, __entry->peer_mld_addr)
3808 TRACE_EVENT(cfg80211_bss_color_notify,
3809 TP_PROTO(struct net_device *netdev,
3810 enum nl80211_commands cmd,
3811 u8 count, u64 color_bitmap),
3812 TP_ARGS(netdev, cmd, count, color_bitmap),
3817 __field(u64, color_bitmap)
3822 __entry->count = count;
3823 __entry->color_bitmap = color_bitmap;
3825 TP_printk(NETDEV_PR_FMT ", cmd: %x, count: %u, bitmap: %llx",
3826 NETDEV_PR_ARG, __entry->cmd, __entry->count,
3827 __entry->color_bitmap)
3830 TRACE_EVENT(cfg80211_assoc_comeback,
3831 TP_PROTO(struct wireless_dev *wdev, const u8 *ap_addr, u32 timeout),
3832 TP_ARGS(wdev, ap_addr, timeout),
3836 __field(u32, timeout)
3840 MAC_ASSIGN(ap_addr, ap_addr);
3841 __entry->timeout = timeout;
3843 TP_printk(WDEV_PR_FMT ", %pM, timeout: %u TUs",
3844 WDEV_PR_ARG, __entry->ap_addr, __entry->timeout)
3847 DECLARE_EVENT_CLASS(link_station_add_mod,
3848 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3849 struct link_station_parameters *params),
3850 TP_ARGS(wiphy, netdev, params),
3854 __array(u8, mld_mac, 6)
3855 __array(u8, link_mac, 6)
3856 __field(u32, link_id)
3857 __dynamic_array(u8, supported_rates,
3858 params->supported_rates_len)
3859 __array(u8, ht_capa, (int)sizeof(struct ieee80211_ht_cap))
3860 __array(u8, vht_capa, (int)sizeof(struct ieee80211_vht_cap))
3861 __field(u8, opmode_notif)
3862 __field(bool, opmode_notif_used)
3863 __dynamic_array(u8, he_capa, params->he_capa_len)
3864 __array(u8, he_6ghz_capa, (int)sizeof(struct ieee80211_he_6ghz_capa))
3865 __dynamic_array(u8, eht_capa, params->eht_capa_len)
3870 memset(__entry->mld_mac, 0, 6);
3871 memset(__entry->link_mac, 0, 6);
3872 if (params->mld_mac)
3873 memcpy(__entry->mld_mac, params->mld_mac, 6);
3874 if (params->link_mac)
3875 memcpy(__entry->link_mac, params->link_mac, 6);
3876 __entry->link_id = params->link_id;
3877 if (params->supported_rates && params->supported_rates_len)
3878 memcpy(__get_dynamic_array(supported_rates),
3879 params->supported_rates,
3880 params->supported_rates_len);
3881 memset(__entry->ht_capa, 0, sizeof(struct ieee80211_ht_cap));
3882 if (params->ht_capa)
3883 memcpy(__entry->ht_capa, params->ht_capa,
3884 sizeof(struct ieee80211_ht_cap));
3885 memset(__entry->vht_capa, 0, sizeof(struct ieee80211_vht_cap));
3886 if (params->vht_capa)
3887 memcpy(__entry->vht_capa, params->vht_capa,
3888 sizeof(struct ieee80211_vht_cap));
3889 __entry->opmode_notif = params->opmode_notif;
3890 __entry->opmode_notif_used = params->opmode_notif_used;
3891 if (params->he_capa && params->he_capa_len)
3892 memcpy(__get_dynamic_array(he_capa), params->he_capa,
3893 params->he_capa_len);
3894 memset(__entry->he_6ghz_capa, 0, sizeof(struct ieee80211_he_6ghz_capa));
3895 if (params->he_6ghz_capa)
3896 memcpy(__entry->he_6ghz_capa, params->he_6ghz_capa,
3897 sizeof(struct ieee80211_he_6ghz_capa));
3898 if (params->eht_capa && params->eht_capa_len)
3899 memcpy(__get_dynamic_array(eht_capa), params->eht_capa,
3900 params->eht_capa_len);
3902 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: %pM"
3903 ", link mac: %pM, link id: %u",
3904 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->mld_mac,
3905 __entry->link_mac, __entry->link_id)
3908 DEFINE_EVENT(link_station_add_mod, rdev_add_link_station,
3909 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3910 struct link_station_parameters *params),
3911 TP_ARGS(wiphy, netdev, params)
3914 DEFINE_EVENT(link_station_add_mod, rdev_mod_link_station,
3915 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3916 struct link_station_parameters *params),
3917 TP_ARGS(wiphy, netdev, params)
3920 TRACE_EVENT(rdev_del_link_station,
3921 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3922 struct link_station_del_parameters *params),
3923 TP_ARGS(wiphy, netdev, params),
3927 __array(u8, mld_mac, 6)
3928 __field(u32, link_id)
3933 memset(__entry->mld_mac, 0, 6);
3934 if (params->mld_mac)
3935 memcpy(__entry->mld_mac, params->mld_mac, 6);
3936 __entry->link_id = params->link_id;
3938 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: %pM"
3940 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->mld_mac,
3944 TRACE_EVENT(rdev_set_hw_timestamp,
3945 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
3946 struct cfg80211_set_hw_timestamp *hwts),
3948 TP_ARGS(wiphy, netdev, hwts),
3954 __field(bool, enable)
3960 MAC_ASSIGN(macaddr, hwts->macaddr);
3961 __entry->enable = hwts->enable;
3964 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mac %pM, enable: %u",
3965 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->macaddr,
3969 TRACE_EVENT(cfg80211_links_removed,
3970 TP_PROTO(struct net_device *netdev, u16 link_mask),
3971 TP_ARGS(netdev, link_mask),
3974 __field(u16, link_mask)
3978 __entry->link_mask = link_mask;
3980 TP_printk(NETDEV_PR_FMT ", link_mask:%u", NETDEV_PR_ARG,
3984 #endif /* !__RDEV_OPS_TRACE || TRACE_HEADER_MULTI_READ */
3986 #undef TRACE_INCLUDE_PATH
3987 #define TRACE_INCLUDE_PATH .
3988 #undef TRACE_INCLUDE_FILE
3989 #define TRACE_INCLUDE_FILE trace
3990 #include <trace/define_trace.h>