From owner-svn-src-all@FreeBSD.ORG Wed Aug 15 08:06:07 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B360B106566C; Wed, 15 Aug 2012 08:06:07 +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 9E29F8FC1B; Wed, 15 Aug 2012 08:06:07 +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 q7F867vV023708; Wed, 15 Aug 2012 08:06:07 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7F867Ap023705; Wed, 15 Aug 2012 08:06:07 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201208150806.q7F867Ap023705@svn.freebsd.org> From: Adrian Chadd Date: Wed, 15 Aug 2012 08:06:07 +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: r239289 - 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: Wed, 15 Aug 2012 08:06:07 -0000 Author: adrian Date: Wed Aug 15 08:06:06 2012 New Revision: 239289 URL: http://svn.freebsd.org/changeset/base/239289 Log: Bump up the rate control table size to incorporate 3 stream entries. 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 Wed Aug 15 07:56:48 2012 (r239288) +++ head/sys/dev/ath/ath_hal/ah.h Wed Aug 15 08:06:06 2012 (r239289) @@ -550,7 +550,7 @@ enum { typedef struct { int rateCount; /* NB: for proper padding */ - uint8_t rateCodeToIndex[144]; /* back mapping */ + uint8_t rateCodeToIndex[256]; /* back mapping */ struct { uint8_t valid; /* valid for rate control use */ uint8_t phy; /* CCK/OFDM/XR */ @@ -564,12 +564,12 @@ typedef struct { * rate; used for dur. calcs */ uint16_t lpAckDuration; /* long preamble ACK duration */ uint16_t spAckDuration; /* short preamble ACK duration*/ - } info[32]; + } info[64]; } HAL_RATE_TABLE; typedef struct { u_int rs_count; /* number of valid entries */ - uint8_t rs_rates[32]; /* rates */ + uint8_t rs_rates[64]; /* rates */ } HAL_RATE_SET; /*