Lines Matching refs:p
434 print_task(struct seq_file *m, struct rq *rq, struct task_struct *p) in print_task() argument
436 if (rq->curr == p) in print_task()
439 SEQ_printf(m, " %c", task_state_to_char(p)); in print_task()
442 p->comm, task_pid_nr(p), in print_task()
443 SPLIT_NS(p->se.vruntime), in print_task()
444 (long long)(p->nvcsw + p->nivcsw), in print_task()
445 p->prio); in print_task()
448 SPLIT_NS(schedstat_val_or_zero(p->se.statistics.wait_sum)), in print_task()
449 SPLIT_NS(p->se.sum_exec_runtime), in print_task()
450 SPLIT_NS(schedstat_val_or_zero(p->se.statistics.sum_sleep_runtime))); in print_task()
453 SEQ_printf(m, " %d %d", task_node(p), task_numa_group_id(p)); in print_task()
456 SEQ_printf(m, " %s", task_group_path(task_group(p))); in print_task()
464 struct task_struct *g, *p; in print_rq() local
474 for_each_process_thread(g, p) { in print_rq()
475 if (task_cpu(p) != rq_cpu) in print_rq()
478 print_task(m, rq, p); in print_rq()
815 #define P(F) SEQ_printf(m, "%-45s:%21Ld\n", #F, (long long)p->F)
817 #define PN(F) SEQ_printf(m, "%-45s:%14Ld.%06ld\n", #F, SPLIT_NS((long long)p->F))
831 static void sched_show_numa(struct task_struct *p, struct seq_file *m) in sched_show_numa() argument
836 if (p->mm) in sched_show_numa()
839 task_lock(p); in sched_show_numa()
840 pol = p->mempolicy; in sched_show_numa()
844 task_unlock(p); in sched_show_numa()
850 task_node(p), task_numa_group_id(p)); in sched_show_numa()
851 show_numa_stats(p, m); in sched_show_numa()
856 void proc_sched_show_task(struct task_struct *p, struct pid_namespace *ns, in proc_sched_show_task() argument
861 SEQ_printf(m, "%s (%d, #threads: %d)\n", p->comm, task_pid_nr_ns(p, ns), in proc_sched_show_task()
862 get_nr_threads(p)); in proc_sched_show_task()
869 SEQ_printf(m, "%-45s:%21Ld\n", #F, (long long)p->F) in proc_sched_show_task()
871 SEQ_printf(m, "%-45s:%21Ld\n", #F, (long long)schedstat_val(p->F)) in proc_sched_show_task()
875 SEQ_printf(m, "%-45s:%14Ld.%06ld\n", #F, SPLIT_NS((long long)p->F)) in proc_sched_show_task()
877 SEQ_printf(m, "%-45s:%14Ld.%06ld\n", #F, SPLIT_NS((long long)schedstat_val(p->F))) in proc_sched_show_task()
883 nr_switches = p->nvcsw + p->nivcsw; in proc_sched_show_task()
918 avg_atom = p->se.sum_exec_runtime; in proc_sched_show_task()
924 avg_per_cpu = p->se.sum_exec_runtime; in proc_sched_show_task()
925 if (p->se.nr_migrations) { in proc_sched_show_task()
927 p->se.nr_migrations); in proc_sched_show_task()
938 "nr_voluntary_switches", (long long)p->nvcsw); in proc_sched_show_task()
940 "nr_involuntary_switches", (long long)p->nivcsw); in proc_sched_show_task()
957 if (task_has_dl_policy(p)) { in proc_sched_show_task()
978 sched_show_numa(p, m); in proc_sched_show_task()
981 void proc_sched_set_task(struct task_struct *p) in proc_sched_set_task() argument
984 memset(&p->se.statistics, 0, sizeof(p->se.statistics)); in proc_sched_set_task()