splimp -> splnet
OK ?
Index: altq.9
===================================================================
RCS file: /cvs/src/share/man/man9/altq.9,v
retrieving revision 1.14
diff -u -p -r1.14 altq.9
--- altq.9 31 May 2007 19:20:00 -0000 1.14
+++ altq.9 14 Nov 2012 19:11:03 -0000
@@ -272,7 +272,7 @@ looks as follows:
|
| mflags = m->m_flags;
| len = m->m_pkthdr.len;
- s = splimp(); | s = splimp();
+ s = splnet(); | s = splnet();
if (IF_QFULL(&ifp->if_snd)) { | IFQ_ENQUEUE(&ifp->if_snd, m,
| NULL, error);
IF_DROP(&ifp->if_snd); | if (error != 0) {
@@ -419,7 +419,7 @@ immediately after
.Fn IFQ_POLL
returns the same packet.
Note that they need to be guarded by
-.Fn splimp
+.Fn splnet
if called from outside of
.Fn if_start .
.Ss Eliminating IF_PREPEND
@@ -571,7 +571,7 @@ The dequeue operations looks like:
.Bd -literal
##old-style## ##new-style##
|
- s = splimp(); | s = splimp();
+ s = splnet(); | s = splnet();
IF_DEQUEUE(&sc->sc_fastq, m); | IF_DEQUEUE(&sc->sc_fastq, m);
if (m == NULL) | if (m == NULL)
IF_DEQUEUE(&sc->sc_if.if_snd, m); | IFQ_DEQUEUE(&sc->sc_if.if_snd, m);