aboutsummaryrefslogtreecommitdiff
path: root/sys/net/altq/altq_cbq.c
diff options
context:
space:
mode:
authorPatrick Kelsey <pkelsey@FreeBSD.org>2019-02-11 05:17:31 +0000
committerPatrick Kelsey <pkelsey@FreeBSD.org>2019-02-11 05:17:31 +0000
commit8f2ac656906a7d498bd6784a09ceeed9f953e2ff (patch)
tree8a08d0989a34b08be16c5324462c0ec5d9820638 /sys/net/altq/altq_cbq.c
parent6286a6438e32951be6d5f05291332e14ecefd5c2 (diff)
downloadsrc-8f2ac656906a7d498bd6784a09ceeed9f953e2ff.tar.gz
src-8f2ac656906a7d498bd6784a09ceeed9f953e2ff.zip
Reduce the time it takes the kernel to install a new PF config containing a large number of queues
In general, the time savings come from separating the active and inactive queues lists into separate interface and non-interface queue lists, and changing the rule and queue tag management from list-based to hash-bashed. In HFSC, a linear scan of the class table during each queue destroy was also eliminated. There are now two new tunables to control the hash size used for each tag set (default for each is 128): net.pf.queue_tag_hashsize net.pf.rule_tag_hashsize Reviewed by: kp MFC after: 1 week Sponsored by: RG Nets Differential Revision: https://reviews.freebsd.org/D19131
Notes
Notes: svn path=/head/; revision=343995
Diffstat (limited to 'sys/net/altq/altq_cbq.c')
-rw-r--r--sys/net/altq/altq_cbq.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/net/altq/altq_cbq.c b/sys/net/altq/altq_cbq.c
index aa646848dc32..fd05955bb966 100644
--- a/sys/net/altq/altq_cbq.c
+++ b/sys/net/altq/altq_cbq.c
@@ -223,12 +223,11 @@ cbq_pfattach(struct pf_altq *a)
}
int
-cbq_add_altq(struct pf_altq *a)
+cbq_add_altq(struct ifnet *ifp, struct pf_altq *a)
{
cbq_state_t *cbqp;
- struct ifnet *ifp;
- if ((ifp = ifunit(a->ifname)) == NULL)
+ if (ifp == NULL)
return (EINVAL);
if (!ALTQ_IS_READY(&ifp->if_snd))
return (ENODEV);