mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-01 15:28:21 -04:00
kern: implement SvcMapPhysicalMemory
This commit is contained in:
parent
695b82b945
commit
5ecc80a5f6
11 changed files with 559 additions and 13 deletions
|
@ -954,7 +954,7 @@ namespace ams::kern::arch::arm64 {
|
|||
}
|
||||
|
||||
/* Open references to the L2 table. */
|
||||
Kernel::GetPageTableManager().Open(l2_table, L1BlockSize / L2BlockSize);
|
||||
this->GetPageTableManager().Open(l2_table, L1BlockSize / L2BlockSize);
|
||||
|
||||
/* Replace the L1 entry with one to the new table. */
|
||||
PteDataSynchronizationBarrier();
|
||||
|
@ -1001,7 +1001,7 @@ namespace ams::kern::arch::arm64 {
|
|||
}
|
||||
|
||||
/* Open references to the L3 table. */
|
||||
Kernel::GetPageTableManager().Open(l3_table, L2BlockSize / L3BlockSize);
|
||||
this->GetPageTableManager().Open(l3_table, L2BlockSize / L3BlockSize);
|
||||
|
||||
/* Replace the L2 entry with one to the new table. */
|
||||
PteDataSynchronizationBarrier();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue