Searched refs:curr_stats (Results 1 – 11 of 11) sorted by relevance
/linux/lib/dim/ |
A D | dim.c | 58 struct dim_stats *curr_stats) in dim_calc_stats() argument 71 curr_stats->ppms = DIV_ROUND_UP(npkts * USEC_PER_MSEC, delta_us); in dim_calc_stats() 72 curr_stats->bpms = DIV_ROUND_UP(nbytes * USEC_PER_MSEC, delta_us); in dim_calc_stats() 73 curr_stats->epms = DIV_ROUND_UP(DIM_NEVENTS * USEC_PER_MSEC, in dim_calc_stats() 75 curr_stats->cpms = DIV_ROUND_UP(ncomps * USEC_PER_MSEC, delta_us); in dim_calc_stats() 76 if (curr_stats->epms != 0) in dim_calc_stats() 77 curr_stats->cpe_ratio = DIV_ROUND_DOWN_ULL( in dim_calc_stats() 78 curr_stats->cpms * 100, curr_stats->epms); in dim_calc_stats() 80 curr_stats->cpe_ratio = 0; in dim_calc_stats()
|
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 dim_calc_stats(&dim->start_sample, curr_sample, &curr_stats); in rdma_dim() 92 if (rdma_dim_decision(&curr_stats, dim)) { in rdma_dim()
|
A D | net_dim.c | 165 static bool net_dim_decision(struct dim_stats *curr_stats, struct dim *dim) in net_dim_decision() argument 174 stats_res = net_dim_stats_compare(curr_stats, in net_dim_decision() 188 stats_res = net_dim_stats_compare(curr_stats, in net_dim_decision() 213 dim->prev_stats = *curr_stats; in net_dim_decision() 220 struct dim_stats curr_stats; in net_dim() local 230 dim_calc_stats(&dim->start_sample, &end_sample, &curr_stats); in net_dim() 231 if (net_dim_decision(&curr_stats, dim)) { in net_dim()
|
/linux/drivers/net/ethernet/netronome/nfp/flower/ |
A D | qos_conf.c | 262 struct nfp_stat_pair *curr_stats; in nfp_flower_stats_rlim_reply() local 277 curr_stats = &repr_priv->qos_table.curr_stats; in nfp_flower_stats_rlim_reply() 281 curr_stats->pkts = be64_to_cpu(msg->pass_pkts) + in nfp_flower_stats_rlim_reply() 283 curr_stats->bytes = be64_to_cpu(msg->pass_bytes) + in nfp_flower_stats_rlim_reply() 287 prev_stats->pkts = curr_stats->pkts; in nfp_flower_stats_rlim_reply() 288 prev_stats->bytes = curr_stats->bytes; in nfp_flower_stats_rlim_reply() 372 struct nfp_stat_pair *curr_stats; in nfp_flower_stats_rate_limiter() local 390 curr_stats = &repr_priv->qos_table.curr_stats; in nfp_flower_stats_rate_limiter() 392 diff_pkts = curr_stats->pkts - prev_stats->pkts; in nfp_flower_stats_rate_limiter() 394 prev_stats->pkts = curr_stats->pkts; in nfp_flower_stats_rate_limiter() [all …]
|
A D | main.h | 247 struct nfp_stat_pair curr_stats; member
|
/linux/drivers/net/ethernet/aquantia/atlantic/hw_atl2/ |
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() 417 struct aq_stats_s *cs = &self->curr_stats; in aq_a2_fw_update_stats()
|
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/ |
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/ |
A D | dim.h | 241 struct dim_stats *curr_stats);
|
/linux/drivers/net/ethernet/broadcom/bnxt/ |
A D | bnxt_tc.c | 1626 struct bnxt_tc_flow_stats stats, *curr_stats, *prev_stats; in bnxt_tc_get_flow_stats() local 1639 curr_stats = &flow->stats; in bnxt_tc_get_flow_stats() 1643 stats.packets = curr_stats->packets - prev_stats->packets; in bnxt_tc_get_flow_stats() 1644 stats.bytes = curr_stats->bytes - prev_stats->bytes; in bnxt_tc_get_flow_stats() 1645 *prev_stats = *curr_stats; in bnxt_tc_get_flow_stats()
|
/linux/drivers/net/ethernet/aquantia/atlantic/ |
A D | aq_hw.h | 186 struct aq_stats_s curr_stats; member
|
Completed in 29 milliseconds