Searched refs:t_new (Results 1 - 3 of 3) sorted by relevance

/linux-master/samples/bpf/
H A Dhbm.c215 struct timeval t0, t_last, t_new; local
235 if (gettimeofday(&t_new, NULL) < 0)
237 delta_ms = (t_new.tv_sec - t0.tv_sec) * 1000 +
238 (t_new.tv_usec - t0.tv_usec)/1000;
241 delta_time = (t_new.tv_sec - t_last.tv_sec) * 1000000 +
242 (t_new.tv_usec - t_last.tv_usec);
245 t_last = t_new;
/linux-master/tools/perf/util/bpf_skel/
H A Doff_cpu.bpf.c108 struct task_struct___new *t_new = (void *)t; local
110 if (bpf_core_field_exists(t_new->__state)) {
111 return BPF_CORE_READ(t_new, __state);
/linux-master/net/ipv6/
H A Dseg6.c239 struct in6_addr *val, *t_old, *t_new; local
248 t_new = kmemdup(val, sizeof(*val), GFP_KERNEL);
249 if (!t_new)
255 rcu_assign_pointer(sdata->tun_src, t_new);

Completed in 122 milliseconds