Searched refs:t_new (Results 1 – 2 of 2) sorted by relevance
215 struct timeval t0, t_last, t_new; in run_bpf_prog() local 235 if (gettimeofday(&t_new, NULL) < 0) in run_bpf_prog() 237 delta_ms = (t_new.tv_sec - t0.tv_sec) * 1000 + in run_bpf_prog() 238 (t_new.tv_usec - t0.tv_usec)/1000; in run_bpf_prog() 241 delta_time = (t_new.tv_sec - t_last.tv_sec) * 1000000 + in run_bpf_prog() 242 (t_new.tv_usec - t_last.tv_usec); in run_bpf_prog() 245 t_last = t_new; in run_bpf_prog()
138 struct task_struct___new *t_new = (void *)t; in get_task_state() local140 if (bpf_core_field_exists(t_new->__state)) { in get_task_state()141 return BPF_CORE_READ(t_new, __state); in get_task_state()