Add netatalk netisr
This commit is contained in:
parent
ad36b6970e
commit
738cdfd351
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: machdep.c,v 1.39 1997/03/27 21:01:56 thorpej Exp $ */
|
||||
/* $NetBSD: machdep.c,v 1.40 1997/04/03 17:35:56 christos Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
|
||||
|
@ -85,6 +85,9 @@
|
|||
#include <netinet/if_ether.h>
|
||||
#include <netinet/ip_var.h>
|
||||
#endif
|
||||
#ifdef NETATALK
|
||||
#include <netatalk/at_extern.h>
|
||||
#endif
|
||||
#ifdef NS
|
||||
#include <netns/ns_var.h>
|
||||
#endif
|
||||
|
@ -609,6 +612,12 @@ netintr()
|
|||
ipintr();
|
||||
}
|
||||
#endif
|
||||
#ifdef NETATALK
|
||||
if (netisr & (1 << NETISR_ATALK)) {
|
||||
netisr &= ~(1 << NETISR_ATALK);
|
||||
atintr();
|
||||
}
|
||||
#endif
|
||||
#ifdef NS
|
||||
if (netisr & (1 << NETISR_NS)) {
|
||||
netisr &= ~(1 << NETISR_NS);
|
||||
|
|
Loading…
Reference in New Issue