Lines Matching refs:superblocks
76 TAILQ_HEAD(superblocks, superblock);
216 struct superblocks *);
219 int load_feedback_profile(struct pfctl *, struct superblocks *);
266 struct superblocks superblocks; in pfctl_optimize_ruleset() local
298 TAILQ_INIT(&superblocks); in pfctl_optimize_ruleset()
299 if (construct_superblocks(pf, &opt_queue, &superblocks)) in pfctl_optimize_ruleset()
303 if (load_feedback_profile(pf, &superblocks)) in pfctl_optimize_ruleset()
307 TAILQ_FOREACH(block, &superblocks, sb_entry) { in pfctl_optimize_ruleset()
313 while ((block = TAILQ_FIRST(&superblocks))) { in pfctl_optimize_ruleset()
314 TAILQ_REMOVE(&superblocks, block, sb_entry); in pfctl_optimize_ruleset()
339 while ((block = TAILQ_FIRST(&superblocks))) { in pfctl_optimize_ruleset()
340 TAILQ_REMOVE(&superblocks, block, sb_entry); in pfctl_optimize_ruleset()
846 load_feedback_profile(struct pfctl *pf, struct superblocks *superblocks) in load_feedback_profile() argument
849 struct superblocks prof_superblocks; in load_feedback_profile()
894 block = TAILQ_FIRST(superblocks); in load_feedback_profile()
1305 struct superblocks *superblocks) in construct_superblocks() argument
1322 TAILQ_INSERT_TAIL(superblocks, block, sb_entry); in construct_superblocks()