WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Fix loading binary kernel images.

# HG changeset patch
# User cl349@xxxxxxxxxxxxxxxxxxxx
# Node ID 946a45f07351a4ed399f96eb3d6867bfa28af6a2
# Parent  82f6786a0aa866ae6eecd1d4184c0df30b2c0543
Fix loading binary kernel images.
Starting a domain with a binary kernel image fails due to an uninitialized
field.  This patch fixes that problem.
The Novell NetWare port to Xen 3.0 currently uses the binary image loader.

Signed-off-by: Bruce Rogers <brogers@xxxxxxxxxx>

diff -r 82f6786a0aa8 -r 946a45f07351 tools/libxc/xc_load_bin.c
--- a/tools/libxc/xc_load_bin.c Mon Feb 20 15:15:10 2006
+++ b/tools/libxc/xc_load_bin.c Mon Feb 20 15:18:38 2006
@@ -231,6 +231,7 @@
     dsi->v_kernstart = dsi->v_start;
     dsi->v_kernend = dsi->v_end;
     dsi->v_kernentry = image_info->entry_addr;
+    dsi->xen_guest_string = "";
 
     return 0;
 }

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix loading binary kernel images., Xen patchbot -unstable <=