From 433bf57177312627f7c17f06d4a5db50b11b3ab8 Mon Sep 17 00:00:00 2001 From: marcel Date: Sun, 12 Jun 2005 19:03:01 +0000 Subject: [PATCH] Define IPI_PREEMPT. Update a nearby comment while I'm here. --- sys/ia64/include/smp.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/ia64/include/smp.h b/sys/ia64/include/smp.h index daf5911763e5..d2f8e5f33d9a 100644 --- a/sys/ia64/include/smp.h +++ b/sys/ia64/include/smp.h @@ -10,7 +10,7 @@ * Interprocessor interrupts for SMP. The following values are indices * into the IPI vector table. The SAL gives us the vector used for AP * wake-up. We base the other vectors on that. Keep IPI_AP_WAKEUP at - * index 0 and IPI_MCA_RENDEZ at index 1. See sal.c for details. + * index 0. See sal.c for details. */ /* Architecture specific IPIs. */ #define IPI_AP_WAKEUP 0 @@ -22,8 +22,9 @@ #define IPI_AST 5 #define IPI_RENDEZVOUS 6 #define IPI_STOP 7 +#define IPI_PREEMPT 8 -#define IPI_COUNT 8 +#define IPI_COUNT 9 #ifndef LOCORE