From 7da2d8a6182bf258a2a6b415858419073b94d76a Mon Sep 17 00:00:00 2001 From: Damien Zammit via Bug reports for the GNU Hurd Date: Sat, 7 Dec 2024 10:12:34 +0000 Subject: mp_desc: Add assert for AP having non-zero cpu number Non-master processors cannot have cpu_number() == 0. The synchronisation fails hard if the cpu number is wrong. Alert the condition if this is the case. (On AMD fam15h, this assert currently fails, but I haven't been able to boot it with smp yet either). Message-ID: <20241207101222.800350-1-damien@zamaudio.com> --- i386/i386/mp_desc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/i386/i386/mp_desc.c b/i386/i386/mp_desc.c index 61a7607b..5fff2a68 100644 --- a/i386/i386/mp_desc.c +++ b/i386/i386/mp_desc.c @@ -24,6 +24,7 @@ * the rights to redistribute these changes. */ +#include #include #include #include @@ -280,6 +281,8 @@ cpu_ap_main() { int cpu = cpu_number(); + assert(cpu > 0); + do { cpu_pause(); } while (bspdone != cpu); -- cgit v1.2.3