Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Apr 2011 14:14:54 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r220784 - head/sys/dev/ath
Message-ID:  <201104181414.p3IEEsD6074413@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Mon Apr 18 14:14:54 2011
New Revision: 220784
URL: http://svn.freebsd.org/changeset/base/220784

Log:
  For now, only enable GTT. CST is firing very frequently during local tests;
  I'll figure out what's going on before re-enabling this as it does add
  to the interrupt load.

Modified:
  head/sys/dev/ath/if_ath.c

Modified: head/sys/dev/ath/if_ath.c
==============================================================================
--- head/sys/dev/ath/if_ath.c	Mon Apr 18 14:07:01 2011	(r220783)
+++ head/sys/dev/ath/if_ath.c	Mon Apr 18 14:14:54 2011	(r220784)
@@ -1565,7 +1565,7 @@ ath_init(void *arg)
 
 	/* Enable global TX timeout and carrier sense timeout if available */
 	if (ath_hal_gtxto_supported(ah))
-		sc->sc_imask |= (HAL_INT_GTT | HAL_INT_CST);
+		sc->sc_imask |= HAL_INT_GTT;
 
 	DPRINTF(sc, ATH_DEBUG_RESET, "%s: imask=0x%x\n",
 		__func__, sc->sc_imask);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104181414.p3IEEsD6074413>