Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Apr 2003 16:02:16 -0700 (PDT)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 28897 for review
Message-ID:  <200304132302.h3DN2GJ1029288@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=28897

Change 28897 by marcel@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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200304132302.h3DN2GJ1029288>