Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH] iw: add survey busy ratios
@ 2010-10-06  3:30 Bruno Randolf
  0 siblings, 0 replies; only message in thread
From: Bruno Randolf @ 2010-10-06  3:30 UTC (permalink / raw)
  To: johannes, linville; +Cc: linux-wireless

Print survey busy information, if present.

This does not include the neccessay update to nl80211.h.

Signed-off-by: Bruno Randolf <br1@einfach.org>

--
the iw part of the survey series, in case it gets accepted :)
---
 survey.c |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/survey.c b/survey.c
index f9f2508..3257e9f 100644
--- a/survey.c
+++ b/survey.c
@@ -23,6 +23,9 @@ static int print_survey_handler(struct nl_msg *msg, void *arg)
 	static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
 		[NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
 		[NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
+		[NL80211_SURVEY_INFO_BUSY] = { .type = NLA_U8 },
+		[NL80211_SURVEY_INFO_BUSY_TX] = { .type = NLA_U8 },
+		[NL80211_SURVEY_INFO_BUSY_RX] = { .type = NLA_U8 },
 	};
 
 	nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
@@ -49,6 +52,18 @@ static int print_survey_handler(struct nl_msg *msg, void *arg)
 	if (sinfo[NL80211_SURVEY_INFO_NOISE])
 		printf("\tnoise:\t\t%d dBm\n",
 			(int8_t)nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]));
+	if (sinfo[NL80211_SURVEY_INFO_BUSY])
+		printf("\tbusy:\t\t%d%%\n",
+			((int8_t)nla_get_u8(sinfo[NL80211_SURVEY_INFO_BUSY])
+			* 100) / 255);
+	if (sinfo[NL80211_SURVEY_INFO_BUSY_RX])
+		printf("\tbusy rx:\t%d%%\n",
+			((int8_t)nla_get_u8(sinfo[NL80211_SURVEY_INFO_BUSY_RX])
+			* 100) / 255);
+	if (sinfo[NL80211_SURVEY_INFO_BUSY_TX])
+		printf("\tbusy tx:\t%d%%\n",
+			((int8_t)nla_get_u8(sinfo[NL80211_SURVEY_INFO_BUSY_TX])
+			* 100) / 255);
 	return NL_SKIP;
 }
 


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-10-06  3:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-06  3:30 [PATCH] iw: add survey busy ratios Bruno Randolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox