Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Oct 2001 19:48:13 +0100
From:      David Malone <dwmalone@maths.tcd.ie>
To:        Andrea Campi <andrea@webcom.it>
Cc:        freebsd-current@FreeBSD.org
Subject:   Re: -CURRENT freeze under high load
Message-ID:  <20011027194813.A57243@walton.maths.tcd.ie>
In-Reply-To: <20011026181612.A7800@webcom.it>; from andrea@webcom.it on Fri, Oct 26, 2001 at 06:16:12PM %2B0200
References:  <20011024153151.A75454@webcom.it> <20011026181612.A7800@webcom.it>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, Oct 26, 2001 at 06:16:12PM +0200, Andrea Campi wrote:
> Anybody has any idea how to properly fix?

Can you test the following patch?

	David.


Index: uipc_usrreq.c
===================================================================
RCS file: /cvs/FreeBSD-CVS/src/sys/kern/uipc_usrreq.c,v
retrieving revision 1.74
diff -u -r1.74 uipc_usrreq.c
--- uipc_usrreq.c	9 Oct 2001 21:40:30 -0000	1.74
+++ uipc_usrreq.c	27 Oct 2001 18:30:56 -0000
@@ -1420,7 +1420,7 @@
 
 	while (m0) {
 		for (m = m0; m; m = m->m_next) {
-			if (m->m_type == MT_CONTROL)
+			if (m->m_type != MT_CONTROL)
 				continue;
 
 			cm = mtod(m, struct cmsghdr *);


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20011027194813.A57243>