From 58ca074148d8de7c7eb5143ef71353761bb87655 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 21 Sep 2011 01:11:05 -0400 Subject: [PATCH] rculfhash: node alignment is back to 4 bytes Signed-off-by: Mathieu Desnoyers --- urcu/rculfhash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.34.1