Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Jan 2013 22:50:37 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r246003 - stable/9/sys/i386/xen
Message-ID:  <201301272250.r0RMobcA018209@svn.freebsd.org>

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



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