From 837873272775de94e3cf5443d0a79e14f9d13831 Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Tue, 26 May 2015 13:11:36 +0200 Subject: [PATCH] Align PacketCache to 8-byte boundries --- pdns/packetcache.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pdns/packetcache.hh b/pdns/packetcache.hh index 33bec4916e..1646f8e77b 100644 --- a/pdns/packetcache.hh +++ b/pdns/packetcache.hh @@ -129,14 +129,14 @@ private: return d_maps[burtle((const unsigned char*)qname.c_str(), qname.length(), 0) % d_maps.size()]; } - AtomicCounter d_ops; - int d_ttl; - int d_recursivettl; - bool d_doRecursion; AtomicCounter *d_statnumhit; AtomicCounter *d_statnummiss; AtomicCounter *d_statnumentries; + + int d_ttl; + int d_recursivettl; + bool d_doRecursion; }; -- 2.47.2