| 2282 | } |
| 2283 | |
| 2284 | static void |
| 2285 | pfsync_timeout(void *arg) |
| 2286 | { |
| 2287 | struct pfsync_bucket *b = arg; |
| 2288 | |
| 2289 | CURVNET_SET(b->b_sc->sc_ifp->if_vnet); |
| 2290 | PFSYNC_BUCKET_LOCK(b); |
| 2291 | pfsync_push(b); |
| 2292 | PFSYNC_BUCKET_UNLOCK(b); |
| 2293 | CURVNET_RESTORE(); |
| 2294 | } |
| 2295 | |
| 2296 | static void |
| 2297 | pfsync_push(struct pfsync_bucket *b) |
nothing calls this directly
no test coverage detected