svn commit: r220451 - head/sys/amd64/ia32

John Baldwin jhb at FreeBSD.org
Fri Apr 8 13:30:48 UTC 2011


Author: jhb
Date: Fri Apr  8 13:30:48 2011
New Revision: 220451
URL: http://svn.freebsd.org/changeset/base/220451

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

Modified:
  head/sys/amd64/ia32/ia32_exception.S

Modified: head/sys/amd64/ia32/ia32_exception.S
==============================================================================
--- head/sys/amd64/ia32/ia32_exception.S	Fri Apr  8 12:49:56 2011	(r220450)
+++ head/sys/amd64/ia32/ia32_exception.S	Fri Apr  8 13:30:48 2011	(r220451)
@@ -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-head mailing list