Free dirty_bitmap when unmapping DMA region to fix memory leak#847
Merged
Merged
Conversation
tmakatos
reviewed
Apr 15, 2026
Collaborator
|
Thanks for the fix; please add a test - something like: |
708acab to
5c3e52c
Compare
jlevon
reviewed
Apr 16, 2026
5c3e52c to
4a050d1
Compare
Contributor
Author
One test case failed, but it appears unrelated to my changes. |
4a050d1 to
0cded66
Compare
Collaborator
|
you have some flake8 nits |
0cded66 to
aa99282
Compare
Contributor
Author
Just notice that, fixed. |
tmakatos
reviewed
Apr 16, 2026
aa99282 to
0d26421
Compare
tmakatos
reviewed
Apr 16, 2026
jlevon
approved these changes
Apr 16, 2026
Collaborator
|
sorry, flake8 is annoying :) |
…ix#852) The dirty bitmap was allocated when dirty tracking is enabled for a DMA region, but was not released during region teardown. This could lead to memory leaks over time with repeated DMA map/unmap operations while dirty page logging is active. Signed-off-by: liuhaolin <hollinisme@gmail.com>
0d26421 to
c5f6aef
Compare
Contributor
Author
It found another one, just fixed it. |
Collaborator
|
thanks! |
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.
The dirty bitmap was allocated when dirty tracking is enabled for a DMA region, but was not released during region teardown, may lead to memory leaks over time.