From owner-svn-src-user@FreeBSD.ORG Fri Aug 12 15:13:06 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC403106564A; Fri, 12 Aug 2011 15:13:06 +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 CC11C8FC14; Fri, 12 Aug 2011 15:13:06 +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 p7CFD651069672; Fri, 12 Aug 2011 15:13:06 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p7CFD6dv069670; Fri, 12 Aug 2011 15:13:06 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201108121513.p7CFD6dv069670@svn.freebsd.org> From: Adrian Chadd Date: Fri, 12 Aug 2011 15:13:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r224801 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Aug 2011 15:13:06 -0000 Author: adrian Date: Fri Aug 12 15:13:06 2011 New Revision: 224801 URL: http://svn.freebsd.org/changeset/base/224801 Log: Updates Modified: user/adrian/if_ath_tx/sys/dev/ath/README Modified: user/adrian/if_ath_tx/sys/dev/ath/README ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/README Fri Aug 12 15:06:12 2011 (r224800) +++ user/adrian/if_ath_tx/sys/dev/ath/README Fri Aug 12 15:13:06 2011 (r224801) @@ -15,10 +15,19 @@ Things that need doing! * Send BAR when needed + after TX failure - + when else? + + when else? When shutting down an aggregation session and flushing packets? + + ieee80211_send_bar() will only work if IEEE80211_AGGR_RUNNING is set; + what's that mean for trying to send BAR frames during session teardown? + + it'll call raw_xmit to send the BAR, so the various bits of TX code + are going to have to be recursive. How's that going to work out for us? + (think: with all the TXQ node locks being held..) + + ic->ic_bar_response(ni, tap, status) is called on BAR response, and + ieee80211_ampdu_stop(ni, tap, IEEE80211_REASON_TIMEOUT) is called on + repeated failure to ACK the BAR. * DELBA - ie, downgrade existing packets in the SWQ + What about stuff in the HWQ? + + This is done, just completely and totally untested at the moment * 20<->2040 mode change? + part of this project or not?