| 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) |
| 614 | { |
| 615 | HPTS_MTX_ASSERT(hpts); |
| 616 | if (inp->inp_in_input) { |
| 617 | hpts_sane_input_remove(hpts, inp, 1); |
| 618 | tcp_remove_hpts_ref(inp, hpts, line); |
| 619 | } |
| 620 | } |
| 621 | |
| 622 | /* |
| 623 | * Called normally with the INP_LOCKED but it |
no test coverage detected