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()
352 fq_cl->fcl_stat.fcl_drop_early += cnt; in fq_addq()
379 fq_cl->fcl_stat.fcl_flow_control_fail++; in fq_addq()
407 fq_cl->fcl_stat.fcl_drop_overflow += cnt; in fq_addq()
420 fq_cl->fcl_stat.fcl_overwhelming++; in fq_addq()
428 fq_cl->fcl_stat.fcl_drop_overflow += cnt; in fq_addq()
470 fq_cl->fcl_stat.fcl_pkts_compressed++; in fq_addq()
478 fq_cl->fcl_stat.fcl_byte_cnt += chain_len; in fq_addq()
479 fq_cl->fcl_stat.fcl_pkt_cnt += cnt; in fq_addq()
500 fq_cl->fcl_stat.fcl_newflows_cnt++; in fq_addq()
528 fq_cl->fcl_stat.fcl_byte_cnt -= plen; in fq_getq_flow_internal()
529 fq_cl->fcl_stat.fcl_pkt_cnt--; in fq_getq_flow_internal()
573 if (fq_cl->fcl_stat.fcl_min_qdelay == 0 || in fq_getq_flow()
574 (qdelay > 0 && (u_int64_t)qdelay < fq_cl->fcl_stat.fcl_min_qdelay)) { in fq_getq_flow()
575 fq_cl->fcl_stat.fcl_min_qdelay = qdelay; in fq_getq_flow()
578 if (fq_cl->fcl_stat.fcl_max_qdelay == 0 || in fq_getq_flow()
579 (qdelay > 0 && (u_int64_t)qdelay > fq_cl->fcl_stat.fcl_max_qdelay)) { in fq_getq_flow()
580 fq_cl->fcl_stat.fcl_max_qdelay = qdelay; in fq_getq_flow()
583 uint64_t num_dequeues = fq_cl->fcl_stat.fcl_dequeue; in fq_getq_flow()
586 fq_cl->fcl_stat.fcl_avg_qdelay = qdelay; in fq_getq_flow()
591 fq_cl->fcl_stat.fcl_dequeue = num_dequeues = 0; in fq_getq_flow()
592 fq_cl->fcl_stat.fcl_dequeue_bytes = 0; in fq_getq_flow()
593 fq_cl->fcl_stat.fcl_avg_qdelay = qdelay; in fq_getq_flow()
599 if (os_mul_overflow(fq_cl->fcl_stat.fcl_avg_qdelay, in fq_getq_flow()
601 fq_cl->fcl_stat.fcl_avg_qdelay = qdelay; in fq_getq_flow()
603 fq_cl->fcl_stat.fcl_avg_qdelay = res / in fq_getq_flow()