Skip to content
Snippets Groups Projects
Commit c4ec76ed authored by Liam's avatar Liam
Browse files

k_page_table: add missing page group open when locking memory

parent 65d33008
No related branches found
No related tags found
No related merge requests found
......@@ -3405,6 +3405,11 @@ Result KPageTable::LockMemoryAndOpen(KPageGroup* out_pg, KPhysicalAddress* out_K
new_attr, KMemoryBlockDisableMergeAttribute::Locked,
KMemoryBlockDisableMergeAttribute::None);
// If we have an output page group, open.
if (out_pg) {
out_pg->Open();
}
R_SUCCEED();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment