Searched refs:ttd (Results 1 – 4 of 4) sorted by relevance
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | bpf_iter_tcp4.c | 177 long ttd; in dump_req_sock() local 179 ttd = req->rsk_timer.expires - bpf_jiffies64(); in dump_req_sock() 181 if (ttd < 0) in dump_req_sock() 182 ttd = 0; in dump_req_sock() 189 TCP_SYN_RECV, 0, 0, 1, jiffies_to_clock_t(ttd), in dump_req_sock()
|
| H A D | bpf_iter_tcp6.c | 187 long ttd; in dump_req_sock() local 189 ttd = req->rsk_timer.expires - bpf_jiffies64(); in dump_req_sock() 193 if (ttd < 0) in dump_req_sock() 194 ttd = 0; in dump_req_sock() 205 TCP_SYN_RECV, 0, 0, 1, jiffies_to_clock_t(ttd), in dump_req_sock()
|
| /linux/net/ipv6/ |
| H A D | ip6_flowlabel.c | 132 unsigned long ttd = fl->lastuse + fl->linger; in fl_release() local 133 if (time_after(ttd, fl->expires)) in fl_release() 134 fl->expires = ttd; in fl_release() 135 ttd = fl->expires; in fl_release() 137 time_after(ip6_fl_gc_timer.expires, ttd)) in fl_release() 138 mod_timer(&ip6_fl_gc_timer, ttd); in fl_release() 159 unsigned long ttd = fl->lastuse + fl->linger; in ip6_fl_gc() local 160 if (time_after(ttd, fl->expires)) in ip6_fl_gc() 161 fl->expires = ttd; in ip6_fl_gc() 162 ttd = fl->expires; in ip6_fl_gc() [all …]
|
| H A D | tcp_ipv6.c | 2098 long ttd = req->rsk_timer.expires - jiffies; local 2102 if (ttd < 0) 2103 ttd = 0; 2118 jiffies_to_clock_t(ttd),
|