Home
last modified time | relevance | path

Searched refs:wakee (Results 1 – 5 of 5) sorted by relevance

/linux/kernel/trace/
H A Dtrace_sched_wakeup.c405 struct task_struct *wakee, in tracing_sched_wakeup_trace() argument
422 entry->next_pid = wakee->pid; in tracing_sched_wakeup_trace()
423 entry->next_prio = wakee->prio; in tracing_sched_wakeup_trace()
424 entry->next_state = task_state_index(wakee); in tracing_sched_wakeup_trace()
425 entry->next_cpu = task_cpu(wakee); in tracing_sched_wakeup_trace()
H A Dtrace_sched_switch.c40 probe_sched_wakeup(void *ignore, struct task_struct *wakee) in probe_sched_wakeup() argument
49 tracing_record_taskinfo_sched_switch(current, wakee, flags); in probe_sched_wakeup()
/linux/tools/perf/
H A Dbuiltin-timechart.c188 int wakee; member
426 int waker, int wakee, u8 flags, const char *backtrace) in sched_wakeup() argument
441 we->wakee = wakee; in sched_wakeup()
444 p = find_create_pid(tchart, we->wakee); in sched_wakeup()
635 int wakee = evsel__intval(evsel, sample, "pid"); in process_sample_sched_wakeup() local
637 sched_wakeup(tchart, sample->cpu, sample->time, waker, wakee, flags, backtrace); in process_sample_sched_wakeup()
1058 if (p->pid == we->waker || p->pid == we->wakee) { in draw_wakeups()
1066 if (p->pid == we->wakee && !to) { in draw_wakeups()
1079 if (p->pid == we->wakee && !to) { in draw_wakeups()
1095 sprintf(task_to, "[%i]", we->wakee); in draw_wakeups()
H A Dbuiltin-sched.c93 struct task_desc *wakee; member
404 u64 timestamp, struct task_desc *wakee) in add_sched_event_wakeup() argument
410 event->wakee = wakee; in add_sched_event_wakeup()
412 wakee_event = last_event(wakee); in add_sched_event_wakeup()
831 struct task_desc *waker, *wakee; in replay_wakeup_event() local
840 wakee = register_pid(sched, pid, comm); in replay_wakeup_event()
842 add_sched_event_wakeup(sched, waker, sample->time, wakee); in replay_wakeup_event()
1232 struct thread *wakee; in latency_wakeup_event() local
1236 wakee = machine__findnew_thread(machine, -1, pid); in latency_wakeup_event()
1237 if (wakee == NULL) in latency_wakeup_event()
[all …]
/linux/tools/perf/scripts/python/
H A Dsched-migration.py60 def __init__(self, wakee): argument
61 self.wakee = wakee
64 return "%s woke up" % thread_name(self.wakee)