]> git.droids-corp.org - dpdk.git/commitdiff
lib: fix cache alignment of structures
authorJia Yu <jyu@vmware.com>
Fri, 7 Nov 2014 17:28:09 +0000 (09:28 -0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 11 Dec 2014 00:42:02 +0000 (01:42 +0100)
Include rte_memory.h for lib files that use __rte_cache_aligned
attribute.

Consider the following code:

struct per_core_foo {
...
} __rte_cache_aligned;

struct global_foo {
struct per_core_foo foo[RTE_MAX_CORE];
};

If __rte_cache_aligned is not defined (rte_memory.h is not included),
the code compiles but the structure is not aligned... it defines the
structure and creates a global variable called __rte_cache_aligned.
And this can lead to really bad things if this code is in a .h that
is included by files that may or may not include rte_memory.h

Signed-off-by: Jia Yu <jyu@vmware.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
15 files changed:
lib/librte_distributor/rte_distributor.c
lib/librte_eal/common/include/rte_malloc_heap.h
lib/librte_ip_frag/rte_ip_frag.h
lib/librte_malloc/malloc_elem.h
lib/librte_mbuf/rte_mbuf.h
lib/librte_port/rte_port_frag.c
lib/librte_table/rte_table_acl.c
lib/librte_table/rte_table_array.c
lib/librte_table/rte_table_hash_ext.c
lib/librte_table/rte_table_hash_key16.c
lib/librte_table/rte_table_hash_key32.c
lib/librte_table/rte_table_hash_key8.c
lib/librte_table/rte_table_hash_lru.c
lib/librte_table/rte_table_lpm.c
lib/librte_table/rte_table_lpm_ipv6.c

index aa2f740af344d215053971892d782b9c4de82f3d..e0fdb4c1db8138ebfe4332f4d002617e737e7e4c 100644 (file)
@@ -35,6 +35,7 @@
 #include <sys/queue.h>
 #include <string.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_memzone.h>
 #include <rte_errno.h>
 #include <rte_string_fns.h>
index f727b7a8b811f9edf20479f11bbf0addd0c58656..716216f25322672a52700899a409940a7d5e3cec 100644 (file)
@@ -37,6 +37,7 @@
 #include <stddef.h>
 #include <sys/queue.h>
 #include <rte_spinlock.h>
+#include <rte_memory.h>
 
 /* Number of free lists per heap, grouped by size. */
 #define RTE_HEAP_NUM_FREELISTS  5
index 230a903791bb7344e97d5f8c1626766c0f8183b4..3989a5a819ebed8d87daafecea94bd87d94db40d 100644 (file)
@@ -46,6 +46,7 @@
 
 #include <rte_malloc.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_ip.h>
 #include <rte_byteorder.h>
 
index 72f22a101d086151e936357c54edf6bdc17e85fd..9790b1a09ef280d5675bbe165d524e05f372f444 100644 (file)
@@ -34,6 +34,8 @@
 #ifndef MALLOC_ELEM_H_
 #define MALLOC_ELEM_H_
 
+#include <rte_memory.h>
+
 /* dummy definition of struct so we can use pointers to it in malloc_elem struct */
 struct malloc_heap;
 
index efdefc43e6dc206e08136038ca742df7a10feb29..16059c66ff08a3919fc77969aeb0cd445bc4d829 100644 (file)
@@ -55,6 +55,7 @@
 
 #include <stdint.h>
 #include <rte_mempool.h>
+#include <rte_memory.h>
 #include <rte_atomic.h>
 #include <rte_prefetch.h>
 #include <rte_branch_prediction.h>
index 57d930be74527c93e00c65b9b0456f6385566448..ff0ab9b808de05916503fbb0c85241dd6f0c9037 100644 (file)
@@ -34,6 +34,7 @@
 
 #include <rte_ether.h>
 #include <rte_ip_frag.h>
+#include <rte_memory.h>
 
 #include "rte_port_frag.h"
 
index 8a6eb0d7a64d7c9c908a63ac98bc692d49149761..4416311b9ac8ebc65895c87e83981cdd59ca0350 100644 (file)
@@ -36,6 +36,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index 4d3c05eecaadc9cc94d66dda1de0b35c542cfec6..c0310700f9fb185035e8658cb3f3d3e4b41ea36a 100644 (file)
@@ -36,6 +36,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index f34b56d6e129bb6eb73225c094f7e6a3506b6ae6..66e416bb310946a9e7c41f10b98f462d3ba0ff81 100644 (file)
@@ -36,6 +36,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index 94554168c5b6a801d57a4089d010b71662b2dae1..ee5f639b8ee86827c7e77115d86172e7cde6ab5c 100644 (file)
@@ -35,6 +35,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index 7e65516afd3f476b49988ad4796b3b8cdacd36ce..da0ce6af9f4fd25aff2a3402649ba7ea91ca3cad 100644 (file)
@@ -35,6 +35,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index 4b99dba2d9ecfdd79232b9242cf1911d766f3a82..443ca7da7793a9a0ada15debb0c8faba79bd4d27 100644 (file)
@@ -35,6 +35,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index 5460a880cf392431e3afc181d5f4400e148cf050..c9a8afd7d413fb6a2058f5e58c75478b19780850 100644 (file)
@@ -36,6 +36,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_log.h>
 
index cf9261941c2c94518006c85d50534ddeddac54c3..64c684d03f26d154b7b073cc04c437fd24df8afb 100644 (file)
@@ -36,6 +36,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_byteorder.h>
 #include <rte_log.h>
index 2818c258185ec4b998ff8330b702e36c612bf2c4..ce4ddc0b04e71f459ce284b3e4b163301c01bf2f 100644 (file)
@@ -36,6 +36,7 @@
 
 #include <rte_common.h>
 #include <rte_mbuf.h>
+#include <rte_memory.h>
 #include <rte_malloc.h>
 #include <rte_byteorder.h>
 #include <rte_log.h>