|
@@ -2818,6 +2818,67 @@ TRACE_EVENT(cfg80211_stop_iface,
|
|
|
WIPHY_PR_ARG, WDEV_PR_ARG)
|
|
|
);
|
|
|
|
|
|
+TRACE_EVENT(rdev_start_radar_detection,
|
|
|
+ TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
|
|
|
+ struct cfg80211_chan_def *chandef,
|
|
|
+ u32 cac_time_ms),
|
|
|
+ TP_ARGS(wiphy, netdev, chandef, cac_time_ms),
|
|
|
+ TP_STRUCT__entry(
|
|
|
+ WIPHY_ENTRY
|
|
|
+ NETDEV_ENTRY
|
|
|
+ CHAN_DEF_ENTRY
|
|
|
+ __field(u32, cac_time_ms)
|
|
|
+ ),
|
|
|
+ TP_fast_assign(
|
|
|
+ WIPHY_ASSIGN;
|
|
|
+ NETDEV_ASSIGN;
|
|
|
+ CHAN_DEF_ASSIGN(chandef);
|
|
|
+ __entry->cac_time_ms = cac_time_ms;
|
|
|
+ ),
|
|
|
+ TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", " CHAN_DEF_PR_FMT
|
|
|
+ ", cac_time_ms=%u",
|
|
|
+ WIPHY_PR_ARG, NETDEV_PR_ARG, CHAN_DEF_PR_ARG,
|
|
|
+ __entry->cac_time_ms)
|
|
|
+);
|
|
|
+
|
|
|
+TRACE_EVENT(rdev_set_mcast_rate,
|
|
|
+ TP_PROTO(struct wiphy *wiphy, struct net_device *netdev,
|
|
|
+ int mcast_rate[IEEE80211_NUM_BANDS]),
|
|
|
+ TP_ARGS(wiphy, netdev, mcast_rate),
|
|
|
+ TP_STRUCT__entry(
|
|
|
+ WIPHY_ENTRY
|
|
|
+ NETDEV_ENTRY
|
|
|
+ __array(int, mcast_rate, IEEE80211_NUM_BANDS)
|
|
|
+ ),
|
|
|
+ TP_fast_assign(
|
|
|
+ WIPHY_ASSIGN;
|
|
|
+ NETDEV_ASSIGN;
|
|
|
+ memcpy(__entry->mcast_rate, mcast_rate,
|
|
|
+ sizeof(int) * IEEE80211_NUM_BANDS);
|
|
|
+ ),
|
|
|
+ TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", "
|
|
|
+ "mcast_rates [2.4GHz=0x%x, 5.2GHz=0x%x, 60GHz=0x%x]",
|
|
|
+ WIPHY_PR_ARG, NETDEV_PR_ARG,
|
|
|
+ __entry->mcast_rate[IEEE80211_BAND_2GHZ],
|
|
|
+ __entry->mcast_rate[IEEE80211_BAND_5GHZ],
|
|
|
+ __entry->mcast_rate[IEEE80211_BAND_60GHZ])
|
|
|
+);
|
|
|
+
|
|
|
+TRACE_EVENT(rdev_set_coalesce,
|
|
|
+ TP_PROTO(struct wiphy *wiphy, struct cfg80211_coalesce *coalesce),
|
|
|
+ TP_ARGS(wiphy, coalesce),
|
|
|
+ TP_STRUCT__entry(
|
|
|
+ WIPHY_ENTRY
|
|
|
+ __field(int, n_rules)
|
|
|
+ ),
|
|
|
+ TP_fast_assign(
|
|
|
+ WIPHY_ASSIGN;
|
|
|
+ __entry->n_rules = coalesce ? coalesce->n_rules : 0;
|
|
|
+ ),
|
|
|
+ TP_printk(WIPHY_PR_FMT ", n_rules=%d",
|
|
|
+ WIPHY_PR_ARG, __entry->n_rules)
|
|
|
+);
|
|
|
+
|
|
|
#endif /* !__RDEV_OPS_TRACE || TRACE_HEADER_MULTI_READ */
|
|
|
|
|
|
#undef TRACE_INCLUDE_PATH
|