a5c13f9ad4
* put #includes of opt headers and headers to get protos used by net/netisr_dispatch.h in net/netisr.h (if !defined(_LOCORE)) (rather than in netisr_dispatch.h itself, and potentially nowhere, respectively). * require netisr.h to be included before netisr_dispatch.h. * minor additional cleanup of both netisr.h and netisr_dispatch.h. * clean up uses to remove now-unnecessary header file inclusions, and local prototypes of the fns. * convert netisr dispatch implementations which didn't use netisr_dispatch.h (pc532) to use it.
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
/* $NetBSD: netisr_dispatch.h,v 1.2 2000/07/02 04:40:47 cgd Exp $ */
|
|
|
|
/*
|
|
* netisr_dispatch: This file is included by the
|
|
* machine dependant softnet function. The
|
|
* DONETISR macro should be set before including
|
|
* this file. i.e.:
|
|
*
|
|
* softintr() {
|
|
* ...do setup stuff...
|
|
* #define DONETISR(bit, fn) do { ... } while (0)
|
|
* #include <net/netisr_dispatch.h>
|
|
* #undef DONETISR
|
|
* ...do cleanup stuff.
|
|
* }
|
|
*/
|
|
|
|
#ifndef _NET_NETISR_H_
|
|
#error <net/netisr.h> must be included before <net/netisr_dispatch.h>
|
|
#endif
|
|
|
|
/*
|
|
* When adding functions to this list, be sure to add headers to provide
|
|
* their prototypes in <net/netisr.h> (if necessary).
|
|
*/
|
|
|
|
#ifdef INET
|
|
#if NARP > 0
|
|
DONETISR(NETISR_ARP,arpintr);
|
|
#endif
|
|
DONETISR(NETISR_IP,ipintr);
|
|
#endif
|
|
#ifdef INET6
|
|
DONETISR(NETISR_IPV6,ip6intr);
|
|
#endif
|
|
#ifdef NETATALK
|
|
DONETISR(NETISR_ATALK,atintr);
|
|
#endif
|
|
#ifdef NS
|
|
DONETISR(NETISR_NS,nsintr);
|
|
#endif
|
|
#ifdef ISO
|
|
DONETISR(NETISR_ISO,clnlintr);
|
|
#endif
|
|
#ifdef CCITT
|
|
DONETISR(NETISR_CCITT,ccittintr);
|
|
#endif
|
|
#ifdef NATM
|
|
DONETISR(NETISR_NATM,natmintr);
|
|
#endif
|
|
#if NPPP > 0
|
|
DONETISR(NETISR_PPP,pppintr);
|
|
#endif
|