From owner-cvs-src-old@FreeBSD.ORG Thu Jan 20 05:49:24 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DAEC106566C for ; Thu, 20 Jan 2011 05:49:24 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D1C128FC1A for ; Thu, 20 Jan 2011 05:49:23 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p0K5nNNg004052 for ; Thu, 20 Jan 2011 05:49:23 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p0K5nNQ5004051 for cvs-src-old@freebsd.org; Thu, 20 Jan 2011 05:49:23 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201101200549.p0K5nNQ5004051@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Thu, 20 Jan 2011 05:49:15 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath/ath_hal ah.h src/sys/dev/ath/ath_hal/ar5210 ar5210.h ar5210_attach.c ar5210_xmit.c src/sys/dev/ath/ath_hal/ar5211 ar5211.h ar5211_attach.c ar5211_xmit.c src/sys/dev/ath/ath_hal/ar5212 ar5212.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2011 05:49:24 -0000 adrian 2011-01-20 05:49:15 UTC FreeBSD src repository Modified files: sys/dev/ath/ath_hal ah.h sys/dev/ath/ath_hal/ar5210 ar5210.h ar5210_attach.c ar5210_xmit.c sys/dev/ath/ath_hal/ar5211 ar5211.h ar5211_attach.c ar5211_xmit.c sys/dev/ath/ath_hal/ar5212 ar5212.h ar5212_attach.c ar5212_xmit.c sys/dev/ath/ath_hal/ar5416 ar5416.h ar5416_attach.c ar5416_xmit.c Log: SVN rev 217621 on 2011-01-20 05:49:15Z by adrian Add a new HAL method to retrieve the completion schedule. It sets the completion schedule from the hardware and returns AH_TRUE if the hardware supports multi-rate retries (AR5212 and above); and returns AH_FALSE if the hardware doesn't support multi-rate retries. The sample rate module directly reads the TX completion descriptor and extracts the TX schedule information from that. It will be updated in a future commit to instead use this method to determine the completion schedule. Revision Changes Path 1.15 +2 -0 src/sys/dev/ath/ath_hal/ah.h 1.4 +2 -0 src/sys/dev/ath/ath_hal/ar5210/ar5210.h 1.8 +1 -0 src/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c 1.3 +9 -0 src/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c 1.5 +2 -0 src/sys/dev/ath/ath_hal/ar5211/ar5211.h 1.8 +1 -0 src/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c 1.3 +10 -0 src/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c 1.9 +2 -0 src/sys/dev/ath/ath_hal/ar5212/ar5212.h 1.11 +1 -0 src/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c 1.7 +21 -0 src/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c 1.11 +2 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416.h 1.14 +1 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c 1.6 +22 -0 src/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c