* Need help to get networking to work in WinXP domU
@ 2010-07-29 8:40 Jonathan White
2010-07-29 16:19 ` Konrad Rzeszutek Wilk
2010-07-29 16:27 ` Boris Derzhavets
0 siblings, 2 replies; 3+ messages in thread
From: Jonathan White @ 2010-07-29 8:40 UTC (permalink / raw)
To: Xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 560 bytes --]
Hi all,
I am running a WinXPsp3 domU in Xen-4.0.1-rc5-pre x86_64 environment, but
with no network interface enabled. The only way I could get the domU to boot
successfully was when I commented out the vif line in the win.hvm config
file (see attached win.hvm, which is based on /etc/xen/xmexample.hvm).
Also attached are few other log files (xend.log and
qemu-dm-WinXPDomain.log).
Any help on what might be going wrong, and how I can enable networking in
the guest will be much appreciated.
Dom0 has full networking capability though.
Thanks in advance,
Jon
[-- Attachment #1.2: Type: text/html, Size: 687 bytes --]
[-- Attachment #2: win.hvm --]
[-- Type: application/octet-stream, Size: 14933 bytes --]
# -*- mode: python; -*-
#============================================================================
# Python configuration setup for 'xm create'.
# This script sets the parameters used when a domain is created using 'xm create'.
# You use a separate script for each domain you want to create, or
# you can set the parameters for the domain on the xm command line.
#============================================================================
#----------------------------------------------------------------------------
# Kernel image file.
kernel = "hvmloader"
# The domain build function. HVM domain uses 'hvm'.
builder='hvm'
# Initial memory allocation (in megabytes) for the new domain.
#
# WARNING: Creating a domain with insufficient memory may cause out of
# memory errors. The domain needs enough memory to boot kernel
# and modules. Allocating less than 32MBs is not recommended.
memory = 512
# Shadow pagetable memory for the domain, in MB.
# If not explicictly set, xend will pick an appropriate value.
# Should be at least 2KB per MB of domain memory, plus a few MB per vcpu.
# shadow_memory = 8
# Whether to transparently share this domain's memory with other domains.
# default = 0
# memory_sharing = 0
# A name for your domain. All domains must have different names.
name = "WinXPDomain"
# 128-bit UUID for the domain. The default behavior is to generate a new UUID
# on each call to 'xm create'.
#uuid = "06ed00fe-1162-4fc4-b5d8-11993ee4a8b9"
#-----------------------------------------------------------------------------
# The number of cpus guest platform has, default=1
#vcpus=1
# Enable/disable HVM guest PAE, default=1 (enabled)
#pae=1
# Enable/disable HVM guest ACPI, default=1 (enabled)
#acpi=1
# Enable/disable HVM APIC mode, default=1 (enabled)
# Note that this option is ignored if vcpus > 1
#apic=1
# Enable/disable extended power management support within HVM guest, i.e., beyond
# S3, S4, S5 within guest like exposing battery meter.
# 0 (default option, extended power management support disabled)
# 1 (pass-through mode; uses pass-through as needed; efficient but limited in scope)
# 2 (non pass-through mode; extended scope, likely to work on all applicable environment
# but comparitively less efficient than pass-through mode)
# xen_extended_power_mgmt=0
# List of which CPUS this domain is allowed to use, default Xen picks
#cpus = "" # leave to Xen to pick
#cpus = "0" # all vcpus run on CPU0
#cpus = "0-3,5,^1" # all vcpus run on cpus 0,2,3,5
#cpus = ["2", "3"] # VCPU0 runs on CPU2, VCPU1 runs on CPU3
# Optionally define mac and/or bridge for the network interfaces.
# Random MACs are assigned if not given.
# vif = [ 'type=ioemu, mac=00:16:3e:00:00:11, bridge=xenbr0, model=ne2k_pci' ]
# type=ioemu specify the NIC is an ioemu device not netfront
#vif = [ 'type=ioemu, bridge=xenbr0' ]
# vif = [ 'bridge=eth0' ]
#----------------------------------------------------------------------------
# Define the disk devices you want the domain to have access to, and
# what you want them accessible as.
# Each disk entry is of the form phy:UNAME,DEV,MODE
# where UNAME is the device, DEV is the device name the domain will see,
# and MODE is r for read-only, w for read-write.
#disk = [ 'phy:hda1,hda1,r' ]
#disk = [ 'file:/var/images/min-el3-i386.img,hda,w', ',hdc:cdrom,r' ]
disk = [ 'file:/root/ximages/win.img,hda,w', 'file:/root/ximages/win.iso,hdc:cdrom,r' ]
#----------------------------------------------------------------------------
# Configure the behaviour when a domain exits. There are three 'reasons'
# for a domain to stop: poweroff, reboot, and crash. For each of these you
# may specify:
#
# "destroy", meaning that the domain is cleaned up as normal;
# "restart", meaning that a new domain is started in place of the old
# one;
# "preserve", meaning that no clean-up is done until the domain is
# manually destroyed (using xm destroy, for example); or
# "rename-restart", meaning that the old domain is not cleaned up, but is
# renamed and a new domain started in its place.
#
# In the event a domain stops due to a crash, you have the additional options:
#
# "coredump-destroy", meaning dump the crashed domain's core and then destroy;
# "coredump-restart', meaning dump the crashed domain's core and the restart.
#
# The default is
#
# on_poweroff = 'destroy'
# on_reboot = 'restart'
# on_crash = 'restart'
#
# For backwards compatibility we also support the deprecated option restart
#
# restart = 'onreboot' means on_poweroff = 'destroy'
# on_reboot = 'restart'
# on_crash = 'destroy'
#
# restart = 'always' means on_poweroff = 'restart'
# on_reboot = 'restart'
# on_crash = 'restart'
#
# restart = 'never' means on_poweroff = 'destroy'
# on_reboot = 'destroy'
# on_crash = 'destroy'
#on_poweroff = 'destroy'
on_reboot = 'restart'
on_crash = 'restart'
#============================================================================
# Device Model to be used
device_model = 'qemu-dm'
#-----------------------------------------------------------------------------
# boot on floppy (a), hard disk (c), Network (n) or CD-ROM (d)
# default: hard disk, cd-rom, floppy
#boot="cda"
boot="dc"
#-----------------------------------------------------------------------------
# write to temporary files instead of disk image files
#snapshot=1
#----------------------------------------------------------------------------
# enable SDL library for graphics, default = 0
sdl=0
#----------------------------------------------------------------------------
# enable OpenGL for texture rendering inside the SDL window, default = 1
# valid only if sdl is enabled.
opengl=1
#----------------------------------------------------------------------------
# enable VNC library for graphics, default = 1
vnc=1
#----------------------------------------------------------------------------
# address that should be listened on for the VNC server if vnc is set.
# default is to use 'vnc-listen' setting from
# auxbin.xen_configdir() + /xend-config.sxp
vnclisten="127.0.0.1"
#----------------------------------------------------------------------------
# set VNC display number, default = domid
#vncdisplay=1
#----------------------------------------------------------------------------
# try to find an unused port for the VNC server, default = 1
#vncunused=1
#----------------------------------------------------------------------------
# set password for domain's VNC console
# default is depents on vncpasswd in xend-config.sxp
vncpasswd=''
#----------------------------------------------------------------------------
# no graphics, use serial port
#nographic=0
#----------------------------------------------------------------------------
# enable stdvga, default = 0 (use cirrus logic device model)
stdvga=0
#-----------------------------------------------------------------------------
# serial port re-direct to pty deivce, /dev/pts/n
# then xm console or minicom can connect
serial='pty'
#----------------------------------------------------------------------------
# tsc_mode : TSC mode (0=default, 1=native TSC, 2=never emulate, 3=pvrdtscp)
# emulate TSC provides synced TSC for all vcpus, but lose perfomrance.
# native TSC leverages hardware's TSC(no perf loss), but vcpu's TSC may lose
# sync due to hardware's unreliable/unsynced TSC between CPUs.
# default intelligently uses native TSC on machines where it is safe, but
# switches to emulated if necessary after save/restore/migration
# pvrdtscp is for intelligent apps that use special Xen-only paravirtualized
# cpuid instructions to obtain offset/scaling/migration info and maximize
# performance within pools of machines that support the rdtscp instruction
tsc_mode=0
#-----------------------------------------------------------------------------
# Qemu Monitor, default is disable
# Use ctrl-alt-2 to connect
#monitor=1
#-----------------------------------------------------------------------------
# enable sound card support, [sb16|es1370|all|..,..], default none
#soundhw='sb16'
#-----------------------------------------------------------------------------
# set the real time clock to local time [default=0 i.e. set to utc]
#localtime=1
#-----------------------------------------------------------------------------
# set the real time clock offset in seconds [default=0 i.e. same as dom0]
#rtc_timeoffset=3600
#-----------------------------------------------------------------------------
# start in full screen
#full-screen=1
#-----------------------------------------------------------------------------
# Enable USB support (specific devices specified at runtime through the
# monitor window)
#usb=1
# Enable USB mouse support (only enable one of the following, `mouse' for
# PS/2 protocol relative mouse, `tablet' for
# absolute mouse)
#usbdevice='mouse'
#usbdevice='tablet'
#-----------------------------------------------------------------------------
# Set keyboard layout, default is en-us keyboard.
#keymap='ja'
#-----------------------------------------------------------------------------
# Enable/disable xen platform PCI device, default=1 (enabled)
#xen_platform_pci=1
#-----------------------------------------------------------------------------
# Configure guest CPUID responses:
#
#cpuid=[ '1:ecx=xxxxxxxxxxx00xxxxxxxxxxxxxxxxxxx,
# eax=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' ]
# - Unset the SSE4 features (CPUID.1[ECX][20-19])
# - Default behaviour for all other bits in ECX And EAX registers.
#
# Each successive character represent a lesser-significant bit:
# '1' -> force the corresponding bit to 1
# '0' -> force to 0
# 'x' -> Get a safe value (pass through and mask with the default policy)
# 'k' -> pass through the host bit value
# 's' -> as 'k' but preserve across save/restore and migration
#
# Expose to the guest multi-core cpu instead of multiple processors
# Example for intel, expose a 8-core processor :
#cpuid=['1:edx=xxx1xxxxxxxxxxxxxxxxxxxxxxxxxxxx,
# ebx=xxxxxxxx00010000xxxxxxxxxxxxxxxx',
# '4,0:eax=001111xxxxxxxxxxxxxxxxxxxxxxxxxx']
# - CPUID.1[EDX][HT] : Enable HT
# - CPUID.1[EBX] : Number of vcpus * 2
# - CPUID.4,0[EAX] : Number of vcpus * 2 - 1
#vcpus=8
#
# Example for amd, expose a 5-core processor :
# cpuid = ['1:ebx=xxxxxxxx00001010xxxxxxxxxxxxxxxx,
# edx=xxx1xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
# '0x80000001:ecx=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1x',
# '0x80000008:ecx=xxxxxxxxxxxxxxxxxxxxxxxxxx001001']
# - CPUID.1[EBX] : Threads per Core * Cores per Socket (2 * #vcpus)
# - CPUID.1[EDX][HT] : Enable HT
# - CPUID.0x80000001[CmpLegacy] : Use legacy method
# - CPUID.0x80000008[ECX] : #vcpus * 2 - 1
#vcpus=5
#
# Downgrade the cpuid to make a better compatibility for migration :
# Look like a generic 686 :
# cpuid = [ '0:eax=0x3,ebx=0x0,ecx=0x0,edx=0x0',
# '1:eax=0x06b1,
# ecx=xxxxxxxxxxx0000xx00xxx0000000xx0,
# edx=xxx00000xxxxxxx0xxxxxxxxx0xxxxxx',
# '4:eax=0x3,ebx=0x0,ecx=0x0,edx=0x0',
# '0x80000000:eax=0x3,ebx=0x0,ecx=0x0,edx=0x0']
# with the highest leaf
# - CPUID.0[EAX] : Set the highest leaf
# - CPUID.1[EAX] : 686
# - CPUID.1[ECX] : Mask some features
# - CPUID.1[EDX] : Mask some features
# - CPUID.4 : Reply like the highest leaf, in our case CPUID.3
# - CPUID.0x80000000 : No extension we are on a Pentium III, reply like the
# highest leaf (CPUID.3).
#
# Configure host CPUID consistency checks, which must be satisfied for this
# VM to be allowed to run on this host's processor type:
#cpuid_check=[ '1:ecx=xxxxxxxxxxxxxxxxxxxxxxxxxx1xxxxx' ]
# - Host must have VMX feature flag set
#
# The format is similar to the above for 'cpuid':
# '1' -> the bit must be '1'
# '0' -> the bit must be '0'
# 'x' -> we don't care (do not check)
# 's' -> the bit must be the same as on the host that started this VM
#-----------------------------------------------------------------------------
# Configure passthrough PCI{,-X,e} devices:
#
# pci=[ '[SSSS:]BB:DD.F[,option1[,option2[...]]]', ... ]
#
# [SSSS]:BB:DD.F "bus segment:bus:device.function"(1) of the device to
# be assigned, bus segment is optional. All fields are
# in hexadecimal and no field should be longer than that
# as shown in the pattern. Successful assignment may need
# certain hardware support and additional configurations
# (e.g. VT-d, see docs/misc/vtd.txt for more details).
#
# (1) bus segment is sometimes also referred to as the PCI "domain",
# not to be confused with Xen domain.
#
#
# optionN per-device options in "key=val" format. Current
# available options are:
# - msitranslate=0|1
# per-device overriden of pci_msitranslate, see below
# - power_mgmt=0|1
# per-device overriden of pci_power_mgmt, see below
#
#pci=[ '07:00.0', '07:00.1' ]
# MSI-INTx translation for MSI capable devices:
#
# If it's set, Xen will enable MSI for the device that supports it even
# if the guest don't use MSI. In the case, an IO-APIC type interrupt will
# be injected to the guest every time a corresponding MSI message is
# received.
# If the guest enables MSI or MSI-X, the translation is automatically
# turned off.
#
#pci_msitranslate=1
# PCI Power Management:
#
# If it's set, the guest OS will be able to program D0-D3hot states of the
# PCI device for the purpose of low power consumption.
#
#pci_power_mgmt=0
# Enable graphics passthrough:
#
# If it's set, and specify grapchis device BDF in pci passthrough option,
# like pci=['xx:xx.x'], it enables graphics passthrough, default=0 (disabled)
#gfx_passthru=0
#-----------------------------------------------------------------------------
# Configure PVSCSI devices:
#
#vscsi=[ 'PDEV, VDEV' ]
#
# PDEV gives physical SCSI device to be attached to specified guest
# domain by one of the following identifier format.
# - XX:XX:XX:XX (4-tuples with decimal notation which shows
# "host:channel:target:lun")
# - /dev/sdxx or sdx
# - /dev/stxx or stx
# - /dev/sgxx or sgx
# - result of 'scsi_id -gu -s'.
# ex. # scsi_id -gu -s /block/sdb
# 36000b5d0006a0000006a0257004c0000
#
# VDEV gives virtual SCSI device by 4-tuples (XX:XX:XX:XX) as
# which the specified guest domain recognize.
#
#vscsi = [ '/dev/sdx, 0:0:0:0' ]
[-- Attachment #3: xend.log.1 --]
[-- Type: application/octet-stream, Size: 506206 bytes --]
[2010-07-23 01:59:16 3198] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-23 01:59:16 3198] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-23 01:59:18 3198] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 28182221598L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-23 01:59:18 3198] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-23 01:59:18 3198] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-23 01:59:18 3198] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-23 01:59:18 3198] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-23 01:59:18 3198] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-23 01:59:18 3198] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-23 01:59:18 3198] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-23 01:59:18 3198] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-23 01:59:18 3198] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-23 02:00:15 3198] DEBUG (SrvServer:76) SrvServer.cleanup()
[2010-07-23 02:00:15 3198] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-23 02:00:15 3198] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-23 02:00:15 3198] DEBUG (XendDomain:632) cleanup_domains
[2010-07-23 02:00:15 3197] INFO (SrvDaemon:220) Xend exited with status 0.
[2010-07-23 02:00:23 3361] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-23 02:00:23 3361] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-23 02:00:24 3361] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 32937379092L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-23 02:00:24 3361] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-23 02:00:24 3361] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-23 02:00:24 3361] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-23 02:00:24 3361] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-23 02:00:24 3361] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-23 02:00:24 3361] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-23 02:00:25 3361] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-23 19:14:33 3209] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-23 19:14:33 3209] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-23 19:14:35 3209] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 28111723334L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-23 19:14:35 3209] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-23 19:14:35 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-23 19:14:35 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-23 19:14:35 3209] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-23 19:14:35 3209] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-23 19:14:35 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-23 19:14:35 3209] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-23 19:14:35 3209] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-23 19:14:35 3209] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-24 18:05:34 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPHVMDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:05:34 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:05:34 3209] DEBUG (balloon:220) Balloon: 997116 KiB free; need 16384; done.
[2010-07-24 18:05:34 3209] DEBUG (XendDomain:464) Adding Domain: 1
[2010-07-24 18:05:34 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 1 256
[2010-07-24 18:05:34 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:05:34 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:05:34 3209] INFO (image:822) Need to create platform device.[domid:1]
[2010-07-24 18:05:34 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:05:34 3209] INFO (image:182) buildDomain os=hvm dom=1 vcpus=1
[2010-07-24 18:05:34 3209] DEBUG (image:949) domid = 1
[2010-07-24 18:05:34 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:05:34 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:05:34 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:05:34 3209] DEBUG (image:953) target = 512
[2010-07-24 18:05:34 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:05:34 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:05:34 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:05:34 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:05:34 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'c7c01e5a-32dd-7f49-c9c4-6b32762e43b7'}
[2010-07-24 18:05:34 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/1/0'} to /local/domain/1/device/vfb/0.
[2010-07-24 18:05:34 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/1/device/vfb/0', 'uuid': 'c7c01e5a-32dd-7f49-c9c4-6b32762e43b7', 'frontend-id': '1', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/1/0.
[2010-07-24 18:05:34 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'ace2f56b-67b2-ad0b-c020-28aaa9d176fe', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/winxp.img', 'mode': 'w'}
[2010-07-24 18:05:34 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/768'} to /local/domain/1/device/vbd/768.
[2010-07-24 18:05:34 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/1/device/vbd/768', 'uuid': 'ace2f56b-67b2-ad0b-c020-28aaa9d176fe', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/768.
[2010-07-24 18:05:34 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '06af0786-965d-96af-de1f-cd51e491170f', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:05:34 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/5632'} to /local/domain/1/device/vbd/5632.
[2010-07-24 18:05:34 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/1/device/vbd/5632', 'uuid': '06af0786-965d-96af-de1f-cd51e491170f', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '1', 'type': ''} to /local/domain/0/backend/vbd/1/5632.
[2010-07-24 18:05:34 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:4e:93:0a', 'type': 'ioemu', 'uuid': '982bc889-0957-d4a9-f076-09a027f5c4d3'}
[2010-07-24 18:05:34 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/1/0'} to /local/domain/1/device/vif/0.
[2010-07-24 18:05:34 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPHVMDomain', 'handle': '0', 'uuid': '982bc889-0957-d4a9-f076-09a027f5c4d3', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:4e:93:0a', 'frontend-id': '1', 'state': '1', 'online': '1', 'frontend': '/local/domain/1/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/1/0.
[2010-07-24 18:05:34 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '1', '-domain-name', 'WinXPHVMDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:4e:93:0a,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap1.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:05:35 3209] INFO (image:467) device model pid: 26614
[2010-07-24 18:05:35 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:05:35 3209] WARNING (image:552) domain WinXPHVMDomain: device model failure: pid 26614: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPHVMDomain.log
[2010-07-24 18:05:35 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'cb2f57a6-23d5-ba6a-a7d0-8dfd1013658b', 'on_reboot': 'restart', 'start_time': '1280019935.42', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPHVMDomain'}
[2010-07-24 18:05:35 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/cb2f57a6-23d5-ba6a-a7d0-8dfd1013658b', 'domid': '1', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPHVMDomain'}
[2010-07-24 18:05:35 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=1.
[2010-07-24 18:05:35 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/1/0'} to /local/domain/1/device/console/0.
[2010-07-24 18:05:35 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/1/device/console/0', 'uuid': '4bbab4d1-c75d-2b37-66bd-9e1925679593', 'frontend-id': '1', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/1/0.
[2010-07-24 18:05:35 3209] ERROR (XendDomainInfo:2205) VM WinXPHVMDomain restarting too fast (Elapsed time: 0.350361 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:05:35 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-07-24 18:05:35 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=1.
[2010-07-24 18:05:35 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=1.
[2010-07-24 18:05:35 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:05:36 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:07:05 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPHVMDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:07:05 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:07:05 3209] DEBUG (balloon:220) Balloon: 997112 KiB free; need 16384; done.
[2010-07-24 18:07:05 3209] DEBUG (XendDomain:464) Adding Domain: 2
[2010-07-24 18:07:05 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 2 256
[2010-07-24 18:07:05 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:07:05 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:07:05 3209] INFO (image:822) Need to create platform device.[domid:2]
[2010-07-24 18:07:05 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:07:05 3209] INFO (image:182) buildDomain os=hvm dom=2 vcpus=1
[2010-07-24 18:07:05 3209] DEBUG (image:949) domid = 2
[2010-07-24 18:07:05 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:07:05 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:07:05 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:07:05 3209] DEBUG (image:953) target = 512
[2010-07-24 18:07:05 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:07:05 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:07:05 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:07:05 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:07:05 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'fbfd576f-010e-25f6-6a45-64e563586a04'}
[2010-07-24 18:07:05 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/2/0'} to /local/domain/2/device/vfb/0.
[2010-07-24 18:07:05 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/2/device/vfb/0', 'uuid': 'fbfd576f-010e-25f6-6a45-64e563586a04', 'frontend-id': '2', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/2/0.
[2010-07-24 18:07:05 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '1ec89cc9-feb9-c0dd-dd97-fa3df84579b6', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/winxp.img', 'mode': 'w'}
[2010-07-24 18:07:05 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/768'} to /local/domain/2/device/vbd/768.
[2010-07-24 18:07:05 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/2/device/vbd/768', 'uuid': '1ec89cc9-feb9-c0dd-dd97-fa3df84579b6', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '2', 'type': 'file'} to /local/domain/0/backend/vbd/2/768.
[2010-07-24 18:07:05 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '1247c38e-f9c0-63bb-0e6d-8e91ebc2cef3', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:07:05 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/5632'} to /local/domain/2/device/vbd/5632.
[2010-07-24 18:07:05 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/2/device/vbd/5632', 'uuid': '1247c38e-f9c0-63bb-0e6d-8e91ebc2cef3', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '2', 'type': ''} to /local/domain/0/backend/vbd/2/5632.
[2010-07-24 18:07:05 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:2e:25:03', 'type': 'ioemu', 'uuid': '5456b12f-ac83-0932-3a56-b00e6f52c185'}
[2010-07-24 18:07:05 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/2/0'} to /local/domain/2/device/vif/0.
[2010-07-24 18:07:05 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPHVMDomain', 'handle': '0', 'uuid': '5456b12f-ac83-0932-3a56-b00e6f52c185', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:2e:25:03', 'frontend-id': '2', 'state': '1', 'online': '1', 'frontend': '/local/domain/2/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/2/0.
[2010-07-24 18:07:06 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '2', '-domain-name', 'WinXPHVMDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:2e:25:03,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap2.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:07:06 3209] INFO (image:467) device model pid: 27069
[2010-07-24 18:07:06 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:07:06 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '52a297ff-2a87-7ed1-b6f2-5d564886fee3', 'on_reboot': 'restart', 'start_time': '1280020026.1', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPHVMDomain'}
[2010-07-24 18:07:06 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/52a297ff-2a87-7ed1-b6f2-5d564886fee3', 'domid': '2', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPHVMDomain'}
[2010-07-24 18:07:06 3209] WARNING (image:552) domain WinXPHVMDomain: device model failure: pid 27069: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPHVMDomain.log
[2010-07-24 18:07:06 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/2/0'} to /local/domain/2/device/console/0.
[2010-07-24 18:07:06 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/2/device/console/0', 'uuid': '8430f57d-ab0f-d57c-747f-8d6d74f15434', 'frontend-id': '2', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/2/0.
[2010-07-24 18:07:06 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=2.
[2010-07-24 18:07:06 3209] ERROR (XendDomainInfo:2205) VM WinXPHVMDomain restarting too fast (Elapsed time: 0.812852 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:07:06 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=2
[2010-07-24 18:07:06 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:07:06 3209] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-24 18:07:06 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=2.
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-24 18:07:07 3209] DEBUG (DevController:144) Waiting for 0.
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:07:07 3209] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/2/0/hotplug-status.
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:07:07 3209] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices console.
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:07:07 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:07:07 3209] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-24 18:07:07 3209] DEBUG (DevController:144) Waiting for 768.
[2010-07-24 18:07:07 3209] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/2/768/hotplug-status.
[2010-07-24 18:07:07 3209] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:07:07 3209] DEBUG (DevController:144) Waiting for 5632.
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPHVMDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:08:04 3209] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:08:04 3209] DEBUG (XendDomain:464) Adding Domain: 3
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 3 256
[2010-07-24 18:08:04 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:08:04 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:08:04 3209] INFO (image:822) Need to create platform device.[domid:3]
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:08:04 3209] INFO (image:182) buildDomain os=hvm dom=3 vcpus=1
[2010-07-24 18:08:04 3209] DEBUG (image:949) domid = 3
[2010-07-24 18:08:04 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:08:04 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:08:04 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:08:04 3209] DEBUG (image:953) target = 512
[2010-07-24 18:08:04 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:08:04 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:08:04 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:08:04 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:08:04 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '9fcc9db3-3af4-81f7-fb8f-f7699733cdf1'}
[2010-07-24 18:08:04 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/3/0'} to /local/domain/3/device/vfb/0.
[2010-07-24 18:08:04 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/3/device/vfb/0', 'uuid': '9fcc9db3-3af4-81f7-fb8f-f7699733cdf1', 'frontend-id': '3', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/3/0.
[2010-07-24 18:08:04 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a4f333de-4a59-6224-c0c7-d173863ec5a5', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/winxp.img', 'mode': 'w'}
[2010-07-24 18:08:04 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/768'} to /local/domain/3/device/vbd/768.
[2010-07-24 18:08:04 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/3/device/vbd/768', 'uuid': 'a4f333de-4a59-6224-c0c7-d173863ec5a5', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '3', 'type': 'file'} to /local/domain/0/backend/vbd/3/768.
[2010-07-24 18:08:04 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a26fae50-8354-34f8-f139-96359a548e0a', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:08:04 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/5632'} to /local/domain/3/device/vbd/5632.
[2010-07-24 18:08:04 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/3/device/vbd/5632', 'uuid': 'a26fae50-8354-34f8-f139-96359a548e0a', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '3', 'type': ''} to /local/domain/0/backend/vbd/3/5632.
[2010-07-24 18:08:04 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:3f:24:cc', 'type': 'ioemu', 'uuid': '8efaeceb-b3f9-1849-37b0-71caeb3c7f10'}
[2010-07-24 18:08:04 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/3/0'} to /local/domain/3/device/vif/0.
[2010-07-24 18:08:04 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPHVMDomain', 'handle': '0', 'uuid': '8efaeceb-b3f9-1849-37b0-71caeb3c7f10', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:3f:24:cc', 'frontend-id': '3', 'state': '1', 'online': '1', 'frontend': '/local/domain/3/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/3/0.
[2010-07-24 18:08:04 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '3', '-domain-name', 'WinXPHVMDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:3f:24:cc,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap3.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:08:04 3209] INFO (image:467) device model pid: 27455
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '64bad941-085b-73cf-e930-8ac736eedcf8', 'on_reboot': 'restart', 'start_time': '1280020084.41', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPHVMDomain'}
[2010-07-24 18:08:04 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:08:04 3209] WARNING (image:552) domain WinXPHVMDomain: device model failure: pid 27455: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPHVMDomain.log
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/64bad941-085b-73cf-e930-8ac736eedcf8', 'domid': '3', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPHVMDomain'}
[2010-07-24 18:08:04 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=3.
[2010-07-24 18:08:04 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/3/0'} to /local/domain/3/device/console/0.
[2010-07-24 18:08:04 3209] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPHVMDomain', 'frontend': '/local/domain/3/device/console/0', 'uuid': 'd0bea5e2-56c6-20b4-6a84-385bf7492df9', 'frontend-id': '3', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/3/0.
[2010-07-24 18:08:04 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=3.
[2010-07-24 18:08:04 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPHVMDomain id=3.
[2010-07-24 18:08:04 3209] ERROR (XendDomainInfo:2205) VM WinXPHVMDomain restarting too fast (Elapsed time: 0.131623 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=3
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:08:04 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:11:07 3209] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:11:07 3209] DEBUG (XendDomain:464) Adding Domain: 4
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 4 256
[2010-07-24 18:11:07 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:11:07 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:11:07 3209] INFO (image:822) Need to create platform device.[domid:4]
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:11:07 3209] INFO (image:182) buildDomain os=hvm dom=4 vcpus=1
[2010-07-24 18:11:07 3209] DEBUG (image:949) domid = 4
[2010-07-24 18:11:07 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:11:07 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:11:07 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:11:07 3209] DEBUG (image:953) target = 512
[2010-07-24 18:11:07 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:11:07 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:11:07 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:11:07 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:11:07 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'f638dea7-25a7-338c-b7b1-6bfeda4f2aab'}
[2010-07-24 18:11:07 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/4/0'} to /local/domain/4/device/vfb/0.
[2010-07-24 18:11:07 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp', 'frontend': '/local/domain/4/device/vfb/0', 'uuid': 'f638dea7-25a7-338c-b7b1-6bfeda4f2aab', 'frontend-id': '4', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/4/0.
[2010-07-24 18:11:07 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a90b0bfb-e67c-e3a1-697a-b972af65e5f4', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/winxp.img', 'mode': 'w'}
[2010-07-24 18:11:07 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/768'} to /local/domain/4/device/vbd/768.
[2010-07-24 18:11:07 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/4/device/vbd/768', 'uuid': 'a90b0bfb-e67c-e3a1-697a-b972af65e5f4', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '4', 'type': 'file'} to /local/domain/0/backend/vbd/4/768.
[2010-07-24 18:11:07 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '212b07f5-0c2c-135b-90f5-428bd473bfd5', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:11:07 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/5632'} to /local/domain/4/device/vbd/5632.
[2010-07-24 18:11:07 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/4/device/vbd/5632', 'uuid': '212b07f5-0c2c-135b-90f5-428bd473bfd5', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '4', 'type': ''} to /local/domain/0/backend/vbd/4/5632.
[2010-07-24 18:11:07 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:79:08:45', 'type': 'ioemu', 'uuid': '1db1fca6-239d-3dfc-b0d5-67935441ee88'}
[2010-07-24 18:11:07 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/4/0'} to /local/domain/4/device/vif/0.
[2010-07-24 18:11:07 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp', 'handle': '0', 'uuid': '1db1fca6-239d-3dfc-b0d5-67935441ee88', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:79:08:45', 'frontend-id': '4', 'state': '1', 'online': '1', 'frontend': '/local/domain/4/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/4/0.
[2010-07-24 18:11:07 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '4', '-domain-name', 'winxp', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:79:08:45,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap4.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:11:07 3209] INFO (image:467) device model pid: 27825
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'dc75a797-c9a5-9651-358d-93212d60e304', 'on_reboot': 'restart', 'start_time': '1280020267.38', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp'}
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/dc75a797-c9a5-9651-358d-93212d60e304', 'domid': '4', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp'}
[2010-07-24 18:11:07 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:11:07 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/4/0'} to /local/domain/4/device/console/0.
[2010-07-24 18:11:07 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/4/device/console/0', 'uuid': '1504df9c-a356-f01c-a77c-43fbe4118c02', 'frontend-id': '4', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/4/0.
[2010-07-24 18:11:07 3209] WARNING (image:552) domain winxp: device model failure: pid 27825: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.log
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-24 18:11:07 3209] DEBUG (DevController:144) Waiting for 0.
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:11:07 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp id=4.
[2010-07-24 18:11:07 3209] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/4/0/hotplug-status.
[2010-07-24 18:11:07 3209] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:11:07 3209] ERROR (XendDomainInfo:2205) VM winxp restarting too fast (Elapsed time: 0.317124 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=4
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices console.
[2010-07-24 18:11:07 3209] DEBUG (DevController:144) Waiting for 0.
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-24 18:11:07 3209] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-24 18:11:07 3209] DEBUG (DevController:144) Waiting for 768.
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:11:07 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:11:07 3209] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/768/hotplug-status.
[2010-07-24 18:11:07 3209] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:11:08 3209] DEBUG (DevController:144) Waiting for 5632.
[2010-07-24 18:11:08 3209] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/5632/hotplug-status.
[2010-07-24 18:11:08 3209] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:11:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:11:08 3209] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-24 18:11:08 3209] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-24 18:11:08 3209] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-24 18:11:08 3209] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-24 18:11:08 3209] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-24 18:11:08 3209] ERROR (XendDomain:1209) domain_unpause
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomain.py", line 1198, in domain_unpause
raise XendInvalidDomain(str(domid))
XendInvalidDomain: <Fault 3: 'winxp'>
[2010-07-24 18:16:07 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:16:07 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:16:07 3209] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:16:07 3209] DEBUG (XendDomain:464) Adding Domain: 5
[2010-07-24 18:16:07 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 5 256
[2010-07-24 18:16:07 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:16:07 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:16:07 3209] ERROR (XendDomainInfo:2904) XendDomainInfo.initDomain: exception occurred
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 2823, in _initDomain
self.image = image.create(self, self.info)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 66, in create
return findImageHandlerClass(vmConfig)(vm, vmConfig)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 783, in __init__
ImageHandler.__init__(self, vm, vmConfig)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 99, in __init__
self.configure(vmConfig)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 1030, in configure
HVMImageHandler.configure(self, vmConfig)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 791, in configure
ImageHandler.configure(self, vmConfig)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 129, in configure
self.dmargs = self.parseDeviceModelArgs(vmConfig)
File "/usr/lib64/python2.6/site-packages/xen/xend/image.py", line 904, in parseDeviceModelArgs
vbdparam)
VmError: Disk image does not exist: /root/ximages/winxp.img
[2010-07-24 18:16:07 3209] ERROR (XendDomainInfo:483) VM start failed
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 469, in start
XendTask.log_progress(31, 60, self._initDomain)
File "/usr/lib64/python2.6/site-packages/xen/xend/XendTask.py", line 209, in log_progress
retval = func(*args, **kwds)
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 2907, in _initDomain
raise exn
VmError: Disk image does not exist: /root/ximages/winxp.img
[2010-07-24 18:16:07 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=5
[2010-07-24 18:16:07 3209] DEBUG (XendDomainInfo:2416) No device model
[2010-07-24 18:16:07 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:16:07 3209] ERROR (XendDomainInfo:106) Domain construction failed
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 104, in create
vm.start()
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 469, in start
XendTask.log_progress(31, 60, self._initDomain)
File "/usr/lib64/python2.6/site-packages/xen/xend/XendTask.py", line 209, in log_progress
retval = func(*args, **kwds)
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomainInfo.py", line 2907, in _initDomain
raise exn
VmError: Disk image does not exist: /root/ximages/winxp.img
[2010-07-24 18:19:17 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:19:17 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:19:17 3209] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:19:17 3209] DEBUG (XendDomain:464) Adding Domain: 6
[2010-07-24 18:19:17 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 6 256
[2010-07-24 18:19:17 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:19:17 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:19:17 3209] INFO (image:822) Need to create platform device.[domid:6]
[2010-07-24 18:19:17 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:19:17 3209] INFO (image:182) buildDomain os=hvm dom=6 vcpus=1
[2010-07-24 18:19:17 3209] DEBUG (image:949) domid = 6
[2010-07-24 18:19:17 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:19:17 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:19:17 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:19:17 3209] DEBUG (image:953) target = 512
[2010-07-24 18:19:17 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:19:17 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:19:17 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:19:17 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:19:17 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '526bd2fc-c1b9-01f9-b96f-1173a410d857'}
[2010-07-24 18:19:17 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/6/0'} to /local/domain/6/device/vfb/0.
[2010-07-24 18:19:17 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp', 'frontend': '/local/domain/6/device/vfb/0', 'uuid': '526bd2fc-c1b9-01f9-b96f-1173a410d857', 'frontend-id': '6', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/6/0.
[2010-07-24 18:19:17 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '238a503e-f947-ac81-caf3-6a9fb6936e70', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:19:17 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/768'} to /local/domain/6/device/vbd/768.
[2010-07-24 18:19:17 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/6/device/vbd/768', 'uuid': '238a503e-f947-ac81-caf3-6a9fb6936e70', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '6', 'type': 'file'} to /local/domain/0/backend/vbd/6/768.
[2010-07-24 18:19:17 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a4c21e9d-6d90-6479-f792-ba6de172fd8c', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:19:17 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/5632'} to /local/domain/6/device/vbd/5632.
[2010-07-24 18:19:17 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/6/device/vbd/5632', 'uuid': 'a4c21e9d-6d90-6479-f792-ba6de172fd8c', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '6', 'type': ''} to /local/domain/0/backend/vbd/6/5632.
[2010-07-24 18:19:17 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:66:18:b0', 'type': 'ioemu', 'uuid': 'd6401bf5-b085-e85a-786d-f26162ee571a'}
[2010-07-24 18:19:17 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/6/0'} to /local/domain/6/device/vif/0.
[2010-07-24 18:19:17 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp', 'handle': '0', 'uuid': 'd6401bf5-b085-e85a-786d-f26162ee571a', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:66:18:b0', 'frontend-id': '6', 'state': '1', 'online': '1', 'frontend': '/local/domain/6/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/6/0.
[2010-07-24 18:19:17 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '6', '-domain-name', 'winxp', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:66:18:b0,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap6.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:19:17 3209] INFO (image:467) device model pid: 28280
[2010-07-24 18:19:17 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:19:17 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '81268ae2-247f-670b-d926-6fd8c235aefc', 'on_reboot': 'restart', 'start_time': '1280020757.9', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp'}
[2010-07-24 18:19:17 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/81268ae2-247f-670b-d926-6fd8c235aefc', 'domid': '6', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp'}
[2010-07-24 18:19:17 3209] WARNING (image:552) domain winxp: device model failure: pid 28280: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.log
[2010-07-24 18:19:17 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp id=6.
[2010-07-24 18:19:18 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/6/0'} to /local/domain/6/device/console/0.
[2010-07-24 18:19:18 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/6/device/console/0', 'uuid': 'bbb4947e-cafa-8914-3435-f9a8e834398d', 'frontend-id': '6', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/6/0.
[2010-07-24 18:19:18 3209] ERROR (XendDomainInfo:2205) VM winxp restarting too fast (Elapsed time: 0.136000 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=6
[2010-07-24 18:19:18 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp id=6.
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:19:18 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:20:07 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp.hvm'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:20:07 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:20:07 3209] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:20:07 3209] DEBUG (XendDomain:464) Adding Domain: 7
[2010-07-24 18:20:07 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 7 256
[2010-07-24 18:20:07 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:20:07 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:20:08 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:20:08 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:20:08 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:20:08 3209] INFO (image:822) Need to create platform device.[domid:7]
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:20:08 3209] INFO (image:182) buildDomain os=hvm dom=7 vcpus=1
[2010-07-24 18:20:08 3209] DEBUG (image:949) domid = 7
[2010-07-24 18:20:08 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:20:08 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:20:08 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:20:08 3209] DEBUG (image:953) target = 512
[2010-07-24 18:20:08 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:20:08 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:20:08 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:20:08 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:20:08 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'a344b587-b30b-7cfa-999b-9a8e0f6fc285'}
[2010-07-24 18:20:08 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/7/0'} to /local/domain/7/device/vfb/0.
[2010-07-24 18:20:08 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp.hvm', 'frontend': '/local/domain/7/device/vfb/0', 'uuid': 'a344b587-b30b-7cfa-999b-9a8e0f6fc285', 'frontend-id': '7', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/7/0.
[2010-07-24 18:20:08 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '253baced-6d7d-d759-7c7c-20df581fb0fe', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:20:08 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/7/768'} to /local/domain/7/device/vbd/768.
[2010-07-24 18:20:08 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/7/device/vbd/768', 'uuid': '253baced-6d7d-d759-7c7c-20df581fb0fe', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '7', 'type': 'file'} to /local/domain/0/backend/vbd/7/768.
[2010-07-24 18:20:08 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a2aa07a7-c6e6-f494-15b5-5d320a7f9df4', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:20:08 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/7/5632'} to /local/domain/7/device/vbd/5632.
[2010-07-24 18:20:08 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/7/device/vbd/5632', 'uuid': 'a2aa07a7-c6e6-f494-15b5-5d320a7f9df4', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '7', 'type': ''} to /local/domain/0/backend/vbd/7/5632.
[2010-07-24 18:20:08 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:74:2d:e8', 'type': 'ioemu', 'uuid': '61b72740-8422-f865-01e2-2a097d53f6bd'}
[2010-07-24 18:20:08 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/7/0'} to /local/domain/7/device/vif/0.
[2010-07-24 18:20:08 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp.hvm', 'handle': '0', 'uuid': '61b72740-8422-f865-01e2-2a097d53f6bd', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:74:2d:e8', 'frontend-id': '7', 'state': '1', 'online': '1', 'frontend': '/local/domain/7/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/7/0.
[2010-07-24 18:20:08 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '7', '-domain-name', 'winxp.hvm', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:74:2d:e8,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap7.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:20:08 3209] INFO (image:467) device model pid: 28677
[2010-07-24 18:20:08 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '8649b322-1a22-4738-1084-46b54e26743b', 'on_reboot': 'restart', 'start_time': '1280020808.26', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp.hvm'}
[2010-07-24 18:20:08 3209] WARNING (image:552) domain winxp.hvm: device model failure: pid 28677: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.hvm.log
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/8649b322-1a22-4738-1084-46b54e26743b', 'domid': '7', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp.hvm'}
[2010-07-24 18:20:08 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=7.
[2010-07-24 18:20:08 3209] ERROR (XendDomainInfo:2205) VM winxp.hvm restarting too fast (Elapsed time: 0.071774 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=7
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:20:08 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:20:08 3209] ERROR (XendConfig:1172) dumping sxp from device controllers
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendConfig.py", line 1158, in to_sxp
configs = controller.configurations(txn)
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 242, in configurations
return map(lambda x: self.configuration(x, transaction), self.deviceIDs(transaction))
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 242, in <lambda>
return map(lambda x: self.configuration(x, transaction), self.deviceIDs(transaction))
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 249, in configuration
configDict = self.getDeviceConfiguration(devid, transaction)
File "/usr/lib64/python2.6/site-packages/xen/xend/server/blkif.py", line 160, in getDeviceConfiguration
'bootable')
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 447, in readBackendTxn
raise VmError("Device %s not connected" % devid)
VmError: Device 5632 not connected
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp.hvm'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:22:39 3209] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:22:39 3209] DEBUG (XendDomain:464) Adding Domain: 8
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 8 256
[2010-07-24 18:22:39 3209] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:22:39 3209] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:22:39 3209] INFO (image:822) Need to create platform device.[domid:8]
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:22:39 3209] INFO (image:182) buildDomain os=hvm dom=8 vcpus=1
[2010-07-24 18:22:39 3209] DEBUG (image:949) domid = 8
[2010-07-24 18:22:39 3209] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:22:39 3209] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:22:39 3209] DEBUG (image:952) memsize = 512
[2010-07-24 18:22:39 3209] DEBUG (image:953) target = 512
[2010-07-24 18:22:39 3209] DEBUG (image:954) vcpus = 1
[2010-07-24 18:22:39 3209] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:22:39 3209] DEBUG (image:956) acpi = 1
[2010-07-24 18:22:39 3209] DEBUG (image:957) apic = 1
[2010-07-24 18:22:39 3209] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '49bc38c9-1112-94c3-8095-08231e25dae0'}
[2010-07-24 18:22:39 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/8/0'} to /local/domain/8/device/vfb/0.
[2010-07-24 18:22:39 3209] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp.hvm', 'frontend': '/local/domain/8/device/vfb/0', 'uuid': '49bc38c9-1112-94c3-8095-08231e25dae0', 'frontend-id': '8', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/8/0.
[2010-07-24 18:22:39 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '6f533ae3-cadd-5524-b32d-f90186f1c225', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:22:39 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/8/768'} to /local/domain/8/device/vbd/768.
[2010-07-24 18:22:39 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/8/device/vbd/768', 'uuid': '6f533ae3-cadd-5524-b32d-f90186f1c225', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '8', 'type': 'file'} to /local/domain/0/backend/vbd/8/768.
[2010-07-24 18:22:39 3209] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'ab3044b5-e585-c966-16ec-d802b22ae900', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:22:39 3209] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/8/5632'} to /local/domain/8/device/vbd/5632.
[2010-07-24 18:22:39 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/8/device/vbd/5632', 'uuid': 'ab3044b5-e585-c966-16ec-d802b22ae900', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '8', 'type': ''} to /local/domain/0/backend/vbd/8/5632.
[2010-07-24 18:22:39 3209] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:03:66:ec', 'type': 'ioemu', 'uuid': '5e3e90ef-4d00-46e8-0d57-44d529fcb85c'}
[2010-07-24 18:22:39 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/8/0'} to /local/domain/8/device/vif/0.
[2010-07-24 18:22:39 3209] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp.hvm', 'handle': '0', 'uuid': '5e3e90ef-4d00-46e8-0d57-44d529fcb85c', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:03:66:ec', 'frontend-id': '8', 'state': '1', 'online': '1', 'frontend': '/local/domain/8/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/8/0.
[2010-07-24 18:22:39 3209] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '8', '-domain-name', 'winxp.hvm', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:03:66:ec,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap8.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:22:39 3209] INFO (image:467) device model pid: 29049
[2010-07-24 18:22:39 3209] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '50ad5188-ca26-92da-02c5-b665ab5a54b1', 'on_reboot': 'restart', 'start_time': '1280020959.63', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp.hvm'}
[2010-07-24 18:22:39 3209] WARNING (image:552) domain winxp.hvm: device model failure: pid 29049: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.hvm.log
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/50ad5188-ca26-92da-02c5-b665ab5a54b1', 'domid': '8', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp.hvm'}
[2010-07-24 18:22:39 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=8.
[2010-07-24 18:22:39 3209] ERROR (XendDomainInfo:2205) VM winxp.hvm restarting too fast (Elapsed time: 0.064964 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=8
[2010-07-24 18:22:39 3209] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/8/0'} to /local/domain/8/device/console/0.
[2010-07-24 18:22:39 3209] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/8/device/console/0', 'uuid': '0b30713b-524c-6063-4ea1-1cf617e33a43', 'frontend-id': '8', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/8/0.
[2010-07-24 18:22:39 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=8.
[2010-07-24 18:22:39 3209] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=8.
[2010-07-24 18:22:39 3209] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:22:40 3209] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:25:39 3209] DEBUG (SrvServer:76) SrvServer.cleanup()
[2010-07-24 18:25:39 3209] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-24 18:25:39 3209] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-24 18:25:39 3209] DEBUG (XendDomain:632) cleanup_domains
[2010-07-24 18:25:39 3207] INFO (SrvDaemon:220) Xend exited with status 0.
[2010-07-24 18:26:02 29473] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-24 18:26:02 29473] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-24 18:26:03 29473] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 2648250395753L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-24 18:26:03 29473] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-24 18:26:03 29473] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-24 18:26:03 29473] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-24 18:26:03 29473] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-24 18:26:03 29473] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-24 18:26:03 29473] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-24 18:26:03 29473] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp.hvm'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:27:33 29473] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:27:33 29473] DEBUG (XendDomain:464) Adding Domain: 9
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 9 256
[2010-07-24 18:27:33 29473] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:27:33 29473] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:27:33 29473] INFO (image:822) Need to create platform device.[domid:9]
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:27:33 29473] INFO (image:182) buildDomain os=hvm dom=9 vcpus=1
[2010-07-24 18:27:33 29473] DEBUG (image:949) domid = 9
[2010-07-24 18:27:33 29473] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:27:33 29473] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:27:33 29473] DEBUG (image:952) memsize = 512
[2010-07-24 18:27:33 29473] DEBUG (image:953) target = 512
[2010-07-24 18:27:33 29473] DEBUG (image:954) vcpus = 1
[2010-07-24 18:27:33 29473] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:27:33 29473] DEBUG (image:956) acpi = 1
[2010-07-24 18:27:33 29473] DEBUG (image:957) apic = 1
[2010-07-24 18:27:33 29473] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '1e8d46de-3211-cf62-c62b-eee0a5c97c52'}
[2010-07-24 18:27:33 29473] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/9/0'} to /local/domain/9/device/vfb/0.
[2010-07-24 18:27:33 29473] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp.hvm', 'frontend': '/local/domain/9/device/vfb/0', 'uuid': '1e8d46de-3211-cf62-c62b-eee0a5c97c52', 'frontend-id': '9', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/9/0.
[2010-07-24 18:27:33 29473] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'bdb08361-0314-6ec2-3af1-1fe1467150ca', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:27:33 29473] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/9/768'} to /local/domain/9/device/vbd/768.
[2010-07-24 18:27:33 29473] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/9/device/vbd/768', 'uuid': 'bdb08361-0314-6ec2-3af1-1fe1467150ca', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '9', 'type': 'file'} to /local/domain/0/backend/vbd/9/768.
[2010-07-24 18:27:33 29473] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'e9052826-71d9-acb7-4427-79d5eebc168f', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:27:33 29473] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/9/5632'} to /local/domain/9/device/vbd/5632.
[2010-07-24 18:27:33 29473] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/9/device/vbd/5632', 'uuid': 'e9052826-71d9-acb7-4427-79d5eebc168f', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '9', 'type': ''} to /local/domain/0/backend/vbd/9/5632.
[2010-07-24 18:27:33 29473] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:79:fc:2b', 'type': 'ioemu', 'uuid': '37604223-0c54-b58e-8447-8cb5739bca31'}
[2010-07-24 18:27:33 29473] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/9/0'} to /local/domain/9/device/vif/0.
[2010-07-24 18:27:33 29473] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp.hvm', 'handle': '0', 'uuid': '37604223-0c54-b58e-8447-8cb5739bca31', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:79:fc:2b', 'frontend-id': '9', 'state': '1', 'online': '1', 'frontend': '/local/domain/9/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/9/0.
[2010-07-24 18:27:33 29473] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '9', '-domain-name', 'winxp.hvm', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:79:fc:2b,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap9.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:27:33 29473] INFO (image:467) device model pid: 29605
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '56370695-78e6-1b27-ddb1-ad7171de5b0c', 'on_reboot': 'restart', 'start_time': '1280021253.65', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp.hvm'}
[2010-07-24 18:27:33 29473] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:27:33 29473] WARNING (image:552) domain winxp.hvm: device model failure: pid 29605: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.hvm.log
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/56370695-78e6-1b27-ddb1-ad7171de5b0c', 'domid': '9', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp.hvm'}
[2010-07-24 18:27:33 29473] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=9.
[2010-07-24 18:27:33 29473] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/9/0'} to /local/domain/9/device/console/0.
[2010-07-24 18:27:33 29473] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/9/device/console/0', 'uuid': '598a91c6-d2f0-3bc4-bbeb-caa3b0bff5a9', 'frontend-id': '9', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/9/0.
[2010-07-24 18:27:33 29473] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=9.
[2010-07-24 18:27:33 29473] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=9.
[2010-07-24 18:27:33 29473] ERROR (XendDomainInfo:2205) VM winxp.hvm restarting too fast (Elapsed time: 0.111109 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:27:33 29473] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=9
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:27:34 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:31:37 29473] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp.hvm'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthVlKTJ2'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:31:37 29473] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:31:37 29473] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:31:37 29473] DEBUG (XendDomain:464) Adding Domain: 10
[2010-07-24 18:31:37 29473] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 10 256
[2010-07-24 18:31:37 29473] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:31:37 29473] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:31:37 29473] INFO (image:822) Need to create platform device.[domid:10]
[2010-07-24 18:31:37 29473] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:31:37 29473] INFO (image:182) buildDomain os=hvm dom=10 vcpus=1
[2010-07-24 18:31:37 29473] DEBUG (image:949) domid = 10
[2010-07-24 18:31:37 29473] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:31:37 29473] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:31:37 29473] DEBUG (image:952) memsize = 512
[2010-07-24 18:31:37 29473] DEBUG (image:953) target = 512
[2010-07-24 18:31:37 29473] DEBUG (image:954) vcpus = 1
[2010-07-24 18:31:37 29473] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:31:37 29473] DEBUG (image:956) acpi = 1
[2010-07-24 18:31:37 29473] DEBUG (image:957) apic = 1
[2010-07-24 18:31:37 29473] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '324ff793-8afb-15d0-ac28-dce092b730b7'}
[2010-07-24 18:31:37 29473] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/10/0'} to /local/domain/10/device/vfb/0.
[2010-07-24 18:31:37 29473] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp.hvm', 'frontend': '/local/domain/10/device/vfb/0', 'uuid': '324ff793-8afb-15d0-ac28-dce092b730b7', 'frontend-id': '10', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/10/0.
[2010-07-24 18:31:37 29473] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'b5972714-5573-fd75-57ce-521ec741e81e', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:31:37 29473] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/10/768'} to /local/domain/10/device/vbd/768.
[2010-07-24 18:31:37 29473] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/10/device/vbd/768', 'uuid': 'b5972714-5573-fd75-57ce-521ec741e81e', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '10', 'type': 'file'} to /local/domain/0/backend/vbd/10/768.
[2010-07-24 18:31:37 29473] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '55c3a459-fa54-e155-2181-d14e853d7a9d', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:31:37 29473] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/10/5632'} to /local/domain/10/device/vbd/5632.
[2010-07-24 18:31:37 29473] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/10/device/vbd/5632', 'uuid': '55c3a459-fa54-e155-2181-d14e853d7a9d', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '10', 'type': ''} to /local/domain/0/backend/vbd/10/5632.
[2010-07-24 18:31:37 29473] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:5f:5d:cb', 'type': 'ioemu', 'uuid': '0af894d2-9914-27f7-31fa-3add544d9d33'}
[2010-07-24 18:31:37 29473] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/10/0'} to /local/domain/10/device/vif/0.
[2010-07-24 18:31:37 29473] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp.hvm', 'handle': '0', 'uuid': '0af894d2-9914-27f7-31fa-3add544d9d33', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:5f:5d:cb', 'frontend-id': '10', 'state': '1', 'online': '1', 'frontend': '/local/domain/10/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/10/0.
[2010-07-24 18:31:37 29473] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '10', '-domain-name', 'winxp.hvm', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:5f:5d:cb,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap10.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:31:37 29473] INFO (image:467) device model pid: 30257
[2010-07-24 18:31:37 29473] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:31:37 29473] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'fedeb74d-d0e8-2fef-1d03-0538aab79b14', 'on_reboot': 'restart', 'start_time': '1280021497.69', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthVlKTJ2) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp.hvm'}
[2010-07-24 18:31:37 29473] WARNING (image:552) domain winxp.hvm: device model failure: pid 30257: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.hvm.log
[2010-07-24 18:31:37 29473] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/fedeb74d-d0e8-2fef-1d03-0538aab79b14', 'domid': '10', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp.hvm'}
[2010-07-24 18:31:38 29473] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=10.
[2010-07-24 18:31:38 29473] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/10/0'} to /local/domain/10/device/console/0.
[2010-07-24 18:31:38 29473] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/10/device/console/0', 'uuid': 'e1c3600a-10c0-6ed2-2ad9-f8b235bf42be', 'frontend-id': '10', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/10/0.
[2010-07-24 18:31:38 29473] ERROR (XendDomainInfo:2205) VM winxp.hvm restarting too fast (Elapsed time: 0.404206 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=10
[2010-07-24 18:31:38 29473] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=10.
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:31:38 29473] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:32:43 29473] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-24 18:35:08 3203] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-24 18:35:08 3203] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-24 18:35:09 3203] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 29618563364L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-24 18:35:09 3203] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-24 18:35:09 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-24 18:35:09 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-24 18:35:09 3203] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-24 18:35:09 3203] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-24 18:35:09 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-24 18:35:09 3203] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-24 18:35:09 3203] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-24 18:35:09 3203] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-24 18:35:29 3203] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp.hvm'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthh4GUKG'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-24 18:35:29 3203] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:35:29 3203] DEBUG (balloon:220) Balloon: 997112 KiB free; need 16384; done.
[2010-07-24 18:35:30 3203] DEBUG (XendDomain:464) Adding Domain: 1
[2010-07-24 18:35:30 3203] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 1 256
[2010-07-24 18:35:30 3203] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:35:30 3203] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:35:30 3203] INFO (image:822) Need to create platform device.[domid:1]
[2010-07-24 18:35:30 3203] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:35:30 3203] INFO (image:182) buildDomain os=hvm dom=1 vcpus=1
[2010-07-24 18:35:30 3203] DEBUG (image:949) domid = 1
[2010-07-24 18:35:30 3203] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:35:30 3203] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:35:30 3203] DEBUG (image:952) memsize = 512
[2010-07-24 18:35:30 3203] DEBUG (image:953) target = 512
[2010-07-24 18:35:30 3203] DEBUG (image:954) vcpus = 1
[2010-07-24 18:35:30 3203] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:35:30 3203] DEBUG (image:956) acpi = 1
[2010-07-24 18:35:30 3203] DEBUG (image:957) apic = 1
[2010-07-24 18:35:30 3203] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '3dbdc28d-ade0-50de-5956-86b2bffb34cd'}
[2010-07-24 18:35:30 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/1/0'} to /local/domain/1/device/vfb/0.
[2010-07-24 18:35:30 3203] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp.hvm', 'frontend': '/local/domain/1/device/vfb/0', 'uuid': '3dbdc28d-ade0-50de-5956-86b2bffb34cd', 'frontend-id': '1', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/1/0.
[2010-07-24 18:35:30 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4dce4808-388b-3c25-0ab6-f496512c43b9', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:35:30 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/768'} to /local/domain/1/device/vbd/768.
[2010-07-24 18:35:30 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/1/device/vbd/768', 'uuid': '4dce4808-388b-3c25-0ab6-f496512c43b9', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/768.
[2010-07-24 18:35:30 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '03e6cda8-4018-8b78-336d-663e7af7cca4', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:35:30 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/5632'} to /local/domain/1/device/vbd/5632.
[2010-07-24 18:35:30 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/1/device/vbd/5632', 'uuid': '03e6cda8-4018-8b78-336d-663e7af7cca4', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '1', 'type': ''} to /local/domain/0/backend/vbd/1/5632.
[2010-07-24 18:35:30 3203] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:19:5e:81', 'type': 'ioemu', 'uuid': 'df091acb-bece-4cb2-6a82-97b2dd39926d'}
[2010-07-24 18:35:30 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/1/0'} to /local/domain/1/device/vif/0.
[2010-07-24 18:35:30 3203] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'winxp.hvm', 'handle': '0', 'uuid': 'df091acb-bece-4cb2-6a82-97b2dd39926d', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:19:5e:81', 'frontend-id': '1', 'state': '1', 'online': '1', 'frontend': '/local/domain/1/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/1/0.
[2010-07-24 18:35:30 3203] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '1', '-domain-name', 'winxp.hvm', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:19:5e:81,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap1.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-24 18:35:30 3203] INFO (image:467) device model pid: 3320
[2010-07-24 18:35:30 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '10387cad-a6d6-fff1-0440-8e1cc9b9b5c2', 'on_reboot': 'restart', 'start_time': '1280021730.51', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthh4GUKG) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp.hvm'}
[2010-07-24 18:35:30 3203] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:35:30 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/10387cad-a6d6-fff1-0440-8e1cc9b9b5c2', 'domid': '1', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp.hvm'}
[2010-07-24 18:35:30 3203] WARNING (image:552) domain winxp.hvm: device model failure: pid 3320: exited with nonzero status 1; see /var/log/xen/qemu-dm-winxp.hvm.log
[2010-07-24 18:35:30 3203] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=1.
[2010-07-24 18:35:30 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/1/0'} to /local/domain/1/device/console/0.
[2010-07-24 18:35:30 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp.hvm', 'frontend': '/local/domain/1/device/console/0', 'uuid': '3711da30-0bb5-ac78-5f09-771d187efc74', 'frontend-id': '1', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/1/0.
[2010-07-24 18:35:31 3203] ERROR (XendDomainInfo:2205) VM winxp.hvm restarting too fast (Elapsed time: 0.824153 seconds). Refusing to restart to avoid loops.
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-07-24 18:35:31 3203] WARNING (XendDomainInfo:2071) Domain has crashed: name=winxp.hvm id=1.
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:35:31 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:35:32 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:35:32 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:35:32 3203] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:35:32 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthh4GUKG'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:45:06 3203] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-24 18:45:06 3203] DEBUG (XendDomain:464) Adding Domain: 2
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 2 256
[2010-07-24 18:45:06 3203] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:45:06 3203] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:45:06 3203] INFO (image:822) Need to create platform device.[domid:2]
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:45:06 3203] INFO (image:182) buildDomain os=hvm dom=2 vcpus=1
[2010-07-24 18:45:06 3203] DEBUG (image:949) domid = 2
[2010-07-24 18:45:06 3203] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:45:06 3203] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:45:06 3203] DEBUG (image:952) memsize = 512
[2010-07-24 18:45:06 3203] DEBUG (image:953) target = 512
[2010-07-24 18:45:06 3203] DEBUG (image:954) vcpus = 1
[2010-07-24 18:45:06 3203] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:45:06 3203] DEBUG (image:956) acpi = 1
[2010-07-24 18:45:06 3203] DEBUG (image:957) apic = 1
[2010-07-24 18:45:06 3203] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '9d5cef3c-9907-5cee-e5f6-6ca4f224992a'}
[2010-07-24 18:45:06 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/2/0'} to /local/domain/2/device/vfb/0.
[2010-07-24 18:45:06 3203] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp', 'frontend': '/local/domain/2/device/vfb/0', 'uuid': '9d5cef3c-9907-5cee-e5f6-6ca4f224992a', 'frontend-id': '2', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/2/0.
[2010-07-24 18:45:06 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a4931ce4-a6a4-8933-df7c-a9d87dfa2f9c', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:45:06 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/768'} to /local/domain/2/device/vbd/768.
[2010-07-24 18:45:06 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/2/device/vbd/768', 'uuid': 'a4931ce4-a6a4-8933-df7c-a9d87dfa2f9c', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '2', 'type': 'file'} to /local/domain/0/backend/vbd/2/768.
[2010-07-24 18:45:06 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'db31bb7f-1c9e-e409-34e0-021e608f7c32', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:45:06 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/5632'} to /local/domain/2/device/vbd/5632.
[2010-07-24 18:45:06 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/2/device/vbd/5632', 'uuid': 'db31bb7f-1c9e-e409-34e0-021e608f7c32', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '2', 'type': ''} to /local/domain/0/backend/vbd/2/5632.
[2010-07-24 18:45:06 3203] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '2', '-domain-name', 'winxp', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-24 18:45:06 3203] INFO (image:467) device model pid: 3777
[2010-07-24 18:45:06 3203] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '1d14c58b-70e8-bfde-671a-2cf980d563f8', 'on_reboot': 'restart', 'start_time': '1280022306.65', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthh4GUKG) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp'}
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/1d14c58b-70e8-bfde-671a-2cf980d563f8', 'domid': '2', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp'}
[2010-07-24 18:45:06 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/2/0'} to /local/domain/2/device/console/0.
[2010-07-24 18:45:06 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/2/device/console/0', 'uuid': '95f796e9-570f-0944-1047-633ece875b5f', 'frontend-id': '2', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/2/0.
[2010-07-24 18:45:06 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices console.
[2010-07-24 18:45:07 3203] DEBUG (DevController:144) Waiting for 0.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-24 18:45:07 3203] DEBUG (DevController:144) Waiting for 768.
[2010-07-24 18:45:07 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/2/768/hotplug-status.
[2010-07-24 18:45:07 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:45:07 3203] DEBUG (DevController:144) Waiting for 5632.
[2010-07-24 18:45:07 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/2/5632/hotplug-status.
[2010-07-24 18:45:07 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/2/5632/hotplug-status.
[2010-07-24 18:45:07 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-24 18:45:07 3203] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-24 18:45:07 3203] INFO (XendDomain:1206) Domain winxp (2) unpaused.
[2010-07-24 18:45:43 3203] INFO (XendDomainInfo:2088) Domain has shutdown: name=winxp id=2 reason=poweroff.
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=2
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:45:43 3203] INFO (image:615) winxp device model terminated
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:45:43 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthh4GUKG'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:48:04 3203] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-24 18:48:04 3203] DEBUG (XendDomain:464) Adding Domain: 3
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 3 256
[2010-07-24 18:48:04 3203] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:48:04 3203] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:48:04 3203] INFO (image:822) Need to create platform device.[domid:3]
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:48:04 3203] INFO (image:182) buildDomain os=hvm dom=3 vcpus=1
[2010-07-24 18:48:04 3203] DEBUG (image:949) domid = 3
[2010-07-24 18:48:04 3203] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:48:04 3203] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:48:04 3203] DEBUG (image:952) memsize = 512
[2010-07-24 18:48:04 3203] DEBUG (image:953) target = 512
[2010-07-24 18:48:04 3203] DEBUG (image:954) vcpus = 1
[2010-07-24 18:48:04 3203] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:48:04 3203] DEBUG (image:956) acpi = 1
[2010-07-24 18:48:04 3203] DEBUG (image:957) apic = 1
[2010-07-24 18:48:04 3203] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '3ee7bceb-e277-6159-e3d1-760c3b5e9265'}
[2010-07-24 18:48:04 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/3/0'} to /local/domain/3/device/vfb/0.
[2010-07-24 18:48:04 3203] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp', 'frontend': '/local/domain/3/device/vfb/0', 'uuid': '3ee7bceb-e277-6159-e3d1-760c3b5e9265', 'frontend-id': '3', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/3/0.
[2010-07-24 18:48:04 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '239de3c9-b715-7afe-420d-ede19e43282f', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:48:04 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/768'} to /local/domain/3/device/vbd/768.
[2010-07-24 18:48:04 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/3/device/vbd/768', 'uuid': '239de3c9-b715-7afe-420d-ede19e43282f', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '3', 'type': 'file'} to /local/domain/0/backend/vbd/3/768.
[2010-07-24 18:48:04 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '8068be89-a4b3-db98-3c0f-d7f1e55e2754', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:48:04 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/5632'} to /local/domain/3/device/vbd/5632.
[2010-07-24 18:48:04 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/3/device/vbd/5632', 'uuid': '8068be89-a4b3-db98-3c0f-d7f1e55e2754', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '3', 'type': ''} to /local/domain/0/backend/vbd/3/5632.
[2010-07-24 18:48:04 3203] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '3', '-domain-name', 'winxp', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-24 18:48:04 3203] INFO (image:467) device model pid: 4097
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'd14b4ec9-ee97-3417-ce54-129f7ef0b2d7', 'on_reboot': 'restart', 'start_time': '1280022484.4', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthh4GUKG) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp'}
[2010-07-24 18:48:04 3203] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/d14b4ec9-ee97-3417-ce54-129f7ef0b2d7', 'domid': '3', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp'}
[2010-07-24 18:48:04 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/3/0'} to /local/domain/3/device/console/0.
[2010-07-24 18:48:04 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/3/device/console/0', 'uuid': '0a6ff2c9-7cee-1fc5-e40b-0c955b03b223', 'frontend-id': '3', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/3/0.
[2010-07-24 18:48:04 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices console.
[2010-07-24 18:48:04 3203] DEBUG (DevController:144) Waiting for 0.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-24 18:48:04 3203] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-24 18:48:05 3203] DEBUG (DevController:144) Waiting for 768.
[2010-07-24 18:48:05 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/3/768/hotplug-status.
[2010-07-24 18:48:05 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:48:05 3203] DEBUG (DevController:144) Waiting for 5632.
[2010-07-24 18:48:05 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/3/5632/hotplug-status.
[2010-07-24 18:48:05 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:48:05 3203] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-24 18:48:05 3203] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-24 18:48:05 3203] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-24 18:48:05 3203] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-24 18:48:05 3203] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-24 18:48:05 3203] INFO (XendDomain:1206) Domain winxp (3) unpaused.
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:48:35 3203] INFO (XendDomainInfo:536) HVM save:remote shutdown dom 3!
[2010-07-24 18:48:35 3203] INFO (XendDomainInfo:2088) Domain has shutdown: name=winxp id=3 reason=poweroff.
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=3
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:48:35 3203] INFO (image:615) winxp device model terminated
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2416) No device model
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:48:35 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:48:38 3203] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'winxp'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthh4GUKG'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/etc/xen/winxp.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-24 18:48:38 3203] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-24 18:48:38 3203] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-24 18:48:38 3203] DEBUG (XendDomain:464) Adding Domain: 4
[2010-07-24 18:48:38 3203] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 4 256
[2010-07-24 18:48:38 3203] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: boot, val: dc
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: fda, val: None
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: fdb, val: None
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: soundhw, val: None
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: localtime, val: 0
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: std-vga, val: 0
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: isa, val: 0
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: acpi, val: 1
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: usb, val: 0
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: usbdevice, val: None
[2010-07-24 18:48:38 3203] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-24 18:48:38 3203] INFO (image:822) Need to create platform device.[domid:4]
[2010-07-24 18:48:38 3203] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-24 18:48:38 3203] INFO (image:182) buildDomain os=hvm dom=4 vcpus=1
[2010-07-24 18:48:38 3203] DEBUG (image:949) domid = 4
[2010-07-24 18:48:38 3203] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-24 18:48:38 3203] DEBUG (image:951) store_evtchn = 2
[2010-07-24 18:48:38 3203] DEBUG (image:952) memsize = 512
[2010-07-24 18:48:38 3203] DEBUG (image:953) target = 512
[2010-07-24 18:48:38 3203] DEBUG (image:954) vcpus = 1
[2010-07-24 18:48:38 3203] DEBUG (image:955) vcpu_avail = 1
[2010-07-24 18:48:38 3203] DEBUG (image:956) acpi = 1
[2010-07-24 18:48:38 3203] DEBUG (image:957) apic = 1
[2010-07-24 18:48:38 3203] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'fade8a88-5450-4668-f75e-d8c4d6ae9457'}
[2010-07-24 18:48:38 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/4/0'} to /local/domain/4/device/vfb/0.
[2010-07-24 18:48:38 3203] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'winxp', 'frontend': '/local/domain/4/device/vfb/0', 'uuid': 'fade8a88-5450-4668-f75e-d8c4d6ae9457', 'frontend-id': '4', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/4/0.
[2010-07-24 18:48:38 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '29ddfdaf-54a2-6579-16a5-4a39526fa2b2', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/etc/xen/winxp.img', 'mode': 'w'}
[2010-07-24 18:48:38 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/768'} to /local/domain/4/device/vbd/768.
[2010-07-24 18:48:38 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/4/device/vbd/768', 'uuid': '29ddfdaf-54a2-6579-16a5-4a39526fa2b2', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/etc/xen/winxp.img', 'mode': 'w', 'online': '1', 'frontend-id': '4', 'type': 'file'} to /local/domain/0/backend/vbd/4/768.
[2010-07-24 18:48:38 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '7a986dbc-1d37-6ea8-8474-4db45c55a1cf', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-24 18:48:38 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/5632'} to /local/domain/4/device/vbd/5632.
[2010-07-24 18:48:38 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/4/device/vbd/5632', 'uuid': '7a986dbc-1d37-6ea8-8474-4db45c55a1cf', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '4', 'type': ''} to /local/domain/0/backend/vbd/4/5632.
[2010-07-24 18:48:39 3203] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '4', '-domain-name', 'winxp', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-24 18:48:39 3203] INFO (image:467) device model pid: 4353
[2010-07-24 18:48:39 3203] INFO (image:590) waiting for sentinel_fifo
[2010-07-24 18:48:39 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '62e1c3a6-03c3-2c5f-ee14-3a336cc1fdbb', 'on_reboot': 'restart', 'start_time': '1280022519.02', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthh4GUKG) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'winxp'}
[2010-07-24 18:48:39 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/62e1c3a6-03c3-2c5f-ee14-3a336cc1fdbb', 'domid': '4', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'winxp'}
[2010-07-24 18:48:39 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/4/0'} to /local/domain/4/device/console/0.
[2010-07-24 18:48:39 3203] DEBUG (DevController:97) DevController: writing {'domain': 'winxp', 'frontend': '/local/domain/4/device/console/0', 'uuid': '91f7ec22-2b2b-4c12-0704-879b889774dc', 'frontend-id': '4', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/4/0.
[2010-07-24 18:48:39 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices console.
[2010-07-24 18:48:39 3203] DEBUG (DevController:144) Waiting for 0.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-24 18:48:39 3203] DEBUG (DevController:144) Waiting for 768.
[2010-07-24 18:48:39 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/768/hotplug-status.
[2010-07-24 18:48:39 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:48:39 3203] DEBUG (DevController:144) Waiting for 5632.
[2010-07-24 18:48:39 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/5632/hotplug-status.
[2010-07-24 18:48:39 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-24 18:48:39 3203] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-24 18:48:39 3203] INFO (XendDomain:1206) Domain winxp (4) unpaused.
[2010-07-24 18:49:15 3203] INFO (XendDomainInfo:2088) Domain has shutdown: name=winxp id=4 reason=poweroff.
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=4
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-24 18:49:15 3203] INFO (image:615) winxp device model terminated
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-24 18:49:15 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-24 18:53:35 3203] DEBUG (XendDomainInfo:2416) No device model
[2010-07-24 18:53:35 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-25 12:05:45 3203] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc11x64'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthh4GUKG'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/fc11x64.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-25 12:05:46 3203] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-25 12:05:46 3203] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-25 12:05:46 3203] DEBUG (XendDomain:464) Adding Domain: 5
[2010-07-25 12:05:46 3203] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 5 256
[2010-07-25 12:05:46 3203] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: boot, val: dc
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: fda, val: None
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: fdb, val: None
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: soundhw, val: None
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: localtime, val: 0
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: std-vga, val: 0
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: isa, val: 0
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: acpi, val: 1
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: usb, val: 0
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: usbdevice, val: None
[2010-07-25 12:05:46 3203] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-25 12:05:46 3203] INFO (image:822) Need to create platform device.[domid:5]
[2010-07-25 12:05:46 3203] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-25 12:05:46 3203] INFO (image:182) buildDomain os=hvm dom=5 vcpus=1
[2010-07-25 12:05:46 3203] DEBUG (image:949) domid = 5
[2010-07-25 12:05:46 3203] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-25 12:05:46 3203] DEBUG (image:951) store_evtchn = 2
[2010-07-25 12:05:46 3203] DEBUG (image:952) memsize = 512
[2010-07-25 12:05:46 3203] DEBUG (image:953) target = 512
[2010-07-25 12:05:46 3203] DEBUG (image:954) vcpus = 1
[2010-07-25 12:05:46 3203] DEBUG (image:955) vcpu_avail = 1
[2010-07-25 12:05:46 3203] DEBUG (image:956) acpi = 1
[2010-07-25 12:05:46 3203] DEBUG (image:957) apic = 1
[2010-07-25 12:05:46 3203] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '7c9197d5-be4c-9b0b-ac6a-61570f43d114'}
[2010-07-25 12:05:46 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/5/0'} to /local/domain/5/device/vfb/0.
[2010-07-25 12:05:46 3203] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'fc11x64', 'frontend': '/local/domain/5/device/vfb/0', 'uuid': '7c9197d5-be4c-9b0b-ac6a-61570f43d114', 'frontend-id': '5', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/5/0.
[2010-07-25 12:05:46 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '3f394010-5c6b-7348-2529-d684c9f8642e', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/fc11x64.img', 'mode': 'w'}
[2010-07-25 12:05:46 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/5/768'} to /local/domain/5/device/vbd/768.
[2010-07-25 12:05:46 3203] DEBUG (DevController:97) DevController: writing {'domain': 'fc11x64', 'frontend': '/local/domain/5/device/vbd/768', 'uuid': '3f394010-5c6b-7348-2529-d684c9f8642e', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/fc11x64.img', 'mode': 'w', 'online': '1', 'frontend-id': '5', 'type': 'file'} to /local/domain/0/backend/vbd/5/768.
[2010-07-25 12:05:46 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'eb0c5059-7a07-e1ae-9b03-df1a814952a7', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-25 12:05:46 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/5/5632'} to /local/domain/5/device/vbd/5632.
[2010-07-25 12:05:46 3203] DEBUG (DevController:97) DevController: writing {'domain': 'fc11x64', 'frontend': '/local/domain/5/device/vbd/5632', 'uuid': 'eb0c5059-7a07-e1ae-9b03-df1a814952a7', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '5', 'type': ''} to /local/domain/0/backend/vbd/5/5632.
[2010-07-25 12:05:46 3203] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '5', '-domain-name', 'fc11x64', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-25 12:05:46 3203] INFO (image:467) device model pid: 14855
[2010-07-25 12:05:46 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '630ade99-75fd-feb8-26b3-e3965a63a44d', 'on_reboot': 'restart', 'start_time': '1280084746.29', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthh4GUKG) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'fc11x64'}
[2010-07-25 12:05:46 3203] INFO (image:590) waiting for sentinel_fifo
[2010-07-25 12:05:46 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/630ade99-75fd-feb8-26b3-e3965a63a44d', 'domid': '5', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'fc11x64'}
[2010-07-25 12:05:46 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/5/0'} to /local/domain/5/device/console/0.
[2010-07-25 12:05:46 3203] DEBUG (DevController:97) DevController: writing {'domain': 'fc11x64', 'frontend': '/local/domain/5/device/console/0', 'uuid': '5637ce8f-03e2-4a2f-27bf-e8a82abd883b', 'frontend-id': '5', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/5/0.
[2010-07-25 12:05:46 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices console.
[2010-07-25 12:05:46 3203] DEBUG (DevController:144) Waiting for 0.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-25 12:05:46 3203] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-25 12:05:46 3203] DEBUG (DevController:144) Waiting for 768.
[2010-07-25 12:05:46 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/768/hotplug-status.
[2010-07-25 12:05:46 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-25 12:05:46 3203] DEBUG (DevController:144) Waiting for 5632.
[2010-07-25 12:05:46 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/5632/hotplug-status.
[2010-07-25 12:05:47 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/5632/hotplug-status.
[2010-07-25 12:05:47 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-25 12:05:47 3203] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-25 12:05:47 3203] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-25 12:05:47 3203] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-25 12:05:47 3203] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-25 12:05:47 3203] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-25 12:05:47 3203] INFO (XendDomain:1206) Domain fc11x64 (5) unpaused.
[2010-07-25 12:06:23 3203] INFO (XendDomainInfo:2088) Domain has shutdown: name=fc11x64 id=5 reason=poweroff.
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=5
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-25 12:06:23 3203] INFO (image:615) fc11x64 device model terminated
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-25 12:06:23 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-25 12:07:10 3203] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc11x64'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthh4GUKG'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/fc11x64.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', ''], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-25 12:07:10 3203] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-25 12:07:10 3203] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-25 12:07:10 3203] DEBUG (XendDomain:464) Adding Domain: 6
[2010-07-25 12:07:10 3203] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 6 256
[2010-07-25 12:07:10 3203] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: boot, val: dc
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: fda, val: None
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: fdb, val: None
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: soundhw, val: None
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: localtime, val: 0
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: std-vga, val: 0
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: isa, val: 0
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: acpi, val: 1
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: usb, val: 0
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: usbdevice, val: None
[2010-07-25 12:07:10 3203] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-25 12:07:10 3203] INFO (image:822) Need to create platform device.[domid:6]
[2010-07-25 12:07:11 3203] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-25 12:07:11 3203] INFO (image:182) buildDomain os=hvm dom=6 vcpus=1
[2010-07-25 12:07:11 3203] DEBUG (image:949) domid = 6
[2010-07-25 12:07:11 3203] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-25 12:07:11 3203] DEBUG (image:951) store_evtchn = 2
[2010-07-25 12:07:11 3203] DEBUG (image:952) memsize = 512
[2010-07-25 12:07:11 3203] DEBUG (image:953) target = 512
[2010-07-25 12:07:11 3203] DEBUG (image:954) vcpus = 1
[2010-07-25 12:07:11 3203] DEBUG (image:955) vcpu_avail = 1
[2010-07-25 12:07:11 3203] DEBUG (image:956) acpi = 1
[2010-07-25 12:07:11 3203] DEBUG (image:957) apic = 1
[2010-07-25 12:07:11 3203] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'e6bbc6a8-991b-5dd3-5c7b-07b24b694250'}
[2010-07-25 12:07:11 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/6/0'} to /local/domain/6/device/vfb/0.
[2010-07-25 12:07:11 3203] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'fc11x64', 'frontend': '/local/domain/6/device/vfb/0', 'uuid': 'e6bbc6a8-991b-5dd3-5c7b-07b24b694250', 'frontend-id': '6', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/6/0.
[2010-07-25 12:07:11 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '28c1da60-fcc2-6043-7f70-a2beed2d0833', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/fc11x64.img', 'mode': 'w'}
[2010-07-25 12:07:11 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/768'} to /local/domain/6/device/vbd/768.
[2010-07-25 12:07:11 3203] DEBUG (DevController:97) DevController: writing {'domain': 'fc11x64', 'frontend': '/local/domain/6/device/vbd/768', 'uuid': '28c1da60-fcc2-6043-7f70-a2beed2d0833', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/fc11x64.img', 'mode': 'w', 'online': '1', 'frontend-id': '6', 'type': 'file'} to /local/domain/0/backend/vbd/6/768.
[2010-07-25 12:07:11 3203] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '0dc3a237-6f3c-d187-117a-40dff9b9847d', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': '', 'mode': 'r'}
[2010-07-25 12:07:11 3203] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/5632'} to /local/domain/6/device/vbd/5632.
[2010-07-25 12:07:11 3203] DEBUG (DevController:97) DevController: writing {'domain': 'fc11x64', 'frontend': '/local/domain/6/device/vbd/5632', 'uuid': '0dc3a237-6f3c-d187-117a-40dff9b9847d', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '', 'mode': 'r', 'online': '1', 'frontend-id': '6', 'type': ''} to /local/domain/0/backend/vbd/6/5632.
[2010-07-25 12:07:11 3203] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '6', '-domain-name', 'fc11x64', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-25 12:07:11 3203] INFO (image:467) device model pid: 15150
[2010-07-25 12:07:11 3203] INFO (image:590) waiting for sentinel_fifo
[2010-07-25 12:07:11 3203] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '07487b17-8791-6ac2-998d-ac15a9984a34', 'on_reboot': 'restart', 'start_time': '1280084831.2', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthh4GUKG) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'fc11x64'}
[2010-07-25 12:07:11 3203] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/07487b17-8791-6ac2-998d-ac15a9984a34', 'domid': '6', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'fc11x64'}
[2010-07-25 12:07:11 3203] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/6/0'} to /local/domain/6/device/console/0.
[2010-07-25 12:07:11 3203] DEBUG (DevController:97) DevController: writing {'domain': 'fc11x64', 'frontend': '/local/domain/6/device/console/0', 'uuid': '0784588a-862e-2b7c-4ae9-b5f3e6c92812', 'frontend-id': '6', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/6/0.
[2010-07-25 12:07:11 3203] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices console.
[2010-07-25 12:07:11 3203] DEBUG (DevController:144) Waiting for 0.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-25 12:07:11 3203] DEBUG (DevController:144) Waiting for 768.
[2010-07-25 12:07:11 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/6/768/hotplug-status.
[2010-07-25 12:07:11 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-25 12:07:11 3203] DEBUG (DevController:144) Waiting for 5632.
[2010-07-25 12:07:11 3203] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/6/5632/hotplug-status.
[2010-07-25 12:07:11 3203] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-25 12:07:11 3203] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-25 12:07:11 3203] INFO (XendDomain:1206) Domain fc11x64 (6) unpaused.
[2010-07-25 12:07:47 3203] INFO (XendDomainInfo:2088) Domain has shutdown: name=fc11x64 id=6 reason=poweroff.
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=6
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-25 12:07:47 3203] INFO (image:615) fc11x64 device model terminated
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2416) No device model
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-25 12:07:47 3203] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-25 18:01:53 2617] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-25 18:01:53 2617] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-25 18:01:55 2617] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 11561897446L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-25 18:01:55 2617] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-25 18:01:55 2617] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-25 18:01:55 2617] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-25 18:01:55 2617] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-25 18:01:55 2617] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-25 18:01:55 2617] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-25 18:01:55 2617] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-25 18:01:55 2617] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-25 18:01:55 2617] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-25 18:41:13 2617] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'Linux 2.6.31.13'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6.31.13'], ['root', '/dev/hda1 ro'], ['videoram', 4], ['args', '4'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'phy:sda2'], ['dev', 'sda2'], ['mode', 'w']]], ['device', ['vif']]])
[2010-07-25 18:41:32 2617] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'lin'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6.31.13'], ['root', '/dev/hda1 ro'], ['videoram', 4], ['args', '4'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'phy:sda2'], ['dev', 'sda2'], ['mode', 'w']]], ['device', ['vif']]])
[2010-07-25 18:41:32 2617] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-25 18:41:32 2617] DEBUG (balloon:220) Balloon: 997112 KiB free; need 16384; done.
[2010-07-25 18:41:32 2617] DEBUG (XendDomain:464) Adding Domain: 1
[2010-07-25 18:41:32 2617] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 1 256
[2010-07-25 18:41:32 2617] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-25 18:41:32 2617] INFO (image:182) buildDomain os=linux dom=1 vcpus=1
[2010-07-25 18:41:32 2617] DEBUG (image:721) domid = 1
[2010-07-25 18:41:32 2617] DEBUG (image:722) memsize = 512
[2010-07-25 18:41:32 2617] DEBUG (image:723) image = /boot/vmlinuz-2.6.31.13
[2010-07-25 18:41:32 2617] DEBUG (image:724) store_evtchn = 1
[2010-07-25 18:41:32 2617] DEBUG (image:725) console_evtchn = 2
[2010-07-25 18:41:32 2617] DEBUG (image:726) cmdline = root=/dev/hda1 ro 4
[2010-07-25 18:41:32 2617] DEBUG (image:727) ramdisk =
[2010-07-25 18:41:32 2617] DEBUG (image:728) vcpus = 1
[2010-07-25 18:41:32 2617] DEBUG (image:729) features =
[2010-07-25 18:41:32 2617] DEBUG (image:730) flags = 0
[2010-07-25 18:41:32 2617] DEBUG (image:731) superpages = 0
[2010-07-25 18:41:32 2617] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'c699ff0f-65d5-1511-10a7-7c422994b4ad', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'sda2', 'uname': 'phy:sda2', 'mode': 'w'}
[2010-07-25 18:41:32 2617] DEBUG (DevController:95) DevController: writing {'virtual-device': '2050', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/2050'} to /local/domain/1/device/vbd/2050.
[2010-07-25 18:41:32 2617] DEBUG (DevController:97) DevController: writing {'domain': 'lin', 'frontend': '/local/domain/1/device/vbd/2050', 'uuid': 'c699ff0f-65d5-1511-10a7-7c422994b4ad', 'bootable': '1', 'dev': 'sda2', 'state': '1', 'params': 'sda2', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'phy'} to /local/domain/0/backend/vbd/1/2050.
[2010-07-25 18:41:32 2617] INFO (XendDomainInfo:2367) createDevice: vif : {'mac': '00:16:3e:26:bc:a5', 'uuid': '37784fba-60a3-4438-0de6-6015c688c30e'}
[2010-07-25 18:41:32 2617] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:26:bc:a5', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/1/0'} to /local/domain/1/device/vif/0.
[2010-07-25 18:41:32 2617] DEBUG (DevController:97) DevController: writing {'domain': 'lin', 'frontend': '/local/domain/1/device/vif/0', 'uuid': '37784fba-60a3-4438-0de6-6015c688c30e', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:26:bc:a5', 'frontend-id': '1', 'state': '1', 'online': '1', 'handle': '0'} to /local/domain/0/backend/vif/1/0.
[2010-07-25 18:41:32 2617] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '77ddcee5-81fa-d1e3-8f51-7541d5db3181', 'on_reboot': 'restart', 'start_time': '1280108492.76', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': "(linux (kernel /boot/vmlinuz-2.6.31.13) (args 'root=/dev/hda1 ro 4') (superpages 0) (videoram 4) (pci ()) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071588412000) (XEN_VERSION xen-3.0)))", 'name': 'lin'}
[2010-07-25 18:41:32 2617] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '505006', 'image/entry': '18446744071588412000', 'console/port': '2', 'store/ring-ref': '505007', 'image/loader': 'generic', 'vm': '/vm/77ddcee5-81fa-d1e3-8f51-7541d5db3181', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'lin', 'domid': '1', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-25 18:41:33 2617] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/1/0'} to /local/domain/1/device/console/0.
[2010-07-25 18:41:33 2617] DEBUG (DevController:97) DevController: writing {'domain': 'lin', 'frontend': '/local/domain/1/device/console/0', 'uuid': 'c247a9f3-8c39-99f3-3c6f-104cbdc7bc34', 'frontend-id': '1', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/1/0.
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-25 18:41:33 2617] DEBUG (DevController:144) Waiting for 0.
[2010-07-25 18:41:33 2617] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/1/0/hotplug-status.
[2010-07-25 18:41:33 2617] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices console.
[2010-07-25 18:41:33 2617] DEBUG (DevController:144) Waiting for 0.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-25 18:41:33 2617] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-25 18:41:33 2617] DEBUG (DevController:144) Waiting for 2050.
[2010-07-25 18:41:33 2617] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/1/2050/hotplug-status.
[2010-07-25 18:41:33 2617] DEBUG (DevController:642) hotplugStatusCallback 5.
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2424) Removing vbd/2050
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/2050
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2416) No device model
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:2424) Removing vbd/2050
[2010-07-25 18:41:33 2617] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/2050
[2010-07-26 19:09:46 2617] DEBUG (SrvServer:76) SrvServer.cleanup()
[2010-07-26 19:09:46 2617] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-26 19:09:46 2617] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-26 19:09:46 2617] DEBUG (XendDomain:632) cleanup_domains
[2010-07-26 19:09:46 2612] INFO (SrvDaemon:220) Xend exited with status 0.
[2010-07-26 19:12:34 2581] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-26 19:12:34 2581] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-26 19:12:36 2581] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 11469828575L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-26 19:12:36 2581] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-26 19:12:36 2581] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-26 19:12:36 2581] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-26 19:12:36 2581] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-26 19:12:36 2581] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-26 19:12:36 2581] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-26 19:12:36 2581] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-26 19:12:36 2581] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-26 19:12:36 2581] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-26 21:57:50 2659] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-26 21:57:50 2659] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-26 21:57:51 2659] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 11610123019L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-26 21:57:51 2659] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-26 21:57:52 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-26 21:57:52 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-26 21:57:52 2659] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-26 21:57:52 2659] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-26 21:57:52 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-26 21:57:52 2659] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-26 21:57:52 2659] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-26 21:57:52 2659] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-27 08:51:11 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'FC12pxe'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['linux', ['kernel', '/root/ximages/vmlinuz'], ['ramdisk', '/root/ximages/initrd.img'], ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/home/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-27 08:51:11 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-27 08:51:11 2659] DEBUG (balloon:220) Balloon: 997112 KiB free; need 16384; done.
[2010-07-27 08:51:11 2659] DEBUG (XendDomain:464) Adding Domain: 1
[2010-07-27 08:51:11 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 1 256
[2010-07-27 08:51:11 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-27 08:51:11 2659] INFO (image:182) buildDomain os=linux dom=1 vcpus=1
[2010-07-27 08:51:11 2659] DEBUG (image:721) domid = 1
[2010-07-27 08:51:12 2659] DEBUG (image:722) memsize = 512
[2010-07-27 08:51:12 2659] DEBUG (image:723) image = /root/ximages/vmlinuz
[2010-07-27 08:51:12 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-27 08:51:12 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-27 08:51:12 2659] DEBUG (image:726) cmdline =
[2010-07-27 08:51:12 2659] DEBUG (image:727) ramdisk = /root/ximages/initrd.img
[2010-07-27 08:51:12 2659] DEBUG (image:728) vcpus = 1
[2010-07-27 08:51:12 2659] DEBUG (image:729) features =
[2010-07-27 08:51:12 2659] DEBUG (image:730) flags = 0
[2010-07-27 08:51:12 2659] DEBUG (image:731) superpages = 0
[2010-07-27 08:51:12 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '1c4a9d5e-057b-797d-f4a5-23690e06bf07', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/home/ximages/vmdisk0', 'mode': 'w'}
[2010-07-27 08:51:12 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/51712'} to /local/domain/1/device/vbd/51712.
[2010-07-27 08:51:12 2659] DEBUG (DevController:97) DevController: writing {'domain': 'FC12pxe', 'frontend': '/local/domain/1/device/vbd/51712', 'uuid': '1c4a9d5e-057b-797d-f4a5-23690e06bf07', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/home/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/51712.
[2010-07-27 08:51:12 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:7c:b0:9f', 'uuid': 'a7d4e7fc-17e5-cf4c-0e1d-05bc4bc86147'}
[2010-07-27 08:51:12 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:7c:b0:9f', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/1/0'} to /local/domain/1/device/vif/0.
[2010-07-27 08:51:12 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'FC12pxe', 'handle': '0', 'uuid': 'a7d4e7fc-17e5-cf4c-0e1d-05bc4bc86147', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:7c:b0:9f', 'frontend-id': '1', 'state': '1', 'online': '1', 'frontend': '/local/domain/1/device/vif/0'} to /local/domain/0/backend/vif/1/0.
[2010-07-27 08:51:12 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '48f44d5a-b3fc-681c-751d-3721784ad344', 'on_reboot': 'restart', 'start_time': '1280245872.93', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': "(linux (kernel /root/ximages/vmlinuz) (ramdisk /root/ximages/initrd.img) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'FC12pxe'}
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '248054', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '248055', 'image/loader': 'generic', 'vm': '/vm/48f44d5a-b3fc-681c-751d-3721784ad344', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'FC12pxe', 'domid': '1', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-27 08:51:13 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/1/0'} to /local/domain/1/device/console/0.
[2010-07-27 08:51:13 2659] DEBUG (DevController:97) DevController: writing {'domain': 'FC12pxe', 'frontend': '/local/domain/1/device/console/0', 'uuid': 'b6c34684-bc43-5b79-7e51-11053bf2a320', 'frontend-id': '1', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/1/0.
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-27 08:51:13 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-27 08:51:13 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/1/0/hotplug-status.
[2010-07-27 08:51:13 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-27 08:51:13 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-27 08:51:13 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-27 08:51:13 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-27 08:51:13 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/1/51712/hotplug-status.
[2010-07-27 08:51:13 2659] DEBUG (DevController:642) hotplugStatusCallback 2.
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2416) No device model
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-27 08:51:13 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-27 08:51:14 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-27 08:53:05 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'FC12pxe'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['linux', ['kernel', '/root/ximages/vmlinuz'], ['ramdisk', '/root/ximages/initrd.img'], ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-27 08:53:05 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-27 08:53:05 2659] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-27 08:53:05 2659] DEBUG (XendDomain:464) Adding Domain: 2
[2010-07-27 08:53:05 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 2 256
[2010-07-27 08:53:05 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-27 08:53:05 2659] INFO (image:182) buildDomain os=linux dom=2 vcpus=1
[2010-07-27 08:53:05 2659] DEBUG (image:721) domid = 2
[2010-07-27 08:53:05 2659] DEBUG (image:722) memsize = 512
[2010-07-27 08:53:05 2659] DEBUG (image:723) image = /root/ximages/vmlinuz
[2010-07-27 08:53:05 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-27 08:53:05 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-27 08:53:05 2659] DEBUG (image:726) cmdline =
[2010-07-27 08:53:05 2659] DEBUG (image:727) ramdisk = /root/ximages/initrd.img
[2010-07-27 08:53:05 2659] DEBUG (image:728) vcpus = 1
[2010-07-27 08:53:05 2659] DEBUG (image:729) features =
[2010-07-27 08:53:05 2659] DEBUG (image:730) flags = 0
[2010-07-27 08:53:05 2659] DEBUG (image:731) superpages = 0
[2010-07-27 08:53:06 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'fc024b6a-7d37-a00f-483a-e0ba0a46a628', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-27 08:53:06 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/51712'} to /local/domain/2/device/vbd/51712.
[2010-07-27 08:53:06 2659] DEBUG (DevController:97) DevController: writing {'domain': 'FC12pxe', 'frontend': '/local/domain/2/device/vbd/51712', 'uuid': 'fc024b6a-7d37-a00f-483a-e0ba0a46a628', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '2', 'type': 'file'} to /local/domain/0/backend/vbd/2/51712.
[2010-07-27 08:53:06 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:77:c7:e2', 'uuid': 'ad578dbe-7314-0463-0d4f-5ea979cd032e'}
[2010-07-27 08:53:06 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:77:c7:e2', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/2/0'} to /local/domain/2/device/vif/0.
[2010-07-27 08:53:06 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'FC12pxe', 'handle': '0', 'uuid': 'ad578dbe-7314-0463-0d4f-5ea979cd032e', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:77:c7:e2', 'frontend-id': '2', 'state': '1', 'online': '1', 'frontend': '/local/domain/2/device/vif/0'} to /local/domain/0/backend/vif/2/0.
[2010-07-27 08:53:06 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': 'a17a9433-2855-1323-4d92-ecc74208f893', 'on_reboot': 'restart', 'start_time': '1280245986.48', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': "(linux (kernel /root/ximages/vmlinuz) (ramdisk /root/ximages/initrd.img) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'FC12pxe'}
[2010-07-27 08:53:06 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '248054', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '248055', 'image/loader': 'generic', 'vm': '/vm/a17a9433-2855-1323-4d92-ecc74208f893', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'FC12pxe', 'domid': '2', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-27 08:53:06 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/2/0'} to /local/domain/2/device/console/0.
[2010-07-27 08:53:06 2659] DEBUG (DevController:97) DevController: writing {'domain': 'FC12pxe', 'frontend': '/local/domain/2/device/console/0', 'uuid': 'dee79360-2ccb-48f0-79ff-b7aca4d2fe06', 'frontend-id': '2', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/2/0.
[2010-07-27 08:53:06 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-27 08:53:06 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-27 08:53:06 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/2/0/hotplug-status.
[2010-07-27 08:53:06 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-27 08:53:06 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-27 08:53:06 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-27 08:53:06 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/2/51712/hotplug-status.
[2010-07-27 08:53:06 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-27 08:53:06 2659] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-27 08:53:06 2659] INFO (XendDomain:1206) Domain FC12pxe (2) unpaused.
[2010-07-28 22:00:35 2659] INFO (XendDomainInfo:2088) Domain has shutdown: name=FC12pxe id=2 reason=reboot.
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=2
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:123) XendDomainInfo.create_from_dict({'vcpus_params': {'cap': 0, 'weight': 256}, 'PV_args': '', 'features': '', 'cpus': [[]], 'paused': 0, 'use_tmp_kernel': False, 'domid': 2, 'memory_sharing': 0, 'superpages': 0, 'VCPUs_live': 1, 'PV_bootloader': '', 'actions_after_crash': 'restart', 'vbd_refs': ['fc024b6a-7d37-a00f-483a-e0ba0a46a628'], 'PV_ramdisk': '/root/ximages/initrd.img', 'is_control_domain': False, 'name_label': 'FC12pxe', 'VCPUs_at_startup': 1, 'HVM_boot_params': {}, 'platform': {'tsc_mode': 0, 'serial': 'pty', 'pci': [], 'nomigrate': 0, 'videoram': 4}, 'PV_kernel': '/root/ximages/vmlinuz', 'console_refs': ['dee79360-2ccb-48f0-79ff-b7aca4d2fe06'], 'online_vcpus': 1, 'blocked': 0, 'on_xend_stop': 'ignore', 'shutdown': 0, 'HVM_boot_policy': '', 'description': '', 'shutdown_reason': 1, 'VCPUs_max': 1, 'start_time': 1280245986.475791, 'memory_static_max': 536870912, 'actions_after_shutdown': 'destroy', 'use_tmp_ramdisk': False, 'on_xend_start': 'ignore', 'crashed': 0, 'memory_dynamic_max': 536870912, 'actions_after_suspend': '', 'is_a_template': False, 'PV_bootloader_args': '', 'memory_dynamic_min': 536870912, 'uuid': 'a17a9433-2855-1323-4d92-ecc74208f893', 'cpu_time': 616.57341915300003, 'shadow_memory': 0, 'memory_static_min': 0, 'dying': 0, 'vcpu_avail': 1, 'notes': {'HV_START_LOW': 18446603336221196288L, 'FEATURES': '!writable_page_tables|pae_pgdir_above_4gb', 'VIRT_BASE': 18446744071562067968L, 'GUEST_VERSION': '2.6', 'PADDR_OFFSET': 0, 'GUEST_OS': 'linux', 'HYPERCALL_PAGE': 18446744071578882048L, 'LOADER': 'generic', 'SUSPEND_CANCEL': 1, 'PAE_MODE': 'yes', 'ENTRY': 18446744071586267616L, 'XEN_VERSION': 'xen-3.0'}, 'other_config': {}, 'auto_power_on': False, 'running': 0, 'actions_after_reboot': 'restart', 'Description': '', 'vif_refs': ['ad578dbe-7314-0463-0d4f-5ea979cd032e'], 'target': 0, 'vtpm_refs': [], 's3_integrity': 1, 'devices': {'ad578dbe-7314-0463-0d4f-5ea979cd032e': ('vif', {'bridge': 'eth0', 'mac': '00:16:3e:77:c7:e2', 'devid': 0, 'uuid': 'ad578dbe-7314-0463-0d4f-5ea979cd032e'}), 'dee79360-2ccb-48f0-79ff-b7aca4d2fe06': ('console', {'other_config': {}, 'protocol': 'vt100', 'uuid': 'dee79360-2ccb-48f0-79ff-b7aca4d2fe06', 'location': '2'}), 'fc024b6a-7d37-a00f-483a-e0ba0a46a628': ('vbd', {'uuid': 'fc024b6a-7d37-a00f-483a-e0ba0a46a628', 'bootable': 1, 'devid': 51712, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'})}})
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-28 22:00:36 2659] DEBUG (XendDomain:464) Adding Domain: 3
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 3 256
[2010-07-28 22:00:36 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-28 22:00:37 2659] INFO (image:182) buildDomain os=linux dom=3 vcpus=1
[2010-07-28 22:00:37 2659] DEBUG (image:721) domid = 3
[2010-07-28 22:00:37 2659] DEBUG (image:722) memsize = 512
[2010-07-28 22:00:37 2659] DEBUG (image:723) image = /root/ximages/vmlinuz
[2010-07-28 22:00:37 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-28 22:00:37 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-28 22:00:37 2659] DEBUG (image:726) cmdline =
[2010-07-28 22:00:37 2659] DEBUG (image:727) ramdisk = /root/ximages/initrd.img
[2010-07-28 22:00:37 2659] DEBUG (image:728) vcpus = 1
[2010-07-28 22:00:37 2659] DEBUG (image:729) features =
[2010-07-28 22:00:37 2659] DEBUG (image:730) flags = 0
[2010-07-28 22:00:37 2659] DEBUG (image:731) superpages = 0
[2010-07-28 22:00:37 2659] INFO (XendDomainInfo:2367) createDevice: console : {'other_config': {}, 'protocol': 'vt100', 'uuid': 'dee79360-2ccb-48f0-79ff-b7aca4d2fe06', 'location': '2'}
[2010-07-28 22:00:37 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/3/0'} to /local/domain/3/device/console/0.
[2010-07-28 22:00:37 2659] DEBUG (DevController:97) DevController: writing {'domain': 'FC12pxe', 'frontend': '/local/domain/3/device/console/0', 'uuid': 'dee79360-2ccb-48f0-79ff-b7aca4d2fe06', 'frontend-id': '3', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/3/0.
[2010-07-28 22:00:37 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'fc024b6a-7d37-a00f-483a-e0ba0a46a628', 'bootable': 1, 'devid': 51712, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-28 22:00:37 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/51712'} to /local/domain/3/device/vbd/51712.
[2010-07-28 22:00:37 2659] DEBUG (DevController:97) DevController: writing {'domain': 'FC12pxe', 'frontend': '/local/domain/3/device/vbd/51712', 'uuid': 'fc024b6a-7d37-a00f-483a-e0ba0a46a628', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '3', 'type': 'file'} to /local/domain/0/backend/vbd/3/51712.
[2010-07-28 22:00:37 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:77:c7:e2', 'devid': 0, 'uuid': 'ad578dbe-7314-0463-0d4f-5ea979cd032e'}
[2010-07-28 22:00:37 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:77:c7:e2', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/3/0'} to /local/domain/3/device/vif/0.
[2010-07-28 22:00:37 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'FC12pxe', 'handle': '0', 'uuid': 'ad578dbe-7314-0463-0d4f-5ea979cd032e', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:77:c7:e2', 'frontend-id': '3', 'state': '1', 'online': '1', 'frontend': '/local/domain/3/device/vif/0'} to /local/domain/0/backend/vif/3/0.
[2010-07-28 22:00:37 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': 'a17a9433-2855-1323-4d92-ecc74208f893', 'on_reboot': 'restart', 'start_time': '1280379637.91', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': "(linux (kernel /root/ximages/vmlinuz) (ramdisk /root/ximages/initrd.img) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'FC12pxe'}
[2010-07-28 22:00:38 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '248054', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '248055', 'image/loader': 'generic', 'vm': '/vm/a17a9433-2855-1323-4d92-ecc74208f893', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'FC12pxe', 'domid': '3', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-28 22:00:38 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-28 22:00:38 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:00:38 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/3/0/hotplug-status.
[2010-07-28 22:00:38 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-28 22:00:38 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-28 22:00:38 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-28 22:00:38 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/3/51712/hotplug-status.
[2010-07-28 22:00:38 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-28 22:00:38 2659] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-28 22:09:25 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc12pxe-run'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['bootloader', '/usr/bin/pygrub'], ['bootloader_args', ''], ['image', ['linux', ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-28 22:09:25 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-28 22:09:25 2659] DEBUG (balloon:220) Balloon: 472612 KiB free; need 16384; done.
[2010-07-28 22:09:25 2659] DEBUG (XendDomain:464) Adding Domain: 4
[2010-07-28 22:09:25 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 4 256
[2010-07-28 22:09:25 994] DEBUG (XendBootloader:113) Launching bootloader as ['/usr/bin/pygrub', '--output=/var/run/xend/boot/xenbl.17694', '/root/ximages/vmdisk0'].
[2010-07-28 22:09:28 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-28 22:09:28 2659] DEBUG (balloon:172) Balloon: tmem relinquished -1 KiB of 51888 KiB requested.
[2010-07-28 22:09:28 2659] DEBUG (balloon:226) Balloon: 472400 KiB free; 0 to scrub; need 524288; retries: 20.
[2010-07-28 22:09:28 2659] DEBUG (balloon:240) Balloon: setting dom0 target to 969 MiB.
[2010-07-28 22:09:28 2659] DEBUG (XendDomainInfo:1477) Setting memory target of domain Domain-0 (0) to 969 MiB.
[2010-07-28 22:09:28 2659] DEBUG (balloon:226) Balloon: 492124 KiB free; 0 to scrub; need 524288; retries: 20.
[2010-07-28 22:09:28 2659] DEBUG (balloon:226) Balloon: 492124 KiB free; 0 to scrub; need 524288; retries: 20.
[2010-07-28 22:09:29 2659] INFO (image:182) buildDomain os=linux dom=4 vcpus=1
[2010-07-28 22:09:29 2659] DEBUG (image:721) domid = 4
[2010-07-28 22:09:29 2659] DEBUG (image:722) memsize = 512
[2010-07-28 22:09:29 2659] DEBUG (image:723) image = /var/run/xend/boot/boot_kernel.cbB_e_
[2010-07-28 22:09:29 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-28 22:09:29 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-28 22:09:29 2659] DEBUG (image:726) cmdline = ro root=UUID=b5e20f6a-689b-42fe-90c5-9d012267cea4 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us console=hvc0 rhgb quiet
[2010-07-28 22:09:29 2659] DEBUG (image:727) ramdisk = /var/run/xend/boot/boot_ramdisk.z66667
[2010-07-28 22:09:29 2659] DEBUG (image:728) vcpus = 1
[2010-07-28 22:09:29 2659] DEBUG (image:729) features =
[2010-07-28 22:09:29 2659] DEBUG (image:730) flags = 0
[2010-07-28 22:09:29 2659] DEBUG (image:731) superpages = 0
[2010-07-28 22:09:30 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '1a4d3b53-efc6-4bd3-a77a-1ba97f2a52ce', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-28 22:09:30 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/51712'} to /local/domain/4/device/vbd/51712.
[2010-07-28 22:09:30 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/4/device/vbd/51712', 'uuid': '1a4d3b53-efc6-4bd3-a77a-1ba97f2a52ce', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '4', 'type': 'file'} to /local/domain/0/backend/vbd/4/51712.
[2010-07-28 22:09:30 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:6f:36:5f', 'uuid': '27ae67c6-2f36-121c-29ba-04425fa67dbb'}
[2010-07-28 22:09:30 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:6f:36:5f', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/4/0'} to /local/domain/4/device/vif/0.
[2010-07-28 22:09:30 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'fc12pxe-run', 'handle': '0', 'uuid': '27ae67c6-2f36-121c-29ba-04425fa67dbb', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:6f:36:5f', 'frontend-id': '4', 'state': '1', 'online': '1', 'frontend': '/local/domain/4/device/vif/0'} to /local/domain/0/backend/vif/4/0.
[2010-07-28 22:09:30 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': 'bda9a150-5b36-4aa2-8615-4aa80caed278', 'on_reboot': 'restart', 'start_time': '1280380170.51', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '/usr/bin/pygrub', 'image': "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'fc12pxe-run'}
[2010-07-28 22:09:30 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '133310', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '133311', 'image/loader': 'generic', 'vm': '/vm/bda9a150-5b36-4aa2-8615-4aa80caed278', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'fc12pxe-run', 'domid': '4', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-28 22:09:30 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/4/0'} to /local/domain/4/device/console/0.
[2010-07-28 22:09:30 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/4/device/console/0', 'uuid': 'f8119487-4695-3128-eb2f-034b729fcecf', 'frontend-id': '4', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/4/0.
[2010-07-28 22:09:30 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-28 22:09:30 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:09:30 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/4/0/hotplug-status.
[2010-07-28 22:09:30 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/4/0/hotplug-status.
[2010-07-28 22:09:30 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-28 22:09:30 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-28 22:09:30 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-28 22:09:30 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-28 22:09:30 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/51712/hotplug-status.
[2010-07-28 22:09:30 2659] DEBUG (DevController:642) hotplugStatusCallback 5.
[2010-07-28 22:09:30 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=4
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2416) No device model
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:09:31 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:09:50 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc12pxe-run'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['bootloader', '/usr/bin/pygrub'], ['bootloader_args', ''], ['image', ['linux', ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-28 22:09:50 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-28 22:09:50 2659] DEBUG (balloon:220) Balloon: 525092 KiB free; need 16384; done.
[2010-07-28 22:09:50 2659] DEBUG (XendDomain:464) Adding Domain: 5
[2010-07-28 22:09:50 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 5 256
[2010-07-28 22:09:50 1462] DEBUG (XendBootloader:113) Launching bootloader as ['/usr/bin/pygrub', '--output=/var/run/xend/boot/xenbl.29452', '/root/ximages/vmdisk0'].
[2010-07-28 22:09:52 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-28 22:09:52 2659] INFO (image:182) buildDomain os=linux dom=5 vcpus=1
[2010-07-28 22:09:52 2659] DEBUG (image:721) domid = 5
[2010-07-28 22:09:52 2659] DEBUG (image:722) memsize = 512
[2010-07-28 22:09:52 2659] DEBUG (image:723) image = /var/run/xend/boot/boot_kernel.cHnSm8
[2010-07-28 22:09:52 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-28 22:09:52 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-28 22:09:52 2659] DEBUG (image:726) cmdline = ro root=UUID=b5e20f6a-689b-42fe-90c5-9d012267cea4 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us console=hvc0 rhgb quiet
[2010-07-28 22:09:52 2659] DEBUG (image:727) ramdisk = /var/run/xend/boot/boot_ramdisk.mm8si_
[2010-07-28 22:09:52 2659] DEBUG (image:728) vcpus = 1
[2010-07-28 22:09:52 2659] DEBUG (image:729) features =
[2010-07-28 22:09:52 2659] DEBUG (image:730) flags = 0
[2010-07-28 22:09:52 2659] DEBUG (image:731) superpages = 0
[2010-07-28 22:09:53 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4af3a331-9900-70d0-52b7-8b7a330a792e', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-28 22:09:53 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/5/51712'} to /local/domain/5/device/vbd/51712.
[2010-07-28 22:09:53 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/5/device/vbd/51712', 'uuid': '4af3a331-9900-70d0-52b7-8b7a330a792e', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '5', 'type': 'file'} to /local/domain/0/backend/vbd/5/51712.
[2010-07-28 22:09:53 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:7a:26:ba', 'uuid': '4496c04e-9c72-dd2a-66fb-18ca1426f9ff'}
[2010-07-28 22:09:53 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:7a:26:ba', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/5/0'} to /local/domain/5/device/vif/0.
[2010-07-28 22:09:53 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'fc12pxe-run', 'handle': '0', 'uuid': '4496c04e-9c72-dd2a-66fb-18ca1426f9ff', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:7a:26:ba', 'frontend-id': '5', 'state': '1', 'online': '1', 'frontend': '/local/domain/5/device/vif/0'} to /local/domain/0/backend/vif/5/0.
[2010-07-28 22:09:53 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '30309dc2-368e-482e-7483-d151c9541ffa', 'on_reboot': 'restart', 'start_time': '1280380193.45', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '/usr/bin/pygrub', 'image': "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'fc12pxe-run'}
[2010-07-28 22:09:53 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '133310', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '133311', 'image/loader': 'generic', 'vm': '/vm/30309dc2-368e-482e-7483-d151c9541ffa', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'fc12pxe-run', 'domid': '5', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-28 22:09:53 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/5/0'} to /local/domain/5/device/console/0.
[2010-07-28 22:09:53 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/5/device/console/0', 'uuid': 'c8924628-74c6-5c67-8e6b-da6096be7233', 'frontend-id': '5', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/5/0.
[2010-07-28 22:09:53 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-28 22:09:53 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:09:53 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/5/0/hotplug-status.
[2010-07-28 22:09:53 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-28 22:09:53 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-28 22:09:53 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-28 22:09:53 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-28 22:09:53 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/51712/hotplug-status.
[2010-07-28 22:11:07 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/51712/hotplug-status.
[2010-07-28 22:11:07 2659] DEBUG (DevController:642) hotplugStatusCallback 5.
[2010-07-28 22:11:07 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=5
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:11:08 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:14:27 2659] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-28 22:14:27 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:14:27 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:14:34 2659] INFO (XendDomainInfo:2088) Domain has shutdown: name=FC12pxe id=3 reason=poweroff.
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=3
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:14:34 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:14:47 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc12pxe-run'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['bootloader', '/usr/bin/pygrub'], ['bootloader_args', ''], ['image', ['linux', ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-28 22:14:47 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-28 22:14:47 2659] DEBUG (balloon:220) Balloon: 1049584 KiB free; need 16384; done.
[2010-07-28 22:14:47 2659] DEBUG (XendDomain:464) Adding Domain: 6
[2010-07-28 22:14:47 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 6 256
[2010-07-28 22:14:47 3921] DEBUG (XendBootloader:113) Launching bootloader as ['/usr/bin/pygrub', '--output=/var/run/xend/boot/xenbl.13347', '/root/ximages/vmdisk0'].
[2010-07-28 22:14:48 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-28 22:14:48 2659] INFO (image:182) buildDomain os=linux dom=6 vcpus=1
[2010-07-28 22:14:48 2659] DEBUG (image:721) domid = 6
[2010-07-28 22:14:48 2659] DEBUG (image:722) memsize = 512
[2010-07-28 22:14:48 2659] DEBUG (image:723) image = /var/run/xend/boot/boot_kernel.sAj0l2
[2010-07-28 22:14:48 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-28 22:14:49 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-28 22:14:49 2659] DEBUG (image:726) cmdline = ro root=UUID=b5e20f6a-689b-42fe-90c5-9d012267cea4 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us console=hvc0 rhgb quiet
[2010-07-28 22:14:49 2659] DEBUG (image:727) ramdisk = /var/run/xend/boot/boot_ramdisk.RL3E_y
[2010-07-28 22:14:49 2659] DEBUG (image:728) vcpus = 1
[2010-07-28 22:14:49 2659] DEBUG (image:729) features =
[2010-07-28 22:14:49 2659] DEBUG (image:730) flags = 0
[2010-07-28 22:14:49 2659] DEBUG (image:731) superpages = 0
[2010-07-28 22:14:49 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4c8fc68c-b151-36b7-8993-5522cd17eb97', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-28 22:14:49 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/51712'} to /local/domain/6/device/vbd/51712.
[2010-07-28 22:14:49 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/6/device/vbd/51712', 'uuid': '4c8fc68c-b151-36b7-8993-5522cd17eb97', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '6', 'type': 'file'} to /local/domain/0/backend/vbd/6/51712.
[2010-07-28 22:14:49 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:57:f3:62', 'uuid': 'a0a2cbef-8334-67e2-48eb-ef7c761a0572'}
[2010-07-28 22:14:49 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:57:f3:62', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/6/0'} to /local/domain/6/device/vif/0.
[2010-07-28 22:14:49 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'fc12pxe-run', 'handle': '0', 'uuid': 'a0a2cbef-8334-67e2-48eb-ef7c761a0572', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:57:f3:62', 'frontend-id': '6', 'state': '1', 'online': '1', 'frontend': '/local/domain/6/device/vif/0'} to /local/domain/0/backend/vif/6/0.
[2010-07-28 22:14:49 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '10518d17-856f-b69f-afda-a7adf894c0da', 'on_reboot': 'restart', 'start_time': '1280380489.55', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '/usr/bin/pygrub', 'image': "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'fc12pxe-run'}
[2010-07-28 22:14:49 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '512459', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '512460', 'image/loader': 'generic', 'vm': '/vm/10518d17-856f-b69f-afda-a7adf894c0da', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'fc12pxe-run', 'domid': '6', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-28 22:14:49 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/6/0'} to /local/domain/6/device/console/0.
[2010-07-28 22:14:49 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/6/device/console/0', 'uuid': 'c0c9d32b-af9b-441f-b3ed-c2d63fde4a50', 'frontend-id': '6', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/6/0.
[2010-07-28 22:14:49 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-28 22:14:49 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:14:49 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/6/0/hotplug-status.
[2010-07-28 22:14:49 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-28 22:14:49 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-28 22:14:49 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-28 22:14:49 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/6/51712/hotplug-status.
[2010-07-28 22:14:49 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-28 22:14:49 2659] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-28 22:14:50 2659] INFO (XendDomain:1206) Domain fc12pxe-run (6) unpaused.
[2010-07-28 22:18:04 2659] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-28 22:18:04 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:18:04 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:18:12 2659] INFO (XendDomainInfo:2088) Domain has shutdown: name=fc12pxe-run id=6 reason=poweroff.
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=6
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:18:12 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:18:13 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:18:13 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:18:16 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc12pxe-run'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['bootloader', '/usr/bin/pygrub'], ['bootloader_args', ''], ['image', ['linux', ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-28 22:18:16 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-28 22:18:16 2659] DEBUG (balloon:220) Balloon: 1049584 KiB free; need 16384; done.
[2010-07-28 22:18:16 2659] DEBUG (XendDomain:464) Adding Domain: 7
[2010-07-28 22:18:16 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 7 256
[2010-07-28 22:18:16 4227] DEBUG (XendBootloader:113) Launching bootloader as ['/usr/bin/pygrub', '--output=/var/run/xend/boot/xenbl.5007', '/root/ximages/vmdisk0'].
[2010-07-28 22:18:18 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-28 22:18:18 2659] INFO (image:182) buildDomain os=linux dom=7 vcpus=1
[2010-07-28 22:18:18 2659] DEBUG (image:721) domid = 7
[2010-07-28 22:18:18 2659] DEBUG (image:722) memsize = 512
[2010-07-28 22:18:18 2659] DEBUG (image:723) image = /var/run/xend/boot/boot_kernel.0ffqqC
[2010-07-28 22:18:18 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-28 22:18:18 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-28 22:18:18 2659] DEBUG (image:726) cmdline = ro root=UUID=b5e20f6a-689b-42fe-90c5-9d012267cea4 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us console=hvc0 rhgb quiet
[2010-07-28 22:18:18 2659] DEBUG (image:727) ramdisk = /var/run/xend/boot/boot_ramdisk.38XHT4
[2010-07-28 22:18:18 2659] DEBUG (image:728) vcpus = 1
[2010-07-28 22:18:18 2659] DEBUG (image:729) features =
[2010-07-28 22:18:18 2659] DEBUG (image:730) flags = 0
[2010-07-28 22:18:18 2659] DEBUG (image:731) superpages = 0
[2010-07-28 22:18:18 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '83da8723-bc05-6db3-4c05-8525fd1ebd7a', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-28 22:18:18 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/7/51712'} to /local/domain/7/device/vbd/51712.
[2010-07-28 22:18:18 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/7/device/vbd/51712', 'uuid': '83da8723-bc05-6db3-4c05-8525fd1ebd7a', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '7', 'type': 'file'} to /local/domain/0/backend/vbd/7/51712.
[2010-07-28 22:18:18 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:78:87:e4', 'uuid': '62094f4e-5bbe-b044-3473-34eca275700c'}
[2010-07-28 22:18:18 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:78:87:e4', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/7/0'} to /local/domain/7/device/vif/0.
[2010-07-28 22:18:18 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'fc12pxe-run', 'handle': '0', 'uuid': '62094f4e-5bbe-b044-3473-34eca275700c', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:78:87:e4', 'frontend-id': '7', 'state': '1', 'online': '1', 'frontend': '/local/domain/7/device/vif/0'} to /local/domain/0/backend/vif/7/0.
[2010-07-28 22:18:18 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '4ca98489-0fcd-b261-3ba7-5d3e9978a298', 'on_reboot': 'restart', 'start_time': '1280380698.98', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '/usr/bin/pygrub', 'image': "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'fc12pxe-run'}
[2010-07-28 22:18:19 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '512459', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '512460', 'image/loader': 'generic', 'vm': '/vm/4ca98489-0fcd-b261-3ba7-5d3e9978a298', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'fc12pxe-run', 'domid': '7', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-28 22:18:19 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/7/0'} to /local/domain/7/device/console/0.
[2010-07-28 22:18:19 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/7/device/console/0', 'uuid': 'd2c1ba68-7300-801f-f77a-ee3b862a2f29', 'frontend-id': '7', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/7/0.
[2010-07-28 22:18:19 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-28 22:18:19 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:18:19 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/7/0/hotplug-status.
[2010-07-28 22:18:19 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-28 22:18:19 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-28 22:18:19 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-28 22:18:19 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/7/51712/hotplug-status.
[2010-07-28 22:18:19 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-28 22:18:19 2659] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-28 22:18:19 2659] INFO (XendDomain:1206) Domain fc12pxe-run (7) unpaused.
[2010-07-28 22:26:15 2659] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-28 22:26:15 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:26:15 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:26:23 2659] INFO (XendDomainInfo:2088) Domain has shutdown: name=fc12pxe-run id=7 reason=poweroff.
[2010-07-28 22:26:23 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=7
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:26:24 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:26:39 2659] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'fc12pxe-run'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['bootloader', '/usr/bin/pygrub'], ['bootloader_args', ''], ['image', ['linux', ['videoram', 4], ['serial', 'pty'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/vmdisk0'], ['dev', 'xvda'], ['mode', 'w']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-28 22:26:39 2659] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-28 22:26:39 2659] DEBUG (balloon:220) Balloon: 1049584 KiB free; need 16384; done.
[2010-07-28 22:26:39 2659] DEBUG (XendDomain:464) Adding Domain: 8
[2010-07-28 22:26:39 2659] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 8 256
[2010-07-28 22:26:39 4627] DEBUG (XendBootloader:113) Launching bootloader as ['/usr/bin/pygrub', '--output=/var/run/xend/boot/xenbl.3554', '/root/ximages/vmdisk0'].
[2010-07-28 22:26:41 2659] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-28 22:26:41 2659] INFO (image:182) buildDomain os=linux dom=8 vcpus=1
[2010-07-28 22:26:41 2659] DEBUG (image:721) domid = 8
[2010-07-28 22:26:41 2659] DEBUG (image:722) memsize = 512
[2010-07-28 22:26:41 2659] DEBUG (image:723) image = /var/run/xend/boot/boot_kernel.ztpnX2
[2010-07-28 22:26:41 2659] DEBUG (image:724) store_evtchn = 1
[2010-07-28 22:26:41 2659] DEBUG (image:725) console_evtchn = 2
[2010-07-28 22:26:41 2659] DEBUG (image:726) cmdline = ro root=UUID=b5e20f6a-689b-42fe-90c5-9d012267cea4 LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYTABLE=us console=hvc0 rhgb quiet
[2010-07-28 22:26:41 2659] DEBUG (image:727) ramdisk = /var/run/xend/boot/boot_ramdisk.VqBhMP
[2010-07-28 22:26:41 2659] DEBUG (image:728) vcpus = 1
[2010-07-28 22:26:41 2659] DEBUG (image:729) features =
[2010-07-28 22:26:41 2659] DEBUG (image:730) flags = 0
[2010-07-28 22:26:41 2659] DEBUG (image:731) superpages = 0
[2010-07-28 22:26:41 2659] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '950f8910-a864-3319-8cd6-efee23cc6d9a', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/root/ximages/vmdisk0', 'mode': 'w'}
[2010-07-28 22:26:41 2659] DEBUG (DevController:95) DevController: writing {'virtual-device': '51712', 'device-type': 'disk', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/8/51712'} to /local/domain/8/device/vbd/51712.
[2010-07-28 22:26:41 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/8/device/vbd/51712', 'uuid': '950f8910-a864-3319-8cd6-efee23cc6d9a', 'bootable': '1', 'dev': 'xvda', 'state': '1', 'params': '/root/ximages/vmdisk0', 'mode': 'w', 'online': '1', 'frontend-id': '8', 'type': 'file'} to /local/domain/0/backend/vbd/8/51712.
[2010-07-28 22:26:41 2659] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:64:74:c9', 'uuid': 'f60d5db3-8abd-463d-5ff2-454e5e3535aa'}
[2010-07-28 22:26:41 2659] DEBUG (DevController:95) DevController: writing {'mac': '00:16:3e:64:74:c9', 'handle': '0', 'protocol': 'x86_64-abi', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/8/0'} to /local/domain/8/device/vif/0.
[2010-07-28 22:26:41 2659] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'fc12pxe-run', 'handle': '0', 'uuid': 'f60d5db3-8abd-463d-5ff2-454e5e3535aa', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:64:74:c9', 'frontend-id': '8', 'state': '1', 'online': '1', 'frontend': '/local/domain/8/device/vif/0'} to /local/domain/0/backend/vif/8/0.
[2010-07-28 22:26:41 2659] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': 'a4319627-7a25-3bad-580f-3f564f71d0bf', 'on_reboot': 'restart', 'start_time': '1280381201.78', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '/usr/bin/pygrub', 'image': "(linux (kernel ) (superpages 0) (videoram 4) (pci ()) (serial pty) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071586267616) (XEN_VERSION xen-3.0)))", 'name': 'fc12pxe-run'}
[2010-07-28 22:26:41 2659] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/ring-ref': '512459', 'image/entry': '18446744071586267616', 'console/port': '2', 'store/ring-ref': '512460', 'image/loader': 'generic', 'vm': '/vm/a4319627-7a25-3bad-580f-3f564f71d0bf', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'fc12pxe-run', 'domid': '8', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-07-28 22:26:41 2659] DEBUG (DevController:95) DevController: writing {'protocol': 'x86_64-abi', 'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/8/0'} to /local/domain/8/device/console/0.
[2010-07-28 22:26:41 2659] DEBUG (DevController:97) DevController: writing {'domain': 'fc12pxe-run', 'frontend': '/local/domain/8/device/console/0', 'uuid': '05f33a7a-1738-ffc4-3f63-d8debc27300c', 'frontend-id': '8', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/8/0.
[2010-07-28 22:26:41 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:26:41 2659] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-28 22:26:41 2659] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-28 22:26:42 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:26:42 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/8/0/hotplug-status.
[2010-07-28 22:26:42 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices console.
[2010-07-28 22:26:42 2659] DEBUG (DevController:144) Waiting for 0.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-28 22:26:42 2659] DEBUG (DevController:144) Waiting for 51712.
[2010-07-28 22:26:42 2659] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/8/51712/hotplug-status.
[2010-07-28 22:26:42 2659] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-28 22:26:42 2659] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-28 22:26:42 2659] INFO (XendDomain:1206) Domain fc12pxe-run (8) unpaused.
[2010-07-28 22:28:56 2659] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-28 22:28:56 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:28:56 2659] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 22:29:04 2659] INFO (XendDomainInfo:2088) Domain has shutdown: name=fc12pxe-run id=8 reason=poweroff.
[2010-07-28 22:29:04 2659] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=8
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:2424) Removing vbd/51712
[2010-07-28 22:29:05 2659] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51712
[2010-07-28 22:40:01 2659] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-28 22:41:03 2659] DEBUG (SrvServer:76) SrvServer.cleanup()
[2010-07-28 22:41:03 2659] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-28 22:41:03 2659] DEBUG (XMLRPCServer:241) XMLRPCServer.cleanup()
[2010-07-28 22:41:03 2659] DEBUG (XendDomain:632) cleanup_domains
[2010-07-28 22:41:05 2654] INFO (SrvDaemon:220) Xend exited with status 0.
[2010-07-28 23:21:35 2591] INFO (SrvDaemon:332) Xend Daemon started
[2010-07-28 23:21:35 2591] INFO (SrvDaemon:336) Xend changeset: Wed Jul 21 09:14:20 2010 +0100 21285:9508cfbb5241.
[2010-07-28 23:21:37 2591] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 9567033011L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 255, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1044736L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-07-28 23:21:37 2591] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-07-28 23:21:37 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-07-28 23:21:37 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1044736', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-07-28 23:21:37 2591] DEBUG (XendDomain:464) Adding Domain: 0
[2010-07-28 23:21:37 2591] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-07-28 23:21:37 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: event.get_record not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: event.get_all not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-07-28 23:21:37 2591] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-07-28 23:21:37 2591] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-07-28 23:21:37 2591] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-07-29 00:05:34 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-29 00:05:34 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:05:34 2591] DEBUG (balloon:220) Balloon: 997112 KiB free; need 16384; done.
[2010-07-29 00:05:34 2591] DEBUG (XendDomain:464) Adding Domain: 1
[2010-07-29 00:05:34 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 1 256
[2010-07-29 00:05:34 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:05:34 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:05:34 2591] INFO (image:822) Need to create platform device.[domid:1]
[2010-07-29 00:05:34 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:05:34 2591] INFO (image:182) buildDomain os=hvm dom=1 vcpus=1
[2010-07-29 00:05:34 2591] DEBUG (image:949) domid = 1
[2010-07-29 00:05:34 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:05:34 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:05:34 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:05:34 2591] DEBUG (image:953) target = 512
[2010-07-29 00:05:34 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:05:34 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:05:34 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:05:34 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:05:35 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'd65f6a7e-f2ff-49a4-7d22-72673a52f1e2'}
[2010-07-29 00:05:35 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/1/0'} to /local/domain/1/device/vfb/0.
[2010-07-29 00:05:35 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/1/device/vfb/0', 'uuid': 'd65f6a7e-f2ff-49a4-7d22-72673a52f1e2', 'frontend-id': '1', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/1/0.
[2010-07-29 00:05:35 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '3c033882-fa02-1b34-5964-27d76c2a8001', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:05:35 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/768'} to /local/domain/1/device/vbd/768.
[2010-07-29 00:05:35 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/1/device/vbd/768', 'uuid': '3c033882-fa02-1b34-5964-27d76c2a8001', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/768.
[2010-07-29 00:05:35 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a29f58bd-aef6-9d28-7821-c0352b35b0b0', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:05:35 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/5632'} to /local/domain/1/device/vbd/5632.
[2010-07-29 00:05:35 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/1/device/vbd/5632', 'uuid': 'a29f58bd-aef6-9d28-7821-c0352b35b0b0', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/5632.
[2010-07-29 00:05:35 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:74:3f:65', 'type': 'ioemu', 'uuid': '19b27def-bef7-1f7c-78b8-390493893068'}
[2010-07-29 00:05:35 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/1/0'} to /local/domain/1/device/vif/0.
[2010-07-29 00:05:35 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '19b27def-bef7-1f7c-78b8-390493893068', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:74:3f:65', 'frontend-id': '1', 'state': '1', 'online': '1', 'frontend': '/local/domain/1/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/1/0.
[2010-07-29 00:05:35 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '1', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:74:3f:65,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap1.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:05:35 2591] INFO (image:467) device model pid: 3792
[2010-07-29 00:05:35 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:05:35 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'f5fe7910-18ac-87c4-2252-869d3c42f1aa', 'on_reboot': 'restart', 'start_time': '1280387135.47', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:05:35 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/f5fe7910-18ac-87c4-2252-869d3c42f1aa', 'domid': '1', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:05:36 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 3792: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:05:36 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=1.
[2010-07-29 00:05:36 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 1.222838 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-07-29 00:05:36 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/1/0'} to /local/domain/1/device/console/0.
[2010-07-29 00:05:36 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/1/device/console/0', 'uuid': 'f13db264-a2b8-33a7-722a-b3ec8026c648', 'frontend-id': '1', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/1/0.
[2010-07-29 00:05:36 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=1.
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:05:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:05:37 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:05:37 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:05:37 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:05:37 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:05:37 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:05:37 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:10:39 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['type', 'ioemu']]]])
[2010-07-29 00:10:39 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:10:39 2591] DEBUG (balloon:220) Balloon: 997108 KiB free; need 16384; done.
[2010-07-29 00:10:39 2591] DEBUG (XendDomain:464) Adding Domain: 2
[2010-07-29 00:10:39 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 2 256
[2010-07-29 00:10:39 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:10:39 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:10:39 2591] INFO (image:822) Need to create platform device.[domid:2]
[2010-07-29 00:10:39 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:10:39 2591] INFO (image:182) buildDomain os=hvm dom=2 vcpus=1
[2010-07-29 00:10:39 2591] DEBUG (image:949) domid = 2
[2010-07-29 00:10:39 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:10:39 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:10:39 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:10:39 2591] DEBUG (image:953) target = 512
[2010-07-29 00:10:39 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:10:39 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:10:39 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:10:39 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:10:39 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '97a1d790-8401-d8e4-b99d-a6692462f558'}
[2010-07-29 00:10:39 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/2/0'} to /local/domain/2/device/vfb/0.
[2010-07-29 00:10:39 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/2/device/vfb/0', 'uuid': '97a1d790-8401-d8e4-b99d-a6692462f558', 'frontend-id': '2', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/2/0.
[2010-07-29 00:10:39 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '1a2577da-0b3f-1ebe-7dbf-ff086950297f', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:10:39 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/768'} to /local/domain/2/device/vbd/768.
[2010-07-29 00:10:39 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/2/device/vbd/768', 'uuid': '1a2577da-0b3f-1ebe-7dbf-ff086950297f', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '2', 'type': 'file'} to /local/domain/0/backend/vbd/2/768.
[2010-07-29 00:10:39 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '51689277-4f19-e52d-9f3d-7ada3f48c601', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:10:39 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/2/5632'} to /local/domain/2/device/vbd/5632.
[2010-07-29 00:10:39 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/2/device/vbd/5632', 'uuid': '51689277-4f19-e52d-9f3d-7ada3f48c601', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '2', 'type': 'file'} to /local/domain/0/backend/vbd/2/5632.
[2010-07-29 00:10:39 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:2d:00:3d', 'type': 'ioemu', 'uuid': 'a0209936-dc8d-ca3f-a15a-023e89992780'}
[2010-07-29 00:10:40 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/2/0'} to /local/domain/2/device/vif/0.
[2010-07-29 00:10:40 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': 'a0209936-dc8d-ca3f-a15a-023e89992780', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:2d:00:3d', 'frontend-id': '2', 'state': '1', 'online': '1', 'frontend': '/local/domain/2/device/vif/0', 'type': 'ioemu'} to /local/domain/0/backend/vif/2/0.
[2010-07-29 00:10:40 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '2', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:2d:00:3d,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap2.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:10:40 2591] INFO (image:467) device model pid: 4745
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'e2958ac5-1a0b-43be-a17e-45d219a44b42', 'on_reboot': 'restart', 'start_time': '1280387440.07', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:10:40 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:10:40 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 4745: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/e2958ac5-1a0b-43be-a17e-45d219a44b42', 'domid': '2', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:10:40 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=2.
[2010-07-29 00:10:40 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/2/0'} to /local/domain/2/device/console/0.
[2010-07-29 00:10:40 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/2/device/console/0', 'uuid': '6a23721b-b0d4-3b3b-349a-558d463e4e07', 'frontend-id': '2', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/2/0.
[2010-07-29 00:10:40 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=2.
[2010-07-29 00:10:40 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=2.
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:10:40 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.198074 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=2
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:10:40 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:13:44 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-29 00:13:44 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:13:44 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:13:44 2591] DEBUG (XendDomain:464) Adding Domain: 3
[2010-07-29 00:13:44 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 3 256
[2010-07-29 00:13:44 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:13:44 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:13:45 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:13:45 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:13:45 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:13:45 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:13:45 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:13:45 2591] INFO (image:822) Need to create platform device.[domid:3]
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:13:45 2591] INFO (image:182) buildDomain os=hvm dom=3 vcpus=1
[2010-07-29 00:13:45 2591] DEBUG (image:949) domid = 3
[2010-07-29 00:13:45 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:13:45 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:13:45 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:13:45 2591] DEBUG (image:953) target = 512
[2010-07-29 00:13:45 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:13:45 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:13:45 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:13:45 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:13:45 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'e0a0c506-4f9e-e7bd-f016-42cd2c64d783'}
[2010-07-29 00:13:45 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/3/0'} to /local/domain/3/device/vfb/0.
[2010-07-29 00:13:45 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/3/device/vfb/0', 'uuid': 'e0a0c506-4f9e-e7bd-f016-42cd2c64d783', 'frontend-id': '3', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/3/0.
[2010-07-29 00:13:45 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '64ed9651-15da-b565-0a75-5e6fb20aaf27', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:13:45 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/768'} to /local/domain/3/device/vbd/768.
[2010-07-29 00:13:45 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/3/device/vbd/768', 'uuid': '64ed9651-15da-b565-0a75-5e6fb20aaf27', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '3', 'type': 'file'} to /local/domain/0/backend/vbd/3/768.
[2010-07-29 00:13:45 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'ae61eb7d-d648-2ef9-0b39-14b06ac886fe', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:13:45 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/3/5632'} to /local/domain/3/device/vbd/5632.
[2010-07-29 00:13:45 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/3/device/vbd/5632', 'uuid': 'ae61eb7d-d648-2ef9-0b39-14b06ac886fe', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '3', 'type': 'file'} to /local/domain/0/backend/vbd/3/5632.
[2010-07-29 00:13:45 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:56:80:3d', 'uuid': '88252c45-8d01-5b83-686c-250738ff171f'}
[2010-07-29 00:13:45 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'mac': '00:16:3e:56:80:3d', 'handle': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/3/0'} to /local/domain/3/device/vif/0.
[2010-07-29 00:13:45 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '88252c45-8d01-5b83-686c-250738ff171f', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:56:80:3d', 'frontend-id': '3', 'state': '1', 'online': '1', 'frontend': '/local/domain/3/device/vif/0'} to /local/domain/0/backend/vif/3/0.
[2010-07-29 00:13:45 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '3', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:56:80:3d,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap3.0,bridge=eth0', '-M', 'xenfv']
[2010-07-29 00:13:45 2591] INFO (image:467) device model pid: 5243
[2010-07-29 00:13:45 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '7e448ab0-83ee-0e31-73f4-4e6e467ffc12', 'on_reboot': 'restart', 'start_time': '1280387625.23', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:13:45 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 5243: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/7e448ab0-83ee-0e31-73f4-4e6e467ffc12', 'domid': '3', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:13:45 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=3.
[2010-07-29 00:13:45 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/3/0'} to /local/domain/3/device/console/0.
[2010-07-29 00:13:45 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/3/device/console/0', 'uuid': '44816432-4ee9-362c-0fc3-98e8c3de4b74', 'frontend-id': '3', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/3/0.
[2010-07-29 00:13:45 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.129735 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=3
[2010-07-29 00:13:45 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=3.
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:13:45 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:15:42 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:15:42 2591] DEBUG (XendDomain:464) Adding Domain: 4
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 4 256
[2010-07-29 00:15:42 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:15:42 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:15:42 2591] INFO (image:822) Need to create platform device.[domid:4]
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:15:42 2591] INFO (image:182) buildDomain os=hvm dom=4 vcpus=1
[2010-07-29 00:15:42 2591] DEBUG (image:949) domid = 4
[2010-07-29 00:15:42 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:15:42 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:15:42 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:15:42 2591] DEBUG (image:953) target = 512
[2010-07-29 00:15:42 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:15:42 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:15:42 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:15:42 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:15:42 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '99dd108d-7b76-89bc-555d-285878f3517c'}
[2010-07-29 00:15:42 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/4/0'} to /local/domain/4/device/vfb/0.
[2010-07-29 00:15:42 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/4/device/vfb/0', 'uuid': '99dd108d-7b76-89bc-555d-285878f3517c', 'frontend-id': '4', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/4/0.
[2010-07-29 00:15:42 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'df48dcc5-19e1-9526-42d8-cfbf8c70f789', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:15:42 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/768'} to /local/domain/4/device/vbd/768.
[2010-07-29 00:15:42 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/4/device/vbd/768', 'uuid': 'df48dcc5-19e1-9526-42d8-cfbf8c70f789', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '4', 'type': 'file'} to /local/domain/0/backend/vbd/4/768.
[2010-07-29 00:15:42 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'd4a518c1-f76c-6920-a732-e077a8db2966', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:15:42 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/4/5632'} to /local/domain/4/device/vbd/5632.
[2010-07-29 00:15:42 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/4/device/vbd/5632', 'uuid': 'd4a518c1-f76c-6920-a732-e077a8db2966', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '4', 'type': 'file'} to /local/domain/0/backend/vbd/4/5632.
[2010-07-29 00:15:42 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '4', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-29 00:15:42 2591] INFO (image:467) device model pid: 5690
[2010-07-29 00:15:42 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '7b3927d3-291e-721f-6483-962b990910af', 'on_reboot': 'restart', 'start_time': '1280387742.48', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/7b3927d3-291e-721f-6483-962b990910af', 'domid': '4', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:15:42 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/4/0'} to /local/domain/4/device/console/0.
[2010-07-29 00:15:42 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/4/device/console/0', 'uuid': '18cd8408-aab0-ffab-4ed1-2059e11bf466', 'frontend-id': '4', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/4/0.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-29 00:15:42 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices console.
[2010-07-29 00:15:42 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-29 00:15:42 2591] DEBUG (DevController:144) Waiting for 768.
[2010-07-29 00:15:42 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/768/hotplug-status.
[2010-07-29 00:15:42 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:15:42 2591] DEBUG (DevController:144) Waiting for 5632.
[2010-07-29 00:15:42 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/4/5632/hotplug-status.
[2010-07-29 00:15:42 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-29 00:15:42 2591] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-29 00:15:42 2591] INFO (XendDomain:1206) Domain WinXPDomain (4) unpaused.
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:17:35 2591] INFO (XendDomainInfo:536) HVM save:remote shutdown dom 4!
[2010-07-29 00:17:35 2591] INFO (XendDomainInfo:2088) Domain has shutdown: name=WinXPDomain id=4 reason=poweroff.
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=4
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:17:35 2591] INFO (image:615) WinXPDomain device model terminated
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:17:35 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:17:50 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-29 00:17:50 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:17:50 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:17:51 2591] DEBUG (XendDomain:464) Adding Domain: 5
[2010-07-29 00:17:51 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 5 256
[2010-07-29 00:17:51 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:17:51 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:17:51 2591] INFO (image:822) Need to create platform device.[domid:5]
[2010-07-29 00:17:51 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:17:51 2591] INFO (image:182) buildDomain os=hvm dom=5 vcpus=1
[2010-07-29 00:17:51 2591] DEBUG (image:949) domid = 5
[2010-07-29 00:17:51 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:17:51 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:17:51 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:17:51 2591] DEBUG (image:953) target = 512
[2010-07-29 00:17:51 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:17:51 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:17:51 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:17:51 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:17:51 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '5f13ce74-b64c-bb04-7881-a2d07242eb7e'}
[2010-07-29 00:17:51 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/5/0'} to /local/domain/5/device/vfb/0.
[2010-07-29 00:17:51 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/5/device/vfb/0', 'uuid': '5f13ce74-b64c-bb04-7881-a2d07242eb7e', 'frontend-id': '5', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/5/0.
[2010-07-29 00:17:51 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'c972b91f-44bb-cf60-4303-f83b9c05d268', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:17:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/5/768'} to /local/domain/5/device/vbd/768.
[2010-07-29 00:17:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/5/device/vbd/768', 'uuid': 'c972b91f-44bb-cf60-4303-f83b9c05d268', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '5', 'type': 'file'} to /local/domain/0/backend/vbd/5/768.
[2010-07-29 00:17:51 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'ed464125-e878-5539-db86-5dc1f0565639', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:17:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/5/5632'} to /local/domain/5/device/vbd/5632.
[2010-07-29 00:17:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/5/device/vbd/5632', 'uuid': 'ed464125-e878-5539-db86-5dc1f0565639', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '5', 'type': 'file'} to /local/domain/0/backend/vbd/5/5632.
[2010-07-29 00:17:51 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '5', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-29 00:17:51 2591] INFO (image:467) device model pid: 6060
[2010-07-29 00:17:51 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:17:51 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'fe96f5fe-e59c-4eee-e3f7-a13fc2196d08', 'on_reboot': 'restart', 'start_time': '1280387871.25', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:17:51 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/fe96f5fe-e59c-4eee-e3f7-a13fc2196d08', 'domid': '5', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:17:51 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/5/0'} to /local/domain/5/device/console/0.
[2010-07-29 00:17:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/5/device/console/0', 'uuid': '9ab5a93d-253a-e2ba-f590-33d18f491b10', 'frontend-id': '5', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/5/0.
[2010-07-29 00:17:51 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices console.
[2010-07-29 00:17:51 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-29 00:17:51 2591] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-29 00:17:51 2591] DEBUG (DevController:144) Waiting for 768.
[2010-07-29 00:17:51 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/768/hotplug-status.
[2010-07-29 00:17:51 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:17:51 2591] DEBUG (DevController:144) Waiting for 5632.
[2010-07-29 00:17:51 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/5632/hotplug-status.
[2010-07-29 00:17:52 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/5/5632/hotplug-status.
[2010-07-29 00:17:52 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:17:52 2591] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-29 00:17:52 2591] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-29 00:17:52 2591] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-29 00:17:52 2591] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-29 00:17:52 2591] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-29 00:17:52 2591] INFO (XendDomain:1206) Domain WinXPDomain (5) unpaused.
[2010-07-29 00:21:30 2591] DEBUG (XendDomainInfo:519) XendDomainInfo.shutdown(poweroff)
[2010-07-29 00:21:30 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:21:30 2591] INFO (XendDomainInfo:536) HVM save:remote shutdown dom 5!
[2010-07-29 00:21:30 2591] INFO (XendDomainInfo:2088) Domain has shutdown: name=WinXPDomain id=5 reason=poweroff.
[2010-07-29 00:21:30 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=5
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:21:31 2591] INFO (image:615) WinXPDomain device model terminated
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2416) No device model
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:21:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:22:35 2591] DEBUG (XendDomainInfo:2416) No device model
[2010-07-29 00:22:35 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:23:50 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 0], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-29 00:23:50 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:23:50 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:23:50 2591] DEBUG (XendDomain:464) Adding Domain: 6
[2010-07-29 00:23:50 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 6 256
[2010-07-29 00:23:50 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:23:50 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:23:50 2591] INFO (image:822) Need to create platform device.[domid:6]
[2010-07-29 00:23:50 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:23:50 2591] INFO (image:182) buildDomain os=hvm dom=6 vcpus=1
[2010-07-29 00:23:50 2591] DEBUG (image:949) domid = 6
[2010-07-29 00:23:50 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:23:50 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:23:50 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:23:50 2591] DEBUG (image:953) target = 512
[2010-07-29 00:23:50 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:23:50 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:23:50 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:23:50 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:23:50 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'd7f15014-0370-66b6-472c-b7006bc4caab'}
[2010-07-29 00:23:50 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/6/0'} to /local/domain/6/device/vfb/0.
[2010-07-29 00:23:50 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/6/device/vfb/0', 'uuid': 'd7f15014-0370-66b6-472c-b7006bc4caab', 'frontend-id': '6', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/6/0.
[2010-07-29 00:23:50 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4827209d-4357-bb57-e366-e24fcc19ab3d', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:23:50 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/768'} to /local/domain/6/device/vbd/768.
[2010-07-29 00:23:50 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/6/device/vbd/768', 'uuid': '4827209d-4357-bb57-e366-e24fcc19ab3d', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '6', 'type': 'file'} to /local/domain/0/backend/vbd/6/768.
[2010-07-29 00:23:50 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '60c3e590-2fc2-e495-7605-da1cbe51e0f3', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:23:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/6/5632'} to /local/domain/6/device/vbd/5632.
[2010-07-29 00:23:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/6/device/vbd/5632', 'uuid': '60c3e590-2fc2-e495-7605-da1cbe51e0f3', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '6', 'type': 'file'} to /local/domain/0/backend/vbd/6/5632.
[2010-07-29 00:23:51 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:71:49:6a', 'uuid': 'bcb96965-fa71-e36e-08e7-820cfe420450'}
[2010-07-29 00:23:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'mac': '00:16:3e:71:49:6a', 'handle': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/6/0'} to /local/domain/6/device/vif/0.
[2010-07-29 00:23:51 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': 'bcb96965-fa71-e36e-08e7-820cfe420450', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:71:49:6a', 'frontend-id': '6', 'state': '1', 'online': '1', 'frontend': '/local/domain/6/device/vif/0'} to /local/domain/0/backend/vif/6/0.
[2010-07-29 00:23:51 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '6', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:71:49:6a,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap6.0,bridge=eth0', '-M', 'xenfv']
[2010-07-29 00:23:51 2591] INFO (image:467) device model pid: 6585
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '812f555e-f6dd-cd07-ddc0-953f4741f106', 'on_reboot': 'restart', 'start_time': '1280388231.1', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 0) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:23:51 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:23:51 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 6585: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/812f555e-f6dd-cd07-ddc0-953f4741f106', 'domid': '6', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:23:51 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=6.
[2010-07-29 00:23:51 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/6/0'} to /local/domain/6/device/console/0.
[2010-07-29 00:23:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/6/device/console/0', 'uuid': '3265921f-cfaf-d4c6-dc1d-fbf1f7ebd409', 'frontend-id': '6', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/6/0.
[2010-07-29 00:23:51 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=6.
[2010-07-29 00:23:51 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=6.
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:23:51 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.095318 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=6
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:23:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:24:50 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-29 00:24:50 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:24:50 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:24:50 2591] DEBUG (XendDomain:464) Adding Domain: 7
[2010-07-29 00:24:50 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 7 256
[2010-07-29 00:24:50 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:24:50 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:24:50 2591] INFO (image:822) Need to create platform device.[domid:7]
[2010-07-29 00:24:50 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:24:50 2591] INFO (image:182) buildDomain os=hvm dom=7 vcpus=1
[2010-07-29 00:24:50 2591] DEBUG (image:949) domid = 7
[2010-07-29 00:24:50 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:24:50 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:24:50 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:24:50 2591] DEBUG (image:953) target = 512
[2010-07-29 00:24:50 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:24:50 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:24:50 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:24:50 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:24:51 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '36a166ff-c3aa-3c76-2a93-8e65ef786bd3'}
[2010-07-29 00:24:51 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/7/0'} to /local/domain/7/device/vfb/0.
[2010-07-29 00:24:51 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/7/device/vfb/0', 'uuid': '36a166ff-c3aa-3c76-2a93-8e65ef786bd3', 'frontend-id': '7', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/7/0.
[2010-07-29 00:24:51 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'b8bcc46d-afad-ed24-efb1-4f1b81bc9026', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:24:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/7/768'} to /local/domain/7/device/vbd/768.
[2010-07-29 00:24:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/7/device/vbd/768', 'uuid': 'b8bcc46d-afad-ed24-efb1-4f1b81bc9026', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '7', 'type': 'file'} to /local/domain/0/backend/vbd/7/768.
[2010-07-29 00:24:51 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '0708ab39-3e18-1fa7-7bc3-ef90ae3f9f73', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:24:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/7/5632'} to /local/domain/7/device/vbd/5632.
[2010-07-29 00:24:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/7/device/vbd/5632', 'uuid': '0708ab39-3e18-1fa7-7bc3-ef90ae3f9f73', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '7', 'type': 'file'} to /local/domain/0/backend/vbd/7/5632.
[2010-07-29 00:24:51 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:36:d5:06', 'uuid': '65248cb9-7773-cecc-3fdd-67a5e3744e30'}
[2010-07-29 00:24:51 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'mac': '00:16:3e:36:d5:06', 'handle': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/7/0'} to /local/domain/7/device/vif/0.
[2010-07-29 00:24:51 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '65248cb9-7773-cecc-3fdd-67a5e3744e30', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:36:d5:06', 'frontend-id': '7', 'state': '1', 'online': '1', 'frontend': '/local/domain/7/device/vif/0'} to /local/domain/0/backend/vif/7/0.
[2010-07-29 00:24:51 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '7', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:36:d5:06,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap7.0,bridge=eth0', '-M', 'xenfv']
[2010-07-29 00:24:51 2591] INFO (image:467) device model pid: 6976
[2010-07-29 00:24:51 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'd3937e76-0761-3c95-dd0b-ede1b947fef7', 'on_reboot': 'restart', 'start_time': '1280388291.14', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:24:51 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 6976: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/d3937e76-0761-3c95-dd0b-ede1b947fef7', 'domid': '7', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:24:51 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=7.
[2010-07-29 00:24:51 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/7/0'} to /local/domain/7/device/console/0.
[2010-07-29 00:24:51 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/7/device/console/0', 'uuid': '77506906-895e-d71a-b279-466396a7d7d9', 'frontend-id': '7', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/7/0.
[2010-07-29 00:24:51 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.078379 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=7
[2010-07-29 00:24:51 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=7.
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:24:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:24:51 2591] ERROR (XendConfig:1172) dumping sxp from device controllers
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendConfig.py", line 1158, in to_sxp
configs = controller.configurations(txn)
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 242, in configurations
return map(lambda x: self.configuration(x, transaction), self.deviceIDs(transaction))
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 242, in <lambda>
return map(lambda x: self.configuration(x, transaction), self.deviceIDs(transaction))
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 249, in configuration
configDict = self.getDeviceConfiguration(devid, transaction)
File "/usr/lib64/python2.6/site-packages/xen/xend/server/netif.py", line 194, in getDeviceConfiguration
y = self.readBackendTxn(transaction, devid, x)
File "/usr/lib64/python2.6/site-packages/xen/xend/server/DevController.py", line 447, in readBackendTxn
raise VmError("Device %s not connected" % devid)
VmError: Device 0 not connected
[2010-07-29 00:26:30 2591] DEBUG (XendDomainInfo:2416) No device model
[2010-07-29 00:26:30 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:34:32 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:34:32 2591] DEBUG (XendDomain:464) Adding Domain: 8
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 8 256
[2010-07-29 00:34:32 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:34:32 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:34:32 2591] INFO (image:822) Need to create platform device.[domid:8]
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:34:32 2591] INFO (image:182) buildDomain os=hvm dom=8 vcpus=1
[2010-07-29 00:34:32 2591] DEBUG (image:949) domid = 8
[2010-07-29 00:34:32 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:34:32 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:34:32 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:34:32 2591] DEBUG (image:953) target = 512
[2010-07-29 00:34:32 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:34:32 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:34:32 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:34:32 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:34:32 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'ad6fcffc-ae55-b962-2f1f-1a79916dd022'}
[2010-07-29 00:34:32 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/8/0'} to /local/domain/8/device/vfb/0.
[2010-07-29 00:34:32 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/8/device/vfb/0', 'uuid': 'ad6fcffc-ae55-b962-2f1f-1a79916dd022', 'frontend-id': '8', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/8/0.
[2010-07-29 00:34:32 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'b135670c-e50d-d1aa-7d05-19f6c92ad250', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:34:32 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/8/768'} to /local/domain/8/device/vbd/768.
[2010-07-29 00:34:32 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/8/device/vbd/768', 'uuid': 'b135670c-e50d-d1aa-7d05-19f6c92ad250', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '8', 'type': 'file'} to /local/domain/0/backend/vbd/8/768.
[2010-07-29 00:34:32 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '6ecc7e5c-42ec-34cc-d23a-ba3adb9b8792', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:34:32 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/8/5632'} to /local/domain/8/device/vbd/5632.
[2010-07-29 00:34:32 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/8/device/vbd/5632', 'uuid': '6ecc7e5c-42ec-34cc-d23a-ba3adb9b8792', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '8', 'type': 'file'} to /local/domain/0/backend/vbd/8/5632.
[2010-07-29 00:34:32 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': 'cc2316ef-6f56-7889-ca26-9a7891997593'}
[2010-07-29 00:34:32 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/8/0'} to /local/domain/8/device/vif/0.
[2010-07-29 00:34:32 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': 'cc2316ef-6f56-7889-ca26-9a7891997593', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '8', 'state': '1', 'online': '1', 'frontend': '/local/domain/8/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/8/0.
[2010-07-29 00:34:32 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '8', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap8.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:34:32 2591] INFO (image:467) device model pid: 7539
[2010-07-29 00:34:32 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '27d94c78-213b-4611-6763-3f86bf21b32c', 'on_reboot': 'restart', 'start_time': '1280388872.68', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/27d94c78-213b-4611-6763-3f86bf21b32c', 'domid': '8', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:34:32 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 7539: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:34:32 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=8.
[2010-07-29 00:34:32 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.054485 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:34:32 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=8
[2010-07-29 00:34:32 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/8/0'} to /local/domain/8/device/console/0.
[2010-07-29 00:34:32 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/8/device/console/0', 'uuid': 'cb07fa06-de8d-4b5b-43a9-971bd9544e9b', 'frontend-id': '8', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/8/0.
[2010-07-29 00:34:33 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=8.
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:34:33 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:37:58 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:37:58 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:37:58 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:37:58 2591] DEBUG (XendDomain:464) Adding Domain: 9
[2010-07-29 00:37:58 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 9 256
[2010-07-29 00:37:58 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:37:58 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:37:58 2591] INFO (image:822) Need to create platform device.[domid:9]
[2010-07-29 00:37:58 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:37:58 2591] INFO (image:182) buildDomain os=hvm dom=9 vcpus=1
[2010-07-29 00:37:58 2591] DEBUG (image:949) domid = 9
[2010-07-29 00:37:58 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:37:58 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:37:58 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:37:58 2591] DEBUG (image:953) target = 512
[2010-07-29 00:37:58 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:37:58 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:37:58 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:37:58 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:37:59 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '5ff6b5a1-2a50-e525-3ac5-eed8a802e471'}
[2010-07-29 00:37:59 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/9/0'} to /local/domain/9/device/vfb/0.
[2010-07-29 00:37:59 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/9/device/vfb/0', 'uuid': '5ff6b5a1-2a50-e525-3ac5-eed8a802e471', 'frontend-id': '9', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/9/0.
[2010-07-29 00:37:59 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '8437bcac-38ee-9385-391a-3c7e24f07fcf', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:37:59 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/9/768'} to /local/domain/9/device/vbd/768.
[2010-07-29 00:37:59 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/9/device/vbd/768', 'uuid': '8437bcac-38ee-9385-391a-3c7e24f07fcf', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '9', 'type': 'file'} to /local/domain/0/backend/vbd/9/768.
[2010-07-29 00:37:59 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'b5aa7789-9bd5-2911-c3a4-25986242a620', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:37:59 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/9/5632'} to /local/domain/9/device/vbd/5632.
[2010-07-29 00:37:59 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/9/device/vbd/5632', 'uuid': 'b5aa7789-9bd5-2911-c3a4-25986242a620', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '9', 'type': 'file'} to /local/domain/0/backend/vbd/9/5632.
[2010-07-29 00:37:59 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': '611beee1-c333-1094-6381-58917369b40e'}
[2010-07-29 00:37:59 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/9/0'} to /local/domain/9/device/vif/0.
[2010-07-29 00:37:59 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '611beee1-c333-1094-6381-58917369b40e', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '9', 'state': '1', 'online': '1', 'frontend': '/local/domain/9/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/9/0.
[2010-07-29 00:37:59 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '9', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap9.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:37:59 2591] INFO (image:467) device model pid: 8008
[2010-07-29 00:37:59 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'fc2a45f7-70a5-b41d-a561-3e806ba49604', 'on_reboot': 'restart', 'start_time': '1280389079.16', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:37:59 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 8008: malfunctioning (closed sentinel), killed; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/fc2a45f7-70a5-b41d-a561-3e806ba49604', 'domid': '9', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:37:59 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=9.
[2010-07-29 00:37:59 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/9/0'} to /local/domain/9/device/console/0.
[2010-07-29 00:37:59 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/9/device/console/0', 'uuid': 'd1625e48-aacc-6003-a8d6-d50053791336', 'frontend-id': '9', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/9/0.
[2010-07-29 00:37:59 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=9.
[2010-07-29 00:37:59 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=9.
[2010-07-29 00:37:59 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.080399 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=9
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:37:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:38:33 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:38:33 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:38:33 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:38:33 2591] DEBUG (XendDomain:464) Adding Domain: 10
[2010-07-29 00:38:33 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 10 256
[2010-07-29 00:38:33 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:38:33 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:38:33 2591] INFO (image:822) Need to create platform device.[domid:10]
[2010-07-29 00:38:33 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:38:33 2591] INFO (image:182) buildDomain os=hvm dom=10 vcpus=1
[2010-07-29 00:38:33 2591] DEBUG (image:949) domid = 10
[2010-07-29 00:38:33 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:38:33 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:38:33 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:38:33 2591] DEBUG (image:953) target = 512
[2010-07-29 00:38:33 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:38:33 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:38:33 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:38:33 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:38:33 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '80ccc02a-0f1b-bc5f-2b52-47ca242ab215'}
[2010-07-29 00:38:33 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/10/0'} to /local/domain/10/device/vfb/0.
[2010-07-29 00:38:33 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/10/device/vfb/0', 'uuid': '80ccc02a-0f1b-bc5f-2b52-47ca242ab215', 'frontend-id': '10', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/10/0.
[2010-07-29 00:38:34 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '2069cb6d-0162-4473-2a6c-97abe883d2d2', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:38:34 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/10/768'} to /local/domain/10/device/vbd/768.
[2010-07-29 00:38:34 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/10/device/vbd/768', 'uuid': '2069cb6d-0162-4473-2a6c-97abe883d2d2', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '10', 'type': 'file'} to /local/domain/0/backend/vbd/10/768.
[2010-07-29 00:38:34 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'a273fef8-b7b2-d243-2bed-bdbc1c068f52', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:38:34 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/10/5632'} to /local/domain/10/device/vbd/5632.
[2010-07-29 00:38:34 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/10/device/vbd/5632', 'uuid': 'a273fef8-b7b2-d243-2bed-bdbc1c068f52', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '10', 'type': 'file'} to /local/domain/0/backend/vbd/10/5632.
[2010-07-29 00:38:34 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': 'e9a68163-4369-8cc7-5b96-6defcbe349b4'}
[2010-07-29 00:38:34 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/10/0'} to /local/domain/10/device/vif/0.
[2010-07-29 00:38:34 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': 'e9a68163-4369-8cc7-5b96-6defcbe349b4', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '10', 'state': '1', 'online': '1', 'frontend': '/local/domain/10/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/10/0.
[2010-07-29 00:38:34 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '10', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap10.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:38:34 2591] INFO (image:467) device model pid: 8558
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '276cf1af-1090-c7a3-06bb-8447157f49c8', 'on_reboot': 'restart', 'start_time': '1280389114.1', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:38:34 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/276cf1af-1090-c7a3-06bb-8447157f49c8', 'domid': '10', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:38:34 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 8558: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:38:34 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/10/0'} to /local/domain/10/device/console/0.
[2010-07-29 00:38:34 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/10/device/console/0', 'uuid': '216cbd9a-3cb1-3c17-3a90-229a1dc5e261', 'frontend-id': '10', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/10/0.
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:38:34 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 00:38:34 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=10.
[2010-07-29 00:38:34 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 00:38:34 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.236729 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=10
[2010-07-29 00:38:34 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:38:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:38:34 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:38:34 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:39:35 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:39:35 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:39:35 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:39:58 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:39:58 2591] DEBUG (XendDomain:464) Adding Domain: 11
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 11 256
[2010-07-29 00:39:58 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:39:58 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:39:58 2591] INFO (image:822) Need to create platform device.[domid:11]
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:39:58 2591] INFO (image:182) buildDomain os=hvm dom=11 vcpus=1
[2010-07-29 00:39:58 2591] DEBUG (image:949) domid = 11
[2010-07-29 00:39:58 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:39:58 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:39:58 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:39:58 2591] DEBUG (image:953) target = 512
[2010-07-29 00:39:58 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:39:58 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:39:58 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:39:58 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:39:58 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'aba0723d-8828-9d02-1d42-912e9da54589'}
[2010-07-29 00:39:58 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/11/0'} to /local/domain/11/device/vfb/0.
[2010-07-29 00:39:58 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/11/device/vfb/0', 'uuid': 'aba0723d-8828-9d02-1d42-912e9da54589', 'frontend-id': '11', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/11/0.
[2010-07-29 00:39:58 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'f134bdb4-571f-77f0-20e2-41874395a494', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:39:58 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/11/768'} to /local/domain/11/device/vbd/768.
[2010-07-29 00:39:58 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/11/device/vbd/768', 'uuid': 'f134bdb4-571f-77f0-20e2-41874395a494', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '11', 'type': 'file'} to /local/domain/0/backend/vbd/11/768.
[2010-07-29 00:39:58 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '1efd8a22-eb77-4af9-70ba-366576047df4', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:39:58 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/11/5632'} to /local/domain/11/device/vbd/5632.
[2010-07-29 00:39:58 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/11/device/vbd/5632', 'uuid': '1efd8a22-eb77-4af9-70ba-366576047df4', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '11', 'type': 'file'} to /local/domain/0/backend/vbd/11/5632.
[2010-07-29 00:39:58 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': 'cee72af3-71ee-8028-95fa-930fd3579c95'}
[2010-07-29 00:39:58 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/11/0'} to /local/domain/11/device/vif/0.
[2010-07-29 00:39:58 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': 'cee72af3-71ee-8028-95fa-930fd3579c95', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '11', 'state': '1', 'online': '1', 'frontend': '/local/domain/11/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/11/0.
[2010-07-29 00:39:58 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '11', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap11.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:39:58 2591] INFO (image:467) device model pid: 10958
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '10569cce-3765-06fe-145d-81d087685137', 'on_reboot': 'restart', 'start_time': '1280389198.59', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/10569cce-3765-06fe-145d-81d087685137', 'domid': '11', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:39:58 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/11/0'} to /local/domain/11/device/console/0.
[2010-07-29 00:39:58 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/11/device/console/0', 'uuid': '16061af2-1c5a-7025-e890-fdb009d736a7', 'frontend-id': '11', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/11/0.
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:39:58 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:39:58 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 10958: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:39:58 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=11.
[2010-07-29 00:39:58 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.176008 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=11
[2010-07-29 00:39:58 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:39:59 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:40:23 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:40:23 2591] DEBUG (XendDomain:464) Adding Domain: 12
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 12 256
[2010-07-29 00:40:23 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:40:23 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:40:23 2591] INFO (image:822) Need to create platform device.[domid:12]
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:40:23 2591] INFO (image:182) buildDomain os=hvm dom=12 vcpus=1
[2010-07-29 00:40:23 2591] DEBUG (image:949) domid = 12
[2010-07-29 00:40:23 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:40:23 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:40:23 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:40:23 2591] DEBUG (image:953) target = 512
[2010-07-29 00:40:23 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:40:23 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:40:23 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:40:23 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:40:23 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '3e65d320-61db-e348-4522-2471421496c4'}
[2010-07-29 00:40:23 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/12/0'} to /local/domain/12/device/vfb/0.
[2010-07-29 00:40:23 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/12/device/vfb/0', 'uuid': '3e65d320-61db-e348-4522-2471421496c4', 'frontend-id': '12', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/12/0.
[2010-07-29 00:40:23 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '30eb0d8c-18bc-1345-690b-6cb8fa613cce', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:40:23 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/12/768'} to /local/domain/12/device/vbd/768.
[2010-07-29 00:40:23 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/12/device/vbd/768', 'uuid': '30eb0d8c-18bc-1345-690b-6cb8fa613cce', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '12', 'type': 'file'} to /local/domain/0/backend/vbd/12/768.
[2010-07-29 00:40:23 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '8ef5b534-d007-47ca-497f-7ffbc298651d', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:40:23 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/12/5632'} to /local/domain/12/device/vbd/5632.
[2010-07-29 00:40:23 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/12/device/vbd/5632', 'uuid': '8ef5b534-d007-47ca-497f-7ffbc298651d', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '12', 'type': 'file'} to /local/domain/0/backend/vbd/12/5632.
[2010-07-29 00:40:23 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': '600cbab7-30ee-45b2-cda0-8ccfe946161d'}
[2010-07-29 00:40:23 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/12/0'} to /local/domain/12/device/vif/0.
[2010-07-29 00:40:23 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '600cbab7-30ee-45b2-cda0-8ccfe946161d', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '12', 'state': '1', 'online': '1', 'frontend': '/local/domain/12/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/12/0.
[2010-07-29 00:40:23 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '12', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap12.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:40:23 2591] INFO (image:467) device model pid: 12178
[2010-07-29 00:40:23 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:40:23 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 12178: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '0a495701-3f79-17a9-aaf5-8b2644258964', 'on_reboot': 'restart', 'start_time': '1280389223.65', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/0a495701-3f79-17a9-aaf5-8b2644258964', 'domid': '12', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:40:23 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=12.
[2010-07-29 00:40:23 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.045139 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=12
[2010-07-29 00:40:23 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/12/0'} to /local/domain/12/device/console/0.
[2010-07-29 00:40:23 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/12/device/console/0', 'uuid': '3e0316d5-6566-e732-608c-9bb18341b5c9', 'frontend-id': '12', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/12/0.
[2010-07-29 00:40:23 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=12.
[2010-07-29 00:40:23 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=12.
[2010-07-29 00:40:23 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:40:24 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:40:50 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:40:50 2591] DEBUG (XendDomain:464) Adding Domain: 13
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 13 256
[2010-07-29 00:40:50 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:40:50 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:40:50 2591] INFO (image:822) Need to create platform device.[domid:13]
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:40:50 2591] INFO (image:182) buildDomain os=hvm dom=13 vcpus=1
[2010-07-29 00:40:50 2591] DEBUG (image:949) domid = 13
[2010-07-29 00:40:50 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:40:50 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:40:50 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:40:50 2591] DEBUG (image:953) target = 512
[2010-07-29 00:40:50 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:40:50 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:40:50 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:40:50 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:40:50 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '53d39f40-8e91-2bb8-edc0-752b842310b6'}
[2010-07-29 00:40:50 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/13/0'} to /local/domain/13/device/vfb/0.
[2010-07-29 00:40:50 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/13/device/vfb/0', 'uuid': '53d39f40-8e91-2bb8-edc0-752b842310b6', 'frontend-id': '13', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/13/0.
[2010-07-29 00:40:50 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'c92782e4-48d5-4fe0-c488-1583b31720ed', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:40:50 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/13/768'} to /local/domain/13/device/vbd/768.
[2010-07-29 00:40:50 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/13/device/vbd/768', 'uuid': 'c92782e4-48d5-4fe0-c488-1583b31720ed', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '13', 'type': 'file'} to /local/domain/0/backend/vbd/13/768.
[2010-07-29 00:40:50 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '739289f9-914e-42a8-908f-9a4a74d45ce1', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:40:50 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/13/5632'} to /local/domain/13/device/vbd/5632.
[2010-07-29 00:40:50 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/13/device/vbd/5632', 'uuid': '739289f9-914e-42a8-908f-9a4a74d45ce1', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '13', 'type': 'file'} to /local/domain/0/backend/vbd/13/5632.
[2010-07-29 00:40:50 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': 'a1881483-27ac-2d14-3eed-5144e1a2da2e'}
[2010-07-29 00:40:50 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/13/0'} to /local/domain/13/device/vif/0.
[2010-07-29 00:40:50 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': 'a1881483-27ac-2d14-3eed-5144e1a2da2e', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '13', 'state': '1', 'online': '1', 'frontend': '/local/domain/13/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/13/0.
[2010-07-29 00:40:50 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '13', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap13.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:40:50 2591] INFO (image:467) device model pid: 13975
[2010-07-29 00:40:50 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '57c84612-beed-73ff-340c-b1a6a1c5dab8', 'on_reboot': 'restart', 'start_time': '1280389250.42', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:40:50 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 13975: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/57c84612-beed-73ff-340c-b1a6a1c5dab8', 'domid': '13', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:40:50 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=13.
[2010-07-29 00:40:50 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/13/0'} to /local/domain/13/device/console/0.
[2010-07-29 00:40:50 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/13/device/console/0', 'uuid': 'c0615adc-3135-1d99-65b6-298f69d8e1bd', 'frontend-id': '13', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/13/0.
[2010-07-29 00:40:50 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=13.
[2010-07-29 00:40:50 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=13.
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:40:50 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 00:40:50 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 00:40:50 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.406694 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:40:50 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=13
[2010-07-29 00:40:50 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:40:51 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/13/0/hotplug-status.
[2010-07-29 00:40:51 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices console.
[2010-07-29 00:40:51 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:40:51 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-29 00:40:51 2591] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-29 00:40:51 2591] ERROR (XendDomain:1209) domain_unpause
Traceback (most recent call last):
File "/usr/lib64/python2.6/site-packages/xen/xend/XendDomain.py", line 1198, in domain_unpause
raise XendInvalidDomain(str(domid))
XendInvalidDomain: <Fault 3: 'WinXPDomain'>
[2010-07-29 00:42:30 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:42:30 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:42:30 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:42:30 2591] DEBUG (XendDomain:464) Adding Domain: 14
[2010-07-29 00:42:30 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 14 256
[2010-07-29 00:42:30 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:42:30 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:42:30 2591] INFO (image:822) Need to create platform device.[domid:14]
[2010-07-29 00:42:30 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:42:30 2591] INFO (image:182) buildDomain os=hvm dom=14 vcpus=1
[2010-07-29 00:42:30 2591] DEBUG (image:949) domid = 14
[2010-07-29 00:42:30 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:42:30 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:42:30 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:42:30 2591] DEBUG (image:953) target = 512
[2010-07-29 00:42:30 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:42:30 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:42:30 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:42:30 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:42:31 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': '5de4c8cf-8e3f-eaf0-d872-43654e80fb71'}
[2010-07-29 00:42:31 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/14/0'} to /local/domain/14/device/vfb/0.
[2010-07-29 00:42:31 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/14/device/vfb/0', 'uuid': '5de4c8cf-8e3f-eaf0-d872-43654e80fb71', 'frontend-id': '14', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/14/0.
[2010-07-29 00:42:31 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'c0774716-0bd2-4482-9a3c-3be2caf2fa42', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:42:31 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/14/768'} to /local/domain/14/device/vbd/768.
[2010-07-29 00:42:31 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/14/device/vbd/768', 'uuid': 'c0774716-0bd2-4482-9a3c-3be2caf2fa42', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '14', 'type': 'file'} to /local/domain/0/backend/vbd/14/768.
[2010-07-29 00:42:31 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '817771a6-feb9-cd76-def5-94feb54a764e', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:42:31 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/14/5632'} to /local/domain/14/device/vbd/5632.
[2010-07-29 00:42:31 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/14/device/vbd/5632', 'uuid': '817771a6-feb9-cd76-def5-94feb54a764e', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '14', 'type': 'file'} to /local/domain/0/backend/vbd/14/5632.
[2010-07-29 00:42:31 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': '5e05412d-d4c2-b5e8-a7d1-f47d88ecccd7'}
[2010-07-29 00:42:31 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/14/0'} to /local/domain/14/device/vif/0.
[2010-07-29 00:42:31 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '5e05412d-d4c2-b5e8-a7d1-f47d88ecccd7', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '14', 'state': '1', 'online': '1', 'frontend': '/local/domain/14/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/14/0.
[2010-07-29 00:42:31 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '14', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap14.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:42:31 2591] INFO (image:467) device model pid: 18273
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '9cc32346-cb71-1e0a-ef77-0905f5483393', 'on_reboot': 'restart', 'start_time': '1280389351.11', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/9cc32346-cb71-1e0a-ef77-0905f5483393', 'domid': '14', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:42:31 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:42:31 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 18273: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:42:31 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/14/0'} to /local/domain/14/device/console/0.
[2010-07-29 00:42:31 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/14/device/console/0', 'uuid': '2bf824a5-3c72-5884-2a7f-8e498856eb24', 'frontend-id': '14', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/14/0.
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:42:31 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=14.
[2010-07-29 00:42:31 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.158148 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=14
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:42:31 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:42:35 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'xenbr0'], ['mac', '00:16:3e:00:00:11'], ['type', 'ioemu'], ['model', 'ne2k_pci']]]])
[2010-07-29 00:42:35 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:42:35 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:42:35 2591] DEBUG (XendDomain:464) Adding Domain: 15
[2010-07-29 00:42:35 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 15 256
[2010-07-29 00:42:35 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:42:35 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:42:35 2591] INFO (image:822) Need to create platform device.[domid:15]
[2010-07-29 00:42:35 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:42:35 2591] INFO (image:182) buildDomain os=hvm dom=15 vcpus=1
[2010-07-29 00:42:35 2591] DEBUG (image:949) domid = 15
[2010-07-29 00:42:35 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:42:35 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:42:35 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:42:35 2591] DEBUG (image:953) target = 512
[2010-07-29 00:42:35 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:42:35 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:42:35 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:42:35 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:42:36 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'c841fc73-7250-1add-77ee-d4b69e67d9e7'}
[2010-07-29 00:42:36 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/15/0'} to /local/domain/15/device/vfb/0.
[2010-07-29 00:42:36 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/15/device/vfb/0', 'uuid': 'c841fc73-7250-1add-77ee-d4b69e67d9e7', 'frontend-id': '15', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/15/0.
[2010-07-29 00:42:36 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '2431ed4c-c510-5c67-b04c-7b0ab26839fa', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:42:36 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/15/768'} to /local/domain/15/device/vbd/768.
[2010-07-29 00:42:36 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/15/device/vbd/768', 'uuid': '2431ed4c-c510-5c67-b04c-7b0ab26839fa', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '15', 'type': 'file'} to /local/domain/0/backend/vbd/15/768.
[2010-07-29 00:42:36 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '6b10363e-defa-5b03-9ae1-3d6f4ec72174', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:42:36 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/15/5632'} to /local/domain/15/device/vbd/5632.
[2010-07-29 00:42:36 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/15/device/vbd/5632', 'uuid': '6b10363e-defa-5b03-9ae1-3d6f4ec72174', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '15', 'type': 'file'} to /local/domain/0/backend/vbd/15/5632.
[2010-07-29 00:42:36 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'xenbr0', 'mac': '00:16:3e:00:00:11', 'type': 'ioemu', 'model': 'ne2k_pci', 'uuid': '4053d363-ba2f-8dc2-cdc2-cd911cd5ebf5'}
[2010-07-29 00:42:36 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vif/15/0'} to /local/domain/15/device/vif/0.
[2010-07-29 00:42:36 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'xenbr0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '4053d363-ba2f-8dc2-cdc2-cd911cd5ebf5', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:00:00:11', 'frontend-id': '15', 'state': '1', 'online': '1', 'frontend': '/local/domain/15/device/vif/0', 'model': 'ne2k_pci', 'type': 'ioemu'} to /local/domain/0/backend/vif/15/0.
[2010-07-29 00:42:36 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '15', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:00:00:11,model=ne2k_pci', '-net', 'tap,vlan=1,ifname=tap15.0,bridge=xenbr0', '-M', 'xenfv']
[2010-07-29 00:42:36 2591] INFO (image:467) device model pid: 18802
[2010-07-29 00:42:36 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': 'd54f1c41-fa51-b53f-268b-3dba4fb05910', 'on_reboot': 'restart', 'start_time': '1280389356.2', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:42:36 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 18802: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/d54f1c41-fa51-b53f-268b-3dba4fb05910', 'domid': '15', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:42:36 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=15.
[2010-07-29 00:42:36 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.116890 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=15
[2010-07-29 00:42:36 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/15/0'} to /local/domain/15/device/console/0.
[2010-07-29 00:42:36 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/15/device/console/0', 'uuid': 'ac0bef93-3a81-d5ae-9529-45eea3830a72', 'frontend-id': '15', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/15/0.
[2010-07-29 00:42:36 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=15.
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:42:36 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:44:23 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:44:23 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]], ['device', ['vif', ['bridge', 'eth0']]]])
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:46:33 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:46:33 2591] DEBUG (XendDomain:464) Adding Domain: 16
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 16 256
[2010-07-29 00:46:33 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:46:33 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:46:33 2591] INFO (image:822) Need to create platform device.[domid:16]
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:46:33 2591] INFO (image:182) buildDomain os=hvm dom=16 vcpus=1
[2010-07-29 00:46:33 2591] DEBUG (image:949) domid = 16
[2010-07-29 00:46:33 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:46:33 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:46:33 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:46:33 2591] DEBUG (image:953) target = 512
[2010-07-29 00:46:33 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:46:33 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:46:33 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:46:33 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:46:33 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'other_config': {'vncunused': 1, 'vnc': '1'}, 'vnc': '1', 'uuid': 'c5c98dc8-6aa8-f2c2-f8c0-06e7f473f962'}
[2010-07-29 00:46:33 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/16/0'} to /local/domain/16/device/vfb/0.
[2010-07-29 00:46:33 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/16/device/vfb/0', 'uuid': 'c5c98dc8-6aa8-f2c2-f8c0-06e7f473f962', 'frontend-id': '16', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/16/0.
[2010-07-29 00:46:33 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'd5c24347-5a35-8cbb-2c59-0730d1a647e2', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:46:33 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/16/768'} to /local/domain/16/device/vbd/768.
[2010-07-29 00:46:33 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/16/device/vbd/768', 'uuid': 'd5c24347-5a35-8cbb-2c59-0730d1a647e2', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '16', 'type': 'file'} to /local/domain/0/backend/vbd/16/768.
[2010-07-29 00:46:33 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4a77e8a4-fbd8-46e8-1da0-f7c68765aca4', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:46:33 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/16/5632'} to /local/domain/16/device/vbd/5632.
[2010-07-29 00:46:33 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/16/device/vbd/5632', 'uuid': '4a77e8a4-fbd8-46e8-1da0-f7c68765aca4', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '16', 'type': 'file'} to /local/domain/0/backend/vbd/16/5632.
[2010-07-29 00:46:33 2591] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'eth0', 'mac': '00:16:3e:1d:43:05', 'uuid': '66cc077c-dcaa-8dc7-8443-2c8bbeb5ceee'}
[2010-07-29 00:46:33 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'mac': '00:16:3e:1d:43:05', 'handle': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/16/0'} to /local/domain/16/device/vif/0.
[2010-07-29 00:46:33 2591] DEBUG (DevController:97) DevController: writing {'bridge': 'eth0', 'domain': 'WinXPDomain', 'handle': '0', 'uuid': '66cc077c-dcaa-8dc7-8443-2c8bbeb5ceee', 'script': '/etc/xen/scripts/vif-bridge', 'mac': '00:16:3e:1d:43:05', 'frontend-id': '16', 'state': '1', 'online': '1', 'frontend': '/local/domain/16/device/vif/0'} to /local/domain/0/backend/vif/16/0.
[2010-07-29 00:46:33 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '16', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'nic,vlan=1,macaddr=00:16:3e:1d:43:05,model=rtl8139', '-net', 'tap,vlan=1,ifname=tap16.0,bridge=eth0', '-M', 'xenfv']
[2010-07-29 00:46:33 2591] INFO (image:467) device model pid: 25815
[2010-07-29 00:46:33 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '4d86542b-2ac5-139b-a317-ac869b7862e0', 'on_reboot': 'restart', 'start_time': '1280389593.76', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:46:33 2591] WARNING (image:552) domain WinXPDomain: device model failure: pid 25815: exited with nonzero status 1; see /var/log/xen/qemu-dm-WinXPDomain.log
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/4d86542b-2ac5-139b-a317-ac869b7862e0', 'domid': '16', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:46:33 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=16.
[2010-07-29 00:46:33 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/16/0'} to /local/domain/16/device/console/0.
[2010-07-29 00:46:33 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/16/device/console/0', 'uuid': 'fb5836eb-eb44-6694-abfd-b203f011ef6d', 'frontend-id': '16', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/16/0.
[2010-07-29 00:46:33 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=16.
[2010-07-29 00:46:33 2591] WARNING (XendDomainInfo:2071) Domain has crashed: name=WinXPDomain id=16.
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:46:33 2591] ERROR (XendDomainInfo:2205) VM WinXPDomain restarting too fast (Elapsed time: 0.238232 seconds). Refusing to restart to avoid loops.
[2010-07-29 00:46:33 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=16
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:46:34 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:46:34 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:46:34 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:101) XendDomainInfo.create(['vm', ['name', 'WinXPDomain'], ['memory', 512], ['on_reboot', 'restart'], ['on_crash', 'restart'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['vcpus', 1], ['oos', 1], ['image', ['hvm', ['kernel', 'hvmloader'], ['videoram', 4], ['serial', 'pty'], ['acpi', 1], ['apic', 1], ['boot', 'dc'], ['cpuid', []], ['cpuid_check', []], ['device_model', 'qemu-dm'], ['display', ':0.0'], ['fda', ''], ['fdb', ''], ['guest_os_type', 'default'], ['hap', 1], ['hpet', 0], ['isa', 0], ['keymap', ''], ['localtime', 0], ['nographic', 0], ['opengl', 1], ['oos', 1], ['pae', 1], ['pci', []], ['pci_msitranslate', 1], ['pci_power_mgmt', 0], ['rtc_timeoffset', 0], ['sdl', 0], ['soundhw', ''], ['stdvga', 0], ['timer_mode', 1], ['usb', 0], ['usbdevice', ''], ['vcpus', 1], ['vnc', 1], ['vnclisten', '127.0.0.1'], ['vncunused', 1], ['viridian', 0], ['vpt_align', 1], ['xauthority', '/root/.xauthZiwhoi'], ['xen_platform_pci', 1], ['memory_sharing', 0], ['vncpasswd', 'XXXXXXXX'], ['tsc_mode', 0], ['nomigrate', 0]]], ['s3_integrity', 1], ['device', ['vbd', ['uname', 'file:/root/ximages/win.img'], ['dev', 'hda'], ['mode', 'w']]], ['device', ['vbd', ['uname', 'file:/root/ximages/win.iso'], ['dev', 'hdc:cdrom'], ['mode', 'r']]]])
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:50:34 2591] DEBUG (balloon:220) Balloon: 997104 KiB free; need 16384; done.
[2010-07-29 00:50:34 2591] DEBUG (XendDomain:464) Adding Domain: 17
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 17 256
[2010-07-29 00:50:34 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:50:34 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:50:34 2591] INFO (image:822) Need to create platform device.[domid:17]
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x0, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:50:34 2591] INFO (image:182) buildDomain os=hvm dom=17 vcpus=1
[2010-07-29 00:50:34 2591] DEBUG (image:949) domid = 17
[2010-07-29 00:50:34 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:50:34 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:50:34 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:50:34 2591] DEBUG (image:953) target = 512
[2010-07-29 00:50:34 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:50:34 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:50:34 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:50:34 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:50:34 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'other_config': {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1'}}
[2010-07-29 00:50:34 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/17/0'} to /local/domain/17/device/vfb/0.
[2010-07-29 00:50:34 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/17/device/vfb/0', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'frontend-id': '17', 'vnclisten': '127.0.0.1', 'state': '1', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/17/0.
[2010-07-29 00:50:34 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:50:34 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/17/768'} to /local/domain/17/device/vbd/768.
[2010-07-29 00:50:34 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/17/device/vbd/768', 'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '17', 'type': 'file'} to /local/domain/0/backend/vbd/17/768.
[2010-07-29 00:50:34 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:50:34 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/17/5632'} to /local/domain/17/device/vbd/5632.
[2010-07-29 00:50:34 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/17/device/vbd/5632', 'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '17', 'type': 'file'} to /local/domain/0/backend/vbd/17/5632.
[2010-07-29 00:50:34 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '17', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-29 00:50:34 2591] INFO (image:467) device model pid: 26262
[2010-07-29 00:50:34 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'on_reboot': 'restart', 'start_time': '1280389834.84', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (vnclisten 127.0.0.1) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'domid': '17', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:50:34 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/17/0'} to /local/domain/17/device/console/0.
[2010-07-29 00:50:34 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/17/device/console/0', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'frontend-id': '17', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/17/0.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-29 00:50:34 2591] DEBUG (DevController:139) Waiting for devices console.
[2010-07-29 00:50:34 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:50:35 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-29 00:50:35 2591] DEBUG (DevController:144) Waiting for 768.
[2010-07-29 00:50:35 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/17/768/hotplug-status.
[2010-07-29 00:50:35 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:50:35 2591] DEBUG (DevController:144) Waiting for 5632.
[2010-07-29 00:50:35 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/17/5632/hotplug-status.
[2010-07-29 00:50:35 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/17/5632/hotplug-status.
[2010-07-29 00:50:35 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-29 00:50:35 2591] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-29 00:50:35 2591] INFO (XendDomain:1206) Domain WinXPDomain (17) unpaused.
[2010-07-29 00:56:22 2591] INFO (XendDomainInfo:2088) Domain has shutdown: name=WinXPDomain id=17 reason=reboot.
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=17
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 00:56:22 2591] INFO (image:615) WinXPDomain device model terminated
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 00:56:22 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:123) XendDomainInfo.create_from_dict({'vcpus_params': {'cap': 0, 'weight': 256}, 'PV_args': '', 'features': '', 'cpus': [[]], 'paused': 0, 'use_tmp_kernel': False, 'domid': 17, 'memory_sharing': 0, 'superpages': 0, 'VCPUs_live': 1, 'PV_bootloader': '', 'actions_after_crash': 'restart', 'vbd_refs': ['aa8c5848-a034-015e-7413-880c8ab4863a', '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598'], 'PV_ramdisk': '', 'is_control_domain': False, 'name_label': 'WinXPDomain', 'VCPUs_at_startup': 1, 'HVM_boot_params': {'order': 'dc'}, 'platform': {'videoram': 4, 'hpet': 0, 'stdvga': 0, 'vnclisten': '127.0.0.1', 'loader': '/usr/lib/xen/boot/hvmloader', 'rtc_timeoffset': 0, 'serial': 'pty', 'vncunused': 1, 'usb': 0, 'opengl': 1, 'boot': 'dc', 'xen_platform_pci': 1, 'pci': [], 'pae': 1, 'vpt_align': 1, 'hap': 1, 'viridian': 0, 'acpi': 1, 'localtime': 0, 'timer_mode': 1, 'vnc': 1, 'nographic': 0, 'pci_msitranslate': 1, 'oos': 1, 'apic': 1, 'sdl': 0, 'nomigrate': 0, 'xauthority': '/root/.xauthZiwhoi', 'tsc_mode': 0, 'guest_os_type': 'default', 'device_model': '/usr/lib/xen/bin/qemu-dm', 'pci_power_mgmt': 0, 'isa': 0, 'display': ':0.0'}, 'PV_kernel': '', 'console_refs': ['ffee5d0d-122f-35f4-be1e-afb63bf9b520', '50328903-fb84-eedc-5fbc-1e7a39f443a2'], 'online_vcpus': 1, 'blocked': 0, 'on_xend_stop': 'ignore', 'shutdown': 0, 'HVM_boot_policy': 'BIOS order', 'description': '', 'shutdown_reason': 1, 'VCPUs_max': 1, 'start_time': 1280389834.8371899, 'memory_static_max': 536870912, 'actions_after_shutdown': 'destroy', 'use_tmp_ramdisk': False, 'on_xend_start': 'ignore', 'crashed': 0, 'memory_dynamic_max': 536870912, 'actions_after_suspend': '', 'is_a_template': False, 'PV_bootloader_args': '', 'memory_dynamic_min': 536870912, 'uuid': '0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'cpu_time': 268.79942499700002, 'shadow_memory': 5, 'memory_static_min': 0, 'dying': 0, 'vcpu_avail': 1, 'notes': {'SUSPEND_CANCEL': 1}, 'other_config': {}, 'auto_power_on': False, 'running': 0, 'actions_after_reboot': 'restart', 'Description': '', 'vif_refs': [], 'target': 0, 'vtpm_refs': [], 's3_integrity': 1, 'devices': {'50328903-fb84-eedc-5fbc-1e7a39f443a2': ('console', {'other_config': {}, 'protocol': 'vt100', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'location': '3'}), '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598': ('vbd', {'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': 0, 'devid': 5632, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}), 'aa8c5848-a034-015e-7413-880c8ab4863a': ('vbd', {'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': 1, 'devid': 768, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}), 'ffee5d0d-122f-35f4-be1e-afb63bf9b520': ('vfb', {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'devid': 0, 'other_config': {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1'}, 'location': '127.0.0.1:5900'})}})
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 00:56:23 2591] DEBUG (XendDomain:464) Adding Domain: 18
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 18 256
[2010-07-29 00:56:23 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 00:56:23 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 00:56:23 2591] INFO (image:822) Need to create platform device.[domid:18]
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x5, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 00:56:23 2591] INFO (image:182) buildDomain os=hvm dom=18 vcpus=1
[2010-07-29 00:56:23 2591] DEBUG (image:949) domid = 18
[2010-07-29 00:56:23 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 00:56:23 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 00:56:23 2591] DEBUG (image:952) memsize = 512
[2010-07-29 00:56:23 2591] DEBUG (image:953) target = 512
[2010-07-29 00:56:23 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 00:56:23 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 00:56:23 2591] DEBUG (image:956) acpi = 1
[2010-07-29 00:56:23 2591] DEBUG (image:957) apic = 1
[2010-07-29 00:56:23 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'devid': 0, 'other_config': {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1'}, 'location': '127.0.0.1:5900'}
[2010-07-29 00:56:23 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/18/0'} to /local/domain/18/device/vfb/0.
[2010-07-29 00:56:23 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/18/device/vfb/0', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'frontend-id': '18', 'vnclisten': '127.0.0.1', 'state': '1', 'location': '127.0.0.1:5900', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/18/0.
[2010-07-29 00:56:23 2591] INFO (XendDomainInfo:2367) createDevice: console : {'other_config': {}, 'protocol': 'vt100', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'location': '3'}
[2010-07-29 00:56:23 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/18/0'} to /local/domain/18/device/console/0.
[2010-07-29 00:56:23 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/18/device/console/0', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'frontend-id': '18', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/18/0.
[2010-07-29 00:56:23 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': 1, 'devid': 768, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 00:56:23 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/18/768'} to /local/domain/18/device/vbd/768.
[2010-07-29 00:56:23 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/18/device/vbd/768', 'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '18', 'type': 'file'} to /local/domain/0/backend/vbd/18/768.
[2010-07-29 00:56:23 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': 0, 'devid': 5632, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 00:56:23 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/18/5632'} to /local/domain/18/device/vbd/5632.
[2010-07-29 00:56:23 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/18/device/vbd/5632', 'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '18', 'type': 'file'} to /local/domain/0/backend/vbd/18/5632.
[2010-07-29 00:56:23 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '18', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-29 00:56:23 2591] INFO (image:467) device model pid: 26650
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'on_reboot': 'restart', 'start_time': '1280390183.5', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (vnclisten 127.0.0.1) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset 0) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 00:56:23 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'domid': '18', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 00:56:23 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices console.
[2010-07-29 00:56:23 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-29 00:56:23 2591] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-29 00:56:23 2591] DEBUG (DevController:144) Waiting for 768.
[2010-07-29 00:56:23 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/18/768/hotplug-status.
[2010-07-29 00:56:25 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/18/768/hotplug-status.
[2010-07-29 00:56:25 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:56:25 2591] DEBUG (DevController:144) Waiting for 5632.
[2010-07-29 00:56:25 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/18/5632/hotplug-status.
[2010-07-29 00:56:25 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 00:56:25 2591] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-29 00:56:25 2591] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-29 00:56:25 2591] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-29 00:56:25 2591] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-29 00:56:25 2591] DEBUG (DevController:139) Waiting for devices vtpm.
[2010-07-29 01:02:24 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'domid': '18', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 01:09:05 2591] INFO (XendDomainInfo:2088) Domain has shutdown: name=WinXPDomain id=18 reason=reboot.
[2010-07-29 01:09:05 2591] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=18
[2010-07-29 01:09:05 2591] DEBUG (XendDomainInfo:2411) Destroying device model
[2010-07-29 01:09:06 2591] INFO (image:615) WinXPDomain device model terminated
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:2424) Removing vfb/0
[2010-07-29 01:09:06 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vfb, device = vfb/0
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2416) No device model
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2424) Removing vbd/768
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/768
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2424) Removing vbd/5632
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/5632
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:123) XendDomainInfo.create_from_dict({'vcpus_params': {'cap': 0, 'weight': 256}, 'PV_args': '', 'features': '', 'cpus': [[]], 'paused': 1, 'use_tmp_kernel': False, 'actions_after_reboot': 'restart', 'memory_sharing': 0, 'superpages': '0', 'VCPUs_live': 1, 'PV_bootloader': '', 'actions_after_crash': 'restart', 'vbd_refs': ['aa8c5848-a034-015e-7413-880c8ab4863a', '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598'], 'PV_ramdisk': '', 'is_control_domain': False, 'name_label': 'WinXPDomain', 'VCPUs_at_startup': 1, 'HVM_boot_params': {'order': 'dc'}, 'platform': {'videoram': '4', 'hpet': '0', 'stdvga': '0', 'vnclisten': '127.0.0.1', 'loader': '/usr/lib/xen/boot/hvmloader', 'serial': 'pty', 'vncunused': '1', 'usb': '0', 'opengl': '1', 'boot': 'dc', 'rtc_timeoffset': -25204, 'xen_platform_pci': '1', 'pci': [], 'pae': '1', 'vpt_align': '1', 'hap': '1', 'viridian': '0', 'acpi': '1', 'localtime': '0', 'timer_mode': '1', 'vnc': '1', 'nographic': '0', 'pci_msitranslate': '1', 'oos': '1', 'apic': '1', 'sdl': '0', 'nomigrate': '0', 'xauthority': '/root/.xauthZiwhoi', 'tsc_mode': '0', 'guest_os_type': 'default', 'device_model': '/usr/lib/xen/bin/qemu-dm', 'pci_power_mgmt': '0', 'isa': '0', 'display': ':0.0'}, 'PV_kernel': '', 'console_refs': ['ffee5d0d-122f-35f4-be1e-afb63bf9b520', '50328903-fb84-eedc-5fbc-1e7a39f443a2'], 'online_vcpus': 1, 'blocked': 0, 'on_xend_stop': 'ignore', 'shutdown': 1, 'HVM_boot_policy': 'BIOS order', 'description': '', 'shutdown_reason': 1, 'VCPUs_max': 1, 'start_time': 1280390183.498765, 'memory_static_max': 536870912, 'actions_after_shutdown': 'destroy', 'use_tmp_ramdisk': False, 'on_xend_start': 'ignore', 'crashed': 0, 'memory_dynamic_max': 536870912, 'actions_after_suspend': '', 'is_a_template': False, 'PV_bootloader_args': '', 'memory_dynamic_min': 536870912, 'uuid': '0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'cpu_time': 315.27504206399999, 'shadow_memory': 5, 'memory_static_min': 0, 'dying': 1, 'vcpu_avail': 1, 'notes': {'SUSPEND_CANCEL': '1'}, 'other_config': {}, 'auto_power_on': False, 'running': 0, 'domid': 18, 'Description': '', 'vif_refs': [], 'target': 0, 'vtpm_refs': [], 's3_integrity': 1, 'devices': {'50328903-fb84-eedc-5fbc-1e7a39f443a2': ('console', {'location': '3', 'devid': 0, 'protocol': 'vt100', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'other_config': {}}), '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598': ('vbd', {'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': 0, 'devid': 5632, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}), 'aa8c5848-a034-015e-7413-880c8ab4863a': ('vbd', {'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': 1, 'devid': 768, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}), 'ffee5d0d-122f-35f4-be1e-afb63bf9b520': ('vfb', {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'devid': 0, 'other_config': {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1'}, 'location': '127.0.0.1:5900'})}})
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-07-29 01:09:07 2591] DEBUG (XendDomain:464) Adding Domain: 19
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2818) XendDomainInfo.initDomain: 19 256
[2010-07-29 01:09:07 2591] DEBUG (image:339) No VNC passwd configured for vfb access
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: boot, val: dc
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: fda, val: None
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: fdb, val: None
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: soundhw, val: None
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: localtime, val: 0
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: serial, val: ['pty']
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: std-vga, val: 0
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: isa, val: 0
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: acpi, val: 1
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: usb, val: 0
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: usbdevice, val: None
[2010-07-29 01:09:07 2591] DEBUG (image:891) args: gfx_passthru, val: None
[2010-07-29 01:09:07 2591] INFO (image:822) Need to create platform device.[domid:19]
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:2845) _initDomain:shadow_memory=0x5, memory_static_max=0x20000000, memory_static_min=0x0.
[2010-07-29 01:09:07 2591] INFO (image:182) buildDomain os=hvm dom=19 vcpus=1
[2010-07-29 01:09:07 2591] DEBUG (image:949) domid = 19
[2010-07-29 01:09:07 2591] DEBUG (image:950) image = /usr/lib/xen/boot/hvmloader
[2010-07-29 01:09:07 2591] DEBUG (image:951) store_evtchn = 2
[2010-07-29 01:09:07 2591] DEBUG (image:952) memsize = 512
[2010-07-29 01:09:07 2591] DEBUG (image:953) target = 512
[2010-07-29 01:09:07 2591] DEBUG (image:954) vcpus = 1
[2010-07-29 01:09:07 2591] DEBUG (image:955) vcpu_avail = 1
[2010-07-29 01:09:07 2591] DEBUG (image:956) acpi = 1
[2010-07-29 01:09:07 2591] DEBUG (image:957) apic = 1
[2010-07-29 01:09:07 2591] INFO (XendDomainInfo:2367) createDevice: vfb : {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'devid': 0, 'other_config': {'vncunused': 1, 'vnclisten': '127.0.0.1', 'vnc': '1'}, 'location': '127.0.0.1:5900'}
[2010-07-29 01:09:07 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/vfb/19/0'} to /local/domain/19/device/vfb/0.
[2010-07-29 01:09:07 2591] DEBUG (DevController:97) DevController: writing {'vncunused': '1', 'domain': 'WinXPDomain', 'frontend': '/local/domain/19/device/vfb/0', 'uuid': 'ffee5d0d-122f-35f4-be1e-afb63bf9b520', 'frontend-id': '19', 'vnclisten': '127.0.0.1', 'state': '1', 'location': '127.0.0.1:5900', 'online': '1', 'vnc': '1'} to /local/domain/0/backend/vfb/19/0.
[2010-07-29 01:09:07 2591] INFO (XendDomainInfo:2367) createDevice: console : {'location': '3', 'devid': 0, 'protocol': 'vt100', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'other_config': {}}
[2010-07-29 01:09:07 2591] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/19/0'} to /local/domain/19/device/console/0.
[2010-07-29 01:09:07 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/19/device/console/0', 'uuid': '50328903-fb84-eedc-5fbc-1e7a39f443a2', 'frontend-id': '19', 'state': '1', 'location': '3', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/19/0.
[2010-07-29 01:09:07 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': 1, 'devid': 768, 'driver': 'paravirtualised', 'dev': 'hda', 'uname': 'file:/root/ximages/win.img', 'mode': 'w'}
[2010-07-29 01:09:07 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '768', 'device-type': 'disk', 'state': '1', 'backend': '/local/domain/0/backend/vbd/19/768'} to /local/domain/19/device/vbd/768.
[2010-07-29 01:09:07 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/19/device/vbd/768', 'uuid': 'aa8c5848-a034-015e-7413-880c8ab4863a', 'bootable': '1', 'dev': 'hda', 'state': '1', 'params': '/root/ximages/win.img', 'mode': 'w', 'online': '1', 'frontend-id': '19', 'type': 'file'} to /local/domain/0/backend/vbd/19/768.
[2010-07-29 01:09:07 2591] INFO (XendDomainInfo:2367) createDevice: vbd : {'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': 0, 'devid': 5632, 'driver': 'paravirtualised', 'dev': 'hdc:cdrom', 'uname': 'file:/root/ximages/win.iso', 'mode': 'r'}
[2010-07-29 01:09:07 2591] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'virtual-device': '5632', 'device-type': 'cdrom', 'state': '1', 'backend': '/local/domain/0/backend/vbd/19/5632'} to /local/domain/19/device/vbd/5632.
[2010-07-29 01:09:07 2591] DEBUG (DevController:97) DevController: writing {'domain': 'WinXPDomain', 'frontend': '/local/domain/19/device/vbd/5632', 'uuid': '4416d88b-4bb2-51c9-d88c-9e2d2d7c4598', 'bootable': '0', 'dev': 'hdc', 'state': '1', 'params': '/root/ximages/win.iso', 'mode': 'r', 'online': '1', 'frontend-id': '19', 'type': 'file'} to /local/domain/0/backend/vbd/19/5632.
[2010-07-29 01:09:07 2591] INFO (image:418) spawning device models: /usr/lib/xen/bin/qemu-dm ['/usr/lib/xen/bin/qemu-dm', '-d', '19', '-domain-name', 'WinXPDomain', '-videoram', '4', '-vnc', '127.0.0.1:0', '-vncunused', '-vcpus', '1', '-vcpu_avail', '0x1', '-boot', 'dc', '-serial', 'pty', '-acpi', '-net', 'none', '-M', 'xenfv']
[2010-07-29 01:09:07 2591] INFO (image:467) device model pid: 27160
[2010-07-29 01:09:07 2591] INFO (image:590) waiting for sentinel_fifo
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '5', 'uuid': '0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'on_reboot': 'restart', 'start_time': '1280390947.62', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '1', 'vcpu_avail': '1', 'bootloader': '', 'image': '(hvm (kernel ) (superpages 0) (videoram 4) (hpet 0) (stdvga 0) (vnclisten 127.0.0.1) (loader /usr/lib/xen/boot/hvmloader) (xen_platform_pci 1) (opengl 1) (rtc_timeoffset -25204) (pci ()) (hap 1) (localtime 0) (timer_mode 1) (pci_msitranslate 1) (oos 1) (apic 1) (sdl 0) (display :0.0) (vpt_align 1) (serial pty) (vncunused 1) (boot dc) (pae 1) (viridian 0) (acpi 1) (vnc 1) (nographic 0) (nomigrate 0) (usb 0) (tsc_mode 0) (guest_os_type default) (device_model /usr/lib/xen/bin/qemu-dm) (pci_power_mgmt 0) (xauthority /root/.xauthZiwhoi) (isa 0) (notes (SUSPEND_CANCEL 1)))', 'name': 'WinXPDomain'}
[2010-07-29 01:09:07 2591] DEBUG (XendDomainInfo:1804) Storing domain details: {'console/port': '3', 'description': '', 'console/limit': '1048576', 'store/port': '2', 'vm': '/vm/0d72036d-0cfa-69ec-c268-0e71efe1c60a', 'domid': '19', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'memory/target': '524288', 'control/platform-feature-multiprocessor-suspend': '1', 'store/ring-ref': '1044476', 'console/type': 'ioemu', 'name': 'WinXPDomain'}
[2010-07-29 01:09:08 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vif/10/0/hotplug-status.
[2010-07-29 01:09:08 2591] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices tap2.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices vif.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices vkbd.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices ioports.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices tap.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices vif2.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices console.
[2010-07-29 01:09:08 2591] DEBUG (DevController:144) Waiting for 0.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices vscsi.
[2010-07-29 01:09:08 2591] DEBUG (DevController:139) Waiting for devices vbd.
[2010-07-29 01:09:08 2591] DEBUG (DevController:144) Waiting for 768.
[2010-07-29 01:09:08 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/19/768/hotplug-status.
[2010-07-29 01:09:09 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/19/768/hotplug-status.
[2010-07-29 01:09:09 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 01:09:09 2591] DEBUG (DevController:144) Waiting for 5632.
[2010-07-29 01:09:09 2591] DEBUG (DevController:628) hotplugStatusCallback /local/domain/0/backend/vbd/19/5632/hotplug-status.
[2010-07-29 01:09:09 2591] DEBUG (DevController:642) hotplugStatusCallback 1.
[2010-07-29 01:09:09 2591] DEBUG (DevController:139) Waiting for devices irq.
[2010-07-29 01:09:09 2591] DEBUG (DevController:139) Waiting for devices vfb.
[2010-07-29 01:09:09 2591] DEBUG (DevController:139) Waiting for devices pci.
[2010-07-29 01:09:09 2591] DEBUG (DevController:139) Waiting for devices vusb.
[2010-07-29 01:09:09 2591] DEBUG (DevController:139) Waiting for devices vtpm.
[-- Attachment #4: qemu-dm-WinXPDomain.log.3 --]
[-- Type: application/octet-stream, Size: 111 bytes --]
domid: 16
warning: could not open /dev/net/tun: no virtual network emulation
Could not initialize device 'tap'
[-- Attachment #5: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Need help to get networking to work in WinXP domU
2010-07-29 8:40 Need help to get networking to work in WinXP domU Jonathan White
@ 2010-07-29 16:19 ` Konrad Rzeszutek Wilk
2010-07-29 16:27 ` Boris Derzhavets
1 sibling, 0 replies; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-07-29 16:19 UTC (permalink / raw)
To: Jonathan White; +Cc: Xen-devel
On Thu, Jul 29, 2010 at 01:40:18AM -0700, Jonathan White wrote:
> Hi all,
>
> I am running a WinXPsp3 domU in Xen-4.0.1-rc5-pre x86_64 environment, but
> with no network interface enabled. The only way I could get the domU to boot
> successfully was when I commented out the vif line in the win.hvm config
> file (see attached win.hvm, which is based on /etc/xen/xmexample.hvm).
> Also attached are few other log files (xend.log and
> qemu-dm-WinXPDomain.log).
The log says:
domid: 16
warning: could not open /dev/net/tun: no virtual network emulation
Could not initialize device 'tap'
If you google for this you find hints about checking what 'dev/net/tun'
is. And some of them might mention to do 'modprobe tun'.
> Any help on what might be going wrong, and how I can enable networking in
> the guest will be much appreciated.
> Dom0 has full networking capability though.
>
> Thanks in advance,
> Jon
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Need help to get networking to work in WinXP domU
2010-07-29 8:40 Need help to get networking to work in WinXP domU Jonathan White
2010-07-29 16:19 ` Konrad Rzeszutek Wilk
@ 2010-07-29 16:27 ` Boris Derzhavets
1 sibling, 0 replies; 3+ messages in thread
From: Boris Derzhavets @ 2010-07-29 16:27 UTC (permalink / raw)
To: Xen-devel, Jonathan White
[-- Attachment #1.1: Type: text/plain, Size: 1338 bytes --]
Say
linux-y4jf:~ # brctl show
bridge name bridge id STP enabled interfaces
br0 8000.90e6ba2d11eb no eth0
and vif =['type=ioemu, bridge=br0' ] is included in win.hvm.
What output you get to screen and logs ?
Isn't it "Hotplug scripts fail to work" ?
Boris.
--- On Thu, 7/29/10, Jonathan White <jonxwhite@gmail.com> wrote:
From: Jonathan White <jonxwhite@gmail.com>
Subject: [Xen-devel] Need help to get networking to work in WinXP domU
To: Xen-devel@lists.xensource.com
Date: Thursday, July 29, 2010, 4:40 AM
Hi all,
I am running a WinXPsp3 domU in Xen-4.0.1-rc5-pre x86_64 environment, but with no network interface enabled. The only way I could get the domU to boot successfully was when I commented out the vif line in the win.hvm config file (see attached win.hvm, which is based on /etc/xen/xmexample.hvm).
Also attached are few other log files (xend.log and qemu-dm-WinXPDomain.log).
Any help on what might be going wrong, and how I can enable networking in the guest will be much appreciated.
Dom0 has full networking capability though.
Thanks in advance,
Jon
-----Inline Attachment Follows-----
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
[-- Attachment #1.2: Type: text/html, Size: 2138 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-07-29 16:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-29 8:40 Need help to get networking to work in WinXP domU Jonathan White
2010-07-29 16:19 ` Konrad Rzeszutek Wilk
2010-07-29 16:27 ` Boris Derzhavets
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.