| 1101 | } |
| 1102 | |
| 1103 | int32_t |
| 1104 | __tcp_queue_to_input(struct inpcb *inp, int line) |
| 1105 | { |
| 1106 | struct tcp_hpts_entry *hpts; |
| 1107 | int32_t ret; |
| 1108 | |
| 1109 | hpts = tcp_input_lock(inp); |
| 1110 | ret = __tcp_queue_to_input_locked(inp, hpts, line); |
| 1111 | mtx_unlock(&hpts->p_mtx); |
| 1112 | return (ret); |
| 1113 | } |
| 1114 | |
| 1115 | void |
| 1116 | __tcp_set_inp_to_drop(struct inpcb *inp, uint16_t reason, int32_t line) |
nothing calls this directly
no test coverage detected