diff options
author | Damien Zammit <damien@zamaudio.com> | 2024-02-07 05:02:11 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-02-08 00:23:14 +0100 |
commit | 69477710c88420603f32e84511d9adc2923d0503 (patch) | |
tree | 210d94b664a15cb3ae783ed610f3ff38007e4c19 /i386/i386at/ioapic.c | |
parent | 429762dca4d313140067d14e1c448ee68d1644d2 (diff) | |
download | gnumach-69477710c88420603f32e84511d9adc2923d0503.tar.gz gnumach-69477710c88420603f32e84511d9adc2923d0503.tar.bz2 gnumach-69477710c88420603f32e84511d9adc2923d0503.zip |
separate lapic_enable from lapic_setup
This initializes the lapic without
turning on the IOAPIC interrupts during SMP init.
Message-ID: <20240207050158.1640853-2-damien@zamaudio.com>
Diffstat (limited to 'i386/i386at/ioapic.c')
-rw-r--r-- | i386/i386at/ioapic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/i386/i386at/ioapic.c b/i386/i386at/ioapic.c index 270362c3..2553a2c9 100644 --- a/i386/i386at/ioapic.c +++ b/i386/i386at/ioapic.c @@ -458,5 +458,6 @@ ioapic_configure(void) } /* Start the IO APIC receiving interrupts */ + lapic_setup(); lapic_enable(); } |