Skip to content

Commit

Permalink
Fixing call to PoolGenAccountForFill
Browse files Browse the repository at this point in the history
Reverting use of PoolGenAccountForFill to before branch/2016-04-19/job004007, found by::

  git blame remotes/github/branch/2016-04-19/job004007 code/segsmss.c | grep PoolGenAccountForFill
  git show 27d0f72^:code/segsmss.c | grep PoolGenAccountForFill
  • Loading branch information
rptb1 committed Nov 27, 2024
1 parent 36cd29c commit 4fb6ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/segsmss.c
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ static void AMSAllocateRange(AMS ams, Seg seg, Addr base, Addr limit)
AVER(amsseg->freeGrains >= allocatedGrains);
amsseg->freeGrains -= allocatedGrains;
amsseg->bufferedGrains += allocatedGrains;
PoolGenAccountForFill(ams->pgen, AddrOffset(base, limit));
PoolGenAccountForFill(ams->pgen, AddrOffset(base, limit), FALSE);
}


Expand Down

0 comments on commit 4fb6ba6

Please sign in to comment.