PERFORCE change 156226 for review

Warner Losh imp at FreeBSD.org
Thu Jan 15 11:57:36 PST 2009


http://perforce.freebsd.org/chv.cgi?CH=156226

Change 156226 by imp at imp_lighthouse on 2009/01/15 19:56:38

	diff reduction against -head

Affected files ...

.. //depot/projects/mips2/src/sys/mips/mips/machdep.c#48 edit

Differences ...

==== //depot/projects/mips2/src/sys/mips/mips/machdep.c#48 (text+ko) ====

@@ -81,7 +81,6 @@
 #include <machine/cpu.h>
 #include <machine/pltfm.h>
 #include <net/netisr.h>
-#include <machine/hwfunc.h>
 #include <machine/md_var.h>
 #include <machine/clock.h>
 #include <machine/asm.h>
@@ -158,11 +157,11 @@
 
 	if (boothowto & RB_VERBOSE)
 		bootverbose++;
-	printf("real memory  = %lu (%luK bytes)\n", ptoa(realmem), ptoa(realmem) / 1024);
 
 	bootverbose++;
 	printf("real memory  = %lu (%luK bytes)\n", ptoa(realmem),
 	    ptoa(realmem) / 1024);
+
 	/*
 	 * Display any holes after the first chunk of extended memory.
 	 */
@@ -284,6 +283,8 @@
 	PCPU_SET(curpcb, thread0.td_pcb);
 }
 
+struct msgbuf *msgbufp=0;
+
 /*
  * Initialize the hardware exception vectors, and the jump table used to
  * call locore cache and TLB management functions, based on the kind
@@ -418,5 +419,13 @@
 void
 dumpsys(struct dumperinfo *di __unused)
 {
+
 	printf("Kernel dumps not implemented on this architecture\n");
 }
+
+int
+cpu_idle_wakeup(int cpu)
+{
+
+	return (0);
+}


More information about the p4-projects mailing list