The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/net/netisr_dispatch.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $NetBSD: netisr_dispatch.h,v 1.13 2006/09/07 02:40:33 dogcow Exp $ */
    2 
    3 #ifndef _NET_NETISR_DISPATCH_H_
    4 #define _NET_NETISR_DISPATCH_H_
    5 
    6 /*
    7  * netisr_dispatch: This file is included by the
    8  *      machine dependant softnet function.  The
    9  *      DONETISR macro should be set before including
   10  *      this file.  i.e.:
   11  *
   12  * softintr() {
   13  *      ...do setup stuff...
   14  *      #define DONETISR(bit, fn) do { ... } while (0)
   15  *      #include <net/netisr_dispatch.h>
   16  *      #undef DONETISR
   17  *      ...do cleanup stuff.
   18  * }
   19  */
   20 
   21 #ifndef _NET_NETISR_H_
   22 #error <net/netisr.h> must be included before <net/netisr_dispatch.h>
   23 #endif
   24 
   25 /*
   26  * When adding functions to this list, be sure to add headers to provide
   27  * their prototypes in <net/netisr.h> (if necessary).
   28  */
   29 
   30 #ifdef INET
   31 #if NARP > 0
   32         DONETISR(NETISR_ARP,arpintr);
   33 #endif
   34         DONETISR(NETISR_IP,ipintr);
   35 #endif
   36 #ifdef INET6
   37         DONETISR(NETISR_IPV6,ip6intr);
   38 #endif
   39 #ifdef NETATALK
   40         DONETISR(NETISR_ATALK,atintr);
   41 #endif
   42 #ifdef ISO
   43         DONETISR(NETISR_ISO,clnlintr);
   44 #endif
   45 #ifdef NATM
   46         DONETISR(NETISR_NATM,natmintr);
   47 #endif
   48 #if NSL > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
   49         DONETISR(NETISR_SLIP,slnetisr);
   50 #endif
   51 #if NSTRIP > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
   52         DONETISR(NETISR_STRIP,stripnetisr);
   53 #endif
   54 #if NPPP > 0 && !defined(__HAVE_GENERIC_SOFT_INTERRUPTS)
   55         DONETISR(NETISR_PPP,pppnetisr);
   56 #endif
   57 
   58 #endif /* !_NET_NETISR_DISPATCH_H_ */

Cache object: e1a95432b56640ca6fe7a81a11dc54dd


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.