|
@@ -761,6 +761,28 @@ TRACE_EVENT(drv_ampdu_action,
|
|
|
)
|
|
|
);
|
|
|
|
|
|
+TRACE_EVENT(drv_get_survey,
|
|
|
+ TP_PROTO(struct ieee80211_local *local, int idx,
|
|
|
+ struct survey_info *survey),
|
|
|
+
|
|
|
+ TP_ARGS(local, idx, survey),
|
|
|
+
|
|
|
+ TP_STRUCT__entry(
|
|
|
+ LOCAL_ENTRY
|
|
|
+ __field(int, idx)
|
|
|
+ ),
|
|
|
+
|
|
|
+ TP_fast_assign(
|
|
|
+ LOCAL_ASSIGN;
|
|
|
+ __entry->idx = idx;
|
|
|
+ ),
|
|
|
+
|
|
|
+ TP_printk(
|
|
|
+ LOCAL_PR_FMT " idx:%d",
|
|
|
+ LOCAL_PR_ARG, __entry->idx
|
|
|
+ )
|
|
|
+);
|
|
|
+
|
|
|
TRACE_EVENT(drv_flush,
|
|
|
TP_PROTO(struct ieee80211_local *local, bool drop),
|
|
|
|