svn commit: r232228 - in head/sys: amd64/include i386/include

John Baldwin jhb at FreeBSD.org
Mon Feb 27 17:29:37 UTC 2012


Author: jhb
Date: Mon Feb 27 17:29:37 2012
New Revision: 232228
URL: http://svn.freebsd.org/changeset/base/232228

Log:
  Resort the IDT_DTRACE_RET constant after it was changed to be less than
  IDT_SYSCALL.

Modified:
  head/sys/amd64/include/segments.h
  head/sys/i386/include/segments.h

Modified: head/sys/amd64/include/segments.h
==============================================================================
--- head/sys/amd64/include/segments.h	Mon Feb 27 17:28:47 2012	(r232227)
+++ head/sys/amd64/include/segments.h	Mon Feb 27 17:29:37 2012	(r232228)
@@ -213,8 +213,8 @@ struct region_descriptor {
 #define	IDT_MC		18	/* #MC: Machine Check */
 #define	IDT_XF		19	/* #XF: SIMD Floating-Point Exception */
 #define	IDT_IO_INTS	NRSVIDT	/* Base of IDT entries for I/O interrupts. */
-#define	IDT_SYSCALL	0x80	/* System Call Interrupt Vector */
 #define	IDT_DTRACE_RET	0x20	/* DTrace pid provider Interrupt Vector */
+#define	IDT_SYSCALL	0x80	/* System Call Interrupt Vector */
 
 /*
  * Entries in the Global Descriptor Table (GDT)

Modified: head/sys/i386/include/segments.h
==============================================================================
--- head/sys/i386/include/segments.h	Mon Feb 27 17:28:47 2012	(r232227)
+++ head/sys/i386/include/segments.h	Mon Feb 27 17:29:37 2012	(r232228)
@@ -206,8 +206,8 @@ struct region_descriptor {
 #define	IDT_MC		18	/* #MC: Machine Check */
 #define	IDT_XF		19	/* #XF: SIMD Floating-Point Exception */
 #define	IDT_IO_INTS	NRSVIDT	/* Base of IDT entries for I/O interrupts. */
-#define	IDT_SYSCALL	0x80	/* System Call Interrupt Vector */
 #define	IDT_DTRACE_RET	0x20	/* DTrace pid provider Interrupt Vector */
+#define	IDT_SYSCALL	0x80	/* System Call Interrupt Vector */
 
 /*
  * Entries in the Global Descriptor Table (GDT)


More information about the svn-src-head mailing list