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/netipx | |
parent | b3a120de36b969a34388149a816fd8b57317debe (diff) | |
download | src-2a0c503e7afc6498157c35173896688a147efb34.tar.gz src-2a0c503e7afc6498157c35173896688a147efb34.zip |
Notes
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/spx_usrreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c index eef2445eed2e..b77b1b389daa 100644 --- a/sys/netipx/spx_usrreq.c +++ b/sys/netipx/spx_usrreq.c @@ -751,7 +751,7 @@ spx_output(cb, m0) * from usrreq(), so it is OK to * block. */ - m = m_copym(m0, 0, mtu, M_WAIT); + m = m_copym(m0, 0, mtu, M_TRYWAIT); if (cb->s_flags & SF_NEWCALL) { struct mbuf *mm = m; spx_newchecks[7]++; |