examples/power: fix for p-state
authorDavid Hunt <david.hunt@intel.com>
Tue, 8 Jan 2019 15:25:23 +0000 (15:25 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 15 Jan 2019 01:40:41 +0000 (02:40 +0100)
commit6ff7b996a8a4cf12e0d54110bb2db4c87f72e9f4
tree2c0d85c0d0250ae5d71d8ca5ebc9e5e0b421f9e8
parentf21bb93126b45ff4026049868948b6d9153b22b9
examples/power: fix for p-state

The vm_power_manager starts by setting the environment to acpi
using rte_power_set_env(PM_ENV_ACPI_CPUFREQ). This causes a problem
starting vm_power_manager when the system is using the intel_pstate
driver. The env should be set to none, or not called at all, because
the library now auto-detects the environment to be either acpi or
intel_pstate. This patch sets the environment to none so that the
library can successfully auto-detect.

Fixes: e6c6dc0f96c8 ("power: add p-state driver compatibility")

Signed-off-by: David Hunt <david.hunt@intel.com>
examples/vm_power_manager/power_manager.c