summaryrefslogtreecommitdiffstats
path: root/sys/kern/sched_ule.c
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2011-08-26 18:00:07 +0000
committerdelphij <delphij@FreeBSD.org>2011-08-26 18:00:07 +0000
commitf687a7bf6f36dabd655e27e31d4b0d5cccbee5b8 (patch)
treeb98f951666aeddef19b483d7838c8b16e286dd63 /sys/kern/sched_ule.c
parent1fcff6eeb62aa56b7131d2bcc1dafeb8bc67f2c5 (diff)
downloadFreeBSD-src-f687a7bf6f36dabd655e27e31d4b0d5cccbee5b8.zip
FreeBSD-src-f687a7bf6f36dabd655e27e31d4b0d5cccbee5b8.tar.gz
Fix format strings for KTR_STATE in 4BSD ad ULE schedulers.
Submitted by: Ivan Klymenko <fidaj@ukr.net> PR: kern/159904, kern/159905 MFC after: 2 weeks Approved by: re (kib)
Diffstat (limited to 'sys/kern/sched_ule.c')
-rw-r--r--sys/kern/sched_ule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c
index 9bfb9e7..f505676 100644
--- a/sys/kern/sched_ule.c
+++ b/sys/kern/sched_ule.c
@@ -2022,7 +2022,7 @@ sched_exit(struct proc *p, struct thread *child)
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);
@@ -2039,7 +2039,7 @@ sched_exit_thread(struct thread *td, struct thread *child)
{
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
OpenPOWER on IntegriCloud