Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/netinet/
H A Dtcp_sack.c248 struct sackhole *hole; in tcp_sackhole_alloc() local
256 hole = zalloc_flags(sack_hole_zone, Z_WAITOK | Z_NOFAIL); in tcp_sackhole_alloc()
258 hole->start = start; in tcp_sackhole_alloc()
259 hole->end = end; in tcp_sackhole_alloc()
260 hole->rxmit = start; in tcp_sackhole_alloc()
265 return hole; in tcp_sackhole_alloc()
272 tcp_sackhole_free(struct tcpcb *tp, struct sackhole *hole) in tcp_sackhole_free() argument
274 zfree(sack_hole_zone, hole); in tcp_sackhole_free()
287 struct sackhole *hole; in tcp_sackhole_insert() local
290 hole = tcp_sackhole_alloc(tp, start, end); in tcp_sackhole_insert()
[all …]