From owner-svn-src-user@FreeBSD.ORG Mon Sep 19 04:08:52 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 E17C3106564A; Mon, 19 Sep 2011 04:08:52 +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 D23058FC08; Mon, 19 Sep 2011 04:08:52 +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 p8J48qj4062625; Mon, 19 Sep 2011 04:08:52 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p8J48qNM062623; Mon, 19 Sep 2011 04:08:52 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201109190408.p8J48qNM062623@svn.freebsd.org> From: Adrian Chadd Date: Mon, 19 Sep 2011 04:08:52 +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: r225656 - 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: Mon, 19 Sep 2011 04:08:53 -0000 Author: adrian Date: Mon Sep 19 04:08:52 2011 New Revision: 225656 URL: http://svn.freebsd.org/changeset/base/225656 Log: Add a comment - there's no need to update the BAW here. It's likely I'll have to fiddle with the BAW flags though, or debugging messages will be triggered. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c Mon Sep 19 04:06:56 2011 (r225655) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c Mon Sep 19 04:08:52 2011 (r225656) @@ -2441,6 +2441,9 @@ ath_tx_normal_comp(struct ath_softc *sc, /* * Handle cleanup of aggregate session packets that aren't * an A-MPDU. + * + * There's no need to update the BAW here - the session is being + * torn down. */ static void ath_tx_comp_cleanup_unaggr(struct ath_softc *sc, struct ath_buf *bf) @@ -2884,7 +2887,9 @@ ath_tx_comp_aggr_error(struct ath_softc /* * Handle clean-up of packets from an aggregate list. - * XXX update BAW? + * + * There's no need to update the BAW here - the session is being + * torn down. */ static void ath_tx_comp_cleanup_aggr(struct ath_softc *sc, struct ath_buf *bf_first)