From owner-cvs-src-old@FreeBSD.ORG Sat May 7 06:45:50 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 6E0C2106564A for ; Sat, 7 May 2011 06:45:50 +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 5BE408FC0C for ; Sat, 7 May 2011 06:45:50 +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 p476jo3q044160 for ; Sat, 7 May 2011 06:45:50 GMT (envelope-from adrian@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p476joSG044159 for cvs-src-old@freebsd.org; Sat, 7 May 2011 06:45:50 GMT (envelope-from adrian@repoman.freebsd.org) Message-Id: <201105070645.p476joSG044159@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to adrian@repoman.freebsd.org using -f From: Adrian Chadd Date: Sat, 7 May 2011 06:45:35 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath/ath_hal ah_debug.h src/sys/dev/ath/ath_hal/ar5416 ar5416_misc.c 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: Sat, 07 May 2011 06:45:50 -0000 adrian 2011-05-07 06:45:35 UTC FreeBSD src repository Modified files: sys/dev/ath/ath_hal ah_debug.h sys/dev/ath/ath_hal/ar5416 ar5416_misc.c Log: SVN rev 221580 on 2011-05-07 06:45:35Z by adrian Some BB hang changes: * Add Howl (ar9130) to the list of chips that have DFS/BB/MAC hangs * Don't treat unknown BB hangs as fatal; ath9k/Atheros HAL don't treat it as such. * Add HAL_DEBUG_DFS to the debug fields in ath_hal/ah_debug.h The BB hang check simply loops over an observation register checking for a stuck state engine, but it can happen under high traffic conditions. Ath9k and the Atheros HAL simply log a debug message and continue. Private to FreeBSD: * Add HAL_DEBUG_HANG to the debug fields * Change the hang debugging to HAL_DEBUG_HANG rather than HAL_DEBUG_DFS like in the Atheros HAL. Obtained from: Atheros Revision Changes Path 1.5 +2 -0 src/sys/dev/ath/ath_hal/ah_debug.h 1.11 +6 -6 src/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c