From 70a972f851feb0804a5c47063ffa69cb44987cfc Mon Sep 17 00:00:00 2001 From: Kenjiro Cho Date: Wed, 27 Jun 2001 05:50:08 +0000 Subject: ALTQ base modifications to the kernel. - ALTQ introduces a set of new queue macros that coexist with the traditional IF_XXX macros. - "struct ifaltq" replaces "struct ifqueue" in "struct ifnet". - assign cdev major 74 for i386 and 54 for alpha as ALTQ control interface. --- sys/arch/alpha/alpha/conf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sys/arch/alpha') diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index 85c2ceff63d..6648a10318a 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.26 2001/06/26 20:24:10 art Exp $ */ +/* $OpenBSD: conf.c,v 1.27 2001/06/27 05:50:03 kjc Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -145,6 +145,8 @@ cdev_decl(pf); cdev_decl(pci); #endif +#include + struct cdevsw cdevsw[] = { cdev_cn_init(1,cn), /* 0: virtual console */ @@ -208,6 +210,7 @@ struct cdevsw cdevsw[] = #else cdev_notdef(), #endif + cdev_altq_init(NALTQ, altq), /* 53: ALTQ control interface */ }; int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]); -- cgit v1.2.3