summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2014-04-19 15:57:26 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2014-04-19 15:57:26 +0000
commit5eb7a110e3f11059688cca1c8d59d63f212abb92 (patch)
tree5d501dc022d4d82cfc4d4b9e14b6b998e364553a /sys
parent264ed576300e3026b0209c4979abd3be832095d4 (diff)
ifnet's if_snd becomes a regular ifqueue instead of ifaltq, the need to
keep ifqueue and ifaltq in sync is gone and thus the comment obsolete, and finally there is no more need to include if_altq.h either
Diffstat (limited to 'sys')
-rw-r--r--sys/net/if_var.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/net/if_var.h b/sys/net/if_var.h
index 36a317b63e1..a63e0a94be6 100644
--- a/sys/net/if_var.h
+++ b/sys/net/if_var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_var.h,v 1.7 2014/04/19 11:26:10 henning Exp $ */
+/* $OpenBSD: if_var.h,v 1.8 2014/04/19 15:57:25 henning Exp $ */
/* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */
/*
@@ -37,7 +37,6 @@
#define _NET_IF_VAR_H_
#include <sys/queue.h>
-#include <altq/if_altq.h>
#ifdef _KERNEL
#include <net/hfsc.h>
#endif
@@ -96,7 +95,6 @@ struct if_clone {
/*
* Structure defining a queue for a network interface.
- * XXX keep in sync with struct ifaltq.
*/
struct ifqueue {
struct {
@@ -168,7 +166,7 @@ struct ifnet { /* and the entries */
void (*if_watchdog)(struct ifnet *);
int (*if_wol)(struct ifnet *, int);
struct ifaddr *if_lladdr; /* pointer to link-level address */
- struct ifaltq if_snd; /* output queue (includes altq) */
+ struct ifqueue if_snd; /* output queue */
struct sockaddr_dl *if_sadl; /* pointer to our sockaddr_dl */
void *if_afdata[AF_MAX];