From 406dd7d1d43c4fa441f8a94a51471d6afc5d51b3 Mon Sep 17 00:00:00 2001 From: Bosko Milekic Date: Thu, 5 Apr 2001 04:20:48 +0000 Subject: [PATCH] Change a couple of M_WAITOKs used in M_PREPEND() to M_TRYWAITs, which is what they should be. As the returned mbuf is already checked for failure of M_PREPEND even in the wait case, nothing more to be done here. --- sys/netnatm/natm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netnatm/natm.c b/sys/netnatm/natm.c index 99a567f11482..257aa76a1c17 100644 --- a/sys/netnatm/natm.c +++ b/sys/netnatm/natm.c @@ -299,7 +299,7 @@ natm_usr_send(struct socket *so, int flags, struct mbuf *m, * send the data. we must put an atm_pseudohdr on first */ - M_PREPEND(m, sizeof(*aph), M_WAITOK); + M_PREPEND(m, sizeof(*aph), M_TRYWAIT); if (m == NULL) { error = ENOBUFS; goto out; @@ -598,7 +598,7 @@ struct proc *p; * send the data. we must put an atm_pseudohdr on first */ - M_PREPEND(m, sizeof(*aph), M_WAITOK); + M_PREPEND(m, sizeof(*aph), M_TRYWAIT); if (m == NULL) { error = ENOBUFS; break;