| 347 | } |
| 348 | |
| 349 | static void |
| 350 | tcp_lro_rx_done(struct lro_ctrl *lc) |
| 351 | { |
| 352 | struct lro_entry *le; |
| 353 | |
| 354 | while ((le = LIST_FIRST(&lc->lro_active)) != NULL) { |
| 355 | tcp_lro_active_remove(le); |
| 356 | tcp_lro_flush(lc, le); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | void |
| 361 | tcp_lro_flush_inactive(struct lro_ctrl *lc, const struct timeval *timeout) |
no test coverage detected