grab new net changes from hp300/mchdep.c

This commit is contained in:
chopps 1994-04-22 01:48:27 +00:00
parent 6e0541d8c5
commit 75ab227d57
1 changed files with 5 additions and 1 deletions

View File

@ -38,7 +38,7 @@
* from: Utah $Hdr: machdep.c 1.63 91/04/24$
*
* @(#)machdep.c 7.16 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.18 1994/04/18 04:08:47 chopps Exp $
* $Id: machdep.c,v 1.19 1994/04/22 01:48:27 chopps Exp $
*/
#include <sys/param.h>
@ -1248,6 +1248,10 @@ badbaddr(addr)
netintr()
{
#ifdef INET
if (netisr & (1 << NETISR_ARP)) {
netisr &= ~(1 << NETISR_ARP);
arpintr();
}
if (netisr & (1 << NETISR_IP)) {
netisr &= ~(1 << NETISR_IP);
ipintr();