svn commit: r251329 - stable/8/sys/amd64/ia32

Konstantin Belousov kib at FreeBSD.org
Mon Jun 3 18:13:26 UTC 2013


Author: kib
Date: Mon Jun  3 18:13:25 2013
New Revision: 251329
URL: http://svnweb.freebsd.org/changeset/base/251329

Log:
  MFC r251037:
  The ia32_get_mcontext() does not need to set PCB_FULL_IRET.

Modified:
  stable/8/sys/amd64/ia32/ia32_signal.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/   (props changed)

Modified: stable/8/sys/amd64/ia32/ia32_signal.c
==============================================================================
--- stable/8/sys/amd64/ia32/ia32_signal.c	Mon Jun  3 18:07:04 2013	(r251328)
+++ stable/8/sys/amd64/ia32/ia32_signal.c	Mon Jun  3 18:13:25 2013	(r251329)
@@ -187,7 +187,6 @@ ia32_get_mcontext(struct thread *td, str
 	mcp->mc_xfpustate = 0;
 	mcp->mc_xfpustate_len = 0;
 	bzero(mcp->mc_spare2, sizeof(mcp->mc_spare2));
-	set_pcb_flags(pcb, PCB_FULL_IRET);
 	return (0);
 }
 


More information about the svn-src-stable-8 mailing list