Date: Sun, 27 Jan 2013 22:50:40 +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-8@freebsd.org Subject: svn commit: r246004 - stable/8/sys/i386/xen Message-ID: <201301272250.r0RMoeQk018249@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Sun Jan 27 22:50:39 2013 New Revision: 246004 URL: http://svnweb.freebsd.org/changeset/base/246004 Log: MFC: r244987 Fix !INVARIANTS && !SMP build. Modified: stable/8/sys/i386/xen/xen_machdep.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/i386/ (props changed) Modified: stable/8/sys/i386/xen/xen_machdep.c ============================================================================== --- stable/8/sys/i386/xen/xen_machdep.c Sun Jan 27 22:50:36 2013 (r246003) +++ stable/8/sys/i386/xen/xen_machdep.c Sun Jan 27 22:50:39 2013 (r246004) @@ -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.r0RMoeQk018249>