examples/vm_power: fix OOB frequency oscillations
[dpdk.git] / examples / vm_power_manager / power_manager.c
index 9d4e587..7b4f4b3 100644 (file)
@@ -62,14 +62,13 @@ core_info_init(void)
        ci->core_count = get_nprocs_conf();
        ci->branch_ratio_threshold = BRANCH_RATIO_THRESHOLD;
        ci->cd = malloc(ci->core_count * sizeof(struct core_details));
+       memset(ci->cd, 0, ci->core_count * sizeof(struct core_details));
        if (!ci->cd) {
                RTE_LOG(ERR, POWER_MANAGER, "Failed to allocate memory for core info.");
                return -1;
        }
        for (i = 0; i < ci->core_count; i++) {
                ci->cd[i].global_enabled_cpus = 1;
-               ci->cd[i].oob_enabled = 0;
-               ci->cd[i].msr_fd = 0;
        }
        printf("%d cores in system\n", ci->core_count);
        return 0;