svn commit: r301766 - head/sys/dev/ath

Adrian Chadd adrian at FreeBSD.org
Thu Jun 9 21:59:37 UTC 2016


Author: adrian
Date: Thu Jun  9 21:59:36 2016
New Revision: 301766
URL: https://svnweb.freebsd.org/changeset/base/301766

Log:
  [ath] report node queue overflows.
  
  I need to also update athstats to report this too.

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

Modified: head/sys/dev/ath/if_ath_sysctl.c
==============================================================================
--- head/sys/dev/ath/if_ath_sysctl.c	Thu Jun  9 21:59:35 2016	(r301765)
+++ head/sys/dev/ath/if_ath_sysctl.c	Thu Jun  9 21:59:36 2016	(r301766)
@@ -1282,6 +1282,9 @@ ath_sysctl_stats_attach(struct ath_softc
 	    &sc->sc_stats.ast_rx_keymiss, 0, "");
 	SYSCTL_ADD_UINT(ctx, child, OID_AUTO, "ast_tx_swfiltered", CTLFLAG_RD,
 	    &sc->sc_stats.ast_tx_swfiltered, 0, "");
+	SYSCTL_ADD_UINT(ctx, child, OID_AUTO, "ast_tx_nodeq_overflow",
+	    CTLFLAG_RD, &sc->sc_stats.ast_tx_nodeq_overflow, 0,
+	    "tx dropped 'cuz nodeq overflow");
 	SYSCTL_ADD_UINT(ctx, child, OID_AUTO, "ast_rx_stbc",
 	    CTLFLAG_RD, &sc->sc_stats.ast_rx_stbc, 0,
 	    "Number of STBC frames received");


More information about the svn-src-head mailing list