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)
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to