[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] PATCH 3/3: XenD changes for HVM kernel boot
This patch provides the tools support for direct kernel boot of HVM guests. Currently the config files in /etc/xen support the args 'kernel', 'ramdisk' and 'extra'. For PV guests these have the obvious meaning. Unfortunately HVM guest configs hijacked the 'kernel' parameter and use it to refer to the path of the HVM firmware. So, this patch adds a new config file parameter called 'loader' which is used to refer to the HVM firmware instead. The conventions for loading the initrd image say that it should live at the end of memory. This requires QEMU to know the size of the guest's initial RAM allocation, so image.py is changed to pass the '-m' flag to QEMU. The HVMImageHandler class in image.py is changed so that if the 'kernel', 'ramdisk' or 'extra' params were given in the config these are passed to QEMU with the '-kernel', '-initrd' and '-append' flags respectively. Finally, the 'loader' param is used as the arg to 'xc_hvm_build' instead of the old 'kernel' param. For the sake of compatability with old HVM guest config files, if the config file has a 'kernel' param whose path matches that of the HVM firmware, then we automatically convert this 'kernel' param into the 'loader' param. This ensures existing HVM guests work without changes required. For the purposes of testing, my guest looks like this: name = "hvmdemo" builder = "hvm" memory = "500" disk = [ "file:/var/lib/xen/images/hvmdemo.img,hda,w" ] uuid = "0a696059-d2e8-2691-86e7-1daeed939649" device_model = "/usr/lib/xen/bin/qemu-dm" loader = "/usr/lib/xen/boot/hvmloader" kernel = "/root/install/vmlinuz-f8-i386" ramdisk = "/root/install/initrd.img-f8-i386" extra = "console=ttyS0 console=tty0" serial = "file:/tmp/hvmdemo.log" vnc=1 vncunused=1 apic=0 acpi=0 pae=0 Note, here we demonstrate a useful advantage of direct kernel boot by telling the guest kernel to send its output to the first serial device, which we then connect to a file for logging. xend/XendConfig.py | 13 ++++++++++++- xend/image.py | 24 +++++++++++++++++++----- xm/create.py | 6 ++++++ 3 files changed, 37 insertions(+), 6 deletions(-) Signed-off-by: Daniel P. Berrange <berrange@xxxxxxxxxx> Regards, Dan. -- |=- Red Hat, Engineering, Emerging Technologies, Boston. +1 978 392 2496 -=| |=- Perl modules: http://search.cpan.org/~danberr/ -=| |=- Projects: http://freshmeat.net/~danielpb/ -=| |=- GnuPG: 7D3B9505 F3C9 553F A1DA 4AC2 5648 23C1 B3DF F742 7D3B 9505 -=| Attachment:
xen-hvm-kernel-boot-xend.patch _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |