summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/altq/if_altq.h4
-rw-r--r--sys/net/if.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/sys/altq/if_altq.h b/sys/altq/if_altq.h
index 79494208986..c83f0a8578b 100644
--- a/sys/altq/if_altq.h
+++ b/sys/altq/if_altq.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_altq.h,v 1.10 2005/10/17 08:43:35 henning Exp $ */
+/* $OpenBSD: if_altq.h,v 1.11 2007/11/18 12:51:48 mpf Exp $ */
/* $KAME: if_altq.h,v 1.6 2001/01/29 19:59:09 itojun Exp $ */
/*
@@ -47,7 +47,7 @@ struct ifaltq {
int ifq_len;
int ifq_maxlen;
int ifq_drops;
- int ifq_congestion;
+ struct timeout *ifq_congestion;
/* alternate queueing related fields */
int altq_type; /* discipline type */
diff --git a/sys/net/if.h b/sys/net/if.h
index 552e7b07401..c2adb9e9a36 100644
--- a/sys/net/if.h
+++ b/sys/net/if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.h,v 1.92 2007/09/03 15:24:49 claudio Exp $ */
+/* $OpenBSD: if.h,v 1.93 2007/11/18 12:51:48 mpf Exp $ */
/* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */
/*
@@ -135,6 +135,7 @@ struct if_data {
/*
* Structure defining a queue for a network interface.
+ * XXX keep in sync with struct ifaltq.
*/
struct ifqueue {
struct mbuf *ifq_head;