Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 63705
b: refs/heads/master
c: 6f605d8
h: refs/heads/master
i:
  63703: 2e53035
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Aug 7, 2007
1 parent b3af6ae commit e2910aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cc1ff43b7002b40686f03269b5011d59965737a4
refs/heads/master: 6f605d83dd3906bcf69280f8754df85f80538471
12 changes: 6 additions & 6 deletions trunk/kernel/sched_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ print_task(struct seq_file *m, struct rq *rq, struct task_struct *p, u64 now)
else
SEQ_printf(m, " ");

SEQ_printf(m, "%15s %5d %15Ld %13Ld %13Ld %9Ld %5d "
"%15Ld %15Ld %15Ld %15Ld %15Ld\n",
SEQ_printf(m, "%15s %5d %15Ld %13Ld %13Ld %9Ld %5d ",
p->comm, p->pid,
(long long)p->se.fair_key,
(long long)(p->se.fair_key - rq->cfs.fair_clock),
(long long)p->se.wait_runtime,
(long long)(p->nvcsw + p->nivcsw),
p->prio,
p->prio);
#ifdef CONFIG_SCHEDSTATS
SEQ_printf(m, "%15Ld %15Ld %15Ld %15Ld %15Ld\n",
(long long)p->se.sum_exec_runtime,
(long long)p->se.sum_wait_runtime,
(long long)p->se.sum_sleep_runtime,
(long long)p->se.wait_runtime_overruns,
(long long)p->se.wait_runtime_underruns
(long long)p->se.wait_runtime_underruns);
#else
0LL, 0LL, 0LL, 0LL, 0LL
SEQ_printf(m, "%15Ld %15Ld %15Ld %15Ld %15Ld\n",
0LL, 0LL, 0LL, 0LL, 0LL);
#endif
);
}

static void print_rq(struct seq_file *m, struct rq *rq, int rq_cpu, u64 now)
Expand Down

0 comments on commit e2910aa

Please sign in to comment.