From owner-svn-src-projects@FreeBSD.ORG Wed Jul 1 06:07:04 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 2E4531065670; Wed, 1 Jul 2009 06:07:04 +0000 (UTC) (envelope-from andy@fud.org.nz) Received: from mail-vw0-f193.google.com (mail-vw0-f193.google.com [209.85.212.193]) by mx1.freebsd.org (Postfix) with ESMTP id AF5618FC1A; Wed, 1 Jul 2009 06:07:03 +0000 (UTC) (envelope-from andy@fud.org.nz) Received: by vwj31 with SMTP id 31so251037vwj.3 for ; Tue, 30 Jun 2009 23:07:03 -0700 (PDT) MIME-Version: 1.0 Sender: andy@fud.org.nz Received: by 10.220.81.17 with SMTP id v17mr6329650vck.43.1246427086987; Tue, 30 Jun 2009 22:44:46 -0700 (PDT) In-Reply-To: <200907010124.n611OwC1097444@svn.freebsd.org> References: <200907010124.n611OwC1097444@svn.freebsd.org> Date: Tue, 30 Jun 2009 22:44:46 -0700 X-Google-Sender-Auth: 3ebed18db997704a Message-ID: <1280352d0906302244h6356892bpddb9c764f686448c@mail.gmail.com> From: Andrew Thompson To: Sam Leffler Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r195220 - 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: Wed, 01 Jul 2009 06:07:04 -0000 2009/6/30 Sam Leffler > Author: sam > Date: Wed Jul 1 01:24:58 2009 > New Revision: 195220 > URL: http://svn.freebsd.org/changeset/base/195220 > > Log: > o remove unused stat > o correct spare count so struct size remains the same > > Modified: > projects/mesh11s/sys/net80211/ieee80211_ioctl.h > > Modified: projects/mesh11s/sys/net80211/ieee80211_ioctl.h > > ============================================================================== > --- projects/mesh11s/sys/net80211/ieee80211_ioctl.h Wed Jul 1 01:22:28 > 2009 (r195219) > +++ projects/mesh11s/sys/net80211/ieee80211_ioctl.h Wed Jul 1 01:24:58 > 2009 (r195220) > @@ -224,13 +224,12 @@ struct ieee80211_stats { > uint32_t is_ampdu_rexmt; /* A-MPDU frames rexmt ok */ > uint32_t is_ampdu_rexmt_fail; /* A-MPDU frames rexmt fail > */ > > - 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]; > + uint32_t is_spare[11]; > }; I take it that the 14 -> 11 change fixes an existing problem as to 'remain the same size' would be 15. Andrew