in version numbers, and upgrade to 3.1.0. Changes since 3.0.4: * XenAPI 1.0 support o XML configuration files for virtual machines; o VM life-cycle management operations; and o Secure on- or off-box XML-RPC with bindings for many languages * Basic save/restore/migrate support for HVM (e.g. Windows) VMs; * Dynamic memory control for HVM guests; * 32-on-64 PV guest support (run PAE PV VMs on a 64-bit Xen!); and * Blktap copy-on-write disk support. It also fixes some HVM bugs.
13 lines
455 B
Text
13 lines
455 B
Text
$NetBSD: patch-cu,v 1.1.1.1 2007/06/14 19:39:46 bouyer Exp $
|
|
|
|
--- libxc/xc_dom_boot.c.orig 2007-05-27 17:55:28.000000000 +0200
|
|
+++ libxc/xc_dom_boot.c 2007-05-27 17:55:46.000000000 +0200
|
|
@@ -163,7 +163,7 @@
|
|
}
|
|
|
|
ptr = mmap(NULL, count << page_shift, PROT_READ | PROT_WRITE,
|
|
- MAP_SHARED, dom->guest_xc, 0);
|
|
+ MAP_SHARED | MAP_ANON, -1, 0);
|
|
if ( ptr == MAP_FAILED )
|
|
{
|
|
xc_dom_panic(XC_INTERNAL_ERROR,
|