aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>2008-06-24 06:38:00 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-06-30 17:37:34 -0400
commitbf998f686430107fb8790ef6713f8e352a3deede (patch)
treed5dfcaf2b8ae31e44f5a4d8cd30006fd8a1e7d03 /net
parent06ff47bc9595848b818ac79e7d8069337c6e58b1 (diff)
mac80211: add last beacon time in scan list
This patch adds the interval between the scan results and the last time a beacon was received in the result of the scan. Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/mlme.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index c9f7c13d2e7e..cffef44cec05 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -4340,6 +4340,13 @@ ieee80211_sta_scan_result(struct net_device *dev,
4340 current_ev = iwe_stream_add_point(info, current_ev, 4340 current_ev = iwe_stream_add_point(info, current_ev,
4341 end_buf, 4341 end_buf,
4342 &iwe, buf); 4342 &iwe, buf);
4343 memset(&iwe, 0, sizeof(iwe));
4344 iwe.cmd = IWEVCUSTOM;
4345 sprintf(buf, " Last beacon: %dms ago",
4346 jiffies_to_msecs(jiffies - bss->last_update));
4347 iwe.u.data.length = strlen(buf);
4348 current_ev = iwe_stream_add_point(info, current_ev,
4349 end_buf, &iwe, buf);
4343 kfree(buf); 4350 kfree(buf);
4344 } 4351 }
4345 } 4352 }