Skip to content

Commit

Permalink
FIX: bufIdx width should increase after #SinkCbufBlocks increase (#174)
Browse files Browse the repository at this point in the history
or sinkC bufferVals will be mistakenly cleared, causing system stall
  • Loading branch information
Ivyfeather committed Apr 19, 2024
1 parent a69ea2c commit 4c00249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/huancun/HuanCun.scala
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ trait HasHuanCunParameters {
else cacheParams.clientCaches.head.aliasBitsOpt

val bufBlocks = mshrs / 2
val bufIdxBits = log2Ceil(bufBlocks)
val sinkCbufBlocks = mshrsAll // sinkC buffer require more blocks to avoid deadlock
require(sinkCbufBlocks >= bufBlocks, "sinkCbufBlocks should bigger than bufBlocks")
val bufIdxBits = log2Ceil(mshrsAll) // should be MAX{bufBlocks, sinkCBufBlocks}

val alwaysReleaseData = cacheParams.alwaysReleaseData

Expand Down

0 comments on commit 4c00249

Please sign in to comment.