svn commit: r225454 - stable/8/sys/kern
Xin LI
delphij at FreeBSD.org
Fri Sep 9 01:39:20 UTC 2011
Author: delphij
Date: Fri Sep 9 01:39:19 2011
New Revision: 225454
URL: http://svn.freebsd.org/changeset/base/225454
Log:
MFC r225199:
Fix format strings for KTR_STATE in 4BSD ad ULE schedulers.
Submitted by: Ivan Klymenko <fidaj at ukr.net>
PR: kern/159904, kern/159905
Modified:
stable/8/sys/kern/sched_4bsd.c
stable/8/sys/kern/sched_ule.c
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/kern/sched_4bsd.c
==============================================================================
--- stable/8/sys/kern/sched_4bsd.c Thu Sep 8 23:59:16 2011 (r225453)
+++ stable/8/sys/kern/sched_4bsd.c Fri Sep 9 01:39:19 2011 (r225454)
@@ -717,7 +717,7 @@ sched_exit(struct proc *p, struct thread
{
KTR_STATE1(KTR_SCHED, "thread", sched_tdname(td), "proc exit",
- "prio:td", td->td_priority);
+ "prio:%d", td->td_priority);
PROC_LOCK_ASSERT(p, MA_OWNED);
sched_exit_thread(FIRST_THREAD_IN_PROC(p), td);
@@ -728,7 +728,7 @@ sched_exit_thread(struct thread *td, str
{
KTR_STATE1(KTR_SCHED, "thread", sched_tdname(child), "exit",
- "prio:td", child->td_priority);
+ "prio:%d", child->td_priority);
thread_lock(td);
td->td_estcpu = ESTCPULIM(td->td_estcpu + child->td_estcpu);
thread_unlock(td);
Modified: stable/8/sys/kern/sched_ule.c
==============================================================================
--- stable/8/sys/kern/sched_ule.c Thu Sep 8 23:59:16 2011 (r225453)
+++ stable/8/sys/kern/sched_ule.c Fri Sep 9 01:39:19 2011 (r225454)
@@ -2032,7 +2032,7 @@ sched_exit(struct proc *p, struct thread
struct thread *td;
KTR_STATE1(KTR_SCHED, "thread", sched_tdname(child), "proc exit",
- "prio:td", child->td_priority);
+ "prio:%d", child->td_priority);
PROC_LOCK_ASSERT(p, MA_OWNED);
td = FIRST_THREAD_IN_PROC(p);
sched_exit_thread(td, child);
@@ -2049,7 +2049,7 @@ sched_exit_thread(struct thread *td, str
{
KTR_STATE1(KTR_SCHED, "thread", sched_tdname(child), "thread exit",
- "prio:td", child->td_priority);
+ "prio:%d", child->td_priority);
/*
* Give the child's runtime to the parent without returning the
* sleep time as a penalty to the parent. This causes shells that
More information about the svn-src-stable-8
mailing list