Register keyword removal
[dragonfly.git] / sys / net / intrq.c
1 /*-
2  * Copyright (c) 2000 Brian Somers <brian@Awfulhak.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/net/intrq.c,v 1.3 2000/01/29 16:13:08 peter Exp $
27  * $DragonFly: src/sys/net/Attic/intrq.c,v 1.2 2003/06/17 04:28:48 dillon Exp $
28  */
29
30 #include <sys/param.h>
31 #include <sys/mbuf.h>
32 #include <sys/socket.h>
33 #include <sys/systm.h>
34 #include <sys/time.h>
35
36 #include <net/if.h>
37 #include <net/if_var.h>
38 #include <net/netisr.h>
39 #include <net/intrq.h>
40
41 #ifdef __i386__
42 #include <netatm/kern_include.h>        /* XXX overkill, fixme! */
43 #endif
44
45 /*
46  * If the appropriate intrq_present variable is zero, don't use
47  * the queue (as it'll never get processed).
48  * When defined, each of the network stacks declares their own
49  * *intrq_present variable to be non-zero.
50  */
51 const int       atintrq1_present;
52 const int       atintrq2_present;
53 #ifdef NETISR_ATM
54 const int       atmintrq_present;
55 #endif
56 const int       ipintrq_present;
57 const int       ip6intrq_present;
58 const int       ipxintrq_present;
59 const int       natmintrq_present;
60 const int       nsintrq_present;
61
62 struct ifqueue  atintrq1;
63 struct ifqueue  atintrq2;
64 #ifdef NETISR_ATM
65 struct ifqueue  atm_intrq;
66 #endif
67 struct ifqueue  ipintrq;
68 struct ifqueue  ip6intrq;
69 struct ifqueue  ipxintrq;
70 struct ifqueue  natmintrq;
71 struct ifqueue  nsintrq;
72
73
74 static const struct {
75         sa_family_t family;
76         struct ifqueue *q;
77         int const *present;
78         int isr;
79 } queue[] = {
80 #ifdef NETISR_ATM
81         { AF_ATM, &atm_intrq, &atmintrq_present, NETISR_ATM },
82 #endif
83         { AF_INET, &ipintrq, &ipintrq_present, NETISR_IP },
84         { AF_INET6, &ip6intrq, &ip6intrq_present, NETISR_IPV6 },
85         { AF_IPX, &ipxintrq, &ipxintrq_present, NETISR_IPX },
86         { AF_NATM, &natmintrq, &natmintrq_present, NETISR_NATM },
87         { AF_APPLETALK, &atintrq2, &atintrq2_present, NETISR_ATALK },
88         { AF_NS, &nsintrq, &nsintrq_present, NETISR_NS }
89 };
90
91 int
92 family_enqueue(family, m)
93         sa_family_t family;
94         struct mbuf *m;
95 {
96         int entry, s;
97
98         for (entry = 0; entry < sizeof queue / sizeof queue[0]; entry++)
99                 if (queue[entry].family == family) {
100                         if (queue[entry].present) {
101                                 s = splimp();
102                                 if (IF_QFULL(queue[entry].q)) {
103                                         IF_DROP(queue[entry].q);
104                                         splx(s);
105                                         m_freem(m);
106                                         return ENOBUFS;
107                                 }
108                                 IF_ENQUEUE(queue[entry].q, m);
109                                 splx(s);
110                                 schednetisr(queue[entry].isr);
111                                 return 0;
112                         } else
113                                 break;
114                 }
115
116         m_freem(m);
117         return EAFNOSUPPORT;
118 }