summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/include
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2007-02-01 20:39:43 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2007-02-01 20:39:43 +0000
commite7eaa73928e8d701dda8576afeb84aedeb49afe2 (patch)
tree227827eb4d79e98450f8f09fe7e5cb0bac685736 /sys/arch/amd64/include
parentfafdfab10d7ca58f82e423702d46609d8d73f37e (diff)
Rename the MICROSET IPI we inherited from NetBSD to simply NOP since
it doesn't do anything (other than poking into the kernel a processing ASTs).
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r--sys/arch/amd64/include/intrdefs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/include/intrdefs.h b/sys/arch/amd64/include/intrdefs.h
index ad4f4a40c19..2f62f2b3b16 100644
--- a/sys/arch/amd64/include/intrdefs.h
+++ b/sys/arch/amd64/include/intrdefs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: intrdefs.h,v 1.3 2006/03/12 02:34:39 brad Exp $ */
+/* $OpenBSD: intrdefs.h,v 1.4 2007/02/01 20:39:42 art Exp $ */
/* $NetBSD: intrdefs.h,v 1.2 2003/05/04 22:01:56 fvdl Exp $ */
#ifndef _i386_INTRDEFS_H
@@ -74,7 +74,7 @@
#define IDT_INTR_HIGH 0xef
#define X86_IPI_HALT 0x00000001
-#define X86_IPI_MICROSET 0x00000002
+#define X86_IPI_NOP 0x00000002
#define X86_IPI_FLUSH_FPU 0x00000004
#define X86_IPI_SYNCH_FPU 0x00000008
#define X86_IPI_TLB 0x00000010
@@ -84,7 +84,7 @@
#define X86_NIPI 8
-#define X86_IPI_NAMES { "halt IPI", "timeset IPI", "FPU flush IPI", \
+#define X86_IPI_NAMES { "halt IPI", "nop IPI", "FPU flush IPI", \
"FPU synch IPI", "TLB shootdown IPI", \
"MTRR update IPI", "GDT update IPI", "ddb IPI" }