Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Nov 2002 06:19:49 -0800 (PST)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 21297 for review
Message-ID:  <200211201419.gAKEJnJj075996@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=21297

Change 21297 by jhb@jhb_laptop on 2002/11/20 06:19:33

	IFC: Fix sparc64 GENERIC compile.

Affected files ...

.. //depot/releng/5_dp2/src/sys/sparc64/sparc64/mp_machdep.c#4 integrate

Differences ...

==== //depot/releng/5_dp2/src/sys/sparc64/sparc64/mp_machdep.c#4 (text+ko) ====

@@ -52,9 +52,11 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/sys/sparc64/sparc64/mp_machdep.c,v 1.16 2002/10/01 06:34:21 jake Exp $
+ * $FreeBSD: src/sys/sparc64/sparc64/mp_machdep.c,v 1.17 2002/11/20 14:09:33 jhb Exp $
  */
 
+#include "opt_ddb.h"
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/lock.h>
@@ -455,7 +457,11 @@
 		if ((ldxa(0, ASI_INTR_DISPATCH_STATUS) & IDR_NACK) == 0)
 			return;
 	}
-	if (db_active || panicstr != NULL)
+	if (
+#ifdef DDB
+	    db_active ||
+#endif
+	    panicstr != NULL)
 		printf("ipi_send: couldn't send ipi to module %u\n", mid);
 	else
 		panic("ipi_send: couldn't send ipi");

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




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