svn commit: r242869 - head/sys/pc98/pc98

Takahashi Yoshihiro nyan at FreeBSD.org
Sat Nov 10 13:48:42 UTC 2012


Author: nyan
Date: Sat Nov 10 13:48:41 2012
New Revision: 242869
URL: http://svnweb.freebsd.org/changeset/base/242869

Log:
  Reduce diffs against i386.

Modified:
  head/sys/pc98/pc98/machdep.c

Modified: head/sys/pc98/pc98/machdep.c
==============================================================================
--- head/sys/pc98/pc98/machdep.c	Sat Nov 10 13:41:25 2012	(r242868)
+++ head/sys/pc98/pc98/machdep.c	Sat Nov 10 13:48:41 2012	(r242869)
@@ -1237,7 +1237,7 @@ cpu_idle(int busy)
 
 	CTR2(KTR_SPARE2, "cpu_idle(%d) at %d",
 	    busy, curcpu);
-#ifdef MP_WATCHDOG
+#if defined(MP_WATCHDOG)
 	ap_watchdog(PCPU_GET(cpuid));
 #endif
 	/* If we are busy - try to use fast methods. */
@@ -2157,6 +2157,8 @@ do_next:
 	for (off = 0; off < round_page(msgbufsize); off += PAGE_SIZE)
 		pmap_kenter((vm_offset_t)msgbufp + off, phys_avail[pa_indx] +
 		    off);
+
+	PT_UPDATES_FLUSH();
 }
 
 void


More information about the svn-src-all mailing list