| 827 | } |
| 828 | |
| 829 | static void |
| 830 | pfr_destroy_kentry(struct pfr_kentry *ke) |
| 831 | { |
| 832 | counter_u64_t c; |
| 833 | |
| 834 | if ((c = ke->pfrke_counters.pfrkc_counters) != NULL) |
| 835 | uma_zfree_pcpu(V_pfr_kentry_counter_z, c); |
| 836 | uma_zfree(V_pfr_kentry_z, ke); |
| 837 | } |
| 838 | |
| 839 | static void |
| 840 | pfr_insert_kentries(struct pfr_ktable *kt, |
no test coverage detected