diff mbox

mac80211: add tracing for ieee80211_sta_set_buffered

Message ID 1389006270-21768-1-git-send-email-johannes@sipsolutions.net (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Johannes Berg Jan. 6, 2014, 11:04 a.m. UTC
From: Johannes Berg <johannes.berg@intel.com>

This is useful for debugging issues with drivers using this
function (erroneously), so add tracing for the API call.

Change-Id: Ice9d7eabb8fecbac188f0a741920d3488de700ec
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 net/mac80211/sta_info.c |  2 ++
 net/mac80211/trace.h    | 27 +++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

Comments

Kalle Valo Jan. 14, 2014, 6:27 a.m. UTC | #1
Johannes Berg <johannes@sipsolutions.net> writes:

> From: Johannes Berg <johannes.berg@intel.com>
>
> This is useful for debugging issues with drivers using this
> function (erroneously), so add tracing for the API call.
>
> Change-Id: Ice9d7eabb8fecbac188f0a741920d3488de700ec

Extra change id.

(Sending just in case you missed it)
Johannes Berg Jan. 14, 2014, 8:44 a.m. UTC | #2
On Tue, 2014-01-14 at 08:27 +0200, Kalle Valo wrote:
> Johannes Berg <johannes@sipsolutions.net> writes:
> 
> > From: Johannes Berg <johannes.berg@intel.com>
> >
> > This is useful for debugging issues with drivers using this
> > function (erroneously), so add tracing for the API call.
> >
> > Change-Id: Ice9d7eabb8fecbac188f0a741920d3488de700ec
> 
> Extra change id.
> 
> (Sending just in case you missed it)

I did, yuck.

johannes


--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Johannes Berg Jan. 14, 2014, 8:47 a.m. UTC | #3
On Tue, 2014-01-14 at 09:44 +0100, Johannes Berg wrote:
> On Tue, 2014-01-14 at 08:27 +0200, Kalle Valo wrote:
> > Johannes Berg <johannes@sipsolutions.net> writes:
> > 
> > > From: Johannes Berg <johannes.berg@intel.com>
> > >
> > > This is useful for debugging issues with drivers using this
> > > function (erroneously), so add tracing for the API call.
> > >
> > > Change-Id: Ice9d7eabb8fecbac188f0a741920d3488de700ec
> > 
> > Extra change id.
> > 
> > (Sending just in case you missed it)
> 
> I did, yuck.

However, too late, John already pulled it.

johannes

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c
index 4576ba0..8da3af2 100644
--- a/net/mac80211/sta_info.c
+++ b/net/mac80211/sta_info.c
@@ -1485,6 +1485,8 @@  void ieee80211_sta_set_buffered(struct ieee80211_sta *pubsta,
 	if (WARN_ON(tid >= IEEE80211_NUM_TIDS))
 		return;
 
+	trace_api_sta_set_buffered(sta->local, pubsta, tid, buffered);
+
 	if (buffered)
 		set_bit(tid, &sta->driver_buffered_tids);
 	else
diff --git a/net/mac80211/trace.h b/net/mac80211/trace.h
index da93666..a0b0aea 100644
--- a/net/mac80211/trace.h
+++ b/net/mac80211/trace.h
@@ -1835,6 +1835,33 @@  TRACE_EVENT(api_eosp,
 	)
 );
 
+TRACE_EVENT(api_sta_set_buffered,
+	TP_PROTO(struct ieee80211_local *local,
+		 struct ieee80211_sta *sta,
+		 u8 tid, bool buffered),
+
+	TP_ARGS(local, sta, tid, buffered),
+
+	TP_STRUCT__entry(
+		LOCAL_ENTRY
+		STA_ENTRY
+		__field(u8, tid)
+		__field(bool, buffered)
+	),
+
+	TP_fast_assign(
+		LOCAL_ASSIGN;
+		STA_ASSIGN;
+		__entry->tid = tid;
+		__entry->buffered = buffered;
+	),
+
+	TP_printk(
+		LOCAL_PR_FMT STA_PR_FMT " tid:%d buffered:%d",
+		LOCAL_PR_ARG, STA_PR_ARG, __entry->tid, __entry->buffered
+	)
+);
+
 /*
  * Tracing for internal functions
  * (which may also be called in response to driver calls)