diff options
author | 2016-11-03 09:04:06 +0000 | |
---|---|---|
committer | 2016-11-03 09:04:06 +0000 | |
commit | 472b35a201f645b1c2b44c1a03e3c01f7eece9ae (patch) | |
tree | 01105ed96eac078f78a6c721c28ec9772b9c0c36 | |
parent | Fix handshake failures: (diff) | |
download | wireguard-openbsd-472b35a201f645b1c2b44c1a03e3c01f7eece9ae.tar.xz wireguard-openbsd-472b35a201f645b1c2b44c1a03e3c01f7eece9ae.zip |
The networking code no longer runs off software interrupts.
-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 |