From owner-svn-src-projects@FreeBSD.ORG Tue Jun 30 19:35:50 2009 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9F2C106564A; Tue, 30 Jun 2009 19:35:50 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9898D8FC15; Tue, 30 Jun 2009 19:35:50 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5UJZoPO090342; Tue, 30 Jun 2009 19:35:50 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5UJZo1J090340; Tue, 30 Jun 2009 19:35:50 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <200906301935.n5UJZo1J090340@svn.freebsd.org> From: Rui Paulo Date: Tue, 30 Jun 2009 19:35:50 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r195206 - projects/mesh11s/sys/net80211 X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2009 19:35:51 -0000 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]; }; /*