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

Jung-uk Kim jkim at FreeBSD.org
Fri Apr 8 16:01:51 UTC 2011


On Friday 08 April 2011 09:30 am, John Baldwin wrote:
> 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)

Oops, thanks for fixing this.

Pointyhat to:	jkim

Jung-uk Kim


More information about the svn-src-all mailing list