From f673afa8394961c3958efd922fac4cf0cf20fb73 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Mon, 13 Apr 2026 20:22:18 +0200 Subject: [PATCH] Fix a duplicate log This got moved into allocate, but forgot to save the change. --- src/acpi/madt/arch/x86.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/acpi/madt/arch/x86.rs b/src/acpi/madt/arch/x86.rs index 122a4cf741..4dc2388398 100644 --- a/src/acpi/madt/arch/x86.rs +++ b/src/acpi/madt/arch/x86.rs @@ -63,7 +63,6 @@ pub(super) fn init(madt: Madt) { unsafe { let preliminary_cpu_count = madt.iter().filter(|e| matches!(e, MadtEntry::LocalApic(entry) if u32::from(entry.id) == me.get() || entry.flags & 1 == 1)).count(); - info!("Preliminary number of CPUs: {preliminary_cpu_count}"); crate::profiling::allocate(preliminary_cpu_count as u32); }