svn commit: r213722 - stable/7/sys/kern
John Baldwin
jhb at FreeBSD.org
Tue Oct 12 15:26:37 UTC 2010
Author: jhb
Date: Tue Oct 12 15:26:37 2010
New Revision: 213722
URL: http://svn.freebsd.org/changeset/base/213722
Log:
MFC 212974:
Comment nit, set TDF_NEEDRESCHED after the comment describing why it is
done rather than before.
Modified:
stable/7/sys/kern/sched_ule.c
Directory Properties:
stable/7/sys/ (props changed)
stable/7/sys/cddl/contrib/opensolaris/ (props changed)
stable/7/sys/contrib/dev/acpica/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
Modified: stable/7/sys/kern/sched_ule.c
==============================================================================
--- stable/7/sys/kern/sched_ule.c Tue Oct 12 15:26:13 2010 (r213721)
+++ stable/7/sys/kern/sched_ule.c Tue Oct 12 15:26:37 2010 (r213722)
@@ -2556,12 +2556,12 @@ sched_affinity(struct thread *td)
}
if (!TD_IS_RUNNING(td))
return;
- td->td_flags |= TDF_NEEDRESCHED;
/*
* Force a switch before returning to userspace. If the
* target thread is not running locally send an ipi to force
* the issue.
*/
+ td->td_flags |= TDF_NEEDRESCHED;
if (td != curthread)
ipi_selected(1 << ts->ts_cpu, IPI_PREEMPT);
#endif
More information about the svn-src-stable
mailing list