]> git.droids-corp.org - dpdk.git/commitdiff
power: fix cache line alignment
authorMattias Rönnblom <mattias.ronnblom@ericsson.com>
Sun, 5 May 2019 18:12:16 +0000 (20:12 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 9 May 2019 19:07:55 +0000 (21:07 +0200)
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>
lib/librte_power/power_acpi_cpufreq.c
lib/librte_power/power_pstate_cpufreq.c

index 5672c594e637ed7f97443c80741ebeb8c10890ef..7c386f891ebdaf2a6054c927469652abaecd6357 100644 (file)
 #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"
index 44a0b4a3fa2698f53aa59aee1db919c82a0792e5..ecbcb3ac99528409a7cf23c4adea7ed24a2aeb3f 100644 (file)
 #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"