forked from arceos-org/arceos
-
Notifications
You must be signed in to change notification settings - Fork 17
feat: support COW #50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 13 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
4468909
Add basc COW
mingzi47 4df0a03
Squash merge cow-backend into cow
mingzi47 c5ea6ae
refactor: replace Arc-based frame tracking with frame info table
mingzi47 c479c34
refactor: simplify address space handling logic
mingzi47 2199488
refactor: improve memory management safety
mingzi47 5a06d2e
Merge branch 'oscomp:main' into cow
mingzi47 db0ab69
Merge branch 'oscomp:main' into cow-mem_map
mingzi47 92d0fce
Merge branch 'cow-mem_map' into cow
mingzi47 d497a21
chore: clean up
mingzi47 1262090
refactor: Rename `populate_area` to `ensure_region_mapped` with COW s…
mingzi47 44d596e
chore: Modify according to comment
mingzi47 41fba7a
Merge branch 'main' into cow
mingzi47 74519d3
refactor: replace PageIter4K with PageIterWrapper in AddrSpace
mingzi47 05a17be
refactor: simplify frame reference counting
mingzi47 172657f
refactor: (populate_area) use a iterator to walk through the area cov…
mingzi47 e9a3c03
feat: add COW feature for memory management
mingzi47 a4a4658
refactor: simplify COW handling and frame table initialization
mingzi47 459349f
refactor: reorganize memory management modules
mingzi47 639278d
doc: fix doc link
mingzi47 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mingzi47 Sorry to bother you, I was wondering if this change is necessary? Because I'm porting these to
axcpu
.