| 312 | static void unp_process_defers(void * __unused, int); |
| 313 | |
| 314 | static void |
| 315 | unp_pcb_hold(struct unpcb *unp) |
| 316 | { |
| 317 | u_int old __unused; |
| 318 | |
| 319 | old = refcount_acquire(&unp->unp_refcount); |
| 320 | KASSERT(old > 0, ("%s: unpcb %p has no references", __func__, unp)); |
| 321 | } |
| 322 | |
| 323 | static __result_use_check bool |
| 324 | unp_pcb_rele(struct unpcb *unp) |
no test coverage detected