blob: 56089843d619c755e15b95dafeff2b5902726546 [file] [log] [blame]
Beni Lev14e8a3c2012-07-31 18:48:27 +03001#undef TRACE_SYSTEM
2#define TRACE_SYSTEM cfg80211
3
4#if !defined(__RDEV_OPS_TRACE) || defined(TRACE_HEADER_MULTI_READ)
5#define __RDEV_OPS_TRACE
6
7#include <linux/tracepoint.h>
8
9#include <linux/rtnetlink.h>
Joe Perchesd2beae12015-03-02 19:54:58 -080010#include <linux/etherdevice.h>
Beni Lev14e8a3c2012-07-31 18:48:27 +030011#include <net/cfg80211.h>
12#include "core.h"
13
14#define MAC_ENTRY(entry_mac) __array(u8, entry_mac, ETH_ALEN)
15#define MAC_ASSIGN(entry_mac, given_mac) do { \
16 if (given_mac) \
17 memcpy(__entry->entry_mac, given_mac, ETH_ALEN); \
18 else \
Joe Perchesd2beae12015-03-02 19:54:58 -080019 eth_zero_addr(__entry->entry_mac); \
Beni Lev14e8a3c2012-07-31 18:48:27 +030020 } while (0)
21#define MAC_PR_FMT "%pM"
22#define MAC_PR_ARG(entry_mac) (__entry->entry_mac)
23
Johannes Bergec816082012-11-16 17:22:28 +010024#define MAXNAME 32
25#define WIPHY_ENTRY __array(char, wiphy_name, 32)
26#define WIPHY_ASSIGN strlcpy(__entry->wiphy_name, wiphy_name(wiphy), MAXNAME)
27#define WIPHY_PR_FMT "%s"
28#define WIPHY_PR_ARG __entry->wiphy_name
Beni Lev14e8a3c2012-07-31 18:48:27 +030029
Johannes Bergec816082012-11-16 17:22:28 +010030#define WDEV_ENTRY __field(u32, id)
Johannes Bergce1eadd2013-03-19 20:26:57 +010031#define WDEV_ASSIGN (__entry->id) = (!IS_ERR_OR_NULL(wdev) \
32 ? wdev->identifier : 0)
Johannes Bergec816082012-11-16 17:22:28 +010033#define WDEV_PR_FMT "wdev(%u)"
34#define WDEV_PR_ARG (__entry->id)
Beni Lev14e8a3c2012-07-31 18:48:27 +030035
Johannes Bergec816082012-11-16 17:22:28 +010036#define NETDEV_ENTRY __array(char, name, IFNAMSIZ) \
37 __field(int, ifindex)
Beni Lev14e8a3c2012-07-31 18:48:27 +030038#define NETDEV_ASSIGN \
39 do { \
40 memcpy(__entry->name, netdev->name, IFNAMSIZ); \
Beni Lev14e8a3c2012-07-31 18:48:27 +030041 (__entry->ifindex) = (netdev->ifindex); \
42 } while (0)
Johannes Bergec816082012-11-16 17:22:28 +010043#define NETDEV_PR_FMT "netdev:%s(%d)"
44#define NETDEV_PR_ARG __entry->name, __entry->ifindex
Beni Lev14e8a3c2012-07-31 18:48:27 +030045
46#define MESH_CFG_ENTRY __field(u16, dot11MeshRetryTimeout) \
47 __field(u16, dot11MeshConfirmTimeout) \
48 __field(u16, dot11MeshHoldingTimeout) \
49 __field(u16, dot11MeshMaxPeerLinks) \
50 __field(u8, dot11MeshMaxRetries) \
51 __field(u8, dot11MeshTTL) \
52 __field(u8, element_ttl) \
53 __field(bool, auto_open_plinks) \
54 __field(u32, dot11MeshNbrOffsetMaxNeighbor) \
55 __field(u8, dot11MeshHWMPmaxPREQretries) \
56 __field(u32, path_refresh_time) \
57 __field(u32, dot11MeshHWMPactivePathTimeout) \
58 __field(u16, min_discovery_timeout) \
59 __field(u16, dot11MeshHWMPpreqMinInterval) \
60 __field(u16, dot11MeshHWMPperrMinInterval) \
61 __field(u16, dot11MeshHWMPnetDiameterTraversalTime) \
62 __field(u8, dot11MeshHWMPRootMode) \
63 __field(u16, dot11MeshHWMPRannInterval) \
64 __field(bool, dot11MeshGateAnnouncementProtocol) \
65 __field(bool, dot11MeshForwarding) \
66 __field(s32, rssi_threshold) \
67 __field(u16, ht_opmode) \
68 __field(u32, dot11MeshHWMPactivePathToRootTimeout) \
69 __field(u16, dot11MeshHWMProotInterval) \
70 __field(u16, dot11MeshHWMPconfirmationInterval)
71#define MESH_CFG_ASSIGN \
72 do { \
73 __entry->dot11MeshRetryTimeout = conf->dot11MeshRetryTimeout; \
74 __entry->dot11MeshConfirmTimeout = \
75 conf->dot11MeshConfirmTimeout; \
76 __entry->dot11MeshHoldingTimeout = \
77 conf->dot11MeshHoldingTimeout; \
78 __entry->dot11MeshMaxPeerLinks = conf->dot11MeshMaxPeerLinks; \
79 __entry->dot11MeshMaxRetries = conf->dot11MeshMaxRetries; \
80 __entry->dot11MeshTTL = conf->dot11MeshTTL; \
81 __entry->element_ttl = conf->element_ttl; \
82 __entry->auto_open_plinks = conf->auto_open_plinks; \
83 __entry->dot11MeshNbrOffsetMaxNeighbor = \
84 conf->dot11MeshNbrOffsetMaxNeighbor; \
85 __entry->dot11MeshHWMPmaxPREQretries = \
86 conf->dot11MeshHWMPmaxPREQretries; \
87 __entry->path_refresh_time = conf->path_refresh_time; \
88 __entry->dot11MeshHWMPactivePathTimeout = \
89 conf->dot11MeshHWMPactivePathTimeout; \
90 __entry->min_discovery_timeout = conf->min_discovery_timeout; \
91 __entry->dot11MeshHWMPpreqMinInterval = \
92 conf->dot11MeshHWMPpreqMinInterval; \
93 __entry->dot11MeshHWMPperrMinInterval = \
94 conf->dot11MeshHWMPperrMinInterval; \
95 __entry->dot11MeshHWMPnetDiameterTraversalTime = \
96 conf->dot11MeshHWMPnetDiameterTraversalTime; \
97 __entry->dot11MeshHWMPRootMode = conf->dot11MeshHWMPRootMode; \
98 __entry->dot11MeshHWMPRannInterval = \
99 conf->dot11MeshHWMPRannInterval; \
100 __entry->dot11MeshGateAnnouncementProtocol = \
101 conf->dot11MeshGateAnnouncementProtocol; \
102 __entry->dot11MeshForwarding = conf->dot11MeshForwarding; \
103 __entry->rssi_threshold = conf->rssi_threshold; \
104 __entry->ht_opmode = conf->ht_opmode; \
105 __entry->dot11MeshHWMPactivePathToRootTimeout = \
106 conf->dot11MeshHWMPactivePathToRootTimeout; \
107 __entry->dot11MeshHWMProotInterval = \
108 conf->dot11MeshHWMProotInterval; \
109 __entry->dot11MeshHWMPconfirmationInterval = \
110 conf->dot11MeshHWMPconfirmationInterval; \
111 } while (0)
112
Johannes Berg57fbcce2016-04-12 15:56:15 +0200113#define CHAN_ENTRY __field(enum nl80211_band, band) \
Beni Lev14e8a3c2012-07-31 18:48:27 +0300114 __field(u16, center_freq)
115#define CHAN_ASSIGN(chan) \
116 do { \
117 if (chan) { \
118 __entry->band = chan->band; \
119 __entry->center_freq = chan->center_freq; \
120 } else { \
121 __entry->band = 0; \
122 __entry->center_freq = 0; \
123 } \
124 } while (0)
Johannes Bergec816082012-11-16 17:22:28 +0100125#define CHAN_PR_FMT "band: %d, freq: %u"
Beni Lev14e8a3c2012-07-31 18:48:27 +0300126#define CHAN_PR_ARG __entry->band, __entry->center_freq
127
Johannes Berg57fbcce2016-04-12 15:56:15 +0200128#define CHAN_DEF_ENTRY __field(enum nl80211_band, band) \
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100129 __field(u32, control_freq) \
130 __field(u32, width) \
131 __field(u32, center_freq1) \
132 __field(u32, center_freq2)
Johannes Berg683b6d32012-11-08 21:25:48 +0100133#define CHAN_DEF_ASSIGN(chandef) \
134 do { \
135 if ((chandef) && (chandef)->chan) { \
136 __entry->band = (chandef)->chan->band; \
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100137 __entry->control_freq = \
Johannes Berg683b6d32012-11-08 21:25:48 +0100138 (chandef)->chan->center_freq; \
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100139 __entry->width = (chandef)->width; \
140 __entry->center_freq1 = (chandef)->center_freq1;\
141 __entry->center_freq2 = (chandef)->center_freq2;\
Johannes Berg683b6d32012-11-08 21:25:48 +0100142 } else { \
143 __entry->band = 0; \
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100144 __entry->control_freq = 0; \
145 __entry->width = 0; \
146 __entry->center_freq1 = 0; \
147 __entry->center_freq2 = 0; \
Johannes Berg683b6d32012-11-08 21:25:48 +0100148 } \
149 } while (0)
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100150#define CHAN_DEF_PR_FMT \
Johannes Bergec816082012-11-16 17:22:28 +0100151 "band: %d, control freq: %u, width: %d, cf1: %u, cf2: %u"
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100152#define CHAN_DEF_PR_ARG __entry->band, __entry->control_freq, \
153 __entry->width, __entry->center_freq1, \
154 __entry->center_freq2
Johannes Berg683b6d32012-11-08 21:25:48 +0100155
Beni Lev14e8a3c2012-07-31 18:48:27 +0300156#define SINFO_ENTRY __field(int, generation) \
157 __field(u32, connected_time) \
158 __field(u32, inactive_time) \
159 __field(u32, rx_bytes) \
160 __field(u32, tx_bytes) \
161 __field(u32, rx_packets) \
162 __field(u32, tx_packets) \
163 __field(u32, tx_retries) \
164 __field(u32, tx_failed) \
165 __field(u32, rx_dropped_misc) \
166 __field(u32, beacon_loss_count) \
167 __field(u16, llid) \
168 __field(u16, plid) \
169 __field(u8, plink_state)
170#define SINFO_ASSIGN \
171 do { \
172 __entry->generation = sinfo->generation; \
173 __entry->connected_time = sinfo->connected_time; \
174 __entry->inactive_time = sinfo->inactive_time; \
175 __entry->rx_bytes = sinfo->rx_bytes; \
176 __entry->tx_bytes = sinfo->tx_bytes; \
177 __entry->rx_packets = sinfo->rx_packets; \
178 __entry->tx_packets = sinfo->tx_packets; \
179 __entry->tx_retries = sinfo->tx_retries; \
180 __entry->tx_failed = sinfo->tx_failed; \
181 __entry->rx_dropped_misc = sinfo->rx_dropped_misc; \
182 __entry->beacon_loss_count = sinfo->beacon_loss_count; \
183 __entry->llid = sinfo->llid; \
184 __entry->plid = sinfo->plid; \
185 __entry->plink_state = sinfo->plink_state; \
186 } while (0)
187
188#define BOOL_TO_STR(bo) (bo) ? "true" : "false"
189
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -0800190#define QOS_MAP_ENTRY __field(u8, num_des) \
191 __array(u8, dscp_exception, \
192 2 * IEEE80211_QOS_MAP_MAX_EX) \
193 __array(u8, up, IEEE80211_QOS_MAP_LEN_MIN)
194#define QOS_MAP_ASSIGN(qos_map) \
195 do { \
196 if ((qos_map)) { \
197 __entry->num_des = (qos_map)->num_des; \
198 memcpy(__entry->dscp_exception, \
199 &(qos_map)->dscp_exception, \
200 2 * IEEE80211_QOS_MAP_MAX_EX); \
201 memcpy(__entry->up, &(qos_map)->up, \
202 IEEE80211_QOS_MAP_LEN_MIN); \
203 } else { \
204 __entry->num_des = 0; \
205 memset(__entry->dscp_exception, 0, \
206 2 * IEEE80211_QOS_MAP_MAX_EX); \
207 memset(__entry->up, 0, \
208 IEEE80211_QOS_MAP_LEN_MIN); \
209 } \
210 } while (0)
211
Beni Lev14e8a3c2012-07-31 18:48:27 +0300212/*************************************************************
213 * rdev->ops traces *
214 *************************************************************/
215
216TRACE_EVENT(rdev_suspend,
217 TP_PROTO(struct wiphy *wiphy, struct cfg80211_wowlan *wow),
218 TP_ARGS(wiphy, wow),
219 TP_STRUCT__entry(
220 WIPHY_ENTRY
221 __field(bool, any)
222 __field(bool, disconnect)
223 __field(bool, magic_pkt)
224 __field(bool, gtk_rekey_failure)
225 __field(bool, eap_identity_req)
226 __field(bool, four_way_handshake)
227 __field(bool, rfkill_release)
228 __field(bool, valid_wow)
229 ),
230 TP_fast_assign(
231 WIPHY_ASSIGN;
232 if (wow) {
233 __entry->any = wow->any;
234 __entry->disconnect = wow->disconnect;
235 __entry->magic_pkt = wow->magic_pkt;
236 __entry->gtk_rekey_failure = wow->gtk_rekey_failure;
237 __entry->eap_identity_req = wow->eap_identity_req;
238 __entry->four_way_handshake = wow->four_way_handshake;
239 __entry->rfkill_release = wow->rfkill_release;
240 __entry->valid_wow = true;
241 } else {
242 __entry->valid_wow = false;
243 }
244 ),
245 TP_printk(WIPHY_PR_FMT ", wow%s - any: %d, disconnect: %d, "
246 "magic pkt: %d, gtk rekey failure: %d, eap identify req: %d, "
247 "four way handshake: %d, rfkill release: %d.",
248 WIPHY_PR_ARG, __entry->valid_wow ? "" : "(Not configured!)",
249 __entry->any, __entry->disconnect, __entry->magic_pkt,
250 __entry->gtk_rekey_failure, __entry->eap_identity_req,
251 __entry->four_way_handshake, __entry->rfkill_release)
252);
253
254TRACE_EVENT(rdev_return_int,
255 TP_PROTO(struct wiphy *wiphy, int ret),
256 TP_ARGS(wiphy, ret),
257 TP_STRUCT__entry(
258 WIPHY_ENTRY
259 __field(int, ret)
260 ),
261 TP_fast_assign(
262 WIPHY_ASSIGN;
263 __entry->ret = ret;
264 ),
265 TP_printk(WIPHY_PR_FMT ", returned: %d", WIPHY_PR_ARG, __entry->ret)
266);
267
268TRACE_EVENT(rdev_scan,
269 TP_PROTO(struct wiphy *wiphy, struct cfg80211_scan_request *request),
270 TP_ARGS(wiphy, request),
271 TP_STRUCT__entry(
272 WIPHY_ENTRY
273 ),
274 TP_fast_assign(
275 WIPHY_ASSIGN;
276 ),
277 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
278);
279
280DECLARE_EVENT_CLASS(wiphy_only_evt,
281 TP_PROTO(struct wiphy *wiphy),
282 TP_ARGS(wiphy),
283 TP_STRUCT__entry(
284 WIPHY_ENTRY
285 ),
286 TP_fast_assign(
287 WIPHY_ASSIGN;
288 ),
289 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
290);
291
292DEFINE_EVENT(wiphy_only_evt, rdev_resume,
293 TP_PROTO(struct wiphy *wiphy),
294 TP_ARGS(wiphy)
295);
296
297DEFINE_EVENT(wiphy_only_evt, rdev_return_void,
298 TP_PROTO(struct wiphy *wiphy),
299 TP_ARGS(wiphy)
300);
301
Beni Lev14e8a3c2012-07-31 18:48:27 +0300302DEFINE_EVENT(wiphy_only_evt, rdev_get_antenna,
303 TP_PROTO(struct wiphy *wiphy),
304 TP_ARGS(wiphy)
305);
306
Beni Lev14e8a3c2012-07-31 18:48:27 +0300307DEFINE_EVENT(wiphy_only_evt, rdev_rfkill_poll,
308 TP_PROTO(struct wiphy *wiphy),
309 TP_ARGS(wiphy)
310);
311
312DECLARE_EVENT_CLASS(wiphy_enabled_evt,
313 TP_PROTO(struct wiphy *wiphy, bool enabled),
314 TP_ARGS(wiphy, enabled),
315 TP_STRUCT__entry(
316 WIPHY_ENTRY
317 __field(bool, enabled)
318 ),
319 TP_fast_assign(
320 WIPHY_ASSIGN;
321 __entry->enabled = enabled;
322 ),
323 TP_printk(WIPHY_PR_FMT ", %senabled ",
324 WIPHY_PR_ARG, __entry->enabled ? "" : "not ")
325);
326
327DEFINE_EVENT(wiphy_enabled_evt, rdev_set_wakeup,
328 TP_PROTO(struct wiphy *wiphy, bool enabled),
329 TP_ARGS(wiphy, enabled)
330);
331
332TRACE_EVENT(rdev_add_virtual_intf,
333 TP_PROTO(struct wiphy *wiphy, char *name, enum nl80211_iftype type),
334 TP_ARGS(wiphy, name, type),
335 TP_STRUCT__entry(
336 WIPHY_ENTRY
337 __string(vir_intf_name, name ? name : "<noname>")
338 __field(enum nl80211_iftype, type)
339 ),
340 TP_fast_assign(
341 WIPHY_ASSIGN;
342 __assign_str(vir_intf_name, name ? name : "<noname>");
343 __entry->type = type;
344 ),
345 TP_printk(WIPHY_PR_FMT ", virtual intf name: %s, type: %d",
346 WIPHY_PR_ARG, __get_str(vir_intf_name), __entry->type)
347);
348
349DECLARE_EVENT_CLASS(wiphy_wdev_evt,
350 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
351 TP_ARGS(wiphy, wdev),
352 TP_STRUCT__entry(
353 WIPHY_ENTRY
354 WDEV_ENTRY
355 ),
356 TP_fast_assign(
357 WIPHY_ASSIGN;
358 WDEV_ASSIGN;
359 ),
Johannes Bergec816082012-11-16 17:22:28 +0100360 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300361);
362
363DEFINE_EVENT(wiphy_wdev_evt, rdev_return_wdev,
364 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
365 TP_ARGS(wiphy, wdev)
366);
367
368DEFINE_EVENT(wiphy_wdev_evt, rdev_del_virtual_intf,
369 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
370 TP_ARGS(wiphy, wdev)
371);
372
373TRACE_EVENT(rdev_change_virtual_intf,
374 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
375 enum nl80211_iftype type),
376 TP_ARGS(wiphy, netdev, type),
377 TP_STRUCT__entry(
378 WIPHY_ENTRY
379 NETDEV_ENTRY
380 __field(enum nl80211_iftype, type)
381 ),
382 TP_fast_assign(
383 WIPHY_ASSIGN;
384 NETDEV_ASSIGN;
385 __entry->type = type;
386 ),
Johannes Bergec816082012-11-16 17:22:28 +0100387 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", type: %d",
Beni Lev14e8a3c2012-07-31 18:48:27 +0300388 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->type)
389);
390
391DECLARE_EVENT_CLASS(key_handle,
392 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
393 bool pairwise, const u8 *mac_addr),
394 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr),
395 TP_STRUCT__entry(
396 WIPHY_ENTRY
397 NETDEV_ENTRY
398 MAC_ENTRY(mac_addr)
399 __field(u8, key_index)
400 __field(bool, pairwise)
401 ),
402 TP_fast_assign(
403 WIPHY_ASSIGN;
404 NETDEV_ASSIGN;
405 MAC_ASSIGN(mac_addr, mac_addr);
406 __entry->key_index = key_index;
407 __entry->pairwise = pairwise;
408 ),
Johannes Bergec816082012-11-16 17:22:28 +0100409 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", key_index: %u, pairwise: %s, mac addr: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +0300410 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->key_index,
411 BOOL_TO_STR(__entry->pairwise), MAC_PR_ARG(mac_addr))
412);
413
414DEFINE_EVENT(key_handle, rdev_add_key,
415 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
416 bool pairwise, const u8 *mac_addr),
417 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr)
418);
419
420DEFINE_EVENT(key_handle, rdev_get_key,
421 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
422 bool pairwise, const u8 *mac_addr),
423 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr)
424);
425
426DEFINE_EVENT(key_handle, rdev_del_key,
427 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
428 bool pairwise, const u8 *mac_addr),
429 TP_ARGS(wiphy, netdev, key_index, pairwise, mac_addr)
430);
431
432TRACE_EVENT(rdev_set_default_key,
433 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index,
434 bool unicast, bool multicast),
435 TP_ARGS(wiphy, netdev, key_index, unicast, multicast),
436 TP_STRUCT__entry(
437 WIPHY_ENTRY
438 NETDEV_ENTRY
439 __field(u8, key_index)
440 __field(bool, unicast)
441 __field(bool, multicast)
442 ),
443 TP_fast_assign(
444 WIPHY_ASSIGN;
445 NETDEV_ASSIGN;
446 __entry->key_index = key_index;
447 __entry->unicast = unicast;
448 __entry->multicast = multicast;
449 ),
Johannes Bergec816082012-11-16 17:22:28 +0100450 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", key index: %u, unicast: %s, multicast: %s",
Beni Lev14e8a3c2012-07-31 18:48:27 +0300451 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->key_index,
452 BOOL_TO_STR(__entry->unicast),
453 BOOL_TO_STR(__entry->multicast))
454);
455
456TRACE_EVENT(rdev_set_default_mgmt_key,
457 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 key_index),
458 TP_ARGS(wiphy, netdev, key_index),
459 TP_STRUCT__entry(
460 WIPHY_ENTRY
461 NETDEV_ENTRY
462 __field(u8, key_index)
463 ),
464 TP_fast_assign(
465 WIPHY_ASSIGN;
466 NETDEV_ASSIGN;
467 __entry->key_index = key_index;
468 ),
Johannes Bergec816082012-11-16 17:22:28 +0100469 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", key index: %u",
Beni Lev14e8a3c2012-07-31 18:48:27 +0300470 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->key_index)
471);
472
473TRACE_EVENT(rdev_start_ap,
474 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
475 struct cfg80211_ap_settings *settings),
476 TP_ARGS(wiphy, netdev, settings),
477 TP_STRUCT__entry(
478 WIPHY_ENTRY
479 NETDEV_ENTRY
Johannes Berg683b6d32012-11-08 21:25:48 +0100480 CHAN_DEF_ENTRY
Beni Lev14e8a3c2012-07-31 18:48:27 +0300481 __field(int, beacon_interval)
482 __field(int, dtim_period)
483 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
484 __field(enum nl80211_hidden_ssid, hidden_ssid)
485 __field(u32, wpa_ver)
486 __field(bool, privacy)
487 __field(enum nl80211_auth_type, auth_type)
488 __field(int, inactivity_timeout)
489 ),
490 TP_fast_assign(
491 WIPHY_ASSIGN;
492 NETDEV_ASSIGN;
Johannes Berg683b6d32012-11-08 21:25:48 +0100493 CHAN_DEF_ASSIGN(&settings->chandef);
Beni Lev14e8a3c2012-07-31 18:48:27 +0300494 __entry->beacon_interval = settings->beacon_interval;
495 __entry->dtim_period = settings->dtim_period;
496 __entry->hidden_ssid = settings->hidden_ssid;
497 __entry->wpa_ver = settings->crypto.wpa_versions;
498 __entry->privacy = settings->privacy;
499 __entry->auth_type = settings->auth_type;
500 __entry->inactivity_timeout = settings->inactivity_timeout;
501 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
502 memcpy(__entry->ssid, settings->ssid, settings->ssid_len);
503 ),
Johannes Bergec816082012-11-16 17:22:28 +0100504 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", AP settings - ssid: %s, "
Johannes Berg683b6d32012-11-08 21:25:48 +0100505 CHAN_DEF_PR_FMT ", beacon interval: %d, dtim period: %d, "
Beni Lev14e8a3c2012-07-31 18:48:27 +0300506 "hidden ssid: %d, wpa versions: %u, privacy: %s, "
507 "auth type: %d, inactivity timeout: %d",
Johannes Berg683b6d32012-11-08 21:25:48 +0100508 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ssid, CHAN_DEF_PR_ARG,
Beni Lev14e8a3c2012-07-31 18:48:27 +0300509 __entry->beacon_interval, __entry->dtim_period,
510 __entry->hidden_ssid, __entry->wpa_ver,
511 BOOL_TO_STR(__entry->privacy), __entry->auth_type,
512 __entry->inactivity_timeout)
513);
514
515TRACE_EVENT(rdev_change_beacon,
516 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
517 struct cfg80211_beacon_data *info),
518 TP_ARGS(wiphy, netdev, info),
519 TP_STRUCT__entry(
520 WIPHY_ENTRY
521 NETDEV_ENTRY
522 __dynamic_array(u8, head, info ? info->head_len : 0)
523 __dynamic_array(u8, tail, info ? info->tail_len : 0)
524 __dynamic_array(u8, beacon_ies, info ? info->beacon_ies_len : 0)
525 __dynamic_array(u8, proberesp_ies,
526 info ? info->proberesp_ies_len : 0)
527 __dynamic_array(u8, assocresp_ies,
528 info ? info->assocresp_ies_len : 0)
529 __dynamic_array(u8, probe_resp, info ? info->probe_resp_len : 0)
530 ),
531 TP_fast_assign(
532 WIPHY_ASSIGN;
533 NETDEV_ASSIGN;
534 if (info) {
535 if (info->head)
536 memcpy(__get_dynamic_array(head), info->head,
537 info->head_len);
538 if (info->tail)
539 memcpy(__get_dynamic_array(tail), info->tail,
540 info->tail_len);
541 if (info->beacon_ies)
542 memcpy(__get_dynamic_array(beacon_ies),
543 info->beacon_ies, info->beacon_ies_len);
544 if (info->proberesp_ies)
545 memcpy(__get_dynamic_array(proberesp_ies),
546 info->proberesp_ies,
547 info->proberesp_ies_len);
548 if (info->assocresp_ies)
549 memcpy(__get_dynamic_array(assocresp_ies),
550 info->assocresp_ies,
551 info->assocresp_ies_len);
552 if (info->probe_resp)
553 memcpy(__get_dynamic_array(probe_resp),
554 info->probe_resp, info->probe_resp_len);
555 }
556 ),
Johannes Bergec816082012-11-16 17:22:28 +0100557 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300558);
559
560DECLARE_EVENT_CLASS(wiphy_netdev_evt,
561 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
562 TP_ARGS(wiphy, netdev),
563 TP_STRUCT__entry(
564 WIPHY_ENTRY
565 NETDEV_ENTRY
566 ),
567 TP_fast_assign(
568 WIPHY_ASSIGN;
569 NETDEV_ASSIGN;
570 ),
Johannes Bergec816082012-11-16 17:22:28 +0100571 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300572);
573
574DEFINE_EVENT(wiphy_netdev_evt, rdev_stop_ap,
575 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
576 TP_ARGS(wiphy, netdev)
577);
578
Beni Lev14e8a3c2012-07-31 18:48:27 +0300579DEFINE_EVENT(wiphy_netdev_evt, rdev_sched_scan_stop,
580 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
581 TP_ARGS(wiphy, netdev)
582);
583
584DEFINE_EVENT(wiphy_netdev_evt, rdev_set_rekey_data,
585 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
586 TP_ARGS(wiphy, netdev)
587);
588
589DEFINE_EVENT(wiphy_netdev_evt, rdev_get_mesh_config,
590 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
591 TP_ARGS(wiphy, netdev)
592);
593
594DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_mesh,
595 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
596 TP_ARGS(wiphy, netdev)
597);
598
599DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_ibss,
600 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
601 TP_ARGS(wiphy, netdev)
602);
603
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100604DEFINE_EVENT(wiphy_netdev_evt, rdev_leave_ocb,
605 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
606 TP_ARGS(wiphy, netdev)
607);
608
Beni Lev14e8a3c2012-07-31 18:48:27 +0300609DEFINE_EVENT(wiphy_netdev_evt, rdev_flush_pmksa,
610 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev),
611 TP_ARGS(wiphy, netdev)
612);
613
614DECLARE_EVENT_CLASS(station_add_change,
615 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
616 struct station_parameters *params),
617 TP_ARGS(wiphy, netdev, mac, params),
618 TP_STRUCT__entry(
619 WIPHY_ENTRY
620 NETDEV_ENTRY
621 MAC_ENTRY(sta_mac)
622 __field(u32, sta_flags_mask)
623 __field(u32, sta_flags_set)
624 __field(u32, sta_modify_mask)
625 __field(int, listen_interval)
Johannes Berg6e045902015-10-22 22:27:47 +0300626 __field(u16, capability)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300627 __field(u16, aid)
628 __field(u8, plink_action)
629 __field(u8, plink_state)
630 __field(u8, uapsd_queues)
Johannes Berg6e045902015-10-22 22:27:47 +0300631 __field(u8, max_sp)
632 __field(u8, opmode_notif)
633 __field(bool, opmode_notif_used)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300634 __array(u8, ht_capa, (int)sizeof(struct ieee80211_ht_cap))
Johannes Berg6e045902015-10-22 22:27:47 +0300635 __array(u8, vht_capa, (int)sizeof(struct ieee80211_vht_cap))
Johannes Berg5d8325e2015-03-20 19:56:41 +0100636 __array(char, vlan, IFNAMSIZ)
Johannes Berg6e045902015-10-22 22:27:47 +0300637 __dynamic_array(u8, supported_rates,
638 params->supported_rates_len)
639 __dynamic_array(u8, ext_capab, params->ext_capab_len)
640 __dynamic_array(u8, supported_channels,
641 params->supported_channels_len)
642 __dynamic_array(u8, supported_oper_classes,
643 params->supported_oper_classes_len)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300644 ),
645 TP_fast_assign(
646 WIPHY_ASSIGN;
647 NETDEV_ASSIGN;
648 MAC_ASSIGN(sta_mac, mac);
649 __entry->sta_flags_mask = params->sta_flags_mask;
650 __entry->sta_flags_set = params->sta_flags_set;
651 __entry->sta_modify_mask = params->sta_modify_mask;
652 __entry->listen_interval = params->listen_interval;
653 __entry->aid = params->aid;
654 __entry->plink_action = params->plink_action;
655 __entry->plink_state = params->plink_state;
656 __entry->uapsd_queues = params->uapsd_queues;
657 memset(__entry->ht_capa, 0, sizeof(struct ieee80211_ht_cap));
658 if (params->ht_capa)
659 memcpy(__entry->ht_capa, params->ht_capa,
660 sizeof(struct ieee80211_ht_cap));
Johannes Berg6e045902015-10-22 22:27:47 +0300661 memset(__entry->vht_capa, 0, sizeof(struct ieee80211_vht_cap));
662 if (params->vht_capa)
663 memcpy(__entry->vht_capa, params->vht_capa,
664 sizeof(struct ieee80211_vht_cap));
Johannes Berg5d8325e2015-03-20 19:56:41 +0100665 memset(__entry->vlan, 0, sizeof(__entry->vlan));
666 if (params->vlan)
667 memcpy(__entry->vlan, params->vlan->name, IFNAMSIZ);
Johannes Berg6e045902015-10-22 22:27:47 +0300668 if (params->supported_rates && params->supported_rates_len)
669 memcpy(__get_dynamic_array(supported_rates),
670 params->supported_rates,
671 params->supported_rates_len);
672 if (params->ext_capab && params->ext_capab_len)
673 memcpy(__get_dynamic_array(ext_capab),
674 params->ext_capab,
675 params->ext_capab_len);
676 if (params->supported_channels &&
677 params->supported_channels_len)
678 memcpy(__get_dynamic_array(supported_channels),
679 params->supported_channels,
680 params->supported_channels_len);
681 if (params->supported_oper_classes &&
682 params->supported_oper_classes_len)
683 memcpy(__get_dynamic_array(supported_oper_classes),
684 params->supported_oper_classes,
685 params->supported_oper_classes_len);
686 __entry->max_sp = params->max_sp;
687 __entry->capability = params->capability;
688 __entry->opmode_notif = params->opmode_notif;
689 __entry->opmode_notif_used = params->opmode_notif_used;
Beni Lev14e8a3c2012-07-31 18:48:27 +0300690 ),
Johannes Bergec816082012-11-16 17:22:28 +0100691 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: " MAC_PR_FMT
Beni Lev14e8a3c2012-07-31 18:48:27 +0300692 ", station flags mask: %u, station flags set: %u, "
693 "station modify mask: %u, listen interval: %d, aid: %u, "
Johannes Berg5d8325e2015-03-20 19:56:41 +0100694 "plink action: %u, plink state: %u, uapsd queues: %u, vlan:%s",
Beni Lev14e8a3c2012-07-31 18:48:27 +0300695 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac),
696 __entry->sta_flags_mask, __entry->sta_flags_set,
697 __entry->sta_modify_mask, __entry->listen_interval,
698 __entry->aid, __entry->plink_action, __entry->plink_state,
Johannes Berg5d8325e2015-03-20 19:56:41 +0100699 __entry->uapsd_queues, __entry->vlan)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300700);
701
702DEFINE_EVENT(station_add_change, rdev_add_station,
703 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
704 struct station_parameters *params),
705 TP_ARGS(wiphy, netdev, mac, params)
706);
707
708DEFINE_EVENT(station_add_change, rdev_change_station,
709 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *mac,
710 struct station_parameters *params),
711 TP_ARGS(wiphy, netdev, mac, params)
712);
713
714DECLARE_EVENT_CLASS(wiphy_netdev_mac_evt,
715 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
716 TP_ARGS(wiphy, netdev, mac),
717 TP_STRUCT__entry(
718 WIPHY_ENTRY
719 NETDEV_ENTRY
720 MAC_ENTRY(sta_mac)
721 ),
722 TP_fast_assign(
723 WIPHY_ASSIGN;
724 NETDEV_ASSIGN;
725 MAC_ASSIGN(sta_mac, mac);
726 ),
Johannes Bergec816082012-11-16 17:22:28 +0100727 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mac: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +0300728 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac))
729);
730
Jouni Malinen89c771e2014-10-10 20:52:40 +0300731DECLARE_EVENT_CLASS(station_del,
732 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
733 struct station_del_parameters *params),
734 TP_ARGS(wiphy, netdev, params),
735 TP_STRUCT__entry(
736 WIPHY_ENTRY
737 NETDEV_ENTRY
738 MAC_ENTRY(sta_mac)
Jouni Malinen98856862014-10-20 13:20:45 +0300739 __field(u8, subtype)
740 __field(u16, reason_code)
Jouni Malinen89c771e2014-10-10 20:52:40 +0300741 ),
742 TP_fast_assign(
743 WIPHY_ASSIGN;
744 NETDEV_ASSIGN;
745 MAC_ASSIGN(sta_mac, params->mac);
Jouni Malinen98856862014-10-20 13:20:45 +0300746 __entry->subtype = params->subtype;
747 __entry->reason_code = params->reason_code;
Jouni Malinen89c771e2014-10-10 20:52:40 +0300748 ),
Jouni Malinen98856862014-10-20 13:20:45 +0300749 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: " MAC_PR_FMT
750 ", subtype: %u, reason_code: %u",
751 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac),
752 __entry->subtype, __entry->reason_code)
Jouni Malinen89c771e2014-10-10 20:52:40 +0300753);
754
755DEFINE_EVENT(station_del, rdev_del_station,
756 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
757 struct station_del_parameters *params),
758 TP_ARGS(wiphy, netdev, params)
Beni Lev14e8a3c2012-07-31 18:48:27 +0300759);
760
761DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_get_station,
762 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
763 TP_ARGS(wiphy, netdev, mac)
764);
765
766DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_del_mpath,
767 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
768 TP_ARGS(wiphy, netdev, mac)
769);
770
771DEFINE_EVENT(wiphy_netdev_mac_evt, rdev_set_wds_peer,
772 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac),
773 TP_ARGS(wiphy, netdev, mac)
774);
775
776TRACE_EVENT(rdev_dump_station,
777 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx,
778 u8 *mac),
779 TP_ARGS(wiphy, netdev, idx, mac),
780 TP_STRUCT__entry(
781 WIPHY_ENTRY
782 NETDEV_ENTRY
783 MAC_ENTRY(sta_mac)
784 __field(int, idx)
785 ),
786 TP_fast_assign(
787 WIPHY_ASSIGN;
788 NETDEV_ASSIGN;
789 MAC_ASSIGN(sta_mac, mac);
790 __entry->idx = idx;
791 ),
Johannes Bergec816082012-11-16 17:22:28 +0100792 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", station mac: " MAC_PR_FMT ", idx: %d",
Beni Lev14e8a3c2012-07-31 18:48:27 +0300793 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(sta_mac),
794 __entry->idx)
795);
796
797TRACE_EVENT(rdev_return_int_station_info,
798 TP_PROTO(struct wiphy *wiphy, int ret, struct station_info *sinfo),
799 TP_ARGS(wiphy, ret, sinfo),
800 TP_STRUCT__entry(
801 WIPHY_ENTRY
802 __field(int, ret)
803 SINFO_ENTRY
804 ),
805 TP_fast_assign(
806 WIPHY_ASSIGN;
807 __entry->ret = ret;
808 SINFO_ASSIGN;
809 ),
810 TP_printk(WIPHY_PR_FMT ", returned %d" ,
811 WIPHY_PR_ARG, __entry->ret)
812);
813
814DECLARE_EVENT_CLASS(mpath_evt,
815 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
816 u8 *next_hop),
817 TP_ARGS(wiphy, netdev, dst, next_hop),
818 TP_STRUCT__entry(
819 WIPHY_ENTRY
820 NETDEV_ENTRY
821 MAC_ENTRY(dst)
822 MAC_ENTRY(next_hop)
823 ),
824 TP_fast_assign(
825 WIPHY_ASSIGN;
826 NETDEV_ASSIGN;
827 MAC_ASSIGN(dst, dst);
828 MAC_ASSIGN(next_hop, next_hop);
829 ),
Johannes Bergec816082012-11-16 17:22:28 +0100830 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", destination: " MAC_PR_FMT ", next hop: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +0300831 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(dst),
832 MAC_PR_ARG(next_hop))
833);
834
835DEFINE_EVENT(mpath_evt, rdev_add_mpath,
836 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
837 u8 *next_hop),
838 TP_ARGS(wiphy, netdev, dst, next_hop)
839);
840
841DEFINE_EVENT(mpath_evt, rdev_change_mpath,
842 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
843 u8 *next_hop),
844 TP_ARGS(wiphy, netdev, dst, next_hop)
845);
846
847DEFINE_EVENT(mpath_evt, rdev_get_mpath,
848 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u8 *dst,
849 u8 *next_hop),
850 TP_ARGS(wiphy, netdev, dst, next_hop)
851);
852
853TRACE_EVENT(rdev_dump_mpath,
854 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx,
855 u8 *dst, u8 *next_hop),
856 TP_ARGS(wiphy, netdev, idx, dst, next_hop),
857 TP_STRUCT__entry(
858 WIPHY_ENTRY
859 NETDEV_ENTRY
860 MAC_ENTRY(dst)
861 MAC_ENTRY(next_hop)
862 __field(int, idx)
863 ),
864 TP_fast_assign(
865 WIPHY_ASSIGN;
866 NETDEV_ASSIGN;
867 MAC_ASSIGN(dst, dst);
868 MAC_ASSIGN(next_hop, next_hop);
869 __entry->idx = idx;
870 ),
Johannes Bergec816082012-11-16 17:22:28 +0100871 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d, destination: "
Beni Lev14e8a3c2012-07-31 18:48:27 +0300872 MAC_PR_FMT ", next hop: " MAC_PR_FMT,
873 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx, MAC_PR_ARG(dst),
874 MAC_PR_ARG(next_hop))
875);
876
Henning Rogge66be7d22014-09-12 08:58:49 +0200877TRACE_EVENT(rdev_get_mpp,
878 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
879 u8 *dst, u8 *mpp),
880 TP_ARGS(wiphy, netdev, dst, mpp),
881 TP_STRUCT__entry(
882 WIPHY_ENTRY
883 NETDEV_ENTRY
884 MAC_ENTRY(dst)
885 MAC_ENTRY(mpp)
886 ),
887 TP_fast_assign(
888 WIPHY_ASSIGN;
889 NETDEV_ASSIGN;
890 MAC_ASSIGN(dst, dst);
891 MAC_ASSIGN(mpp, mpp);
892 ),
893 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", destination: " MAC_PR_FMT
894 ", mpp: " MAC_PR_FMT, WIPHY_PR_ARG, NETDEV_PR_ARG,
895 MAC_PR_ARG(dst), MAC_PR_ARG(mpp))
896);
897
898TRACE_EVENT(rdev_dump_mpp,
899 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx,
900 u8 *dst, u8 *mpp),
901 TP_ARGS(wiphy, netdev, idx, mpp, dst),
902 TP_STRUCT__entry(
903 WIPHY_ENTRY
904 NETDEV_ENTRY
905 MAC_ENTRY(dst)
906 MAC_ENTRY(mpp)
907 __field(int, idx)
908 ),
909 TP_fast_assign(
910 WIPHY_ASSIGN;
911 NETDEV_ASSIGN;
912 MAC_ASSIGN(dst, dst);
913 MAC_ASSIGN(mpp, mpp);
914 __entry->idx = idx;
915 ),
916 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d, destination: "
917 MAC_PR_FMT ", mpp: " MAC_PR_FMT,
918 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx, MAC_PR_ARG(dst),
919 MAC_PR_ARG(mpp))
920);
921
Beni Lev14e8a3c2012-07-31 18:48:27 +0300922TRACE_EVENT(rdev_return_int_mpath_info,
923 TP_PROTO(struct wiphy *wiphy, int ret, struct mpath_info *pinfo),
924 TP_ARGS(wiphy, ret, pinfo),
925 TP_STRUCT__entry(
926 WIPHY_ENTRY
927 __field(int, ret)
928 __field(int, generation)
929 __field(u32, filled)
930 __field(u32, frame_qlen)
931 __field(u32, sn)
932 __field(u32, metric)
933 __field(u32, exptime)
934 __field(u32, discovery_timeout)
935 __field(u8, discovery_retries)
936 __field(u8, flags)
937 ),
938 TP_fast_assign(
939 WIPHY_ASSIGN;
940 __entry->ret = ret;
941 __entry->generation = pinfo->generation;
942 __entry->filled = pinfo->filled;
943 __entry->frame_qlen = pinfo->frame_qlen;
944 __entry->sn = pinfo->sn;
945 __entry->metric = pinfo->metric;
946 __entry->exptime = pinfo->exptime;
947 __entry->discovery_timeout = pinfo->discovery_timeout;
948 __entry->discovery_retries = pinfo->discovery_retries;
949 __entry->flags = pinfo->flags;
950 ),
951 TP_printk(WIPHY_PR_FMT ", returned %d. mpath info - generation: %d, "
952 "filled: %u, frame qlen: %u, sn: %u, metric: %u, exptime: %u,"
953 " discovery timeout: %u, discovery retries: %u, flags: %u",
954 WIPHY_PR_ARG, __entry->ret, __entry->generation,
955 __entry->filled, __entry->frame_qlen, __entry->sn,
956 __entry->metric, __entry->exptime, __entry->discovery_timeout,
957 __entry->discovery_retries, __entry->flags)
958);
959
960TRACE_EVENT(rdev_return_int_mesh_config,
961 TP_PROTO(struct wiphy *wiphy, int ret, struct mesh_config *conf),
962 TP_ARGS(wiphy, ret, conf),
963 TP_STRUCT__entry(
964 WIPHY_ENTRY
965 MESH_CFG_ENTRY
966 __field(int, ret)
967 ),
968 TP_fast_assign(
969 WIPHY_ASSIGN;
970 MESH_CFG_ASSIGN;
971 __entry->ret = ret;
972 ),
973 TP_printk(WIPHY_PR_FMT ", returned: %d",
974 WIPHY_PR_ARG, __entry->ret)
975);
976
977TRACE_EVENT(rdev_update_mesh_config,
978 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u32 mask,
979 const struct mesh_config *conf),
980 TP_ARGS(wiphy, netdev, mask, conf),
981 TP_STRUCT__entry(
982 WIPHY_ENTRY
983 NETDEV_ENTRY
984 MESH_CFG_ENTRY
985 __field(u32, mask)
986 ),
987 TP_fast_assign(
988 WIPHY_ASSIGN;
989 NETDEV_ASSIGN;
990 MESH_CFG_ASSIGN;
991 __entry->mask = mask;
992 ),
Johannes Bergec816082012-11-16 17:22:28 +0100993 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", mask: %u",
Beni Lev14e8a3c2012-07-31 18:48:27 +0300994 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->mask)
995);
996
997TRACE_EVENT(rdev_join_mesh,
998 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
999 const struct mesh_config *conf,
1000 const struct mesh_setup *setup),
1001 TP_ARGS(wiphy, netdev, conf, setup),
1002 TP_STRUCT__entry(
1003 WIPHY_ENTRY
1004 NETDEV_ENTRY
1005 MESH_CFG_ENTRY
1006 ),
1007 TP_fast_assign(
1008 WIPHY_ASSIGN;
1009 NETDEV_ASSIGN;
1010 MESH_CFG_ASSIGN;
1011 ),
Johannes Bergec816082012-11-16 17:22:28 +01001012 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001013 WIPHY_PR_ARG, NETDEV_PR_ARG)
1014);
1015
1016TRACE_EVENT(rdev_change_bss,
1017 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1018 struct bss_parameters *params),
1019 TP_ARGS(wiphy, netdev, params),
1020 TP_STRUCT__entry(
1021 WIPHY_ENTRY
1022 NETDEV_ENTRY
1023 __field(int, use_cts_prot)
1024 __field(int, use_short_preamble)
1025 __field(int, use_short_slot_time)
1026 __field(int, ap_isolate)
1027 __field(int, ht_opmode)
1028 ),
1029 TP_fast_assign(
1030 WIPHY_ASSIGN;
1031 NETDEV_ASSIGN;
1032 __entry->use_cts_prot = params->use_cts_prot;
1033 __entry->use_short_preamble = params->use_short_preamble;
1034 __entry->use_short_slot_time = params->use_short_slot_time;
1035 __entry->ap_isolate = params->ap_isolate;
1036 __entry->ht_opmode = params->ht_opmode;
1037 ),
Johannes Bergec816082012-11-16 17:22:28 +01001038 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", use cts prot: %d, "
Beni Lev14e8a3c2012-07-31 18:48:27 +03001039 "use short preamble: %d, use short slot time: %d, "
1040 "ap isolate: %d, ht opmode: %d",
1041 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->use_cts_prot,
1042 __entry->use_short_preamble, __entry->use_short_slot_time,
1043 __entry->ap_isolate, __entry->ht_opmode)
1044);
1045
1046TRACE_EVENT(rdev_set_txq_params,
1047 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1048 struct ieee80211_txq_params *params),
1049 TP_ARGS(wiphy, netdev, params),
1050 TP_STRUCT__entry(
1051 WIPHY_ENTRY
1052 NETDEV_ENTRY
1053 __field(enum nl80211_ac, ac)
1054 __field(u16, txop)
1055 __field(u16, cwmin)
1056 __field(u16, cwmax)
1057 __field(u8, aifs)
1058 ),
1059 TP_fast_assign(
1060 WIPHY_ASSIGN;
1061 NETDEV_ASSIGN;
1062 __entry->ac = params->ac;
1063 __entry->txop = params->txop;
1064 __entry->cwmin = params->cwmin;
1065 __entry->cwmax = params->cwmax;
1066 __entry->aifs = params->aifs;
1067 ),
Johannes Bergec816082012-11-16 17:22:28 +01001068 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", ac: %d, txop: %u, cwmin: %u, cwmax: %u, aifs: %u",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001069 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ac, __entry->txop,
1070 __entry->cwmin, __entry->cwmax, __entry->aifs)
1071);
1072
1073TRACE_EVENT(rdev_libertas_set_mesh_channel,
1074 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1075 struct ieee80211_channel *chan),
1076 TP_ARGS(wiphy, netdev, chan),
1077 TP_STRUCT__entry(
1078 WIPHY_ENTRY
1079 NETDEV_ENTRY
1080 CHAN_ENTRY
1081 ),
1082 TP_fast_assign(
1083 WIPHY_ASSIGN;
1084 NETDEV_ASSIGN;
1085 CHAN_ASSIGN(chan);
1086 ),
Johannes Bergec816082012-11-16 17:22:28 +01001087 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_PR_FMT, WIPHY_PR_ARG,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001088 NETDEV_PR_ARG, CHAN_PR_ARG)
1089);
1090
1091TRACE_EVENT(rdev_set_monitor_channel,
Johannes Berg683b6d32012-11-08 21:25:48 +01001092 TP_PROTO(struct wiphy *wiphy,
1093 struct cfg80211_chan_def *chandef),
1094 TP_ARGS(wiphy, chandef),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001095 TP_STRUCT__entry(
1096 WIPHY_ENTRY
Johannes Berg683b6d32012-11-08 21:25:48 +01001097 CHAN_DEF_ENTRY
Beni Lev14e8a3c2012-07-31 18:48:27 +03001098 ),
1099 TP_fast_assign(
1100 WIPHY_ASSIGN;
Johannes Berg683b6d32012-11-08 21:25:48 +01001101 CHAN_DEF_ASSIGN(chandef);
Beni Lev14e8a3c2012-07-31 18:48:27 +03001102 ),
Johannes Bergec816082012-11-16 17:22:28 +01001103 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
Johannes Berg683b6d32012-11-08 21:25:48 +01001104 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001105);
1106
1107TRACE_EVENT(rdev_auth,
1108 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1109 struct cfg80211_auth_request *req),
1110 TP_ARGS(wiphy, netdev, req),
1111 TP_STRUCT__entry(
1112 WIPHY_ENTRY
1113 NETDEV_ENTRY
1114 MAC_ENTRY(bssid)
1115 __field(enum nl80211_auth_type, auth_type)
1116 ),
1117 TP_fast_assign(
1118 WIPHY_ASSIGN;
1119 NETDEV_ASSIGN;
1120 if (req->bss)
1121 MAC_ASSIGN(bssid, req->bss->bssid);
1122 else
Joe Perchesd2beae12015-03-02 19:54:58 -08001123 eth_zero_addr(__entry->bssid);
Beni Lev14e8a3c2012-07-31 18:48:27 +03001124 __entry->auth_type = req->auth_type;
1125 ),
Johannes Bergec816082012-11-16 17:22:28 +01001126 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", auth type: %d, bssid: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001127 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->auth_type,
1128 MAC_PR_ARG(bssid))
1129);
1130
1131TRACE_EVENT(rdev_assoc,
1132 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1133 struct cfg80211_assoc_request *req),
1134 TP_ARGS(wiphy, netdev, req),
1135 TP_STRUCT__entry(
1136 WIPHY_ENTRY
1137 NETDEV_ENTRY
1138 MAC_ENTRY(bssid)
1139 MAC_ENTRY(prev_bssid)
1140 __field(bool, use_mfp)
1141 __field(u32, flags)
1142 ),
1143 TP_fast_assign(
1144 WIPHY_ASSIGN;
1145 NETDEV_ASSIGN;
1146 if (req->bss)
1147 MAC_ASSIGN(bssid, req->bss->bssid);
1148 else
Joe Perchesd2beae12015-03-02 19:54:58 -08001149 eth_zero_addr(__entry->bssid);
Beni Lev14e8a3c2012-07-31 18:48:27 +03001150 MAC_ASSIGN(prev_bssid, req->prev_bssid);
1151 __entry->use_mfp = req->use_mfp;
1152 __entry->flags = req->flags;
1153 ),
Johannes Bergec816082012-11-16 17:22:28 +01001154 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT
Beni Lev14e8a3c2012-07-31 18:48:27 +03001155 ", previous bssid: " MAC_PR_FMT ", use mfp: %s, flags: %u",
1156 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid),
1157 MAC_PR_ARG(prev_bssid), BOOL_TO_STR(__entry->use_mfp),
1158 __entry->flags)
1159);
1160
1161TRACE_EVENT(rdev_deauth,
1162 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1163 struct cfg80211_deauth_request *req),
1164 TP_ARGS(wiphy, netdev, req),
1165 TP_STRUCT__entry(
1166 WIPHY_ENTRY
1167 NETDEV_ENTRY
1168 MAC_ENTRY(bssid)
1169 __field(u16, reason_code)
1170 ),
1171 TP_fast_assign(
1172 WIPHY_ASSIGN;
1173 NETDEV_ASSIGN;
1174 MAC_ASSIGN(bssid, req->bssid);
1175 __entry->reason_code = req->reason_code;
1176 ),
Johannes Bergec816082012-11-16 17:22:28 +01001177 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT ", reason: %u",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001178 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid),
1179 __entry->reason_code)
1180);
1181
1182TRACE_EVENT(rdev_disassoc,
1183 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1184 struct cfg80211_disassoc_request *req),
1185 TP_ARGS(wiphy, netdev, req),
1186 TP_STRUCT__entry(
1187 WIPHY_ENTRY
1188 NETDEV_ENTRY
1189 MAC_ENTRY(bssid)
1190 __field(u16, reason_code)
1191 __field(bool, local_state_change)
1192 ),
1193 TP_fast_assign(
1194 WIPHY_ASSIGN;
1195 NETDEV_ASSIGN;
1196 if (req->bss)
1197 MAC_ASSIGN(bssid, req->bss->bssid);
1198 else
Joe Perchesd2beae12015-03-02 19:54:58 -08001199 eth_zero_addr(__entry->bssid);
Beni Lev14e8a3c2012-07-31 18:48:27 +03001200 __entry->reason_code = req->reason_code;
1201 __entry->local_state_change = req->local_state_change;
1202 ),
Johannes Bergec816082012-11-16 17:22:28 +01001203 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT
Beni Lev14e8a3c2012-07-31 18:48:27 +03001204 ", reason: %u, local state change: %s",
1205 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid),
1206 __entry->reason_code,
1207 BOOL_TO_STR(__entry->local_state_change))
1208);
1209
1210TRACE_EVENT(rdev_mgmt_tx_cancel_wait,
1211 TP_PROTO(struct wiphy *wiphy,
1212 struct wireless_dev *wdev, u64 cookie),
1213 TP_ARGS(wiphy, wdev, cookie),
1214 TP_STRUCT__entry(
1215 WIPHY_ENTRY
1216 WDEV_ENTRY
1217 __field(u64, cookie)
1218 ),
1219 TP_fast_assign(
1220 WIPHY_ASSIGN;
1221 WDEV_ASSIGN;
1222 __entry->cookie = cookie;
1223 ),
Johannes Bergec816082012-11-16 17:22:28 +01001224 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %llu ",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001225 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
1226);
1227
1228TRACE_EVENT(rdev_set_power_mgmt,
1229 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1230 bool enabled, int timeout),
1231 TP_ARGS(wiphy, netdev, enabled, timeout),
1232 TP_STRUCT__entry(
1233 WIPHY_ENTRY
1234 NETDEV_ENTRY
1235 __field(bool, enabled)
1236 __field(int, timeout)
1237 ),
1238 TP_fast_assign(
1239 WIPHY_ASSIGN;
1240 NETDEV_ASSIGN;
1241 __entry->enabled = enabled;
1242 __entry->timeout = timeout;
1243 ),
Johannes Bergec816082012-11-16 17:22:28 +01001244 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", %senabled, timeout: %d ",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001245 WIPHY_PR_ARG, NETDEV_PR_ARG,
1246 __entry->enabled ? "" : "not ", __entry->timeout)
1247);
1248
1249TRACE_EVENT(rdev_connect,
1250 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1251 struct cfg80211_connect_params *sme),
1252 TP_ARGS(wiphy, netdev, sme),
1253 TP_STRUCT__entry(
1254 WIPHY_ENTRY
1255 NETDEV_ENTRY
1256 MAC_ENTRY(bssid)
1257 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
1258 __field(enum nl80211_auth_type, auth_type)
1259 __field(bool, privacy)
1260 __field(u32, wpa_versions)
1261 __field(u32, flags)
Jouni Malinenba6fbac2016-03-29 13:53:27 +03001262 MAC_ENTRY(prev_bssid)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001263 ),
1264 TP_fast_assign(
1265 WIPHY_ASSIGN;
1266 NETDEV_ASSIGN;
1267 MAC_ASSIGN(bssid, sme->bssid);
1268 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
1269 memcpy(__entry->ssid, sme->ssid, sme->ssid_len);
1270 __entry->auth_type = sme->auth_type;
1271 __entry->privacy = sme->privacy;
1272 __entry->wpa_versions = sme->crypto.wpa_versions;
1273 __entry->flags = sme->flags;
Jouni Malinenba6fbac2016-03-29 13:53:27 +03001274 MAC_ASSIGN(prev_bssid, sme->prev_bssid);
Beni Lev14e8a3c2012-07-31 18:48:27 +03001275 ),
Johannes Bergec816082012-11-16 17:22:28 +01001276 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT
Beni Lev14e8a3c2012-07-31 18:48:27 +03001277 ", ssid: %s, auth type: %d, privacy: %s, wpa versions: %u, "
Jouni Malinenba6fbac2016-03-29 13:53:27 +03001278 "flags: %u, previous bssid: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001279 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid), __entry->ssid,
1280 __entry->auth_type, BOOL_TO_STR(__entry->privacy),
Jouni Malinenba6fbac2016-03-29 13:53:27 +03001281 __entry->wpa_versions, __entry->flags, MAC_PR_ARG(prev_bssid))
Beni Lev14e8a3c2012-07-31 18:48:27 +03001282);
1283
1284TRACE_EVENT(rdev_set_cqm_rssi_config,
1285 TP_PROTO(struct wiphy *wiphy,
1286 struct net_device *netdev, s32 rssi_thold,
1287 u32 rssi_hyst),
1288 TP_ARGS(wiphy, netdev, rssi_thold, rssi_hyst),
1289 TP_STRUCT__entry(
1290 WIPHY_ENTRY
1291 NETDEV_ENTRY
1292 __field(s32, rssi_thold)
1293 __field(u32, rssi_hyst)
1294 ),
1295 TP_fast_assign(
1296 WIPHY_ASSIGN;
1297 NETDEV_ASSIGN;
1298 __entry->rssi_thold = rssi_thold;
1299 __entry->rssi_hyst = rssi_hyst;
1300 ),
Johannes Bergec816082012-11-16 17:22:28 +01001301 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT
Beni Lev14e8a3c2012-07-31 18:48:27 +03001302 ", rssi_thold: %d, rssi_hyst: %u ",
1303 WIPHY_PR_ARG, NETDEV_PR_ARG,
1304 __entry->rssi_thold, __entry->rssi_hyst)
1305);
1306
1307TRACE_EVENT(rdev_set_cqm_txe_config,
1308 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, u32 rate,
1309 u32 pkts, u32 intvl),
1310 TP_ARGS(wiphy, netdev, rate, pkts, intvl),
1311 TP_STRUCT__entry(
1312 WIPHY_ENTRY
1313 NETDEV_ENTRY
1314 __field(u32, rate)
1315 __field(u32, pkts)
1316 __field(u32, intvl)
1317 ),
1318 TP_fast_assign(
1319 WIPHY_ASSIGN;
1320 NETDEV_ASSIGN;
1321 __entry->rate = rate;
1322 __entry->pkts = pkts;
1323 __entry->intvl = intvl;
1324 ),
Johannes Bergec816082012-11-16 17:22:28 +01001325 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", rate: %u, packets: %u, interval: %u",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001326 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->rate, __entry->pkts,
1327 __entry->intvl)
1328);
1329
1330TRACE_EVENT(rdev_disconnect,
1331 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1332 u16 reason_code),
1333 TP_ARGS(wiphy, netdev, reason_code),
1334 TP_STRUCT__entry(
1335 WIPHY_ENTRY
1336 NETDEV_ENTRY
1337 __field(u16, reason_code)
1338 ),
1339 TP_fast_assign(
1340 WIPHY_ASSIGN;
1341 NETDEV_ASSIGN;
1342 __entry->reason_code = reason_code;
1343 ),
Johannes Bergec816082012-11-16 17:22:28 +01001344 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", reason code: %u", WIPHY_PR_ARG,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001345 NETDEV_PR_ARG, __entry->reason_code)
1346);
1347
1348TRACE_EVENT(rdev_join_ibss,
1349 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1350 struct cfg80211_ibss_params *params),
1351 TP_ARGS(wiphy, netdev, params),
1352 TP_STRUCT__entry(
1353 WIPHY_ENTRY
1354 NETDEV_ENTRY
1355 MAC_ENTRY(bssid)
1356 __array(char, ssid, IEEE80211_MAX_SSID_LEN + 1)
1357 ),
1358 TP_fast_assign(
1359 WIPHY_ASSIGN;
1360 NETDEV_ASSIGN;
1361 MAC_ASSIGN(bssid, params->bssid);
1362 memset(__entry->ssid, 0, IEEE80211_MAX_SSID_LEN + 1);
1363 memcpy(__entry->ssid, params->ssid, params->ssid_len);
1364 ),
Johannes Bergec816082012-11-16 17:22:28 +01001365 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT ", ssid: %s",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001366 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid), __entry->ssid)
1367);
1368
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001369TRACE_EVENT(rdev_join_ocb,
1370 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1371 const struct ocb_setup *setup),
1372 TP_ARGS(wiphy, netdev, setup),
1373 TP_STRUCT__entry(
1374 WIPHY_ENTRY
1375 NETDEV_ENTRY
1376 ),
1377 TP_fast_assign(
1378 WIPHY_ASSIGN;
1379 NETDEV_ASSIGN;
1380 ),
1381 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
1382 WIPHY_PR_ARG, NETDEV_PR_ARG)
1383);
1384
Beni Lev14e8a3c2012-07-31 18:48:27 +03001385TRACE_EVENT(rdev_set_wiphy_params,
1386 TP_PROTO(struct wiphy *wiphy, u32 changed),
1387 TP_ARGS(wiphy, changed),
1388 TP_STRUCT__entry(
1389 WIPHY_ENTRY
1390 __field(u32, changed)
1391 ),
1392 TP_fast_assign(
1393 WIPHY_ASSIGN;
1394 __entry->changed = changed;
1395 ),
1396 TP_printk(WIPHY_PR_FMT ", changed: %u",
1397 WIPHY_PR_ARG, __entry->changed)
1398);
1399
Johannes Bergc8442112012-10-24 10:17:18 +02001400DEFINE_EVENT(wiphy_wdev_evt, rdev_get_tx_power,
1401 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1402 TP_ARGS(wiphy, wdev)
1403);
1404
Beni Lev14e8a3c2012-07-31 18:48:27 +03001405TRACE_EVENT(rdev_set_tx_power,
Johannes Bergc8442112012-10-24 10:17:18 +02001406 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1407 enum nl80211_tx_power_setting type, int mbm),
1408 TP_ARGS(wiphy, wdev, type, mbm),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001409 TP_STRUCT__entry(
1410 WIPHY_ENTRY
Johannes Bergc8442112012-10-24 10:17:18 +02001411 WDEV_ENTRY
Beni Lev14e8a3c2012-07-31 18:48:27 +03001412 __field(enum nl80211_tx_power_setting, type)
1413 __field(int, mbm)
1414 ),
1415 TP_fast_assign(
1416 WIPHY_ASSIGN;
Johannes Bergc8442112012-10-24 10:17:18 +02001417 WDEV_ASSIGN;
Beni Lev14e8a3c2012-07-31 18:48:27 +03001418 __entry->type = type;
1419 __entry->mbm = mbm;
1420 ),
Johannes Bergec816082012-11-16 17:22:28 +01001421 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", type: %u, mbm: %d",
Johannes Bergc8442112012-10-24 10:17:18 +02001422 WIPHY_PR_ARG, WDEV_PR_ARG,__entry->type, __entry->mbm)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001423);
1424
1425TRACE_EVENT(rdev_return_int_int,
1426 TP_PROTO(struct wiphy *wiphy, int func_ret, int func_fill),
1427 TP_ARGS(wiphy, func_ret, func_fill),
1428 TP_STRUCT__entry(
1429 WIPHY_ENTRY
1430 __field(int, func_ret)
1431 __field(int, func_fill)
1432 ),
1433 TP_fast_assign(
1434 WIPHY_ASSIGN;
1435 __entry->func_ret = func_ret;
1436 __entry->func_fill = func_fill;
1437 ),
1438 TP_printk(WIPHY_PR_FMT ", function returns: %d, function filled: %d",
1439 WIPHY_PR_ARG, __entry->func_ret, __entry->func_fill)
1440);
1441
1442#ifdef CONFIG_NL80211_TESTMODE
1443TRACE_EVENT(rdev_testmode_cmd,
David Spinadelfc73f112013-07-31 18:04:15 +03001444 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1445 TP_ARGS(wiphy, wdev),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001446 TP_STRUCT__entry(
1447 WIPHY_ENTRY
David Spinadelfc73f112013-07-31 18:04:15 +03001448 WDEV_ENTRY
Beni Lev14e8a3c2012-07-31 18:48:27 +03001449 ),
1450 TP_fast_assign(
1451 WIPHY_ASSIGN;
David Spinadelfc73f112013-07-31 18:04:15 +03001452 WDEV_ASSIGN;
Beni Lev14e8a3c2012-07-31 18:48:27 +03001453 ),
David Spinadelfc73f112013-07-31 18:04:15 +03001454 TP_printk(WIPHY_PR_FMT WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001455);
1456
1457TRACE_EVENT(rdev_testmode_dump,
1458 TP_PROTO(struct wiphy *wiphy),
1459 TP_ARGS(wiphy),
1460 TP_STRUCT__entry(
1461 WIPHY_ENTRY
1462 ),
1463 TP_fast_assign(
1464 WIPHY_ASSIGN;
1465 ),
1466 TP_printk(WIPHY_PR_FMT, WIPHY_PR_ARG)
1467);
1468#endif /* CONFIG_NL80211_TESTMODE */
1469
1470TRACE_EVENT(rdev_set_bitrate_mask,
1471 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1472 const u8 *peer, const struct cfg80211_bitrate_mask *mask),
1473 TP_ARGS(wiphy, netdev, peer, mask),
1474 TP_STRUCT__entry(
1475 WIPHY_ENTRY
1476 NETDEV_ENTRY
1477 MAC_ENTRY(peer)
1478 ),
1479 TP_fast_assign(
1480 WIPHY_ASSIGN;
1481 NETDEV_ASSIGN;
1482 MAC_ASSIGN(peer, peer);
1483 ),
Johannes Bergec816082012-11-16 17:22:28 +01001484 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001485 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer))
1486);
1487
1488TRACE_EVENT(rdev_mgmt_frame_register,
1489 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1490 u16 frame_type, bool reg),
1491 TP_ARGS(wiphy, wdev, frame_type, reg),
1492 TP_STRUCT__entry(
1493 WIPHY_ENTRY
1494 WDEV_ENTRY
1495 __field(u16, frame_type)
1496 __field(bool, reg)
1497 ),
1498 TP_fast_assign(
1499 WIPHY_ASSIGN;
1500 WDEV_ASSIGN;
1501 __entry->frame_type = frame_type;
1502 __entry->reg = reg;
1503 ),
Johannes Bergec816082012-11-16 17:22:28 +01001504 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", frame_type: 0x%.2x, reg: %s ",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001505 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->frame_type,
1506 __entry->reg ? "true" : "false")
1507);
1508
1509TRACE_EVENT(rdev_return_int_tx_rx,
1510 TP_PROTO(struct wiphy *wiphy, int ret, u32 tx, u32 rx),
1511 TP_ARGS(wiphy, ret, tx, rx),
1512 TP_STRUCT__entry(
1513 WIPHY_ENTRY
1514 __field(int, ret)
1515 __field(u32, tx)
1516 __field(u32, rx)
1517 ),
1518 TP_fast_assign(
1519 WIPHY_ASSIGN;
1520 __entry->ret = ret;
1521 __entry->tx = tx;
1522 __entry->rx = rx;
1523 ),
1524 TP_printk(WIPHY_PR_FMT ", returned %d, tx: %u, rx: %u",
1525 WIPHY_PR_ARG, __entry->ret, __entry->tx, __entry->rx)
1526);
1527
1528TRACE_EVENT(rdev_return_void_tx_rx,
1529 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 tx_max,
1530 u32 rx, u32 rx_max),
1531 TP_ARGS(wiphy, tx, tx_max, rx, rx_max),
1532 TP_STRUCT__entry(
1533 WIPHY_ENTRY
1534 __field(u32, tx)
1535 __field(u32, tx_max)
1536 __field(u32, rx)
1537 __field(u32, rx_max)
1538 ),
1539 TP_fast_assign(
1540 WIPHY_ASSIGN;
1541 __entry->tx = tx;
1542 __entry->tx_max = tx_max;
1543 __entry->rx = rx;
1544 __entry->rx_max = rx_max;
1545 ),
1546 TP_printk(WIPHY_PR_FMT ", tx: %u, tx_max: %u, rx: %u, rx_max: %u ",
1547 WIPHY_PR_ARG, __entry->tx, __entry->tx_max, __entry->rx,
1548 __entry->rx_max)
1549);
1550
1551DECLARE_EVENT_CLASS(tx_rx_evt,
1552 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 rx),
1553 TP_ARGS(wiphy, rx, tx),
1554 TP_STRUCT__entry(
1555 WIPHY_ENTRY
1556 __field(u32, tx)
1557 __field(u32, rx)
1558 ),
1559 TP_fast_assign(
1560 WIPHY_ASSIGN;
1561 __entry->tx = tx;
1562 __entry->rx = rx;
1563 ),
1564 TP_printk(WIPHY_PR_FMT ", tx: %u, rx: %u ",
1565 WIPHY_PR_ARG, __entry->tx, __entry->rx)
1566);
1567
Beni Lev14e8a3c2012-07-31 18:48:27 +03001568DEFINE_EVENT(tx_rx_evt, rdev_set_antenna,
1569 TP_PROTO(struct wiphy *wiphy, u32 tx, u32 rx),
1570 TP_ARGS(wiphy, rx, tx)
1571);
1572
1573TRACE_EVENT(rdev_sched_scan_start,
1574 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1575 struct cfg80211_sched_scan_request *request),
1576 TP_ARGS(wiphy, netdev, request),
1577 TP_STRUCT__entry(
1578 WIPHY_ENTRY
1579 NETDEV_ENTRY
1580 ),
1581 TP_fast_assign(
1582 WIPHY_ASSIGN;
1583 NETDEV_ASSIGN;
1584 ),
Johannes Bergec816082012-11-16 17:22:28 +01001585 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001586 WIPHY_PR_ARG, NETDEV_PR_ARG)
1587);
1588
1589TRACE_EVENT(rdev_tdls_mgmt,
1590 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1591 u8 *peer, u8 action_code, u8 dialog_token,
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05301592 u16 status_code, u32 peer_capability,
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03001593 bool initiator, const u8 *buf, size_t len),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001594 TP_ARGS(wiphy, netdev, peer, action_code, dialog_token, status_code,
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03001595 peer_capability, initiator, buf, len),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001596 TP_STRUCT__entry(
1597 WIPHY_ENTRY
1598 NETDEV_ENTRY
1599 MAC_ENTRY(peer)
1600 __field(u8, action_code)
1601 __field(u8, dialog_token)
1602 __field(u16, status_code)
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05301603 __field(u32, peer_capability)
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03001604 __field(bool, initiator)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001605 __dynamic_array(u8, buf, len)
1606 ),
1607 TP_fast_assign(
1608 WIPHY_ASSIGN;
1609 NETDEV_ASSIGN;
1610 MAC_ASSIGN(peer, peer);
1611 __entry->action_code = action_code;
1612 __entry->dialog_token = dialog_token;
1613 __entry->status_code = status_code;
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05301614 __entry->peer_capability = peer_capability;
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03001615 __entry->initiator = initiator;
Beni Lev14e8a3c2012-07-31 18:48:27 +03001616 memcpy(__get_dynamic_array(buf), buf, len);
1617 ),
Johannes Bergec816082012-11-16 17:22:28 +01001618 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", action_code: %u, "
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03001619 "dialog_token: %u, status_code: %u, peer_capability: %u "
1620 "initiator: %s buf: %#.2x ",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001621 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer),
1622 __entry->action_code, __entry->dialog_token,
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05301623 __entry->status_code, __entry->peer_capability,
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03001624 BOOL_TO_STR(__entry->initiator),
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05301625 ((u8 *)__get_dynamic_array(buf))[0])
Beni Lev14e8a3c2012-07-31 18:48:27 +03001626);
1627
1628TRACE_EVENT(rdev_dump_survey,
1629 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int idx),
1630 TP_ARGS(wiphy, netdev, idx),
1631 TP_STRUCT__entry(
1632 WIPHY_ENTRY
1633 NETDEV_ENTRY
1634 __field(int, idx)
1635 ),
1636 TP_fast_assign(
1637 WIPHY_ASSIGN;
1638 NETDEV_ASSIGN;
1639 __entry->idx = idx;
1640 ),
Johannes Bergec816082012-11-16 17:22:28 +01001641 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", index: %d",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001642 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->idx)
1643);
1644
1645TRACE_EVENT(rdev_return_int_survey_info,
1646 TP_PROTO(struct wiphy *wiphy, int ret, struct survey_info *info),
1647 TP_ARGS(wiphy, ret, info),
1648 TP_STRUCT__entry(
1649 WIPHY_ENTRY
1650 CHAN_ENTRY
1651 __field(int, ret)
Johannes Berg4ed20be2014-11-14 16:35:34 +01001652 __field(u64, time)
1653 __field(u64, time_busy)
1654 __field(u64, time_ext_busy)
1655 __field(u64, time_rx)
1656 __field(u64, time_tx)
Johannes Berg052536a2014-11-14 16:44:11 +01001657 __field(u64, time_scan)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001658 __field(u32, filled)
1659 __field(s8, noise)
1660 ),
1661 TP_fast_assign(
1662 WIPHY_ASSIGN;
1663 CHAN_ASSIGN(info->channel);
1664 __entry->ret = ret;
Johannes Berg4ed20be2014-11-14 16:35:34 +01001665 __entry->time = info->time;
1666 __entry->time_busy = info->time_busy;
1667 __entry->time_ext_busy = info->time_ext_busy;
1668 __entry->time_rx = info->time_rx;
1669 __entry->time_tx = info->time_tx;
Johannes Berg052536a2014-11-14 16:44:11 +01001670 __entry->time_scan = info->time_scan;
Beni Lev14e8a3c2012-07-31 18:48:27 +03001671 __entry->filled = info->filled;
1672 __entry->noise = info->noise;
1673 ),
1674 TP_printk(WIPHY_PR_FMT ", returned: %d, " CHAN_PR_FMT
1675 ", channel time: %llu, channel time busy: %llu, "
1676 "channel time extension busy: %llu, channel time rx: %llu, "
Johannes Berg052536a2014-11-14 16:44:11 +01001677 "channel time tx: %llu, scan time: %llu, filled: %u, noise: %d",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001678 WIPHY_PR_ARG, __entry->ret, CHAN_PR_ARG,
Johannes Berg4ed20be2014-11-14 16:35:34 +01001679 __entry->time, __entry->time_busy,
1680 __entry->time_ext_busy, __entry->time_rx,
Johannes Berg052536a2014-11-14 16:44:11 +01001681 __entry->time_tx, __entry->time_scan,
1682 __entry->filled, __entry->noise)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001683);
1684
1685TRACE_EVENT(rdev_tdls_oper,
1686 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1687 u8 *peer, enum nl80211_tdls_operation oper),
1688 TP_ARGS(wiphy, netdev, peer, oper),
1689 TP_STRUCT__entry(
1690 WIPHY_ENTRY
1691 NETDEV_ENTRY
1692 MAC_ENTRY(peer)
1693 __field(enum nl80211_tdls_operation, oper)
1694 ),
1695 TP_fast_assign(
1696 WIPHY_ASSIGN;
1697 NETDEV_ASSIGN;
1698 MAC_ASSIGN(peer, peer);
1699 __entry->oper = oper;
1700 ),
Johannes Bergec816082012-11-16 17:22:28 +01001701 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", oper: %d",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001702 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->oper)
1703);
1704
1705DECLARE_EVENT_CLASS(rdev_pmksa,
1706 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1707 struct cfg80211_pmksa *pmksa),
1708 TP_ARGS(wiphy, netdev, pmksa),
1709 TP_STRUCT__entry(
1710 WIPHY_ENTRY
1711 NETDEV_ENTRY
1712 MAC_ENTRY(bssid)
1713 ),
1714 TP_fast_assign(
1715 WIPHY_ASSIGN;
1716 NETDEV_ASSIGN;
1717 MAC_ASSIGN(bssid, pmksa->bssid);
1718 ),
Johannes Bergec816082012-11-16 17:22:28 +01001719 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", bssid: " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001720 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(bssid))
1721);
1722
1723TRACE_EVENT(rdev_probe_client,
1724 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1725 const u8 *peer),
1726 TP_ARGS(wiphy, netdev, peer),
1727 TP_STRUCT__entry(
1728 WIPHY_ENTRY
1729 NETDEV_ENTRY
1730 MAC_ENTRY(peer)
1731 ),
1732 TP_fast_assign(
1733 WIPHY_ASSIGN;
1734 NETDEV_ASSIGN;
1735 MAC_ASSIGN(peer, peer);
1736 ),
Johannes Bergec816082012-11-16 17:22:28 +01001737 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001738 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer))
1739);
1740
1741DEFINE_EVENT(rdev_pmksa, rdev_set_pmksa,
1742 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1743 struct cfg80211_pmksa *pmksa),
1744 TP_ARGS(wiphy, netdev, pmksa)
1745);
1746
1747DEFINE_EVENT(rdev_pmksa, rdev_del_pmksa,
1748 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1749 struct cfg80211_pmksa *pmksa),
1750 TP_ARGS(wiphy, netdev, pmksa)
1751);
1752
1753TRACE_EVENT(rdev_remain_on_channel,
1754 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1755 struct ieee80211_channel *chan,
Johannes Berg42d97a52012-11-08 18:31:02 +01001756 unsigned int duration),
1757 TP_ARGS(wiphy, wdev, chan, duration),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001758 TP_STRUCT__entry(
1759 WIPHY_ENTRY
1760 WDEV_ENTRY
1761 CHAN_ENTRY
Beni Lev14e8a3c2012-07-31 18:48:27 +03001762 __field(unsigned int, duration)
1763 ),
1764 TP_fast_assign(
1765 WIPHY_ASSIGN;
1766 WDEV_ASSIGN;
1767 CHAN_ASSIGN(chan);
Beni Lev14e8a3c2012-07-31 18:48:27 +03001768 __entry->duration = duration;
1769 ),
Johannes Bergec816082012-11-16 17:22:28 +01001770 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", " CHAN_PR_FMT ", duration: %u",
Johannes Berg42d97a52012-11-08 18:31:02 +01001771 WIPHY_PR_ARG, WDEV_PR_ARG, CHAN_PR_ARG, __entry->duration)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001772);
1773
1774TRACE_EVENT(rdev_return_int_cookie,
1775 TP_PROTO(struct wiphy *wiphy, int ret, u64 cookie),
1776 TP_ARGS(wiphy, ret, cookie),
1777 TP_STRUCT__entry(
1778 WIPHY_ENTRY
1779 __field(int, ret)
1780 __field(u64, cookie)
1781 ),
1782 TP_fast_assign(
1783 WIPHY_ASSIGN;
1784 __entry->ret = ret;
1785 __entry->cookie = cookie;
1786 ),
1787 TP_printk(WIPHY_PR_FMT ", returned %d, cookie: %llu",
1788 WIPHY_PR_ARG, __entry->ret, __entry->cookie)
1789);
1790
1791TRACE_EVENT(rdev_cancel_remain_on_channel,
1792 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev, u64 cookie),
1793 TP_ARGS(wiphy, wdev, cookie),
1794 TP_STRUCT__entry(
1795 WIPHY_ENTRY
1796 WDEV_ENTRY
1797 __field(u64, cookie)
1798 ),
1799 TP_fast_assign(
1800 WIPHY_ASSIGN;
1801 WDEV_ASSIGN;
1802 __entry->cookie = cookie;
1803 ),
Johannes Bergec816082012-11-16 17:22:28 +01001804 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie: %llu",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001805 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
1806);
1807
1808TRACE_EVENT(rdev_mgmt_tx,
1809 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02001810 struct cfg80211_mgmt_tx_params *params),
1811 TP_ARGS(wiphy, wdev, params),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001812 TP_STRUCT__entry(
1813 WIPHY_ENTRY
1814 WDEV_ENTRY
1815 CHAN_ENTRY
1816 __field(bool, offchan)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001817 __field(unsigned int, wait)
1818 __field(bool, no_cck)
1819 __field(bool, dont_wait_for_ack)
1820 ),
1821 TP_fast_assign(
1822 WIPHY_ASSIGN;
1823 WDEV_ASSIGN;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02001824 CHAN_ASSIGN(params->chan);
1825 __entry->offchan = params->offchan;
1826 __entry->wait = params->wait;
1827 __entry->no_cck = params->no_cck;
1828 __entry->dont_wait_for_ack = params->dont_wait_for_ack;
Beni Lev14e8a3c2012-07-31 18:48:27 +03001829 ),
Johannes Bergec816082012-11-16 17:22:28 +01001830 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", " CHAN_PR_FMT ", offchan: %s,"
Johannes Berg42d97a52012-11-08 18:31:02 +01001831 " wait: %u, no cck: %s, dont wait for ack: %s",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001832 WIPHY_PR_ARG, WDEV_PR_ARG, CHAN_PR_ARG,
Johannes Berg42d97a52012-11-08 18:31:02 +01001833 BOOL_TO_STR(__entry->offchan), __entry->wait,
Beni Lev14e8a3c2012-07-31 18:48:27 +03001834 BOOL_TO_STR(__entry->no_cck),
1835 BOOL_TO_STR(__entry->dont_wait_for_ack))
1836);
1837
1838TRACE_EVENT(rdev_set_noack_map,
1839 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1840 u16 noack_map),
1841 TP_ARGS(wiphy, netdev, noack_map),
1842 TP_STRUCT__entry(
1843 WIPHY_ENTRY
1844 NETDEV_ENTRY
1845 __field(u16, noack_map)
1846 ),
1847 TP_fast_assign(
1848 WIPHY_ASSIGN;
1849 NETDEV_ASSIGN;
1850 __entry->noack_map = noack_map;
1851 ),
Johannes Bergec816082012-11-16 17:22:28 +01001852 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", noack_map: %u",
Beni Lev14e8a3c2012-07-31 18:48:27 +03001853 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->noack_map)
1854);
1855
Beni Lev14e8a3c2012-07-31 18:48:27 +03001856DEFINE_EVENT(wiphy_wdev_evt, rdev_get_channel,
1857 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1858 TP_ARGS(wiphy, wdev)
1859);
1860
Johannes Berg683b6d32012-11-08 21:25:48 +01001861TRACE_EVENT(rdev_return_chandef,
1862 TP_PROTO(struct wiphy *wiphy, int ret,
1863 struct cfg80211_chan_def *chandef),
1864 TP_ARGS(wiphy, ret, chandef),
Beni Lev14e8a3c2012-07-31 18:48:27 +03001865 TP_STRUCT__entry(
1866 WIPHY_ENTRY
Johannes Berg683b6d32012-11-08 21:25:48 +01001867 __field(int, ret)
1868 CHAN_DEF_ENTRY
Beni Lev14e8a3c2012-07-31 18:48:27 +03001869 ),
1870 TP_fast_assign(
1871 WIPHY_ASSIGN;
Johannes Berg683b6d32012-11-08 21:25:48 +01001872 if (ret == 0)
1873 CHAN_DEF_ASSIGN(chandef);
1874 else
1875 CHAN_DEF_ASSIGN((struct cfg80211_chan_def *)NULL);
1876 __entry->ret = ret;
Beni Lev14e8a3c2012-07-31 18:48:27 +03001877 ),
Johannes Bergec816082012-11-16 17:22:28 +01001878 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", ret: %d",
Johannes Berg683b6d32012-11-08 21:25:48 +01001879 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->ret)
Beni Lev14e8a3c2012-07-31 18:48:27 +03001880);
1881
Johannes Bergeeb126e2012-10-23 15:16:50 +02001882DEFINE_EVENT(wiphy_wdev_evt, rdev_start_p2p_device,
1883 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1884 TP_ARGS(wiphy, wdev)
1885);
1886
1887DEFINE_EVENT(wiphy_wdev_evt, rdev_stop_p2p_device,
1888 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1889 TP_ARGS(wiphy, wdev)
1890);
1891
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001892TRACE_EVENT(rdev_start_nan,
1893 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1894 struct cfg80211_nan_conf *conf),
1895 TP_ARGS(wiphy, wdev, conf),
1896 TP_STRUCT__entry(
1897 WIPHY_ENTRY
1898 WDEV_ENTRY
1899 __field(u8, master_pref)
1900 __field(u8, dual);
1901 ),
1902 TP_fast_assign(
1903 WIPHY_ASSIGN;
1904 WDEV_ASSIGN;
1905 __entry->master_pref = conf->master_pref;
1906 __entry->dual = conf->dual;
1907 ),
1908 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT
1909 ", master preference: %u, dual: %d",
1910 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->master_pref,
1911 __entry->dual)
1912);
1913
1914DEFINE_EVENT(wiphy_wdev_evt, rdev_stop_nan,
1915 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
1916 TP_ARGS(wiphy, wdev)
1917);
1918
Ayala Bekera442b762016-09-20 17:31:15 +03001919TRACE_EVENT(rdev_add_nan_func,
1920 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1921 const struct cfg80211_nan_func *func),
1922 TP_ARGS(wiphy, wdev, func),
1923 TP_STRUCT__entry(
1924 WIPHY_ENTRY
1925 WDEV_ENTRY
1926 __field(u8, func_type)
1927 __field(u64, cookie)
1928 ),
1929 TP_fast_assign(
1930 WIPHY_ASSIGN;
1931 WDEV_ASSIGN;
1932 __entry->func_type = func->type;
1933 __entry->cookie = func->cookie
1934 ),
1935 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", type=%u, cookie=%llu",
1936 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->func_type,
1937 __entry->cookie)
1938);
1939
1940TRACE_EVENT(rdev_del_nan_func,
1941 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1942 u64 cookie),
1943 TP_ARGS(wiphy, wdev, cookie),
1944 TP_STRUCT__entry(
1945 WIPHY_ENTRY
1946 WDEV_ENTRY
1947 __field(u64, cookie)
1948 ),
1949 TP_fast_assign(
1950 WIPHY_ASSIGN;
1951 WDEV_ASSIGN;
1952 __entry->cookie = cookie;
1953 ),
1954 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", cookie=%llu",
1955 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->cookie)
1956);
1957
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05301958TRACE_EVENT(rdev_set_mac_acl,
1959 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1960 struct cfg80211_acl_data *params),
1961 TP_ARGS(wiphy, netdev, params),
1962 TP_STRUCT__entry(
1963 WIPHY_ENTRY
1964 NETDEV_ENTRY
1965 __field(u32, acl_policy)
1966 ),
1967 TP_fast_assign(
1968 WIPHY_ASSIGN;
Vladimir Kondratiev021fcdc2013-03-07 11:08:29 +02001969 NETDEV_ASSIGN;
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05301970 __entry->acl_policy = params->acl_policy;
1971 ),
1972 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", acl policy: %d",
1973 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->acl_policy)
1974);
1975
Jouni Malinen355199e2013-02-27 17:14:27 +02001976TRACE_EVENT(rdev_update_ft_ies,
1977 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
1978 struct cfg80211_update_ft_ies_params *ftie),
1979 TP_ARGS(wiphy, netdev, ftie),
1980 TP_STRUCT__entry(
1981 WIPHY_ENTRY
1982 NETDEV_ENTRY
1983 __field(u16, md)
1984 __dynamic_array(u8, ie, ftie->ie_len)
1985 ),
1986 TP_fast_assign(
1987 WIPHY_ASSIGN;
1988 NETDEV_ASSIGN;
1989 __entry->md = ftie->md;
1990 memcpy(__get_dynamic_array(ie), ftie->ie, ftie->ie_len);
1991 ),
1992 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", md: 0x%x",
1993 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->md)
1994);
1995
Arend van Spriel5de17982013-04-18 15:49:00 +02001996TRACE_EVENT(rdev_crit_proto_start,
1997 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
1998 enum nl80211_crit_proto_id protocol, u16 duration),
1999 TP_ARGS(wiphy, wdev, protocol, duration),
2000 TP_STRUCT__entry(
2001 WIPHY_ENTRY
2002 WDEV_ENTRY
2003 __field(u16, proto)
2004 __field(u16, duration)
2005 ),
2006 TP_fast_assign(
2007 WIPHY_ASSIGN;
2008 WDEV_ASSIGN;
2009 __entry->proto = protocol;
2010 __entry->duration = duration;
2011 ),
2012 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT ", proto=%x, duration=%u",
2013 WIPHY_PR_ARG, WDEV_PR_ARG, __entry->proto, __entry->duration)
2014);
2015
2016TRACE_EVENT(rdev_crit_proto_stop,
2017 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2018 TP_ARGS(wiphy, wdev),
2019 TP_STRUCT__entry(
2020 WIPHY_ENTRY
2021 WDEV_ENTRY
2022 ),
2023 TP_fast_assign(
2024 WIPHY_ASSIGN;
2025 WDEV_ASSIGN;
2026 ),
2027 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT,
2028 WIPHY_PR_ARG, WDEV_PR_ARG)
2029);
2030
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002031TRACE_EVENT(rdev_channel_switch,
2032 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2033 struct cfg80211_csa_settings *params),
2034 TP_ARGS(wiphy, netdev, params),
2035 TP_STRUCT__entry(
2036 WIPHY_ENTRY
2037 NETDEV_ENTRY
2038 CHAN_DEF_ENTRY
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002039 __field(bool, radar_required)
2040 __field(bool, block_tx)
2041 __field(u8, count)
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03002042 __dynamic_array(u16, bcn_ofs, params->n_counter_offsets_beacon)
2043 __dynamic_array(u16, pres_ofs, params->n_counter_offsets_presp)
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002044 ),
2045 TP_fast_assign(
2046 WIPHY_ASSIGN;
2047 NETDEV_ASSIGN;
2048 CHAN_DEF_ASSIGN(&params->chandef);
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002049 __entry->radar_required = params->radar_required;
2050 __entry->block_tx = params->block_tx;
2051 __entry->count = params->count;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03002052 memcpy(__get_dynamic_array(bcn_ofs),
2053 params->counter_offsets_beacon,
2054 params->n_counter_offsets_beacon * sizeof(u16));
2055
2056 /* probe response offsets are optional */
2057 if (params->n_counter_offsets_presp)
2058 memcpy(__get_dynamic_array(pres_ofs),
2059 params->counter_offsets_presp,
2060 params->n_counter_offsets_presp * sizeof(u16));
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002061 ),
2062 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03002063 ", block_tx: %d, count: %u, radar_required: %d",
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002064 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03002065 __entry->block_tx, __entry->count, __entry->radar_required)
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02002066);
2067
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -08002068TRACE_EVENT(rdev_set_qos_map,
2069 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2070 struct cfg80211_qos_map *qos_map),
2071 TP_ARGS(wiphy, netdev, qos_map),
2072 TP_STRUCT__entry(
2073 WIPHY_ENTRY
2074 NETDEV_ENTRY
2075 QOS_MAP_ENTRY
2076 ),
2077 TP_fast_assign(
2078 WIPHY_ASSIGN;
2079 NETDEV_ASSIGN;
2080 QOS_MAP_ASSIGN(qos_map);
2081 ),
2082 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", num_des: %u",
2083 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->num_des)
2084);
2085
Jouni Malinene16821b2014-04-28 11:22:08 +03002086TRACE_EVENT(rdev_set_ap_chanwidth,
2087 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2088 struct cfg80211_chan_def *chandef),
2089 TP_ARGS(wiphy, netdev, chandef),
2090 TP_STRUCT__entry(
2091 WIPHY_ENTRY
2092 NETDEV_ENTRY
2093 CHAN_DEF_ENTRY
2094 ),
2095 TP_fast_assign(
2096 WIPHY_ASSIGN;
2097 NETDEV_ASSIGN;
2098 CHAN_DEF_ASSIGN(chandef);
2099 ),
2100 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT,
2101 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG)
2102);
2103
Johannes Berg960d01a2014-09-09 22:55:35 +03002104TRACE_EVENT(rdev_add_tx_ts,
2105 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2106 u8 tsid, const u8 *peer, u8 user_prio, u16 admitted_time),
2107 TP_ARGS(wiphy, netdev, tsid, peer, user_prio, admitted_time),
2108 TP_STRUCT__entry(
2109 WIPHY_ENTRY
2110 NETDEV_ENTRY
2111 MAC_ENTRY(peer)
2112 __field(u8, tsid)
2113 __field(u8, user_prio)
2114 __field(u16, admitted_time)
2115 ),
2116 TP_fast_assign(
2117 WIPHY_ASSIGN;
2118 NETDEV_ASSIGN;
2119 MAC_ASSIGN(peer, peer);
2120 __entry->tsid = tsid;
2121 __entry->user_prio = user_prio;
2122 __entry->admitted_time = admitted_time;
2123 ),
2124 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", TSID %d, UP %d, time %d",
2125 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer),
2126 __entry->tsid, __entry->user_prio, __entry->admitted_time)
2127);
2128
2129TRACE_EVENT(rdev_del_tx_ts,
2130 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2131 u8 tsid, const u8 *peer),
2132 TP_ARGS(wiphy, netdev, tsid, peer),
2133 TP_STRUCT__entry(
2134 WIPHY_ENTRY
2135 NETDEV_ENTRY
2136 MAC_ENTRY(peer)
2137 __field(u8, tsid)
2138 ),
2139 TP_fast_assign(
2140 WIPHY_ASSIGN;
2141 NETDEV_ASSIGN;
2142 MAC_ASSIGN(peer, peer);
2143 __entry->tsid = tsid;
2144 ),
2145 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT ", TSID %d",
2146 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->tsid)
2147);
2148
Arik Nemtsov1057d352014-11-19 12:54:26 +02002149TRACE_EVENT(rdev_tdls_channel_switch,
2150 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2151 const u8 *addr, u8 oper_class,
2152 struct cfg80211_chan_def *chandef),
2153 TP_ARGS(wiphy, netdev, addr, oper_class, chandef),
2154 TP_STRUCT__entry(
2155 WIPHY_ENTRY
2156 NETDEV_ENTRY
2157 MAC_ENTRY(addr)
2158 __field(u8, oper_class)
2159 CHAN_DEF_ENTRY
2160 ),
2161 TP_fast_assign(
2162 WIPHY_ASSIGN;
2163 NETDEV_ASSIGN;
2164 MAC_ASSIGN(addr, addr);
2165 CHAN_DEF_ASSIGN(chandef);
2166 ),
2167 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT
2168 " oper class %d, " CHAN_DEF_PR_FMT,
2169 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(addr),
2170 __entry->oper_class, CHAN_DEF_PR_ARG)
2171);
2172
2173TRACE_EVENT(rdev_tdls_cancel_channel_switch,
2174 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2175 const u8 *addr),
2176 TP_ARGS(wiphy, netdev, addr),
2177 TP_STRUCT__entry(
2178 WIPHY_ENTRY
2179 NETDEV_ENTRY
2180 MAC_ENTRY(addr)
2181 ),
2182 TP_fast_assign(
2183 WIPHY_ASSIGN;
2184 NETDEV_ASSIGN;
2185 MAC_ASSIGN(addr, addr);
2186 ),
2187 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " MAC_PR_FMT,
2188 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(addr))
2189);
2190
Beni Lev4ee3e062012-08-27 12:49:39 +03002191/*************************************************************
2192 * cfg80211 exported functions traces *
2193 *************************************************************/
2194
2195TRACE_EVENT(cfg80211_return_bool,
2196 TP_PROTO(bool ret),
2197 TP_ARGS(ret),
2198 TP_STRUCT__entry(
2199 __field(bool, ret)
2200 ),
2201 TP_fast_assign(
2202 __entry->ret = ret;
2203 ),
2204 TP_printk("returned %s", BOOL_TO_STR(__entry->ret))
2205);
2206
2207DECLARE_EVENT_CLASS(cfg80211_netdev_mac_evt,
2208 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2209 TP_ARGS(netdev, macaddr),
2210 TP_STRUCT__entry(
2211 NETDEV_ENTRY
2212 MAC_ENTRY(macaddr)
2213 ),
2214 TP_fast_assign(
2215 NETDEV_ASSIGN;
2216 MAC_ASSIGN(macaddr, macaddr);
2217 ),
2218 TP_printk(NETDEV_PR_FMT ", mac: " MAC_PR_FMT,
2219 NETDEV_PR_ARG, MAC_PR_ARG(macaddr))
2220);
2221
2222DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_notify_new_peer_candidate,
2223 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2224 TP_ARGS(netdev, macaddr)
2225);
2226
2227DECLARE_EVENT_CLASS(netdev_evt_only,
2228 TP_PROTO(struct net_device *netdev),
2229 TP_ARGS(netdev),
2230 TP_STRUCT__entry(
2231 NETDEV_ENTRY
2232 ),
2233 TP_fast_assign(
2234 NETDEV_ASSIGN;
2235 ),
2236 TP_printk(NETDEV_PR_FMT , NETDEV_PR_ARG)
2237);
2238
2239DEFINE_EVENT(netdev_evt_only, cfg80211_send_rx_auth,
2240 TP_PROTO(struct net_device *netdev),
2241 TP_ARGS(netdev)
2242);
2243
2244TRACE_EVENT(cfg80211_send_rx_assoc,
2245 TP_PROTO(struct net_device *netdev, struct cfg80211_bss *bss),
2246 TP_ARGS(netdev, bss),
2247 TP_STRUCT__entry(
2248 NETDEV_ENTRY
2249 MAC_ENTRY(bssid)
2250 CHAN_ENTRY
2251 ),
2252 TP_fast_assign(
2253 NETDEV_ASSIGN;
2254 MAC_ASSIGN(bssid, bss->bssid);
2255 CHAN_ASSIGN(bss->channel);
2256 ),
Johannes Bergec816082012-11-16 17:22:28 +01002257 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT ", " CHAN_PR_FMT,
Beni Lev4ee3e062012-08-27 12:49:39 +03002258 NETDEV_PR_ARG, MAC_PR_ARG(bssid), CHAN_PR_ARG)
2259);
2260
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002261DECLARE_EVENT_CLASS(netdev_frame_event,
2262 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2263 TP_ARGS(netdev, buf, len),
2264 TP_STRUCT__entry(
2265 NETDEV_ENTRY
2266 __dynamic_array(u8, frame, len)
2267 ),
2268 TP_fast_assign(
2269 NETDEV_ASSIGN;
2270 memcpy(__get_dynamic_array(frame), buf, len);
2271 ),
2272 TP_printk(NETDEV_PR_FMT ", ftype:0x%.2x",
2273 NETDEV_PR_ARG,
2274 le16_to_cpup((__le16 *)__get_dynamic_array(frame)))
Beni Lev4ee3e062012-08-27 12:49:39 +03002275);
2276
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002277DEFINE_EVENT(netdev_frame_event, cfg80211_rx_unprot_mlme_mgmt,
2278 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2279 TP_ARGS(netdev, buf, len)
Beni Lev4ee3e062012-08-27 12:49:39 +03002280);
2281
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002282DEFINE_EVENT(netdev_frame_event, cfg80211_rx_mlme_mgmt,
2283 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2284 TP_ARGS(netdev, buf, len)
Beni Lev4ee3e062012-08-27 12:49:39 +03002285);
2286
Johannes Berg6ff57cf2013-05-16 00:55:00 +02002287TRACE_EVENT(cfg80211_tx_mlme_mgmt,
2288 TP_PROTO(struct net_device *netdev, const u8 *buf, int len),
2289 TP_ARGS(netdev, buf, len),
2290 TP_STRUCT__entry(
2291 NETDEV_ENTRY
2292 __dynamic_array(u8, frame, len)
2293 ),
2294 TP_fast_assign(
2295 NETDEV_ASSIGN;
2296 memcpy(__get_dynamic_array(frame), buf, len);
2297 ),
2298 TP_printk(NETDEV_PR_FMT ", ftype:0x%.2x",
2299 NETDEV_PR_ARG,
2300 le16_to_cpup((__le16 *)__get_dynamic_array(frame)))
Beni Lev4ee3e062012-08-27 12:49:39 +03002301);
2302
2303DECLARE_EVENT_CLASS(netdev_mac_evt,
2304 TP_PROTO(struct net_device *netdev, const u8 *mac),
2305 TP_ARGS(netdev, mac),
2306 TP_STRUCT__entry(
2307 NETDEV_ENTRY
2308 MAC_ENTRY(mac)
2309 ),
2310 TP_fast_assign(
2311 NETDEV_ASSIGN;
2312 MAC_ASSIGN(mac, mac)
2313 ),
2314 TP_printk(NETDEV_PR_FMT ", mac: " MAC_PR_FMT,
2315 NETDEV_PR_ARG, MAC_PR_ARG(mac))
2316);
2317
2318DEFINE_EVENT(netdev_mac_evt, cfg80211_send_auth_timeout,
2319 TP_PROTO(struct net_device *netdev, const u8 *mac),
2320 TP_ARGS(netdev, mac)
2321);
2322
2323DEFINE_EVENT(netdev_mac_evt, cfg80211_send_assoc_timeout,
2324 TP_PROTO(struct net_device *netdev, const u8 *mac),
2325 TP_ARGS(netdev, mac)
2326);
2327
2328TRACE_EVENT(cfg80211_michael_mic_failure,
2329 TP_PROTO(struct net_device *netdev, const u8 *addr,
2330 enum nl80211_key_type key_type, int key_id, const u8 *tsc),
2331 TP_ARGS(netdev, addr, key_type, key_id, tsc),
2332 TP_STRUCT__entry(
2333 NETDEV_ENTRY
2334 MAC_ENTRY(addr)
2335 __field(enum nl80211_key_type, key_type)
2336 __field(int, key_id)
2337 __array(u8, tsc, 6)
2338 ),
2339 TP_fast_assign(
2340 NETDEV_ASSIGN;
2341 MAC_ASSIGN(addr, addr);
2342 __entry->key_type = key_type;
2343 __entry->key_id = key_id;
Eliad Peller8c26d452014-07-17 15:00:56 +03002344 if (tsc)
2345 memcpy(__entry->tsc, tsc, 6);
Beni Lev4ee3e062012-08-27 12:49:39 +03002346 ),
Johannes Bergec816082012-11-16 17:22:28 +01002347 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT ", key type: %d, key id: %d, tsc: %pm",
Beni Lev4ee3e062012-08-27 12:49:39 +03002348 NETDEV_PR_ARG, MAC_PR_ARG(addr), __entry->key_type,
2349 __entry->key_id, __entry->tsc)
2350);
2351
2352TRACE_EVENT(cfg80211_ready_on_channel,
2353 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
2354 struct ieee80211_channel *chan,
Johannes Berg42d97a52012-11-08 18:31:02 +01002355 unsigned int duration),
2356 TP_ARGS(wdev, cookie, chan, duration),
Beni Lev4ee3e062012-08-27 12:49:39 +03002357 TP_STRUCT__entry(
2358 WDEV_ENTRY
2359 __field(u64, cookie)
2360 CHAN_ENTRY
Beni Lev4ee3e062012-08-27 12:49:39 +03002361 __field(unsigned int, duration)
2362 ),
2363 TP_fast_assign(
2364 WDEV_ASSIGN;
2365 __entry->cookie = cookie;
2366 CHAN_ASSIGN(chan);
Beni Lev4ee3e062012-08-27 12:49:39 +03002367 __entry->duration = duration;
2368 ),
Johannes Berg42d97a52012-11-08 18:31:02 +01002369 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT ", duration: %u",
Beni Lev4ee3e062012-08-27 12:49:39 +03002370 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG,
Johannes Berg42d97a52012-11-08 18:31:02 +01002371 __entry->duration)
Beni Lev4ee3e062012-08-27 12:49:39 +03002372);
2373
2374TRACE_EVENT(cfg80211_ready_on_channel_expired,
2375 TP_PROTO(struct wireless_dev *wdev, u64 cookie,
Johannes Berg42d97a52012-11-08 18:31:02 +01002376 struct ieee80211_channel *chan),
2377 TP_ARGS(wdev, cookie, chan),
Beni Lev4ee3e062012-08-27 12:49:39 +03002378 TP_STRUCT__entry(
2379 WDEV_ENTRY
2380 __field(u64, cookie)
2381 CHAN_ENTRY
Beni Lev4ee3e062012-08-27 12:49:39 +03002382 ),
2383 TP_fast_assign(
2384 WDEV_ASSIGN;
2385 __entry->cookie = cookie;
2386 CHAN_ASSIGN(chan);
Beni Lev4ee3e062012-08-27 12:49:39 +03002387 ),
Johannes Berg42d97a52012-11-08 18:31:02 +01002388 TP_printk(WDEV_PR_FMT ", cookie: %llu, " CHAN_PR_FMT,
2389 WDEV_PR_ARG, __entry->cookie, CHAN_PR_ARG)
Beni Lev4ee3e062012-08-27 12:49:39 +03002390);
2391
2392TRACE_EVENT(cfg80211_new_sta,
2393 TP_PROTO(struct net_device *netdev, const u8 *mac_addr,
2394 struct station_info *sinfo),
2395 TP_ARGS(netdev, mac_addr, sinfo),
2396 TP_STRUCT__entry(
2397 NETDEV_ENTRY
2398 MAC_ENTRY(mac_addr)
2399 SINFO_ENTRY
2400 ),
2401 TP_fast_assign(
2402 NETDEV_ASSIGN;
2403 MAC_ASSIGN(mac_addr, mac_addr);
2404 SINFO_ASSIGN;
2405 ),
Johannes Bergec816082012-11-16 17:22:28 +01002406 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT,
Beni Lev4ee3e062012-08-27 12:49:39 +03002407 NETDEV_PR_ARG, MAC_PR_ARG(mac_addr))
2408);
2409
2410DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_del_sta,
2411 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2412 TP_ARGS(netdev, macaddr)
2413);
2414
2415TRACE_EVENT(cfg80211_rx_mgmt,
2416 TP_PROTO(struct wireless_dev *wdev, int freq, int sig_mbm),
2417 TP_ARGS(wdev, freq, sig_mbm),
2418 TP_STRUCT__entry(
2419 WDEV_ENTRY
2420 __field(int, freq)
2421 __field(int, sig_mbm)
2422 ),
2423 TP_fast_assign(
2424 WDEV_ASSIGN;
2425 __entry->freq = freq;
2426 __entry->sig_mbm = sig_mbm;
2427 ),
2428 TP_printk(WDEV_PR_FMT ", freq: %d, sig mbm: %d",
2429 WDEV_PR_ARG, __entry->freq, __entry->sig_mbm)
2430);
2431
2432TRACE_EVENT(cfg80211_mgmt_tx_status,
2433 TP_PROTO(struct wireless_dev *wdev, u64 cookie, bool ack),
2434 TP_ARGS(wdev, cookie, ack),
2435 TP_STRUCT__entry(
2436 WDEV_ENTRY
2437 __field(u64, cookie)
2438 __field(bool, ack)
2439 ),
2440 TP_fast_assign(
2441 WDEV_ASSIGN;
2442 __entry->cookie = cookie;
2443 __entry->ack = ack;
2444 ),
2445 TP_printk(WDEV_PR_FMT", cookie: %llu, ack: %s",
2446 WDEV_PR_ARG, __entry->cookie, BOOL_TO_STR(__entry->ack))
2447);
2448
2449TRACE_EVENT(cfg80211_cqm_rssi_notify,
2450 TP_PROTO(struct net_device *netdev,
2451 enum nl80211_cqm_rssi_threshold_event rssi_event),
2452 TP_ARGS(netdev, rssi_event),
2453 TP_STRUCT__entry(
2454 NETDEV_ENTRY
2455 __field(enum nl80211_cqm_rssi_threshold_event, rssi_event)
2456 ),
2457 TP_fast_assign(
2458 NETDEV_ASSIGN;
2459 __entry->rssi_event = rssi_event;
2460 ),
2461 TP_printk(NETDEV_PR_FMT ", rssi event: %d",
2462 NETDEV_PR_ARG, __entry->rssi_event)
2463);
2464
Johannes Berg683b6d32012-11-08 21:25:48 +01002465TRACE_EVENT(cfg80211_reg_can_beacon,
Ilan Peer174e0cd2014-02-23 09:13:01 +02002466 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef,
Arik Nemtsov923b3522015-07-08 15:41:44 +03002467 enum nl80211_iftype iftype, bool check_no_ir),
2468 TP_ARGS(wiphy, chandef, iftype, check_no_ir),
Beni Lev4ee3e062012-08-27 12:49:39 +03002469 TP_STRUCT__entry(
2470 WIPHY_ENTRY
Johannes Berg683b6d32012-11-08 21:25:48 +01002471 CHAN_DEF_ENTRY
Ilan Peer174e0cd2014-02-23 09:13:01 +02002472 __field(enum nl80211_iftype, iftype)
Arik Nemtsov923b3522015-07-08 15:41:44 +03002473 __field(bool, check_no_ir)
Beni Lev4ee3e062012-08-27 12:49:39 +03002474 ),
2475 TP_fast_assign(
2476 WIPHY_ASSIGN;
Johannes Berg683b6d32012-11-08 21:25:48 +01002477 CHAN_DEF_ASSIGN(chandef);
Ilan Peer174e0cd2014-02-23 09:13:01 +02002478 __entry->iftype = iftype;
Arik Nemtsov923b3522015-07-08 15:41:44 +03002479 __entry->check_no_ir = check_no_ir;
Beni Lev4ee3e062012-08-27 12:49:39 +03002480 ),
Arik Nemtsov923b3522015-07-08 15:41:44 +03002481 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT ", iftype=%d check_no_ir=%s",
2482 WIPHY_PR_ARG, CHAN_DEF_PR_ARG, __entry->iftype,
2483 BOOL_TO_STR(__entry->check_no_ir))
Beni Lev4ee3e062012-08-27 12:49:39 +03002484);
2485
Simon Wunderlich04f39042013-02-08 18:16:19 +01002486TRACE_EVENT(cfg80211_chandef_dfs_required,
2487 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef),
2488 TP_ARGS(wiphy, chandef),
2489 TP_STRUCT__entry(
2490 WIPHY_ENTRY
2491 CHAN_DEF_ENTRY
2492 ),
2493 TP_fast_assign(
2494 WIPHY_ASSIGN;
2495 CHAN_DEF_ASSIGN(chandef);
2496 ),
2497 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
2498 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
2499);
2500
Beni Lev4ee3e062012-08-27 12:49:39 +03002501TRACE_EVENT(cfg80211_ch_switch_notify,
Johannes Berg683b6d32012-11-08 21:25:48 +01002502 TP_PROTO(struct net_device *netdev,
2503 struct cfg80211_chan_def *chandef),
2504 TP_ARGS(netdev, chandef),
Beni Lev4ee3e062012-08-27 12:49:39 +03002505 TP_STRUCT__entry(
2506 NETDEV_ENTRY
Johannes Berg683b6d32012-11-08 21:25:48 +01002507 CHAN_DEF_ENTRY
Beni Lev4ee3e062012-08-27 12:49:39 +03002508 ),
2509 TP_fast_assign(
2510 NETDEV_ASSIGN;
Johannes Berg683b6d32012-11-08 21:25:48 +01002511 CHAN_DEF_ASSIGN(chandef);
Beni Lev4ee3e062012-08-27 12:49:39 +03002512 ),
Johannes Bergec816082012-11-16 17:22:28 +01002513 TP_printk(NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT,
Johannes Berg683b6d32012-11-08 21:25:48 +01002514 NETDEV_PR_ARG, CHAN_DEF_PR_ARG)
Beni Lev4ee3e062012-08-27 12:49:39 +03002515);
2516
Luciano Coelhof8d75522014-11-07 14:31:35 +02002517TRACE_EVENT(cfg80211_ch_switch_started_notify,
2518 TP_PROTO(struct net_device *netdev,
2519 struct cfg80211_chan_def *chandef),
2520 TP_ARGS(netdev, chandef),
2521 TP_STRUCT__entry(
2522 NETDEV_ENTRY
2523 CHAN_DEF_ENTRY
2524 ),
2525 TP_fast_assign(
2526 NETDEV_ASSIGN;
2527 CHAN_DEF_ASSIGN(chandef);
2528 ),
2529 TP_printk(NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT,
2530 NETDEV_PR_ARG, CHAN_DEF_PR_ARG)
2531);
2532
Simon Wunderlich04f39042013-02-08 18:16:19 +01002533TRACE_EVENT(cfg80211_radar_event,
2534 TP_PROTO(struct wiphy *wiphy, struct cfg80211_chan_def *chandef),
2535 TP_ARGS(wiphy, chandef),
2536 TP_STRUCT__entry(
2537 WIPHY_ENTRY
2538 CHAN_DEF_ENTRY
2539 ),
2540 TP_fast_assign(
2541 WIPHY_ASSIGN;
2542 CHAN_DEF_ASSIGN(chandef);
2543 ),
2544 TP_printk(WIPHY_PR_FMT ", " CHAN_DEF_PR_FMT,
2545 WIPHY_PR_ARG, CHAN_DEF_PR_ARG)
2546);
2547
2548TRACE_EVENT(cfg80211_cac_event,
2549 TP_PROTO(struct net_device *netdev, enum nl80211_radar_event evt),
2550 TP_ARGS(netdev, evt),
2551 TP_STRUCT__entry(
2552 NETDEV_ENTRY
2553 __field(enum nl80211_radar_event, evt)
2554 ),
2555 TP_fast_assign(
2556 NETDEV_ASSIGN;
2557 __entry->evt = evt;
2558 ),
2559 TP_printk(NETDEV_PR_FMT ", event: %d",
2560 NETDEV_PR_ARG, __entry->evt)
2561);
2562
Beni Lev4ee3e062012-08-27 12:49:39 +03002563DECLARE_EVENT_CLASS(cfg80211_rx_evt,
2564 TP_PROTO(struct net_device *netdev, const u8 *addr),
2565 TP_ARGS(netdev, addr),
2566 TP_STRUCT__entry(
2567 NETDEV_ENTRY
2568 MAC_ENTRY(addr)
2569 ),
2570 TP_fast_assign(
2571 NETDEV_ASSIGN;
2572 MAC_ASSIGN(addr, addr);
2573 ),
Johannes Bergec816082012-11-16 17:22:28 +01002574 TP_printk(NETDEV_PR_FMT ", " MAC_PR_FMT, NETDEV_PR_ARG, MAC_PR_ARG(addr))
Beni Lev4ee3e062012-08-27 12:49:39 +03002575);
2576
Beni Lev4ee3e062012-08-27 12:49:39 +03002577DEFINE_EVENT(cfg80211_rx_evt, cfg80211_rx_spurious_frame,
2578 TP_PROTO(struct net_device *netdev, const u8 *addr),
2579 TP_ARGS(netdev, addr)
2580);
2581
2582DEFINE_EVENT(cfg80211_rx_evt, cfg80211_rx_unexpected_4addr_frame,
2583 TP_PROTO(struct net_device *netdev, const u8 *addr),
2584 TP_ARGS(netdev, addr)
2585);
2586
Antonio Quartullife94f3a2014-01-29 17:53:43 +01002587TRACE_EVENT(cfg80211_ibss_joined,
2588 TP_PROTO(struct net_device *netdev, const u8 *bssid,
2589 struct ieee80211_channel *channel),
2590 TP_ARGS(netdev, bssid, channel),
2591 TP_STRUCT__entry(
2592 NETDEV_ENTRY
2593 MAC_ENTRY(bssid)
2594 CHAN_ENTRY
2595 ),
2596 TP_fast_assign(
2597 NETDEV_ASSIGN;
2598 MAC_ASSIGN(bssid, bssid);
2599 CHAN_ASSIGN(channel);
2600 ),
2601 TP_printk(NETDEV_PR_FMT ", bssid: " MAC_PR_FMT ", " CHAN_PR_FMT,
2602 NETDEV_PR_ARG, MAC_PR_ARG(bssid), CHAN_PR_ARG)
2603);
2604
Beni Lev4ee3e062012-08-27 12:49:39 +03002605TRACE_EVENT(cfg80211_probe_status,
2606 TP_PROTO(struct net_device *netdev, const u8 *addr, u64 cookie,
2607 bool acked),
2608 TP_ARGS(netdev, addr, cookie, acked),
2609 TP_STRUCT__entry(
2610 NETDEV_ENTRY
2611 MAC_ENTRY(addr)
2612 __field(u64, cookie)
2613 __field(bool, acked)
2614 ),
2615 TP_fast_assign(
2616 NETDEV_ASSIGN;
2617 MAC_ASSIGN(addr, addr);
2618 __entry->cookie = cookie;
2619 __entry->acked = acked;
2620 ),
Johannes Bergec816082012-11-16 17:22:28 +01002621 TP_printk(NETDEV_PR_FMT " addr:" MAC_PR_FMT ", cookie: %llu, acked: %s",
Beni Lev4ee3e062012-08-27 12:49:39 +03002622 NETDEV_PR_ARG, MAC_PR_ARG(addr), __entry->cookie,
2623 BOOL_TO_STR(__entry->acked))
2624);
2625
2626TRACE_EVENT(cfg80211_cqm_pktloss_notify,
2627 TP_PROTO(struct net_device *netdev, const u8 *peer, u32 num_packets),
2628 TP_ARGS(netdev, peer, num_packets),
2629 TP_STRUCT__entry(
2630 NETDEV_ENTRY
2631 MAC_ENTRY(peer)
2632 __field(u32, num_packets)
2633 ),
2634 TP_fast_assign(
2635 NETDEV_ASSIGN;
2636 MAC_ASSIGN(peer, peer);
2637 __entry->num_packets = num_packets;
2638 ),
2639 TP_printk(NETDEV_PR_FMT ", peer: " MAC_PR_FMT ", num of lost packets: %u",
2640 NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->num_packets)
2641);
2642
2643DEFINE_EVENT(cfg80211_netdev_mac_evt, cfg80211_gtk_rekey_notify,
2644 TP_PROTO(struct net_device *netdev, const u8 *macaddr),
2645 TP_ARGS(netdev, macaddr)
2646);
2647
2648TRACE_EVENT(cfg80211_pmksa_candidate_notify,
2649 TP_PROTO(struct net_device *netdev, int index, const u8 *bssid,
2650 bool preauth),
2651 TP_ARGS(netdev, index, bssid, preauth),
2652 TP_STRUCT__entry(
2653 NETDEV_ENTRY
2654 __field(int, index)
2655 MAC_ENTRY(bssid)
2656 __field(bool, preauth)
2657 ),
2658 TP_fast_assign(
2659 NETDEV_ASSIGN;
2660 __entry->index = index;
2661 MAC_ASSIGN(bssid, bssid);
2662 __entry->preauth = preauth;
2663 ),
2664 TP_printk(NETDEV_PR_FMT ", index:%d, bssid: " MAC_PR_FMT ", pre auth: %s",
2665 NETDEV_PR_ARG, __entry->index, MAC_PR_ARG(bssid),
2666 BOOL_TO_STR(__entry->preauth))
2667);
2668
2669TRACE_EVENT(cfg80211_report_obss_beacon,
2670 TP_PROTO(struct wiphy *wiphy, const u8 *frame, size_t len,
2671 int freq, int sig_dbm),
2672 TP_ARGS(wiphy, frame, len, freq, sig_dbm),
2673 TP_STRUCT__entry(
2674 WIPHY_ENTRY
2675 __field(int, freq)
2676 __field(int, sig_dbm)
2677 ),
2678 TP_fast_assign(
2679 WIPHY_ASSIGN;
2680 __entry->freq = freq;
2681 __entry->sig_dbm = sig_dbm;
2682 ),
2683 TP_printk(WIPHY_PR_FMT ", freq: %d, sig_dbm: %d",
2684 WIPHY_PR_ARG, __entry->freq, __entry->sig_dbm)
2685);
2686
Jouni Malinen3475b092012-11-16 22:49:57 +02002687TRACE_EVENT(cfg80211_tdls_oper_request,
2688 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, const u8 *peer,
2689 enum nl80211_tdls_operation oper, u16 reason_code),
2690 TP_ARGS(wiphy, netdev, peer, oper, reason_code),
2691 TP_STRUCT__entry(
2692 WIPHY_ENTRY
2693 NETDEV_ENTRY
2694 MAC_ENTRY(peer)
2695 __field(enum nl80211_tdls_operation, oper)
2696 __field(u16, reason_code)
2697 ),
2698 TP_fast_assign(
2699 WIPHY_ASSIGN;
2700 NETDEV_ASSIGN;
2701 MAC_ASSIGN(peer, peer);
2702 __entry->oper = oper;
2703 __entry->reason_code = reason_code;
2704 ),
2705 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", peer: " MAC_PR_FMT ", oper: %d, reason_code %u",
2706 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(peer), __entry->oper,
2707 __entry->reason_code)
2708 );
2709
Beni Lev4ee3e062012-08-27 12:49:39 +03002710TRACE_EVENT(cfg80211_scan_done,
Avraham Stern1d762502016-07-05 17:10:13 +03002711 TP_PROTO(struct cfg80211_scan_request *request,
2712 struct cfg80211_scan_info *info),
2713 TP_ARGS(request, info),
Beni Lev4ee3e062012-08-27 12:49:39 +03002714 TP_STRUCT__entry(
2715 __field(u32, n_channels)
2716 __dynamic_array(u8, ie, request ? request->ie_len : 0)
Johannes Berg57fbcce2016-04-12 15:56:15 +02002717 __array(u32, rates, NUM_NL80211_BANDS)
Beni Lev4ee3e062012-08-27 12:49:39 +03002718 __field(u32, wdev_id)
2719 MAC_ENTRY(wiphy_mac)
2720 __field(bool, no_cck)
2721 __field(bool, aborted)
Avraham Stern1d762502016-07-05 17:10:13 +03002722 __field(u64, scan_start_tsf)
2723 MAC_ENTRY(tsf_bssid)
Beni Lev4ee3e062012-08-27 12:49:39 +03002724 ),
2725 TP_fast_assign(
2726 if (request) {
2727 memcpy(__get_dynamic_array(ie), request->ie,
2728 request->ie_len);
2729 memcpy(__entry->rates, request->rates,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002730 NUM_NL80211_BANDS);
Beni Lev4ee3e062012-08-27 12:49:39 +03002731 __entry->wdev_id = request->wdev ?
2732 request->wdev->identifier : 0;
2733 if (request->wiphy)
2734 MAC_ASSIGN(wiphy_mac,
2735 request->wiphy->perm_addr);
2736 __entry->no_cck = request->no_cck;
2737 }
Avraham Stern1d762502016-07-05 17:10:13 +03002738 if (info) {
2739 __entry->aborted = info->aborted;
2740 __entry->scan_start_tsf = info->scan_start_tsf;
2741 MAC_ASSIGN(tsf_bssid, info->tsf_bssid);
2742 }
Beni Lev4ee3e062012-08-27 12:49:39 +03002743 ),
Avraham Stern1d762502016-07-05 17:10:13 +03002744 TP_printk("aborted: %s, scan start (TSF): %llu, tsf_bssid: " MAC_PR_FMT,
2745 BOOL_TO_STR(__entry->aborted),
2746 (unsigned long long)__entry->scan_start_tsf,
2747 MAC_PR_ARG(tsf_bssid))
Beni Lev4ee3e062012-08-27 12:49:39 +03002748);
2749
2750DEFINE_EVENT(wiphy_only_evt, cfg80211_sched_scan_results,
2751 TP_PROTO(struct wiphy *wiphy),
2752 TP_ARGS(wiphy)
2753);
2754
2755DEFINE_EVENT(wiphy_only_evt, cfg80211_sched_scan_stopped,
2756 TP_PROTO(struct wiphy *wiphy),
2757 TP_ARGS(wiphy)
2758);
2759
2760TRACE_EVENT(cfg80211_get_bss,
2761 TP_PROTO(struct wiphy *wiphy, struct ieee80211_channel *channel,
2762 const u8 *bssid, const u8 *ssid, size_t ssid_len,
Dedy Lansky6eb18132015-02-08 15:52:03 +02002763 enum ieee80211_bss_type bss_type,
2764 enum ieee80211_privacy privacy),
2765 TP_ARGS(wiphy, channel, bssid, ssid, ssid_len, bss_type, privacy),
Beni Lev4ee3e062012-08-27 12:49:39 +03002766 TP_STRUCT__entry(
2767 WIPHY_ENTRY
2768 CHAN_ENTRY
2769 MAC_ENTRY(bssid)
2770 __dynamic_array(u8, ssid, ssid_len)
Dedy Lansky6eb18132015-02-08 15:52:03 +02002771 __field(enum ieee80211_bss_type, bss_type)
2772 __field(enum ieee80211_privacy, privacy)
Beni Lev4ee3e062012-08-27 12:49:39 +03002773 ),
2774 TP_fast_assign(
2775 WIPHY_ASSIGN;
2776 CHAN_ASSIGN(channel);
2777 MAC_ASSIGN(bssid, bssid);
2778 memcpy(__get_dynamic_array(ssid), ssid, ssid_len);
Dedy Lansky6eb18132015-02-08 15:52:03 +02002779 __entry->bss_type = bss_type;
2780 __entry->privacy = privacy;
Beni Lev4ee3e062012-08-27 12:49:39 +03002781 ),
Dedy Lansky6eb18132015-02-08 15:52:03 +02002782 TP_printk(WIPHY_PR_FMT ", " CHAN_PR_FMT ", " MAC_PR_FMT
2783 ", buf: %#.2x, bss_type: %d, privacy: %d",
2784 WIPHY_PR_ARG, CHAN_PR_ARG, MAC_PR_ARG(bssid),
2785 ((u8 *)__get_dynamic_array(ssid))[0], __entry->bss_type,
2786 __entry->privacy)
Beni Lev4ee3e062012-08-27 12:49:39 +03002787);
2788
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02002789TRACE_EVENT(cfg80211_inform_bss_frame,
2790 TP_PROTO(struct wiphy *wiphy, struct cfg80211_inform_bss *data,
2791 struct ieee80211_mgmt *mgmt, size_t len),
2792 TP_ARGS(wiphy, data, mgmt, len),
Beni Lev4ee3e062012-08-27 12:49:39 +03002793 TP_STRUCT__entry(
2794 WIPHY_ENTRY
2795 CHAN_ENTRY
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02002796 __field(enum nl80211_bss_scan_width, scan_width)
Beni Lev4ee3e062012-08-27 12:49:39 +03002797 __dynamic_array(u8, mgmt, len)
2798 __field(s32, signal)
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02002799 __field(u64, ts_boottime)
Avraham Stern1d762502016-07-05 17:10:13 +03002800 __field(u64, parent_tsf)
2801 MAC_ENTRY(parent_bssid)
Beni Lev4ee3e062012-08-27 12:49:39 +03002802 ),
2803 TP_fast_assign(
2804 WIPHY_ASSIGN;
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02002805 CHAN_ASSIGN(data->chan);
2806 __entry->scan_width = data->scan_width;
Beni Lev4ee3e062012-08-27 12:49:39 +03002807 if (mgmt)
2808 memcpy(__get_dynamic_array(mgmt), mgmt, len);
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02002809 __entry->signal = data->signal;
2810 __entry->ts_boottime = data->boottime_ns;
Avraham Stern1d762502016-07-05 17:10:13 +03002811 __entry->parent_tsf = data->parent_tsf;
2812 MAC_ASSIGN(parent_bssid, data->parent_bssid);
Beni Lev4ee3e062012-08-27 12:49:39 +03002813 ),
Avraham Stern1d762502016-07-05 17:10:13 +03002814 TP_printk(WIPHY_PR_FMT ", " CHAN_PR_FMT
2815 "(scan_width: %d) signal: %d, tsb:%llu, detect_tsf:%llu, tsf_bssid: "
2816 MAC_PR_FMT, WIPHY_PR_ARG, CHAN_PR_ARG, __entry->scan_width,
2817 __entry->signal, (unsigned long long)__entry->ts_boottime,
2818 (unsigned long long)__entry->parent_tsf,
2819 MAC_PR_ARG(parent_bssid))
Beni Lev4ee3e062012-08-27 12:49:39 +03002820);
2821
2822DECLARE_EVENT_CLASS(cfg80211_bss_evt,
2823 TP_PROTO(struct cfg80211_bss *pub),
2824 TP_ARGS(pub),
2825 TP_STRUCT__entry(
2826 MAC_ENTRY(bssid)
2827 CHAN_ENTRY
2828 ),
2829 TP_fast_assign(
2830 MAC_ASSIGN(bssid, pub->bssid);
2831 CHAN_ASSIGN(pub->channel);
2832 ),
Johannes Bergec816082012-11-16 17:22:28 +01002833 TP_printk(MAC_PR_FMT ", " CHAN_PR_FMT, MAC_PR_ARG(bssid), CHAN_PR_ARG)
Beni Lev4ee3e062012-08-27 12:49:39 +03002834);
2835
2836DEFINE_EVENT(cfg80211_bss_evt, cfg80211_return_bss,
2837 TP_PROTO(struct cfg80211_bss *pub),
2838 TP_ARGS(pub)
2839);
2840
2841TRACE_EVENT(cfg80211_return_uint,
2842 TP_PROTO(unsigned int ret),
2843 TP_ARGS(ret),
2844 TP_STRUCT__entry(
2845 __field(unsigned int, ret)
2846 ),
2847 TP_fast_assign(
2848 __entry->ret = ret;
2849 ),
2850 TP_printk("ret: %d", __entry->ret)
2851);
2852
2853TRACE_EVENT(cfg80211_return_u32,
2854 TP_PROTO(u32 ret),
2855 TP_ARGS(ret),
2856 TP_STRUCT__entry(
2857 __field(u32, ret)
2858 ),
2859 TP_fast_assign(
2860 __entry->ret = ret;
2861 ),
2862 TP_printk("ret: %u", __entry->ret)
2863);
2864
Johannes Bergcd8f7cb2013-01-22 12:34:29 +01002865TRACE_EVENT(cfg80211_report_wowlan_wakeup,
2866 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev,
2867 struct cfg80211_wowlan_wakeup *wakeup),
2868 TP_ARGS(wiphy, wdev, wakeup),
2869 TP_STRUCT__entry(
2870 WIPHY_ENTRY
2871 WDEV_ENTRY
Johannes Berga92eecb2013-04-29 12:09:14 +02002872 __field(bool, non_wireless)
Johannes Bergcd8f7cb2013-01-22 12:34:29 +01002873 __field(bool, disconnect)
2874 __field(bool, magic_pkt)
2875 __field(bool, gtk_rekey_failure)
2876 __field(bool, eap_identity_req)
2877 __field(bool, four_way_handshake)
2878 __field(bool, rfkill_release)
2879 __field(s32, pattern_idx)
2880 __field(u32, packet_len)
Johannes Berga92eecb2013-04-29 12:09:14 +02002881 __dynamic_array(u8, packet,
2882 wakeup ? wakeup->packet_present_len : 0)
Johannes Bergcd8f7cb2013-01-22 12:34:29 +01002883 ),
2884 TP_fast_assign(
2885 WIPHY_ASSIGN;
2886 WDEV_ASSIGN;
Johannes Berga92eecb2013-04-29 12:09:14 +02002887 __entry->non_wireless = !wakeup;
2888 __entry->disconnect = wakeup ? wakeup->disconnect : false;
2889 __entry->magic_pkt = wakeup ? wakeup->magic_pkt : false;
2890 __entry->gtk_rekey_failure = wakeup ? wakeup->gtk_rekey_failure : false;
2891 __entry->eap_identity_req = wakeup ? wakeup->eap_identity_req : false;
2892 __entry->four_way_handshake = wakeup ? wakeup->four_way_handshake : false;
2893 __entry->rfkill_release = wakeup ? wakeup->rfkill_release : false;
2894 __entry->pattern_idx = wakeup ? wakeup->pattern_idx : false;
2895 __entry->packet_len = wakeup ? wakeup->packet_len : false;
2896 if (wakeup && wakeup->packet && wakeup->packet_present_len)
Johannes Bergcd8f7cb2013-01-22 12:34:29 +01002897 memcpy(__get_dynamic_array(packet), wakeup->packet,
2898 wakeup->packet_present_len);
2899 ),
2900 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT, WIPHY_PR_ARG, WDEV_PR_ARG)
2901);
2902
Jouni Malinen355199e2013-02-27 17:14:27 +02002903TRACE_EVENT(cfg80211_ft_event,
2904 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2905 struct cfg80211_ft_event_params *ft_event),
2906 TP_ARGS(wiphy, netdev, ft_event),
2907 TP_STRUCT__entry(
2908 WIPHY_ENTRY
2909 NETDEV_ENTRY
2910 __dynamic_array(u8, ies, ft_event->ies_len)
2911 MAC_ENTRY(target_ap)
2912 __dynamic_array(u8, ric_ies, ft_event->ric_ies_len)
2913 ),
2914 TP_fast_assign(
2915 WIPHY_ASSIGN;
2916 NETDEV_ASSIGN;
2917 if (ft_event->ies)
2918 memcpy(__get_dynamic_array(ies), ft_event->ies,
2919 ft_event->ies_len);
2920 MAC_ASSIGN(target_ap, ft_event->target_ap);
2921 if (ft_event->ric_ies)
2922 memcpy(__get_dynamic_array(ric_ies), ft_event->ric_ies,
2923 ft_event->ric_ies_len);
2924 ),
2925 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", target_ap: " MAC_PR_FMT,
2926 WIPHY_PR_ARG, NETDEV_PR_ARG, MAC_PR_ARG(target_ap))
2927);
2928
Michal Kaziorf04c2202014-04-09 15:11:01 +02002929TRACE_EVENT(cfg80211_stop_iface,
2930 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
2931 TP_ARGS(wiphy, wdev),
2932 TP_STRUCT__entry(
2933 WIPHY_ENTRY
2934 WDEV_ENTRY
2935 ),
2936 TP_fast_assign(
2937 WIPHY_ASSIGN;
2938 WDEV_ASSIGN;
2939 ),
2940 TP_printk(WIPHY_PR_FMT ", " WDEV_PR_FMT,
2941 WIPHY_PR_ARG, WDEV_PR_ARG)
2942);
2943
Ilan Peera1056b12015-10-22 22:27:46 +03002944TRACE_EVENT(rdev_start_radar_detection,
2945 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
2946 struct cfg80211_chan_def *chandef,
2947 u32 cac_time_ms),
2948 TP_ARGS(wiphy, netdev, chandef, cac_time_ms),
2949 TP_STRUCT__entry(
2950 WIPHY_ENTRY
2951 NETDEV_ENTRY
2952 CHAN_DEF_ENTRY
2953 __field(u32, cac_time_ms)
2954 ),
2955 TP_fast_assign(
2956 WIPHY_ASSIGN;
2957 NETDEV_ASSIGN;
2958 CHAN_DEF_ASSIGN(chandef);
2959 __entry->cac_time_ms = cac_time_ms;
2960 ),
2961 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
2962 ", cac_time_ms=%u",
2963 WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
2964 __entry->cac_time_ms)
2965);
2966
2967TRACE_EVENT(rdev_set_mcast_rate,
2968 TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002969 int mcast_rate[NUM_NL80211_BANDS]),
Ilan Peera1056b12015-10-22 22:27:46 +03002970 TP_ARGS(wiphy, netdev, mcast_rate),
2971 TP_STRUCT__entry(
2972 WIPHY_ENTRY
2973 NETDEV_ENTRY
Johannes Berg57fbcce2016-04-12 15:56:15 +02002974 __array(int, mcast_rate, NUM_NL80211_BANDS)
Ilan Peera1056b12015-10-22 22:27:46 +03002975 ),
2976 TP_fast_assign(
2977 WIPHY_ASSIGN;
2978 NETDEV_ASSIGN;
2979 memcpy(__entry->mcast_rate, mcast_rate,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002980 sizeof(int) * NUM_NL80211_BANDS);
Ilan Peera1056b12015-10-22 22:27:46 +03002981 ),
2982 TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", "
2983 "mcast_rates [2.4GHz=0x%x, 5.2GHz=0x%x, 60GHz=0x%x]",
2984 WIPHY_PR_ARG, NETDEV_PR_ARG,
Johannes Berg57fbcce2016-04-12 15:56:15 +02002985 __entry->mcast_rate[NL80211_BAND_2GHZ],
2986 __entry->mcast_rate[NL80211_BAND_5GHZ],
2987 __entry->mcast_rate[NL80211_BAND_60GHZ])
Ilan Peera1056b12015-10-22 22:27:46 +03002988);
2989
2990TRACE_EVENT(rdev_set_coalesce,
2991 TP_PROTO(struct wiphy *wiphy, struct cfg80211_coalesce *coalesce),
2992 TP_ARGS(wiphy, coalesce),
2993 TP_STRUCT__entry(
2994 WIPHY_ENTRY
2995 __field(int, n_rules)
2996 ),
2997 TP_fast_assign(
2998 WIPHY_ASSIGN;
2999 __entry->n_rules = coalesce ? coalesce->n_rules : 0;
3000 ),
3001 TP_printk(WIPHY_PR_FMT ", n_rules=%d",
3002 WIPHY_PR_ARG, __entry->n_rules)
3003);
3004
Vidyullatha Kanchanapally91d3ab42015-10-30 19:14:49 +05303005DEFINE_EVENT(wiphy_wdev_evt, rdev_abort_scan,
3006 TP_PROTO(struct wiphy *wiphy, struct wireless_dev *wdev),
3007 TP_ARGS(wiphy, wdev)
3008);
Beni Lev14e8a3c2012-07-31 18:48:27 +03003009#endif /* !__RDEV_OPS_TRACE || TRACE_HEADER_MULTI_READ */
3010
3011#undef TRACE_INCLUDE_PATH
3012#define TRACE_INCLUDE_PATH .
3013#undef TRACE_INCLUDE_FILE
3014#define TRACE_INCLUDE_FILE trace
3015#include <trace/define_trace.h>