]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Set smaller alignment for mem_pool
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 1 Jan 2017 15:18:09 +0000 (15:18 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sun, 1 Jan 2017 15:48:48 +0000 (15:48 +0000)
src/libutil/mem_pool.h

index d9ca55c5a11aa5faff5102c34721131f407d2418..69e9f64377fc797cbf2a3df39a5114d02621e0b8 100644 (file)
@@ -21,7 +21,7 @@ struct f_str_s;
 
 #define MEMPOOL_TAG_LEN 20
 #define MEMPOOL_UID_LEN 20
-#define MEM_ALIGNMENT   16    /* Better for SSE */
+#define MEM_ALIGNMENT   8
 #define align_ptr(p, a)                                                   \
     (guint8 *) (((uintptr_t) (p) + ((uintptr_t) a - 1)) & ~((uintptr_t) a - 1))