pkgsrc/sysutils/xentools3/patches/patch-cv
bouyer f9a2cde352 Rename xentools30 to xentools3 to acknowledge that Xen dropped one digit
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.
2007-06-14 19:39:45 +00:00

13 lines
482 B
Text

$NetBSD: patch-cv,v 1.1.1.1 2007/06/14 19:39:46 bouyer Exp $
--- libxc/xc_hvm_build.c 2007-06-12 23:36:11.000000000 +0200
+++ libxc/xc_hvm_build.c.orig 2007-06-12 23:35:55.000000000 +0200
@@ -120,7 +120,7 @@
if ( entries == NULL )
goto err;
elf->dest = mmap(NULL, pages << PAGE_SHIFT, PROT_READ | PROT_WRITE,
- MAP_SHARED, xch, 0);
+ MAP_ANON | MAP_SHARED, -1, 0);
if ( elf->dest == MAP_FAILED )
goto err;