Skip to content

Commit b45fb8d

Browse files
jounathaenmkroening
authored andcommitted
fix(x86_64/apic): initialize I/O APIC on Uhyve
1 parent ef27b79 commit b45fb8d

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

src/arch/x86_64/kernel/apic.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -581,11 +581,8 @@ pub fn init() {
581581
calibrate_timer();
582582
}
583583

584-
// currently, IO-APIC isn't supported by uhyve
585-
if !env::is_uhyve() {
586-
// initialize IO-APIC
587-
init_ioapic();
588-
}
584+
// initialize IO-APIC
585+
init_ioapic();
589586
}
590587

591588
fn init_ioapic() {

0 commit comments

Comments
 (0)