From owner-svn-src-all@FreeBSD.ORG Sat Jul 14 05:53:04 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 88EF8106566B; Sat, 14 Jul 2012 05:53:04 +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 742D38FC0A; Sat, 14 Jul 2012 05:53:04 +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 q6E5r4tW011996; Sat, 14 Jul 2012 05:53:04 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6E5r4EX011994; Sat, 14 Jul 2012 05:53:04 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201207140553.q6E5r4EX011994@svn.freebsd.org> From: Adrian Chadd Date: Sat, 14 Jul 2012 05:53:04 +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: r238441 - head/sys/dev/ath 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, 14 Jul 2012 05:53:04 -0000 Author: adrian Date: Sat Jul 14 05:53:03 2012 New Revision: 238441 URL: http://svn.freebsd.org/changeset/base/238441 Log: Make sure that 'rs' is pointing to the correct RX status. Modified: head/sys/dev/ath/if_ath_rx_edma.c Modified: head/sys/dev/ath/if_ath_rx_edma.c ============================================================================== --- head/sys/dev/ath/if_ath_rx_edma.c Sat Jul 14 05:51:54 2012 (r238440) +++ head/sys/dev/ath/if_ath_rx_edma.c Sat Jul 14 05:53:03 2012 (r238441) @@ -394,6 +394,7 @@ ath_edma_recv_proc_queue(struct ath_soft * Note: this may or may not free bf->bf_m and sync/unmap * the frame. */ + rs = &bf->bf_status.ds_rxstat; if (ath_rx_pkt(sc, rs, bf->bf_rxstatus, tsf, nf, qtype, bf)) ngood++; }