Lines Matching refs:superblocks
79 TAILQ_HEAD(superblocks, superblock);
217 struct superblocks *);
220 int load_feedback_profile(struct pfctl *, struct superblocks *);
265 struct superblocks superblocks; in pfctl_optimize_ruleset() local
304 TAILQ_INIT(&superblocks); in pfctl_optimize_ruleset()
305 if (construct_superblocks(pf, &opt_queue, &superblocks)) in pfctl_optimize_ruleset()
309 if (load_feedback_profile(pf, &superblocks)) in pfctl_optimize_ruleset()
313 TAILQ_FOREACH(block, &superblocks, sb_entry) { in pfctl_optimize_ruleset()
319 while ((block = TAILQ_FIRST(&superblocks))) { in pfctl_optimize_ruleset()
320 TAILQ_REMOVE(&superblocks, block, sb_entry); in pfctl_optimize_ruleset()
355 while ((block = TAILQ_FIRST(&superblocks))) { in pfctl_optimize_ruleset()
356 TAILQ_REMOVE(&superblocks, block, sb_entry); in pfctl_optimize_ruleset()
879 load_feedback_profile(struct pfctl *pf, struct superblocks *superblocks) in load_feedback_profile() argument
883 struct superblocks prof_superblocks; in load_feedback_profile()
934 block = TAILQ_FIRST(superblocks); in load_feedback_profile()
1335 struct superblocks *superblocks) in construct_superblocks() argument
1352 TAILQ_INSERT_TAIL(superblocks, block, sb_entry); in construct_superblocks()