svn commit: r195206 - projects/mesh11s/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Tue Jun 30 19:35:51 UTC 2009


Author: rpaulo
Date: Tue Jun 30 19:35:50 2009
New Revision: 195206
URL: http://svn.freebsd.org/changeset/base/195206

Log:
  Add some stats.
  
  Submited by:	sam
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/net80211/ieee80211_ioctl.h

Modified: projects/mesh11s/sys/net80211/ieee80211_ioctl.h
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_ioctl.h	Tue Jun 30 19:30:58 2009	(r195205)
+++ projects/mesh11s/sys/net80211/ieee80211_ioctl.h	Tue Jun 30 19:35:50 2009	(r195206)
@@ -223,7 +223,14 @@ struct ieee80211_stats {
 	uint32_t	is_tx_ctl;		/* tx ctrl frames */
 	uint32_t	is_ampdu_rexmt;		/* A-MPDU frames rexmt ok */
 	uint32_t	is_ampdu_rexmt_fail;	/* A-MPDU frames rexmt fail */
-	uint32_t	is_spare[16];
+
+	uint32_t	is_mesh_fwd_seqno;	/* mesh not fwd'd 'cuz seq# */
+	uint32_t	is_mesh_fwd_ttl;	/* mesh not fwd'd 'cuz ttl 0 */
+	uint32_t	is_mesh_fwd_nobuf;	/* mesh not fwd'd 'cuz no mbuf*/
+	uint32_t	is_mesh_fwd_tooshort;	/* mesh not fwd'd 'cuz no hdr */
+	uint32_t	is_mesh_fwd_disabled;	/* mesh not fwd'd 'cuz disabled */
+	uint32_t	is_mesh_fwd_nopath;	/* mesh not fwd'd 'cuz path unknown */
+	uint32_t	is_spare[14];
 };
 
 /*


More information about the svn-src-projects mailing list