#8466 closed bug (fixed)
VM caches aren't resized in some cases when cutting areas
Reported by: | hamish | Owned by: | hamish |
---|---|---|---|
Priority: | normal | Milestone: | R1/beta2 |
Component: | System/Kernel | Version: | R1/Development |
Keywords: | kernel vm cache | Cc: | |
Blocked By: | Blocking: | #9326 | |
Platform: | All |
Description
In some cases, if an area is partially mapped over (using mmap with MAP_FIXED, for example) the cache is not resized or split in two, resulting in memory being leaked for the overlapping region.
See the TODOs in cut_area()
: http://cgit.haiku-os.org/haiku/tree/src/system/kernel/vm/vm.cpp#n609
Attachments (1)
Change History (12)
comment:1 by , 13 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
follow-up: 3 comment:2 by , 13 years ago
follow-up: 5 comment:3 by , 13 years ago
Replying to hamish:
Here's what I'm thinking of doing:
To handle the cut-start-of-area case, add a
VMCache::Rebase()
method as a counterpart toVMCache::Resize()
which will move the virtual base of cache and free any pages no longer contained in the region.
Sounds good.
To handle the cut-middle-of-area case, add a
VMCache::MovePageRange(off_t offset, off_t size, VMCache* destination, off_t destinationOffset)
method. Then create a new cache for the second area and move the pages there. I realise this is inconsistent with the other page moving methods because they are called on the destination cache, but it would be nice to iterate the page tree directly instead of callingLookupPage()
repeatedly on the source cache.
I don't see what would speak against iterating through the other cache's page tree.
As an alternative solution a status_t SplitCache(off_t offset, VMCache*& _newCache)
could be introduced (or with a pre-allocated cache object, if that makes things easier to use). Would be less flexible, but ATM I can't think of a use case where additional flexibility was required.
by , 13 years ago
Attachment: | 0001-Resize-caches-in-all-cases-when-cutting-areas.patch added |
---|
comment:4 by , 13 years ago
patch: | 0 → 1 |
---|
comment:5 by , 13 years ago
Replying to bonefish:
I don't see what would speak against iterating through the other cache's page tree.
Indeed, I didn't realise that the page tree was a public member.
This patch depends on my patch in #8233.
RE your comment there about guard sizes and cache resizing, I'm not sure quite what would be the expected behaviour in this case. Should the guard size be preserved after resizing, or should the guard be resized to prevent previously accessible pages becoming guarded? So I added a VMAnonymous(NoSwap)Cache::SetGuardSize()
to let the caller decide what's best for them.
comment:6 by , 13 years ago
Just realised this doesn't deal with swap properly in the middle-cut case.
comment:7 by , 12 years ago
Blocking: | 9326 added |
---|
comment:8 by , 12 years ago
Owner: | changed from | to
---|
comment:9 by , 4 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Finished by mmlr and applied (with other changes) in hrev54148.
comment:10 by , 4 years ago
Assign tickets with status=closed and resolution=fixed within the R1/beta2 development window to the R1/beta2 Milestone
comment:11 by , 4 years ago
Milestone: | R1 → R1/beta2 |
---|
Here's what I'm thinking of doing:
To handle the cut-start-of-area case, add a
VMCache::Rebase()
method as a counterpart toVMCache::Resize()
which will move the virtual base of cache and free any pages no longer contained in the region.To handle the cut-middle-of-area case, add a
VMCache::MovePageRange(off_t offset, off_t size, VMCache* destination, off_t destinationOffset)
method. Then create a new cache for the second area and move the pages there. I realise this is inconsistent with the other page moving methods because they are called on the destination cache, but it would be nice to iterate the page tree directly instead of callingLookupPage()
repeatedly on the source cache.Does this sound OK?