| 1443 | /* END state table stuff */ |
| 1444 | |
| 1445 | static void |
| 1446 | pf_send(struct pf_send_entry *pfse) |
| 1447 | { |
| 1448 | |
| 1449 | PF_SENDQ_LOCK(); |
| 1450 | STAILQ_INSERT_TAIL(&V_pf_sendqueue, pfse, pfse_next); |
| 1451 | PF_SENDQ_UNLOCK(); |
| 1452 | swi_sched(V_pf_swi_cookie, 0); |
| 1453 | } |
| 1454 | |
| 1455 | void |
| 1456 | pf_intr(void *v) |
no test coverage detected