diff --git a/include/haproxy/bug.h b/include/haproxy/bug.h index e6303fd3c..fbf1d488e 100644 --- a/include/haproxy/bug.h +++ b/include/haproxy/bug.h @@ -245,12 +245,12 @@ struct mem_stats { const char *file; int line; int type; -}; +} __attribute__((aligned(sizeof(void*)))); #undef calloc #define calloc(x,y) ({ \ size_t __x = (x); size_t __y = (y); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_CALLOC, \ }; \ @@ -267,7 +267,7 @@ struct mem_stats { #undef __free #define __free(x) ({ \ void *__x = (x); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_FREE, \ }; \ @@ -281,7 +281,7 @@ struct mem_stats { #undef ha_free #define ha_free(x) ({ \ typeof(x) __x = (x); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_FREE, \ }; \ @@ -299,7 +299,7 @@ struct mem_stats { #undef malloc #define malloc(x) ({ \ size_t __x = (x); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_MALLOC, \ }; \ @@ -313,7 +313,7 @@ struct mem_stats { #undef realloc #define realloc(x,y) ({ \ void *__x = (x); size_t __y = (y); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_REALLOC, \ }; \ @@ -327,7 +327,7 @@ struct mem_stats { #undef strdup #define strdup(x) ({ \ const char *__x = (x); size_t __y = strlen(__x); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_STRDUP, \ }; \ diff --git a/include/haproxy/pool.h b/include/haproxy/pool.h index 3640ad112..a818cc42b 100644 --- a/include/haproxy/pool.h +++ b/include/haproxy/pool.h @@ -255,7 +255,7 @@ static inline void *pool_get_from_cache(struct pool_head *pool, const void *call #define pool_free(pool, ptr) ({ \ struct pool_head *__pool = (pool); \ typeof(ptr) __ptr = (ptr); \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_P_FREE, \ }; \ @@ -271,7 +271,7 @@ static inline void *pool_get_from_cache(struct pool_head *pool, const void *call #define pool_alloc(pool) ({ \ struct pool_head *__pool = (pool); \ size_t __x = __pool->size; \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_P_ALLOC, \ }; \ @@ -285,7 +285,7 @@ static inline void *pool_get_from_cache(struct pool_head *pool, const void *call #define pool_zalloc(pool) ({ \ struct pool_head *__pool = (pool); \ size_t __x = __pool->size; \ - static struct mem_stats _ __attribute__((used,__section__("mem_stats"))) = { \ + static struct mem_stats _ __attribute__((used,__section__("mem_stats"),__aligned__(sizeof(void*)))) = { \ .file = __FILE__, .line = __LINE__, \ .type = MEM_STATS_TYPE_P_ALLOC, \ }; \