Commit c466d4ef authored by John W. Linville's avatar John W. Linville

mac80211: add basic tracing to drv_get_survey

Reported-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ff3074a4
...@@ -375,9 +375,14 @@ static inline int drv_get_survey(struct ieee80211_local *local, int idx, ...@@ -375,9 +375,14 @@ static inline int drv_get_survey(struct ieee80211_local *local, int idx,
struct survey_info *survey) struct survey_info *survey)
{ {
int ret = -EOPNOTSUPP; int ret = -EOPNOTSUPP;
trace_drv_get_survey(local, idx, survey);
if (local->ops->get_survey) if (local->ops->get_survey)
ret = local->ops->get_survey(&local->hw, idx, survey); ret = local->ops->get_survey(&local->hw, idx, survey);
/* trace_drv_get_survey(local, idx, survey, ret); */
trace_drv_return_int(local, ret);
return ret; return ret;
} }
......
...@@ -761,6 +761,28 @@ TRACE_EVENT(drv_ampdu_action, ...@@ -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, TRACE_EVENT(drv_flush,
TP_PROTO(struct ieee80211_local *local, bool drop), TP_PROTO(struct ieee80211_local *local, bool drop),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment