We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de0b83f commit 7f7acadCopy full SHA for 7f7acad
1 file changed
include/ipfixprobe/outputPlugin/outputStorage/b2OutputStorage.hpp
@@ -113,8 +113,9 @@ class B2OutputStorage : public BOutputStorage<ElementType> {
113
= this->m_readersData[readerIndex].get();
114
if (readerData.bucketAllocation.containersLeft()) {
115
__builtin_prefetch(
116
- &readerData.bucketAllocation.bucketIndex * this->BUCKET_SIZE
117
- + readerData.bucketAllocation.containerIndex + 1,
+ &this->m_storage
+ [readerData.bucketAllocation.bucketIndex * this->BUCKET_SIZE
118
+ + readerData.bucketAllocation.containerIndex + 1],
119
PrefetchMode::Read,
120
Locality::High);
121
return &this->getNextElement(readerData.bucketAllocation).getData();
0 commit comments