Home
last modified time | relevance | path

Searched refs:tasks (Results 1 – 25 of 36) sorted by relevance

12

/tools/accounting/
A Ddelaytop.c509 tasks[task_count].pid = pid; in fetch_and_fill_task_info()
510 tasks[task_count].tgid = pid; in fetch_and_fill_task_info()
754 tasks[i].pid, tasks[i].tgid, tasks[i].command); in display_results()
756 average_ms(tasks[i].cpu_delay_total, tasks[i].cpu_count), in display_results()
757 average_ms(tasks[i].blkio_delay_total, tasks[i].blkio_count), in display_results()
758 average_ms(tasks[i].swapin_delay_total, tasks[i].swapin_count), in display_results()
759 average_ms(tasks[i].freepages_delay_total, tasks[i].freepages_count), in display_results()
760 average_ms(tasks[i].thrashing_delay_total, tasks[i].thrashing_count), in display_results()
761 average_ms(tasks[i].compact_delay_total, tasks[i].compact_count), in display_results()
762 average_ms(tasks[i].wpcopy_delay_total, tasks[i].wpcopy_count), in display_results()
[all …]
/tools/testing/selftests/bpf/progs/
A Dbpf_iter_task_btf.c11 long tasks = 0; variable
33 tasks++; in dump_task_struct()
/tools/perf/scripts/python/
A Dsched-migration.py101 self.tasks = tuple(tasks)
107 if taskState(prev_state) == "R" and next in self.tasks \
108 and prev in self.tasks:
114 next_tasks = list(self.tasks[:])
115 if prev in self.tasks:
127 if old not in self.tasks:
134 if new in self.tasks:
137 next_tasks = self.tasks[:] + tuple([new])
153 return len(self.tasks) - 1
156 ret = self.tasks.__repr__()
[all …]
/tools/perf/Documentation/
A Dperf-timechart.txt48 --tasks-only::
60 Print task info for at least given number of tasks.
65 Highlight tasks (using different color) that run more than given
66 duration or tasks with given name. If number is given it's interpreted
89 --tasks-only::
90 Record only tasks-related events
114 then generate timechart and highlight 'gcc' tasks:
A Dperf-bench.txt32 (executing 1000000 pipe operations between two tasks)
140 (executing 1000000 pipe operations between two tasks)
147 (executing 1000 pipe operations between two tasks)
A Dperf-sched.txt55 individual CPUs, and the two-letter shortcuts stand for tasks that
138 ('-' indicates other tasks while '.' is idle).
A Dperf-script-perl.txt133 gives scripts a chance to do setup tasks:
142 processed and gives scripts a chance to do end-of-script tasks, such
A Dperf-inject.txt52 tasks slept. sched_switch contains a callchain where a task slept and
/tools/testing/selftests/rcutorture/configs/rcu/
A DTASKS03.boot1 rcutorture.torture_type=tasks nohz_full=1
A DTASKS02.boot1 rcutorture.torture_type=tasks
A DRUDE01.boot1 rcutorture.torture_type=tasks-rude
A DTRACE01.boot1 rcutorture.torture_type=tasks-tracing
A DTRACE02.boot1 rcutorture.torture_type=tasks-tracing
A DTASKS01.boot1 rcutorture.torture_type=tasks
/tools/testing/selftests/rcutorture/configs/rcuscale/
A DTRACE01.boot1 rcuscale.scale_type=tasks-tracing
/tools/perf/tests/shell/
A Dtest_task_analyzer.sh89 perf script report task-analyzer --ms --filter-tasks perf --highlight-tasks perf \
98 --limit-to-tasks perf > "$out"
/tools/testing/selftests/bpf/benchs/
A Drun_bench_local_storage_rcu_tasks_trace.sh11 ./bench --nr_procs 15000 --kthread_pid $kthread_pid -d 600 --quiet local-storage-tasks-trace
/tools/testing/selftests/resctrl/
A Dresctrlfs.c604 static int write_pid_to_tasks(char *tasks, pid_t pid) in write_pid_to_tasks() argument
608 fp = fopen(tasks, "w"); in write_pid_to_tasks()
642 char tasks[1024]; in write_bm_pid_to_resctrl() local
654 sprintf(tasks, "%s/tasks", controlgroup); in write_bm_pid_to_resctrl()
655 ret = write_pid_to_tasks(tasks, bm_pid); in write_bm_pid_to_resctrl()
667 sprintf(tasks, "%s/mon_groups/%s/tasks", in write_bm_pid_to_resctrl()
669 ret = write_pid_to_tasks(tasks, bm_pid); in write_bm_pid_to_resctrl()
A DREADME62 process pids to tasks, start benchmark.
/tools/testing/selftests/cgroup/
A Dtest_cpuset_v1_hp.sh29 echo $TASK > $CPUSET/$TDIR/tasks
/tools/testing/ktest/examples/
A DREADME1 This directory contains example configs to use ktest for various tasks.
/tools/bpf/bpftool/Documentation/
A Dbpftool-iter.rst36 tasks, bpf_maps, etc.) and a bpf program called for each kernel data object
/tools/testing/selftests/bpf/
A Dtest_maps.c654 static void test_sockmap(unsigned int tasks, void *data) in test_sockmap() argument
667 pid_t pid[tasks]; in test_sockmap()
1074 for (i = 0; i < tasks; i++) { in test_sockmap()
1092 for (i = 0; i < tasks; i++) { in test_sockmap()
1351 static void __run_parallel(unsigned int tasks, in __run_parallel() argument
1355 pid_t pid[tasks]; in __run_parallel()
1360 for (i = 0; i < tasks; i++) { in __run_parallel()
1371 for (i = 0; i < tasks; i++) { in __run_parallel()
/tools/perf/
A Dbuiltin-sched.c170 struct task_desc **tasks; member
476 sched->tasks = realloc(sched->tasks, sched->nr_tasks * sizeof(struct task_desc *)); in register_pid()
477 BUG_ON(!sched->tasks); in register_pid()
478 sched->tasks[task->nr] = task; in register_pid()
493 task = sched->tasks[i]; in print_task_traces()
505 task1 = sched->tasks[i]; in add_cross_task_wakeups()
509 task2 = sched->tasks[j]; in add_cross_task_wakeups()
695 task = sched->tasks[i]; in destroy_tasks()
716 task = sched->tasks[i]; in wait_for_tasks()
728 task = sched->tasks[i]; in wait_for_tasks()
[all …]
A Dbuiltin-report.c1037 LIST_HEAD(tasks); in tasks_print()
1040 ret = machine__thread_list(machine, &tasks); in tasks_print()
1044 list_sort(machine, &tasks, task_list_cmp); in tasks_print()
1048 list_for_each_entry(task, &tasks, list) in tasks_print()
1051 thread_list__delete(&tasks); in tasks_print()

Completed in 38 milliseconds

12