|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] Ensure initrd fields are set to 0 when no initrd is pres
# HG changeset patch
# User djm@xxxxxxxxxxxxxxx
# Node ID 5222e8d456aea9a7cf432d0d4ad8a3a7ac602c5b
# Parent 8643b4d778f56c780d2860289d1255c80ab0b32e
Ensure initrd fields are set to 0 when no initrd is present (by Kevin Tian)
diff -r 8643b4d778f5 -r 5222e8d456ae tools/libxc/xc_linux_build.c
--- a/tools/libxc/xc_linux_build.c Thu Dec 29 21:21:39 2005
+++ b/tools/libxc/xc_linux_build.c Thu Dec 29 21:31:18 2005
@@ -397,6 +397,9 @@
{
ctxt->initrd.start = vinitrd_start;
ctxt->initrd.size = initrd_len;
+ } else {
+ ctxt->initrd.start = 0;
+ ctxt->initrd.size = 0;
}
strncpy((char *)ctxt->cmdline, cmdline, IA64_COMMAND_LINE_SIZE);
ctxt->cmdline[IA64_COMMAND_LINE_SIZE-1] = '\0';
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] Ensure initrd fields are set to 0 when no initrd is present (by Kevin Tian),
Xen patchbot -unstable <=
|
|
|
|
|