s/NETHER/NARP/ and s/ether.h/arp.h/ for the 'new' arp system.

This commit is contained in:
veego 1997-11-13 10:37:40 +00:00
parent b1c7e79679
commit df6d37534b
5 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: intr.c,v 1.1 1997/10/14 09:31:14 mark Exp $ */ /* $NetBSD: intr.c,v 1.2 1997/11/13 10:37:40 veego Exp $ */
/* /*
* Copyright (c) 1994-1996 Mark Brinicombe. * Copyright (c) 1994-1996 Mark Brinicombe.
@ -171,8 +171,8 @@ dosoftints()
atomic_clear_bit(&soft_interrupts, IRQMASK_SOFTNET); atomic_clear_bit(&soft_interrupts, IRQMASK_SOFTNET);
#ifdef INET #ifdef INET
#include "ether.h" #include "arp.h"
#if NETHER > 0 #if NARP > 0
if (netisr & (1 << NETISR_ARP)) { if (netisr & (1 << NETISR_ARP)) {
atomic_clear_bit(&netisr, (1 << NETISR_ARP)); atomic_clear_bit(&netisr, (1 << NETISR_ARP));
arpintr(); arpintr();

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.1 1997/10/14 06:47:45 sakamoto Exp $ */ /* $NetBSD: machdep.c,v 1.2 1997/11/13 10:37:48 veego Exp $ */
/* /*
* Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -747,8 +747,8 @@ softnet()
netisr = 0; netisr = 0;
#ifdef INET #ifdef INET
#include "ether.h" #include "arp.h"
#if NETHER > 0 #if NARP > 0
if (isr & (1 << NETISR_ARP)) if (isr & (1 << NETISR_ARP))
arpintr(); arpintr();
#endif #endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.78 1997/10/17 09:35:02 jonathan Exp $ */ /* $NetBSD: trap.c,v 1.79 1997/11/13 10:37:52 veego Exp $ */
/* /*
* Copyright (c) 1988 University of Utah. * Copyright (c) 1988 University of Utah.
@ -43,7 +43,7 @@
*/ */
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.78 1997/10/17 09:35:02 jonathan Exp $"); __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.79 1997/11/13 10:37:52 veego Exp $");
#if !defined(MIPS1) && !defined(MIPS3) #if !defined(MIPS1) && !defined(MIPS3)
#error Neither "MIPS1" (r2000 family), "MIPS3" (r4000 family) was configured. #error Neither "MIPS1" (r2000 family), "MIPS3" (r4000 family) was configured.
@ -946,7 +946,7 @@ trap(status, cause, vaddr, opc, frame)
} }
#include <net/netisr.h> #include <net/netisr.h>
#include "ether.h" #include "arp.h"
#include "ppp.h" #include "ppp.h"
/* /*
@ -998,7 +998,7 @@ interrupt(status, cause, pc, frame)
cnt.v_soft++; cnt.v_soft++;
intrcnt[SOFTNET_INTR]++; intrcnt[SOFTNET_INTR]++;
#ifdef INET #ifdef INET
#if NETHER > 0 #if NARP > 0
if (isr & (1 << NETISR_ARP)) arpintr(); if (isr & (1 << NETISR_ARP)) arpintr();
#endif #endif
if (isr & (1 << NETISR_IP)) ipintr(); if (isr & (1 << NETISR_IP)) ipintr();

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.12 1997/09/12 09:59:53 mycroft Exp $ */ /* $NetBSD: machdep.c,v 1.13 1997/11/13 10:37:56 veego Exp $ */
/* /*
* Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -695,8 +695,8 @@ softnet()
netisr = 0; netisr = 0;
#ifdef INET #ifdef INET
#include "ether.h" #include "arp.h"
#if NETHER > 0 #if NARP > 0
if (isr & (1 << NETISR_ARP)) if (isr & (1 << NETISR_ARP))
arpintr(); arpintr();
#endif #endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: machdep.c,v 1.12 1997/09/12 09:59:53 mycroft Exp $ */ /* $NetBSD: machdep.c,v 1.13 1997/11/13 10:37:56 veego Exp $ */
/* /*
* Copyright (C) 1995, 1996 Wolfgang Solfrank. * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -695,8 +695,8 @@ softnet()
netisr = 0; netisr = 0;
#ifdef INET #ifdef INET
#include "ether.h" #include "arp.h"
#if NETHER > 0 #if NARP > 0
if (isr & (1 << NETISR_ARP)) if (isr & (1 << NETISR_ARP))
arpintr(); arpintr();
#endif #endif