Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 8 Dec 2016 07:57:16 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r309707 - head/sys/net80211
Message-ID:  <201612080757.uB87vGKv033011@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612080757.uB87vGKv033011>