X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fvm_power_manager%2Fpower_manager.c;h=9d4e587b0f99369fe5710ded2135753f607e93fa;hb=7cc1bd4613a54dc71597b21b91837da2200b5d99;hp=aef832644bca29f8b17a2f2501d60deb10d2887d;hpb=6ff7b996a8a4cf12e0d54110bb2db4c87f72e9f4;p=dpdk.git diff --git a/examples/vm_power_manager/power_manager.c b/examples/vm_power_manager/power_manager.c index aef832644b..9d4e587b0f 100644 --- a/examples/vm_power_manager/power_manager.c +++ b/examples/vm_power_manager/power_manager.c @@ -39,7 +39,7 @@ struct freq_info { unsigned num_freqs; } __rte_cache_aligned; -static struct freq_info global_core_freq_info[POWER_MGR_MAX_CPUS]; +static struct freq_info global_core_freq_info[RTE_MAX_LCORE]; struct core_info ci; @@ -92,8 +92,8 @@ power_manager_init(void) return -1; } - if (ci->core_count > POWER_MGR_MAX_CPUS) - max_core_num = POWER_MGR_MAX_CPUS; + if (ci->core_count > RTE_MAX_LCORE) + max_core_num = RTE_MAX_LCORE; else max_core_num = ci->core_count; @@ -132,9 +132,9 @@ power_manager_get_current_frequency(unsigned core_num) { uint32_t freq, index; - if (core_num >= POWER_MGR_MAX_CPUS) { + if (core_num >= RTE_MAX_LCORE) { RTE_LOG(ERR, POWER_MANAGER, "Core(%u) is out of range 0...%d\n", - core_num, POWER_MGR_MAX_CPUS-1); + core_num, RTE_MAX_LCORE-1); return -1; } if (!(ci.cd[core_num].global_enabled_cpus)) @@ -143,7 +143,7 @@ power_manager_get_current_frequency(unsigned core_num) rte_spinlock_lock(&global_core_freq_info[core_num].power_sl); index = rte_power_get_freq(core_num); rte_spinlock_unlock(&global_core_freq_info[core_num].power_sl); - if (index >= POWER_MGR_MAX_CPUS) + if (index >= RTE_MAX_LCORE_FREQS) freq = 0; else freq = global_core_freq_info[core_num].freqs[index]; @@ -166,8 +166,8 @@ power_manager_exit(void) return -1; } - if (ci->core_count > POWER_MGR_MAX_CPUS) - max_core_num = POWER_MGR_MAX_CPUS; + if (ci->core_count > RTE_MAX_LCORE) + max_core_num = RTE_MAX_LCORE; else max_core_num = ci->core_count; @@ -246,7 +246,7 @@ power_manager_scale_core_med(unsigned int core_num) struct core_info *ci; ci = get_core_info(); - if (core_num >= POWER_MGR_MAX_CPUS) + if (core_num >= RTE_MAX_LCORE) return -1; if (!(ci->cd[core_num].global_enabled_cpus)) return -1;