PERFORCE change 28897 for review
Marcel Moolenaar
marcel at FreeBSD.org
Sun Apr 13 16:02:17 PDT 2003
http://perforce.freebsd.org/chv.cgi?CH=28897
Change 28897 by marcel at marcel_nfs on 2003/04/13 16:01:32
Add IPI_HIGH_FP to interrupt a processor so that it saves
the high FP registers it currently holds.
While here, keep the IPIs sorted (we don't have to worry
about ABI breakages now).
Affected files ...
.. //depot/projects/ia64_epc/sys/ia64/include/smp.h#2 edit
Differences ...
==== //depot/projects/ia64_epc/sys/ia64/include/smp.h#2 (text+ko) ====
@@ -14,15 +14,16 @@
*/
/* Architecture specific IPIs. */
#define IPI_AP_WAKEUP 0
-#define IPI_MCA_RENDEZ 1
+#define IPI_HIGH_FP 1
#define IPI_MCA_CMCV 2
-#define IPI_TEST 3
+#define IPI_MCA_RENDEZ 3
+#define IPI_TEST 4
/* Machine independent IPIs. */
-#define IPI_AST 4
-#define IPI_RENDEZVOUS 5
-#define IPI_STOP 6
+#define IPI_AST 5
+#define IPI_RENDEZVOUS 6
+#define IPI_STOP 7
-#define IPI_COUNT 7
+#define IPI_COUNT 8
#ifndef LOCORE
More information about the p4-projects
mailing list