Deleted Added
full compact
2c2
< /* $FreeBSD: head/sys/netinet/ip_gre.c 107670 2002-12-07 14:22:05Z sobomax $ */
---
> /* $FreeBSD: head/sys/netinet/ip_gre.c 111888 2003-03-04 23:19:55Z jlemon $ */
149,150c149
< int s;
< struct ifqueue *ifq;
---
> int isr;
183c182
< ifq = &ipintrq;
---
> isr = NETISR_IP;
187,188c186
< ifq = &nsintrq;
< schednetisr(NETISR_NS);
---
> isr = NETISR_NS;
193,194c191
< ifq = &atintrq1;
< schednetisr(NETISR_ATALK);
---
> isr = NETISR_ATALK1;
225,232c222
< s = splnet(); /* possible */
< if (_IF_QFULL(ifq)) {
< _IF_DROP(ifq);
< m_freem(m);
< } else {
< IF_ENQUEUE(ifq,m);
< }
< splx(s);
---
> netisr_dispatch(isr, m);
255d244
< struct ifqueue *ifq;
257c246
< int hlen,s;
---
> int hlen;
320,328c309
< ifq = &ipintrq;
< s = splnet(); /* possible */
< if (_IF_QFULL(ifq)) {
< _IF_DROP(ifq);
< m_freem(m);
< } else {
< IF_ENQUEUE(ifq,m);
< }
< splx(s);
---
> netisr_dispatch(NETISR_IP, m);