From owner-svn-src-head@FreeBSD.ORG Mon Sep 17 01:18:48 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6EB4B106566C; Mon, 17 Sep 2012 01:18:48 +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 59E5E8FC08; Mon, 17 Sep 2012 01:18:48 +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 q8H1Im5t021340; Mon, 17 Sep 2012 01:18:48 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q8H1ImMg021338; Mon, 17 Sep 2012 01:18:48 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201209170118.q8H1ImMg021338@svn.freebsd.org> From: Adrian Chadd Date: Mon, 17 Sep 2012 01:18:48 +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: r240584 - head/sys/dev/ath X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Sep 2012 01:18:48 -0000 Author: adrian Date: Mon Sep 17 01:18:47 2012 New Revision: 240584 URL: http://svn.freebsd.org/changeset/base/240584 Log: Add a debug bit for TX destination filtering. Modified: head/sys/dev/ath/if_ath_debug.h Modified: head/sys/dev/ath/if_ath_debug.h ============================================================================== --- head/sys/dev/ath/if_ath_debug.h Mon Sep 17 01:09:17 2012 (r240583) +++ head/sys/dev/ath/if_ath_debug.h Mon Sep 17 01:18:47 2012 (r240584) @@ -65,6 +65,7 @@ enum { ATH_DEBUG_FATAL = 0x080000000ULL, /* fatal errors */ ATH_DEBUG_SW_TX_BAR = 0x100000000ULL, /* BAR TX */ ATH_DEBUG_EDMA_RX = 0x200000000ULL, /* RX EDMA state */ + ATH_DEBUG_SW_TX_FILT = 0x400000000ULL, /* SW TX FF */ ATH_DEBUG_ANY = 0xffffffffffffffffULL };