Searched refs:hole (Results 1 – 1 of 1) sorted by relevance
248 struct sackhole *hole; in tcp_sackhole_alloc() local256 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() argument274 zfree(sack_hole_zone, hole); in tcp_sackhole_free()287 struct sackhole *hole; in tcp_sackhole_insert() local290 hole = tcp_sackhole_alloc(tp, start, end); in tcp_sackhole_insert()[all …]