The ACPI and PState CPU frequency scaling drivers used the __rte_cache_aligned attribute without including rte_memory.h, which turns what looks as the declaration of a cache line-aligned struct into a non-aligned struct declaration and the definition of an instance of the struct.
Fixes: e6c6dc0f96 ("power: add p-state driver compatibility") Fixes: 445c6528b5 ("power: common interface for guest and host") Signed-off-by: Mattias Rönnblom <mattias.ronnb...@ericsson.com> --- lib/librte_power/power_acpi_cpufreq.c | 5 +++-- lib/librte_power/power_pstate_cpufreq.c | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/librte_power/power_acpi_cpufreq.c b/lib/librte_power/power_acpi_cpufreq.c index 5672c594e..7c386f891 100644 --- a/lib/librte_power/power_acpi_cpufreq.c +++ b/lib/librte_power/power_acpi_cpufreq.c @@ -12,9 +12,10 @@ #include <signal.h> #include <limits.h> -#include <rte_string_fns.h> -#include <rte_memcpy.h> #include <rte_atomic.h> +#include <rte_memcpy.h> +#include <rte_memory.h> +#include <rte_string_fns.h> #include "power_acpi_cpufreq.h" #include "power_common.h" diff --git a/lib/librte_power/power_pstate_cpufreq.c b/lib/librte_power/power_pstate_cpufreq.c index c2c4e8e14..30727f04b 100644 --- a/lib/librte_power/power_pstate_cpufreq.c +++ b/lib/librte_power/power_pstate_cpufreq.c @@ -14,9 +14,10 @@ #include <errno.h> #include <inttypes.h> -#include <rte_string_fns.h> -#include <rte_memcpy.h> #include <rte_atomic.h> +#include <rte_memcpy.h> +#include <rte_memory.h> +#include <rte_string_fns.h> #include "power_pstate_cpufreq.h" #include "power_common.h" -- 2.17.1