Deleted Added
full compact
34c34
< * $FreeBSD: head/sys/netinet/ip_input.c 111541 2003-02-26 07:28:35Z silby $
---
> * $FreeBSD: head/sys/netinet/ip_input.c 111888 2003-03-04 23:19:55Z jlemon $
68d67
< #include <net/intrq.h>
158a158
> static struct ifqueue ipintrq;
236d235
< static void ipintr(void);
272,274c271
< ipintrq_present = 1;
<
< register_netisr(NETISR_IP, ipintr);
---
> netisr_register(NETISR_IP, ip_input, &ipintrq);
954,969d950
< * IP software interrupt routine - to go away sometime soon
< */
< static void
< ipintr(void)
< {
< struct mbuf *m;
<
< while (1) {
< IF_DEQUEUE(&ipintrq, m);
< if (m == 0)
< return;
< ip_input(m);
< }
< }
<
< /*