svn commit: r246003 - stable/9/sys/i386/xen

Marius Strobl marius at FreeBSD.org
Sun Jan 27 22:50:37 UTC 2013


Author: marius
Date: Sun Jan 27 22:50:36 2013
New Revision: 246003
URL: http://svnweb.freebsd.org/changeset/base/246003

Log:
  MFC: r244987
  
  Fix !INVARIANTS && !SMP build.

Modified:
  stable/9/sys/i386/xen/xen_machdep.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/i386/xen/xen_machdep.c
==============================================================================
--- stable/9/sys/i386/xen/xen_machdep.c	Sun Jan 27 21:55:01 2013	(r246002)
+++ stable/9/sys/i386/xen/xen_machdep.c	Sun Jan 27 22:50:36 2013	(r246003)
@@ -215,7 +215,9 @@ static mmu_update_t xpq_queue[MAX_VIRT_C
 #else
 	
 static mmu_update_t xpq_queue[XPQUEUE_SIZE];
+#ifdef INVARIANTS
 static struct mmu_log xpq_queue_log[XPQUEUE_SIZE];
+#endif
 static int xpq_idx = 0;
 
 #define	XPQ_QUEUE_LOG xpq_queue_log


More information about the svn-src-all mailing list