Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Apr 2016 20:32:32 +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: r297562 - head/sys/net80211
Message-ID:  <201604042032.u34KWWmc004956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Mon Apr  4 20:32:31 2016
New Revision: 297562
URL: https://svnweb.freebsd.org/changeset/base/297562

Log:
  [net80211] add amsdu and fast frames encap failure counters in the ioctl
  definition.
  
  The code to set these will come in a subsequent commit (when I start
  fleshing out A-MSDU support.)

Modified:
  head/sys/net80211/ieee80211_ioctl.h

Modified: head/sys/net80211/ieee80211_ioctl.h
==============================================================================
--- head/sys/net80211/ieee80211_ioctl.h	Mon Apr  4 17:04:33 2016	(r297561)
+++ head/sys/net80211/ieee80211_ioctl.h	Mon Apr  4 20:32:31 2016	(r297562)
@@ -246,7 +246,10 @@ struct ieee80211_stats {
 	uint32_t	is_ampdu_bar_tx_retry;	/* A-MPDU BAR frames TX rtry */
 	uint32_t	is_ampdu_bar_tx_fail;	/* A-MPDU BAR frames TX fail */
 
-	uint32_t	is_spare[7];
+	uint32_t	is_ff_encapfail;	/* failed FF encap */
+	uint32_t	is_amsdu_encapfail;	/* failed A-MSDU encap */
+
+	uint32_t	is_spare[5];
 };
 
 /*



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