We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08154ae commit 80236e1Copy full SHA for 80236e1
1 file changed
include/ipfixprobe/outputPlugin/outputStorage/lfnbOutputStorage.hpp
@@ -79,7 +79,7 @@ class LFNBOutputStorage : public OutputStorage<ElementType> {
79
const uint64_t readPosition
80
= sequentialReadPosition % OutputStorage<ElementType>::STORAGE_CAPACITY;
81
const uint64_t remappedReadPosition
82
- = remap(readPosition) % OutputStorage<ElementType>::STORAGE_CAPACITY;
+ = remap(sequentialReadPosition) % OutputStorage<ElementType>::STORAGE_CAPACITY;
83
const uint64_t nextRemappedReadPosition
84
= remap(readPosition + 1) % OutputStorage<ElementType>::STORAGE_CAPACITY;
85
__builtin_prefetch(
0 commit comments