From: Mathieu Desnoyers Date: Wed, 21 Sep 2011 05:11:05 +0000 (-0400) Subject: rculfhash: node alignment is back to 4 bytes X-Git-Tag: v0.7.0~43^2~135 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=58ca074148d8de7c7eb5143ef71353761bb87655 rculfhash: node alignment is back to 4 bytes Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu/rculfhash.h b/urcu/rculfhash.h index 7afd624..1f30710 100644 --- a/urcu/rculfhash.h +++ b/urcu/rculfhash.h @@ -40,7 +40,7 @@ extern "C" { struct _cds_lfht_node { struct cds_lfht_node *next; /* ptr | DUMMY_FLAG | REMOVED_FLAG */ unsigned long reverse_hash; -} __attribute__((aligned(8))); +} __attribute__((aligned(4))); struct cds_lfht_node { /* cache-hot for iteration */