numam-dpdk/lib/librte_malloc
Jia Yu 3a52e64742 lib: fix cache alignment of structures
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>
2014-12-11 01:42:02 +01:00
..
Makefile remove trailing whitespaces 2014-06-11 00:29:34 +02:00
malloc_elem.c add prefix to cache line macros 2014-11-27 16:21:11 +01:00
malloc_elem.h lib: fix cache alignment of structures 2014-12-11 01:42:02 +01:00
malloc_heap.c add prefix to cache line macros 2014-11-27 16:21:11 +01:00
malloc_heap.h remove trailing whitespaces 2014-06-11 00:29:34 +02:00
rte_malloc.c add prefix to cache line macros 2014-11-27 16:21:11 +01:00
rte_malloc.h remove trailing whitespaces 2014-06-11 00:29:34 +02:00