kernel/vm_manager: Reset region attributes when unmapping a VMA

Like the other members related to memory regions, the attributes need to
be reset back to their defaults as well.
merge-requests/60/head
Lioncash 2018-12-26 20:15:26 +07:00
parent c9269a4a4b
commit 1392597ede
1 changed files with 1 additions and 0 deletions

@ -190,6 +190,7 @@ VMManager::VMAIter VMManager::Unmap(VMAIter vma_handle) {
vma.type = VMAType::Free;
vma.permissions = VMAPermission::None;
vma.state = MemoryState::Unmapped;
vma.attribute = MemoryAttribute::None;
vma.backing_block = nullptr;
vma.offset = 0;