-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat(x86_64::paging): Implement paging & kernel remap #103
Merged
Conversation
This file contains 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
Update paging-dev
+ Frame renamed to PhsyicalPage + Delete unused Entry module
this implementation is Bad and Needs To Be Fixed
This may not be the Right Way to do this, but it works for now & prevents crashes.
this is Not Ideal, but it's a temp workaround for bugs in the CPU crate.
Clone instance on Frame was removed.
It needs to be double-checked for correctness.
So the user can know Something Is Happening!
Some of these were deleted a while ago but `git merge` decided we wanted them back
hawkw
added
area/alloc
Area: this issue concerns memory allocation.
area/elf
Area: this issue describes ELF parsing and loading.
kind/feature
Kind: this issue is a feature.
area/kernel
Area: this issue relates to the core kernel.
arch/x86_64
Architecture: this issue is specific to the x86_64 (amd64) architecture.
labels
May 28, 2017
This should probably increment the version numbers on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
arch/x86_64
Architecture: this issue is specific to the x86_64 (amd64) architecture.
area/alloc
Area: this issue concerns memory allocation.
area/elf
Area: this issue describes ELF parsing and loading.
area/kernel
Area: this issue relates to the core kernel.
kind/feature
Kind: this issue is a feature.
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.
This PR adds a working implementation of paging and remapping the kernel into the high address space on x86_64! 🍾
Note that interrupts had to be re-disabled temporarily because of issues from #78 that I'm still looking into.
This PR also includes a number of changes to the
elf
andalloc
crates that were necessary to get paging working correctly. It doesn't finish the whole "allocator rewrite" project, but it brings us further along.Paging issues:
Allocator issues:
Also makes some progress on issues #31, #73, #76, and #84.