| 1135 | } |
| 1136 | |
| 1137 | static void |
| 1138 | tcp_fastopen_ccache_entry_drop(struct tcp_fastopen_ccache_entry *cce, |
| 1139 | struct tcp_fastopen_ccache_bucket *ccb) |
| 1140 | { |
| 1141 | |
| 1142 | CCB_LOCK_ASSERT(ccb); |
| 1143 | |
| 1144 | TAILQ_REMOVE(&ccb->ccb_entries, cce, cce_link); |
| 1145 | ccb->ccb_num_entries--; |
| 1146 | uma_zfree(V_tcp_fastopen_ccache.zone, cce); |
| 1147 | } |
| 1148 | |
| 1149 | static int |
| 1150 | sysctl_net_inet_tcp_fastopen_ccache_list(SYSCTL_HANDLER_ARGS) |
no test coverage detected