Searched refs:sc_stats (Results 1 - 25 of 25) sorted by relevance

/freebsd-11.0-release/sys/dev/ath/
H A Dif_ath_sysctl.c469 printf("no tx bufs (empty list): %d\n", sc->sc_stats.ast_tx_getnobuf);
470 printf("no tx bufs (was busy): %d\n", sc->sc_stats.ast_tx_getbusybuf);
1012 memset(&sc->sc_stats, 0, sizeof(sc->sc_stats));
1033 SYSCTL_ADD_UINT(ctx, child, OID_AUTO, sn, CTLFLAG_RD, &sc->sc_stats.ast_rx_phy[i], 0, "");
1077 &sc->sc_stats.ast_watchdog, 0, "device reset by watchdog");
1079 &sc->sc_stats.ast_hardware, 0, "fatal hardware error interrupts");
1081 &sc->sc_stats.ast_bmiss, 0, "beacon miss interrupts");
1083 &sc->sc_stats.ast_bmiss_phantom, 0, "beacon miss interrupts");
1085 &sc->sc_stats
[all...]
H A Dif_ath_ioctl.c250 sc->sc_stats.ast_tx_packets = 0;
251 sc->sc_stats.ast_rx_packets = 0;
254 sc->sc_stats.ast_tx_packets += ifp->if_get_counter(ifp,
256 sc->sc_stats.ast_rx_packets += ifp->if_get_counter(ifp,
259 sc->sc_stats.ast_tx_rssi = ATH_RSSI(sc->sc_halstats.ns_avgtxrssi);
260 sc->sc_stats.ast_rx_rssi = ATH_RSSI(sc->sc_halstats.ns_avgrssi);
262 sc->sc_stats.ast_tdma_tsfadjp = TDMA_AVG(sc->sc_avgtsfdeltap);
263 sc->sc_stats.ast_tdma_tsfadjm = TDMA_AVG(sc->sc_avgtsfdeltam);
266 sc->sc_stats.ast_tx_rate =
269 sc->sc_stats
[all...]
H A Dif_ath_rx.c268 sc->sc_stats.ast_rx_nombuf++;
281 sc->sc_stats.ast_rx_busdma++;
653 sc->sc_stats.ast_rx_halfgi++;
655 sc->sc_stats.ast_rx_2040++;
657 sc->sc_stats.ast_rx_pre_crc_err++;
659 sc->sc_stats.ast_rx_post_crc_err++;
661 sc->sc_stats.ast_rx_decrypt_busy_err++;
663 sc->sc_stats.ast_rx_hi_rx_chain++;
665 sc->sc_stats.ast_rx_stbc++;
670 sc->sc_stats
[all...]
H A Dif_ath.c2106 sc->sc_stats.ast_hardware++;
2152 sc->sc_stats.ast_rxeol++;
2189 sc->sc_stats.ast_txurn++;
2198 sc->sc_stats.ast_rx_intr++;
2202 sc->sc_stats.ast_tx_intr++;
2223 sc->sc_stats.ast_bmiss++;
2227 sc->sc_stats.ast_tx_timeout++;
2229 sc->sc_stats.ast_tx_cst++;
2231 sc->sc_stats.ast_mib++;
2256 sc->sc_stats
[all...]
H A Dif_ath_beacon.c205 sc->sc_stats.ast_be_nombuf++;
305 antenna = ((sc->sc_stats.ast_be_xmit / sc->sc_nbcnvaps) & 4 ? 2 : 1);
307 antenna = (sc->sc_stats.ast_be_xmit & 4 ? 2 : 1);
446 sc->sc_stats.ast_be_missed++;
557 sc->sc_stats.ast_be_xmit++;
733 sc->sc_stats.ast_cabq_busy++;
806 sc->sc_stats.ast_cabq_xmit += nmcastq;
H A Dif_ath_tx.c303 sc->sc_stats.ast_tx_busdma++;
313 sc->sc_stats.ast_tx_linear++;
317 sc->sc_stats.ast_tx_nombuf++;
325 sc->sc_stats.ast_tx_busdma++;
332 sc->sc_stats.ast_tx_nodata++;
1067 sc->sc_stats.ast_tx_protect++;
1082 sc->sc_stats.ast_tx_htprotect++;
1602 sc->sc_stats.ast_tx_shortpre++;
1726 sc->sc_stats.ast_tx_rts++;
1729 sc->sc_stats
[all...]
H A Dif_ath_tdma.c370 sc->sc_stats.ast_tdma_update++;
574 sc->sc_stats.ast_tdma_timers++;
600 sc->sc_stats.ast_tdma_tsf++;
676 sc->sc_stats.ast_be_xmit++; /* XXX per-vap? */
H A Dif_ath_tx_ht.c358 sc->sc_stats.ast_tx_ldpc++;
362 sc->sc_stats.ast_tx_stbc++;
H A Dif_ath_tx_edma.c972 sc->sc_stats.ast_tx_rssi = ts.ts_rssi;
H A Dif_ath_rx_edma.c390 sc->sc_stats.ast_rx_noise = nf;
H A Dif_athvar.h558 struct ath_stats sc_stats; /* device statistics */ member in struct:ath_softc
/freebsd-11.0-release/sys/dev/mwl/
H A Dif_mwl.c833 sc->sc_stats.mst_rx_badtkipicv++;
861 sc->sc_stats.mst_radardetect++;
901 sc->sc_stats.mst_bawatchdog++;
906 sc->sc_stats.mst_bawatchdog_failed++;
923 sc->sc_stats.mst_bawatchdog_empty++;
933 sc->sc_stats.mst_bawatchdog_notfound++;
1367 sc->sc_stats.mst_tx_qstop++;
1372 sc->sc_stats.mst_tx_qdrop++;
1439 sc->sc_stats.mst_tx_qstop++;
2461 sc->sc_stats
[all...]
H A Dif_mwlvar.h250 struct mwl_stats sc_stats; /* interface statistics */ member in struct:mwl_softc
/freebsd-11.0-release/sys/dev/wi/
H A Dif_wivar.h135 struct wi_counters sc_stats; member in struct:wi_softc
H A Dif_wi.c1488 len = min(le16toh(ltbuf[0]) - 1, sizeof(sc->sc_stats) / 4);
1489 ptr = (u_int32_t *)&sc->sc_stats;
/freebsd-11.0-release/sys/dev/usb/wlan/
H A Dif_urtwvar.h178 struct urtw_stats sc_stats; member in struct:urtw_softc
H A Dif_urtw.c1707 sc->sc_stats.txrates[sc->sc_currate]++;
4347 struct urtw_stats *stats = &sc->sc_stats;
/freebsd-11.0-release/sys/dev/ath/ath_rate/onoe/
H A Donoe.c365 sc->sc_stats.ast_rate_drop++;
376 sc->sc_stats.ast_rate_raise++;
/freebsd-11.0-release/sys/dev/et/
H A Dif_etvar.h323 struct et_hw_stats sc_stats; member in struct:et_softc
H A Dif_et.c2469 stats = &sc->sc_stats;
2632 stats = &sc->sc_stats;
2688 stats = &sc->sc_stats;
/freebsd-11.0-release/sys/dev/iwm/
H A Dif_iwmvar.h516 struct iwm_notif_statistics sc_stats; member in struct:iwm_softc
H A Dif_iwm.c5169 memcpy(&sc->sc_stats, stats, sizeof(sc->sc_stats));
/freebsd-11.0-release/sys/arm/xscale/ixp425/
H A Dif_npe.c143 struct npestats *sc_stats; member in struct:npe_softc
145 bus_addr_t sc_stats_phys; /* phys addr of sc_stats */
146 struct npestats sc_totals; /* accumulated sc_stats */
747 if (bus_dmamem_alloc(sc->sc_stats_tag, (void **)&sc->sc_stats,
755 sc->sc_stats, sizeof(struct npestats), npe_getaddr, sc, 0) != 0) {
823 if (sc->sc_stats != NULL) {
825 bus_dmamem_free(sc->sc_stats_tag, sc->sc_stats,
877 struct npestats *ns = sc->sc_stats;
/freebsd-11.0-release/sys/dev/txp/
H A Dif_txpreg.h676 struct txp_hw_stats sc_stats; member in struct:txp_softc
H A Dif_txp.c2815 bcopy(&sc->sc_stats, &sc->sc_ostats, sizeof(struct txp_hw_stats));
2828 stats = &sc->sc_stats;
2868 stats = &sc->sc_stats;
2912 stats = &sc->sc_stats;

Completed in 298 milliseconds