Unbreak non-ALTQ kernel linking. I forgot about tbr_dequeue.

In the end drivers should be building with ALTQ checks by default, but for
now build them with the old macros for non-ALTQ kernels.

Note: Check new features w/ LINT *and* w/ LINT minus the new feature.

Found-by:	rwatson
This commit is contained in:
Max Laier 2004-06-14 03:55:09 +00:00
parent f504b6074b
commit 930e2cfa1f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130449

View File

@ -356,7 +356,7 @@ if_handoff(struct ifqueue *ifq, struct mbuf *m, struct ifnet *ifp, int adjust)
(*ifp->if_start)(ifp);
return (1);
}
#if 1 /* ALTQ */
#ifdef ALTQ
#define IFQ_ENQUEUE(ifq, m, err) \
do { \
IF_LOCK(ifq); \