svn commit: r220675 - stable/8/sys/amd64/ia32

John Baldwin jhb at FreeBSD.org
Fri Apr 15 20:32:17 UTC 2011


Author: jhb
Date: Fri Apr 15 20:32:17 2011
New Revision: 220675
URL: http://svn.freebsd.org/changeset/base/220675

Log:
  MFC 220451:
  Catch up to PCB_FULL_IRET becoming a pcb flag rather than a full field.

Modified:
  stable/8/sys/amd64/ia32/ia32_exception.S
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (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)

Modified: stable/8/sys/amd64/ia32/ia32_exception.S
==============================================================================
--- stable/8/sys/amd64/ia32/ia32_exception.S	Fri Apr 15 20:31:02 2011	(r220674)
+++ stable/8/sys/amd64/ia32/ia32_exception.S	Fri Apr 15 20:32:17 2011	(r220675)
@@ -46,7 +46,7 @@ IDTVEC(int0x80_syscall)
 	subq	$TF_ERR,%rsp		/* skip over tf_trapno */
 	movq	%rdi,TF_RDI(%rsp)
 	movq	PCPU(CURPCB),%rdi
-	movb	$0,PCB_FULL_IRET(%rdi)
+	andl	$~PCB_FULL_IRET,PCB_FLAGS(%rdi)
 	movw	%fs,TF_FS(%rsp)
 	movw	%gs,TF_GS(%rsp)
 	movw	%es,TF_ES(%rsp)


More information about the svn-src-all mailing list