mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:07:35 +00:00
Kernel: Slap UNMAP_AFTER_INIT on a bunch more functions
We're now able to unmap 100 KiB of kernel text after init. :^)
This commit is contained in:
parent
e920c74cae
commit
2b2828ae52
36 changed files with 105 additions and 105 deletions
|
@ -45,7 +45,7 @@ enum DeliveryMode {
|
|||
External = 7
|
||||
};
|
||||
|
||||
IOAPIC::IOAPIC(PhysicalAddress address, u32 gsi_base)
|
||||
UNMAP_AFTER_INIT IOAPIC::IOAPIC(PhysicalAddress address, u32 gsi_base)
|
||||
: m_address(address)
|
||||
, m_regs(map_typed_writable<ioapic_mmio_regs>(m_address))
|
||||
, m_gsi_base(gsi_base)
|
||||
|
@ -60,7 +60,7 @@ IOAPIC::IOAPIC(PhysicalAddress address, u32 gsi_base)
|
|||
mask_all_redirection_entries();
|
||||
}
|
||||
|
||||
void IOAPIC::initialize()
|
||||
UNMAP_AFTER_INIT void IOAPIC::initialize()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue