Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Jan 2013 01:09:50 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r244987 - head/sys/i386/xen
Message-ID:  <201301030109.r0319ogV001349@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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