The isc_queue_t was missing in the calculation of the required
padding size inside the qpcache bucket structure.
/* Padding to prevent false sharing between locks. */
uint8_t __padding[ISC_OS_CACHELINE_SIZE -
- (sizeof(dns_slabheaderlist_t) + sizeof(isc_heap_t *) +
- sizeof(isc_rwlock_t)) %
+ (sizeof(isc_queue_t) + sizeof(isc_rwlock_t) +
+ sizeof(dns_slabheaderlist_t) + sizeof(isc_heap_t *)) %
ISC_OS_CACHELINE_SIZE];
} qpcache_bucket_t;