svn commit: r309707 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Thu Dec 8 07:57:17 UTC 2016


Author: adrian
Date: Thu Dec  8 07:57:16 2016
New Revision: 309707
URL: https://svnweb.freebsd.org/changeset/base/309707

Log:
  [net80211] add a field for storing a 64 bit TSC.

Modified:
  head/sys/net80211/ieee80211_freebsd.h

Modified: head/sys/net80211/ieee80211_freebsd.h
==============================================================================
--- head/sys/net80211/ieee80211_freebsd.h	Thu Dec  8 07:56:25 2016	(r309706)
+++ head/sys/net80211/ieee80211_freebsd.h	Thu Dec  8 07:57:16 2016	(r309707)
@@ -731,11 +731,13 @@ int	ieee80211_get_toa_params(struct mbuf
 #define	IEEE80211_F_SURVEY_TIME		0x00000001
 #define	IEEE80211_F_SURVEY_TIME_BUSY	0x00000002
 #define	IEEE80211_F_SURVEY_NOISE_DBM	0x00000004
+#define	IEEE80211_F_SURVEY_TSC		0x00000008
 struct ieee80211_channel_survey {
 	uint32_t s_flags;
 	uint32_t s_time;
 	uint32_t s_time_busy;
-	int s_noise;
+	int32_t s_noise;
+	uint64_t s_tsc;
 };
 
 #endif /* _KERNEL */


More information about the svn-src-head mailing list