/src/sys/arch/mips/cavium/dev/ |
octeon_pip.c | 274 uint64_t tmp, pkts; local in function:octpip_stats 289 pkts = __SHIFTOUT(tmp, PIP_STAT0_PRTN_DRP_PKTS); 290 if_statadd(ifp, if_iqdrops, pkts);
|
/src/sys/arch/mips/adm5120/dev/ |
if_admsw.c | 917 int pkts = 0; local in function:admsw_rxintr 973 pkts++; 1011 if (pkts) 1014 if (pkts == ADMSW_NRXLDESC)
|
/src/sys/arch/mips/alchemy/dev/ |
if_aumac.c | 550 int pkts = 0; local in function:aumac_txintr 557 pkts++; 588 if (pkts) 601 return pkts; 616 int pkts = 0; local in function:aumac_rxintr 622 pkts++; 725 if (pkts) 727 if (pkts == AUMAC_NRXDESC) 733 return pkts;
|
/src/sys/dev/ic/ |
bcmgenet.c | 707 int pkts = 0; local in function:genet_rxintr 780 ++pkts; 789 if (pkts != 0) 790 rnd_add_uint32(&sc->sc_rndsource, pkts); 797 int cidx, i, pkts = 0; local in function:genet_txintr 802 pkts += genet_free_txbuf(sc, i); 807 if (pkts != 0) { 808 if_statadd(ifp, if_opackets, pkts); 809 rnd_add_uint32(&sc->sc_rndsource, pkts);
|
dwc_eqos.c | 803 int error, index, pkts = 0; local in function:eqos_rxintr 911 ++pkts; 937 if (pkts != 0) { 938 rnd_add_uint32(&sc->sc_rndsource, pkts); 949 int i, pkts = 0; local in function:eqos_txintr 975 ++pkts; 1004 if (pkts != 0) { 1005 rnd_add_uint32(&sc->sc_rndsource, pkts);
|
/src/sys/dev/usb/ |
vhci.c | 228 vhci_packet_list_t pkts; member in struct:vhci_xfer 338 TAILQ_INIT(&vxfer->pkts); 339 TAILQ_INSERT_TAIL(&vxfer->pkts, req, xferlist); 341 TAILQ_INSERT_TAIL(&vxfer->pkts, res, xferlist); 343 TAILQ_INSERT_TAIL(&vxfer->pkts, dat, xferlist); 372 TAILQ_REMOVE(&vxfer->pkts, pkt, xferlist); 380 KASSERT(TAILQ_FIRST(&vxfer->pkts) == NULL); 456 KASSERT(TAILQ_FIRST(&vxfer->pkts) == NULL); 661 pkt = TAILQ_FIRST(&vxfer->pkts); 665 KASSERT(TAILQ_FIRST(&vxfer->pkts) == NULL) [all...] |
/src/sys/dev/pci/ |
if_msk.c | 2013 int pkts = 0; local in function:msk_start 2034 pkts++; 2042 if (pkts == 0)
|
if_sk.c | 1953 int pkts = 0; local in function:sk_start 1975 pkts++; 1983 if (pkts == 0)
|
if_bwfm_pci.c | 106 struct bwfm_pci_buf *pkts; member in struct:bwfm_pci_pkts 716 sc->sc_rx_pkts.pkts = kmem_zalloc(BWFM_NUM_RX_PKTIDS * 721 &sc->sc_rx_pkts.pkts[i].bb_map); 725 sc->sc_tx_pkts.pkts = kmem_zalloc(BWFM_NUM_TX_PKTIDS 730 &sc->sc_tx_pkts.pkts[i].bb_map); 927 bwfm_pci_pktid_avail(struct bwfm_pci_softc *sc, struct bwfm_pci_pkts *pkts) 931 idx = pkts->last + 1; 932 for (i = 0; i < pkts->npkt; i++) { 933 if (idx == pkts->npkt) 935 if (pkts->pkts[idx].bb_m == NULL [all...] |
if_bge.c | 5519 int pkts = 0; local in function:bge_start_locked 5570 pkts++; 5578 if (pkts == 0)
|
if_mcx.c | 550 pkts, enumerator in enum:mcx_ppcnt_rfc2819
|
/src/sys/dev/marvell/ |
if_mvgbe.c | 1070 int pkts = 0; local in function:mvgbe_start 1099 pkts++; 1107 if (pkts == 0)
|
/src/sys/dev/hyperv/ |
if_hvn.c | 1358 int error, pkts; local in function:hvn_flush_txagg 1368 pkts = txr->txr_stat_pkts; 1381 if_statadd(ifp, if_oerrors, pkts); 2593 uint32_t size, pkts; local in function:hvn_set_txagg 2614 pkts = 0; 2626 pkts = UINT32_MAX; 2628 pkts = sc->sc_agg_pkts; 2630 if (pkts > sc->sc_rndis_agg_pkts) 2631 pkts = sc->sc_rndis_agg_pkts; 2633 if (pkts <= 1) [all...] |