1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00

Kernel: Rename a very long enum to ShouldDeallocateVirtualRange

ShouldDeallocateVirtualMemoryVirtualRange was a bit on the long side.
This commit is contained in:
Andreas Kling 2021-08-06 21:45:05 +02:00
parent cdab5b2091
commit 47bdd7c3a0
5 changed files with 11 additions and 11 deletions

View file

@ -379,7 +379,7 @@ UNMAP_AFTER_INIT void APIC::do_boot_aps()
// NOTE: Since this region is identity-mapped, we have to unmap it manually to prevent the virtual
// address range from leaking into the general virtual range allocator.
apic_startup_region->unmap(Memory::Region::ShouldDeallocateVirtualMemoryVirtualRange::No);
apic_startup_region->unmap(Memory::Region::ShouldDeallocateVirtualRange::No);
}
UNMAP_AFTER_INIT void APIC::boot_aps()