svn commit: r206623 - head/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Wed Apr 14 20:04:55 UTC 2010


Author: kib
Date: Wed Apr 14 20:04:55 2010
New Revision: 206623
URL: http://svn.freebsd.org/changeset/base/206623

Log:
  ld_gs_base is executing with stack containing only the frame,
  temporary pushed %rflags has been popped already.
  
  Pointy hat to:	kib
  MFC after:	3 days

Modified:
  head/sys/amd64/amd64/exception.S

Modified: head/sys/amd64/amd64/exception.S
==============================================================================
--- head/sys/amd64/amd64/exception.S	Wed Apr 14 19:08:06 2010	(r206622)
+++ head/sys/amd64/amd64/exception.S	Wed Apr 14 20:04:55 2010	(r206623)
@@ -815,7 +815,6 @@ fsbase_load_fault:
 	ALIGN_TEXT
 	.globl	gsbase_load_fault
 gsbase_load_fault:
-	popfq
 	movl	$T_PROTFLT,TF_TRAPNO(%rsp)
 	movq	%rsp, %rdi
 	call	trap


More information about the svn-src-all mailing list