| 496 | #define RECHECK_INP() RECHECK_INP_CLEAN(/* noop */) |
| 497 | |
| 498 | static void |
| 499 | tcp_log_grow_tlb(char *tlb_id, struct tcpcb *tp) |
| 500 | { |
| 501 | |
| 502 | INP_WLOCK_ASSERT(tp->t_inpcb); |
| 503 | |
| 504 | #ifdef STATS |
| 505 | if (V_tcp_perconn_stats_enable == 2 && tp->t_stats == NULL) |
| 506 | (void)tcp_stats_sample_rollthedice(tp, tlb_id, strlen(tlb_id)); |
| 507 | #endif |
| 508 | } |
| 509 | |
| 510 | static void |
| 511 | tcp_log_increment_reqcnt(struct tcp_log_id_bucket *tlb) |
no test coverage detected