mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
kern: fix supervisor page table activation
This commit is contained in:
parent
aae3c789f2
commit
560c340c96
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ namespace ams::kern {
|
||||||
|
|
||||||
/* Activate the supervisor page table for each core. */
|
/* Activate the supervisor page table for each core. */
|
||||||
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
||||||
Kernel::GetKernelPageTable().Activate();
|
Kernel::GetKernelPageTable().ActivateForInit();
|
||||||
});
|
});
|
||||||
|
|
||||||
/* NOTE: Kernel calls on each core a nullsub here on retail kernel. */
|
/* NOTE: Kernel calls on each core a nullsub here on retail kernel. */
|
||||||
|
|
Loading…
Reference in a new issue