Date: Fri, 15 Apr 2011 20:32:17 +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: r220675 - stable/8/sys/amd64/ia32 Message-ID: <201104152032.p3FKWHIx081267@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104152032.p3FKWHIx081267>