diff options
author | marius <marius@FreeBSD.org> | 2013-01-03 01:09:50 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2013-01-03 01:09:50 +0000 |
commit | 185d79fdec059203ed8a9c75a62f3bc5401d3240 (patch) | |
tree | 02b31462ec32138b1a0cd51760f86934b6c08283 /sys/i386 | |
parent | 73840220f60283b92f68bd790b005505440de6e9 (diff) | |
download | FreeBSD-src-185d79fdec059203ed8a9c75a62f3bc5401d3240.zip FreeBSD-src-185d79fdec059203ed8a9c75a62f3bc5401d3240.tar.gz |
Fix !INVARIANTS && !SMP build.
MFC after: 3 days
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/xen/xen_machdep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/i386/xen/xen_machdep.c b/sys/i386/xen/xen_machdep.c index f197976..3b3da6f 100644 --- a/sys/i386/xen/xen_machdep.c +++ b/sys/i386/xen/xen_machdep.c @@ -216,7 +216,9 @@ static mmu_update_t xpq_queue[MAX_VIRT_CPUS][XPQUEUE_SIZE]; #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 |