diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-01-07 23:16:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-01-07 23:16:09 +0000 |
commit | 442a311375e09fddb113ba6a49228530c53bb53f (patch) | |
tree | c86df64571eb4e09abd3f447acb73a410741faf8 /sys/arch/mvme68k | |
parent | 6e5a6e8c80d378850137a3c72be709991fd47faa (diff) |
global decl for *intr() routines, plus add INET6
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/machdep.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c index f3cc2011518..03613846387 100644 --- a/sys/arch/mvme68k/mvme68k/machdep.c +++ b/sys/arch/mvme68k/mvme68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.23 1998/03/01 00:37:42 niklas Exp $ */ +/* $OpenBSD: machdep.c,v 1.24 1999/01/07 23:16:01 deraadt Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -855,6 +855,12 @@ netintr() ipintr(); } #endif +#ifdef INET6 + if (netisr & (1 << NETISR_IPV6)) { + netisr &= ~(1 << NETISR_IPV6); + ipv6intr(); + } +#endif #ifdef NETATALK if (netisr & (1 << NETISR_ATALK)) { netisr &= ~(1 << NETISR_ATALK); |