summaryrefslogtreecommitdiffstats
path: root/sys/net/if_tap.c
diff options
context:
space:
mode:
authortanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
committertanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
commit7eade05dfa5c79c8765c89ae76635f31451fe886 (patch)
tree19de3ca43ba82c3cf15a4a6c7fba917e0f7e416b /sys/net/if_tap.c
parent9cbd7fa025947081790184770a6c74511b0b0a44 (diff)
downloadFreeBSD-src-7eade05dfa5c79c8765c89ae76635f31451fe886.zip
FreeBSD-src-7eade05dfa5c79c8765c89ae76635f31451fe886.tar.gz
- Implement selwakeuppri() which allows raising the priority of a
thread being waken up. The thread waken up can run at a priority as high as after tsleep(). - Replace selwakeup()s with selwakeuppri()s and pass appropriate priorities. - Add cv_broadcastpri() which raises the priority of the broadcast threads. Used by selwakeuppri() if collision occurs. Not objected in: -arch, -current
Diffstat (limited to 'sys/net/if_tap.c')
-rw-r--r--sys/net/if_tap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_tap.c b/sys/net/if_tap.c
index 80d54e6..82ae3b9 100644
--- a/sys/net/if_tap.c
+++ b/sys/net/if_tap.c
@@ -475,7 +475,7 @@ tapclose(dev, foo, bar, td)
}
funsetown(&tp->tap_sigio);
- selwakeup(&tp->tap_rsel);
+ selwakeuppri(&tp->tap_rsel, PZERO+1);
tp->tap_flags &= ~TAP_OPEN;
tp->tap_pid = 0;
@@ -606,7 +606,7 @@ tapifstart(ifp)
if ((tp->tap_flags & TAP_ASYNC) && (tp->tap_sigio != NULL))
pgsigio(&tp->tap_sigio, SIGIO, 0);
- selwakeup(&tp->tap_rsel);
+ selwakeuppri(&tp->tap_rsel, PZERO+1);
ifp->if_opackets ++; /* obytes are counted in ether_output */
}
OpenPOWER on IntegriCloud