Home
last modified time | relevance | path

Searched refs:max_burst (Results 1 – 8 of 8) sorted by relevance

/dpdk/lib/sched/
H A Drte_pie.c32 const uint16_t max_burst, in rte_pie_config_init() argument
52 if (max_burst <= 0) { in rte_pie_config_init()
66 pie_cfg->max_burst = (tsc_hz * max_burst) / 1000; in rte_pie_config_init()
H A Drte_pie.h39 uint16_t max_burst; /**< Max Burst Allowance (milliseconds) */ member
50 uint64_t max_burst; /**< Max Burst Allowance (in CPU cycles.) */ member
103 const uint16_t max_burst,
301 pie->burst_allowance = pie_cfg->max_burst; in rte_pie_enqueue_nonempty()
H A Drte_sched.c1139 params->cman_params->pie_params[i].max_burst, in rte_sched_pie_config()
/dpdk/app/test/
H A Dtest_pie.c57 uint16_t *max_burst; /**< Max Burst Allowance (milliseconds) */ member
239 (uint16_t)tcfg->tconfig->max_burst[i], in test_rte_pie_init()
327 .max_burst = ft_max_burst,
458 .max_burst = ft2_max_burst,
550 .max_burst = ft_max_burst,
685 .max_burst = pt_max_burst,
702 .max_burst = pt_max_burst,
/dpdk/drivers/common/cnxk/
H A Droc_npa.h473 unsigned int max_burst, chunk, bnum; in roc_npa_aura_op_batch_free() local
475 max_burst = ROC_CN10K_NPA_BATCH_FREE_MAX_PTRS * in roc_npa_aura_op_batch_free()
482 chunk = (bnum >= max_burst) ? max_burst : bnum; in roc_npa_aura_op_batch_free()
H A Droc_nix_tm_ops.c143 uint64_t min_burst, max_burst; in nix_tm_shaper_profile_add() local
159 max_burst = roc_nix_tm_max_shaper_burst_get(); in nix_tm_shaper_profile_add()
174 if (commit_sz < min_burst || commit_sz > max_burst) in nix_tm_shaper_profile_add()
183 if (peak_sz < min_burst || peak_sz > max_burst) in nix_tm_shaper_profile_add()
H A Droc_nix_tm_utils.c275 uint64_t min_burst, max_burst; in nix_tm_shaper_burst_conv() local
280 max_burst = roc_nix_tm_max_shaper_burst_get(); in nix_tm_shaper_burst_conv()
282 if (value < min_burst || value > max_burst) in nix_tm_shaper_burst_conv()
/dpdk/examples/qos_sched/
H A Dcfg_file.c257 subport_p->cman_params->pie_params[j].max_burst = in set_subport_cman_params()
258 cman_p.pie_params[j].max_burst; in set_subport_cman_params()
371 cman_params.pie_params[i].max_burst = in cfg_load_subport()