Skip to content

Commit

Permalink
[cru] Restore max superpage size index counter
Browse files Browse the repository at this point in the history
  • Loading branch information
kostorr authored Aug 2, 2022
1 parent 8a76610 commit 21c9581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cru/CruBar.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ uint32_t CruBar::getSuperpageSize(uint32_t link)
superpageSizeIndex = Utilities::getBits(superpageSizeFifo, 24, 31);
}

mSuperpageSizeIndexCounter[link] = (superpageSizeIndex + 1) % 246;
mSuperpageSizeIndexCounter[link] = (superpageSizeIndex + 1) % 256;

return superpageSize;
}
Expand Down

0 comments on commit 21c9581

Please sign in to comment.