Lines Matching defs:npkt
2950 uint32_t prxs, npkt;
2956 npkt = MVNETA_PRXS_GET_ODC(prxs);
2957 if (__predict_false(npkt == 0))
2960 if (count > 0 && npkt > count) {
2962 npkt = count;
2964 mvneta_rx_queue(sc, q, npkt);
2996 mvneta_rx_queue(struct mvneta_softc *sc, int q, int npkt)
3018 for (i = 0; i < npkt; i++) {
3105 CTR3(KTR_SPARE2, "%s:%u %u packets received", if_name(ifp), q, npkt);
3137 int npkt, refill, nsegs, error;
3152 for (npkt = 0; npkt < refill; npkt++) {
3177 if (npkt == 0) {
3186 while (__predict_false(npkt > 255)) {
3189 npkt -= 255;
3191 if (__predict_true(npkt > 0)) {
3192 prxsu = MVNETA_PRXSU_NOOFNEWDESCRIPTORS(npkt);