Lines Matching refs:superblocks
78 TAILQ_HEAD(superblocks, superblock);
219 struct superblocks *);
222 int load_feedback_profile(struct pfctl *, struct superblocks *);
269 struct superblocks superblocks; in pfctl_optimize_ruleset() local
322 TAILQ_INIT(&superblocks); in pfctl_optimize_ruleset()
323 if (construct_superblocks(pf, &opt_queue, &superblocks)) in pfctl_optimize_ruleset()
327 if (load_feedback_profile(pf, &superblocks)) in pfctl_optimize_ruleset()
331 TAILQ_FOREACH(block, &superblocks, sb_entry) { in pfctl_optimize_ruleset()
337 while ((block = TAILQ_FIRST(&superblocks))) { in pfctl_optimize_ruleset()
338 TAILQ_REMOVE(&superblocks, block, sb_entry); in pfctl_optimize_ruleset()
369 while ((block = TAILQ_FIRST(&superblocks))) { in pfctl_optimize_ruleset()
370 TAILQ_REMOVE(&superblocks, block, sb_entry); in pfctl_optimize_ruleset()
886 load_feedback_profile(struct pfctl *pf, struct superblocks *superblocks) in load_feedback_profile() argument
890 struct superblocks prof_superblocks; in load_feedback_profile()
945 block = TAILQ_FIRST(superblocks); in load_feedback_profile()
1347 struct superblocks *superblocks) in construct_superblocks() argument
1364 TAILQ_INSERT_TAIL(superblocks, block, sb_entry); in construct_superblocks()