mirror of
https://github.com/drasko/codezero.git
synced 2026-01-14 20:03:16 +01:00
Pager virtual address pool bookkeeping added for all pager virtual addresses
Previously virt_to_phys/phys_to_virt macros were used such that they did a blind offset translation for creating a pager internal virtual address for user mappings. This is now changed such that a properly bookkeeped virtual address pool is used which will avoid any clashes on the virtual space.
This commit is contained in:
@@ -29,7 +29,7 @@ struct container_info cinfo[] = {
|
||||
[0] = {
|
||||
.pager_lma = __pfn(CONFIG_CONT0_PAGER_START),
|
||||
.pager_vma = __pfn(0xE0000000),
|
||||
.pager_size = __pfn(0xa0000),
|
||||
.pager_size = __pfn(0xa2000),
|
||||
.ncaps = 14,
|
||||
.caps = {
|
||||
[0] = {
|
||||
|
||||
Reference in New Issue
Block a user