Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Mar 2002 23:10:52 -0800 (PST)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 7913 for review
Message-ID:  <200203190710.g2J7Aqw46802@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=7913

Change 7913 by peter@peter_overcee on 2002/03/18 23:10:23

	fix more __func__ concatenation

Affected files ...

... //depot/projects/ia64/sys/ia64/ia64/mp_machdep.c#8 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/ia64/mp_machdep.c#8 (text+ko) ====

@@ -106,7 +106,7 @@
 
 	mtx_lock_spin(&sched_lock);
 	cpu_throw();
-	panic(__func__ ": cpu_throw() returned");
+	panic("ia64_ap_startup: cpu_throw() returned");
 }
 
 int
@@ -140,13 +140,13 @@
 	}
 
 	KASSERT((all_cpus & (1UL << acpiid)) == 0,
-	    (__func__ ": cpu%d already in CPU map", acpiid));
+	    ("%s: cpu%d already in CPU map", __func__, acpiid));
 
 	lid = LID_SAPIC_SET(apicid, apiceid);
 
 	if ((ia64_get_lid() & LID_SAPIC_MASK) == lid) {
 		KASSERT(acpiid == 0,
-		    (__func__ ": the BSP must be cpu0"));
+		    ("%s: the BSP must be cpu0", __func__));
 	}
 
 	if (acpiid != 0) {

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




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