diff options
| author | Bosko Milekic <bmilekic@FreeBSD.org> | 2000-12-21 21:44:31 +0000 |
|---|---|---|
| committer | Bosko Milekic <bmilekic@FreeBSD.org> | 2000-12-21 21:44:31 +0000 |
| commit | 2a0c503e7afc6498157c35173896688a147efb34 (patch) | |
| tree | b06b70c0a77fed3143ac7cd4a373e0881af4a5fd /sys/nfsclient/nfs_nfsiod.c | |
| parent | b3a120de36b969a34388149a816fd8b57317debe (diff) | |
Notes
Diffstat (limited to 'sys/nfsclient/nfs_nfsiod.c')
| -rw-r--r-- | sys/nfsclient/nfs_nfsiod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsclient/nfs_nfsiod.c b/sys/nfsclient/nfs_nfsiod.c index d1a8ead7cdc8..4eb5c86eaf73 100644 --- a/sys/nfsclient/nfs_nfsiod.c +++ b/sys/nfsclient/nfs_nfsiod.c @@ -480,7 +480,7 @@ nfssvc_nfsd(nsd, argp, p) slp->ns_flag &= ~SLP_NEEDQ; (void) nfs_slplock(slp, 1); nfsrv_rcv(slp->ns_so, (caddr_t)slp, - M_WAIT); + M_TRYWAIT); nfs_slpunlock(slp); } error = nfsrv_dorec(slp, nfsd, &nd); @@ -632,7 +632,7 @@ nfssvc_nfsd(nsd, argp, p) * Record Mark. */ if (sotype == SOCK_STREAM) { - M_PREPEND(m, NFSX_UNSIGNED, M_WAIT); + M_PREPEND(m, NFSX_UNSIGNED, M_TRYWAIT); *mtod(m, u_int32_t *) = htonl(0x80000000 | siz); } if (slp->ns_so->so_proto->pr_flags & PR_CONNREQUIRED) |
