| 2304 | } |
| 2305 | |
| 2306 | static void |
| 2307 | pfsync_push_all(struct pfsync_softc *sc) |
| 2308 | { |
| 2309 | int c; |
| 2310 | struct pfsync_bucket *b; |
| 2311 | |
| 2312 | for (c = 0; c < pfsync_buckets; c++) { |
| 2313 | b = &sc->sc_buckets[c]; |
| 2314 | |
| 2315 | PFSYNC_BUCKET_LOCK(b); |
| 2316 | pfsync_push(b); |
| 2317 | PFSYNC_BUCKET_UNLOCK(b); |
| 2318 | } |
| 2319 | } |
| 2320 | |
| 2321 | static void |
| 2322 | pfsyncintr(void *arg) |
no test coverage detected