power: fix cache line alignment

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")
Cc: stable@dpdk.org

Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
This commit is contained in:
Mattias Rönnblom 2019-05-05 20:12:16 +02:00 committed by Thomas Monjalon
parent 3d45c3b0f5
commit 7727ad9107
2 changed files with 6 additions and 4 deletions

View File

@ -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"

View File

@ -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"