All of lore.kernel.org
 help / color / mirror / Atom feed
* CoW memory and Parallax questions.
@ 2005-09-30 11:52 Prashanth Radhakrishnan
  2005-10-01 18:58 ` Michael Vrable
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Prashanth Radhakrishnan @ 2005-09-30 11:52 UTC (permalink / raw)
  To: xen-devel

Does Xen-unstable do Copy-on-Write sharing of memory between VMs ?
If not, is someone working on it ?
I last see a mention about Micheal Vrable working on it back in Oct 2004 
- http://lists.xensource.com/archives/html/xen-devel/2004-10/msg00470.html.

Also curious to find out the status on Parallax; is someone working on 
adding persistent caching, remote block access and other features as 
described in the parallax paper (it seems that the current implementation 
has remote access or local access) ?

thanks,
prashanth

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-09-30 11:52 CoW memory and Parallax questions Prashanth Radhakrishnan
@ 2005-10-01 18:58 ` Michael Vrable
  2005-10-01 23:04 ` Andrew Warfield
  2005-10-03 16:20 ` Jacob Faber Kloster
  2 siblings, 0 replies; 13+ messages in thread
From: Michael Vrable @ 2005-10-01 18:58 UTC (permalink / raw)
  To: xen-devel

On Fri, Sep 30, 2005 at 05:52:20AM -0600, Prashanth Radhakrishnan wrote:
> Does Xen-unstable do Copy-on-Write sharing of memory between VMs ?
> If not, is someone working on it ?
> I last see a mention about Micheal Vrable working on it back in Oct 2004 
> - http://lists.xensource.com/archives/html/xen-devel/2004-10/msg00470.html.

Yes, I'm still working on it.  The focus of that work was copy-on-write
sharing of memory for the purposes of building a (virtual) network of
honeypot systems.  We have a paper in SOSP this year, talking about that
work and the copy-on-write memory implementation.  See
    http://www.cs.ucsd.edu/~mvrable/papers/2005-sosp-potemkin.pdf
for some information.

I'm presently working on updating and cleaning that work up.

--Michael Vrable

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-09-30 11:52 CoW memory and Parallax questions Prashanth Radhakrishnan
  2005-10-01 18:58 ` Michael Vrable
@ 2005-10-01 23:04 ` Andrew Warfield
  2005-10-03 16:20 ` Jacob Faber Kloster
  2 siblings, 0 replies; 13+ messages in thread
From: Andrew Warfield @ 2005-10-01 23:04 UTC (permalink / raw)
  To: Prashanth Radhakrishnan; +Cc: xen-devel

> Also curious to find out the status on Parallax; is someone working on
> adding persistent caching, remote block access and other features as
> described in the parallax paper (it seems that the current implementation
> has remote access or local access) ?

Parallax work is ongoing as well... the block tap source was brought
up to speed with the new tools interface about a month ago and the
parallax sources will follow shortly.  If there is something specific
that you are interested in (or interested in working on ;) ) let me
know...

a.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-09-30 11:52 CoW memory and Parallax questions Prashanth Radhakrishnan
  2005-10-01 18:58 ` Michael Vrable
  2005-10-01 23:04 ` Andrew Warfield
@ 2005-10-03 16:20 ` Jacob Faber Kloster
  2005-10-03 19:12   ` Kip Macy
  2 siblings, 1 reply; 13+ messages in thread
From: Jacob Faber Kloster @ 2005-10-03 16:20 UTC (permalink / raw)
  To: xen-devel

Now when the topic of Copy-on-Write memory sharing is up. It might be in
place to tell that we (a group of tree master students), will be doing
work on content based Copy-on-Write memory sharing. Similar to what is
implemented in VMWare's ESX server. See
http://www.waldspurger.org/carl/papers/esx-mem-osdi02.pdf

We have contacted Michael Vrable about his approach, and it is likely
that our code will be an extension of his.

Best regards
Jacob Faber Kloster (group email d515a.cs.aau.dk)

On Fri, 2005-09-30 at 05:52 -0600, Prashanth Radhakrishnan wrote:
> Does Xen-unstable do Copy-on-Write sharing of memory between VMs ?
> If not, is someone working on it ?
> I last see a mention about Micheal Vrable working on it back in Oct 2004 
> - http://lists.xensource.com/archives/html/xen-devel/2004-10/msg00470.html.
> 
> Also curious to find out the status on Parallax; is someone working on 
> adding persistent caching, remote block access and other features as 
> described in the parallax paper (it seems that the current implementation 
> has remote access or local access) ?
> 
> thanks,
> prashanth
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-10-03 16:20 ` Jacob Faber Kloster
@ 2005-10-03 19:12   ` Kip Macy
  2005-10-04  8:53     ` Jacob Gorm Hansen
  2005-10-04 11:14     ` CoW memory and Parallax questions Jacob Faber Kloster
  0 siblings, 2 replies; 13+ messages in thread
From: Kip Macy @ 2005-10-03 19:12 UTC (permalink / raw)
  To: d515a; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 1732 bytes --]

They aren't mutually exclusive, but a content-based approach, although more
flexible, seems like it would inevitably be much heavier weight.
What is your solution targeted towards?

-Kip

On 10/3/05, Jacob Faber Kloster <jk@cs.aau.dk> wrote:
>
> Now when the topic of Copy-on-Write memory sharing is up. It might be in
> place to tell that we (a group of tree master students), will be doing
> work on content based Copy-on-Write memory sharing. Similar to what is
> implemented in VMWare's ESX server. See
> http://www.waldspurger.org/carl/papers/esx-mem-osdi02.pdf
>
> We have contacted Michael Vrable about his approach, and it is likely
> that our code will be an extension of his.
>
> Best regards
> Jacob Faber Kloster (group email d515a.cs.aau.dk <http://d515a.cs.aau.dk>)
>
> On Fri, 2005-09-30 at 05:52 -0600, Prashanth Radhakrishnan wrote:
> > Does Xen-unstable do Copy-on-Write sharing of memory between VMs ?
> > If not, is someone working on it ?
> > I last see a mention about Micheal Vrable working on it back in Oct 2004
> > -
> http://lists.xensource.com/archives/html/xen-devel/2004-10/msg00470.html.
> >
> > Also curious to find out the status on Parallax; is someone working on
> > adding persistent caching, remote block access and other features as
> > described in the parallax paper (it seems that the current
> implementation
> > has remote access or local access) ?
> >
> > thanks,
> > prashanth
> >
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@lists.xensource.com
> > http://lists.xensource.com/xen-devel
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>

[-- Attachment #1.2: Type: text/html, Size: 2562 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] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-10-03 19:12   ` Kip Macy
@ 2005-10-04  8:53     ` Jacob Gorm Hansen
  2005-10-04 11:45       ` Jacob Faber Kloster
  2005-10-20 17:45       ` cannot get console access to newly created domain Xin Zhao
  2005-10-04 11:14     ` CoW memory and Parallax questions Jacob Faber Kloster
  1 sibling, 2 replies; 13+ messages in thread
From: Jacob Gorm Hansen @ 2005-10-04  8:53 UTC (permalink / raw)
  To: Kip Macy, xen-devel

My take on that would be to introduce read-only pages and a context
index (tree or hashtable) in Xen, and then handle the CoW part in the
guest OSes. That removes the need for any policy on how to handle
overcommits in Xen or Dom0, in the case where all domUs decide to fill
up their pages with random data.

Jacob

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-10-03 19:12   ` Kip Macy
  2005-10-04  8:53     ` Jacob Gorm Hansen
@ 2005-10-04 11:14     ` Jacob Faber Kloster
  1 sibling, 0 replies; 13+ messages in thread
From: Jacob Faber Kloster @ 2005-10-04 11:14 UTC (permalink / raw)
  To: Kip Macy; +Cc: xen-devel, d515a

On Mon, 2005-10-03 at 12:12 -0700, Kip Macy wrote:
> They aren't mutually exclusive, but a content-based approach, although
> more flexible, seems like it would inevitably be much heavier weight. 
> What is your solution targeted towards?
> 
>  -Kip              

Indeed a combination of the two could be in order to avoid some
unnecessary processing. Also there is no doubt that content based
sharing uses more processing time, but it is more generally applicable
than the 'forking' scheme. For instance it seems hard to come up with a
scheme that allows sharing of memory when migrating VMs. Furthermore as
VMs, in the forking scheme, have run for a longer period of time, we
expect the percent of sharing to decrease. Content based sharing will
allow us to identify sharing that was not possible at the time of
forking.

Our solution is thus meant as an option when starting several VMs that
are similar, but not identical from start. Perhaps the processing
overhead of doing content based sharing is too large, but we can't
really know for certain before we have done some experiments.

Best regards
Jacob Faber Kloster (group email d515a@cs.aau.dk)

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-10-04  8:53     ` Jacob Gorm Hansen
@ 2005-10-04 11:45       ` Jacob Faber Kloster
  2005-10-04 17:34         ` Kip Macy
  2005-10-20 17:45       ` cannot get console access to newly created domain Xin Zhao
  1 sibling, 1 reply; 13+ messages in thread
From: Jacob Faber Kloster @ 2005-10-04 11:45 UTC (permalink / raw)
  To: Jacob Gorm Hansen; +Cc: Kip Macy, xen-devel

That certainly sounds like an interesting approach. Our immediate
approach was something along the lines of making a separate service, on
the hypervisor level of privilege, with complete overview and control of
the memory. Doing the content based sharing scheme will, as you also
noted, open up the possibility of overcommitment of memory. Some kind of
scheduling will be needed to handle this. One solution could be to
suspend a VM to disk or introduce a swapping..

But at this point in time we are not focusing on any specific solution,
we are just investigating whether it is possible and feasible to share
memory.

Best regards
Jacob Faber Kloster (group email d515a@cs.aau.dk)


On Tue, 2005-10-04 at 10:53 +0200, Jacob Gorm Hansen wrote:
> My take on that would be to introduce read-only pages and a context
> index (tree or hashtable) in Xen, and then handle the CoW part in the
> guest OSes. That removes the need for any policy on how to handle
> overcommits in Xen or Dom0, in the case where all domUs decide to fill
> up their pages with random data.
> 
> Jacob

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: CoW memory and Parallax questions.
  2005-10-04 11:45       ` Jacob Faber Kloster
@ 2005-10-04 17:34         ` Kip Macy
  0 siblings, 0 replies; 13+ messages in thread
From: Kip Macy @ 2005-10-04 17:34 UTC (permalink / raw)
  To: d515a; +Cc: xen-devel, Jacob Gorm Hansen


[-- Attachment #1.1: Type: text/plain, Size: 1492 bytes --]

I don't think HV level privilege is necessary. Take a look at the mergemem
work. A service running in the background in DOM0 is a potentially viable
approach.

-Kip


On 10/4/05, Jacob Faber Kloster <jk@cs.aau.dk> wrote:
>
> That certainly sounds like an interesting approach. Our immediate
> approach was something along the lines of making a separate service, on
> the hypervisor level of privilege, with complete overview and control of
> the memory. Doing the content based sharing scheme will, as you also
> noted, open up the possibility of overcommitment of memory. Some kind of
> scheduling will be needed to handle this. One solution could be to
> suspend a VM to disk or introduce a swapping..
>
> But at this point in time we are not focusing on any specific solution,
> we are just investigating whether it is possible and feasible to share
> memory.
>
> Best regards
> Jacob Faber Kloster (group email d515a@cs.aau.dk)
>
>
> On Tue, 2005-10-04 at 10:53 +0200, Jacob Gorm Hansen wrote:
> > My take on that would be to introduce read-only pages and a context
> > index (tree or hashtable) in Xen, and then handle the CoW part in the
> > guest OSes. That removes the need for any policy on how to handle
> > overcommits in Xen or Dom0, in the case where all domUs decide to fill
> > up their pages with random data.
> >
> > Jacob
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>

[-- Attachment #1.2: Type: text/html, Size: 2001 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] 13+ messages in thread

* cannot get console access to newly created domain
  2005-10-04  8:53     ` Jacob Gorm Hansen
  2005-10-04 11:45       ` Jacob Faber Kloster
@ 2005-10-20 17:45       ` Xin Zhao
  2005-10-20 17:57         ` Ewan Mellor
  1 sibling, 1 reply; 13+ messages in thread
From: Xin Zhao @ 2005-10-20 17:45 UTC (permalink / raw)
  To: xen-devel

After a DomU died, I tried to do "xm destroy 5" and recreate the domain
with the same block device and kernel. But "xm list" gave me the following
results:

Name              Id  Mem(MB)  CPU VCPU(s)  State  Time(s)
Domain-0           0      249    0      1   r-----    232.4
Normal-Domain      5        0    0      1   ----cd     19.0
Normal-Domain      5        0    0      1   ----cd     19.0

Why did I get two domains with the same domID? Also, when I do "xm console
6", I cannot access the new domain. I also tried "xm console 5", doesn't
work either.

Any insignt about this?

Thanks,
Xin

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: cannot get console access to newly created domain
  2005-10-20 17:45       ` cannot get console access to newly created domain Xin Zhao
@ 2005-10-20 17:57         ` Ewan Mellor
  2005-10-20 18:10           ` zhaoxin
  0 siblings, 1 reply; 13+ messages in thread
From: Ewan Mellor @ 2005-10-20 17:57 UTC (permalink / raw)
  To: Xin Zhao; +Cc: xen-devel

On Thu, Oct 20, 2005 at 01:45:18PM -0400, Xin Zhao wrote:

> After a DomU died, I tried to do "xm destroy 5" and recreate the domain
> with the same block device and kernel. But "xm list" gave me the following
> results:
> 
> Name              Id  Mem(MB)  CPU VCPU(s)  State  Time(s)
> Domain-0           0      249    0      1   r-----    232.4
> Normal-Domain      5        0    0      1   ----cd     19.0
> Normal-Domain      5        0    0      1   ----cd     19.0
> 
> Why did I get two domains with the same domID? Also, when I do "xm console
> 6", I cannot access the new domain. I also tried "xm console 5", doesn't
> work either.

That's not very pretty.  Which changeset are you using, and could you please
post your /var/log/xend.log and /var/log/xend-debug.log?

Thanks,

Ewan.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: cannot get console access to newly created domain
  2005-10-20 17:57         ` Ewan Mellor
@ 2005-10-20 18:10           ` zhaoxin
  2005-10-20 18:31             ` Ewan Mellor
  0 siblings, 1 reply; 13+ messages in thread
From: zhaoxin @ 2005-10-20 18:10 UTC (permalink / raw)
  To: 'Ewan Mellor'; +Cc: xen-devel

[-- Attachment #1: Type: text/plain, Size: 1695 bytes --]

Thank you for your help!

This is the information of last change set for my current system
/*****************************************/
changeset:   7076:46046d5fb354
tag:         tip
user:        emellor@ewan
date:        Tue Sep 27 17:09:46 2005 +0100
summary:     Remove unused import, mark unused variables.
/*****************************************/

The xend.log and xend-debug.log are attached with this email, please check
them out. 

Thanks,

Xin

-----Original Message-----
From: xen-devel-bounces@lists.xensource.com
[mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of Ewan Mellor
Sent: Thursday, October 20, 2005 1:58 PM
To: Xin Zhao
Cc: xen-devel@lists.xensource.com
Subject: Re: [Xen-devel] cannot get console access to newly created domain

On Thu, Oct 20, 2005 at 01:45:18PM -0400, Xin Zhao wrote:

> After a DomU died, I tried to do "xm destroy 5" and recreate the domain
> with the same block device and kernel. But "xm list" gave me the following
> results:
> 
> Name              Id  Mem(MB)  CPU VCPU(s)  State  Time(s)
> Domain-0           0      249    0      1   r-----    232.4
> Normal-Domain      5        0    0      1   ----cd     19.0
> Normal-Domain      5        0    0      1   ----cd     19.0
> 
> Why did I get two domains with the same domID? Also, when I do "xm console
> 6", I cannot access the new domain. I also tried "xm console 5", doesn't
> work either.

That's not very pretty.  Which changeset are you using, and could you please
post your /var/log/xend.log and /var/log/xend-debug.log?

Thanks,

Ewan.

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

[-- Attachment #2: xend.log --]
[-- Type: application/octet-stream, Size: 600127 bytes --]

[2005-10-19 13:35:06 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '265247968635', 'memory_KiB': '257024', 'uuid': '22f65426-ad32-49e8-941b-aace39c01e23', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 13:35:06 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 13:35:06 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 265292281060L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 13:35:06 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 265292281060L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 13:35:06 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 13:35:06 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 13:35:06 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 13:35:08 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129743308.26', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '7602e616-f1eb-4f90-b4f2-7748b6ac7f1e'}
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/22f65426-ad32-49e8-941b-aace39c01e23/backend/vbd/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/769'} to /domain/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/device/vbd/769.
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/device/vbd/769', 'frontend-id': '1'} to /domain/22f65426-ad32-49e8-941b-aace39c01e23/backend/vbd/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/769.
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/22f65426-ad32-49e8-941b-aace39c01e23/backend/vif/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/1'} to /domain/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/device/vif/1.
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/device/vif/1'} to /domain/22f65426-ad32-49e8-941b-aace39c01e23/backend/vif/7602e616-f1eb-4f90-b4f2-7748b6ac7f1e/1.
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129743308.26', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '7602e616-f1eb-4f90-b4f2-7748b6ac7f1e'}
[2005-10-19 13:35:08 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129743308.26', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '7602e616-f1eb-4f90-b4f2-7748b6ac7f1e'}
[2005-10-19 13:35:08 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 13:35:08 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 13:35:10 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 13:35:10 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129743308.261282, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 257773501L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 13:56:33 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 13:56:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129743308.261282, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 7237410966L, 'ssidref': 0, 'memory_KiB': 262116, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262116, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 319843523782L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256604, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256604, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 319843523782L, 'ssidref': 0, 'memory_KiB': 256604, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 9112437546L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262100, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 1
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129743308.261282, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 9112437546L, 'ssidref': 0, 'memory_KiB': 262100, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262100, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256604, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 319858925395L, 'ssidref': 0, 'memory_KiB': 256604, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 14:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129743308.261282, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 9112758247L, 'ssidref': 0, 'memory_KiB': 262100, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262100, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 354075845547L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 254748, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 254748, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 354075845547L, 'ssidref': 0, 'memory_KiB': 254748, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21733696002L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 262116, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 15:42:47 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=1 reason=poweroff.
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129743308.261282, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21733696002L, 'ssidref': 0, 'memory_KiB': 262116, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262116, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 354151587405L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 254748, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 254748, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 354151587405L, 'ssidref': 0, 'memory_KiB': 254748, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21733696002L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 52, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 15:42:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129743308.261282, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21733696002L, 'ssidref': 0, 'memory_KiB': 52, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 52, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 15:47:08 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 15:47:08 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12364395976L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 15:47:08 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 15:47:08 xend] INFO (__init__:988) Recreating domain 0, uuid 27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf
[2005-10-19 15:47:08 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '12364395976', 'memory_KiB': '257024', 'uuid': '27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 15:47:08 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 15:47:08 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12404198195L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 15:47:08 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 15:47:08 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 15:47:08 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 15:47:08 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12404198195L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 15:47:09 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129751229.76', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '16efae2d-3752-4b3e-ba57-98b681c84d1a'}
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vbd/16efae2d-3752-4b3e-ba57-98b681c84d1a/769'} to /domain/16efae2d-3752-4b3e-ba57-98b681c84d1a/device/vbd/769.
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/16efae2d-3752-4b3e-ba57-98b681c84d1a/device/vbd/769', 'frontend-id': '1'} to /domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vbd/16efae2d-3752-4b3e-ba57-98b681c84d1a/769.
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vif/16efae2d-3752-4b3e-ba57-98b681c84d1a/1'} to /domain/16efae2d-3752-4b3e-ba57-98b681c84d1a/device/vif/1.
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/16efae2d-3752-4b3e-ba57-98b681c84d1a/device/vif/1'} to /domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vif/16efae2d-3752-4b3e-ba57-98b681c84d1a/1.
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129751229.76', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '16efae2d-3752-4b3e-ba57-98b681c84d1a'}
[2005-10-19 15:47:09 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129751229.76', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '16efae2d-3752-4b3e-ba57-98b681c84d1a'}
[2005-10-19 15:47:10 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 15:47:10 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19023560815L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256508, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256508, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19023560815L, 'ssidref': 0, 'memory_KiB': 256508, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11200860243L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262116, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 1
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11200860243L, 'ssidref': 0, 'memory_KiB': 262116, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262116, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256508, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19023560815L, 'ssidref': 0, 'memory_KiB': 256508, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:02:43 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11200860243L, 'ssidref': 0, 'memory_KiB': 262116, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262116, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:02:46 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 16:02:46 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19262109764L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256504, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:02:46 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19262109764L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:46 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 48, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:02:46 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 48, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 48, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19497497759L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256504, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19497497759L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 32, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19500012360L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:50 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:02:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19645560278L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256504, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19645560278L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 32, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19665096453L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:02:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:03:00 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 262144 1.0
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=262144
[2005-10-19 16:03:03 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) dom            = 2
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129752183.39', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '37563e0c-e138-4009-a274-a50f3d7e53f6'}
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vbd/37563e0c-e138-4009-a274-a50f3d7e53f6/769'} to /domain/37563e0c-e138-4009-a274-a50f3d7e53f6/device/vbd/769.
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/37563e0c-e138-4009-a274-a50f3d7e53f6/device/vbd/769', 'frontend-id': '2'} to /domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vbd/37563e0c-e138-4009-a274-a50f3d7e53f6/769.
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vif/37563e0c-e138-4009-a274-a50f3d7e53f6/1'} to /domain/37563e0c-e138-4009-a274-a50f3d7e53f6/device/vif/1.
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/37563e0c-e138-4009-a274-a50f3d7e53f6/device/vif/1'} to /domain/27cd6dd2-9b8f-49ab-aeb7-857f3e64d2cf/backend/vif/37563e0c-e138-4009-a274-a50f3d7e53f6/1.
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129752183.39', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '37563e0c-e138-4009-a274-a50f3d7e53f6'}
[2005-10-19 16:03:03 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129752183.39', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '37563e0c-e138-4009-a274-a50f3d7e53f6'}
[2005-10-19 16:03:03 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-19 16:03:03 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 20356459566L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256504, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 20356459566L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 32, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129752183.3916211, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256504, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 20375994517L, 'ssidref': 0, 'memory_KiB': 256504, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:03:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:03:12 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-19 16:03:12 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129752183.3916211, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:03:19 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:03:19 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129751229.758214, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11201380197L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:06:30 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 16:06:30 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12267938644L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 16:06:30 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 16:06:30 xend] INFO (__init__:988) Recreating domain 0, uuid f54ce6a4-468e-4d3f-b287-0d34112a24e0
[2005-10-19 16:06:30 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '12267938644', 'memory_KiB': '257024', 'uuid': 'f54ce6a4-468e-4d3f-b287-0d34112a24e0', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 16:06:30 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 16:06:30 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 16:06:30 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 16:06:30 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12309879949L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:06:30 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 16:06:30 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12309879949L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:06:31 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 16:06:31 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 16:06:31 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 16:06:31 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 16:06:31 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 16:06:32 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129752392.02', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '76acf640-f39c-4009-978d-f42366821457'}
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vbd/76acf640-f39c-4009-978d-f42366821457/769'} to /domain/76acf640-f39c-4009-978d-f42366821457/device/vbd/769.
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/76acf640-f39c-4009-978d-f42366821457/device/vbd/769', 'frontend-id': '1'} to /domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vbd/76acf640-f39c-4009-978d-f42366821457/769.
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vif/76acf640-f39c-4009-978d-f42366821457/1'} to /domain/76acf640-f39c-4009-978d-f42366821457/device/vif/1.
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/76acf640-f39c-4009-978d-f42366821457/device/vif/1'} to /domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vif/76acf640-f39c-4009-978d-f42366821457/1.
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129752392.02', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '76acf640-f39c-4009-978d-f42366821457'}
[2005-10-19 16:06:32 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129752392.02', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '76acf640-f39c-4009-978d-f42366821457'}
[2005-10-19 16:06:32 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 16:06:32 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16593232631L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16593232631L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8017441705L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262120, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 1
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8017441705L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16629378557L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16629378557L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 262120, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:18:25 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=1 reason=poweroff.
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16721026674L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16721026674L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 52, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:18:25 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 52, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 52, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:43 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:18:43 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17166578631L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17166578631L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 36, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17166578631L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:18:46 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17321269985L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17321269985L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 36, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17321269985L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:18:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:56 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17590324008L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17590324008L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 36, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17590324008L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:18:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 262144 1.0
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=262144
[2005-10-19 16:19:15 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) dom            = 2
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129753155.52', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'f3d71001-b76d-4489-8e1f-bd29f1148be2'}
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vbd/f3d71001-b76d-4489-8e1f-bd29f1148be2/769'} to /domain/f3d71001-b76d-4489-8e1f-bd29f1148be2/device/vbd/769.
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/f3d71001-b76d-4489-8e1f-bd29f1148be2/device/vbd/769', 'frontend-id': '2'} to /domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vbd/f3d71001-b76d-4489-8e1f-bd29f1148be2/769.
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vif/f3d71001-b76d-4489-8e1f-bd29f1148be2/1'} to /domain/f3d71001-b76d-4489-8e1f-bd29f1148be2/device/vif/1.
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/f3d71001-b76d-4489-8e1f-bd29f1148be2/device/vif/1'} to /domain/f54ce6a4-468e-4d3f-b287-0d34112a24e0/backend/vif/f3d71001-b76d-4489-8e1f-bd29f1148be2/1.
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129753155.52', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'f3d71001-b76d-4489-8e1f-bd29f1148be2'}
[2005-10-19 16:19:15 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129753155.52', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'f3d71001-b76d-4489-8e1f-bd29f1148be2'}
[2005-10-19 16:19:15 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-19 16:19:15 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18354577815L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256548, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18354577815L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 36, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129753155.519455, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256548, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18357596209L, 'ssidref': 0, 'memory_KiB': 256548, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:19:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:34 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-19 16:19:34 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129753155.519455, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:47 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:19:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129752392.0158529, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8018350706L, 'ssidref': 0, 'memory_KiB': 36, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 36, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:19:50 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-19 16:19:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129753155.519455, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:24:09 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 16:24:09 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12955248808L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 16:24:09 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 16:24:09 xend] INFO (__init__:988) Recreating domain 0, uuid fe0658f7-c377-46a2-95fa-5c4c2410c9d7
[2005-10-19 16:24:09 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '12955248808', 'memory_KiB': '257024', 'uuid': 'fe0658f7-c377-46a2-95fa-5c4c2410c9d7', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 16:24:10 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 16:24:10 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12996488477L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:24:10 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 16:24:10 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 16:24:10 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 16:24:10 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12996488477L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 16:24:12 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129753452.35', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '399c1f44-14f6-46e4-a4b2-a6b66e68438c'}
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/fe0658f7-c377-46a2-95fa-5c4c2410c9d7/backend/vbd/399c1f44-14f6-46e4-a4b2-a6b66e68438c/769'} to /domain/399c1f44-14f6-46e4-a4b2-a6b66e68438c/device/vbd/769.
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/399c1f44-14f6-46e4-a4b2-a6b66e68438c/device/vbd/769', 'frontend-id': '1'} to /domain/fe0658f7-c377-46a2-95fa-5c4c2410c9d7/backend/vbd/399c1f44-14f6-46e4-a4b2-a6b66e68438c/769.
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/fe0658f7-c377-46a2-95fa-5c4c2410c9d7/backend/vif/399c1f44-14f6-46e4-a4b2-a6b66e68438c/1'} to /domain/399c1f44-14f6-46e4-a4b2-a6b66e68438c/device/vif/1.
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/399c1f44-14f6-46e4-a4b2-a6b66e68438c/device/vif/1'} to /domain/fe0658f7-c377-46a2-95fa-5c4c2410c9d7/backend/vif/399c1f44-14f6-46e4-a4b2-a6b66e68438c/1.
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129753452.35', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '399c1f44-14f6-46e4-a4b2-a6b66e68438c'}
[2005-10-19 16:24:12 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129753452.35', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '399c1f44-14f6-46e4-a4b2-a6b66e68438c'}
[2005-10-19 16:24:12 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 16:24:12 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129753452.346014, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 244471856L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 13729250108L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 13729250108L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 247548519L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:24:14 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=1.
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 3, 'start_time': 1129753452.346014, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 247548519L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 13807296543L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 13807296543L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 247548519L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 16:24:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 3, 'start_time': 1129753452.346014, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 247548519L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:49:52 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 17:49:52 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 159844616913L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 17:49:52 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 17:49:52 xend] INFO (__init__:988) Recreating domain 0, uuid a3cdeb10-75e4-4448-8065-585b51424010
[2005-10-19 17:49:52 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '159844616913', 'memory_KiB': '257024', 'uuid': 'a3cdeb10-75e4-4448-8065-585b51424010', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 17:49:52 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 17:49:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 159885683947L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:49:52 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 17:49:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 159885683947L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:49:52 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 17:49:52 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 17:49:55 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 17:49:55 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758595.86', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '012513a6-6fa0-4deb-ab17-0173f1e233d5'}
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/012513a6-6fa0-4deb-ab17-0173f1e233d5/769'} to /domain/012513a6-6fa0-4deb-ab17-0173f1e233d5/device/vbd/769.
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/012513a6-6fa0-4deb-ab17-0173f1e233d5/device/vbd/769', 'frontend-id': '1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/012513a6-6fa0-4deb-ab17-0173f1e233d5/769.
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/012513a6-6fa0-4deb-ab17-0173f1e233d5/1'} to /domain/012513a6-6fa0-4deb-ab17-0173f1e233d5/device/vif/1.
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/012513a6-6fa0-4deb-ab17-0173f1e233d5/device/vif/1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/012513a6-6fa0-4deb-ab17-0173f1e233d5/1.
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758595.86', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '012513a6-6fa0-4deb-ab17-0173f1e233d5'}
[2005-10-19 17:49:56 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758595.86', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '012513a6-6fa0-4deb-ab17-0173f1e233d5'}
[2005-10-19 17:49:56 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 17:49:56 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 17:49:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 17:49:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129758595.864697, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 256463349L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 160909479019L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:50:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 160909479019L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5202411560L, 'ssidref': 0, 'shutdown_reason': 1, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 17:50:21 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=1 reason=reboot.
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) parseConfig: config is ['domain', ['domid', 1], ['uuid', '012513a6-6fa0-4deb-ab17-0173f1e233d5'], ['memory', 255], ['name', 'Normal-Domain'], ['ssidref', 0], ['cpu_weight', 1.0], ['maxmem', 255], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]], ['state', '---s--'], ['shutdown_reason', 'reboot'], ['cpu_time', 5.2024115599999998], ['vcpus', 1], ['cpumap', [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], ['cpu', 0], ['vcpu_to_cpu', '0'], ['up_time', '26.1594679356'], ['start_time', '1129758595.86'], ['store_mfn', 61133], ['console_mfn', 61132]]
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 255, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': 1.0, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': 0, 'maxmem': 255}
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 261120 1.0
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=261120
[2005-10-19 17:50:22 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) dom            = 2
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) Storing {'memory_KiB': '261120', 'name': 'Normal-Domain', 'start_time': '1129758622.13', 'maxmem_KiB': '261120', 'memory/target': '261120', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '6e9aa8db-4798-43f3-9a18-b04264f8b381'}
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/6e9aa8db-4798-43f3-9a18-b04264f8b381/769'} to /domain/6e9aa8db-4798-43f3-9a18-b04264f8b381/device/vbd/769.
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/6e9aa8db-4798-43f3-9a18-b04264f8b381/device/vbd/769', 'frontend-id': '2'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/6e9aa8db-4798-43f3-9a18-b04264f8b381/769.
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/6e9aa8db-4798-43f3-9a18-b04264f8b381/1'} to /domain/6e9aa8db-4798-43f3-9a18-b04264f8b381/device/vif/1.
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/6e9aa8db-4798-43f3-9a18-b04264f8b381/device/vif/1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/6e9aa8db-4798-43f3-9a18-b04264f8b381/1.
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) Storing {'memory_KiB': '261120', 'name': 'Normal-Domain', 'start_time': '1129758622.13', 'maxmem_KiB': '261120', 'memory/target': '261120', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '6e9aa8db-4798-43f3-9a18-b04264f8b381'}
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) Storing {'memory_KiB': '261120', 'name': 'Normal-Domain', 'start_time': '1129758622.13', 'maxmem_KiB': '261120', 'memory/target': '261120', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '6e9aa8db-4798-43f3-9a18-b04264f8b381'}
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 1, 'start_time': 1129758595.864697, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5202411560L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161227764686L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161227764686L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 261120, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 261120, 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 17:50:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129758622.1313519, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 261120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 261120, 'cpu': 0, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:22 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-19 17:50:22 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 2]
[2005-10-19 17:50:22 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 1]
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161828100456L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161828100456L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5022045103L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 261120, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 261088, 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129758622.1313519, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5022045103L, 'ssidref': 0, 'memory_KiB': 261088, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 261088, 'cpu': 0, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161846123243L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-19 17:50:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129758622.1313519, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5022045103L, 'ssidref': 0, 'memory_KiB': 261088, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 261088, 'cpu': 0, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:34 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161993535959L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:50:34 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 161993535959L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:34 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5076518964L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 261120, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 261088, 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 17:50:34 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129758622.1313519, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5076518964L, 'ssidref': 0, 'memory_KiB': 261088, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 261088, 'cpu': 0, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 162117802711L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 162117802711L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8599885681L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 261120, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 261056, 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 17:50:48 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=2 reason=poweroff.
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=2
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129758622.1313519, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8599885681L, 'ssidref': 0, 'memory_KiB': 261056, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 261056, 'cpu': 0, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 162203212957L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 162203212957L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8599885681L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 2, 'running': 0, 'maxmem_kb': 261120, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 16, 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 17:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129758622.1313519, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 8599885681L, 'ssidref': 0, 'memory_KiB': 16, 'name': 'Normal-Domain', 'dying': 1, 'dom': 2, 'maxmem_KiB': 16, 'cpu': 0, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 3 262144 1.0
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) init_domain> Created domain=3 name=Normal-Domain memory=262144
[2005-10-19 17:51:48 xend] INFO (__init__:988) buildDomain os=linux dom=3 vcpus=1
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) dom            = 3
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758708.81', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'abea031a-0d61-48a4-a429-7eff4627663d'}
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/abea031a-0d61-48a4-a429-7eff4627663d/769'} to /domain/abea031a-0d61-48a4-a429-7eff4627663d/device/vbd/769.
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/abea031a-0d61-48a4-a429-7eff4627663d/device/vbd/769', 'frontend-id': '3'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/abea031a-0d61-48a4-a429-7eff4627663d/769.
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/abea031a-0d61-48a4-a429-7eff4627663d/1'} to /domain/abea031a-0d61-48a4-a429-7eff4627663d/device/vif/1.
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '3', 'domain': 'Normal-Domain', 'frontend': '/domain/abea031a-0d61-48a4-a429-7eff4627663d/device/vif/1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/abea031a-0d61-48a4-a429-7eff4627663d/1.
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758708.81', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'abea031a-0d61-48a4-a429-7eff4627663d'}
[2005-10-19 17:51:48 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758708.81', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'abea031a-0d61-48a4-a429-7eff4627663d'}
[2005-10-19 17:51:49 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 3]
[2005-10-19 17:51:49 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 2]
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163052678309L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163052678309L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 3
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129758708.8054171, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163072211264L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 3
[2005-10-19 17:51:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129758708.8054171, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:51:51 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 2]
[2005-10-19 17:51:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 3
[2005-10-19 17:51:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129758708.8054171, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:52:06 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163690572831L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 17:52:06 xend] INFO (__init__:988) Recreating domain 0, uuid a3cdeb10-75e4-4448-8065-585b51424010
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163710103257L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 17:52:06 xend] INFO (__init__:988) Recreating domain 0, uuid a3cdeb10-75e4-4448-8065-585b51424010
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '163710103257', 'memory_KiB': '257276', 'uuid': 'a3cdeb10-75e4-4448-8065-585b51424010', 'image': 'None', 'maxmem_KiB': '257276', 'memory/target': '257276', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 17:52:06 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 17:52:06 xend] INFO (__init__:988) Recreating domain 3, uuid abea031a-0d61-48a4-a429-7eff4627663d
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'memory_KiB': '262144', 'uuid': 'abea031a-0d61-48a4-a429-7eff4627663d', 'dom': '3', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'paused': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Normal-Domain'}
[2005-10-19 17:52:06 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 3]
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '163690572831', 'memory_KiB': '257276', 'uuid': 'a3cdeb10-75e4-4448-8065-585b51424010', 'image': 'None', 'maxmem_KiB': '257276', 'memory/target': '257276', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 17:52:06 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 17:52:06 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 17:52:07 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163931974916L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163931974916L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 3
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'paused': 1, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 262144, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 0, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dom': 3, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 163951501908L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 3
[2005-10-19 17:52:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'paused': 1, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 262144, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 0, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dom': 3, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:14 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 3
[2005-10-19 17:52:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'paused': 1, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 262144, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 0, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dom': 3, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:25 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:52:25 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 17:52:25 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 17:52:34 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=3
[2005-10-19 17:52:35 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 164471452030L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:52:35 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 164471452030L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:35 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 3]
[2005-10-19 17:52:39 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 164760885156L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:52:39 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 164760885156L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:39 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:52:39 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 164760885156L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 4 262144 1.0
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) init_domain> Created domain=4 name=Normal-Domain memory=262144
[2005-10-19 17:52:42 xend] INFO (__init__:988) buildDomain os=linux dom=4 vcpus=1
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) dom            = 4
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758762.47', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3405e705-3936-431f-a75c-e7467ddde43f'}
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/3405e705-3936-431f-a75c-e7467ddde43f/769'} to /domain/3405e705-3936-431f-a75c-e7467ddde43f/device/vbd/769.
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/3405e705-3936-431f-a75c-e7467ddde43f/device/vbd/769', 'frontend-id': '4'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/3405e705-3936-431f-a75c-e7467ddde43f/769.
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/3405e705-3936-431f-a75c-e7467ddde43f/1'} to /domain/3405e705-3936-431f-a75c-e7467ddde43f/device/vif/1.
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '4', 'domain': 'Normal-Domain', 'frontend': '/domain/3405e705-3936-431f-a75c-e7467ddde43f/device/vif/1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/3405e705-3936-431f-a75c-e7467ddde43f/1.
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758762.47', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3405e705-3936-431f-a75c-e7467ddde43f'}
[2005-10-19 17:52:42 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758762.47', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3405e705-3936-431f-a75c-e7467ddde43f'}
[2005-10-19 17:52:42 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 4]
[2005-10-19 17:52:42 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 4]
[2005-10-19 17:52:45 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 4
[2005-10-19 17:52:45 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 309985957L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:54:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166429114018L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:54:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166429114018L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:54:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 10008221379L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262096, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 4
[2005-10-19 17:54:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 10008221379L, 'ssidref': 0, 'memory_KiB': 262096, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262096, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166568117638L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166568117638L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 10226632475L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262096, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 4
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 4 in 28s.
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 10226632475L, 'ssidref': 0, 'memory_KiB': 262096, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262096, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166572653557L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 4
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 4 in 28s.
[2005-10-19 17:55:00 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 10226632475L, 'ssidref': 0, 'memory_KiB': 262096, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262096, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:04 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 4
[2005-10-19 17:55:04 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 4 in 24s.
[2005-10-19 17:55:04 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 10268699926L, 'ssidref': 0, 'memory_KiB': 262096, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262096, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166867581702L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166867581702L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12906171638L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 262096, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 4
[2005-10-19 17:55:24 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=4 reason=poweroff.
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=4
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12906171638L, 'ssidref': 0, 'memory_KiB': 262096, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262096, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166949476095L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 166949476095L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12906171638L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 16, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 4
[2005-10-19 17:55:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129758762.467427, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12906171638L, 'ssidref': 0, 'memory_KiB': 16, 'name': 'Normal-Domain', 'dying': 1, 'dom': 4, 'maxmem_KiB': 16, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:29 xend] ERROR (__init__:988) domain_getinfo(4) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-19 17:55:29 xend] ERROR (__init__:988) domain_getinfo(4) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-19 17:55:29 xend] ERROR (__init__:988) domain_getinfo(4) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 5 262144 1.0
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) init_domain> Created domain=5 name=Normal-Domain memory=262144
[2005-10-19 17:55:50 xend] INFO (__init__:988) buildDomain os=linux dom=5 vcpus=1
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) dom            = 5
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758950.08', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '6037880b-3dd5-4b44-9299-d7db688d751f'}
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/6037880b-3dd5-4b44-9299-d7db688d751f/769'} to /domain/6037880b-3dd5-4b44-9299-d7db688d751f/device/vbd/769.
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/6037880b-3dd5-4b44-9299-d7db688d751f/device/vbd/769', 'frontend-id': '5'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/6037880b-3dd5-4b44-9299-d7db688d751f/769.
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/6037880b-3dd5-4b44-9299-d7db688d751f/1'} to /domain/6037880b-3dd5-4b44-9299-d7db688d751f/device/vif/1.
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '5', 'domain': 'Normal-Domain', 'frontend': '/domain/6037880b-3dd5-4b44-9299-d7db688d751f/device/vif/1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/6037880b-3dd5-4b44-9299-d7db688d751f/1.
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758950.08', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '6037880b-3dd5-4b44-9299-d7db688d751f'}
[2005-10-19 17:55:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758950.08', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '6037880b-3dd5-4b44-9299-d7db688d751f'}
[2005-10-19 17:55:50 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 5]
[2005-10-19 17:55:50 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 4]
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 167715947928L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 167715947928L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129758950.0813651, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 167735481409L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-19 17:55:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129758950.0813651, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:55:53 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 4]
[2005-10-19 17:55:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-19 17:55:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129758950.0813651, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 17:56:03 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=5
[2005-10-19 17:56:03 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 168162404102L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:56:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 168162404102L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:56:03 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 5]
[2005-10-19 17:56:05 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 168346851824L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257256, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 17:56:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 168346851824L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:56:05 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 17:56:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': 'None', 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257256, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 168351379325L, 'ssidref': 0, 'memory_KiB': 257256, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 6 262144 1.0
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) init_domain> Created domain=6 name=Normal-Domain memory=262144
[2005-10-19 17:56:07 xend] INFO (__init__:988) buildDomain os=linux dom=6 vcpus=1
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) dom            = 6
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 17:56:07 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758967.96', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '6', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '4773372f-a30e-404b-a500-362fa0a3039f'}
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/4773372f-a30e-404b-a500-362fa0a3039f/769'} to /domain/4773372f-a30e-404b-a500-362fa0a3039f/device/vbd/769.
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/4773372f-a30e-404b-a500-362fa0a3039f/device/vbd/769', 'frontend-id': '6'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vbd/4773372f-a30e-404b-a500-362fa0a3039f/769.
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/4773372f-a30e-404b-a500-362fa0a3039f/1'} to /domain/4773372f-a30e-404b-a500-362fa0a3039f/device/vif/1.
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '6', 'domain': 'Normal-Domain', 'frontend': '/domain/4773372f-a30e-404b-a500-362fa0a3039f/device/vif/1'} to /domain/a3cdeb10-75e4-4448-8065-585b51424010/backend/vif/4773372f-a30e-404b-a500-362fa0a3039f/1.
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758967.96', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '6', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '4773372f-a30e-404b-a500-362fa0a3039f'}
[2005-10-19 17:56:08 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129758967.96', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '6', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '4773372f-a30e-404b-a500-362fa0a3039f'}
[2005-10-19 17:56:08 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 6]
[2005-10-19 17:56:08 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 6]
[2005-10-19 17:56:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 6
[2005-10-19 17:56:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 6: {'shutdown_reason': 0, 'start_time': 1129758967.9642191, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4432224852L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 6, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 18:16:24 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 18:16:24 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12730274320L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 18:16:24 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 18:16:24 xend] INFO (__init__:988) Recreating domain 0, uuid d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5
[2005-10-19 18:16:24 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '12730274320', 'memory_KiB': '257024', 'uuid': 'd3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 18:16:24 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 18:16:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12771337335L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 18:16:24 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 18:16:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12771337335L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 18:16:24 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 18:16:24 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 18:16:25 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129760185.51', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'fa644635-fd7b-46b2-88bc-27fe1c89b8cf'}
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vbd/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/769'} to /domain/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/device/vbd/769.
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/device/vbd/769', 'frontend-id': '1'} to /domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vbd/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/769.
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vif/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/1'} to /domain/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/device/vif/1.
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/device/vif/1'} to /domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vif/fa644635-fd7b-46b2-88bc-27fe1c89b8cf/1.
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129760185.51', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'fa644635-fd7b-46b2-88bc-27fe1c89b8cf'}
[2005-10-19 18:16:25 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129760185.51', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'fa644635-fd7b-46b2-88bc-27fe1c89b8cf'}
[2005-10-19 18:16:25 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 18:16:25 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 18:16:31 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 18:16:31 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 1248340625L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:08:40 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:08:40 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 69516901157L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:05 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 44887229966L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:09:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 44887229966L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:05 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 93638197196L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:09:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 93638197196L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45008371306L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45008371306L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 95276763514L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 1 in 28s.
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 95276763514L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45008371306L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 1 in 28s.
[2005-10-19 20:09:06 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 95276763514L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:09 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:09:10 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45321943556L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:09:10 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45321943556L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:10 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 32, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:09:10 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 32, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 32, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45465984626L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45465984626L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 45485517600L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:09:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:15 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 262144 1.0
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=262144
[2005-10-19 20:09:17 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) dom            = 2
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129766957.84', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0c25d29d-e4b4-48d5-90e3-fb4faac35bd4'}
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vbd/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/769'} to /domain/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/device/vbd/769.
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/device/vbd/769', 'frontend-id': '2'} to /domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vbd/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/769.
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vif/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/1'} to /domain/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/device/vif/1.
[2005-10-19 20:09:17 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/device/vif/1'} to /domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vif/0c25d29d-e4b4-48d5-90e3-fb4faac35bd4/1.
[2005-10-19 20:09:18 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129766957.84', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0c25d29d-e4b4-48d5-90e3-fb4faac35bd4'}
[2005-10-19 20:09:18 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129766957.84', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0c25d29d-e4b4-48d5-90e3-fb4faac35bd4'}
[2005-10-19 20:09:18 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-19 20:09:18 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46195689538L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46195689538L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129766957.839937, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46215218195L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:09:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:39 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-19 20:09:39 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129766957.839937, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46783035653L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46783035653L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129766957.839937, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46786054656L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:09:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46991630533L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46991630533L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129766957.839937, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 46995153666L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:12 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:13 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:14 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:15 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 47651568641L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 47651568641L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129766957.839937, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 47671098153L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:21 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=2
[2005-10-19 20:10:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 47925617322L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:10:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 47925617322L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:10:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:21 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 2]
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 48415820240L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 48415820240L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 48435347128L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:37 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:38 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:39 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:40 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:40 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:41 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:41 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:42 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:43 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 49671044389L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 49671044389L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 49687056052L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 3 262144 1.0
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) init_domain> Created domain=3 name=Normal-Domain memory=262144
[2005-10-19 20:10:50 xend] INFO (__init__:988) buildDomain os=linux dom=3 vcpus=1
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) dom            = 3
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129767050.34', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'bb38d436-d7a6-42d9-a5c3-8269e26605e4'}
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vbd/bb38d436-d7a6-42d9-a5c3-8269e26605e4/769'} to /domain/bb38d436-d7a6-42d9-a5c3-8269e26605e4/device/vbd/769.
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/bb38d436-d7a6-42d9-a5c3-8269e26605e4/device/vbd/769', 'frontend-id': '3'} to /domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vbd/bb38d436-d7a6-42d9-a5c3-8269e26605e4/769.
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vif/bb38d436-d7a6-42d9-a5c3-8269e26605e4/1'} to /domain/bb38d436-d7a6-42d9-a5c3-8269e26605e4/device/vif/1.
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '3', 'domain': 'Normal-Domain', 'frontend': '/domain/bb38d436-d7a6-42d9-a5c3-8269e26605e4/device/vif/1'} to /domain/d3aacbdf-4d7c-47aa-b8c4-2fc2ca66c3a5/backend/vif/bb38d436-d7a6-42d9-a5c3-8269e26605e4/1.
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129767050.34', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'bb38d436-d7a6-42d9-a5c3-8269e26605e4'}
[2005-10-19 20:10:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129767050.34', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'bb38d436-d7a6-42d9-a5c3-8269e26605e4'}
[2005-10-19 20:10:50 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 3]
[2005-10-19 20:10:50 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 50251776068L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256408, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 50251776068L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 28, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 3
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129767050.338135, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256408, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 50266780607L, 'ssidref': 0, 'memory_KiB': 256408, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:10:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129760185.5054879, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 98263264838L, 'ssidref': 0, 'memory_KiB': 28, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 28, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 3
[2005-10-19 20:11:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129767050.338135, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:13:00 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 20:13:00 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12526996462L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 20:13:00 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 20:13:00 xend] INFO (__init__:988) Recreating domain 0, uuid 987e643c-a11e-4b2d-b7ba-25e2dc2c718c
[2005-10-19 20:13:00 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '12526996462', 'memory_KiB': '257024', 'uuid': '987e643c-a11e-4b2d-b7ba-25e2dc2c718c', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 20:13:00 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 20:13:00 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12569181373L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:13:00 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 20:13:00 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12569181373L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:13:00 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 20:13:00 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 20:13:02 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129767182.68', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '5664b1aa-3412-4c9e-8de6-1e0a5850bba7'}
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vbd/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/769'} to /domain/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/device/vbd/769.
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/device/vbd/769', 'frontend-id': '1'} to /domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vbd/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/769.
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vif/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/1'} to /domain/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/device/vif/1.
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/device/vif/1'} to /domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vif/5664b1aa-3412-4c9e-8de6-1e0a5850bba7/1.
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129767182.68', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '5664b1aa-3412-4c9e-8de6-1e0a5850bba7'}
[2005-10-19 20:13:02 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129767182.68', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '5664b1aa-3412-4c9e-8de6-1e0a5850bba7'}
[2005-10-19 20:13:02 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 20:13:02 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 20:13:08 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 20:13:09 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129767182.6833391, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 1913367655L, 'ssidref': 0, 'memory_KiB': 262124, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262124, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 39436448202L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256516, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256516, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 39436448202L, 'ssidref': 0, 'memory_KiB': 256516, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17908210625L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262124, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 1
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129767182.6833391, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17908210625L, 'ssidref': 0, 'memory_KiB': 262124, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262124, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 39467835510L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256516, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256516, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 39467835510L, 'ssidref': 0, 'memory_KiB': 256516, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17908665799L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 262124, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:24:49 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=1 reason=poweroff.
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129767182.6833391, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17908665799L, 'ssidref': 0, 'memory_KiB': 262124, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262124, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 39531777678L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256516, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256516, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 39531777678L, 'ssidref': 0, 'memory_KiB': 256516, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17908665799L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 52, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 20:24:49 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129767182.6833391, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 17908665799L, 'ssidref': 0, 'memory_KiB': 52, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 52, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 262144 1.0
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=262144
[2005-10-19 20:31:37 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) dom            = 2
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129768297.75', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '9d8f77bd-9b75-497a-897b-113263139ace'}
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vbd/9d8f77bd-9b75-497a-897b-113263139ace/769'} to /domain/9d8f77bd-9b75-497a-897b-113263139ace/device/vbd/769.
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/9d8f77bd-9b75-497a-897b-113263139ace/device/vbd/769', 'frontend-id': '2'} to /domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vbd/9d8f77bd-9b75-497a-897b-113263139ace/769.
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vif/9d8f77bd-9b75-497a-897b-113263139ace/1'} to /domain/9d8f77bd-9b75-497a-897b-113263139ace/device/vif/1.
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/9d8f77bd-9b75-497a-897b-113263139ace/device/vif/1'} to /domain/987e643c-a11e-4b2d-b7ba-25e2dc2c718c/backend/vif/9d8f77bd-9b75-497a-897b-113263139ace/1.
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129768297.75', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '9d8f77bd-9b75-497a-897b-113263139ace'}
[2005-10-19 20:31:37 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129768297.75', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '9d8f77bd-9b75-497a-897b-113263139ace'}
[2005-10-19 20:31:37 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-19 20:31:37 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 20:31:55 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-19 20:31:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129768297.7501669, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:09:27 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 22:09:27 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 29360623550L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 22:09:27 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 22:09:27 xend] INFO (__init__:988) Recreating domain 0, uuid 20416832-3995-4493-b540-c494195dc4bb
[2005-10-19 22:09:27 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '29360623550', 'memory_KiB': '257024', 'uuid': '20416832-3995-4493-b540-c494195dc4bb', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 22:09:27 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 22:09:27 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 29405005015L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:27 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 22:09:27 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 22:09:27 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 22:09:27 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 29405005015L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 22:09:30 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774170.27', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '37261406-7a25-444c-8d40-6430106d59d5'}
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/37261406-7a25-444c-8d40-6430106d59d5/769'} to /domain/37261406-7a25-444c-8d40-6430106d59d5/device/vbd/769.
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/37261406-7a25-444c-8d40-6430106d59d5/device/vbd/769', 'frontend-id': '1'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/37261406-7a25-444c-8d40-6430106d59d5/769.
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/37261406-7a25-444c-8d40-6430106d59d5/1'} to /domain/37261406-7a25-444c-8d40-6430106d59d5/device/vif/1.
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/37261406-7a25-444c-8d40-6430106d59d5/device/vif/1'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/37261406-7a25-444c-8d40-6430106d59d5/1.
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774170.27', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '37261406-7a25-444c-8d40-6430106d59d5'}
[2005-10-19 22:09:30 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774170.27', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '37261406-7a25-444c-8d40-6430106d59d5'}
[2005-10-19 22:09:30 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 22:09:30 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30052999772L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30052999772L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 291885401L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 22:09:32 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=1.
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 3, 'start_time': 1129774170.269176, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 291885401L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30142197385L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30142197385L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 291885401L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 22:09:32 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 3, 'start_time': 1129774170.269176, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 291885401L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:09:39 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 22:09:39 xend] ERROR (__init__:988) domain_getinfo(1) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-19 22:09:47 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30604697545L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30604697545L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:47 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 22:09:47 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 30624232316L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:47 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 1]
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 262144 1.0
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=262144
[2005-10-19 22:09:52 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) dom            = 2
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 22:09:52 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774192.98', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0b0ef99b-953e-4268-9540-4e881ca83b35'}
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/0b0ef99b-953e-4268-9540-4e881ca83b35/769'} to /domain/0b0ef99b-953e-4268-9540-4e881ca83b35/device/vbd/769.
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/0b0ef99b-953e-4268-9540-4e881ca83b35/device/vbd/769', 'frontend-id': '2'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/0b0ef99b-953e-4268-9540-4e881ca83b35/769.
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/0b0ef99b-953e-4268-9540-4e881ca83b35/1'} to /domain/0b0ef99b-953e-4268-9540-4e881ca83b35/device/vif/1.
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/0b0ef99b-953e-4268-9540-4e881ca83b35/device/vif/1'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/0b0ef99b-953e-4268-9540-4e881ca83b35/1.
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774192.98', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0b0ef99b-953e-4268-9540-4e881ca83b35'}
[2005-10-19 22:09:53 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774192.98', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0b0ef99b-953e-4268-9540-4e881ca83b35'}
[2005-10-19 22:09:53 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-19 22:09:53 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 2]
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31514243381L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31514243381L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231692259L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 22:09:55 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=2.
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=2
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 3, 'start_time': 1129774192.9776781, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231692259L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31595297236L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31595297236L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231692259L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 3, 'start_time': 1129774192.9776781, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231692259L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 2, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31765161510L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31765161510L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 22:09:55 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 31785182963L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:09:55 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 2]
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 3 262144 1.0
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) init_domain> Created domain=3 name=Normal-Domain memory=262144
[2005-10-19 22:11:57 xend] INFO (__init__:988) buildDomain os=linux dom=3 vcpus=1
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) dom            = 3
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774317.12', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'c6d592ef-99c1-41bf-afdd-a1145a73c632'}
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/c6d592ef-99c1-41bf-afdd-a1145a73c632/769'} to /domain/c6d592ef-99c1-41bf-afdd-a1145a73c632/device/vbd/769.
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/c6d592ef-99c1-41bf-afdd-a1145a73c632/device/vbd/769', 'frontend-id': '3'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/c6d592ef-99c1-41bf-afdd-a1145a73c632/769.
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/c6d592ef-99c1-41bf-afdd-a1145a73c632/1'} to /domain/c6d592ef-99c1-41bf-afdd-a1145a73c632/device/vif/1.
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '3', 'domain': 'Normal-Domain', 'frontend': '/domain/c6d592ef-99c1-41bf-afdd-a1145a73c632/device/vif/1'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/c6d592ef-99c1-41bf-afdd-a1145a73c632/1.
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774317.12', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'c6d592ef-99c1-41bf-afdd-a1145a73c632'}
[2005-10-19 22:11:57 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774317.12', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'c6d592ef-99c1-41bf-afdd-a1145a73c632'}
[2005-10-19 22:11:57 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 3]
[2005-10-19 22:11:57 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 3]
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40341291460L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40341291460L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231112784L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 3
[2005-10-19 22:11:59 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=3.
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=3
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 3, 'start_time': 1129774317.120666, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231112784L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40422318006L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40422318006L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231112784L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 3
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 3, 'start_time': 1129774317.120666, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231112784L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 3, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40619685268L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40619685268L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 22:11:59 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40641234685L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:11:59 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 3]
[2005-10-19 22:12:07 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40888258245L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:12:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40888258245L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:12:07 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 22:12:07 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 40904770818L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 4 262144 1.0
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) init_domain> Created domain=4 name=Normal-Domain memory=262144
[2005-10-19 22:12:49 xend] INFO (__init__:988) buildDomain os=linux dom=4 vcpus=1
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) dom            = 4
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 22:12:49 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774369.95', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '746810a2-1030-4c0e-80fd-58889454ed90'}
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/746810a2-1030-4c0e-80fd-58889454ed90/769'} to /domain/746810a2-1030-4c0e-80fd-58889454ed90/device/vbd/769.
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/746810a2-1030-4c0e-80fd-58889454ed90/device/vbd/769', 'frontend-id': '4'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/746810a2-1030-4c0e-80fd-58889454ed90/769.
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/746810a2-1030-4c0e-80fd-58889454ed90/1'} to /domain/746810a2-1030-4c0e-80fd-58889454ed90/device/vif/1.
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '4', 'domain': 'Normal-Domain', 'frontend': '/domain/746810a2-1030-4c0e-80fd-58889454ed90/device/vif/1'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/746810a2-1030-4c0e-80fd-58889454ed90/1.
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774369.95', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '746810a2-1030-4c0e-80fd-58889454ed90'}
[2005-10-19 22:12:50 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774369.95', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '746810a2-1030-4c0e-80fd-58889454ed90'}
[2005-10-19 22:12:50 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 4]
[2005-10-19 22:12:50 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 4]
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 41955702237L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 41955702237L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 222174402L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 4
[2005-10-19 22:12:52 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=4.
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=4
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 3, 'start_time': 1129774369.9526861, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 222174402L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 42033361723L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 42033361723L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 222174402L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 4
[2005-10-19 22:12:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 3, 'start_time': 1129774369.9526861, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 222174402L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 4, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 5 262144 1.0
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) init_domain> Created domain=5 name=Normal-Domain memory=262144
[2005-10-19 22:16:18 xend] INFO (__init__:988) buildDomain os=linux dom=5 vcpus=1
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) dom            = 5
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 22:16:18 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774578.9', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'bc2d1c30-b03a-46b6-b253-389025baadc7'}
[2005-10-19 22:16:19 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/bc2d1c30-b03a-46b6-b253-389025baadc7/769'} to /domain/bc2d1c30-b03a-46b6-b253-389025baadc7/device/vbd/769.
[2005-10-19 22:16:19 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb2', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/bc2d1c30-b03a-46b6-b253-389025baadc7/device/vbd/769', 'frontend-id': '5'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vbd/bc2d1c30-b03a-46b6-b253-389025baadc7/769.
[2005-10-19 22:16:19 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/bc2d1c30-b03a-46b6-b253-389025baadc7/1'} to /domain/bc2d1c30-b03a-46b6-b253-389025baadc7/device/vif/1.
[2005-10-19 22:16:19 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '5', 'domain': 'Normal-Domain', 'frontend': '/domain/bc2d1c30-b03a-46b6-b253-389025baadc7/device/vif/1'} to /domain/20416832-3995-4493-b540-c494195dc4bb/backend/vif/bc2d1c30-b03a-46b6-b253-389025baadc7/1.
[2005-10-19 22:16:19 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774578.9', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'bc2d1c30-b03a-46b6-b253-389025baadc7'}
[2005-10-19 22:16:19 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129774578.9', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'bc2d1c30-b03a-46b6-b253-389025baadc7'}
[2005-10-19 22:16:19 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 5]
[2005-10-19 22:16:19 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 4]
[2005-10-19 22:50:41 xend] INFO (__init__:988) Xend Daemon started
[2005-10-19 22:50:41 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 13538887960L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 22:50:41 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 22:50:41 xend] INFO (__init__:988) Recreating domain 0, uuid 05ed39ea-d4c8-4731-b710-d2c0e9f5b551
[2005-10-19 22:50:41 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 13546370652L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-19 22:50:41 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '13538887960', 'memory_KiB': '257024', 'uuid': '05ed39ea-d4c8-4731-b710-d2c0e9f5b551', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 22:50:41 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-19 22:50:41 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-19 22:50:41 xend] INFO (__init__:988) Recreating domain 0, uuid f88171fa-e147-4db5-921e-916cb3a5c570
[2005-10-19 22:50:41 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-19 22:50:41 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-19 22:50:41 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-19 22:50:41 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '13546370652', 'memory_KiB': '257024', 'uuid': 'f88171fa-e147-4db5-921e-916cb3a5c570', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-19 22:50:46 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) dom            = 1
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) flags          = 0
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129776646.45', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '94c345f8-df33-4e62-8da8-6191d1559655'}
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/f88171fa-e147-4db5-921e-916cb3a5c570/backend/vbd/94c345f8-df33-4e62-8da8-6191d1559655/769'} to /domain/94c345f8-df33-4e62-8da8-6191d1559655/device/vbd/769.
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb2', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/94c345f8-df33-4e62-8da8-6191d1559655/device/vbd/769', 'frontend-id': '1'} to /domain/f88171fa-e147-4db5-921e-916cb3a5c570/backend/vbd/94c345f8-df33-4e62-8da8-6191d1559655/769.
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/f88171fa-e147-4db5-921e-916cb3a5c570/backend/vif/94c345f8-df33-4e62-8da8-6191d1559655/1'} to /domain/94c345f8-df33-4e62-8da8-6191d1559655/device/vif/1.
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/94c345f8-df33-4e62-8da8-6191d1559655/device/vif/1'} to /domain/f88171fa-e147-4db5-921e-916cb3a5c570/backend/vif/94c345f8-df33-4e62-8da8-6191d1559655/1.
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129776646.45', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '94c345f8-df33-4e62-8da8-6191d1559655'}
[2005-10-19 22:50:46 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129776646.45', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '94c345f8-df33-4e62-8da8-6191d1559655'}
[2005-10-19 22:50:46 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-19 22:50:46 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14258829227L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14258829227L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 311224211L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129776646.4516301, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 311224211L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14258829227L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 22:50:48 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129776646.4516301, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 311224211L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:50:51 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-19 22:50:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129776646.4516301, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 313572394L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14463138272L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14463138272L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 320824880L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 22:50:58 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=1.
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 3, 'start_time': 1129776646.4516301, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 320824880L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14520535916L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 14520535916L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 320824880L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 4, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-19 22:50:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 3, 'start_time': 1129776646.4516301, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 320824880L, 'ssidref': 0, 'memory_KiB': 4, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 4, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:11:58 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 81493524712L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:11:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 81493524712L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:11:58 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:11:58 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 81514225915L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:11:58 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 1]
[2005-10-20 00:12:16 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 81666215388L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:12:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 81666215388L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:12:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:12:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 81685749527L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:15:04 xend] INFO (__init__:988) Xend Daemon started
[2005-10-20 00:15:05 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12619392729L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-20 00:15:05 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-20 00:15:05 xend] INFO (__init__:988) Recreating domain 0, uuid 6ca337e2-e4d9-4cca-ad0e-12b5450406a7
[2005-10-20 00:15:05 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '12619392729', 'memory_KiB': '257024', 'uuid': '6ca337e2-e4d9-4cca-ad0e-12b5450406a7', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-20 00:15:05 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-20 00:15:05 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12664434108L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:15:05 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-20 00:15:05 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-20 00:15:05 xend] INFO (__init__:988) EVENT> xend.start 0
[2005-10-20 00:15:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12664434108L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 1 262144 1.0
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) init_domain> Created domain=1 name=Normal-Domain memory=262144
[2005-10-20 00:15:11 xend] INFO (__init__:988) buildDomain os=linux dom=1 vcpus=1
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) dom            = 1
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) flags          = 0
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129781711.5', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3c3f64e1-ba4e-49a6-af7a-76b11029a89f'}
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/769'} to /domain/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/device/vbd/769.
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb2', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/device/vbd/769', 'frontend-id': '1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/769.
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/1'} to /domain/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/device/vif/1.
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '1', 'domain': 'Normal-Domain', 'frontend': '/domain/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/device/vif/1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/3c3f64e1-ba4e-49a6-af7a-76b11029a89f/1.
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129781711.5', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3c3f64e1-ba4e-49a6-af7a-76b11029a89f'}
[2005-10-20 00:15:11 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129781711.5', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '1', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3c3f64e1-ba4e-49a6-af7a-76b11029a89f'}
[2005-10-20 00:15:11 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 1]
[2005-10-20 00:15:11 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 1]
[2005-10-20 00:15:14 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-20 00:15:14 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 257329327L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15016964888L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257276, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15016964888L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4247659339L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262080, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 1
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4247659339L, 'ssidref': 0, 'memory_KiB': 262080, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262080, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257276, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15032975484L, 'ssidref': 0, 'memory_KiB': 257276, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-20 00:19:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4247659339L, 'ssidref': 0, 'memory_KiB': 262080, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262080, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:50 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15261128745L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15261128745L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:50 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4266352947L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262120, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 1
[2005-10-20 00:19:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4266352947L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:51 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15397877257L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15397877257L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:51 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4343249458L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262120, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-20 00:19:51 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 1 in 28s.
[2005-10-20 00:19:51 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4343249458L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15533698469L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15533698469L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4532963195L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262120, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 1 in 28s.
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4532963195L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15533698469L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 1
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) Scheduling refreshShutdown on domain 1 in 28s.
[2005-10-20 00:19:52 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4532963195L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15601856072L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15601856072L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4739771183L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 262120, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-20 00:19:53 xend] INFO (__init__:988) Domain has shutdown: name=Normal-Domain id=1 reason=poweroff.
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4739771183L, 'ssidref': 0, 'memory_KiB': 262120, 'name': 'Normal-Domain', 'dying': 0, 'dom': 1, 'maxmem_KiB': 262120, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15704806526L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 15704806526L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4739771183L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 1, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 1, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 1
[2005-10-20 00:19:53 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 1: {'shutdown_reason': 0, 'start_time': 1129781711.4984641, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 1, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4739771183L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 1, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:19:56 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=1
[2005-10-20 00:19:56 xend] ERROR (__init__:988) XendDomainInfo.destroy: xc.domain_destroy failed.
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 995, in destroy
    xc.domain_destroy(dom=self.domid)
error: (3, 'No such process')
[2005-10-20 00:19:57 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16038047314L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:19:57 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16038047314L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:57 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:19:57 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 16057576938L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:19:57 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 1]
[2005-10-20 00:20:20 xend] ERROR (__init__:988) domain_getinfo(1) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-20 00:20:21 xend] ERROR (__init__:988) domain_getinfo(1) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-20 00:20:21 xend] ERROR (__init__:988) domain_getinfo(1) failed, ignoring
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 141, in dom_get
    domlist = xc.domain_getinfo(dom, 1)
error: (3, 'No such process')
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 2 262144 1.0
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) init_domain> Created domain=2 name=Normal-Domain memory=262144
[2005-10-20 00:21:59 xend] INFO (__init__:988) buildDomain os=linux dom=2 vcpus=1
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) dom            = 2
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) flags          = 0
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782119.87', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3bb312f0-fbd8-4d2e-86eb-a9fb691bde52'}
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/769'} to /domain/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/device/vbd/769.
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb2', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/device/vbd/769', 'frontend-id': '2'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/769.
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/1'} to /domain/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/device/vif/1.
[2005-10-20 00:21:59 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '2', 'domain': 'Normal-Domain', 'frontend': '/domain/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/device/vif/1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/3bb312f0-fbd8-4d2e-86eb-a9fb691bde52/1.
[2005-10-20 00:22:00 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782119.87', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3bb312f0-fbd8-4d2e-86eb-a9fb691bde52'}
[2005-10-20 00:22:00 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782119.87', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '2', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '3bb312f0-fbd8-4d2e-86eb-a9fb691bde52'}
[2005-10-20 00:22:00 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 2]
[2005-10-20 00:22:00 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 2]
[2005-10-20 00:22:02 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-20 00:22:02 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129782119.8707659, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 330474435L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18937964816L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18937964816L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4776643922L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 2
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129782119.8707659, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4776643922L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18937964816L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 2
[2005-10-20 00:23:16 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129782119.8707659, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4776643922L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 2, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:23:19 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=2
[2005-10-20 00:23:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19175885059L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:23:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19175885059L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:23:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4777054612L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 2, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 2
[2005-10-20 00:23:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 2: {'shutdown_reason': 0, 'start_time': 1129782119.8707659, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb2'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 4777054612L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 2, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:23:21 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=2
[2005-10-20 00:23:21 xend] ERROR (__init__:988) XendDomainInfo.destroy: xc.domain_destroy failed.
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 995, in destroy
    xc.domain_destroy(dom=self.domid)
error: (3, 'No such process')
[2005-10-20 00:23:23 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19529193814L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:23:23 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19529193814L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:23:23 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:23:23 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 19564731689L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:23:23 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 2]
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 3 262144 1.0
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) init_domain> Created domain=3 name=Normal-Domain memory=262144
[2005-10-20 00:23:26 xend] INFO (__init__:988) buildDomain os=linux dom=3 vcpus=1
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) dom            = 3
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) flags          = 0
[2005-10-20 00:23:26 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782206.93', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28'}
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/769'} to /domain/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/device/vbd/769.
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/device/vbd/769', 'frontend-id': '3'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/769.
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/1'} to /domain/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/device/vif/1.
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '3', 'domain': 'Normal-Domain', 'frontend': '/domain/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/device/vif/1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28/1.
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782206.93', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28'}
[2005-10-20 00:23:27 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782206.93', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '3', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '0ccbbac7-48a9-4ed7-99d2-cbfdb3433e28'}
[2005-10-20 00:23:27 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 3]
[2005-10-20 00:23:27 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 3]
[2005-10-20 00:23:33 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 3
[2005-10-20 00:23:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129782206.930269, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 2900907922L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 3, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:23:50 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=3
[2005-10-20 00:23:50 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 20528465019L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:23:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 20528465019L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:23:50 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5242038945L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 1, 'dom': 3, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 12, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 3
[2005-10-20 00:23:50 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 3: {'shutdown_reason': 0, 'start_time': 1129782206.930269, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 5242038945L, 'ssidref': 0, 'memory_KiB': 12, 'name': 'Normal-Domain', 'dying': 1, 'dom': 3, 'maxmem_KiB': 12, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:25:58 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-20 00:25:58 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-20 00:25:58 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-20 00:25:58 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-20 00:25:58 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 4 262144 1.0
[2005-10-20 00:25:58 xend] DEBUG (__init__:988) init_domain> Created domain=4 name=Normal-Domain memory=262144
[2005-10-20 00:25:59 xend] INFO (__init__:988) buildDomain os=linux dom=4 vcpus=1
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) dom            = 4
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) flags          = 0
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782358.99', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1'}
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/769'} to /domain/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/device/vbd/769.
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/device/vbd/769', 'frontend-id': '4'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/769.
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/1'} to /domain/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/device/vif/1.
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '4', 'domain': 'Normal-Domain', 'frontend': '/domain/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/device/vif/1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1/1.
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782358.99', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1'}
[2005-10-20 00:25:59 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782358.99', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '4', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': 'c9b6ee2b-b2fe-41c8-ad65-37d5274c83e1'}
[2005-10-20 00:25:59 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 4]
[2005-10-20 00:25:59 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 3]
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21718505929L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21718505929L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 4, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 4
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129782358.990541, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21755050077L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 4
[2005-10-20 00:26:05 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 4: {'shutdown_reason': 0, 'start_time': 1129782358.990541, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 4, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:26:05 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 3]
[2005-10-20 00:26:10 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=4
[2005-10-20 00:26:10 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21986581187L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:26:10 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 21986581187L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:10 xend] INFO (__init__:988) EVENT> xend.domain.died ['Normal-Domain', 4]
[2005-10-20 00:26:13 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 22265916469L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:26:13 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 22265916469L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:13 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:26:13 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 22270443042L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 5 262144 1.0
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) init_domain> Created domain=5 name=Normal-Domain memory=262144
[2005-10-20 00:26:18 xend] INFO (__init__:988) buildDomain os=linux dom=5 vcpus=1
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) dom            = 5
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) flags          = 0
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782378.19', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '18f9920d-43fe-4612-aa79-d097899bcc5a'}
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/18f9920d-43fe-4612-aa79-d097899bcc5a/769'} to /domain/18f9920d-43fe-4612-aa79-d097899bcc5a/device/vbd/769.
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/18f9920d-43fe-4612-aa79-d097899bcc5a/device/vbd/769', 'frontend-id': '5'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/18f9920d-43fe-4612-aa79-d097899bcc5a/769.
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/18f9920d-43fe-4612-aa79-d097899bcc5a/1'} to /domain/18f9920d-43fe-4612-aa79-d097899bcc5a/device/vif/1.
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '5', 'domain': 'Normal-Domain', 'frontend': '/domain/18f9920d-43fe-4612-aa79-d097899bcc5a/device/vif/1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/18f9920d-43fe-4612-aa79-d097899bcc5a/1.
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782378.19', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '18f9920d-43fe-4612-aa79-d097899bcc5a'}
[2005-10-20 00:26:18 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129782378.19', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '5', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '18f9920d-43fe-4612-aa79-d097899bcc5a'}
[2005-10-20 00:26:18 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 5]
[2005-10-20 00:26:18 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 5]
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 22849106888L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257236, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 22849106888L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 300425702L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 5
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 300425702L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257236, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 22865117552L, 'ssidref': 0, 'memory_KiB': 257236, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 00:26:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 300425702L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:26:22 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 00:26:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 1082333332L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 00:27:09 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 00:27:09 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 9848542122L, 'ssidref': 0, 'memory_KiB': 262124, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262124, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 55858900619L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 256628, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256628, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 55858900619L, 'ssidref': 0, 'memory_KiB': 256628, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12900609461L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262124, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 1}) on domain 5
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12900609461L, 'ssidref': 0, 'memory_KiB': 262124, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262124, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 256628, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 55870751544L, 'ssidref': 0, 'memory_KiB': 256628, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 01:24:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 0, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 12900609461L, 'ssidref': 0, 'memory_KiB': 262124, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262124, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 1, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 64602528653L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 64602528653L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 0, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262112, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 01:36:44 xend] WARNING (__init__:988) Domain has crashed: name=Normal-Domain id=5.
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=5
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 262112, 'name': 'Normal-Domain', 'dying': 0, 'dom': 5, 'maxmem_KiB': 262112, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 64661854968L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 64661854968L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 68, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 01:36:44 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 68, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 68, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 225546510337L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 225546510337L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 225564209993L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:01 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:04 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:04 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:09 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230229054412L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:09 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230229054412L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:09 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:09 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230349919257L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230349919257L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230369451938L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:11 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:15 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=5
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230634495909L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230634495909L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230654016727L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:17 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230796970819L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230796970819L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230800492148L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:20 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230935813003L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230935813003L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 230935813003L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:21 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231084367546L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231084367546L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231084367546L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:22 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231233967565L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231233967565L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 231237488749L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:37:24 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:27 xend] DEBUG (__init__:988) XendDomainInfo.destroy: domid=5
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) XendDomainInfo.create(...)
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) parseConfig: config is ['vm', ['name', 'Normal-Domain'], ['memory', '256'], ['ssidref', '0'], ['image', ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]], ['device', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]], ['device', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']]]]
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) parseConfig: result is {'ssidref': 0, 'name': 'Normal-Domain', 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']], 'memory': 256, 'maxmem_kb': None, 'backend': [], 'vcpus': 1, 'cpu_weight': None, 'mem_kb': None, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'restart_mode': None, 'bootloader': None, 'cpu': None, 'maxmem': None}
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) XendDomainInfo.construct: None 0
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) XendDomainInfo.initDomain: 6 262144 1.0
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) init_domain> Created domain=6 name=Normal-Domain memory=262144
[2005-10-20 13:37:30 xend] INFO (__init__:988) buildDomain os=linux dom=6 vcpus=1
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) dom            = 6
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) image          = /boot/vmlinuz-2.6-xenU
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) store_evtchn   = 1
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) console_evtchn = 2
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) cmdline        =  ip=192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off root=/dev/hda1 ro 4
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) ramdisk        = 
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) flags          = 0
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) vcpus          = 1
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129829850.2', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '6', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '84a80337-e9dc-465b-83bf-a66a59e967b3'}
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) DevController: writing {'virtual-device': '769', 'backend-id': '0', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/84a80337-e9dc-465b-83bf-a66a59e967b3/769'} to /domain/84a80337-e9dc-465b-83bf-a66a59e967b3/device/vbd/769.
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) DevController: writing {'params': 'hdb3', 'domain': 'Normal-Domain', 'type': 'phy', 'frontend': '/domain/84a80337-e9dc-465b-83bf-a66a59e967b3/device/vbd/769', 'frontend-id': '6'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vbd/84a80337-e9dc-465b-83bf-a66a59e967b3/769.
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) DevController: writing {'backend-id': '0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'backend': '/domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/84a80337-e9dc-465b-83bf-a66a59e967b3/1'} to /domain/84a80337-e9dc-465b-83bf-a66a59e967b3/device/vif/1.
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) DevController: writing {'bridge': 'xen-br0', 'mac': 'aa:00:00:00:00:11', 'handle': '1', 'script': '/etc/xen/scripts/vif-bridge', 'frontend-id': '6', 'domain': 'Normal-Domain', 'frontend': '/domain/84a80337-e9dc-465b-83bf-a66a59e967b3/device/vif/1'} to /domain/6ca337e2-e4d9-4cca-ad0e-12b5450406a7/backend/vif/84a80337-e9dc-465b-83bf-a66a59e967b3/1.
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129829850.2', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '6', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '84a80337-e9dc-465b-83bf-a66a59e967b3'}
[2005-10-20 13:37:30 xend] DEBUG (__init__:988) Storing {'memory_KiB': '262144', 'name': 'Normal-Domain', 'start_time': '1129829850.2', 'maxmem_KiB': '262144', 'memory/target': '262144', 'domid': '6', 'vcpus': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'device': "[('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])]", 'restart_mode': 'onreboot', 'cpumap': '[1]', 'image': "(linux (kernel /boot/vmlinuz-2.6-xenU) (ip 192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off) (root '/dev/hda1 ro') (args 4) (vcpus 1) (vcpus 1) (boot c))", 'uuid': '84a80337-e9dc-465b-83bf-a66a59e967b3'}
[2005-10-20 13:37:30 xend] INFO (__init__:988) EVENT> xend.domain.create ['Normal-Domain', 6]
[2005-10-20 13:37:30 xend] INFO (__init__:988) EVENT> xend.domain.unpause ['Normal-Domain', 5]
[2005-10-20 13:37:33 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 6
[2005-10-20 13:37:33 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 6: {'shutdown_reason': 0, 'start_time': 1129829850.203476, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 6, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:37:57 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 6
[2005-10-20 13:37:57 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 6: {'shutdown_reason': 0, 'start_time': 1129829850.203476, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 6, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 232406827659L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 255780, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 232406827659L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'shutdown_reason': 3, 'dying': 1, 'dom': 5, 'running': 0, 'maxmem_kb': 262144, 'paused': 0, 'crashed': 1, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 64, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 5
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 6, 'running': 0, 'maxmem_kb': 262144, 'paused': 1, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 262144, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 6
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 6: {'shutdown_reason': 0, 'start_time': 1129829850.203476, 'paused': 1, 'crashed': 0, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 0L, 'ssidref': 0, 'memory_KiB': 262144, 'name': 'Normal-Domain', 'dying': 0, 'dom': 6, 'maxmem_KiB': 262144, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 0
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 255780, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 232426361754L, 'ssidref': 0, 'memory_KiB': 255780, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update(None) on domain 5
[2005-10-20 13:38:03 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 5: {'shutdown_reason': 3, 'start_time': 1129782378.1920021, 'paused': 0, 'crashed': 1, 'running': 0, 'shutdown': 0, 'device': [('vbd', ['vbd', ['uname', 'phy:hdb3'], ['dev', 'hda1'], ['mode', 'w']]), ('vif', ['vif', ['mac', 'aa:00:00:00:00:11'], ['bridge', 'xen-br0']])], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'backend': [], 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 18973839969L, 'ssidref': 0, 'memory_KiB': 64, 'name': 'Normal-Domain', 'dying': 1, 'dom': 5, 'maxmem_KiB': 64, 'cpu': None, 'vcpus': 1, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'image': ['linux', ['kernel', '/boot/vmlinuz-2.6-xenU'], ['ip', '192.168.0.188:1.2.3.4:192.168.0.1:255.255.255.0::eth0:off'], ['root', '/dev/hda1 ro'], ['args', '4'], ['vcpus', '1'], ['vcpus', '1'], ['boot', 'c']]}
[2005-10-20 14:00:15 xend] INFO (__init__:988) Xend Daemon started
[2005-10-20 14:00:15 xend] DEBUG (__init__:988) XendDomainInfo.recreate({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11855808722L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0})
[2005-10-20 14:00:15 xend] WARNING (__init__:988) No domain path in store for existing domain 0
[2005-10-20 14:00:15 xend] INFO (__init__:988) Recreating domain 0, uuid 38ca4223-c767-42fb-a830-f7f59c2aa44f
[2005-10-20 14:00:15 xend] DEBUG (__init__:988) Storing {'vcpu_to_cpu': '[0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1]', 'cpu_time': '11855808722', 'memory_KiB': '257024', 'uuid': '38ca4223-c767-42fb-a830-f7f59c2aa44f', 'image': "'None'", 'maxmem_KiB': '257024', 'memory/target': '257024', 'domid': '0', 'running': '1', 'xend/restart_mode': 'onreboot', 'cpu_weight': '1.0', 'restart_mode': 'onreboot', 'cpumap': '[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]', 'vcpus': '1', 'name': 'Domain-0'}
[2005-10-20 14:00:15 xend] DEBUG (__init__:988) number of vcpus to use is 0
[2005-10-20 14:00:15 xend] DEBUG (__init__:988) XendDomainInfo.update({'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11899824281L, 'ssidref': 0, 'shutdown_reason': 0, 'dying': 0, 'dom': 0, 'running': 1, 'maxmem_kb': -4, 'paused': 0, 'crashed': 0, 'vcpus': 1, 'shutdown': 0, 'mem_kb': 257024, 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0}) on domain 0
[2005-10-20 14:00:15 xend] DEBUG (__init__:988) XendDomainInfo.update done on domain 0: {'image': None, 'paused': 0, 'shutdown': 0, 'backend': [], 'dying': 0, 'maxmem_KiB': 257024, 'cpu_weight': 1.0, 'restart_mode': 'onreboot', 'blocked': 0, 'shutdown_reason': 0, 'crashed': 0, 'running': 1, 'device': [], 'cpumap': [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'bootloader': None, 'vcpu_to_cpu': [0, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1], 'cpu_time': 11899824281L, 'ssidref': 0, 'memory_KiB': 257024, 'name': 'Domain-0', 'dom': 0, 'vcpus': 1, 'cpu': None}
[2005-10-20 14:00:15 xend] INFO (__init__:988) unix path=/var/lib/xend/xend-socket
[2005-10-20 14:00:15 xend] INFO (__init__:988) EVENT> xend.domain.create ['Domain-0', 0]
[2005-10-20 14:00:15 xend] INFO (__init__:988) EVENT> xend.start 0

[-- Attachment #3: xend-debug.log --]
[-- Type: application/octet-stream, Size: 17663 bytes --]

Exception in thread Watcher:
Traceback (most recent call last):
  File "/usr/src/build/475206-i386/install/usr/lib/python2.3/threading.py", line 436, in __bootstrap
    self.run()
  File "/usr/src/build/475206-i386/install/usr/lib/python2.3/threading.py", line 416, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/usr/lib/python/xen/xend/xenstore/xswatch.py", line 57, in watchMain
    we = cls.xs.read_watch()
RuntimeError: (9, 'Bad file descriptor')

nit__
    self.validateInfo()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 363, in validateInfo
    self.check_name(self.info['name'])
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 859, in check_name
    raise VmError("VM name '%s' already in use by domain %d" %
VmError: VM name 'Normal-Domain' already in use by domain 3
Exception in thread Watcher:
Traceback (most recent call last):
  File "/usr/src/build/475206-i386/install/usr/lib/python2.3/threading.py", line 436, in __bootstrap
    self.run()
  File "/usr/src/build/475206-i386/install/usr/lib/python2.3/threading.py", line 416, in run
    self.__target(*self.__args, **self.__kwargs)
  File "/usr/lib/python/xen/xend/xenstore/xswatch.py", line 57, in watchMain
    we = cls.xs.read_watch()
RuntimeError: (9, 'Bad file descriptor')

/server/blkif.py", line 546, in attachDevice
    d = dev.attach()
  File "/usr/lib/python/xen/xend/server/blkif.py", line 358, in attach
    self.setNode(node)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 371, in setNode
    raise VmError("vbd: Segment %s is in writable use" %
VmError: vbd: Segment phy:hdb3 is in writable use
requestReceived> No device: Message type netif_be_driver_status_t 3:32 <Channel dom=0 ports=2:-1>
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif2.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 140010, 'rx_shmem_frame': 140009, 'handle': 0}
vif-bridge down vif=vif2.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
op_create> Exception creating domain:
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/server/SrvDomainDir.py", line 65, in op_create
    deferred = self.xd.domain_create(config)
  File "/usr/lib/python/xen/xend/XendDomain.py", line 354, in domain_create
    deferred = XendDomainInfo.vm_create(config)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 192, in vm_create
    return vm.construct(config)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 455, in construct
    deferred = self.configure()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 974, in configure
    d = self.create_devices()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 802, in create_devices
    v = dev_handler(self, dev, dev_index)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 1133, in vm_dev_vbd
    defer = ctrl.attachDevice(idx, val, recreate=recreate)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 546, in attachDevice
    d = dev.attach()
  File "/usr/lib/python/xen/xend/server/blkif.py", line 358, in attach
    self.setNode(node)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 371, in setNode
    raise VmError("vbd: Segment %s is in writable use" %
VmError: vbd: Segment phy:hdb3 is in writable use
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif4.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 133866, 'rx_shmem_frame': 133865, 'handle': 0}
vif-bridge down vif=vif4.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif5.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 197354, 'rx_shmem_frame': 197353, 'handle': 0}
{}
VirqClient.virqReceived> 4
vif-bridge down vif=vif5.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif6.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 70315, 'rx_shmem_frame': 70314, 'handle': 0}
VirqClient.virqReceived> 4
vif-bridge down vif=vif6.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif6.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 201387, 'rx_shmem_frame': 201386, 'handle': 0}
VirqClient.virqReceived> 4
vif-bridge down vif=vif6.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif6.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 133803, 'rx_shmem_frame': 133802, 'handle': 0}
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
op_create> Exception creating domain:
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/server/SrvDomainDir.py", line 65, in op_create
    deferred = self.xd.domain_create(config)
  File "/usr/lib/python/xen/xend/XendDomain.py", line 354, in domain_create
    deferred = XendDomainInfo.vm_create(config)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 192, in vm_create
    return vm.construct(config)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 455, in construct
    deferred = self.configure()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 974, in configure
    d = self.create_devices()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 802, in create_devices
    v = dev_handler(self, dev, dev_index)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 1133, in vm_dev_vbd
    defer = ctrl.attachDevice(idx, val, recreate=recreate)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 546, in attachDevice
    d = dev.attach()
  File "/usr/lib/python/xen/xend/server/blkif.py", line 358, in attach
    self.setNode(node)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 374, in setNode
    raise VmError("vbd: Segment %s is in read-only use" %
VmError: vbd: Segment phy:hdb3 is in read-only use
vif-bridge down vif=vif6.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif8.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 131755, 'rx_shmem_frame': 131754, 'handle': 0}
VirqClient.virqReceived> 4
vif-bridge down vif=vif8.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
op_create> Exception creating domain:
Traceback (most recent call last):
  File "/usr/lib/python/xen/xend/server/SrvDomainDir.py", line 65, in op_create
    deferred = self.xd.domain_create(config)
  File "/usr/lib/python/xen/xend/XendDomain.py", line 354, in domain_create
    deferred = XendDomainInfo.vm_create(config)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 192, in vm_create
    return vm.construct(config)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 455, in construct
    deferred = self.configure()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 974, in configure
    d = self.create_devices()
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 802, in create_devices
    v = dev_handler(self, dev, dev_index)
  File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 1133, in vm_dev_vbd
    defer = ctrl.attachDevice(idx, val, recreate=recreate)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 546, in attachDevice
    d = dev.attach()
  File "/usr/lib/python/xen/xend/server/blkif.py", line 358, in attach
    self.setNode(node)
  File "/usr/lib/python/xen/xend/server/blkif.py", line 371, in setNode
    raise VmError("vbd: Segment %s is in writable use" %
VmError: vbd: Segment phy:hdb3 is in writable use
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif10.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 199368, 'rx_shmem_frame': 199367, 'handle': 0}
{}
VirqClient.virqReceived> 4
vif-bridge down vif=vif10.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
vif-bridge up vif=vif11.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_interface_connect {'tx_shmem_frame': 135883, 'rx_shmem_frame': 135882, 'handle': 0}
{}
vif-bridge down vif=vif11.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
vif-bridge up vif=vif12.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_interface_connect {'tx_shmem_frame': 135366, 'rx_shmem_frame': 135365, 'handle': 0}
cv_fe_interface_connect {'tx_shmem_frame': 134722, 'rx_shmem_frame': 134723, 'handle': 0}
vif-bridge down vif=vif10.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02e6ad4
 Init. ramdisk: c02e7000->c02e7000
 Phys-Mach map: c02e7000->c0327000
 Page tables:   c0327000->c0329000
 Start info:    c0329000->c032a000
 Boot stack:    c032a000->c032b000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif11.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 198210, 'rx_shmem_frame': 198211, 'handle': 0}
vif-bridge down vif=vif11.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02e6ad4
 Init. ramdisk: c02e7000->c02e7000
 Phys-Mach map: c02e7000->c0327000
 Page tables:   c0327000->c0329000
 Start info:    c0329000->c032a000
 Boot stack:    c032a000->c032b000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif12.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 3650, 'rx_shmem_frame': 3651, 'handle': 0}
vif-bridge down vif=vif12.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
e_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 136331, 'rx_shmem_frame': 136330, 'handle': 0}
VirqClient.virqReceived> 4
VirqClient.virqReceived> 4
vif-bridge down vif=vif10.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif10.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 156278, 'rx_shmem_frame': 156277, 'handle': 0}
{}
VirqClient.virqReceived> 4
vif-bridge down vif=vif10.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
0:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 211734, 'rx_shmem_frame': 211733, 'handle': 0}
vif-bridge down vif=vif12.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif13.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 250395, 'rx_shmem_frame': 250394, 'handle': 0}
VirqClient.virqReceived> 4
vif-bridge down vif=vif13.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif13.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 163059, 'rx_shmem_frame': 163058, 'handle': 0}
vif-bridge down vif=vif13.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif14.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 65198, 'rx_shmem_frame': 65197, 'handle': 0}
VirqClient.virqReceived> 4
vif-bridge down vif=vif14.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
VIRTUAL MEMORY ARRANGEMENT:
 Loaded kernel: c0100000->c02ef2bc
 Init. ramdisk: c02f0000->c02f0000
 Phys-Mach map: c02f0000->c0330000
 Page tables:   c0330000->c0332000
 Start info:    c0332000->c0333000
 Boot stack:    c0333000->c0334000
 TOTAL:         c0000000->c0400000
 ENTRY ADDRESS: c0100000
vif-bridge up vif=vif14.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0
recv_fe_driver_status> {'status': 1}

recv_fe_driver_status>

recv_fe_interface_connect {'tx_shmem_frame': 260910, 'rx_shmem_frame': 260909, 'handle': 0}
VirqClient.virqReceived> 4
vif-bridge down vif=vif14.0 domain=Normal-Domain mac=aa:00:00:00:00:11 bridge=xen-br0

[-- Attachment #4: 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] 13+ messages in thread

* Re: cannot get console access to newly created domain
  2005-10-20 18:10           ` zhaoxin
