| 601 | } |
| 602 | |
| 603 | static void |
| 604 | tcp_hpts_remove_locked_output(struct tcp_hpts_entry *hpts, struct inpcb *inp, int32_t flags, int32_t line) |
| 605 | { |
| 606 | if (inp->inp_in_hpts) { |
| 607 | hpts_sane_pace_remove(hpts, inp, &hpts->p_hptss[inp->inp_hptsslot], 1); |
| 608 | tcp_remove_hpts_ref(inp, hpts, line); |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | static void |
| 613 | tcp_hpts_remove_locked_input(struct tcp_hpts_entry *hpts, struct inpcb *inp, int32_t flags, int32_t line) |
no test coverage detected