| 1451 | extern void pf_free_state(struct pf_state *); |
| 1452 | |
| 1453 | static __inline void |
| 1454 | pf_ref_state(struct pf_state *s) |
| 1455 | { |
| 1456 | |
| 1457 | refcount_acquire(&s->refs); |
| 1458 | } |
| 1459 | |
| 1460 | static __inline int |
| 1461 | pf_release_state(struct pf_state *s) |
no test coverage detected