aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
diff options
context:
space:
mode:
authorSeigo Tanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
committerSeigo Tanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
commit512824f8f7748f7bb54ef900bc8e68a95a3d0f4d (patch)
tree19de3ca43ba82c3cf15a4a6c7fba917e0f7e416b /sys/fs
parent2e55d247a6d6610c98412798ff06d682f2ee91c6 (diff)
Notes
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/coda/coda_psdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/coda/coda_psdev.c b/sys/fs/coda/coda_psdev.c
index debbdbf57bbdb..133d0fdb15791 100644
--- a/sys/fs/coda/coda_psdev.c
+++ b/sys/fs/coda/coda_psdev.c
@@ -526,7 +526,7 @@ coda_call(mntinfo, inSize, outSize, buffer)
/* Append msg to request queue and poke Venus. */
INSQUE(vmp->vm_chain, vcp->vc_requests);
- selwakeup(&(vcp->vc_selproc));
+ selwakeuppri(&(vcp->vc_selproc), coda_call_sleep);
/* We can be interrupted while we wait for Venus to process
* our request. If the interrupt occurs before Venus has read
@@ -664,7 +664,7 @@ coda_call(mntinfo, inSize, outSize, buffer)
/* insert at head of queue! */
INSQUE(svmp->vm_chain, vcp->vc_requests);
- selwakeup(&(vcp->vc_selproc));
+ selwakeuppri(&(vcp->vc_selproc), coda_call_sleep);
}
}