]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Change the default alignment to 16
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 18 May 2018 22:51:01 +0000 (23:51 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 18 May 2018 22:51:01 +0000 (23:51 +0100)
src/libutil/mem_pool.h

index 7423895c4cfe4a6ffc430d387dcfdc9b30e95eda..27d4c8ebfcda2d935b2472398dce107e453daebf 100644 (file)
@@ -21,7 +21,7 @@ struct f_str_s;
 
 #define MEMPOOL_TAG_LEN 20
 #define MEMPOOL_UID_LEN 20
-#define MEM_ALIGNMENT   8
+#define MEM_ALIGNMENT   16
 #define align_ptr(p, a)                                                   \
     (guint8 *) (((uintptr_t) (p) + ((uintptr_t) a - 1)) & ~((uintptr_t) a - 1))