summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2017-05-15 11:59:30 +0000
committerjsg <jsg@openbsd.org>2017-05-15 11:59:30 +0000
commitd7a2b5de7209bc41ef6b05cba72838cff28a53da (patch)
treec0df3a8a149703fcc0392247a87dbc93dad38780
parentDocument the new flow queue specification (diff)
downloadwireguard-openbsd-d7a2b5de7209bc41ef6b05cba72838cff28a53da.tar.xz
wireguard-openbsd-d7a2b5de7209bc41ef6b05cba72838cff28a53da.zip
clang warns on unused static const variables. Remove one such unused
variable so the kernel will build on arm64 again.
-rw-r--r--sys/net/fq_codel.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/net/fq_codel.c b/sys/net/fq_codel.c
index 982e51373d3..9a094a3c386 100644
--- a/sys/net/fq_codel.c
+++ b/sys/net/fq_codel.c
@@ -157,9 +157,6 @@ const struct pfq_ops * const pfq_fqcodel_ops = &fqcodel_pf_ops;
/* Default aggregate queue depth */
static const unsigned int fqcodel_qlimit = 1024;
-/* Packet drop threshold */
-static const unsigned int fqcodel_threshold = 64;
-
/*
* CoDel implementation
*/