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");
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"