svn commit: r218353 - stable/8/sys/sys

Konstantin Belousov kib at FreeBSD.org
Sat Feb 5 22:04:21 UTC 2011


Author: kib
Date: Sat Feb  5 22:04:20 2011
New Revision: 218353
URL: http://svn.freebsd.org/changeset/base/218353

Log:
  MFC r212999 (by jhb):
  Copy td_rqindex during fork instead of zero'ing it to match the comments.
  
  Approved by:	jhb

Modified:
  stable/8/sys/sys/proc.h
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/sys/proc.h
==============================================================================
--- stable/8/sys/sys/proc.h	Sat Feb  5 21:50:23 2011	(r218352)
+++ stable/8/sys/sys/proc.h	Sat Feb  5 22:04:20 2011	(r218353)
@@ -260,7 +260,7 @@ struct thread {
 	struct ksiginfo td_dbgksi;	/* (c) ksi reflected to debugger. */
 	int		td_ng_outbound;	/* (k) Thread entered ng from above. */
 	struct osd	td_osd;		/* (k) Object specific data. */
-#define	td_endzero td_base_pri
+#define	td_endzero td_rqindex
 
 /* Copied during fork1() or thread_sched_upcall(). */
 #define	td_startcopy td_endzero


More information about the svn-src-all mailing list