svn commit: r210115 - stable/8/sys/i386/i386

John Baldwin jhb at FreeBSD.org
Thu Jul 15 12:17:18 UTC 2010


Author: jhb
Date: Thu Jul 15 12:17:17 2010
New Revision: 210115
URL: http://svn.freebsd.org/changeset/base/210115

Log:
  MFC part of 209483:
  Clear DF bit in cmcint interrupt handler.
  
  Submitted by:	kib

Modified:
  stable/8/sys/i386/i386/apic_vector.s

Modified: stable/8/sys/i386/i386/apic_vector.s
==============================================================================
--- stable/8/sys/i386/i386/apic_vector.s	Thu Jul 15 11:52:20 2010	(r210114)
+++ stable/8/sys/i386/i386/apic_vector.s	Thu Jul 15 12:17:17 2010	(r210115)
@@ -120,6 +120,7 @@ IDTVEC(timerint)
 IDTVEC(cmcint)
 	PUSH_FRAME
 	SET_KERNEL_SREGS
+	cld
 	FAKE_MCOUNT(TF_EIP(%esp))
 	call	lapic_handle_cmc
 	MEXITCOUNT


More information about the svn-src-all mailing list