Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Nov 2003 18:09:07 -0800
From:      Sam Leffler <sam@errno.com>
To:        current@freebsd.org
Subject:   HEADSUP: MPSAFE networking stuff disabled for now
Message-ID:  <200311031809.07691.sam@errno.com>

next in thread | raw e-mail | index | archive | help

--Boundary-00=_Dpwp/gVVWLydB9V
Content-Type: text/plain;
  charset="us-ascii"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

I've disabled the MPSAFE operation of the network drivers.  I was trying to 
commit only part of the work to be move Giant "up" in the networking code but 
it appears that's not possible.

I'll wait for things to stabilize before trying again.

	Sam

--Boundary-00=_Dpwp/gVVWLydB9V
Content-Type: text/x-diff;
  charset="us-ascii";
  name="mpsafe.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="mpsafe.patch"

Index: subr_bus.c
===================================================================
RCS file: /home/ncvs/src/sys/kern/subr_bus.c,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- subr_bus.c	29 Oct 2003 18:29:50 -0000	1.135
+++ subr_bus.c	4 Nov 2003 02:01:42 -0000	1.136
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/sys/kern/subr_bus.c,v 1.135 2003/10/29 18:29:50 sam Exp $");
+__FBSDID("$FreeBSD: src/sys/kern/subr_bus.c,v 1.136 2003/11/04 02:01:42 sam Exp $");
 
 #include "opt_bus.h"
 
@@ -2138,7 +2138,7 @@
  * XXX disable INTR_MPSAFE in network drivers without
  * XXX recompiling--in case of problems.
  */
-int	debug_mpsafenet = 1;
+int	debug_mpsafenet = 0;
 TUNABLE_INT("debug.mpsafenet", &debug_mpsafenet);
 SYSCTL_INT(_debug, OID_AUTO, mpsafenet, CTLFLAG_RW, &debug_mpsafenet, 0,
     "Enable/disable MPSAFE network support");

--Boundary-00=_Dpwp/gVVWLydB9V--



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