diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-09 14:33:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-09 14:33:00 +0000 |
commit | 136873ca9383ddf28b4811726bedd929e974b157 (patch) | |
tree | 9b71eb8556de0fc1b6edc61d5947a007076fa222 /sys/altq/altq_wfq.c | |
parent | 91614215ff85e9165f2e201ca0a0b3bba8c47d40 (diff) |
change a maze of altq options into just "altq" for the base+red+cbq, and
then altq_* for each of the other * experimental options. and.. enable
it by default in GENERIC.
Diffstat (limited to 'sys/altq/altq_wfq.c')
-rw-r--r-- | sys/altq/altq_wfq.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/altq/altq_wfq.c b/sys/altq/altq_wfq.c index e1545d5b694..d319b10e2a1 100644 --- a/sys/altq/altq_wfq.c +++ b/sys/altq/altq_wfq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: altq_wfq.c,v 1.1 2001/06/27 05:28:36 kjc Exp $ */ +/* $OpenBSD: altq_wfq.c,v 1.2 2001/08/09 14:32:59 deraadt Exp $ */ /* $KAME: altq_wfq.c,v 1.7 2000/12/14 08:12:46 thorpej Exp $ */ /* @@ -31,17 +31,6 @@ * (kyu@mt.cs.keio.ac.jp). */ -#if defined(__FreeBSD__) || defined(__NetBSD__) -#include "opt_altq.h" -#if (__FreeBSD__ != 2) -#include "opt_inet.h" -#ifdef __FreeBSD__ -#include "opt_inet6.h" -#endif -#endif -#endif /* __FreeBSD__ || __NetBSD__ */ -#ifdef ALTQ_WFQ - #include <sys/types.h> #include <sys/param.h> #include <sys/malloc.h> @@ -748,5 +737,3 @@ static struct altqsw wfq_sw = ALTQ_MODULE(altq_wfq, ALTQT_WFQ, &wfq_sw); #endif /* KLD_MODULE */ - -#endif /* ALTQ_WFQ */ |