From 0a70aaf8f5d93454d0940a09b94deecd7aa5fa0d Mon Sep 17 00:00:00 2001 From: Luiz Otavio O Souza Date: Fri, 21 Aug 2015 22:02:22 +0000 Subject: Add ALTQ(9) support for the CoDel algorithm. CoDel is a parameterless queue discipline that handles variable bandwidth and RTT. It can be used as the single queue discipline on an interface or as a sub discipline of existing queue disciplines such as PRIQ, CBQ, HFSC, FAIRQ. Differential Revision: https://reviews.freebsd.org/D3272 Reviewd by: rpaulo, gnn (previous version) Obtained from: pfSense Sponsored by: Rubicon Communications (Netgate) --- sys/conf/files | 1 + sys/conf/options | 1 + 2 files changed, 2 insertions(+) (limited to 'sys/conf') diff --git a/sys/conf/files b/sys/conf/files index e89423d74d22..8da969c86a56 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -3429,6 +3429,7 @@ libkern/zlib.c optional crypto | geom_uzip | ipsec | \ ddb_ctf | gzio | geom_uncompress net/altq/altq_cbq.c optional altq net/altq/altq_cdnr.c optional altq +net/altq/altq_codel.c optional altq net/altq/altq_hfsc.c optional altq net/altq/altq_fairq.c optional altq net/altq/altq_priq.c optional altq diff --git a/sys/conf/options b/sys/conf/options index 30bbc53bd5a2..089b1a20f72d 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -388,6 +388,7 @@ ACCEPT_FILTER_HTTP ALTQ opt_global.h ALTQ_CBQ opt_altq.h ALTQ_CDNR opt_altq.h +ALTQ_CODEL opt_altq.h ALTQ_DEBUG opt_altq.h ALTQ_HFSC opt_altq.h ALTQ_FAIRQ opt_altq.h -- cgit v1.3