diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-11-03 09:04:07 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-11-03 09:04:07 +0000 |
commit | 9a777d2e23deb4f2358a13a8dcd519083d990cbb (patch) | |
tree | b78c085c2913c459e99c5924da6eb7a7a9e6a78b /sys/net/netisr.h | |
parent | fa71a86fc59cba8573c5285ef6dada93bea981c6 (diff) |
The networking code no longer runs off software interrupts.
Diffstat (limited to 'sys/net/netisr.h')
-rw-r--r-- | sys/net/netisr.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/net/netisr.h b/sys/net/netisr.h index e7008425537..9f2e34e7950 100644 --- a/sys/net/netisr.h +++ b/sys/net/netisr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: netisr.h,v 1.47 2016/09/01 10:06:33 goda Exp $ */ +/* $OpenBSD: netisr.h,v 1.48 2016/11/03 09:04:06 mpi Exp $ */ /* $NetBSD: netisr.h,v 1.12 1995/08/12 23:59:24 mycroft Exp $ */ /* @@ -36,15 +36,6 @@ #define _NET_NETISR_H_ /* - * The networking code runs off software interrupts. - * - * You can switch into the network by doing splsoftnet() and return by splx(). - * The software interrupt level for the network is higher than the software - * level for the clock (so you can enter the network in routines called - * at timeout time). - */ - -/* * Each ``pup-level-1'' input queue has a bit in a ``netisr'' status * word which is used to de-multiplex a single software * interrupt used for scheduling the network code to calls |