svn commit: r212999 - head/sys/sys

John Baldwin jhb at FreeBSD.org
Wed Sep 22 15:10:03 UTC 2010


Author: jhb
Date: Wed Sep 22 15:10:03 2010
New Revision: 212999
URL: http://svn.freebsd.org/changeset/base/212999

Log:
  Copy td_rqindex during fork instead of zero'ing it to match the comments.
  I do not believe there is any functional change.

Modified:
  head/sys/sys/proc.h

Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h	Wed Sep 22 12:52:12 2010	(r212998)
+++ head/sys/sys/proc.h	Wed Sep 22 15:10:03 2010	(r212999)
@@ -263,7 +263,7 @@ struct thread {
 	int		td_ng_outbound;	/* (k) Thread entered ng from above. */
 	struct osd	td_osd;		/* (k) Object specific data. */
 	struct vm_map_entry *td_map_def_user; /* (k) Deferred entries. */
-#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-head mailing list