Searched refs:pelem (Results 1 – 3 of 3) sorted by relevance
| /Linux-v6.1/tools/perf/util/bpf_skel/ |
| D | lock_contention.bpf.c | 107 struct tstamp_data *pelem; in contention_begin() local 113 pelem = bpf_task_storage_get(&tstamp, curr, NULL, in contention_begin() 115 if (!pelem || pelem->lock) in contention_begin() 118 pelem->timestamp = bpf_ktime_get_ns(); in contention_begin() 119 pelem->lock = (__u64)ctx[0]; in contention_begin() 120 pelem->flags = (__u32)ctx[1]; in contention_begin() 121 pelem->stack_id = bpf_get_stackid(ctx, &stacks, BPF_F_FAST_STACK_CMP | stack_skip); in contention_begin() 123 if (pelem->stack_id < 0) in contention_begin() 132 struct tstamp_data *pelem; in contention_end() local 141 pelem = bpf_task_storage_get(&tstamp, curr, NULL, 0); in contention_end() [all …]
|
| D | off_cpu.bpf.c | 190 struct tstamp_data *pelem; in off_cpu_stat() local 200 pelem = bpf_task_storage_get(&tstamp, prev, NULL, in off_cpu_stat() 202 if (!pelem) in off_cpu_stat() 205 pelem->timestamp = ts; in off_cpu_stat() 206 pelem->state = state; in off_cpu_stat() 207 pelem->stack_id = stack_id; in off_cpu_stat() 210 pelem = bpf_task_storage_get(&tstamp, next, NULL, 0); in off_cpu_stat() 212 if (pelem && pelem->timestamp) { in off_cpu_stat() 216 .stack_id = pelem->stack_id, in off_cpu_stat() 217 .state = pelem->state, in off_cpu_stat() [all …]
|
| /Linux-v6.1/tools/perf/scripts/python/ |
| D | compaction-times.py | 191 for i, pelem in enumerate(self.list): 192 sys.stdout.write("%d[%s].%d: %s\n" % (self.pid, self.comm, i+1, pelem))
|