diff options
author | 2016-11-16 14:23:10 +0000 | |
---|---|---|
committer | 2016-11-16 14:23:10 +0000 | |
commit | 8170e83b9b834873358f47bc6519c9b93ba895f6 (patch) | |
tree | a1852e48bc4b3d2f58ba7d0e2af2d6660b271518 | |
parent | Use goto in bpf{read,write}() to ease review of locked sections. (diff) | |
download | wireguard-openbsd-8170e83b9b834873358f47bc6519c9b93ba895f6.tar.xz wireguard-openbsd-8170e83b9b834873358f47bc6519c9b93ba895f6.zip |
Kill outdated comment talking about sofnet.
-rw-r--r-- | sys/net/if_ppp.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c index 0abe679ae6f..303192b5625 100644 --- a/sys/net/if_ppp.c +++ b/sys/net/if_ppp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ppp.c,v 1.101 2016/10/06 19:09:08 bluhm Exp $ */ +/* $OpenBSD: if_ppp.c,v 1.102 2016/11/16 14:23:10 mpi Exp $ */ /* $NetBSD: if_ppp.c,v 1.39 1997/05/17 21:11:59 christos Exp $ */ /* @@ -851,7 +851,6 @@ ppp_requeue(struct ppp_softc *sc) /* * Transmitter has finished outputting some stuff; - * remember to call sc->sc_start later at splsoftnet. */ void ppp_restart(struct ppp_softc *sc) @@ -864,10 +863,7 @@ ppp_restart(struct ppp_softc *sc) } /* - * Get a packet to send. This procedure is intended to be called at - * splsoftnet, since it may involve time-consuming operations such as - * applying VJ compression, packet compression, address/control and/or - * protocol field compression to the packet. + * Get a packet to send. */ struct mbuf * ppp_dequeue(struct ppp_softc *sc) |