| 1770 | } |
| 1771 | |
| 1772 | static int |
| 1773 | pfr_skip_table(struct pfr_table *filter, struct pfr_ktable *kt, int flags) |
| 1774 | { |
| 1775 | if (flags & PFR_FLAG_ALLRSETS) |
| 1776 | return (0); |
| 1777 | if (strcmp(filter->pfrt_anchor, kt->pfrkt_anchor)) |
| 1778 | return (1); |
| 1779 | return (0); |
| 1780 | } |
| 1781 | |
| 1782 | static void |
| 1783 | pfr_insert_ktables(struct pfr_ktableworkq *workq) |
no test coverage detected