Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Apr 2012 20:19:29 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r234146 - in stable/8/sys: amd64/include i386/conf i386/include
Message-ID:  <201204112019.q3BKJTAW093882@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Wed Apr 11 20:19:29 2012
New Revision: 234146
URL: http://svn.freebsd.org/changeset/base/234146

Log:
  MFC 232228,233613:
  Move the DTrace return IDT vector back up from 0x20 to 0x92.  The 0x20
  vector is currently dedicated to servicing IRQ 0 from the 8259A's, so
  it shouldn't be overloaded for DTrace.

Modified:
  stable/8/sys/amd64/include/segments.h
  stable/8/sys/i386/include/segments.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/boot/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/e1000/   (props changed)
  stable/8/sys/i386/conf/XENHVM   (props changed)

Modified: stable/8/sys/amd64/include/segments.h
==============================================================================
--- stable/8/sys/amd64/include/segments.h	Wed Apr 11 20:19:07 2012	(r234145)
+++ stable/8/sys/amd64/include/segments.h	Wed Apr 11 20:19:29 2012	(r234146)
@@ -214,7 +214,7 @@ struct region_descriptor {
 #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_DTRACE_RET	0x92	/* DTrace pid provider Interrupt Vector */
 
 /*
  * Entries in the Global Descriptor Table (GDT)

Modified: stable/8/sys/i386/include/segments.h
==============================================================================
--- stable/8/sys/i386/include/segments.h	Wed Apr 11 20:19:07 2012	(r234145)
+++ stable/8/sys/i386/include/segments.h	Wed Apr 11 20:19:29 2012	(r234146)
@@ -207,7 +207,7 @@ struct region_descriptor {
 #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_DTRACE_RET	0x92	/* DTrace pid provider Interrupt Vector */
 
 /*
  * Entries in the Global Descriptor Table (GDT)



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