svn commit: r244987 - head/sys/i386/xen

Marius Strobl marius at FreeBSD.org
Thu Jan 3 01:09:51 UTC 2013


Author: marius
Date: Thu Jan  3 01:09:50 2013
New Revision: 244987
URL: http://svnweb.freebsd.org/changeset/base/244987

Log:
  Fix !INVARIANTS && !SMP build.
  
  MFC after:	3 days

Modified:
  head/sys/i386/xen/xen_machdep.c

Modified: head/sys/i386/xen/xen_machdep.c
==============================================================================
--- head/sys/i386/xen/xen_machdep.c	Thu Jan  3 00:49:11 2013	(r244986)
+++ head/sys/i386/xen/xen_machdep.c	Thu Jan  3 01:09:50 2013	(r244987)
@@ -216,7 +216,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