aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/musycc
diff options
context:
space:
mode:
authorBosko Milekic <bmilekic@FreeBSD.org>2000-12-21 21:44:31 +0000
committerBosko Milekic <bmilekic@FreeBSD.org>2000-12-21 21:44:31 +0000
commit2a0c503e7afc6498157c35173896688a147efb34 (patch)
treeb06b70c0a77fed3143ac7cd4a373e0881af4a5fd /sys/dev/musycc
parentb3a120de36b969a34388149a816fd8b57317debe (diff)
downloadsrc-2a0c503e7afc6498157c35173896688a147efb34.tar.gz
src-2a0c503e7afc6498157c35173896688a147efb34.zip
* Rename M_WAIT mbuf subsystem flag to M_TRYWAIT.
This is because calls with M_WAIT (now M_TRYWAIT) may not wait forever when nothing is available for allocation, and may end up returning NULL. Hopefully we now communicate more of the right thing to developers and make it very clear that it's necessary to check whether calls with M_(TRY)WAIT also resulted in a failed allocation. M_TRYWAIT basically means "try harder, block if necessary, but don't necessarily wait forever." The time spent blocking is tunable with the kern.ipc.mbuf_wait sysctl. M_WAIT is now deprecated but still defined for the next little while. * Fix a typo in a comment in mbuf.h * Fix some code that was actually passing the mbuf subsystem's M_WAIT to malloc(). Made it pass M_WAITOK instead. If we were ever to redefine the value of the M_WAIT flag, this could have became a big problem.
Notes
Notes: svn path=/head/; revision=70254
Diffstat (limited to 'sys/dev/musycc')
-rw-r--r--sys/dev/musycc/musycc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/musycc/musycc.c b/sys/dev/musycc/musycc.c
index 85ec6e0415f1..98d53347945d 100644
--- a/sys/dev/musycc/musycc.c
+++ b/sys/dev/musycc/musycc.c
@@ -1207,8 +1207,8 @@ musycc_connect(hook_p hook)
sc->mdt[ch][i].m = NULL;
sc->mdt[ch][i].data = 0;
- MGETHDR(m, M_WAIT, MT_DATA);
- MCLGET(m, M_WAIT);
+ MGETHDR(m, M_TRYWAIT, MT_DATA);
+ MCLGET(m, M_TRYWAIT);
sc->mdr[ch][i].m = m;
sc->mdr[ch][i].data = vtophys(m->m_data);
sc->mdr[ch][i].status = 1600; /* MTU */