Mirror per-hugepage backing state in huge_region_fuzz. - #990
Closed
copybara-service[bot] wants to merge 1 commit into
Closed
copybara-service[bot] wants to merge 1 commit into
copybara-service[bot] wants to merge 1 commit into
Conversation
Track used pages and backed status for every hugepage of the region, bracketing each mock unback so hugepages in flight are modelled as fully used exactly as HugeRegion::UnbackHugepages does. After every instruction, used_pages(), backed(), free_backed(), and unmapped_pages() must match the model. MaybeGet must return a range disjoint from live allocations and report from_released iff it touched an unbacked hugepage; Put must unback exactly the hugepages it empties, and only when asked; Release must select the free, backed hugepages HugeRegion::Release's scan order predicts and report exactly the hugepages whose unback succeeded. This replaces the page-level released_ set, which only recorded pages inside allocations. PiperOrigin-RevId: 983554969
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mirror per-hugepage backing state in huge_region_fuzz.
Track used pages and backed status for every hugepage of the region,
bracketing each mock unback so hugepages in flight are modelled as fully used
exactly as HugeRegion::UnbackHugepages does. After every instruction,
used_pages(), backed(), free_backed(), and unmapped_pages() must match the
model. MaybeGet must return a range disjoint from live allocations and report
from_released iff it touched an unbacked hugepage; Put must unback exactly
the hugepages it empties, and only when asked; Release must select the free,
backed hugepages HugeRegion::Release's scan order predicts and report exactly
the hugepages whose unback succeeded. This replaces the page-level
released_ set, which only recorded pages inside allocations.