Lines Matching refs:fcl_stat
139 fq_cl->fcl_stat.fcl_dequeue_stall++; in fq_detect_dequeue_stall()
142 fq_cl->fcl_stat.fcl_dequeue_stall, flowq->fq_sc_index, in fq_detect_dequeue_stall()
209 fq_cl->fcl_stat.fcl_pkts_compressible++; in fq_compressor()
251 fq_cl->fcl_stat.fcl_byte_cnt -= old_pktlen; in fq_compressor()
252 fq_cl->fcl_stat.fcl_pkt_cnt--; in fq_compressor()
311 fq_cl->fcl_stat.fcl_drop_memfailure += cnt; in fq_addq()
329 fq_cl->fcl_stat.fcl_drop_early += cnt; in fq_addq()
351 fq_cl->fcl_stat.fcl_drop_early += cnt; in fq_addq()
378 fq_cl->fcl_stat.fcl_flow_control_fail++; in fq_addq()
409 fq_cl->fcl_stat.fcl_drop_overflow += cnt; in fq_addq()
451 fq_cl->fcl_stat.fcl_pkts_compressed++; in fq_addq()
459 fq_cl->fcl_stat.fcl_byte_cnt += chain_len; in fq_addq()
460 fq_cl->fcl_stat.fcl_pkt_cnt += cnt; in fq_addq()
481 fq_cl->fcl_stat.fcl_newflows_cnt++; in fq_addq()
509 fq_cl->fcl_stat.fcl_byte_cnt -= plen; in fq_getq_flow_internal()
510 fq_cl->fcl_stat.fcl_pkt_cnt--; in fq_getq_flow_internal()
554 if (fq_cl->fcl_stat.fcl_min_qdelay == 0 || in fq_getq_flow()
555 (qdelay > 0 && (u_int64_t)qdelay < fq_cl->fcl_stat.fcl_min_qdelay)) { in fq_getq_flow()
556 fq_cl->fcl_stat.fcl_min_qdelay = qdelay; in fq_getq_flow()
559 if (fq_cl->fcl_stat.fcl_max_qdelay == 0 || in fq_getq_flow()
560 (qdelay > 0 && (u_int64_t)qdelay > fq_cl->fcl_stat.fcl_max_qdelay)) { in fq_getq_flow()
561 fq_cl->fcl_stat.fcl_max_qdelay = qdelay; in fq_getq_flow()
564 uint64_t num_dequeues = fq_cl->fcl_stat.fcl_dequeue; in fq_getq_flow()
567 fq_cl->fcl_stat.fcl_avg_qdelay = qdelay; in fq_getq_flow()
572 fq_cl->fcl_stat.fcl_dequeue = num_dequeues = 0; in fq_getq_flow()
573 fq_cl->fcl_stat.fcl_dequeue_bytes = 0; in fq_getq_flow()
574 fq_cl->fcl_stat.fcl_avg_qdelay = qdelay; in fq_getq_flow()
580 if (os_mul_overflow(fq_cl->fcl_stat.fcl_avg_qdelay, in fq_getq_flow()
582 fq_cl->fcl_stat.fcl_avg_qdelay = qdelay; in fq_getq_flow()
584 fq_cl->fcl_stat.fcl_avg_qdelay = res / in fq_getq_flow()