From owner-svn-src-all@FreeBSD.ORG Sat Apr 28 08:12:51 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E524D106566B; Sat, 28 Apr 2012 08:12:51 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D02CF8FC0A; Sat, 28 Apr 2012 08:12:51 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q3S8CpSM049481; Sat, 28 Apr 2012 08:12:51 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q3S8Cp8D049479; Sat, 28 Apr 2012 08:12:51 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201204280812.q3S8Cp8D049479@svn.freebsd.org> From: Adrian Chadd Date: Sat, 28 Apr 2012 08:12:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234749 - head/sys/dev/ath/ath_hal X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Apr 2012 08:12:52 -0000 Author: adrian Date: Sat Apr 28 08:12:51 2012 New Revision: 234749 URL: http://svn.freebsd.org/changeset/base/234749 Log: Extend the HAL channel survey statistics: * include ext_chan_busy; * include ofdm/cck phy error counts, which aren't yet implemented. Modified: head/sys/dev/ath/ath_hal/ah.h Modified: head/sys/dev/ath/ath_hal/ah.h ============================================================================== --- head/sys/dev/ath/ath_hal/ah.h Sat Apr 28 05:00:47 2012 (r234748) +++ head/sys/dev/ath/ath_hal/ah.h Sat Apr 28 08:12:51 2012 (r234749) @@ -660,7 +660,11 @@ typedef struct { uint32_t tx_busy; uint32_t rx_busy; uint32_t chan_busy; + uint32_t ext_chan_busy; uint32_t cycle_count; + /* XXX TODO */ + uint32_t ofdm_phyerr_count; + uint32_t cck_phyerr_count; } HAL_SURVEY_SAMPLE; /*