summaryrefslogtreecommitdiffstats
path: root/sys/net/if.c
diff options
context:
space:
mode:
authormlaier <mlaier@FreeBSD.org>2004-06-15 01:45:19 +0000
committermlaier <mlaier@FreeBSD.org>2004-06-15 01:45:19 +0000
commitde92edb6b40acca5f92bbd5dd5fc05f52923f0cd (patch)
tree893aca9ae1367e7ea2d586dce0f636c5e22a8598 /sys/net/if.c
parent0d395ced064ef2b8552aa3cac8df26f23da67356 (diff)
downloadFreeBSD-src-de92edb6b40acca5f92bbd5dd5fc05f52923f0cd.zip
FreeBSD-src-de92edb6b40acca5f92bbd5dd5fc05f52923f0cd.tar.gz
Transform tbr_dequeue into a function pointer in order to build drivers with
ALTQ enabled versions of IFQ_* macros by default, as requested by serveral others. This is a follow-up to the quick fix I committed yesterday which turned off the ALTQ checks for non-ALTQ kernels.
Diffstat (limited to 'sys/net/if.c')
-rw-r--r--sys/net/if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.c b/sys/net/if.c
index c1d874a..7942065 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -75,6 +75,8 @@
#include <netinet/if_ether.h>
#endif
+struct mbuf *(*tbr_dequeue_ptr)(struct ifaltq *, int) = NULL;
+
static void if_attachdomain(void *);
static void if_attachdomain1(struct ifnet *);
static int ifconf(u_long, caddr_t);
@@ -441,13 +443,11 @@ if_attach(struct ifnet *ifp)
ifa->ifa_refcnt = 1;
TAILQ_INSERT_HEAD(&ifp->if_addrhead, ifa, ifa_link);
ifp->if_broadcastaddr = 0; /* reliably crash if used uninitialized */
-#ifdef ALTQ
ifp->if_snd.altq_type = 0;
ifp->if_snd.altq_disc = NULL;
ifp->if_snd.altq_flags &= ALTQF_CANTCHANGE;
ifp->if_snd.altq_tbr = NULL;
ifp->if_snd.altq_ifp = ifp;
-#endif
if (domains)
if_attachdomain1(ifp);
OpenPOWER on IntegriCloud