Searched refs:curr_stats (Results 1 – 10 of 10) sorted by relevance
/linux/lib/dim/ |
H A D | dim.c | 59 struct dim_stats *curr_stats) in dim_calc_stats() argument 72 curr_stats->ppms = DIV_ROUND_UP(npkts * USEC_PER_MSEC, delta_us); in dim_calc_stats() 73 curr_stats->bpms = DIV_ROUND_UP(nbytes * USEC_PER_MSEC, delta_us); in dim_calc_stats() 74 curr_stats->epms = DIV_ROUND_UP(DIM_NEVENTS * USEC_PER_MSEC, in dim_calc_stats() 76 curr_stats->cpms = DIV_ROUND_UP(ncomps * USEC_PER_MSEC, delta_us); in dim_calc_stats() 77 if (curr_stats->epms != 0) in dim_calc_stats() 78 curr_stats->cpe_ratio = DIV_ROUND_DOWN_ULL( in dim_calc_stats() 79 curr_stats->cpms * 100, curr_stats->epms); in dim_calc_stats() 81 curr_stats in dim_calc_stats() [all...] |
H A D | rdma_dim.c | 44 static bool rdma_dim_decision(struct dim_stats *curr_stats, struct dim *dim) in rdma_dim_decision() argument 52 stats_res = rdma_dim_stats_compare(curr_stats, in rdma_dim_decision() 57 if (curr_stats->cpe_ratio <= 50 * prev_ix) in rdma_dim_decision() 71 dim->prev_stats = *curr_stats; in rdma_dim_decision() 79 struct dim_stats curr_stats; in rdma_dim() local 91 if (!dim_calc_stats(&dim->start_sample, curr_sample, &curr_stats)) in rdma_dim() 93 if (rdma_dim_decision(&curr_stats, dim)) { in rdma_dim()
|
H A D | net_dim.c | 297 static bool net_dim_decision(struct dim_stats *curr_stats, struct dim *dim) in net_dim_decision() argument 306 stats_res = net_dim_stats_compare(curr_stats, in net_dim_decision() 320 stats_res = net_dim_stats_compare(curr_stats, in net_dim_decision() 345 dim->prev_stats = *curr_stats; in net_dim_decision() 352 struct dim_stats curr_stats; in net_dim() local 362 if (!dim_calc_stats(&dim->start_sample, end_sample, &curr_stats)) in net_dim() 364 if (net_dim_decision(&curr_stats, dim)) { in net_dim()
|
/linux/drivers/net/ethernet/netronome/nfp/flower/ |
H A D | qos_conf.c | 350 struct nfp_stat_pair *curr_stats; in nfp_flower_stats_rlim_reply() local 368 curr_stats = &repr_priv->qos_table.curr_stats; in nfp_flower_stats_rlim_reply() 372 curr_stats->pkts = be64_to_cpu(msg->pass_pkts) + in nfp_flower_stats_rlim_reply() 374 curr_stats->bytes = be64_to_cpu(msg->pass_bytes) + in nfp_flower_stats_rlim_reply() 378 prev_stats->pkts = curr_stats->pkts; in nfp_flower_stats_rlim_reply() 379 prev_stats->bytes = curr_stats->bytes; in nfp_flower_stats_rlim_reply() 471 struct nfp_stat_pair *curr_stats; in nfp_flower_stats_rate_limiter() local 489 curr_stats = &repr_priv->qos_table.curr_stats; in nfp_flower_stats_rate_limiter() [all...] |
/linux/drivers/net/ethernet/aquantia/atlantic/hw_atl2/ |
H A D | hw_atl2_utils_fw.c | 340 struct aq_stats_s *cs = &self->curr_stats; in aq_a2_fill_a0_stats() 341 struct aq_stats_s curr_stats = *cs; in aq_a2_fill_a0_stats() local 348 curr_stats._N += stats->a0.msm._F - priv->last_stats.a0.msm._F;\ in aq_a2_fill_a0_stats() 372 *cs = curr_stats; in aq_a2_fill_a0_stats() 382 struct aq_stats_s *cs = &self->curr_stats; in aq_a2_fill_b0_stats() 383 struct aq_stats_s curr_stats = *cs; in aq_a2_fill_b0_stats() local 390 curr_stats._N += stats->b0._F - priv->last_stats.b0._F; \ in aq_a2_fill_b0_stats() 409 *cs = curr_stats; in aq_a2_fill_b0_stats() 416 struct aq_stats_s *cs = &self->curr_stats; in aq_a2_fw_update_stats()
|
H A D | hw_atl2.c | 767 return &self->curr_stats; in hw_atl2_utils_get_hw_stats()
|
/linux/drivers/net/ethernet/aquantia/atlantic/hw_atl/ |
H A D | hw_atl_utils.c | 869 struct aq_stats_s *cs = &self->curr_stats; in hw_atl_utils_update_stats() 870 struct aq_stats_s curr_stats = *cs; in hw_atl_utils_update_stats() local 880 curr_stats._N_ += mbox.stats._N_ - self->last_stats._N_; \ in hw_atl_utils_update_stats() 905 *cs = curr_stats; in hw_atl_utils_update_stats() 921 return &self->curr_stats; in hw_atl_utils_get_hw_stats()
|
/linux/include/linux/ |
H A D | dim.h | 348 * @curr_stats: delta between samples 352 * Returned boolean indicates whether curr_stats are reliable. 356 struct dim_stats *curr_stats);
|
/linux/drivers/net/ethernet/broadcom/bnxt/ |
H A D | bnxt_tc.c | 1630 struct bnxt_tc_flow_stats stats, *curr_stats, *prev_stats; in bnxt_tc_get_flow_stats() local 1643 curr_stats = &flow->stats; in bnxt_tc_get_flow_stats() 1647 stats.packets = curr_stats->packets - prev_stats->packets; in bnxt_tc_get_flow_stats() 1648 stats.bytes = curr_stats->bytes - prev_stats->bytes; in bnxt_tc_get_flow_stats() 1649 *prev_stats = *curr_stats; in bnxt_tc_get_flow_stats()
|
/linux/drivers/net/ethernet/aquantia/atlantic/ |
H A D | aq_hw.h | 188 struct aq_stats_s curr_stats; member
|