@ 2005-10-20 18:31             ` Ewan Mellor
  0 siblings, 0 replies; 13+ messages in thread
From: Ewan Mellor @ 2005-10-20 18:31 UTC (permalink / raw)
  To: zhaoxin; +Cc: xen-devel

On Thu, Oct 20, 2005 at 02:10:54PM -0400, zhaoxin wrote:

> Thank you for your help!
> 
> This is the information of last change set for my current system
> /*****************************************/
> changeset:   7076:46046d5fb354
> tag:         tip
> user:        emellor@ewan
> date:        Tue Sep 27 17:09:46 2005 +0100
> summary:     Remove unused import, mark unused variables.
> /*****************************************/

Eek!  That's far too old, I'm afraid.  There have been many bugs related to
domain shutdown fixed in the last three weeks.  You will have to upgrade (or
ignore the problem).

Ewan.

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2005-10-20 18:31 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-30 11:52 CoW memory and Parallax questions Prashanth Radhakrishnan
2005-10-01 18:58 ` Michael Vrable
2005-10-01 23:04 ` Andrew Warfield
2005-10-03 16:20 ` Jacob Faber Kloster
2005-10-03 19:12   ` Kip Macy
2005-10-04  8:53     ` Jacob Gorm Hansen
2005-10-04 11:45       ` Jacob Faber Kloster
2005-10-04 17:34         ` Kip Macy
2005-10-20 17:45       ` cannot get console access to newly created domain Xin Zhao
2005-10-20 17:57         ` Ewan Mellor
2005-10-20 18:10           ` zhaoxin
2005-10-20 18:31             ` Ewan Mellor
2005-10-04 11:14     ` CoW memory and Parallax questions Jacob Faber Kloster

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.