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-users

[Xen-users] Xen 4.0.1 creates HVM error

To: <xen-users@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-users] Xen 4.0.1 creates HVM error
From: yueqiang <yqcheng.2008@xxxxxxxxxxxxxxxx>
Date: Tue, 23 Nov 2010 17:11:05 +0800
Delivery-date: Tue, 23 Nov 2010 03:28:30 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6
Hi All:
I have run Xen 4.0.1 on my PC ( Intel(R) Core(TM) i7 CPU ) , when I run HVM domain, I found an error:
sudo xm create winxp.cfg

[2010-11-23 17:00:24 4993] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-11-23 17:00:24 4993] DEBUG (XendDomainInfo:2416) No device model
[2010-11-23 17:00:24 4993] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-11-23 17:00:24 4993] ERROR (XendDomainInfo:106) Domain construction failed
Traceback (most recent call last):
File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py", line 104, in create
    vm.start()
File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py", line 469, in start
    XendTask.log_progress(31, 60, self._initDomain)
File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendTask.py", line 209, in log_progress
    retval = func(*args, **kwds)
File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py", line 2912, in _initDomain
    raise VmError(str(exn))
VmError: (38, 'Function not implemented')


the configuration file is:
kernel = "/usr/lib/xen/boot/hvmloader"
builder='hvm'

memory = 1024
vcpus=1
name = "winxp"

disk = ['file:/hvm/winxp.img,ioemu:hda,w',
        'file:/hvm/winxp/winxp-pro.iso,ioemu:hdc:cdrom,r']

vif = [ 'type=ioemu, bridge=virbr0' ]
usbdevice='tablet'

on_poweroff = 'destroy'
on_reboot = 'destroy'
on_crash = 'destroy'

boot='d'
vnc=1
sdl=0

vncdisplay=3

import os, re
arch = os.uname()[4]
if re.search('64', arch):
   arch_libdir = 'lib64'
else:
   arch_libdir = 'lib'
   device_model = '/usr/' + arch_libdir + '/xen/bin/qemu-dm'

I have search on the web, but do not find a solution. Is it a bug, or the problem of my configuration file?

Regards,

Yueqiang

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-users] Xen 4.0.1 creates HVM error, yueqiang <=