-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
366179f
commit 018e89c
Showing
4 changed files
with
36 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog | ||
|
||
## 0.2.0 | ||
|
||
- No longer collect intermediate tables into a `Vec`, walk the page table and | ||
deallocate them on drop. | ||
- Replace the `update` method of `PageTable64` with `remap` and `protect`, also add `protect_region` and `copy_from`. | ||
|
||
## 0.1.0 | ||
|
||
Initial release. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,13 @@ members = [ | |
"page_table_multiarch", | ||
"page_table_entry", | ||
] | ||
|
||
[workspace.package] | ||
version = "0.2.0" | ||
authors = ["Yuekai Jia <[email protected]>"] | ||
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0" | ||
homepage = "https://github.com/arceos-org/arceos" | ||
documentation = "https://arceos-org.github.io/page_table_multiarch" | ||
repository = "https://github.com/arceos-org/page_table_multiarch" | ||
keywords = ["arceos", "paging", "page-table", "virtual-memory"] | ||
categories = ["os", "hardware-support", "memory-management", "no-std"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "page_table_entry" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["Yuekai Jia <[email protected]>"] | ||
description = "Page table entry definition for various hardware architectures" | ||
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0" | ||
homepage = "https://github.com/arceos-org/arceos" | ||
repository = "https://github.com/arceos-org/page_table_multiarch" | ||
documentation = "https://docs.rs/page_table_entry" | ||
keywords = ["arceos", "paging", "page-table", "virtual-memory"] | ||
categories = ["os", "hardware-support", "memory-management", "no-std"] | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
bitflags = "2.6" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "page_table_multiarch" | ||
version = "0.1.2" | ||
edition = "2021" | ||
authors = ["Yuekai Jia <[email protected]>"] | ||
description = "Generic page table structures for various hardware architectures" | ||
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0" | ||
homepage = "https://github.com/arceos-org/arceos" | ||
repository = "https://github.com/arceos-org/page_table_multiarch" | ||
documentation = "https://docs.rs/page_table_multiarch" | ||
keywords = ["arceos", "paging", "page-table", "virtual-memory"] | ||
categories = ["os", "hardware-support", "memory-management", "no-std"] | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
log = "0.4" | ||
memory_addr = "0.2" | ||
page_table_entry = { path = "../page_table_entry", version = "0.1" } | ||
page_table_entry = { path = "../page_table_entry", version = "0.2" } |