All of lore.kernel.org
 help / color / mirror / Atom feed
* Problems booting latest xen pv-ops linux kernel
@ 2009-11-17 23:18 Goswin von Brederlow
  2009-11-18  7:10 ` Pasi Kärkkäinen
  0 siblings, 1 reply; 24+ messages in thread
From: Goswin von Brederlow @ 2009-11-17 23:18 UTC (permalink / raw)
  To: Xen Developers List

Hi,

I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
to build a bleeding edge linux kernel with

  git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen

I build the kernel for amd64 and installed Debians
xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
starts the kernel. It detects my SATA disk (sata_sil driver) but then
fails to read block 0. Something in xen breaks the sata_sil driver.

Booting the kernel as bare-metal works fine.

Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
option known to have sideeffects?

MfG
        Goswin

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-17 23:18 Problems booting latest xen pv-ops linux kernel Goswin von Brederlow
@ 2009-11-18  7:10 ` Pasi Kärkkäinen
  2009-11-18 15:08   ` Konrad Rzeszutek Wilk
  2009-11-19  5:40   ` Goswin von Brederlow
  0 siblings, 2 replies; 24+ messages in thread
From: Pasi Kärkkäinen @ 2009-11-18  7:10 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: Xen Developers List

On Wed, Nov 18, 2009 at 12:18:01AM +0100, Goswin von Brederlow wrote:
> Hi,
> 
> I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
> to build a bleeding edge linux kernel with
> 
>   git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
> 
> I build the kernel for amd64 and installed Debians
> xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
> starts the kernel. It detects my SATA disk (sata_sil driver) but then
> fails to read block 0. Something in xen breaks the sata_sil driver.
> 
> Booting the kernel as bare-metal works fine.
> 
> Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
> 32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
> option known to have sideeffects?
> 

You could try my .config:

cd linux-2.6-xen
cp -a .config .config-old
wget -O .config http://pasik.reaktio.net/xen/pv_ops-dom0-debug/config-2.6.31.4-pvops_dom0-x86_64
make oldconfig
<continue as usual>

That .config works for me on x86_64. It's based on Fedora 12 kernel
config.

-- Pasi

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-18  7:10 ` Pasi Kärkkäinen
@ 2009-11-18 15:08   ` Konrad Rzeszutek Wilk
  2009-11-18 15:28     ` Pasi Kärkkäinen
  2009-11-19  5:40   ` Goswin von Brederlow
  1 sibling, 1 reply; 24+ messages in thread
From: Konrad Rzeszutek Wilk @ 2009-11-18 15:08 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: Xen Developers List, Goswin von Brederlow

On Wed, Nov 18, 2009 at 09:10:44AM +0200, Pasi Kärkkäinen wrote:
> On Wed, Nov 18, 2009 at 12:18:01AM +0100, Goswin von Brederlow wrote:
> > Hi,
> > 
> > I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
> > to build a bleeding edge linux kernel with
> > 
> >   git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
> > 
> > I build the kernel for amd64 and installed Debians
> > xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
> > starts the kernel. It detects my SATA disk (sata_sil driver) but then
> > fails to read block 0. Something in xen breaks the sata_sil driver.
> > 
> > Booting the kernel as bare-metal works fine.
> > 
> > Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
> > 32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
> > option known to have sideeffects?
> > 
> 
> You could try my .config:
> 
> cd linux-2.6-xen
> cp -a .config .config-old
> wget -O .config http://pasik.reaktio.net/xen/pv_ops-dom0-debug/config-2.6.31.4-pvops_dom0-x86_64
> make oldconfig
> <continue as usual>

Pasi,

The idea of the Wiki and people using it has been quite a good one. Do you think
it would make sense to include a checklist of things to when things don't work.
As in:

 1). Try this .config.
 2). Get serial console ('dmesg + xm dmesg') output to Xen-devel. To get this
     via the serial console follow these steps: ...blah blah

 3) and so on.

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-18 15:08   ` Konrad Rzeszutek Wilk
@ 2009-11-18 15:28     ` Pasi Kärkkäinen
  2009-11-19  5:43       ` Goswin von Brederlow
  0 siblings, 1 reply; 24+ messages in thread
From: Pasi Kärkkäinen @ 2009-11-18 15:28 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: Xen Developers List, Goswin von Brederlow

On Wed, Nov 18, 2009 at 10:08:56AM -0500, Konrad Rzeszutek Wilk wrote:
> On Wed, Nov 18, 2009 at 09:10:44AM +0200, Pasi Kärkkäinen wrote:
> > On Wed, Nov 18, 2009 at 12:18:01AM +0100, Goswin von Brederlow wrote:
> > > Hi,
> > > 
> > > I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
> > > to build a bleeding edge linux kernel with
> > > 
> > >   git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
> > > 
> > > I build the kernel for amd64 and installed Debians
> > > xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
> > > starts the kernel. It detects my SATA disk (sata_sil driver) but then
> > > fails to read block 0. Something in xen breaks the sata_sil driver.
> > > 
> > > Booting the kernel as bare-metal works fine.
> > > 
> > > Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
> > > 32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
> > > option known to have sideeffects?
> > > 
> > 
> > You could try my .config:
> > 
> > cd linux-2.6-xen
> > cp -a .config .config-old
> > wget -O .config http://pasik.reaktio.net/xen/pv_ops-dom0-debug/config-2.6.31.4-pvops_dom0-x86_64
> > make oldconfig
> > <continue as usual>
> 
> Pasi,
> 
> The idea of the Wiki and people using it has been quite a good one. Do you think
> it would make sense to include a checklist of things to when things don't work.
> As in:
> 
>  1). Try this .config.
>  2). Get serial console ('dmesg + xm dmesg') output to Xen-devel. To get this
>      via the serial console follow these steps: ...blah blah
> 
>  3) and so on.


Yeah.. that's a good idea. I've been trying to update the Xen wiki pages
(XenParavirtOps, XenDom0Kernels, XenOverview) whenever I remember, and 
notice some common problem.

-- Pasi

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-18  7:10 ` Pasi Kärkkäinen
  2009-11-18 15:08   ` Konrad Rzeszutek Wilk
@ 2009-11-19  5:40   ` Goswin von Brederlow
  2009-11-19  7:55     ` Pasi Kärkkäinen
  1 sibling, 1 reply; 24+ messages in thread
From: Goswin von Brederlow @ 2009-11-19  5:40 UTC (permalink / raw)
  To: Pasi Karkkainen; +Cc: Xen Developers List, Goswin von Brederlow

Pasi Kärkkäinen <pasik@iki.fi> writes:

> On Wed, Nov 18, 2009 at 12:18:01AM +0100, Goswin von Brederlow wrote:
>> Hi,
>> 
>> I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
>> to build a bleeding edge linux kernel with
>> 
>>   git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
>> 
>> I build the kernel for amd64 and installed Debians
>> xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
>> starts the kernel. It detects my SATA disk (sata_sil driver) but then
>> fails to read block 0. Something in xen breaks the sata_sil driver.
>> 
>> Booting the kernel as bare-metal works fine.
>> 
>> Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
>> 32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
>> option known to have sideeffects?
>> 
>
> You could try my .config:
>
> cd linux-2.6-xen
> cp -a .config .config-old
> wget -O .config http://pasik.reaktio.net/xen/pv_ops-dom0-debug/config-2.6.31.4-pvops_dom0-x86_64
> make oldconfig
> <continue as usual>
>
> That .config works for me on x86_64. It's based on Fedora 12 kernel
> config.
>
> -- Pasi

Do you use the sata_sil driver?

MfG
        Goswin

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-18 15:28     ` Pasi Kärkkäinen
@ 2009-11-19  5:43       ` Goswin von Brederlow
  2009-11-19 17:41         ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 24+ messages in thread
From: Goswin von Brederlow @ 2009-11-19  5:43 UTC (permalink / raw)
  To: Pasi Karkkainen
  Cc: Goswin von Brederlow, Xen Developers List, Konrad Rzeszutek Wilk

Pasi Kärkkäinen <pasik@iki.fi> writes:

> On Wed, Nov 18, 2009 at 10:08:56AM -0500, Konrad Rzeszutek Wilk wrote:
>> The idea of the Wiki and people using it has been quite a good one. Do you think
>> it would make sense to include a checklist of things to when things don't work.
>> As in:
>> 
>>  1). Try this .config.
>>  2). Get serial console ('dmesg + xm dmesg') output to Xen-devel. To get this
>>      via the serial console follow these steps: ...blah blah
>> 
>>  3) and so on.
>
>
> Yeah.. that's a good idea. I've been trying to update the Xen wiki pages
> (XenParavirtOps, XenDom0Kernels, XenOverview) whenever I remember, and 
> notice some common problem.
>
> -- Pasi

No serial port on my laptop I'm afraid. I'm left with taking
screenshots with a camera.

MfG
        Goswin

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19  5:40   ` Goswin von Brederlow
@ 2009-11-19  7:55     ` Pasi Kärkkäinen
  2009-11-19  8:00       ` Pasi Kärkkäinen
  0 siblings, 1 reply; 24+ messages in thread
From: Pasi Kärkkäinen @ 2009-11-19  7:55 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: Xen Developers List

On Thu, Nov 19, 2009 at 06:40:55AM +0100, Goswin von Brederlow wrote:
> Pasi Kärkkäinen <pasik@iki.fi> writes:
> 
> > On Wed, Nov 18, 2009 at 12:18:01AM +0100, Goswin von Brederlow wrote:
> >> Hi,
> >> 
> >> I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
> >> to build a bleeding edge linux kernel with
> >> 
> >>   git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
> >> 
> >> I build the kernel for amd64 and installed Debians
> >> xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
> >> starts the kernel. It detects my SATA disk (sata_sil driver) but then
> >> fails to read block 0. Something in xen breaks the sata_sil driver.
> >> 
> >> Booting the kernel as bare-metal works fine.
> >> 
> >> Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
> >> 32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
> >> option known to have sideeffects?
> >> 
> >
> > You could try my .config:
> >
> > cd linux-2.6-xen
> > cp -a .config .config-old
> > wget -O .config http://pasik.reaktio.net/xen/pv_ops-dom0-debug/config-2.6.31.4-pvops_dom0-x86_64
> > make oldconfig
> > <continue as usual>
> >
> > That .config works for me on x86_64. It's based on Fedora 12 kernel
> > config.
> >
> > -- Pasi
> 
> Do you use the sata_sil driver?
> 

Unfortunately no.. I've been testing with both acpi and ata_piix.

-- Pasi

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19  7:55     ` Pasi Kärkkäinen
@ 2009-11-19  8:00       ` Pasi Kärkkäinen
  2009-11-19 10:16         ` Fasiha Ashraf
  0 siblings, 1 reply; 24+ messages in thread
From: Pasi Kärkkäinen @ 2009-11-19  8:00 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: Xen Developers List

On Thu, Nov 19, 2009 at 09:55:15AM +0200, Pasi Kärkkäinen wrote:
> On Thu, Nov 19, 2009 at 06:40:55AM +0100, Goswin von Brederlow wrote:
> > Pasi Kärkkäinen <pasik@iki.fi> writes:
> > 
> > > On Wed, Nov 18, 2009 at 12:18:01AM +0100, Goswin von Brederlow wrote:
> > >> Hi,
> > >> 
> > >> I followed http://wiki.xensource.com/xenwiki/XenParavirtOps
> > >> to build a bleeding edge linux kernel with
> > >> 
> > >>   git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
> > >> 
> > >> I build the kernel for amd64 and installed Debians
> > >> xen-hypervisor-3.4-amd64 package and bootet. Xen comes up nicely and
> > >> starts the kernel. It detects my SATA disk (sata_sil driver) but then
> > >> fails to read block 0. Something in xen breaks the sata_sil driver.
> > >> 
> > >> Booting the kernel as bare-metal works fine.
> > >> 
> > >> Anyone an idea what is wrong? The wiki lists a few problems (e.g. on
> > >> 32bit use CONFIG_HIGHPTE=n) but nothing for 64bit. Anything config
> > >> option known to have sideeffects?
> > >> 
> > >
> > > You could try my .config:
> > >
> > > cd linux-2.6-xen
> > > cp -a .config .config-old
> > > wget -O .config http://pasik.reaktio.net/xen/pv_ops-dom0-debug/config-2.6.31.4-pvops_dom0-x86_64
> > > make oldconfig
> > > <continue as usual>
> > >
> > > That .config works for me on x86_64. It's based on Fedora 12 kernel
> > > config.
> > >
> > > -- Pasi
> > 
> > Do you use the sata_sil driver?
> > 
> 
> Unfortunately no.. I've been testing with both acpi and ata_piix.
> 

Heh.. shouldn't write before drinking coffee in the morning. 
I meant ahci and ata_piix :)

-- Pasi

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19  8:00       ` Pasi Kärkkäinen
@ 2009-11-19 10:16         ` Fasiha Ashraf
  2009-11-19 10:21           ` Pasi Kärkkäinen
  0 siblings, 1 reply; 24+ messages in thread
From: Fasiha Ashraf @ 2009-11-19 10:16 UTC (permalink / raw)
  To: Pasi Kärkkäinen, Fajar A.; +Cc: Xen Developers List


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

Hi all
I am using xen-3.4.1 with PV OS kernel 2.6.31.4 in FC11. When ever I try using a guest as web server to fetch its data from different nodes I dont experience enough speed even using 1G link on both sides. After running different bench marks I have come to know that while using guest as a sender on 1G link throughput goes down.

 #wget http://10.11.21.113/VTS_04_1.VOB
--2009-11-19 15:17:17--  http://10.11.21.113/VTS_04_1.VOB
Connecting to 10.11.21.113:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1073739776 (1024M) [text/plain]
Saving to: `VTS_04_1.VOB'

 0% [                                       ] 432,670     14.7K/s  eta 13h 51m ^C

here are some results i have collected using iperf.
Guest sending data to an external system
[root@fasiha fasiha]# iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[  4] local 10.11.20.223 port 5001 connected with 10.11.21.113 port 50284
[ ID] Interval       Transfer     Bandwidth
[  4]  0.0-31.8 sec    952 KBytes    245 Kbits/sec

[root@F11-G3S1 ~]# iperf -c 10.11.20.223 -t 30
------------------------------------------------------------
Client connecting to 10.11.20.223, TCP port 5001
TCP window size: 16.0 KByte (default)
------------------------------------------------------------
[  3] local 10.11.21.113 port 50284 connected with 10.11.20.223 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-30.2 sec    952 KBytes    259 Kbits/sec

Guest receiving data from external system
[root@F11-G3S1 ~]# iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[  4] local 10.11.21.113 port 5001 connected with 10.11.20.223 port 40423
[ ID] Interval       Transfer     Bandwidth
[  4]  0.0-30.0 sec  3.27 GBytes    937 Mbits/sec

[root@fasiha fasiha]# iperf -c 10.11.21.113 -t 30
------------------------------------------------------------
Client connecting to 10.11.21.113, TCP port 5001
TCP window size: 16.0 KByte (default)
------------------------------------------------------------
[  3] local 10.11.20.223 port 40423 connected with 10.11.21.113 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-30.0 sec  3.27 GBytes    937 Mbits/sec

It should be the same or comparable in both cases. What could be the reason?

Regards,
Fasiha Ashraf




      The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. http://in.yahoo.com/

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19 10:16         ` Fasiha Ashraf
@ 2009-11-19 10:21           ` Pasi Kärkkäinen
  2009-11-20  6:56             ` Fasiha Ashraf
  2009-11-20 13:53             ` Fasiha Ashraf
  0 siblings, 2 replies; 24+ messages in thread
From: Pasi Kärkkäinen @ 2009-11-19 10:21 UTC (permalink / raw)
  To: Fasiha Ashraf; +Cc: Fajar A., Xen Developers List

On Thu, Nov 19, 2009 at 03:46:54PM +0530, Fasiha Ashraf wrote:
>    Hi all
>    I am using xen-3.4.1 with PV OS kernel 2.6.31.4 in FC11. When ever I try
>    using a guest as web server to fetch its data from different nodes I dont
>    experience enough speed even using 1G link on both sides. After running
>    different bench marks I have come to know that while using guest as a
>    sender on 1G link throughput goes down.
> 
>     #wget http://10.11.21.113/VTS_04_1.VOB
>    --2009-11-19 15:17:17--  http://10.11.21.113/VTS_04_1.VOB
>    Connecting to 10.11.21.113:80... connected.
>    HTTP request sent, awaiting response... 200 OK
>    Length: 1073739776 (1024M) [text/plain]
>    Saving to: `VTS_04_1.VOB'
> 
>     0% [                                       ] 432,670     14.7K/s  eta 13h
>    51m ^C
> 

That sounds like you have problems with some network offloading
settings.

Have you tried for example this in the domU:
ethtool -K eth0 tx off

Does that help? If it doesn't, try playing with the other offloading
settings.. you can check them with "ethtool -k eth0".

Do you have errors in the dom0 dmesg? 

-- Pasi

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19  5:43       ` Goswin von Brederlow
@ 2009-11-19 17:41         ` Konrad Rzeszutek Wilk
  2009-11-20  1:41           ` Goswin von Brederlow
  0 siblings, 1 reply; 24+ messages in thread
From: Konrad Rzeszutek Wilk @ 2009-11-19 17:41 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: Xen Developers List

> No serial port on my laptop I'm afraid. I'm left with taking
> screenshots with a camera.

netconsole could fix that. Are the screenshots somewhere accessible?

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19 17:41         ` Konrad Rzeszutek Wilk
@ 2009-11-20  1:41           ` Goswin von Brederlow
  2009-11-20 11:25             ` Sander Eikelenboom
  0 siblings, 1 reply; 24+ messages in thread
From: Goswin von Brederlow @ 2009-11-20  1:41 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: Xen Developers List, Goswin von Brederlow

Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> writes:

>> No serial port on my laptop I'm afraid. I'm left with taking
>> screenshots with a camera.
>
> netconsole could fix that. Are the screenshots somewhere accessible?

For the future is there an howto to set this up for the hypervisor? Or
is that just the normal linux netconsole?

xen:
http://mrvn.homeip.net/13-11-09_190311.jpg

bare:
http://mrvn.homeip.net/bare.txt
http:///mrvn.homeip.net/interrupts.txt

The problem seems to be that under xen the interrupts (APIC-edge) for
sata_sil, eth0 and more are being shared (no screenshot of
/proc/interrupts, sorry) while they never should be.  The network
driver doesn't work either (so no netconsole for this) and loading
only sata_sil as module doesn't help. Something screws up the
interrupt config.

MfG
        Goswin

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19 10:21           ` Pasi Kärkkäinen
@ 2009-11-20  6:56             ` Fasiha Ashraf
  2009-11-20 13:53             ` Fasiha Ashraf
  1 sibling, 0 replies; 24+ messages in thread
From: Fasiha Ashraf @ 2009-11-20  6:56 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: Fajar A., Xen Developers List


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


Thanks Pasi, its working 

Regards,
Fasiha Ashraf

--- On Thu, 19/11/09, Pasi Kärkkäinen <pasik@iki.fi> wrote:

From: Pasi Kärkkäinen <pasik@iki.fi>
Subject: Re: [Xen-devel] Problems booting latest xen pv-ops linux kernel
To: "Fasiha Ashraf" <feehapk@yahoo.co.in>
Cc: "Fajar A." <fajar@fajar.net>, "Xen Developers List" <xen-devel@lists.xensource.com>
Date: Thursday, 19 November, 2009, 3:21 PM

On Thu, Nov 19, 2009 at 03:46:54PM +0530, Fasiha Ashraf wrote:
>    Hi all
>    I am using xen-3.4.1 with PV OS kernel 2.6.31.4 in FC11. When ever I try
>    using a guest as web server to fetch its data from different nodes I dont
>    experience enough speed even using 1G link on both sides. After running
>    different bench marks I have come to know that while using guest as a
>    sender on 1G link throughput goes down.
> 
>     #wget http://10.11.21.113/VTS_04_1.VOB
>    --2009-11-19 15:17:17--  http://10.11.21.113/VTS_04_1.VOB
>    Connecting to 10.11.21.113:80... connected.
>    HTTP request sent, awaiting response... 200 OK
>    Length: 1073739776 (1024M) [text/plain]
>    Saving to: `VTS_04_1.VOB'
> 
>     0% [                                       ] 432,670     14.7K/s  eta 13h
>    51m ^C
> 

That sounds like you have problems with some network offloading
settings.

Have you tried for example this in the domU:
ethtool -K eth0 tx off

Does that help? If it doesn't, try playing with the other offloading
settings.. you can check them with "ethtool -k eth0".

Do you have errors in the dom0 dmesg? 

-- Pasi




      The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. http://in.yahoo.com/

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20  1:41           ` Goswin von Brederlow
@ 2009-11-20 11:25             ` Sander Eikelenboom
  2009-11-20 11:49               ` Sander Eikelenboom
  2009-11-20 14:50               ` Konrad Rzeszutek Wilk
  0 siblings, 2 replies; 24+ messages in thread
From: Sander Eikelenboom @ 2009-11-20 11:25 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: Xen Developers List, Konrad Rzeszutek Wilk

I occasionally have the same problem (same messages spit out by the kernel on boot.
System keeps running, but everything is terribly slow it seems (these messages appear one by one with sometimes several seconds in between)
In the end it can not mount the root filesystem and bails out.


Serial console output of the hypervisor appended.

--
Sander


Friday, November 20, 2009, 2:41:11 AM, you wrote:

> Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> writes:

>>> No serial port on my laptop I'm afraid. I'm left with taking
>>> screenshots with a camera.
>>
>> netconsole could fix that. Are the screenshots somewhere accessible?

> For the future is there an howto to set this up for the hypervisor? Or
> is that just the normal linux netconsole?

> xen:
> http://mrvn.homeip.net/13-11-09_190311.jpg

> bare:
> http://mrvn.homeip.net/bare.txt
> http:///mrvn.homeip.net/interrupts.txt

> The problem seems to be that under xen the interrupts (APIC-edge) for
> sata_sil, eth0 and more are being shared (no screenshot of
> /proc/interrupts, sorry) while they never should be.  The network
> driver doesn't work either (so no netconsole for this) and loading
> only sata_sil as module doesn't help. Something screws up the
> interrupt config.

> MfG
>         Goswin



 __  __            _____  ____                     _        _     _      
 \ \/ /___ _ __   |___ / | ___|    _   _ _ __  ___| |_ __ _| |__ | | ___ 
  \  // _ \ '_ \    |_ \ |___ \ __| | | | '_ \/ __| __/ _` | '_ \| |/ _ \
  /  \  __/ | | |  ___) | ___) |__| |_| | | | \__ \ || (_| | |_) | |  __/
 /_/\_\___|_| |_| |____(_)____/    \__,_|_| |_|___/\__\__,_|_.__/|_|\___|
                                                                         
(XEN) Xen version 3.5-unstable (root@) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) T
hu Nov 19 08:37:49 CET 2009
(XEN) Latest ChangeSet: Sat Nov 14 10:32:59 2009 +0000 20453:bec27eb6f72c
(XEN) Command line: loglvl=all loglvl_guest=all dom0_mem=512M com1=115200,8n1 co
nsole=com1
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN)  EDID info not retrieved because of reasons unknown
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009fc00 (usable)
(XEN)  000000000009fc00 - 00000000000a0000 (reserved)
(XEN)  00000000000e4000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 000000007ee70000 (usable)
(XEN)  000000007ee70000 - 000000007ee7e000 (ACPI data)
(XEN)  000000007ee7e000 - 000000007eed0000 (ACPI NVS)
(XEN)  000000007eed0000 - 000000007ef00000 (reserved)
(XEN)  00000000fed00000 - 00000000fed01100 (reserved)
(XEN)  00000000fed02000 - 00000000fed14c00 (reserved)
(XEN)  00000000fed20000 - 00000000fed40000 (reserved)
(XEN)  00000000fee00000 - 00000000fee01000 (reserved)
(XEN)  00000000ffe00000 - 0000000100000000 (reserved)
(XEN) System RAM: 2000MB (2048816kB)
(XEN) ACPI: RSDP 000FB080, 0024 (r2 ACPIAM)
(XEN) ACPI: XSDT 7EE70100, 005C (r1 A_M_I_ OEMXSDT   5000927 MSFT       97)
(XEN) ACPI: FACP 7EE70290, 00F4 (r3 A_M_I_ OEMFACP   5000927 MSFT       97)
(XEN) ACPI: DSDT 7EE70440, 841F (r1  A1065 A1065000        0 INTL 20060113)
(XEN) ACPI: FACS 7EE7E000, 0040
(XEN) ACPI: MCFG 7EE70400, 003C (r1 A_M_I_ OEMMCFG   5000927 MSFT       97)
(XEN) ACPI: OEMB 7EE7E040, 0089 (r1 A_M_I_ AMI_OEM   5000927 MSFT       97)
(XEN) ACPI: HPET 7EE78860, 0038 (r1 A_M_I_ OEMHPET   5000927 MSFT       97)
(XEN) ACPI: GSCI 7EE7E0D0, 2024 (r1 A_M_I_ GMCHSCI   5000927 MSFT       97)
(XEN) ACPI: DMAR 7EE80100, 0070 (r1    AMI  OEMDMAR        1 MSFT       97)
(XEN) ACPI: SSDT 7EE810E0, 0A7C (r1 DpgPmm    CpuPm       12 INTL 20060113)
(XEN) NUMA turned off
(XEN) Faking a node at 0000000000000000-000000007ee70000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000ff780
(XEN) DMI present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x808
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[804,0], pm1x_evt[800,0]
(XEN) ACPI:                  wakeup_vec[7ee7e00c], vec_size[20]
(XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: Not using MMCONFIG.
(XEN) Intel MultiProcessor Specification v1.4
(XEN)     Virtual Wire compatibility mode.
(XEN) OEM ID:  Product ID:  APIC at: 0xFEE00000
(XEN) Processor #0 6:7 APIC version 20
(XEN) Processor #1 6:7 APIC version 20
(XEN) Processor #2 6:7 APIC version 20
(XEN) Processor #3 6:7 APIC version 20
(XEN) I/O APIC #4 Version 32 at 0xFEC00000.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) Processors: 4
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Initializing CPU#0
(XEN) Detected 2666.427 MHz processor.
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 0
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN) HVM: VMX enabled
(XEN) xsave_init: cpu0: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) xsave_init: using cntxt_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#0.
(XEN) CPU0: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU0 has no CMCI support
(XEN) I/O virtualisation disabled
(XEN) CPU0: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 1/1 eip 8c000
(XEN) Initializing CPU#1
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 1
(XEN) xsave_init: cpu1: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#1.
(XEN) CPU1: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU1 has no CMCI support
(XEN) CPU1: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 2/2 eip 8c000
(XEN) Initializing CPU#2
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 2
(XEN) xsave_init: cpu2: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#2.
(XEN) CPU2: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU2 has no CMCI support
(XEN) CPU2: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 3/3 eip 8c000
(XEN) Initializing CPU#3
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 3
(XEN) xsave_init: cpu3: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#3.
(XEN) CPU3: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU3 has no CMCI support
(XEN) CPU3: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Total of 4 processors activated.
(XEN) ExtINT not setup in hardware but reported by MP table
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=0 pin2=0
(XEN) checking TSC synchronization across 4 CPUs: passed.
(XEN) Platform timer is 14.318MHz HPET
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) Brought up 4 CPUs
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) HPET: 8 timers in total, 8 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) *** LOADING DOMAIN 0 ***
(XEN) elf_parse_binary: phdr: paddr=0x1000000 memsz=0x821000
(XEN) elf_parse_binary: phdr: paddr=0x1821000 memsz=0xe57f8
(XEN) elf_parse_binary: phdr: paddr=0x1907000 memsz=0x888
(XEN) elf_parse_binary: phdr: paddr=0x1908000 memsz=0x15860
(XEN) elf_parse_binary: phdr: paddr=0x191d860 memsz=0x1a57a0
(XEN) elf_parse_binary: memory: 0x1000000 -> 0x1ac3000
(XEN) elf_xen_parse_note: GUEST_OS = "linux"
(XEN) elf_xen_parse_note: GUEST_VERSION = "2.6"
(XEN) elf_xen_parse_note: XEN_VERSION = "xen-3.0"
(XEN) elf_xen_parse_note: VIRT_BASE = 0xffffffff80000000
(XEN) elf_xen_parse_note: ENTRY = 0xffffffff8191da60
(XEN) elf_xen_parse_note: HYPERCALL_PAGE = 0xffffffff81009000
(XEN) elf_xen_parse_note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
(XEN) elf_xen_parse_note: PAE_MODE = "yes"
(XEN) elf_xen_parse_note: LOADER = "generic"
(XEN) elf_xen_parse_note: unknown xen elf note (0xd)
(XEN) elf_xen_parse_note: SUSPEND_CANCEL = 0x1
(XEN) elf_xen_parse_note: HV_START_LOW = 0xffff800000000000
(XEN) elf_xen_parse_note: PADDR_OFFSET = 0x0
(XEN) elf_xen_addr_calc_check: addresses:
(XEN)     virt_base        = 0xffffffff80000000
(XEN)     elf_paddr_offset = 0x0
(XEN)     virt_offset      = 0xffffffff80000000
(XEN)     virt_kstart      = 0xffffffff81000000
(XEN)     virt_kend        = 0xffffffff81ac3000
(XEN)     virt_entry       = 0xffffffff8191da60
(XEN)     p2m_base         = 0xffffffffffffffff
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x1ac3000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000074000000->0000000078000000 (114688 pages to be all
ocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81ac3000
(XEN)  Init. ramdisk: ffffffff81ac3000->ffffffff82172a00
(XEN)  Phys-Mach map: ffffffff82173000->ffffffff82273000
(XEN)  Start info:    ffffffff82273000->ffffffff822734b4
(XEN)  Page tables:   ffffffff82274000->ffffffff82289000
(XEN)  Boot stack:    ffffffff82289000->ffffffff8228a000
(XEN)  TOTAL:         ffffffff80000000->ffffffff82400000
(XEN)  ENTRY ADDRESS: ffffffff8191da60
(XEN) Dom0 has maximum 4 VCPUs
(XEN) elf_load_binary: phdr 0 at 0xffffffff81000000 -> 0xffffffff81821000
(XEN) elf_load_binary: phdr 1 at 0xffffffff81821000 -> 0xffffffff819067f8
(XEN) elf_load_binary: phdr 2 at 0xffffffff81907000 -> 0xffffffff81907888
(XEN) elf_load_binary: phdr 3 at 0xffffffff81908000 -> 0xffffffff8191d860
(XEN) elf_load_binary: phdr 4 at 0xffffffff8191d860 -> 0xffffffff81998000
(XEN) Scrubbing Free RAM: ..............done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen
)
(XEN) Freed 156kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:03.0
(XEN) PCI add device 00:19.0
(XEN) PCI add device 00:1e.0
(XEN) PCI add device 00:1f.0
(XEN) PCI add device 00:1f.2
(XEN) PCI add device 00:1f.3
(XEN) PCI add device 00:1f.5
(XEN) PCI add device 01:00.0
(XEN) PCI add device 01:00.1
(XEN) no cpu_id for acpi_id 1
(XEN) no cpu_id for acpi_id 2
(XEN) no cpu_id for acpi_id 3
(XEN) no cpu_id for acpi_id 4
(XEN) *** Serial input -> Xen (type 'CTRL-a' three times to switch input to DOM0
)
(XEN) 'q' pressed -> dumping domain info (now=0x98:3644AB09)
(XEN) General information for domain 0:
(XEN)     refcnt=3 dying=0 nr_pages=130112 xenheap_pages=6 dirty_cpus={0-3} max_
pages=4294967295
(XEN)     handle=00000000-0000-0000-0000-000000000000 vm_assist=0000000d
(XEN) Rangesets belonging to domain 0:
(XEN)     Interrupts { 0-279 }
(XEN)     I/O Memory { 0-febff, fec01-fedff, fee01-ffffffffffffffff }
(XEN)     I/O Ports  { 0-1f, 22-3f, 44-60, 62-9f, a2-3f7, 400-807, 80c-cfb, d00-
ffff }
(XEN) Memory pages belonging to domain 0:
(XEN)     DomPage list too long to display
(XEN)     XenPage 000000000007ea0d: caf=c000000000000002, taf=e800000000000002
(XEN)     XenPage 000000000007ea0c: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea0b: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea0a: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea06: caf=c000000000000002, taf=e800000000000002
(XEN)     XenPage 0000000000077676: caf=c000000000000002, taf=e800000000000002
(XEN) VCPU information and callbacks for domain 0:
(XEN)     VCPU0: CPU0 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={0} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 4, stat 0/0/0)
(XEN)     VCPU1: CPU1 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={1} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 9, stat 0/0/0)
(XEN)     VCPU2: CPU2 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={2} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 14, stat 0/0/0)
(XEN)     VCPU3: CPU3 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={3} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 19, stat 0/0/0)
(XEN) Guest interrupt information:
(XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=
00000000 mapped, unbound
(XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=
00000006 mapped, unbound
(XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=
00000000 mapped, unbound
(XEN)    IRQ:   3, IRQ affinity:0xffffffff, Vec:227 type=XT-PIC          status=
00000002 mapped, unbound
(XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=
00000000 mapped, unbound
(XEN)    IRQ:   5, IRQ affinity:0xffffffff, Vec:229 type=XT-PIC          status=
00000010 in-flight=0 domain-list=0:  5(----),
(XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:   7, IRQ affinity:0xffffffff, Vec:231 type=XT-PIC          status=
00000010 in-flight=0 domain-list=0:  7(----),
(XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:   9, IRQ affinity:0x00000001, Vec: 64 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  10, IRQ affinity:0xffffffff, Vec:234 type=XT-PIC          status=
00000002 mapped, unbound
(XEN)    IRQ:  11, IRQ affinity:0xffffffff, Vec:235 type=XT-PIC          status=
00000002 mapped, unbound
(XEN)    IRQ:  12, IRQ affinity:0x00000001, Vec: 72 type=IO-APIC-edge    status=
00000006 mapped, unbound
(XEN)    IRQ:  13, IRQ affinity:0x00000001, Vec: 80 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  14, IRQ affinity:0x00000001, Vec: 88 type=IO-APIC-edge    status=
00000006 mapped, unbound
(XEN)    IRQ:  15, IRQ affinity:0x00000001, Vec: 96 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  16, IRQ affinity:0x00000001, Vec:104 type=IO-APIC-level   status=
00000002 mapped, unbound
(XEN)    IRQ:  17, IRQ affinity:0x00000001, Vec:112 type=IO-APIC-level   status=
00000002 mapped, unbound
(XEN)    IRQ:  18, IRQ affinity:0x00000001 Vec:120 type=IO-APIC-level   status=0
0000002 mapped, unbound
(XEN)    IRQ:  20, IRQ affinity:0x00000001, Vec:136 type=IO-APIC-level   status=
00000002 mapped, unbound
(XEN)    IRQ:  22, IRQ affinity:0x00000001, Vec:144 type=IO-APIC-level   status=
00000002 mapped, unbound
(XEN)    IRQ:  24, IRQ affinity:0x00000001, Vec:152 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  25, IRQ affinity:0x00000002, Vec:160 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  26, IRQ affinity:0x00000004, Vec:168 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  27, IRQ affinity:0x00000008, Vec:176 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  28, IRQ affinity:0xffffffff, Vec:184 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  29, IRQ affinity:0xffffffff, Vec:192 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  30, IRQ affinity:0xffffffff, Vec:200 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  31, IRQ affinity:0xffffffff, Vec:208 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN) IO-APIC interrupt information:
(XEN)     IRQ  0 Vec240:
(XEN)       Apic 0x00, Pin  2: vector=240, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:255
(XEN)     IRQ  1 Vec 40:
(XEN)       Apic 0x00, Pin  1: vector=40, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=1, dest_id:1
(XEN)     IRQ  4 Vec241:
(XEN)       Apic 0x00, Pin  4: vector=241, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:255
(XEN)     IRQ  6 Vec 48:
(XEN)       Apic 0x00, Pin  6: vector=48, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  8 Vec 56:
(XEN)       Apic 0x00, Pin  8: vector=56, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  9 Vec 64:
(XEN)       Apic 0x00, Pin  9: vector=64, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 12 Vec 72:
(XEN)       Apic 0x00, Pin 12: vector=72, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 13 Vec 80:
(XEN)       Apic 0x00, Pin 13: vector=80, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 14 Vec 88:
(XEN)       Apic 0x00, Pin 14: vector=88, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=1, dest_id:1
(XEN)     IRQ 15 Vec 96:
(XEN)       Apic 0x00, Pin 15: vector=96, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 16 Vec104:
(XEN)       Apic 0x00, Pin 16: vector=104, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:1
(XEN)     IRQ 17 Vec112:
(XEN)       Apic 0x00, Pin 17: vector=112, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:1
(XEN)     IRQ 18 Vec120:
(XEN)       Apic 0x00, Pin 18: vector=120, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:1
(XEN)     IRQ 20 Vec136:
(XEN)       Apic 0x00, Pin 20: vector=136, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:1
(XEN)     IRQ 22 Vec144:
(XEN)       Apic 0x00, Pin 22: vector=144, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:1
(XEN) Physical memory information:
(XEN)     Xen heap: 0kB free
(XEN)     heap[14]: 64480kB free
(XEN)     heap[15]: 131072kB free
(XEN)     heap[16]: 262144kB free
(XEN)     heap[17]: 524288kB free
(XEN)     heap[18]: 550172kB free
(XEN)     Dom heap: 1532156kB free
(XEN) Dumping timer queues: NOW=0x000000A21ACBA161
(XEN) CPU[00]   1 : ffff82c48031a540 ex=0x000000A22A649287 0000000000000000 ffff
82c480195050
(XEN)   2 : ffff82c4803167c0 ex=0x000000A22B9F1A7E 0000000000000000 ffff82c48016
de26
(XEN)   3 : ffff83007ea00060 ex=0x000000A22A656965 ffff83007ea00000 ffff82c48011
c429
(XEN)   4 : ffff82c4803168a0 ex=0x000000AEB7A31A54 0000000000000000 ffff82c48016
dd04
(XEN)  L0 : ffff82c4802fa5e0 ex=0x000000A21AFB61F8 0000000000000000 ffff82c48011
6fdf
(XEN)  L1 : ffff83007ea68798 ex=0x000000A21AFB6805 0000000000000000 ffff82c48011
8333
(XEN) 
(XEN) CPU[01]   1 : ffff83007cefe060 ex=0x000000A22A656962 ffff83007cefe000 ffff
82c48011c429
(XEN)  L0 : ffff83007ea68ce8 ex=0x000000A21B2CE0BC 0000000000000001 ffff82c48011
8333
(XEN) 
(XEN) CPU[02]   1 : ffff83007cefc060 ex=0x000000A2D0FD7F13 ffff83007cefc000 ffff
82c48011c429
(XEN)  L0 : ffff83007ea68da8 ex=0x000000A21B5C5653 0000000000000002 ffff82c48011
8333
(XEN) 
(XEN) CPU[03]   1 : ffff83007cefa060 ex=0x000000A2EECB4C55 ffff83007cefa000 ffff
82c48011c429
(XEN)  L0 : ffff83007ea68e68 ex=0x000000A21B59FE36 0000000000000003 ffff82c48011
8333
(XEN)

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 11:25             ` Sander Eikelenboom
@ 2009-11-20 11:49               ` Sander Eikelenboom
  2009-11-20 12:33                 ` Sander Eikelenboom
  2009-11-20 14:50               ` Konrad Rzeszutek Wilk
  1 sibling, 1 reply; 24+ messages in thread
From: Sander Eikelenboom @ 2009-11-20 11:49 UTC (permalink / raw)
  To: Xen Developers List; +Cc: Konrad Rzeszutek Wilk, Goswin von Brederlow

Hmm this problem seems to be occuring allways when setting the bios option "ACPI APIC " to disabled, and occuring sometimes when it is enabled.


When it does boot with the option enabled, it shows some more output, seems it is in the io_apic.c calls where it hangs what would make sense with the bios option.
Appended serial console output of hypervisor, lspci output and xminfo of this boot.
In the end or after sometime it reboots due to bug in hpet.c, allready sent that bug to the list as well.

--
Sander


 __  __            _____  ____                     _        _     _
 \ \/ /___ _ __   |___ / | ___|    _   _ _ __  ___| |_ __ _| |__ | | ___ 
  \  // _ \ '_ \    |_ \ |___ \ __| | | | '_ \/ __| __/ _` | '_ \| |/ _ \  /  \  __/ | | |  ___) | ___) |__| |_| | | | \__ \ || (_| | |_) | |  __/
 /_/\_\___|_| |_| |____(_)____/    \__,_|_| |_|___/\__\__,_|_.__/|_|\___|
                                                                         
(XEN) Xen version 3.5-unstable (root@) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) T
hu Nov 19 08:37:49 CET 2009
(XEN) Latest ChangeSet: Sat Nov 14 10:32:59 2009 +0000 20453:bec27eb6f72c
(XEN) Command line: loglvl=all loglvl_guest=all dom0_mem=512M com1=115200,8n1 co
nsole=com1
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN)  EDID info not retrieved because of reasons unknown
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009fc00 (usable)
(XEN)  000000000009fc00 - 00000000000a0000 (reserved)
(XEN)  00000000000e4000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 000000007ee70000 (usable)
(XEN)  000000007ee70000 - 000000007ee7e000 (ACPI data)
(XEN)  000000007ee7e000 - 000000007eed0000 (ACPI NVS)
(XEN)  000000007eed0000 - 000000007ef00000 (reserved)
(XEN)  00000000fed00000 - 00000000fed01100 (reserved)
(XEN)  00000000fed02000 - 00000000fed14c00 (reserved)
(XEN)  00000000fed20000 - 00000000fed40000 (reserved)
(XEN)  00000000fee00000 - 00000000fee01000 (reserved)
(XEN)  00000000ffe00000 - 0000000100000000 (reserved)
(XEN) System RAM: 2000MB (2048816kB)
(XEN) ACPI: RSDP 000FB080, 0024 (r2 ACPIAM)
(XEN) ACPI: XSDT 7EE70100, 0064 (r1 A_M_I_ OEMXSDT   5000927 MSFT       97)
(XEN) ACPI: FACP 7EE70290, 00F4 (r3 A_M_I_ OEMFACP   5000927 MSFT       97)
(XEN) ACPI: DSDT 7EE70440, 841F (r1  A1065 A1065000        0 INTL 20060113)
(XEN) ACPI: FACS 7EE7E000, 0040
(XEN) ACPI: APIC 7EE70390, 006C (r1 A_M_I_ OEMAPIC   5000927 MSFT       97)
(XEN) ACPI: MCFG 7EE70400, 003C (r1 A_M_I_ OEMMCFG   5000927 MSFT       97)
(XEN) ACPI: OEMB 7EE7E040, 0089 (r1 A_M_I_ AMI_OEM   5000927 MSFT       97)
(XEN) ACPI: HPET 7EE78860, 0038 (r1 A_M_I_ OEMHPET   5000927 MSFT       97)
(XEN) ACPI: GSCI 7EE7E0D0, 2024 (r1 A_M_I_ GMCHSCI   5000927 MSFT       97)
(XEN) ACPI: DMAR 7EE80100, 0070 (r1    AMI  OEMDMAR        1 MSFT       97)
(XEN) ACPI: SSDT 7EE810E0, 0A7C (r1 DpgPmm    CpuPm       12 INTL 20060113)
(XEN) NUMA turned off
(XEN) Faking a node at 0000000000000000-000000007ee70000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000ff780
(XEN) DMI present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x808
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[804,0], pm1x_evt[800,0]
(XEN) ACPI:                  wakeup_vec[7ee7e00c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
(XEN) Processor #0 7:7 APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
(XEN) Processor #1 7:7 APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
(XEN) Processor #2 7:7 APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
(XEN) Processor #3 7:7 APIC version 20
(XEN) ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: Not using MMCONFIG.
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Initializing CPU#0
(XEN) Detected 2666.409 MHz processor.
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 0
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN) HVM: VMX enabled
(XEN) xsave_init: cpu0: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) xsave_init: using cntxt_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#0.
(XEN) CPU0: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU0 has no CMCI support
(XEN) I/O virtualisation disabled
(XEN) CPU0: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 1/1 eip 8c000
(XEN) Initializing CPU#1
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 1
(XEN) xsave_init: cpu1: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#1.
(XEN) CPU1: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU1 has no CMCI support
(XEN) CPU1: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 2/2 eip 8c000
(XEN) Initializing CPU#2
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 2
(XEN) xsave_init: cpu2: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#2.
(XEN) CPU2: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU2 has no CMCI support
(XEN) CPU2: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 3/3 eip 8c000
(XEN) Initializing CPU#3
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 3
(XEN) xsave_init: cpu3: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#3.
(XEN) CPU3: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU3 has no CMCI support
(XEN) CPU3: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) checking TSC synchronization across 4 CPUs: passed.
(XEN) Platform timer is 14.318MHz HPET
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) Brought up 4 CPUs
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) HPET: 8 timers in total, 8 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) *** LOADING DOMAIN 0 ***
(XEN) elf_parse_binary: phdr: paddr=0x1000000 memsz=0x821000
(XEN) elf_parse_binary: phdr: paddr=0x1821000 memsz=0xe57f8
(XEN) elf_parse_binary: phdr: paddr=0x1907000 memsz=0x888
(XEN) elf_parse_binary: phdr: paddr=0x1908000 memsz=0x15860
(XEN) elf_parse_binary: phdr: paddr=0x191d860 memsz=0x1a57a0
(XEN) elf_parse_binary: memory: 0x1000000 -> 0x1ac3000
(XEN) elf_xen_parse_note: GUEST_OS = "linux"
(XEN) elf_xen_parse_note: GUEST_VERSION = "2.6"
(XEN) elf_xen_parse_note: XEN_VERSION = "xen-3.0"
(XEN) elf_xen_parse_note: VIRT_BASE = 0xffffffff80000000
(XEN) elf_xen_parse_note: ENTRY = 0xffffffff8191da60
(XEN) elf_xen_parse_note: HYPERCALL_PAGE = 0xffffffff81009000
(XEN) elf_xen_parse_note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
(XEN) elf_xen_parse_note: PAE_MODE = "yes"
(XEN) elf_xen_parse_note: LOADER = "generic"
(XEN) elf_xen_parse_note: unknown xen elf note (0xd)
(XEN) elf_xen_parse_note: SUSPEND_CANCEL = 0x1
(XEN) elf_xen_parse_note: HV_START_LOW = 0xffff800000000000
(XEN) elf_xen_parse_note: PADDR_OFFSET = 0x0
(XEN) elf_xen_addr_calc_check: addresses:
(XEN)     virt_base        = 0xffffffff80000000
(XEN)     elf_paddr_offset = 0x0
(XEN)     virt_offset      = 0xffffffff80000000
(XEN)     virt_kstart      = 0xffffffff81000000
(XEN)     virt_kend        = 0xffffffff81ac3000
(XEN)     virt_entry       = 0xffffffff8191da60
(XEN)     p2m_base         = 0xffffffffffffffff
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x1ac3000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000074000000->0000000078000000 (114688 pages to be all
ocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81ac3000
(XEN)  Init. ramdisk: ffffffff81ac3000->ffffffff82172a00
(XEN)  Phys-Mach map: ffffffff82173000->ffffffff82273000
(XEN)  Start info:    ffffffff82273000->ffffffff822734b4
(XEN)  Page tables:   ffffffff82274000->ffffffff82289000
(XEN)  Boot stack:    ffffffff82289000->ffffffff8228a000
(XEN)  TOTAL:         ffffffff80000000->ffffffff82400000
(XEN)  ENTRY ADDRESS: ffffffff8191da60
(XEN) Dom0 has maximum 4 VCPUs
(XEN) elf_load_binary: phdr 0 at 0xffffffff81000000 -> 0xffffffff81821000
(XEN) elf_load_binary: phdr 1 at 0xffffffff81821000 -> 0xffffffff819067f8
(XEN) elf_load_binary: phdr 2 at 0xffffffff81907000 -> 0xffffffff81907888
(XEN) elf_load_binary: phdr 3 at 0xffffffff81908000 -> 0xffffffff8191d860
(XEN) elf_load_binary: phdr 4 at 0xffffffff8191d860 -> 0xffffffff81998000
(XEN) Scrubbing Free RAM: ..............done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen
)
(XEN) Freed 156kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=0, irq=0
(XEN) ioapic_guest_write: new_entry=00010900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=2, irq=0
(XEN) ioapic_guest_write: new_entry=00010900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) irq.c:1444: dom0: pirq 0 or irq 3 already mapped
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=4, irq=4
(XEN) ioapic_guest_write: new_entry=00010900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) irq.c:1444: dom0: pirq 0 or irq 5 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 6 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 7 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 8 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 9 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 10 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 11 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 12 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 13 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 14 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 15 already mapped
(XEN) allocated vector for irq:16
(XEN) irq.c:1444: dom0: pirq 0 or irq 16 already mapped
(XEN) allocated vector for irq:17
(XEN) irq.c:1444: dom0: pirq 0 or irq 17 already mapped
(XEN) allocated vector for irq:18
(XEN) irq.c:1444: dom0: pirq 0 or irq 18 already mapped
(XEN) allocated vector for irq:19
(XEN) irq.c:1444: dom0: pirq 0 or irq 19 already mapped
(XEN) allocated vector for irq:20
(XEN) irq.c:1444: dom0: pirq 0 or irq 20 already mapped
(XEN) allocated vector for irq:22
(XEN) irq.c:1444: dom0: pirq 0 or irq 22 already mapped
(XEN) allocated vector for irq:23
(XEN) irq.c:1444: dom0: pirq 0 or irq 23 already mapped
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=0, irq=0
(XEN) ioapic_guest_write: new_entry=00000900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=4, irq=4
(XEN) ioapic_guest_write: new_entry=00000904
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:03.0
(XEN) PCI add device 00:19.0
(XEN) PCI add device 00:1e.0
(XEN) PCI add device 00:1f.0
(XEN) PCI add device 00:1f.2
(XEN) PCI add device 00:1f.3
(XEN) PCI add device 00:1f.5
(XEN) PCI add device 01:00.0
(XEN) PCI add device 01:00.1
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=4, irq=4
(XEN) ioapic_guest_write: new_entry=00000904
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) Set CPU acpi_id(1) cpuid(0) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(1) cpuid(0) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 0 initialization completed
(XEN) Set CPU acpi_id(2) cpuid(1) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(2) cpuid(1) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 1 initialization completed
(XEN) Set CPU acpi_id(3) cpuid(2) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(3) cpuid(2) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 2 initialization completed
(XEN) Set CPU acpi_id(4) cpuid(3) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(4) cpuid(3) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 3 initialization completed
(XEN) Xen BUG at hpet.c:663
(XEN) ----[ Xen-3.5unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    3
(XEN) RIP:    e008:[<ffff82c480189b81>] hpet_broadcast_exit+0x4b/0xf2
(XEN) RFLAGS: 0000000000010246   CONTEXT: hypervisor
(XEN) rax: ffff82c48025fa88   rbx: 0000000000000000   rcx: 0000000000000010
(XEN) rdx: 0000000000006000   rsi: 0000000547367784   rdi: ffff82c4802306b0
(XEN) rbp: ffff83007ea37e30   rsp: ffff83007ea37e10   r8:  0000000000000004
(XEN) r9:  ffff83007ea68e68   r10: ffff83007ea68e68   r11: 0f0f0f0f0f0f0f0f
(XEN) r12: 0000000000000003   r13: 0000000000006000   r14: ffff830076401830
(XEN) r15: 000000000080b00b   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 000000007ecec000   cr2: ffff88001e0ea290
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea37e10:
(XEN)    0000000000000002 ffff82c4802362a0 ffff8300764018c0 ffff830076401830
(XEN)    ffff83007ea37ee0 ffff82c48018bbf1 ffff83007ea37ea0 ffff82c48011fd9e
(XEN)    ffff82c480265080 0080b0067ea37ed8 ffff82c48011cb6f ffff82c480265100
(XEN)    ffff83007ea2e2f0 0000000000000003 ffff82c4802362a0 000000007ea37f28
(XEN)    0000000000000000 0000000000000000 ffff83007ea37ee0 fffff83000000045
(XEN)    0000000000000003 ffff83007ea37f28 ffff82c4802362a0 ffff83007ea37f28
(XEN)    ffff82c48025fa00 ffff82c480236918 ffff83007ea37f20 ffff82c48014ca00
(XEN)    ffff83007cefa000 ffff83007ea3e000 0000000000000003 ffff83007cefa000
(XEN)    0000000229335ec9 ffff82c480265080 ffff83007ea37dc8 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 ffff88001f89bf10
(XEN)    ffffffff818fe0a8 0000000000000246 0000000000000001 0000000000fffb8b
(XEN)    0000000000000000 0000000000000000 ffffffff810093aa 000000000000e030
(XEN)    00000000deadbeef 00000000deadbeef 0000010000000000 ffffffff810093aa
(XEN)    000000000000e033 0000000000000246 ffff88001f89bef8 000000000000e02b
(XEN)    5555555555555555 5555555555555555 5555555555555555 5555555555555555
(XEN)    5555555500000003 ffff83007ea3e000
(XEN) Xen call trace:
(XEN)    [<ffff82c480189b81>] hpet_broadcast_exit+0x4b/0xf2
(XEN)    [<ffff82c48018bbf1>] acpi_processor_idle+0x5f6/0x6b5
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) 
(XEN) ****************************************
(XEN) Panic on CPU 3:
(XEN) Xen BUG at hpet.c:663
(XEN) ****************************************
(XEN) 
(XEN) Reboot in five seconds...
 __  __            _____  ____                     _        _     _      
 \ \/ /___ _ __   |___ / | ___|    _   _ _ __  ___| |_ __ _| |__ | | ___ 
  \  // _ \ '_ \    |_ \ |___ \ __| | | | '_ \/ __| __/ _` | '_ \| |/ _ \
  /  \  __/ | | |  ___) | ___) |__| |_| | | | \__ \ || (_| | |_) | |  __/
 /_/\_\___|_| |_| |____(_)____/    \__,_|_| |_|___/\__\__,_|_.__/|_|\___|
                                                                         
(XEN) Xen version 3.5-unstable (root@) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) T
hu Nov 19 08:37:49 CET 2009
(XEN) Latest ChangeSet: Sat Nov 14 10:32:59 2009 +0000 20453:bec27eb6f72c
(XEN) Command line: loglvl=all loglvl_guest=all dom0_mem=512M com1=115200,8n1 co
nsole=com1
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN)  EDID info not retrieved because of reasons unknown
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009fc00 (usable)
(XEN)  000000000009fc00 - 00000000000a0000 (reserved)
(XEN)  00000000000e4000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 000000007ee70000 (usable)
(XEN)  000000007ee70000 - 000000007ee7e000 (ACPI data)
(XEN)  000000007ee7e000 - 000000007eed0000 (ACPI NVS)
(XEN)  000000007eed0000 - 000000007ef00000 (reserved)
(XEN)  00000000fed00000 - 00000000fed01100 (reserved)
(XEN)  00000000fed02000 - 00000000fed14c00 (reserved)
(XEN)  00000000fed20000 - 00000000fed40000 (reserved)
(XEN)  00000000fee00000 - 00000000fee01000 (reserved)
(XEN)  00000000ffe00000 - 0000000100000000 (reserved)
(XEN) System RAM: 2000MB (2048816kB)
(XEN) ACPI: RSDP 000FB080, 0024 (r2 ACPIAM)
(XEN) ACPI: XSDT 7EE70100, 0064 (r1 A_M_I_ OEMXSDT   5000927 MSFT       97)
(XEN) ACPI: FACP 7EE70290, 00F4 (r3 A_M_I_ OEMFACP   5000927 MSFT       97)
(XEN) ACPI: DSDT 7EE70440, 841F (r1  A1065 A1065000        0 INTL 20060113)
(XEN) ACPI: FACS 7EE7E000, 0040
(XEN) ACPI: APIC 7EE70390, 006C (r1 A_M_I_ OEMAPIC   5000927 MSFT       97)
(XEN) ACPI: MCFG 7EE70400, 003C (r1 A_M_I_ OEMMCFG   5000927 MSFT       97)
(XEN) ACPI: OEMB 7EE7E040, 0089 (r1 A_M_I_ AMI_OEM   5000927 MSFT       97)
(XEN) ACPI: HPET 7EE78860, 0038 (r1 A_M_I_ OEMHPET   5000927 MSFT       97)
(XEN) ACPI: GSCI 7EE7E0D0, 2024 (r1 A_M_I_ GMCHSCI   5000927 MSFT       97)
(XEN) ACPI: DMAR 7EE80100, 0070 (r1    AMI  OEMDMAR        1 MSFT       97)
(XEN) ACPI: SSDT 7EE810E0, 0A7C (r1 DpgPmm    CpuPm       12 INTL 20060113)
(XEN) NUMA turned off
(XEN) Faking a node at 0000000000000000-000000007ee70000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000ff780
(XEN) DMI present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x808
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[804,0], pm1x_evt[800,0]
(XEN) ACPI:                  wakeup_vec[7ee7e00c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
(XEN) Processor #0 7:7 APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
(XEN) Processor #1 7:7 APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
(XEN) Processor #2 7:7 APIC version 20
(XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
(XEN) Processor #3 7:7 APIC version 20
(XEN) ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: Not using MMCONFIG.
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Initializing CPU#0
(XEN) Detected 2666.396 MHz processor.
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 0
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN) HVM: VMX enabled
(XEN) xsave_init: cpu0: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) xsave_init: using cntxt_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#0.
(XEN) CPU0: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU0 has no CMCI support
(XEN) I/O virtualisation disabled
(XEN) CPU0: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 1/1 eip 8c000
(XEN) Initializing CPU#1
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 1
(XEN) xsave_init: cpu1: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#1.
(XEN) CPU1: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU1 has no CMCI support
(XEN) CPU1: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 2/2 eip 8c000
(XEN) Initializing CPU#2
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 2
(XEN) xsave_init: cpu2: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#2.
(XEN) CPU2: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU2 has no CMCI support
(XEN) CPU2: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 3/3 eip 8c000
(XEN) Initializing CPU#3
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 3
(XEN) xsave_init: cpu3: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#3.
(XEN) CPU3: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU3 has no CMCI support
(XEN) CPU3: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) checking TSC synchronization across 4 CPUs: passed.
(XEN) Platform timer is 14.318MHz HPET
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) Brought up 4 CPUs
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) HPET: 8 timers in total, 8 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) *** LOADING DOMAIN 0 ***
(XEN) elf_parse_binary: phdr: paddr=0x1000000 memsz=0x821000
(XEN) elf_parse_binary: phdr: paddr=0x1821000 memsz=0xe57f8
(XEN) elf_parse_binary: phdr: paddr=0x1907000 memsz=0x888
(XEN) elf_parse_binary: phdr: paddr=0x1908000 memsz=0x15860
(XEN) elf_parse_binary: phdr: paddr=0x191d860 memsz=0x1a57a0
(XEN) elf_parse_binary: memory: 0x1000000 -> 0x1ac3000
(XEN) elf_xen_parse_note: GUEST_OS = "linux"
(XEN) elf_xen_parse_note: GUEST_VERSION = "2.6"
(XEN) elf_xen_parse_note: XEN_VERSION = "xen-3.0"
(XEN) elf_xen_parse_note: VIRT_BASE = 0xffffffff80000000
(XEN) elf_xen_parse_note: ENTRY = 0xffffffff8191da60
(XEN) elf_xen_parse_note: HYPERCALL_PAGE = 0xffffffff81009000
(XEN) elf_xen_parse_note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
(XEN) elf_xen_parse_note: PAE_MODE = "yes"
(XEN) elf_xen_parse_note: LOADER = "generic"
(XEN) elf_xen_parse_note: unknown xen elf note (0xd)
(XEN) elf_xen_parse_note: SUSPEND_CANCEL = 0x1
(XEN) elf_xen_parse_note: HV_START_LOW = 0xffff800000000000
(XEN) elf_xen_parse_note: PADDR_OFFSET = 0x0
(XEN) elf_xen_addr_calc_check: addresses:
(XEN)     virt_base        = 0xffffffff80000000
(XEN)     elf_paddr_offset = 0x0
(XEN)     virt_offset      = 0xffffffff80000000
(XEN)     virt_kstart      = 0xffffffff81000000
(XEN)     virt_kend        = 0xffffffff81ac3000
(XEN)     virt_entry       = 0xffffffff8191da60
(XEN)     p2m_base         = 0xffffffffffffffff
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x1ac3000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000074000000->0000000078000000 (114688 pages to be all
ocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81ac3000
(XEN)  Init. ramdisk: ffffffff81ac3000->ffffffff82172a00
(XEN)  Phys-Mach map: ffffffff82173000->ffffffff82273000
(XEN)  Start info:    ffffffff82273000->ffffffff822734b4
(XEN)  Page tables:   ffffffff82274000->ffffffff82289000
(XEN)  Boot stack:    ffffffff82289000->ffffffff8228a000
(XEN)  TOTAL:         ffffffff80000000->ffffffff82400000
(XEN)  ENTRY ADDRESS: ffffffff8191da60
(XEN) Dom0 has maximum 4 VCPUs
(XEN) elf_load_binary: phdr 0 at 0xffffffff81000000 -> 0xffffffff81821000
(XEN) elf_load_binary: phdr 1 at 0xffffffff81821000 -> 0xffffffff819067f8
(XEN) elf_load_binary: phdr 2 at 0xffffffff81907000 -> 0xffffffff81907888
(XEN) elf_load_binary: phdr 3 at 0xffffffff81908000 -> 0xffffffff8191d860
(XEN) elf_load_binary: phdr 4 at 0xffffffff8191d860 -> 0xffffffff81998000
(XEN) Scrubbing Free RAM: ..............done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen
)
(XEN) Freed 156kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=0, irq=0
(XEN) ioapic_guest_write: new_entry=00010900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=2, irq=0
(XEN) ioapic_guest_write: new_entry=00010900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) irq.c:1444: dom0: pirq 0 or irq 3 already mapped
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=4, irq=4
(XEN) ioapic_guest_write: new_entry=00010900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) irq.c:1444: dom0: pirq 0 or irq 5 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 6 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 7 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 8 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 9 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 10 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 11 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 12 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 13 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 14 already mapped
(XEN) irq.c:1444: dom0: pirq 0 or irq 15 already mapped
(XEN) allocated vector for irq:16
(XEN) irq.c:1444: dom0: pirq 0 or irq 16 already mapped
(XEN) allocated vector for irq:17
(XEN) irq.c:1444: dom0: pirq 0 or irq 17 already mapped
(XEN) allocated vector for irq:18
(XEN) irq.c:1444: dom0: pirq 0 or irq 18 already mapped
(XEN) allocated vector for irq:19
(XEN) irq.c:1444: dom0: pirq 0 or irq 19 already mapped
(XEN) allocated vector for irq:20
(XEN) irq.c:1444: dom0: pirq 0 or irq 20 already mapped
(XEN) allocated vector for irq:22
(XEN) irq.c:1444: dom0: pirq 0 or irq 22 already mapped
(XEN) allocated vector for irq:23
(XEN) irq.c:1444: dom0: pirq 0 or irq 23 already mapped
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=0, irq=0
(XEN) ioapic_guest_write: new_entry=00000900
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=4, irq=4
(XEN) ioapic_guest_write: new_entry=00000904
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:03.0
(XEN) PCI add device 00:19.0
(XEN) PCI add device 00:1e.0
(XEN) PCI add device 00:1f.0
(XEN) PCI add device 00:1f.2
(XEN) PCI add device 00:1f.3
(XEN) PCI add device 00:1f.5
(XEN) PCI add device 01:00.0
(XEN) PCI add device 01:00.1
(XEN) io_apic.c:2251: 
(XEN) ioapic_guest_write: apic=0, pin=4, irq=4
(XEN) ioapic_guest_write: new_entry=00000904
(XEN) ioapic_guest_write: Attempt to modify IO-APIC pin for in-use IRQ!
(XEN) Set CPU acpi_id(1) cpuid(0) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(1) cpuid(0) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 0 initialization completed
(XEN) Set CPU acpi_id(2) cpuid(1) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(2) cpuid(1) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 1 initialization completed
(XEN) Set CPU acpi_id(3) cpuid(2) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(3) cpuid(2) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 2 initialization completed
(XEN) Set CPU acpi_id(4) cpuid(3) Px State info:
(XEN)   _PPC: 0
(XEN) cpuid.MWAIT[.eax=40, .ebx=40, .ecx=3, .edx=22220]
(XEN) Monitor-Mwait will be used to enter C-1 state
(XEN) Set CPU acpi_id(4) cpuid(3) Px State info:
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PCT: descriptor=130, length=12, space_id=127, bit_width=0, bit_offset=0
, reserved=0, address=0
(XEN)   _PSS: state_count=3
(XEN)   State0: 2670MHz 89000mW 10us 10us 0x81f 0x81f
(XEN)   State1: 2336MHz 76000mW 10us 10us 0x71b 0x71b
(XEN)   State2: 2003MHz 63000mW 10us 10us 0x616 0x616
(XEN)   _PSD: num_entries=5 rev=0 domain=0 coord_type=254 num_processors=4
(XEN)   _PPC: 0
(XEN) xen_pminfo: @acpi_cpufreq_cpu_init,HARDWARE addr space
(XEN) CPU 3 initialization completed
(XEN) *** Serial input -> Xen (type 'CTRL-a' three times to switch input to DOM0
)
(XEN) '*' pressed -> firing all diagnostic keyhandlers
(XEN) [d: dump registers
(XEN) 'd' pressed -> dumping registers
(XEN) 
(XEN) *** Dumping CPU3 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    3
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010296   CONTEXT: hypervisor
(XEN) rax: 0000000000000000   rbx: 0000000000000064   rcx: 0000000000000000
(XEN) rdx: 0000000000000000   rsi: 000000000000000a   rdi: 0000000000000000
(XEN) rbp: ffff83007ea37b58   rsp: ffff83007ea37b48   r8:  0000000000000004
(XEN) r9:  ffff82c4801fc780   r10: 00000000fffffffc   r11: 0000000000000001
(XEN) r12: 0000000000000064   r13: ffff82c4802f5000   r14: ffff83007ea37d88
(XEN) r15: ffff82c4802109a3   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 000000007ad55000   cr2: ffff88001d1565f8
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea37b48:
(XEN)    ffff82c4802f5000 0000000000000064 ffff83007ea37b98 ffff82c4801108b8
(XEN)    ffff83007ea37b88 ffff82c480230a00 0000000000000064 ffff82c4802f5000
(XEN)    ffff83007ea37d88 ffff82c4802109a3 ffff83007ea37bd8 ffff82c48010ffad
(XEN)    ffff83007ea37bc8 ffff82c480230ae0 000000000000002a ffff83007ea37d88
(XEN)    0000000000000282 ffff83007ea37d88 ffff83007ea37c08 ffff82c48011004b
(XEN)    ffff83007ea37f28 ffff83007ea37d88 ffff82c480234740 000000000000002a
(XEN)    ffff83007ea37c18 ffff82c480133f66 ffff83007ea37c48 ffff82c480134040
(XEN)    ffff83007ea37c48 ffff82c48022f0a0 ffff82c480133faa ffff82c48022f118
(XEN)    ffff83007ea37c98 ffff82c4801351a4 ffff83007ea37c68 ffff82c480134519
(XEN)    2aff83007ea37c98 0000000000000061 ffff82c480301320 ffff82c48022f0a0
(XEN)    ffff83007ea37d88 ffff82c4802fa680 ffff83007ea37cc8 ffff82c4801348c5
(XEN)    ffff83007cf00280 0000000000000004 ffff83007ea37d88 0000000000000000
(XEN)    ffff83007ea37d78 ffff82c480157356 0000000000000002 ffff83007ea37f28
(XEN)    ffff83007ea37d38 ffff83007ea37f28 0000000000000004 ffff83007cf002b4
(XEN)    000000047ea37f28 ffff82c480301348 ffff82c4802e7df0 0000000000000000
(XEN)    0000000000000008 0000000000000008 ffff830076401830 0000000000000002
(XEN)    000000000000001c 0000000000000003 ffff82c4802362a0 ffff8300764018f0
(XEN)    ffff830076401830 00000000007b5c90 00007cff815c8257 ffff82c480150ab6
(XEN)    00000000007b5c90 ffff830076401830 ffff8300764018f0 ffff82c4802362a0
(XEN)    ffff83007ea37ee0 0000000000000003 0f0f0f0f0f0f0f0f ffff83007cefa060
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c4801108b8>] dump_registers+0x5d/0x145
(XEN)    [<ffff82c48010ffad>] run_all_keyhandlers+0x74/0xa5
(XEN)    [<ffff82c48011004b>] handle_keypress+0x6d/0x95
(XEN)    [<ffff82c480133f66>] __serial_rx+0x16/0x5a
(XEN)    [<ffff82c480134040>] serial_rx+0x96/0xa1
(XEN)    [<ffff82c4801351a4>] serial_rx_interrupt+0xb3/0xc9
(XEN)    [<ffff82c4801348c5>] ns16550_interrupt+0x47/0x61
(XEN)    [<ffff82c480157356>] do_IRQ+0x5df/0x690
(XEN)    [<ffff82c480150ab6>] common_interrupt+0x26/0x30
(XEN)    [<ffff82c480189b36>] hpet_broadcast_exit+0x0/0xf2
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU3 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) *** Dumping CPU0 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    0
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010092   CONTEXT: hypervisor
(XEN) rax: 0000000000000000   rbx: 0000000000000000   rcx: ffff82c4801107e3
(XEN) rdx: ffff82c4802fa680   rsi: 000000142f1b9fb2   rdi: 0000000000000000
(XEN) rbp: ffff82c4802e7d48   rsp: ffff82c4802e7d38   r8:  000000001c01af14
(XEN) r9:  0000000000000006   r10: ffff82c48031a540   r11: 00000007ca70bc1a
(XEN) r12: ffff82c4802362a0   r13: ffff83007ea05ad0   r14: ffff83007ea05a10
(XEN) r15: 00000000008b7ddd   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 000000007a825000   cr2: ffff88001f912328
(XEN) ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff82c4802e7d38:
(XEN)    0000000000000000 0000000000000000 ffff82c4802e7d58 ffff82c48016a2bf
(XEN)    ffff82c4802e7d78 ffff82c48016a368 ffff82c480155ecb 0000000000000003
(XEN)    00007d3b7fd18257 ffff82c4801460f0 00000000008b7ddd ffff83007ea05a10
(XEN)    ffff83007ea05ad0 ffff82c4802362a0 ffff82c4802e7ee0 0000000000000003
(XEN)    00000007ca70bc1a ffff82c48031a540 0000000000000006 000000001c01af14
(XEN)    0000000000000002 0000000000000010 0000000000000014 000000142f1b9fb2
(XEN)    ffff82c4802306b0 000000fb00000000 ffff82c480189b36 000000000000e008
(XEN)    0000000000000297 ffff82c4802e7e38 000000000000e010 ffff82c4802e7ee0
(XEN)    ffff82c48018bbf1 ffff82c4802e7ea0 ffff82c48011fd9e ffff82c48025f080
(XEN)    008b793c802e7ed8 ffff82c48011cb6f ffff82c48025f100 ffff83007ea2e260
(XEN)    0000000000000000 ffff82c4802362a0 00000000802e7f28 0000000000000000
(XEN)    0000000000000000 ffff82c4802e7ee0 0000308b0000014d 0000000000000000
(XEN)    ffff82c4802e7f28 ffff82c4802362a0 ffff82c4802e7f28 ffff82c48025fa00
(XEN)    ffff82c480236918 ffff82c4802e7f20 ffff82c48014ca00 ffff83007ea00000
(XEN)    ffff83007ea62000 0000000000000000 ffff83007ea00000 00000007b8f8dd3f
(XEN)    ffff82c48025f080 ffff82c4802e7dc8 0000000000000000 ffffffff8195b980
(XEN)    6db6db6db6db6db7 0000000000000000 ffffffff81823f08 ffffffff818fe0a8
(XEN)    0000000000000246 ffffffff8102f6bf 00000000ffffffff 0000000000000000
(XEN)    0000000000000000 ffffffff810093aa ffffffff810093aa 00000000deadbeef
(XEN)    00000000deadbeef 0000010000000000 ffffffff810093aa 000000000000e033
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c48016a2bf>] __smp_call_function_interrupt+0x66/0xac
(XEN)    [<ffff82c48016a368>] smp_call_function_interrupt+0x63/0x91
(XEN)    [<ffff82c4801460f0>] call_function_interrupt+0x30/0x40
(XEN)    [<ffff82c480189b36>] hpet_broadcast_exit+0x0/0xf2
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU0 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) *** Dumping CPU1 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    1
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010092   CONTEXT: hypervisor
(XEN) rax: 0000000000000080   rbx: 0000000000000000   rcx: ffff82c4801107e3
(XEN) rdx: ffff82c4802fa680   rsi: 0000000000000000   rdi: 0000000000000000
(XEN) rbp: ffff83007ea5fdb8   rsp: ffff83007ea5fda8   r8:  0000000000000001
(XEN) r9:  ffff83007cf48000   r10: ffff83007cefe060   r11: 0f0f0f0f0f0f0f0f
(XEN) r12: ffff82c4802362a0   r13: ffff83007ea5ff28   r14: ffff82c4802fa680
(XEN) r15: ffff82c4802fc680   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 000000007d515000   cr2: ffff88001d190f78
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea5fda8:
(XEN)    ffff82c48016a1be 0000000000000000 ffff83007ea5fdc8 ffff82c48016a2bf
(XEN)    ffff83007ea5fde8 ffff82c48016a368 00000007ce8b3280 0000000000000001
(XEN)    00007cff815a01e7 ffff82c4801460f0 ffff82c4802fc680 ffff82c4802fa680
(XEN)    ffff83007ea5ff28 ffff82c4802362a0 ffff83007ea5fea0 0000000000000001
(XEN)    0f0f0f0f0f0f0f0f ffff83007cefe060 ffff83007cf48000 0000000000000001
(XEN)    ffff82c48025f1a0 0000000000000000 ffff82c480261a40 0000000000000000
(XEN)    0000000000000001 000000fb00000000 ffff82c480123549 000000000000e008
(XEN)    0000000000000202 ffff83007ea5fea0 000000000000e010 ffff83007ea5fee0
(XEN)    ffff82c48011da10 0000000000000001 ffff83007ea5ff28 ffff82c4802362a0
(XEN)    ffff83007ea5ff28 ffff82c48025fa00 ffff82c480236918 ffff83007ea5ff20
(XEN)    ffff82c48014ca05 ffff83007cefe000 ffff83007cf48000 0000000000000001
(XEN)    ffff83007cefe000 000000078f03b490 ffff82c480261080 ffff83007ea5fdc8
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    ffff88001f88ff10 ffffffff818fe0a8 0000000000000246 ffffffff8102f6bf
(XEN)    00000000ffffffff 0000000000000000 0000000000000000 ffffffff810093aa
(XEN)    000000000000e030 00000000deadbeef 00000000deadbeef 0000010000000000
(XEN)    ffffffff810093aa 000000000000e033 0000000000000246 ffff88001f88fef8
(XEN)    000000000000e02b 5555555555555555 5555555555555555 5555555555555555
(XEN)    5555555555555555 5555555500000001 ffff83007cf48000
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c48016a2bf>] __smp_call_function_interrupt+0x66/0xac
(XEN)    [<ffff82c48016a368>] smp_call_function_interrupt+0x63/0x91
(XEN)    [<ffff82c4801460f0>] call_function_interrupt+0x30/0x40
(XEN)    [<ffff82c480123549>] rcu_pending+0xb/0x5b
(XEN)    [<ffff82c48011da10>] do_softirq+0x3e/0x8e
(XEN)    [<ffff82c48014ca05>] idle_loop+0x8e/0x93
(XEN)    
(XEN) *** Dumping CPU1 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) *** Dumping CPU2 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    2
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010092   CONTEXT: hypervisor
(XEN) rax: 0000000000000100   rbx: 0000000000000000   rcx: ffff82c4801107e3
(XEN) rdx: ffff82c4802fa680   rsi: 00000014d765c06b   rdi: 0000000000000000
(XEN) rbp: ffff83007ea47d48   rsp: ffff83007ea47d38   r8:  000000001c6fe228
(XEN) r9:  0000000000000003   r10: ffff83007cefc060   r11: 0f0f0f0f0f0f0f0f
(XEN) r12: ffff82c4802362a0   r13: ffff830076401450   r14: ffff830076401390
(XEN) r15: 0000000000a70967   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 000000007e423000   cr2: ffff88001e8ff890
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea47d38:
(XEN)    ffff830076401390 0000000000000000 ffff83007ea47d58 ffff82c48016a2bf
(XEN)    ffff83007ea47d78 ffff82c48016a368 ffff82c480155ecb 0000000000000003
(XEN)    00007cff815b8257 ffff82c4801460f0 0000000000a70967 ffff830076401390
(XEN)    ffff830076401450 ffff82c4802362a0 ffff83007ea47ee0 0000000000000003
(XEN)    0f0f0f0f0f0f0f0f ffff83007cefc060 0000000000000003 000000001c6fe228
(XEN)    0000000000000002 0000000000000010 0000000000000014 00000014d765c06b
(XEN)    ffff82c4802306b0 000000fb00000000 ffff82c480189b36 000000000000e008
(XEN)    0000000000000297 ffff83007ea47e38 000000000000e010 ffff83007ea47ee0
(XEN)    ffff82c48018bbf1 ffff83007ea47ea0 ffff82c48011fd9e ffff82c480263080
(XEN)    00a706017ea47ed8 0000000000000002 ffff82c480263100 ffff83007ea2e380
(XEN)    0000000000000002 ffff82c4802362a0 000000007ea47f28 0000000000000000
(XEN)    0000000000000000 ffff83007ea47ee0 00291c20000001a4 0000000000000002
(XEN)    ffff83007ea47f28 ffff82c4802362a0 ffff83007ea47f28 ffff82c48025fa00
(XEN)    ffff82c480236918 ffff83007ea47f20 ffff82c48014ca00 ffff83007cefc000
(XEN)    ffff83007ea4e000 0000000000000002 ffff83007cefc000 00000007acd1dd35
(XEN)    ffff82c480263080 ffff83007ea47dc8 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 ffff88001f899f10 ffffffff818fe0a8
(XEN)    0000000000000246 ffffffff8102f6bf 00000000ffffffff 0000000000000000
(XEN)    0000000000000000 ffffffff810093aa 000000000000e030 00000000deadbeef
(XEN)    00000000deadbeef 0000010000000000 ffffffff810093aa 000000000000e033
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c48016a2bf>] __smp_call_function_interrupt+0x66/0xac
(XEN)    [<ffff82c48016a368>] smp_call_function_interrupt+0x63/0x91
(XEN)    [<ffff82c4801460f0>] call_function_interrupt+0x30/0x40
(XEN)    [<ffff82c480189b36>] hpet_broadcast_exit+0x0/0xf2
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU2 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) [0: dump Dom0 registers]
(XEN) '0' pressed -> dumping Dom0's registers
(XEN) *** Dumping Dom0 vcpu#0 state: ***
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: ffffffff8195b980   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffffffff81823f08   rsp: ffffffff81823ef0   r8:  0000000000000000
(XEN) r9:  00000000ffffffff   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 6db6db6db6db6db7   r14: ffffffff8195b980
(XEN) r15: 0000000000000000   cr0: 0000000000000008   cr4: 0000000000002660
(XEN) cr3: 000000007a825000   cr2: 0000000000c65930
(XEN) ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffffffff81823ef0:
(XEN)    ffffffff81a13348 0000000000000000 ffffffff8102f030 ffffffff81823f18
(XEN)    ffffffff8102c3bc ffffffff81823f38 ffffffff81032fd5 ffffffff8195b980
(XEN)    0000000000001ac3 ffffffff81823f48 ffffffff8155440d ffffffff81823f88
(XEN)    ffffffff8191e63a ffffffff81823f88 ffffffff8195b980 0000000001aa24b4
(XEN)    0000000000000000 0000000000000000 0000000000000000 ffffffff81823fa8
(XEN)    ffffffff8191db1f 0000000000000018 ffffffff81001000 ffffffff81823ff8
(XEN)    ffffffff81922299 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000001 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 ffffffff82173000 ffffffff82174000
(XEN)    ffffffff82175000 ffffffff82176000 ffffffff82177000 ffffffff82178000
(XEN)    ffffffff82179000 ffffffff8217a000 ffffffff8217b000 ffffffff8217c000
(XEN)    ffffffff8217d000 ffffffff8217e000 ffffffff8217f000 ffffffff82180000
(XEN)    ffffffff82181000 ffffffff82182000 ffffffff82183000 ffffffff82184000
(XEN)    ffffffff82185000 ffffffff82186000 ffffffff82187000 ffffffff82188000
(XEN)    ffffffff82189000 ffffffff8218a000 ffffffff8218b000 ffffffff8218c000
(XEN)    ffffffff8218d000 ffffffff8218e000 ffffffff8218f000 ffffffff82190000
(XEN)    ffffffff82191000 ffffffff82192000 ffffffff82193000 ffffffff82194000
(XEN)    ffffffff82195000 ffffffff82196000 ffffffff82197000 ffffffff82198000
(XEN)    ffffffff82199000 ffffffff8219a000 ffffffff8219b000 ffffffff8219c000
(XEN)    ffffffff8219d000 ffffffff8219e000 ffffffff8219f000 ffffffff821a0000
(XEN) *** Dumping Dom0 vcpu#1 state: ***
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: 0000000000000000   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffff88001f88ff10   rsp: ffff88001f88fef8   r8:  0000000000000000
(XEN) r9:  00000000ffffffff   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) r15: 0000000000000000   cr0: 000000008005003b   cr4: 0000000000002660
(XEN) cr3: 000000007d515000   cr2: 00007f5f32accca6
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffff88001f88fef8:
(XEN)    ffff88001f8a5718 0000000000000000 ffffffff8102f030 ffff88001f88ff20
(XEN)    ffffffff8102c3bc ffff88001f88ff40 ffffffff81032fd5 ffffffffffffffff
(XEN)    0000000000000000 ffff88001f88ff50 ffffffff8156d115 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000
(XEN) *** Dumping Dom0 vcpu#2 state: ***
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: 0000000000000000   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffff88001f899f10   rsp: ffff88001f899ef8   r8:  0000000000000000
(XEN) r9:  00000000ffffffff   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) r15: 0000000000000000   cr0: 000000008005003b   cr4: 0000000000002660
(XEN) cr3: 000000007e423000   cr2: 00007fe47d1efca6
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffff88001f899ef8:
(XEN)    ffff88001f8ad358 0000000000000000 ffffffff8102f030 ffff88001f899f20
(XEN)    ffffffff8102c3bc ffff88001f899f40 ffffffff81032fd5 ffffffffffffffff
(XEN)    0000000000000000 ffff88001f899f50 ffffffff8156d115 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 ffff88001f881e40 ffffffff8184e0e0 0000000000000008
(XEN)    0000000000000003 ffffffffffffffff ffffffff81076e07 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000057ac6e9d ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN) *** Dumping Dom0 vcpu#3 state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    3
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: 0000000000000000   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffff88001f89bf10   rsp: ffff88001f89bef8   r8:  0000000000000000
(XEN) r9:  0000000000000000   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) r15: 0000000000000000   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 000000007ad55000   cr2: 00007f4d9639cca6
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffff88001f89bef8:
(XEN)    ffff88001f8b52a8 0000000000000000 ffffffff8102f030 ffff88001f89bf20
(XEN)    ffffffff8102c3bc ffff88001f89bf40 ffffffff81032fd5 ffffffffffffffff
(XEN)    0000000000000000 ffff88001f89bf50 ffffffff8156d115 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 ffff88001f8825d0 ffffffff8184e0e0 0000000000000000
(XEN)    0000000000000000 ffffffffffffffff ffffffff81076e07 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000057ac6e9d ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN) [H: dump heap info]
(XEN) 'H' pressed -> dumping heap info (now-0x7:EBD4C579)
(XEN) heap[node=0][zone=0] -> 0 pages
(XEN) heap[node=0][zone=1] -> 0 pages
(XEN) heap[node=0][zone=2] -> 0 pages
(XEN) heap[node=0][zone=3] -> 0 pages
(XEN) heap[node=0][zone=4] -> 0 pages
(XEN) heap[node=0][zone=5] -> 0 pages
(XEN) heap[node=0][zone=6] -> 0 pages
(XEN) heap[node=0][zone=7] -> 0 pages
(XEN) heap[node=0][zone=8] -> 0 pages
(XEN) heap[node=0][zone=9] -> 0 pages
(XEN) heap[node=0][zone=10] -> 0 pages
(XEN) heap[node=0][zone=11] -> 0 pages
(XEN) heap[node=0][zone=12] -> 0 pages
(XEN) heap[node=0][zone=13] -> 0 pages
(XEN) heap[node=0][zone=14] -> 16120 pages
(XEN) heap[node=0][zone=15] -> 32768 pages
(XEN) heap[node=0][zone=16] -> 65536 pages
(XEN) heap[node=0][zone=17] -> 131072 pages
(XEN) heap[node=0][zone=18] -> 137542 pages
(XEN) heap[node=0][zone=19] -> 0 pages
(XEN) heap[node=0][zone=20] -> 0 pages
(XEN) heap[node=0][zone=21] -> 0 pages
(XEN) heap[node=0][zone=22] -> 0 pages
(XEN) heap[node=0][zone=23] -> 0 pages
(XEN) heap[node=0][zone=24] -> 0 pages
(XEN) heap[node=0][zone=25] -> 0 pages
(XEN) heap[node=0][zone=26] -> 0 pages
(XEN) heap[node=0][zone=27] -> 0 pages
(XEN) heap[node=0][zone=28] -> 0 pages
(XEN) heap[node=0][zone=29] -> 0 pages
(XEN) heap[node=0][zone=30] -> 0 pages
(XEN) heap[node=0][zone=31] -> 0 pages
(XEN) heap[node=0][zone=32] -> 0 pages
(XEN) heap[node=0][zone=33] -> 0 pages
(XEN) heap[node=0][zone=34] -> 0 pages
(XEN) heap[node=0][zone=35] -> 0 pages
(XEN) heap[node=0][zone=36] -> 0 pages
(XEN) heap[node=0][zone=37] -> 0 pages
(XEN) heap[node=0][zone=38] -> 0 pages
(XEN) heap[node=0][zone=39] -> 0 pages
(XEN) [Q: dump PCI devices]
(XEN) ==== PCI devices ====
(XEN) 01:00.1 - dom 0   - MSIs < >
(XEN) 01:00.0 - dom 0   - MSIs < >
(XEN) 00:1f.5 - dom 0   - MSIs < >
(XEN) 00:1f.3 - dom 0   - MSIs < >
(XEN) 00:1f.2 - dom 0   - MSIs < >
(XEN) 00:1f.0 - dom 0   - MSIs < >
(XEN) 00:1e.0 - dom 0   - MSIs < >
(XEN) 00:19.0 - dom 0   - MSIs < >
(XEN) 00:03.0 - dom 0   - MSIs < >
(XEN) 00:01.0 - dom 0   - MSIs < >
(XEN) 00:00.0 - dom 0   - MSIs < >
(XEN) [a: dump timer queues]
(XEN) Dumping timer queues: NOW=0x00000007EBD62F38
(XEN) CPU[00]   1 : ffff83007ea00060 ex=0x00000007F49135B9 ffff83007ea00000 ffff
82c48011c429
(XEN)   2 : ffff82c4803167c0 ex=0x00000008098E3B05 0000000000000000 ffff82c48016
de26
(XEN)   3 : ffff82c48031a540 ex=0x000000096BB66688 0000000000000000 ffff82c48019
5050
(XEN)   4 : ffff82c4803168a0 ex=0x0000002306E01047 0000000000000000 ffff82c48016
dd04
(XEN)  L0 : ffff82c4802fa5e0 ex=0x00000007EC5CA817 0000000000000000 ffff82c48011
6fdf
(XEN) 
(XEN) CPU[01]  L0 : ffff83007cefe060 ex=0x00000008EBC3E37B ffff83007cefe000 ffff
82c48011c429
(XEN) 
(XEN) CPU[02]  L0 : ffff83007cefc060 ex=0x000000087D6B63B8 ffff83007cefc000 ffff
82c48011c429
(XEN) 
(XEN) CPU[03]   1 : ffff82c4802650a0 ex=0x00000007ED9767BE 0000000000000000 ffff
82c48011b5b9
(XEN)  L0 : ffff83007ea68e68 ex=0x00000007EC589780 0000000000000003 ffff82c48011
8333
(XEN) 
(XEN) [c: dump ACPI Cx structures]
(XEN) 'c' pressed -> printing ACPI Cx structures
(XEN) ==cpu0==
(XEN) active state:             C3
(XEN) max_cstate:               C7
(XEN) states:
(XEN)     C1:   type[C1] latency[001] usage[00000023] duration[1282565]
(XEN)     C2:   type[C2] latency[001] usage[00001814] duration[401370844]
(XEN)    *C3:   type[C3] latency[057] usage[00019281] duration[27875239447]
(XEN)     C0:   usage[00021118] duration[5743620843]
(XEN) ==cpu1==
(XEN) active state:             C3
(XEN) max_cstate:               C7
(XEN) states:
(XEN)     C1:   type[C1] latency[001] usage[00000018] duration[1237866]
(XEN)     C2:   type[C2] latency[001] usage[00002861] duration[1081831629]
(XEN)    *C3:   type[C3] latency[057] usage[00023775] duration[28914023427]
(XEN)     C0:   usage[00026654] duration[4024439220]
(XEN) ==cpu2==
(XEN) active state:             C3
(XEN) max_cstate:               C7
(XEN) states:
(XEN)     C1:   type[C1] latency[001] usage[00000006] duration[210361]
(XEN)     C2:   type[C2] latency[001] usage[00001581] duration[583638423]
(XEN)    *C3:   type[C3] latency[057] usage[00020127] duration[28888263728]
(XEN)     C0:   usage[00021714] duration[4549437731]
(XEN) ==cpu3==
(XEN) active state:             C3
(XEN) max_cstate:               C7
(XEN) states:
(XEN)     C1:   type[C1] latency[001] usage[00000006] duration[263441]
(XEN)     C2:   type[C2] latency[001] usage[00001236] duration[570681189]
(XEN)    *C3:   type[C3] latency[057] usage[00017043] duration[28822847872]
(XEN)     C0:   usage[00018285] duration[4627775881]
(XEN) [e: dump evtchn info]
(XEN) 'e' pressed -> dumping event-channel info
(XEN) Domain 0 polling vCPUs: 00000000
(XEN) Event channel information for domain 0:
(XEN)     port [p/m]
(XEN)        1 [0/0]: s=5 n=0 v=0 x=0
(XEN)        2 [0/0]: s=6 n=0 x=0
(XEN)        3 [0/0]: s=6 n=0 x=0
(XEN)        4 [0/0]: s=5 n=0 v=1 x=0
(XEN)        5 [0/0]: s=6 n=0 x=0
(XEN)        6 [0/0]: s=5 n=1 v=0 x=0
(XEN)        7 [0/0]: s=6 n=1 x=0
(XEN)        8 [0/0]: s=6 n=1 x=0
(XEN)        9 [0/0]: s=5 n=1 v=1 x=0
(XEN)       10 [0/0]: s=6 n=1 x=0
(XEN)       11 [0/0]: s=5 n=2 v=0 x=0
(XEN)       12 [0/0]: s=6 n=2 x=0
(XEN)       13 [0/0]: s=6 n=2 x=0
(XEN)       14 [0/0]: s=5 n=2 v=1 x=0
(XEN)       15 [0/0]: s=6 n=2 x=0
(XEN)       16 [1/0]: s=5 n=3 v=0 x=0
(XEN)       17 [1/0]: s=6 n=3 x=0
(XEN)       18 [0/0]: s=6 n=3 x=0
(XEN)       19 [0/0]: s=5 n=3 v=1 x=0
(XEN)       20 [0/0]: s=6 n=3 x=0
(XEN)       21 [0/0]: s=3 n=0 d=0 p=33 x=0
(XEN)       22 [0/0]: s=4 n=0 p=9 x=0
(XEN)       23 [0/0]: s=5 n=0 v=9 x=0
(XEN)       24 [0/1]: s=5 n=0 v=2 x=0
(XEN)       25 [0/0]: s=4 n=0 p=14 x=0
(XEN)       26 [0/0]: s=4 n=0 p=15 x=0
(XEN)       27 [0/0]: s=4 n=0 p=22 x=0
(XEN)       28 [0/0]: s=4 n=0 p=12 x=0
(XEN)       29 [0/0]: s=4 n=0 p=1 x=0
(XEN)       30 [0/0]: s=4 n=0 p=8 x=0
(XEN)       31 [0/0]: s=4 n=0 p=17 x=0
(XEN)       32 [0/0]: s=4 n=0 p=20 x=0
(XEN)       33 [0/0]: s=3 n=0 d=0 p=21 x=0
(XEN)       34 [0/0]: s=5 n=0 v=3 x=0
(XEN) [i: dump interrupt bindings]
(XEN) Guest interrupt information:
(XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=
00000000 mapped, unbound
(XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=
00000014 in-flight=0 domain-list=0:  1(----),
(XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=
00000000 mapped, unbound
(XEN)    IRQ:   3, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=
00000000 mapped, unbound
(XEN)    IRQ:   5, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 64 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:   7, IRQ affinity:0x00000001, Vec: 72 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 80 type=IO-APIC-edge    status=
00000010 in-flight=0 domain-list=0:  8(----),
(XEN)    IRQ:   9, IRQ affinity:0x00000001, Vec: 88 type=IO-APIC-level   status=
00000010 in-flight=0 domain-list=0:  9(----),
(XEN)    IRQ:  10, IRQ affinity:0x00000001, Vec: 96 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  11, IRQ affinity:0x00000001, Vec:104 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  12, IRQ affinity:0x00000001, Vec:112 type=IO-APIC-edge    status=
00000010 in-flight=0 domain-list=0: 12(----),
(XEN)    IRQ:  13, IRQ affinity:0x00000001, Vec:120 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  14, IRQ affinity:0x00000001, Vec:136 type=IO-APIC-edge    status=
00000010 in-flight=0 domain-list=0: 14(----),
(XEN)    IRQ:  15, IRQ affinity:0x00000001, Vec:144 type=IO-APIC-edge    status=
00000010 in-flight=0 domain-list=0: 15(----),
(XEN)    IRQ:  16, IRQ affinity:0x0000000f, Vec:216 type=IO-APIC-level   status=
00000002 mapped, unbound
(XEN)    IRQ:  17, IRQ affinity:0x00000001, Vec: 33 type=IO-APIC-level   status=
00000010 in-flight=0 domain-list=0: 17(----),
(XEN)    IRQ:  18, IRQ affinity:0x0000000f, Vec: 41 type=IO-APIC-level   status=
00000002 mapped, unbound
(XEN)    IRQ:  19, IRQ affinity:0x0000000f, Vec: 49 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  20, IRQ affinity:0x00000001, Vec: 57 type=IO-APIC-level   status=
00000010 in-flight=0 domain-list=0: 20(----),
(XEN)    IRQ:  22, IRQ affinity:0x00000001, Vec: 65 type=IO-APIC-level   status=
00000010 in-flight=0 domain-list=0: 22(----),
(XEN)    IRQ:  23, IRQ affinity:0x0000000f, Vec: 73 type=IO-APIC-edge    status=
00000002 mapped, unbound
(XEN)    IRQ:  24, IRQ affinity:0x00000001, Vec:152 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  25, IRQ affinity:0x00000002, Vec:160 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  26, IRQ affinity:0x00000002, Vec:168 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  27, IRQ affinity:0x00000002, Vec:176 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  28, IRQ affinity:0x00000004, Vec:184 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  29, IRQ affinity:0x00000004, Vec:192 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  30, IRQ affinity:0x00000001, Vec:200 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN)    IRQ:  31, IRQ affinity:0x00000002, Vec:208 type=HPET-MSI        status=
00000000 mapped, unbound
(XEN) IO-APIC interrupt information:
(XEN)     IRQ  0 Vec240:
(XEN)       Apic 0x00, Pin  2: vector=240, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:255
(XEN)     IRQ  1 Vec 40:
(XEN)       Apic 0x00, Pin  1: vector=40, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  3 Vec 48:
(XEN)       Apic 0x00, Pin  3: vector=48, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  4 Vec241:
(XEN)       Apic 0x00, Pin  4: vector=241, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:255
(XEN)     IRQ  5 Vec 56:
(XEN)       Apic 0x00, Pin  5: vector=56, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  6 Vec 64:
(XEN)       Apic 0x00, Pin  6: vector=64, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  7 Vec 72:
(XEN)       Apic 0x00, Pin  7: vector=72, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  8 Vec 80:
(XEN)       Apic 0x00, Pin  8: vector=80, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ  9 Vec 88:
(XEN)       Apic 0x00, Pin  9: vector=88, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=level, mask=0, dest_id:1
(XEN)     IRQ 10 Vec 96:
(XEN)       Apic 0x00, Pin 10: vector=96, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 11 Vec104:
(XEN)       Apic 0x00, Pin 11: vector=104, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 12 Vec112:
(XEN)       Apic 0x00, Pin 12: vector=112, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 13 Vec120:
(XEN)       Apic 0x00, Pin 13: vector=120, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 14 Vec136:
(XEN)       Apic 0x00, Pin 14: vector=136, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 15 Vec144:
(XEN)       Apic 0x00, Pin 15: vector=144, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:1
(XEN)     IRQ 16 Vec216:
(XEN)       Apic 0x00, Pin 16: vector=216, delivery_mode=1, dest_mode=logical, d
elivery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:15
(XEN)     IRQ 17 Vec 33:
(XEN)       Apic 0x00, Pin 17: vector=33, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=1, irr=0, trigger=level, mask=0, dest_id:1
(XEN)     IRQ 18 Vec 41:
(XEN)       Apic 0x00, Pin 18: vector=41, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=1, irr=0, trigger=level, mask=1, dest_id:15
(XEN)     IRQ 19 Vec 49:
(XEN)       Apic 0x00, Pin 19: vector=49, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:15
(XEN)     IRQ 20 Vec 57:
(XEN)       Apic 0x00, Pin 20: vector=57, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=1, irr=0, trigger=level, mask=0, dest_id:1
(XEN)     IRQ 22 Vec 65:
(XEN)       Apic 0x00, Pin 22: vector=65, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=1, irr=0, trigger=level, mask=0, dest_id:1
(XEN)     IRQ 23 Vec 73:
(XEN)       Apic 0x00, Pin 23: vector=73, delivery_mode=1, dest_mode=logical, de
livery_status=0, polarity=0, irr=0, trigger=edge, mask=0, dest_id:15
(XEN) [m: memory info]
(XEN) Physical memory information:
(XEN)     Xen heap: 0kB free
(XEN)     heap[14]: 64480kB free
(XEN)     heap[15]: 131072kB free
(XEN)     heap[16]: 262144kB free
(XEN)     heap[17]: 524288kB free
(XEN)     heap[18]: 550168kB free
(XEN)     Dom heap: 1532152kB free
(XEN) [n: NMI statistics]
(XEN) CPU       NMI
(XEN)   0         0
(XEN)   1         0
(XEN)   2         0
(XEN)   3         0
(XEN)   4         0
(XEN)   5         0
(XEN)   6         0
(XEN)   7         0
(XEN)   8         0
(XEN)   9         0
(XEN)  10         0
(XEN)  11         0
(XEN)  12         0
(XEN)  13         0
(XEN)  14         0
(XEN)  15         0
(XEN)  16         0
(XEN)  17         0
(XEN)  18         0
(XEN)  19         0
(XEN)  20         0
(XEN)  21         0
(XEN)  22         0
(XEN)  23         0
(XEN)  24         0
(XEN)  25         0
(XEN)  26         0
(XEN)  27         0
(XEN)  28         0
(XEN)  29         0
(XEN)  30         0
(XEN)  31         0
(XEN)  32         0
(XEN)  33         0
(XEN)  34         0
(XEN)  35         0
(XEN)  36         0
(XEN)  37         0
(XEN)  38         0
(XEN)  39         0
(XEN)  40         0
(XEN)  41         0
(XEN)  42         0
(XEN)  43         0
(XEN)  44         0
(XEN)  45         0
(XEN)  46         0
(XEN)  47         0
(XEN)  48         0
(XEN)  49         0
(XEN)  50         0
(XEN)  51         0
(XEN)  52         0
(XEN)  53         0
(XEN)  54         0
(XEN)  55         0
(XEN)  56         0
(XEN)  57         0
(XEN)  58         0
(XEN)  59         0
(XEN)  60         0
(XEN)  61         0
(XEN)  62         0
(XEN)  63         0
(XEN) dom0 vcpu0: NMI neither pending nor masked
(XEN) [q: dump domain (and guest debug) info]
(XEN) 'q' pressed -> dumping domain info (now=0x8:109650F4)
(XEN) General information for domain 0:
(XEN)     refcnt=3 dying=0 nr_pages=130112 xenheap_pages=6 dirty_cpus={0,3} max_
pages=4294967295
(XEN)     handle=00000000-0000-0000-0000-000000000000 vm_assist=0000000d
(XEN) Rangesets belonging to domain 0:
(XEN)     Interrupts { 0-279 }
(XEN)     I/O Memory { 0-febff, fec01-fedff, fee01-ffffffffffffffff }
(XEN)     I/O Ports  { 0-1f, 22-3f, 44-60, 62-9f, a2-3f7, 400-807, 80c-cfb, d00-
ffff }
(XEN) Memory pages belonging to domain 0:
(XEN)     DomPage list too long to display
(XEN)     XenPage 000000000007ea0d: caf=c000000000000002, taf=e800000000000002
(XEN)     XenPage 000000000007ea0c: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea0b: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea0a: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea06: caf=c000000000000002, taf=e800000000000002
(XEN)     XenPage 0000000000077676: caf=c000000000000002, taf=e800000000000002
(XEN) VCPU information and callbacks for domain 0:
(XEN)     VCPU0: CPU0 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={0} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 4, stat 0/0/0)
(XEN)     VCPU1: CPU1 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 9, stat 0/0/0)
(XEN)     VCPU2: CPU2 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 
dirty_cpus={} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 14, stat 0/0/0)
(XEN)     VCPU3: CPU3 [has=T] flags=0 poll=0 upcall_pend = 01, upcall_mask = 00 
dirty_cpus={3} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 19, stat 0/0/-1)
(XEN) [r: dump run queues]
(XEN) Scheduler: SMP Credit Scheduler (credit)
(XEN) info:
(XEN)   ncpus              = 4
(XEN)   master             = 0
(XEN)   credit             = 1200
(XEN)   credit balance     = 59
(XEN)   weight             = 256
(XEN)   runq_sort          = 444
(XEN)   default-weight     = 256
(XEN)   msecs per tick     = 10ms
(XEN)   credits per msec   = 10
(XEN)   ticks per tslice   = 3
(XEN)   ticks per acct     = 3
(XEN)   migration delay    = 0us
(XEN) idlers: 00000000,00000007
(XEN) active vcpus:
(XEN)     1: [0.2] pri=-1 flags=0 cpu=2 credit=-15 [w=256]
(XEN)     2: [0.1] pri=-1 flags=0 cpu=1 credit=290 [w=256]
(XEN) sched_smt_power_savings: disabled
(XEN) NOW=0x000000081AABA2BB
(XEN) CPU[00]  sort=443, sibling=00000000,00000001, core=00000000,0000000f
(XEN)   run: [32767.0] pri=-64 flags=0 cpu=0
(XEN) CPU[01]  sort=444, sibling=00000000,00000002, core=00000000,0000000f
(XEN)   run: [32767.1] pri=-64 flags=0 cpu=1
(XEN) CPU[02]  sort=445, sibling=00000000,00000004, core=00000000,0000000f
(XEN)   run: [32767.2] pri=-64 flags=0 cpu=2
(XEN) CPU[03]  sort=424, sibling=00000000,00000008, core=00000000,0000000f
(XEN)   run: [0.3] pri=0 flags=0 cpu=3 credit=-417 [w=256]
(XEN)     1: [32767.3] pri=-64 flags=0 cpu=3
(XEN) [s: dump softtsc stats]
(XEN) TSC marked as constant but not reliable, warp = 28105 (count=1)
(XEN) All domains have native TSC
(XEN) [t: display multi-cpu clock info]
(XEN) Synced stime skew: max=13294ns avg=13294ns samples=1 current=13294ns
(XEN) Synced cycles skew: max=29788 avg=29788 samples=1 current=29788
(XEN) [u: dump numa info]
(XEN) 'u' pressed -> dumping numa info (now-0x8:23F5E2B0)
(XEN) idx0 -> NODE0 start->0 size->519792
(XEN) phys_to_nid(0000000000001000) -> 0 should be 0
(XEN) CPU0 -> NODE0
(XEN) CPU1 -> NODE0
(XEN) CPU2 -> NODE0
(XEN) CPU3 -> NODE0
(XEN) Memory location of each domain:
(XEN) Domain 0 (total: 130112):
(XEN)     Node 0: 130112
(XEN) [v: dump Intel's VMCS]
(XEN) *********** VMCS Areas **************
(XEN) **************************************
(XEN) [z: print ioapic info]
(XEN) number of MP IRQ sources: 15.
(XEN) number of IO-APIC #4 registers: 24.
(XEN) testing the IO APIC.......................
(XEN) IO APIC #4......
(XEN) .... register #00: 04000000
(XEN) .......    : physical APIC id: 04
(XEN) .......    : Delivery Type: 0
(XEN) .......    : LTS          : 0
(XEN) .... register #01: 00170020
(XEN) .......     : max redirection entries: 0017
(XEN) .......     : PRQ implemented: 0
(XEN) .......     : IO APIC version: 0020
(XEN) .... IRQ redirection table:
(XEN)  NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   
(XEN)  00 000 00  1    0    0   0   0    0    0    00
(XEN)  01 001 01  0    0    0   0   0    1    1    28
(XEN)  02 0FF 0F  0    0    0   0   0    1    1    F0
(XEN)  03 001 01  0    0    0   0   0    1    1    30
(XEN)  04 0FF 0F  0    0    0   0   0    1    1    F1
(XEN)  05 001 01  0    0    0   0   0    1    1    38
(XEN)  06 001 01  0    0    0   0   0    1    1    40
(XEN)  07 001 01  0    0    0   0   0    1    1    48
(XEN)  08 001 01  0    0    0   0   0    1    1    50
(XEN)  09 001 01  0    1    0   0   0    1    1    58
(XEN)  0a 001 01  0    0    0   0   0    1    1    60
(XEN)  0b 001 01  0    0    0   0   0    1    1    68
(XEN)  0c 001 01  0    0    0   0   0    1    1    70
(XEN)  0d 001 01  0    0    0   0   0    1    1    78
(XEN)  0e 001 01  0    0    0   0   0    1    1    88
(XEN)  0f 001 01  0    0    0   0   0    1    1    90
(XEN)  10 00F 0F  1    1    0   1   0    1    1    D8
(XEN)  11 001 01  0    1    0   1   0    1    1    21
(XEN)  12 00F 0F  1    1    0   1   0    1    1    29
(XEN)  13 00F 0F  0    0    0   0   0    1    1    31
(XEN)  14 001 01  0    1    0   1   0    1    1    39
(XEN)  15 010 00  1    0    0   0   0    0    2    20
(XEN)  16 001 01  0    1    0   1   0    1    1    41
(XEN)  17 00F 0F  0    0    0   0   0    1    1    49
(XEN) Using vector-based indexing
(XEN) IRQ to pin mappings:
(XEN) IRQ240 -> 0:2
(XEN) IRQ40 -> 0:1
(XEN) IRQ48 -> 0:3
(XEN) IRQ241 -> 0:4
(XEN) IRQ56 -> 0:5
(XEN) IRQ64 -> 0:6
(XEN) IRQ72 -> 0:7
(XEN) IRQ80 -> 0:8
(XEN) IRQ88 -> 0:9
(XEN) IRQ96 -> 0:10
(XEN) IRQ104 -> 0:11
(XEN) IRQ112 -> 0:12
(XEN) IRQ120 -> 0:13
(XEN) IRQ136 -> 0:14
(XEN) IRQ144 -> 0:15
(XEN) IRQ216 -> 0:16
(XEN) IRQ33 -> 0:17
(XEN) IRQ41 -> 0:18
(XEN) IRQ49 -> 0:19
(XEN) IRQ57 -> 0:20
(XEN) IRQ65 -> 0:22
(XEN) IRQ73 -> 0:23
(XEN) .................................... done.






xentest:~# xm info
host                   : xentest
release                : 2.6.31.6
version                : #1 SMP Fri Nov 20 02:18:08 CET 2009
machine                : x86_64
nr_cpus                : 4
nr_nodes               : 1
cores_per_socket       : 4
threads_per_core       : 1
cpu_mhz                : 2666
hw_caps                : bfebfbff:20100800:00000000:00000940:0408e3fd:00000000:00000001:00000000
virt_caps              : hvm
total_memory           : 2000
free_memory            : 1496
node_to_cpu            : node0:0-3
node_to_memory         : node0:1496
node_to_dma32_mem      : node0:1496
xen_major              : 3
xen_minor              : 5
xen_extra              : -unstable
xen_caps               : xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 hvm-3.0-x86_32p hvm-3.0-x86_64
xen_scheduler          : credit
xen_pagesize           : 4096
platform_params        : virt_start=0xffff800000000000
xen_changeset          : Sat Nov 14 10:32:59 2009 +0000 20453:bec27eb6f72c
xen_commandline        : loglvl=all loglvl_guest=all dom0_mem=512M com1=115200,8n1 console=com1
cc_compiler            : gcc version 4.3.2 (Debian 4.3.2-1.1)
cc_compile_by          : root
cc_compile_domain      :
cc_compile_date        : Thu Nov 19 08:37:49 CET 2009
xend_config_format     : 4



00:00.0 Host bridge [0600]: Intel Corporation 4 Series Chipset DRAM Controller [8086:2e10] (rev 03)
        Subsystem: ASUSTeK Computer Inc. Device [1043:82d3]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: [e0] Vendor Specific Information <?>

00:01.0 PCI bridge [0604]: Intel Corporation 4 Series Chipset PCI Express Root Port [8086:2e11] (rev 03) (prog-if 00 [Normal decode])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
        I/O behind bridge: 0000e000-0000efff
        Memory behind bridge: feb00000-febfffff
        Prefetchable memory behind bridge: 00000000d0000000-00000000dfffffff
        Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA+ MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: [88] Subsystem: ASUSTeK Computer Inc. Device [1043:82d3]
        Capabilities: [80] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [90] Message Signalled Interrupts: Mask- 64bit- Queue=0/0 Enable-
                Address: 00000000  Data: 0000
        Capabilities: [a0] Express (v2) Root Port (Slot+), MSI 00
                DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
                        ExtTag- RBE+ FLReset-
                DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                        RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
                        MaxPayload 128 bytes, MaxReadReq 128 bytes
                DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
                LnkCap: Port #2, Speed 5GT/s, Width x16, ASPM L0s, Latency L0 <256ns, L1 <4us
                        ClockPM- Suprise- LLActRep- BwNot+
                LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
                        ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
                LnkSta: Speed 2.5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
                SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surpise-
                        Slot #  0, PowerLimit 75.000000; Interlock- NoCompl-
                SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
                        Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
                SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
                        Changed: MRL- PresDet+ LinkState-
                RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
                RootCap: CRSVisible-
                RootSta: PME ReqID 0000, PMEStatus- PMEPending-
        Capabilities: [100] Virtual Channel <?>
        Capabilities: [140] Root Complex Link <?>
        Kernel driver in use: pcieport-driver

00:03.0 Communication controller [0780]: Intel Corporation 4 Series Chipset HECI Controller [8086:2e14] (rev 03)
        Subsystem: ASUSTeK Computer Inc. Device [1043:82d3]
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at feaff000 (64-bit, non-prefetchable) [size=16]
        Capabilities: [50] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [8c] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
                Address: 0000000000000000  Data: 0000

00:19.0 Ethernet controller [0200]: Intel Corporation 82567LM-3 Gigabit Network Connection [8086:10de] (rev 02)
        Subsystem: Intel Corporation Device [8086:0000]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 20
        Region 0: Memory at feac0000 (32-bit, non-prefetchable) [size=128K]
        Region 1: Memory at feafe000 (32-bit, non-prefetchable) [size=4K]
        Region 2: I/O ports at dc00 [size=32]
        Capabilities: [c8] Power Management version 2
                Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 PME-Enable- DSel=0 DScale=1 PME-
        Capabilities: [d0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
                Address: 0000000000000000  Data: 0000
        Capabilities: [e0] Vendor Specific Information <?>
        Kernel driver in use: e1000e

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev a2) (prog-if 01 [Subtractive decode])
        Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Bus: primary=00, secondary=02, subordinate=02, sec-latency=32
        I/O behind bridge: 0000f000-00000fff
        Memory behind bridge: fff00000-000fffff
        Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
        Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
        BridgeCtl: Parity- SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
                PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
        Capabilities: [50] Subsystem: ASUSTeK Computer Inc. Device [1043:82d4]

00:1f.0 ISA bridge [0601]: Intel Corporation ICH10 LPC Interface Controller [8086:3a14] (rev 02)
        Subsystem: ASUSTeK Computer Inc. Device [1043:82d4]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Capabilities: [e0] Vendor Specific Information <?>

00:1f.2 IDE interface [0101]: Intel Corporation ICH10 4 port SATA IDE Controller [8086:3a00] (rev 02) (prog-if 8a [Master SecP PriP])
        Subsystem: ASUSTeK Computer Inc. Device [1043:82d4]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 22
        Region 0: I/O ports at 01f0 [size=8]
        Region 1: I/O ports at 03f4 [size=1]
        Region 2: I/O ports at 0170 [size=8]
        Region 3: I/O ports at 0374 [size=1]
        Region 4: I/O ports at ff90 [size=16]
        Region 5: I/O ports at ffa0 [size=16]
        Capabilities: [70] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [b0] Vendor Specific Information <?>
        Kernel driver in use: ata_piix

00:1f.3 SMBus [0c05]: Intel Corporation ICH10 SMBus Controller [8086:3a60] (rev 02)
        Subsystem: ASUSTeK Computer Inc. Device [1043:82d4]
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin C routed to IRQ 18
        Region 0: Memory at feafd000 (64-bit, non-prefetchable) [size=256]
        Region 4: I/O ports at 0400 [size=32]

00:1f.5 IDE interface [0101]: Intel Corporation ICH10 2 port SATA IDE Controller [8086:3a06] (rev 02) (prog-if 85 [Master SecO PriO])
        Subsystem: ASUSTeK Computer Inc. Device [1043:82d4]
        Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin B routed to IRQ 22
        Region 0: I/O ports at d880 [size=8]
        Region 1: I/O ports at d800 [size=4]
        Region 2: I/O ports at d480 [size=8]
        Region 3: I/O ports at d400 [size=4]
        Region 4: I/O ports at d080 [size=16]
        Region 5: I/O ports at d000 [size=16]
        Capabilities: [70] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [b0] Vendor Specific Information <?>
        Kernel driver in use: ata_piix

01:00.0 VGA compatible controller [0300]: ATI Technologies Inc RV770 [Radeon HD 4850] [1002:9442] (prog-if 00 [VGA controller])
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin A routed to IRQ 10
        Region 0: Memory at d0000000 (64-bit, prefetchable) [size=256M]
        Region 2: Memory at febe0000 (64-bit, non-prefetchable) [size=64K]
        Region 4: I/O ports at e000 [size=256]
        Expansion ROM at febc0000 [disabled] [size=128K]
        Capabilities: [50] Power Management version 3
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [58] Express (v2) Legacy Endpoint, MSI 00
                DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
                        ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
                DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                        RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                        MaxPayload 128 bytes, MaxReadReq 128 bytes
                DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
                LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency L0 <64ns, L1 <1us
                        ClockPM- Suprise- LLActRep- BwNot-
                LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
                        ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
                LnkSta: Speed 2.5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
        Capabilities: [a0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
                Address: 0000000000000000  Data: 0000
        Capabilities: [100] Vendor Specific Information <?>

01:00.1 Audio device [0403]: ATI Technologies Inc HD48x0 audio [1002:aa30]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 32 bytes
        Interrupt: pin B routed to IRQ 17
        Region 0: Memory at febfc000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: [50] Power Management version 3
                Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [58] Express (v2) Legacy Endpoint, MSI 00
                DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
                        ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
                DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
                        RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
                        MaxPayload 128 bytes, MaxReadReq 128 bytes
                DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
                LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency L0 <64ns, L1 <1us
                        ClockPM- Suprise- LLActRep- BwNot-
                LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk-
                        ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
                LnkSta: Speed 2.5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
        Capabilities: [a0] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
                Address: 0000000000000000  Data: 0000
        Capabilities: [100] Vendor Specific Information <?>
        Kernel driver in use: HDA Intel

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 11:49               ` Sander Eikelenboom
@ 2009-11-20 12:33                 ` Sander Eikelenboom
  0 siblings, 0 replies; 24+ messages in thread
From: Sander Eikelenboom @ 2009-11-20 12:33 UTC (permalink / raw)
  To: Xen Developers List; +Cc: Jeremy Fitzhardinge, Konrad Rzeszutek Wilk

Ok i have finally found out how to get both hypervisor and dom0 console output to the serial console:

Here it is for booting with "ACPI APIC SUPPORT" disabled in the bios, this allways triggers the sata problems.

BTW, sometimes also my network card doesn't seems to be enabled, it seems every boot, the assigned IRQ's are different, and perhaps sometimes some others shared.

--
Sander


 __  __            _____  ____                     _        _     _
 \ \/ /___ _ __   |___ / | ___|    _   _ _ __  ___| |_ __ _| |__ | | ___ 
  \  // _ \ '_ \    |_ \ |___ \ __| | | | '_ \/ __| __/ _` | '_ \| |/ _ \
  /  \  __/ | | |  ___) | ___) |__| |_| | | | \__ \ || (_| | |_) | |  __/
 /_/\_\___|_| |_| |____(_)____/    \__,_|_| |_|___/\__\__,_|_.__/|_|\___|
                                                                         
(XEN) Xen version 3.5-unstable (root@) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) Thu Nov 19 08:37:49 CET 2009
(XEN) Latest ChangeSet: Sat Nov 14 10:32:59 2009 +0000 20453:bec27eb6f72c
(XEN) Command line: loglvl=all loglvl_guest=all dom0_mem=512M com1=115200,8n1 console=com1
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN)  EDID info not retrieved because of reasons unknown
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 1 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009fc00 (usable)
(XEN)  000000000009fc00 - 00000000000a0000 (reserved)
(XEN)  00000000000e4000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 000000007ee70000 (usable)
(XEN)  000000007ee70000 - 000000007ee7e000 (ACPI data)
(XEN)  000000007ee7e000 - 000000007eed0000 (ACPI NVS)
(XEN)  000000007eed0000 - 000000007ef00000 (reserved)
(XEN)  00000000fed00000 - 00000000fed01100 (reserved)
(XEN)  00000000fed02000 - 00000000fed14c00 (reserved)
(XEN)  00000000fed20000 - 00000000fed40000 (reserved)
(XEN)  00000000fee00000 - 00000000fee01000 (reserved)
(XEN)  00000000ffe00000 - 0000000100000000 (reserved)
(XEN) System RAM: 2000MB (2048816kB)
(XEN) ACPI: RSDP 000FB080, 0024 (r2 ACPIAM)
(XEN) ACPI: XSDT 7EE70100, 005C (r1 A_M_I_ OEMXSDT   5000927 MSFT       97)
(XEN) ACPI: FACP 7EE70290, 00F4 (r3 A_M_I_ OEMFACP   5000927 MSFT       97)
(XEN) ACPI: DSDT 7EE70440, 841F (r1  A1065 A1065000        0 INTL 20060113)
(XEN) ACPI: FACS 7EE7E000, 0040
(XEN) ACPI: MCFG 7EE70400, 003C (r1 A_M_I_ OEMMCFG   5000927 MSFT       97)
(XEN) ACPI: OEMB 7EE7E040, 0089 (r1 A_M_I_ AMI_OEM   5000927 MSFT       97)
(XEN) ACPI: HPET 7EE78860, 0038 (r1 A_M_I_ OEMHPET   5000927 MSFT       97)
(XEN) ACPI: GSCI 7EE7E0D0, 2024 (r1 A_M_I_ GMCHSCI   5000927 MSFT       97)
(XEN) ACPI: DMAR 7EE80100, 0070 (r1    AMI  OEMDMAR        1 MSFT       97)
(XEN) ACPI: SSDT 7EE810E0, 0A7C (r1 DpgPmm    CpuPm       12 INTL 20060113)
(XEN) NUMA turned off
(XEN) Faking a node at 0000000000000000-000000007ee70000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000ff780
(XEN) DMI present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x808
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[804,0], pm1x_evt[800,0]
(XEN) ACPI:                  wakeup_vec[7ee7e00c], vec_size[20]
(XEN) ACPI: HPET id: 0x8086a701 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: Not using MMCONFIG.
(XEN) Intel MultiProcessor Specification v1.4
(XEN)     Virtual Wire compatibility mode.
(XEN) OEM ID:  Product ID:  APIC at: 0xFEE00000
(XEN) Processor #0 6:7 APIC version 20
(XEN) Processor #1 6:7 APIC version 20
(XEN) Processor #2 6:7 APIC version 20
(XEN) Processor #3 6:7 APIC version 20
(XEN) I/O APIC #4 Version 32 at 0xFEC00000.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) Processors: 4
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Initializing CPU#0
(XEN) Detected 2666.433 MHz processor.
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 0
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN) HVM: VMX enabled
(XEN) xsave_init: cpu0: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) xsave_init: using cntxt_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#0.
(XEN) CPU0: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU0 has no CMCI support
(XEN) I/O virtualisation disabled
(XEN) CPU0: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 1/1 eip 8c000
(XEN) Initializing CPU#1
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 1
(XEN) xsave_init: cpu1: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#1.
(XEN) CPU1: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU1 has no CMCI support
(XEN) CPU1: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 2/2 eip 8c000
(XEN) Initializing CPU#2
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 2
(XEN) xsave_init: cpu2: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#2.
(XEN) CPU2: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU2 has no CMCI support
(XEN) CPU2: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Booting processor 3/3 eip 8c000
(XEN) Initializing CPU#3
(XEN) CPU: L1 I cache: 32K, L1 D cache: 32K
(XEN) CPU: L2 cache: 3072K
(XEN) CPU: Physical Processor ID: 0
(XEN) CPU: Processor Core ID: 3
(XEN) xsave_init: cpu3: cntxt_max_size: 0x240 and states: 00000000:00000003
(XEN) Intel machine check reporting enabled on CPU#3.
(XEN) CPU3: Thermal monitoring enabled (TM2)
(XEN) CMCI: CPU3 has no CMCI support
(XEN) CPU3: Intel(R) Core(TM)2 Quad CPU    Q9400  @ 2.66GHz stepping 0a
(XEN) Total of 4 processors activated.
(XEN) ExtINT not setup in hardware but reported by MP table
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=0 pin2=0
(XEN) checking TSC synchronization across 4 CPUs: passed.
(XEN) Platform timer is 14.318MHz HPET
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) Brought up 4 CPUs
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) HPET: 8 timers in total, 8 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) *** LOADING DOMAIN 0 ***
(XEN) elf_parse_binary: phdr: paddr=0x1000000 memsz=0x821000
(XEN) elf_parse_binary: phdr: paddr=0x1821000 memsz=0xe57f8
(XEN) elf_parse_binary: phdr: paddr=0x1907000 memsz=0x888
(XEN) elf_parse_binary: phdr: paddr=0x1908000 memsz=0x15860
(XEN) elf_parse_binary: phdr: paddr=0x191d860 memsz=0x1a57a0
(XEN) elf_parse_binary: memory: 0x1000000 -> 0x1ac3000
(XEN) elf_xen_parse_note: GUEST_OS = "linux"
(XEN) elf_xen_parse_note: GUEST_VERSION = "2.6"
(XEN) elf_xen_parse_note: XEN_VERSION = "xen-3.0"
(XEN) elf_xen_parse_note: VIRT_BASE = 0xffffffff80000000
(XEN) elf_xen_parse_note: ENTRY = 0xffffffff8191da60
(XEN) elf_xen_parse_note: HYPERCALL_PAGE = 0xffffffff81009000
(XEN) elf_xen_parse_note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
(XEN) elf_xen_parse_note: PAE_MODE = "yes"
(XEN) elf_xen_parse_note: LOADER = "generic"
(XEN) elf_xen_parse_note: unknown xen elf note (0xd)
(XEN) elf_xen_parse_note: SUSPEND_CANCEL = 0x1
(XEN) elf_xen_parse_note: HV_START_LOW = 0xffff800000000000
(XEN) elf_xen_parse_note: PADDR_OFFSET = 0x0
(XEN) elf_xen_addr_calc_check: addresses:
(XEN)     virt_base        = 0xffffffff80000000
(XEN)     elf_paddr_offset = 0x0
(XEN)     virt_offset      = 0xffffffff80000000
(XEN)     virt_kstart      = 0xffffffff81000000
(XEN)     virt_kend        = 0xffffffff81ac3000
(XEN)     virt_entry       = 0xffffffff8191da60
(XEN)     p2m_base         = 0xffffffffffffffff
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x1ac3000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000074000000->0000000078000000 (114688 pages to be allocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81ac3000
(XEN)  Init. ramdisk: ffffffff81ac3000->ffffffff82172a00
(XEN)  Phys-Mach map: ffffffff82173000->ffffffff82273000
(XEN)  Start info:    ffffffff82273000->ffffffff822734b4
(XEN)  Page tables:   ffffffff82274000->ffffffff82289000
(XEN)  Boot stack:    ffffffff82289000->ffffffff8228a000
(XEN)  TOTAL:         ffffffff80000000->ffffffff82400000
(XEN)  ENTRY ADDRESS: ffffffff8191da60
(XEN) Dom0 has maximum 4 VCPUs
(XEN) elf_load_binary: phdr 0 at 0xffffffff81000000 -> 0xffffffff81821000
(XEN) elf_load_binary: phdr 1 at 0xffffffff81821000 -> 0xffffffff819067f8
(XEN) elf_load_binary: phdr 2 at 0xffffffff81907000 -> 0xffffffff81907888
(XEN) elf_load_binary: phdr 3 at 0xffffffff81908000 -> 0xffffffff8191d860
(XEN) elf_load_binary: phdr 4 at 0xffffffff8191d860 -> 0xffffffff81998000
(XEN) Scrubbing Free RAM: ..............done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 156kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.31.6 (root@xentest) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Fri Nov 20 02:18:08 
CET 2009
[    0.000000] Command line: root=/dev/sda1 ro earlyprintk=xen console=hvc0
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] xen_release_chunk: looking at area pfn 20000-7ee70
[    0.000000] xen_release_chunk: looking at area pfn 7ef00-fec00
[    0.000000] xen_release_chunk: looking at area pfn fec01-fed00
[    0.000000] xen_release_chunk: looking at area pfn fed15-fed20
[    0.000000] xen_release_chunk: looking at area pfn fed40-fee00
[    0.000000] xen_release_chunk: looking at area pfn fee01-ffe00
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  Xen: 000000000009fc00 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000020000000 (usable)
[    0.000000]  Xen: 000000007ee70000 - 000000007ee7e000 (ACPI data)
[    0.000000]  Xen: 000000007ee7e000 - 000000007eed0000 (ACPI NVS)
[    0.000000]  Xen: 000000007eed0000 - 000000007ef00000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  Xen: 00000000fed00000 - 00000000fed01100 (reserved)
[    0.000000]  Xen: 00000000fed02000 - 00000000fed14c00 (reserved)
[    0.000000]  Xen: 00000000fed20000 - 00000000fed40000 (reserved)
[    0.000000]  Xen: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  Xen: 00000000ffe00000 - 0000000100000000 (reserved)
[    0.000000] console [xenboot0] enabled
[    0.000000] DMI present.
[    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
[    0.000000] last_pfn = 0x20000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 0 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009fc00 (usable)
[    0.000000]  modified: 000000000009fc00 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000020000000 (usable)
[    0.000000]  modified: 000000007ee70000 - 000000007ee7e000 (ACPI data)
[    0.000000]  modified: 000000007ee7e000 - 000000007eed0000 (ACPI NVS)
[    0.000000]  modified: 000000007eed0000 - 000000007ef00000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  modified: 00000000fed00000 - 00000000fed01100 (reserved)
[    0.000000]  modified: 00000000fed02000 - 00000000fed14c00 (reserved)
[    0.000000]  modified: 00000000fed20000 - 00000000fed40000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000ffe00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000020000000
[    0.000000] RAMDISK: 01ac3000 - 02172a00
[    0.000000] ACPI: RSDP 00000000000fb080 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT 000000007ee70100 0005C (v01 A_M_I_ OEMXSDT  05000927 MSFT 00000097)
[    0.000000] ACPI: FACP 000000007ee70290 000F4 (v03 A_M_I_ OEMFACP  05000927 MSFT 00000097)
[    0.000000] ACPI: DSDT 000000007ee70440 0841F (v01  A1065 A1065000 00000000 INTL 20060113)
[    0.000000] ACPI: FACS 000000007ee7e000 00040
[    0.000000] ACPI: MCFG 000000007ee70400 0003C (v01 A_M_I_ OEMMCFG  05000927 MSFT 00000097)
[    0.000000] ACPI: OEMB 000000007ee7e040 00089 (v01 A_M_I_ AMI_OEM  05000927 MSFT 00000097)
[    0.000000] ACPI: HPET 000000007ee78860 00038 (v01 A_M_I_ OEMHPET  05000927 MSFT 00000097)
[    0.000000] ACPI: GSCI 000000007ee7e0d0 02024 (v01 A_M_I_ GMCHSCI  05000927 MSFT 00000097)
[    0.000000] ACPI:      000000007ee80100 00070 (v01    AMI  OEMDMAR 00000001 MSFT 00000097)
[    0.000000] ACPI: SSDT 000000007ee810e0 00A7C (v01 DpgPmm    CpuPm 00000012 INTL 20060113)
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0020000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0002274000 - 0002289000]   XEN PAGETABLES ==> [0002274000 - 0002289000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001aa24b4]    TEXT DATA BSS ==> [0001000000 - 0001aa24b4]
[    0.000000]   #4 [0001ac3000 - 0002172a00]          RAMDISK ==> [0001ac3000 - 0002172a00]
[    0.000000]   #5 [0002173000 - 0002274000]   XEN START INFO ==> [0002173000 - 0002274000]
[    0.000000]   #6 [0001aa3000 - 0001aa3298]              BRK ==> [0001aa3000 - 0001aa3298]
[    0.000000]   #7 [0000100000 - 00001ea000]          PGTABLE ==> [0000100000 - 00001ea000]
[    0.000000] found SMP MP-table at [ffff8800000ff780] ff780
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00020000
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: No APIC-table, disabling MPS
[    0.000000] Using ACPI for processor (LAPIC) configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 7ef00000 (gap: 7ef00000:7fd00000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Allocated 22 4k pages, static data 88160 bytes
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128930
[    0.000000] Kernel command line: root=/dev/sda1 ro earlyprintk=xen console=hvc0
[    0.000000] PID hash table entries: 2048 (order: 11, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] PCI-DMA: Using Xen software bounce buffering for IO (Xen-SWIOTLB)
[    0.000000] Placing 64MB Xen software IO TLB between ffff880002d8a000 - ffff880006d8a000
[    0.000000] Xen software IO TLB at phys 0x2d8a000 - 0x6d8a000
[    0.000000] Memory: 429188k/524288k available (5623k kernel code, 452k absent, 94124k reserved, 3618k data, 528k init
)
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:304
[    0.000000] Detected 2666.432 MHz processor.
[    0.000999] Console: colour VGA+ 80x25
[    0.000999] console handover: boot [xenboot0] -> real [hvc0]
[    0.000999] installing Xen timer for CPU 0
[    0.000999] Calibrating delay loop (skipped), value calculated using timer frequency.. 5332.86 BogoMIPS (lpj=2666432)
[    0.000999] Security Framework initialized
[    0.000999] SELinux:  Initializing.
[    0.000999] Mount-cache hash table entries: 256
[    0.000999] Initializing cgroup subsys ns
[    0.000999] Initializing cgroup subsys cpuacct
[    0.000999] Initializing cgroup subsys freezer
[    0.000999] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.000999] CPU: L2 cache: 3072K
[    0.000999] CPU: Physical Processor ID: 0
[    0.000999] CPU: Processor Core ID: 0
[    0.000999] mce: CPU supports 6 MCE banks
[    0.000999] Performance Counters: unsupported p6 CPU model 23 no PMU driver, software counters only.
[    0.000999] SMP alternatives: switching to UP code
[    0.000999] ACPI: Core revision 20090521
[    0.014007] ACPI: setting ELCR to 0200 (from 0ca8)
[    0.014523] installing Xen timer for CPU 1
[    0.014561] SMP alternatives: switching to SMP code
[    0.000008] Initializing CPU#1
[    0.000045] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.000048] CPU: L2 cache: 3072K
[    0.000051] CPU: Physical Processor ID: 0
[    0.000052] CPU: Processor Core ID: 1
[    0.000055] mce: CPU supports 6 MCE banks
[    0.015156] installing Xen timer for CPU 2
[    0.000019] Initializing CPU#2
[    0.000071] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.000074] CPU: L2 cache: 3072K
[    0.000077] CPU: Physical Processor ID: 0
[    0.000079] CPU: Processor Core ID: 2
[    0.000082] mce: CPU supports 6 MCE banks
[    0.015410] installing Xen timer for CPU 3
[    0.000008] Initializing CPU#3
[    0.000043] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.000046] CPU: L2 cache: 3072K
[    0.000049] CPU: Physical Processor ID: 0
[    0.000050] CPU: Processor Core ID: 3
[    0.000053] mce: CPU supports 6 MCE banks
[    0.015578] Brought up 4 CPUs
[    0.016123] Booting paravirtualized kernel on Xen
[    0.016123] Xen version: 3.5-unstable (preserve-AD) (dom0)
[    0.016123] Using V2 grant tables.
[    0.016123] Grant table initialized
[    0.016123] Time:  4:23:45  Date: 11/20/09
[    0.016142] NET: Registered protocol family 16
[    0.016181] xenbus_probe_init ok
[    0.017038] ACPI: bus type pci registered
[    0.017077] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.017077] PCI: Not using MMCONFIG.
[    0.017077] PCI: Using configuration type 1 for base access
[    0.030042] bio: create slab <bio-0> at 0
[    0.047020] ACPI: Interpreter enabled
[    0.047030] ACPI: (supports S0 S1 S3 S4 S5)
[    0.047076] ACPI: Using PIC for interrupt routing
[    0.047137] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.050664] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[    0.100219] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.113154] ACPI Warning: Incorrect checksum in table [OEMB] - 93, should be 8A 20090521 tbutils-246
[    0.114268] ACPI Warning: Incorrect checksum in table [    ] - 54, should be 98 20090521 tbutils-246
[    0.114474] ACPI: No dock devices found.
[    0.114664] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.114717] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.114717] pci 0000:00:01.0: PME# disabled
[    0.114717] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.114717] pci 0000:00:03.0: PME# disabled
[    0.115203] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.115212] pci 0000:00:19.0: PME# disabled
[    0.116298] pci 0000:00:1e.0: transparent bridge
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:03.0
(XEN) PCI add device 00:19.0
(XEN) PCI add device 00:1e.0
(XEN) PCI add device 00:1f.0
(XEN) PCI add device 00:1f.2
(XEN) PCI add device 00:1f.3
(XEN) PCI add device 00:1f.5
(XEN) PCI add device 01:00.0
(XEN) PCI add device 01:00.1
[    0.128405] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.128405] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.129103] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.129253] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.129397] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.129545] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.129689] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.129830] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    0.130041] xenbus_probe_backend_init bus registered ok
[    0.130041] xenbus_probe_frontend_init bus registered ok
[    0.130041] xen_balloon: Initialising balloon driver with page order 0.
[    0.130097] SCSI subsystem initialized
[    0.131028] usbcore: registered new interface driver usbfs
[    0.131037] usbcore: registered new interface driver hub
[    0.131037] usbcore: registered new device driver usb
[    0.131037] PCI: Using ACPI for IRQ routing
[    0.149040] cfg80211: Using static regulatory domain info
[    0.149040] cfg80211: Regulatory domain: US
[    0.149040]  (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    0.149040]  (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
[    0.149040]  (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[    0.149040]  (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[    0.149040]  (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[    0.149040]  (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
[    0.149041]  (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
[    0.149054] cfg80211: Calling CRDA for country: US
[    0.149091] NetLabel: Initializing
[    0.149091] NetLabel:  domain hash size = 128
[    0.149091] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.149091] NetLabel:  unlabeled traffic allowed by default
[    0.156022] pnp: PnP ACPI init
[    0.156038] ACPI: bus type pnp registered
[    0.156628] xen_allocate_pirq: returning irq 8 for gsi 8
[    0.156634] ERROR: Unable to locate IOAPIC for GSI 8
[    0.156638] xen_set_ioapic_routing: irq 8 gsi 8 ioapic -1
[    0.156807] xen_allocate_pirq: returning irq 13 for gsi 13
[    0.156813] ERROR: Unable to locate IOAPIC for GSI 13
[    0.156817] xen_set_ioapic_routing: irq 13 gsi 13 ioapic -1
[    0.157635] xen_allocate_pirq: returning irq 6 for gsi 6
[    0.157641] ERROR: Unable to locate IOAPIC for GSI 6
[    0.157645] xen_set_ioapic_routing: irq 6 gsi 6 ioapic -1
[    0.159608] xen_allocate_pirq: returning irq 4 for gsi 4
[    0.159614] ERROR: Unable to locate IOAPIC for GSI 4
[    0.159618] xen_set_ioapic_routing: irq 4 gsi 4 ioapic -1
[    0.160027] xen_allocate_pirq: returning irq 1 for gsi 1
[    0.160050] ERROR: Unable to locate IOAPIC for GSI 1
[    0.160056] xen_set_ioapic_routing: irq 1 gsi 1 ioapic -1
[    0.160255] xen_allocate_pirq: returning irq 12 for gsi 12
[    0.160267] ERROR: Unable to locate IOAPIC for GSI 12
[    0.160271] xen_set_ioapic_routing: irq 12 gsi 12 ioapic -1
[    0.161535] pnp: PnP ACPI: found 18 devices
[    0.161539] ACPI: ACPI bus type pnp unregistered
[    0.161552] system 00:01: iomem range 0xfed14000-0xfed19fff could not be reserved
[    0.161558] system 00:01: iomem range 0xfed90000-0xfed93fff has been reserved
[    0.161568] system 00:07: ioport range 0x290-0x29f has been reserved
[    0.161577] system 00:08: ioport range 0x4d0-0x4d1 has been reserved
[    0.161582] system 00:08: ioport range 0x800-0x87f has been reserved
[    0.161587] system 00:08: ioport range 0x500-0x57f has been reserved
[    0.161593] system 00:08: iomem range 0xfed08000-0xfed08fff has been reserved
[    0.161599] system 00:08: iomem range 0xfed1c000-0xfed1ffff has been reserved
[    0.161604] system 00:08: iomem range 0xfed20000-0xfed3ffff has been reserved
[    0.161610] system 00:08: iomem range 0xfed50000-0xfed8ffff has been reserved
[    0.161619] system 00:0b: iomem range 0xffc00000-0xffdfffff has been reserved
[    0.161630] system 00:0d: iomem range 0xfec00000-0xfec00fff has been reserved
[    0.161636] system 00:0d: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.161645] system 00:10: iomem range 0xe0000000-0xefffffff has been reserved
[    0.161657] system 00:11: iomem range 0x0-0x9ffff could not be reserved
[    0.161663] system 00:11: iomem range 0xc0000-0xcffff could not be reserved
[    0.161668] system 00:11: iomem range 0xe0000-0xfffff could not be reserved
[    0.161674] system 00:11: iomem range 0x100000-0x7eefffff could not be reserved
[    0.161680] system 00:11: iomem range 0xe0000000-0xffffffff could not be reserved
[    0.167429] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    0.167469] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.167475] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    0.167484] pci 0000:00:01.0:   MEM window: 0xfeb00000-0xfebfffff
[    0.167491] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.167502] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:02
[    0.167507] pci 0000:00:1e.0:   IO window: disabled
[    0.167516] pci 0000:00:1e.0:   MEM window: disabled
[    0.167524] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.167696] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
[    0.167703] xen_allocate_pirq: returning irq 10 for gsi 10
[    0.167709] ERROR: Unable to locate IOAPIC for GSI 10
[    0.167713] xen_set_ioapic_routing: irq 10 gsi 10 ioapic -1
[    0.167718] pci 0000:00:01.0: PCI INT A -> Link[LNKA] -> GSI 10 (level, low) -> IRQ 10
[    0.167784] NET: Registered protocol family 2
[    0.167857] IP route cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.168076] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.168488] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.168878] TCP: Hash tables configured (established 65536 bind 65536)
[    0.168883] TCP reno registered
[    0.168982] NET: Registered protocol family 1
[    0.169063] Trying to unpack rootfs image as initramfs...
[    0.177475] Freeing initrd memory: 6846k freed
[    0.180087] kvm: no hardware support
[    0.180099] has_svm: not amd
[    0.180102] kvm: no hardware support
[    0.182638] Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.182645] Scanning for low memory corruption every 60 seconds
[    0.183165] audit: initializing netlink socket (disabled)
[    0.183183] type=2000 audit(1258691026.556:1): initialized
[    0.190434] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.194473] VFS: Disk quotas dquot_6.5.2
[    0.194574] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.195920] msgmni has been set to 852
[    0.196715] alg: No test for stdrng (krng)
[    0.196855] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.196861] io scheduler noop registered
[    0.196865] io scheduler anticipatory registered
[    0.196868] io scheduler deadline registered
[    0.196880] io scheduler cfq registered (default)
[    0.197129] xen map irq failed -3
[    0.197553] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.197980] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.197987] ACPI: Power Button [PWRF]
[    0.198098] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.198104] ACPI: Power Button [PWRB]
[    0.198923] ACPI: SSDT 000000007ee80170 00235 (v01 DpgPmm  P001Ist 00000011 INTL 20060113)
[    0.199750] ACPI: SSDT 000000007ee80a70 004B2 (v01  PmRef  P001Cst 00003001 INTL 20060113)
[    0.200692] Marking TSC unstable due to TSC halts in idle
(XEN) no cpu_id for acpi_id 1
[    0.200714] ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
[    0.201449] processor LNXCPU:00: registered as cooling_device0
[    0.202052] ACPI: SSDT 000000007ee803b0 00235 (v01 DpgPmm  P002Ist 00000012 INTL 20060113)
[    0.202764] ACPI: SSDT 000000007ee80f30 00085 (v01  PmRef  P002Cst 00003000 INTL 20060113)
(XEN) no cpu_id for acpi_id 2
[    0.203762] ACPI: CPU2 (power states: C1[C1] C2[C2] C3[C3])
[    0.204232] processor LNXCPU:01: registered as cooling_device1
[    0.204847] ACPI: SSDT 000000007ee805f0 00235 (v01 DpgPmm  P003Ist 00000012 INTL 20060113)
[    0.205575] ACPI: SSDT 000000007ee80fc0 00085 (v01  PmRef  P003Cst 00003000 INTL 20060113)
(XEN) no cpu_id for acpi_id 3
[    0.206599] ACPI: CPU3 (power states: C1[C1] C2[C2] C3[C3])
[    0.207021] processor LNXCPU:02: registered as cooling_device2
[    0.207651] ACPI: SSDT 000000007ee80830 00235 (v01 DpgPmm  P004Ist 00000012 INTL 20060113)
[    0.208398] ACPI: SSDT 000000007ee81050 00085 (v01  PmRef  P004Cst 00003000 INTL 20060113)
(XEN) no cpu_id for acpi_id 4
[    0.209315] ACPI: CPU4 (power states: C1[C1] C2[C2] C3[C3])
[    0.209732] processor LNXCPU:03: registered as cooling_device3
[    0.213393] Event-channel device installed.
[    0.216457] registering netback
[    0.222212] hpet_acpi_add: no address or irqs in _CRS
[    0.222360] Non-volatile memory driver v1.3
[    0.222447] Linux agpgart interface v0.103
[    0.222590] [drm] Initialized drm 1.1.0 20060810
[    0.222637] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.226172] brd: module loaded
[    0.227648] loop: module loaded
[    0.227789] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    0.228470] ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 5
[    0.228478] xen_allocate_pirq: returning irq 5[    0.992338] ata1.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300
)
[    0.992358] ata1.01: SATA link down (SStatus 0 SControl 300)
[    0.995480] ata1.00: ATA-7: WDC WD800JD-60MSA1, 10.01E01, max UDMA/100
[    0.995486] ata1.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    0.998494] ata1.00: configured for UDMA/100
[    0.998615] scsi 0:0:0:0: Direct-Access     ATA      WDC WD800JD-60MS 10.0 PQ: 0 ANSI: 5
[    0.998948] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    0.999079] sd 0:0:0:0: [sda] Write Protect is off
[    0.999092] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.999174] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.590258] hda-intel: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000
[    1.590531]  sda:
[    1.612694] ALSA device list:
[    1.612699]   #0: HDA ATI HDMI at 0xfebfc000 irq 7
[    1.612743] Netfilter messages via NETLINK v0.30.
[    1.612762] nf_conntrack version 0.5.0 (4096 buckets, 16384 max)
[    1.612974] ctnetlink v0.93: registering with nfnetlink.
[    1.613454] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.613480] TCP cubic registered
[    1.613483] Initializing XFRM netlink socket
[    1.613780] NET: Registered protocol family 10
[    1.614629] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    1.614687] IPv6 over IPv4 tunneling driver
[    1.615213] NET: Registered protocol family 17
[    1.615505] RPC: Registered udp transport module.
[    1.615509] RPC: Registered tcp transport module.
[    1.615760] registered taskstats version 1
[    1.615851]   Magic number: 1:777:363
[    1.615883] msr msr2: hash matches
[   31.701034] ata1: lost interrupt (Status 0x50)
[   31.701081] sd 0:0:0:0: [sda] Unhandled error code
[   31.701087] sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_TIMEOUT
[   31.701096] end_request: I/O error, dev sda, sector 0
[   31.701103] Buffer I/O error on device sda, logical block 0
[   62.701038] ata1: lost interrupt (Status 0x50)
[   62.701077] sd 0:0:0:0: [sda] Unhandled error code
[   62.701083] sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_TIMEOUT
[   62.701091] end_request: I/O error, dev sda, sector 0
[   62.701097] Buffer I/O error on device sda, logical block 0
[   93.701027] ata1: lost interrupt (Status 0x50)
[   93.701065] sd 0:0:0:0: [sda] Unhandled error code
[   93.701071] sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_TIMEOUT
[   93.701079] end_request: I/O error, dev sda, sector 0
[   93.701085] Buffer I/O error on device sda, logical block 0
(XEN) *** Serial input -> Xen (type 'CTRL-a' three times to switch input to DOM0)
(XEN) '*' pressed -> firing all diagnostic keyhandlers
(XEN) [d: dump registers]
(XEN) 'd' pressed -> dumping registers
(XEN) 
(XEN) *** Dumping CPU1 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    1
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010292   CONTEXT: hypervisor
(XEN) rax: 0000000000000000   rbx: 0000000000000064   rcx: 0000000000000000
(XEN) rdx: 0000000000000000   rsi: 000000000000000a   rdi: 0000000000000000
(XEN) rbp: ffff83007ea5fc08   rsp: ffff83007ea5fbf8   r8:  0000000000000004
(XEN) r9:  ffff82c4801fc780   r10: 00000000fffffffc   r11: 0000000000000001
(XEN) r12: 0000000000000064   r13: ffff82c4802f5000   r14: ffff83007ea5fe38
(XEN) r15: ffff82c4802109a3   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 0000000075001000   cr2: ffff88001f808040
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea5fbf8:
(XEN)    ffff82c4802f5000 0000000000000064 ffff83007ea5fc48 ffff82c4801108b8
(XEN)    ffff83007ea5fc38 ffff82c480230a00 0000000000000064 ffff82c4802f5000
(XEN)    ffff83007ea5fe38 ffff82c4802109a3 ffff83007ea5fc88 ffff82c48010ffad
(XEN)    ffff83007ea5fc78 ffff82c480230ae0 000000000000002a ffff83007ea5fe38
(XEN)    0000000000000286 ffff83007ea5fe38 ffff83007ea5fcb8 ffff82c48011004b
(XEN)    ffff82c480169f2e ffff83007ea5fe38 ffff82c480234740 000000000000002a
(XEN)    ffff83007ea5fcc8 ffff82c480133f66 ffff83007ea5fcf8 ffff82c480134040
(XEN)    ffff83007ea5fcf8 ffff82c48022f0a0 ffff82c480133faa ffff82c48022f118
(XEN)    ffff83007ea5fd48 ffff82c4801351a4 ffff83007ea5fd18 ffff82c480134519
(XEN)    2aff83007ea5fd48 0000000000000061 ffff82c480301320 ffff82c48022f0a0
(XEN)    ffff83007ea5fe38 ffff82c4802fa680 ffff83007ea5fd78 ffff82c4801348c5
(XEN)    ffff83007cf00280 0000000000000004 ffff83007ea5fe38 0000000000000000
(XEN)    ffff83007ea5fe28 ffff82c480157356 0000000000000286 ffff83007ea5ff28
(XEN)    ffff83007ea5fde8 ffff83007ea5ff28 0000000000000004 ffff83007cf002b4
(XEN)    0000000400000001 ffff82c480301348 ffff83007ea68cd0 0000000000000000
(XEN)    ffff82c48011859d ffff83007ea5ff28 ffff82c480261100 0000000000000002
(XEN)    ffff83007ea5fe10 ffff83007ea5ff28 ffff82c4802362a0 ffff83007ea5ff28
(XEN)    ffff82c48025fa00 ffff82c480236918 00007cff815a01a7 ffff82c480150ab6
(XEN)    ffff82c480236918 ffff82c48025fa00 ffff83007ea5ff28 ffff82c4802362a0
(XEN)    ffff83007ea5fee0 ffff83007ea5ff28 0f0f0f0f0f0f0f0f ffff83007cefe060
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c4801108b8>] dump_registers+0x5d/0x145
(XEN)    [<ffff82c48010ffad>] run_all_keyhandlers+0x74/0xa5
(XEN)    [<ffff82c48011004b>] handle_keypress+0x6d/0x95
(XEN)    [<ffff82c480133f66>] __serial_rx+0x16/0x5a
(XEN)    [<ffff82c480134040>] serial_rx+0x96/0xa1
(XEN)    [<ffff82c4801351a4>] serial_rx_interrupt+0xb3/0xc9
(XEN)    [<ffff82c4801348c5>] ns16550_interrupt+0x47/0x61
(XEN)    [<ffff82c480157356>] do_IRQ+0x5df/0x690
(XEN)    [<ffff82c480150ab6>] common_interrupt+0x26/0x30
(XEN)    [<ffff82c480149d1e>] default_idle+0x2f/0x34
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU1 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) *** Dumping CPU0 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    0
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010096   CONTEXT: hypervisor
(XEN) rax: 0000000000000000   rbx: 0000000000000000   rcx: ffff82c4801107e3
(XEN) rdx: ffff82c4802fa680   rsi: ffff82c48025fa20   rdi: 0000000000000000
(XEN) rbp: ffff82c4802e7df8   rsp: ffff82c4802e7de8   r8:  0000000000000001
(XEN) r9:  0000000000000005   r10: ffff82c48031a540   r11: 0000001b7871089c
(XEN) r12: ffff82c4802362a0   r13: ffff82c4802e7f28   r14: ffff82c48025fa00
(XEN) r15: ffff82c480236918   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 0000000075001000   cr2: ffff8800022ed748
(XEN) ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff82c4802e7de8:
(XEN)    ffff82c48025f100 0000000000000000 ffff82c4802e7e08 ffff82c48016a2bf
(XEN)    ffff82c4802e7e28 ffff82c48016a368 ffff82c48025fa00 ffff82c4802e7f28
(XEN)    00007d3b7fd181a7 ffff82c4801460f0 ffff82c480236918 ffff82c48025fa00
(XEN)    ffff82c4802e7f28 ffff82c4802362a0 ffff82c4802e7ee0 ffff82c4802e7f28
(XEN)    0000001b7871089c ffff82c48031a540 0000000000000005 0000000000000001
(XEN)    0000000000000000 0000000000000001 ffff82c4802fa680 ffff82c48025fa20
(XEN)    0000000000000000 000000fb00000000 ffff82c480149d1e 000000000000e008
(XEN)    0000000000000246 ffff82c4802e7ee0 000000000000e010 ffff82c4802e7f20
(XEN)    ffff82c48014ca00 ffff83007ea00000 ffff83007ea62000 0000000000000000
(XEN)    ffff83007ea00000 0000001b5ab325a8 ffff82c48025f080 ffff82c4802e7dc8
(XEN)    0000000000000000 ffffffff8195b980 6db6db6db6db6db7 0000000000000000
(XEN)    ffffffff81823f08 ffffffff818fe0a8 0000000000000246 ffffffff8102f6bf
(XEN)    0000000000000000 0000000000000000 0000000000000000 ffffffff810093aa
(XEN)    ffffffff810093aa 00000000deadbeef 00000000deadbeef 0000010000000000
(XEN)    ffffffff810093aa 000000000000e033 0000000000000246 ffffffff81823ef0
(XEN)    000000000000e02b 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 ffff83007ea62000
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c48016a2bf>] __smp_call_function_interrupt+0x66/0xac
(XEN)    [<ffff82c48016a368>] smp_call_function_interrupt+0x63/0x91
(XEN)    [<ffff82c4801460f0>] call_function_interrupt+0x30/0x40
(XEN)    [<ffff82c480149d1e>] default_idle+0x2f/0x34
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU0 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) *** Dumping CPU2 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    2
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010096   CONTEXT: hypervisor
(XEN) rax: 0000000000000100   rbx: 0000000000000000   rcx: ffff82c4801107e3
(XEN) rdx: ffff82c4802fa680   rsi: ffff82c480263a20   rdi: 0000000000000000
(XEN) rbp: ffff83007ea47df8   rsp: ffff83007ea47de8   r8:  0000000000000001
(XEN) r9:  0000000000000001   r10: ffff83007cefc060   r11: 0f0f0f0f0f0f0f0f
(XEN) r12: ffff82c4802362a0   r13: ffff83007ea47f28   r14: ffff82c48025fa00
(XEN) r15: ffff82c480236918   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 0000000075001000   cr2: ffff88001f808080
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea47de8:
(XEN)    ffff82c480263100 0000000000000000 ffff83007ea47e08 ffff82c48016a2bf
(XEN)    ffff83007ea47e28 ffff82c48016a368 ffff82c48025fa00 ffff83007ea47f28
(XEN)    00007cff815b81a7 ffff82c4801460f0 ffff82c480236918 ffff82c48025fa00
(XEN)    ffff83007ea47f28 ffff82c4802362a0 ffff83007ea47ee0 ffff83007ea47f28
(XEN)    0f0f0f0f0f0f0f0f ffff83007cefc060 0000000000000001 0000000000000001
(XEN)    0000000000000100 0000000000000001 ffff82c4802fa680 ffff82c480263a20
(XEN)    0000000000004000 000000fb00000000 ffff82c480149d1e 000000000000e008
(XEN)    0000000000000246 ffff83007ea47ee0 000000000000e010 ffff83007ea47f20
(XEN)    ffff82c48014ca00 ffff83007cefc000 ffff83007ea4e000 0000000000000002
(XEN)    ffff83007cefc000 0000001b3cd68c04 ffff82c480263080 ffff83007ea47dc8
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    ffff88001f899f10 ffffffff818fe0a8 0000000000000246 ffffffff8102f6bf
(XEN)    0000000000000000 0000000000000000 0000000000000000 ffffffff810093aa
(XEN)    000000000000e030 00000000deadbeef 00000000deadbeef 0000010000000000
(XEN)    ffffffff810093aa 000000000000e033 0000000000000246 ffff88001f899ef8
(XEN)    000000000000e02b 5555555555555555 5555555555555555 5555555555555555
(XEN)    5555555555555555 5555555500000002 ffff83007ea4e000
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c48016a2bf>] __smp_call_function_interrupt+0x66/0xac
(XEN)    [<ffff82c48016a368>] smp_call_function_interrupt+0x63/0x91
(XEN)    [<ffff82c4801460f0>] call_function_interrupt+0x30/0x40
(XEN)    [<ffff82c480149d1e>] default_idle+0x2f/0x34
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU2 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) *** Dumping CPU3 host state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    3
(XEN) RIP:    e008:[<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN) RFLAGS: 0000000000010096   CONTEXT: hypervisor
(XEN) rax: 0000000000000180   rbx: 0000000000000000   rcx: ffff82c4801107e3
(XEN) rdx: ffff82c4802fa680   rsi: ffff82c480265a20   rdi: 0000000000000000
(XEN) rbp: ffff83007ea37df8   rsp: ffff83007ea37de8   r8:  0000000000000001
(XEN) r9:  0000000000000001   r10: ffff83007cefa060   r11: 0f0f0f0f0f0f0f0f
(XEN) r12: ffff82c4802362a0   r13: ffff83007ea37f28   r14: ffff82c48025fa00
(XEN) r15: ffff82c480236918   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 0000000075001000   cr2: 00007fa66e6ab350
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e010   cs: e008
(XEN) Xen stack trace from rsp=ffff83007ea37de8:
(XEN)    ffff82c480265100 0000000000000000 ffff83007ea37e08 ffff82c48016a2bf
(XEN)    ffff83007ea37e28 ffff82c48016a368 ffff82c48025fa00 ffff83007ea37f28
(XEN)    00007cff815c81a7 ffff82c4801460f0 ffff82c480236918 ffff82c48025fa00
(XEN)    ffff83007ea37f28 ffff82c4802362a0 ffff83007ea37ee0 ffff83007ea37f28
(XEN)    0f0f0f0f0f0f0f0f ffff83007cefa060 0000000000000001 0000000000000001
(XEN)    0000000000000180 0000000000000001 ffff82c4802fa680 ffff82c480265a20
(XEN)    0000000000006000 000000fb00000000 ffff82c480149d1e 000000000000e008
(XEN)    0000000000000246 ffff83007ea37ee0 000000000000e010 ffff83007ea37f20
(XEN)    ffff82c48014ca00 ffff83007cefa000 ffff83007ea3e000 0000000000000003
(XEN)    ffff83007cefa000 0000001b5aa429d8 ffff82c480265080 ffff83007ea37dc8
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    ffff88001f89bf10 ffffffff818fe0a8 0000000000000246 ffffffff8102f6bf
(XEN)    0000000000000000 0000000000000000 0000000000000000 ffffffff810093aa
(XEN)    0000000000000000 00000000deadbeef 00000000deadbeef 0000010000000000
(XEN)    ffffffff810093aa 000000000000e033 0000000000000246 ffff88001f89bef8
(XEN)    000000000000e02b 5555555555555555 5555555555555555 5555555555555555
(XEN)    5555555555555555 5555555500000003 ffff83007ea3e000
(XEN) Xen call trace:
(XEN)    [<ffff82c4801107ec>] __dump_execstate+0x9/0x78
(XEN)    [<ffff82c48016a2bf>] __smp_call_function_interrupt+0x66/0xac
(XEN)    [<ffff82c48016a368>] smp_call_function_interrupt+0x63/0x91
(XEN)    [<ffff82c4801460f0>] call_function_interrupt+0x30/0x40
(XEN)    [<ffff82c480149d1e>] default_idle+0x2f/0x34
(XEN)    [<ffff82c48014ca00>] idle_loop+0x89/0x93
(XEN)    
(XEN) *** Dumping CPU3 guest state: ***
(XEN) No guest context (CPU is idle).
(XEN) 
(XEN) [0: dump Dom0 registers]
(XEN) '0' pressed -> dumping Dom0's registers
(XEN) *** Dumping Dom0 vcpu#0 state: ***
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: ffffffff810093aa   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffffffff81823f08   rsp: ffffffff81823ef0   r8:  0000000000000000
(XEN) r9:  0000000000000000   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 6db6db6db6db6db7   r14: ffffffff8195b980
(XEN) r15: 0000000000000000   cr0: 0000000000000008   cr4: 0000000000002660
(XEN) cr3: 0000000075001000   cr2: 0000000000000000
(XEN) ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffffffff81823ef0:
(XEN)    ffffffff81a133c8 0000000000000000 ffffffff8102f030 ffffffff81823f18
(XEN)    ffffffff8102c3bc ffffffff81823f38 ffffffff81032fd5 ffffffff8195b980
(XEN)    0000000000001ac3 ffffffff81823f48 ffffffff8155440d ffffffff81823f88
(XEN)    ffffffff8191e63a ffffffff81823f88 ffffffff8195b980 0000000001aa24b4
(XEN)    0000000000000000 0000000000000000 0000000000000000 ffffffff81823fa8
(XEN)    ffffffff8191db1f 0000000000000018 ffffffff81001000 ffffffff81823ff8
(XEN)    ffffffff81922299 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000001 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 ffffffff82173000 ffffffff82174000
(XEN)    ffffffff82175000 ffffffff82176000 ffffffff82177000 ffffffff82178000
(XEN)    ffffffff82179000 ffffffff8217a000 ffffffff8217b000 ffffffff8217c000
(XEN)    ffffffff8217d000 ffffffff8217e000 ffffffff8217f000 ffffffff82180000
(XEN)    ffffffff82181000 ffffffff82182000 ffffffff82183000 ffffffff82184000
(XEN)    ffffffff82185000 ffffffff82186000 ffffffff82187000 ffffffff82188000
(XEN)    ffffffff82189000 ffffffff8218a000 ffffffff8218b000 ffffffff8218c000
(XEN)    ffffffff8218d000 ffffffff8218e000 ffffffff8218f000 ffffffff82190000
(XEN)    ffffffff82191000 ffffffff82192000 ffffffff82193000 ffffffff82194000
(XEN)    ffffffff82195000 ffffffff82196000 ffffffff82197000 ffffffff82198000
(XEN)    ffffffff82199000 ffffffff8219a000 ffffffff8219b000 ffffffff8219c000
(XEN)    ffffffff8219d000 ffffffff8219e000 ffffffff8219f000 ffffffff821a0000
(XEN) *** Dumping Dom0 vcpu#1 state: ***
(XEN) ----[ Xen-3.5-unstable  x86_64  debug=y  Not tainted ]----
(XEN) CPU:    1
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: 0000000000000000   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffff88001f88ff10   rsp: ffff88001f88fef8   r8:  0000000000000000
(XEN) r9:  0000000000000000   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) r15: 0000000000000000   cr0: 000000008005003b   cr4: 00000000000026f0
(XEN) cr3: 0000000075001000   cr2: 0000000000000000
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffff88001f88fef8:
(XEN)    ffff88001f8a5768 0000000000000000 ffffffff8102f030 ffff88001f88ff20
(XEN)    ffffffff8102c3bc ffff88001f88ff40 ffffffff81032fd5 ffffffffffffffff
(XEN)    0000000000000000 ffff88001f88ff50 ffffffff8156d115 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000
(XEN) *** Dumping Dom0 vcpu#2 state: ***
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: 000000000000e030   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffff88001f899f10   rsp: ffff88001f899ef8   r8:  0000000000000000
(XEN) r9:  0000000000000000   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) r15: 0000000000000000   cr0: 000000008005003b   cr4: 0000000000002660
(XEN) cr3: 0000000075001000   cr2: 0000000000000000
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffff88001f899ef8:
(XEN)    ffff88001f8ad308 0000000000000000 ffffffff8102f030 ffff88001f899f20
(XEN)    ffffffff8102c3bc ffff88001f899f40 ffffffff81032fd5 ffffffffffffffff
(XEN)    0000000000000000 ffff88001f899f50 ffffffff8156d115 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 ffff88001f881e40 ffffffff8184e0e0 0000000000000000
(XEN)    0000000000000003 ffffffffffffffff ffffffff81076e07 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000057ac6e9d ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN) *** Dumping Dom0 vcpu#3 state: ***
(XEN) RIP:    e033:[<ffffffff810093aa>]
(XEN) RFLAGS: 0000000000000246   EM: 0   CONTEXT: pv guest
(XEN) rax: 0000000000000000   rbx: ffffffff818fe0a8   rcx: ffffffff810093aa
(XEN) rdx: 0000000000000000   rsi: 00000000deadbeef   rdi: 00000000deadbeef
(XEN) rbp: ffff88001f89bf10   rsp: ffff88001f89bef8   r8:  0000000000000000
(XEN) r9:  0000000000000000   r10: ffffffff8102f6bf   r11: 0000000000000246
(XEN) r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) r15: 0000000000000000   cr0: 000000008005003b   cr4: 0000000000002660
(XEN) cr3: 0000000075001000   cr2: 00007fa66e6ab350
(XEN) ds: 002b   es: 002b   fs: 0000   gs: 0000   ss: e02b   cs: e033
(XEN) Guest stack trace from rsp=ffff88001f89bef8:
(XEN)    ffff88001f8b5c18 0000000000000000 ffffffff8102f030 ffff88001f89bf20
(XEN)    ffffffff8102c3bc ffff88001f89bf40 ffffffff81032fd5 ffffffffffffffff
(XEN)    0000000000000000 ffff88001f89bf50 ffffffff8156d115 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 ffff88001f8825d0 ffffffff8184e0e0 0000000000000000
(XEN)    0000000000000000 ffffffffffffffff ffffffff81076e07 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN)    0000000000000000 0000000000000000 0000000057ac6e9d ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN)    ffffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffff
(XEN) [H: dump heap info]
(XEN) 'H' pressed -> dumping heap info (now-0x1B:8E28A403)
(XEN) heap[node=0][zone=0] -> 0 pages
(XEN) heap[node=0][zone=1] -> 0 pages
(XEN) heap[node=0][zone=2] -> 0 pages
(XEN) heap[node=0][zone=3] -> 0 pages
(XEN) heap[node=0][zone=4] -> 0 pages
(XEN) heap[node=0][zone=5] -> 0 pages
(XEN) heap[node=0][zone=6] -> 0 pages
(XEN) heap[node=0][zone=7] -> 0 pages
(XEN) heap[node=0][zone=8] -> 0 pages
(XEN) heap[node=0][zone=9] -> 0 pages
(XEN) heap[node=0][zone=10] -> 0 pages
(XEN) heap[node=0][zone=11] -> 0 pages
(XEN) heap[node=0][zone=12] -> 0 pages
(XEN) heap[node=0][zone=13] -> 0 pages
(XEN) heap[node=0][zone=14] -> 16120 pages
(XEN) heap[node=0][zone=15] -> 32768 pages
(XEN) heap[node=0][zone=16] -> 65536 pages
(XEN) heap[node=0][zone=17] -> 131072 pages
(XEN) heap[node=0][zone=18] -> 137543 pages
(XEN) heap[node=0][zone=19] -> 0 pages
(XEN) heap[node=0][zone=20] -> 0 pages
(XEN) heap[node=0][zone=21] -> 0 pages
(XEN) heap[node=0][zone=22] -> 0 pages
(XEN) heap[node=0][zone=23] -> 0 pages
(XEN) heap[node=0][zone=24] -> 0 pages
(XEN) heap[node=0][zone=25] -> 0 pages
(XEN) heap[node=0][zone=26] -> 0 pages
(XEN) heap[node=0][zone=27] -> 0 pages
(XEN) heap[node=0][zone=28] -> 0 pages
(XEN) heap[node=0][zone=29] -> 0 pages
(XEN) heap[node=0][zone=30] -> 0 pages
(XEN) heap[node=0][zone=31] -> 0 pages
(XEN) heap[node=0][zone=32] -> 0 pages
(XEN) heap[node=0][zone=33] -> 0 pages
(XEN) heap[node=0][zone=34] -> 0 pages
(XEN) heap[node=0][zone=35] -> 0 pages
(XEN) heap[node=0][zone=36] -> 0 pages
(XEN) heap[node=0][zone=37] -> 0 pages
(XEN) heap[node=0][zone=38] -> 0 pages
(XEN) heap[node=0][zone=39] -> 0 pages
(XEN) [Q: dump PCI devices]
(XEN) ==== PCI devices ====
(XEN) 01:00.1 - dom 0   - MSIs < >
(XEN) 01:00.0 - dom 0   - MSIs < >
(XEN) 00:1f.5 - dom 0   - MSIs < >
(XEN) 00:1f.3 - dom 0   - MSIs < >
(XEN) 00:1f.2 - dom 0   - MSIs < >
(XEN) 00:1f.0 - dom 0   - MSIs < >
(XEN) 00:1e.0 - dom 0   - MSIs < >
(XEN) 00:19.0 - dom 0   - MSIs < >
(XEN) 00:03.0 - dom 0   - MSIs < >
(XEN) 00:01.0 - dom 0   - MSIs < >
(XEN) 00:00.0 - dom 0   - MSIs < >
(XEN) [a: dump timer queues]
(XEN) Dumping timer queues: NOW=0x0000001B8E2A0DB8
(XEN) CPU[00]   1 : ffff82c4802fa5e0 ex=0x0000001B8F09E10D 0000000000000000 ffff82c480116fdf
(XEN)   2 : ffff82c4803167c0 ex=0x0000001B974D6EF3 0000000000000000 ffff82c48016de26
(XEN)   3 : ffff82c48031a540 ex=0x0000001C0E65EFFB 0000000000000000 ffff82c480195050
(XEN)   4 : ffff82c4803168a0 ex=0x0000002309304DC2 0000000000000000 ffff82c48016dd04
(XEN)   5 : ffff83007ea00060 ex=0x0000001C376A319B ffff83007ea00000 ffff82c48011c429
(XEN)  L0 : ffff83007ea68798 ex=0x0000001B8E715046 0000000000000000 ffff82c480118333
(XEN) 
(XEN) CPU[01]   1 : ffff82c4802610a0 ex=0x0000001B8FEB6DFB 0000000000000000 ffff82c48011b5b9
(XEN)   2 : ffff83007cefe060 ex=0x0000001C1F0985FA ffff83007cefe000 ffff82c48011c429
(XEN)  L0 : ffff83007ea68ce8 ex=0x0000001B8EBA3F42 0000000000000001 ffff82c480118333
(XEN) 
(XEN) CPU[02]   1 : ffff83007cefc060 ex=0x0000001C3CD68510 ffff83007cefc000 ffff82c48011c429
(XEN)  L0 : ffff83007ea68da8 ex=0x0000001B8E90A2D3 0000000000000002 ffff82c480118333
(XEN) 
(XEN) CPU[03]   1 : ffff83007cefa060 ex=0x0000001C5AA42593 ffff83007cefa000 ffff82c48011c429
(XEN)  L0 : ffff83007ea68e68 ex=0x0000001B8EB00239 0000000000000003 ffff82c480118333
(XEN) 
(XEN) [c: dump ACPI Cx structures]
(XEN) 'c' pressed -> printing ACPI Cx structures
(XEN) [e: dump evtchn info]
(XEN) 'e' pressed -> dumping event-channel info
(XEN) Domain 0 polling vCPUs: 00000000
(XEN) Event channel information for domain 0:
(XEN)     port [p/m]
(XEN)        1 [0/0]: s=5 n=0 v=0 x=0
(XEN)        2 [0/0]: s=6 n=0 x=0
(XEN)        3 [0/0]: s=6 n=0 x=0
(XEN)        4 [0/0]: s=5 n=0 v=1 x=0
(XEN)        5 [0/0]: s=6 n=0 x=0
(XEN)        6 [0/0]: s=5 n=1 v=0 x=0
(XEN)        7 [1/0]: s=6 n=1 x=0
(XEN)        8 [0/0]: s=6 n=1 x=0
(XEN)        9 [0/0]: s=5 n=1 v=1 x=0
(XEN)       10 [0/0]: s=6 n=1 x=0
(XEN)       11 [0/0]: s=5 n=2 v=0 x=0
(XEN)       12 [0/0]: s=6 n=2 x=0
(XEN)       13 [0/0]: s=6 n=2 x=0
(XEN)       14 [0/0]: s=5 n=2 v=1 x=0
(XEN)       15 [0/0]: s=6 n=2 x=0
(XEN)       16 [0/0]: s=5 n=3 v=0 x=0
(XEN)       17 [0/0]: s=6 n=3 x=0
(XEN)       18 [0/0]: s=6 n=3 x=0
(XEN)       19 [0/0]: s=5 n=3 v=1 x=0
(XEN)       20 [0/0]: s=6 n=3 x=0
(XEN)       21 [0/0]: s=2 n=0 d=0 x=0
(XEN)       22 [0/0]: s=5 n=0 v=9 x=0
(XEN)       23 [0/1]: s=5 n=0 v=2 x=0
(XEN)       24 [0/0]: s=4 n=0 p=5 x=0
(XEN)       25 [0/0]: s=4 n=0 p=7 x=0
(XEN) [i: dump interrupt bindings]
(XEN) Guest interrupt information:
(XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=00000000 mapped, unbound
(XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=00000006 mapped, unbound
(XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=00000000 mapped, unbound
(XEN)    IRQ:   3, IRQ affinity:0xffffffff, Vec:227 type=XT-PIC          status=00000002 mapped, unbound
(XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=00000000 mapped, unbound
(XEN)    IRQ:   5, IRQ affinity:0xffffffff, Vec:229 type=XT-PIC          status=00000010 in-flight=0 domain-list=0:  5(-
---),
(XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=00000002 mapped, unbound
(XEN)    IRQ:   7, IRQ affinity:0xffffffff, Vec:231 type=XT-PIC          status=00000010 in-flight=0 domain-list=0:  7(-
---),
(XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=00000002 mapped, unbound
(XEN)    IRQ:   9, IRQ affinity:0x00000001, Vec: 64 type=IO-APIC-edge    status=00000002 mapped, unbound
(XEN)    IRQ:  10, IRQ affinity:0xffffffff, Vec:234 type=XT-PIC          status=00000002 mapped, unbound
(XEN)    IRQ:  11, IRQ affinity:0xffffffff, Vec:235 type=XT-PIC          status=00000002 mapped, unbound
(XEN)    IRQ:  12, IRQ affinity:0x00000001, Vec: 72 type=IO-APIC-edge    status=00000006 mapped, unbound
(XEN)    IRQ:  13, IRQ affinity:0x00000001, Vec: 80 type=IO-APIC-edge    status=00000002 mapped, unbound
(XEN)    IRQ:  14, IRQ affinity:0x00000001, Vec: 88 type=IO-APIC-edge    status=00000006 mapped, unbound
(XEN)    IRQ:  15, IRQ affinity:0x00000001, Vec: 96 type=IO-APIC-edge    status=00000002 mapped, unbound
(XEN)    IRQ:  16, IRQ affinity:0x00000001, Vec:104 type=IO-APIC-level   status=00000002 mapped, unbound
(XEN)    IRQ:  17, IRQ affinity:0x00000001, Vec:112 type=IO-APIC-level   status=00000002 mapped, unbound
(XEN)    IRQ:  18, IRQ affinity:0x00000001, Vec:120 type=IO-APIC-level   status=00000002 mapped, unbound
(XEN)    IRQ:  20, IRQ affinity:0x00000001, Vec:136 type=IO-APIC-level   status=00000002 mapped, unbound
(XEN)    IRQ:  22, IRQ affinity:0x00000001, Vec:144 type=IO-APIC-level   status=00000002 mapped, unbound
(XEN)    IRQ:  24, IRQ affinity:0x00000001, Vec:152 type=HPET-MSI        status=00000000 mapped, unbound
(XEN)    IRQ:  25, IRQ affinity:0x00000002, Vec:160 type=HPET-MSI        status=00000000 mapped, unbound
(XEN)    IRQ:  26, IRQ affinity:0x00000004, Vec:168 type=HPET-MSI        status=00000000 mapped, unbound
(XEN)    IRQ:  27, IRQ affinity:0x00000008, Vec:176 type=HPET-MSI        status=00000000 mapped,unbound
(XEN)    IRQ:  28, IRQ affinity:0xffffffff, Vec:184 type=HPET-MSI        status=00000000 mapped, unbound
(XEN)    IRQ:  29, IRQ affinity:0xffffffff, Vec:192 type=HPET-MSI        status=00000000 mapped, unbound
(XEN)    IRQ:  30, IRQ affinity:0xffffffff, Vec:200 type=HPET-MSI        status=00000000 mapped, unbound
(XEN)    IRQ:  31, IRQ affinity:0xffffffff, Vec:208 type=HPET-MSI        status=00000000 mapped, unbound
(XEN) IO-APIC interrupt information:
(XEN)     IRQ  0 Vec240:
(XEN)       Apic 0x00, Pin  2: vector=240, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, tri
gger=edge, mask=0, dest_id:255
(XEN)     IRQ  1 Vec 40:
(XEN)       Apic 0x00, Pin  1: vector=40, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=1, dest_id:1
(XEN)     IRQ  4 Vec241:
(XEN)       Apic 0x00, Pin  4: vector=241, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, tri
gger=edge, mask=0, dest_id:255
(XEN)     IRQ  6 Vec 48:
(XEN)       Apic 0x00, Pin  6: vector=48, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=0, dest_id:1
(XEN)     IRQ  8 Vec 56:
(XEN)       Apic 0x00, Pin  8: vector=56, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=0, dest_id:1
(XEN)     IRQ  9 Vec 64:
(XEN)       Apic 0x00, Pin  9: vector=64, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=0, dest_id:1
(XEN)     IRQ 12 Vec 72:
(XEN)       Apic 0x00, Pin 12: vector=72, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=0, dest_id:1
(XEN)     IRQ 13 Vec 80:
(XEN)       Apic 0x00, Pin 13: vector=80, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=0, dest_id:1
(XEN)     IRQ 14 Vec 88:
(XEN)       Apic 0x00, Pin 14: vector=88, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=1, dest_id:1
(XEN)     IRQ 15 Vec 96:
(XEN)       Apic 0x00, Pin 15: vector=96, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=0, irr=0, trig
ger=edge, mask=0, dest_id:1
(XEN)     IRQ 16 Vec104:
(XEN)       Apic 0x00, Pin 16: vector=104, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=1, irr=0, tri
gger=level, mask=1, dest_id:1
(XEN)     IRQ 17 Vec112:
(XEN)       Apic 0x00, Pin 17: vector=112, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=1, irr=0, tri
gger=level, mask=1, dest_id:1
(XEN)     IRQ 18 Vec120:
(XEN)       Apic 0x00, Pin 18: vector=120, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=1, irr=0, tri
gger=level, mask=1, dest_id:1
(XEN)     IRQ 20 Vec136:
(XEN)       Apic 0x00, Pin 20: vector=136, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=1, irr=0, tri
gger=level, mask=1, dest_id:1
(XEN)     IRQ 22 Vec144:
(XEN)       Apic 0x00, Pin 22: vector=144, delivery_mode=1, dest_mode=logical, delivery_status=0, polarity=1, irr=0, tri
gger=level, mask=1, dest_id:1
(XEN) [m: memory info]
(XEN) Physical memory information:
(XEN)     Xen heap: 0kB free
(XEN)     heap[14]: 64480kB free
(XEN)     heap[15]: 131072kB free
(XEN)     heap[16]: 262144kB free
(XEN)     heap[17]: 524288kB free
(XEN)     heap[18]: 550172kB free
(XEN)     Dom heap: 1532156kB free
(XEN) [n: NMI statistics]
(XEN) CPU       NMI
(XEN)   0         0
(XEN)   1         0
(XEN)   2         0
(XEN)   3         0
(XEN)   4         0
(XEN)   5         0
(XEN)   6         0
(XEN)   7         0
(XEN)   8         0
(XEN)   9         0
(XEN)  10         0
(XEN)  11         0
(XEN)  12         0
(XEN)  13         0
(XEN)  14         0
(XEN)  15         0
(XEN)  16         0
(XEN)  17         0
(XEN)  18         0
(XEN)  19         0
(XEN)  20         0
(XEN)  21         0
(XEN)  22         0
(XEN)  23         0
(XEN)  24         0
(XEN)  25         0
(XEN)  26         0
(XEN)  27         0
(XEN)  28         0
(XEN)  29         0
(XEN)  30         0
(XEN)  31         0
(XEN)  32         0
(XEN)  33         0
(XEN)  34         0
(XEN)  35         0
(XEN)  36         0
(XEN)  37         0
(XEN)  38         0
(XEN)  39         0
(XEN)  40         0
(XEN)  41         0
(XEN)  42         0
(XEN)  43         0
(XEN)  44         0
(XEN)  45         0
(XEN)  46         0
(XEN)  47         0
(XEN)  48         0
(XEN)  49         0
(XEN)  50         0
(XEN)  51         0
(XEN)  52         0
(XEN)  53         0
(XEN)  54         0
(XEN)  55         0
(XEN)  56         0
(XEN)  57         0
(XEN)  58         0
(XEN)  59         0
(XEN)  60         0
(XEN)  61         0
(XEN)  62         0
(XEN)  63         0
(XEN) dom0 vcpu0: NMI neither pending nor masked
(XEN) [q: dump domain (and guest debug) info]
(XEN) 'q' pressed -> dumping domain info (now=0x1B:A35FF106)
(XEN) General information for domain 0:
(XEN)     refcnt=3 dying=0 nr_pages=130112 xenheap_pages=6 dirty_cpus={1} max_pages=4294967295
(XEN)     handle=00000000-0000-0000-0000-000000000000 vm_assist=0000000d
(XEN) Rangesets belonging to domain 0:
(XEN)     Interrupts { 0-279 }
(XEN)     I/O Memory { 0-febff, fec01-fedff, fee01-ffffffffffffffff }
(XEN)     I/O Ports  { 0-1f, 22-3f, 44-60, 62-9f, a2-3f7, 400-807, 80c-cfb, d00-ffff }
(XEN) Memory pages belonging to domain 0:
(XEN)     DomPage list too long to display
(XEN)     XenPage 000000000007ea0d: caf=c000000000000002, taf=e800000000000002
(XEN)     XenPage 000000000007ea0c: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea0b: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea0a: caf=c000000000000001, taf=e800000000000001
(XEN)     XenPage 000000000007ea06: caf=c000000000000002, taf=e800000000000002
(XEN)     XenPage 0000000000077676: caf=c000000000000002, taf=e800000000000002
(XEN) VCPU information and callbacks for domain 0:
(XEN)     VCPU0: CPU0 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 dirty_cpus={} cpu_affinity={0-63}
(XEN)     No periodic timer
(XEN)     Notifying guest (virq 1, port 4, stat 0/0/0)
(XEN)     VCPU1: CPU1 [has=T] flags=0 poll=0 upcall_pend = 01, upcall_mask = 00 [  117.334075] vdirty_cpus={1} cpu 0
cpu_affinity={0-63}
[  117.334076]  (XEN)     No periodic timer
 (XEN)     Notifying guest (virq 1, port 9, stat 0/0/-1)
0: masked=0 pend(XEN)     VCPU2: CPU2 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 ing=0 event_sel dirty_cp
us={} 00000000
cpu_affinity={0-63}
[  117.335072]  (XEN)     No periodic timer
 (XEN)     Notifying guest (virq 1, port 14, stat 0/0/0)
1: masked=0 pend(XEN)     VCPU3: CPU3 [has=F] flags=1 poll=0 upcall_pend = 00, upcall_mask = 00 ing=1 event_sel dirty_cp
us={} 00000001
[  117.335072]  cpu_affinity={0-63}
 (XEN)     No periodic timer
2: masked=1 pend(XEN)     Notifying guest (virq 1, port 19, stat 0/0/0)
ing=0 event_sel (XEN) [r: dump run queues]
00000000
(XEN) Scheduler: SMP Credit Scheduler (credit)
[  117.335072]  (XEN) info:
(XEN)   ncpus              = 4
(XEN)   master             = 0
(XEN)   credit             = 1200
(XEN)   credit balance     = 103
(XEN)   weight             = 256
(XEN)   runq_sort          = 63
(XEN)   default-weight     = 256
(XEN)   msecs per tick     = 10ms
(XEN)   credits per msec   = 10
(XEN)   ticks per tslice   = 3
(XEN)   ticks per acct     = 3
(XEN)   migration delay    = 0us
 (XEN) idlers: 00000000,00000000
3: masked=1 pend(XEN) active vcpus:
ing=0 event_sel (XEN)     1: 00000000
[0.3] pri=-2 flags=0 cpu=3[  117.335072]   credit=-301 [w=256]
 (XEN)    2: [0.2] pri=-2 flags=0 cpu=2pending:
 credit=-340 [w=256][  117.335072]  
  (XEN)           3: 00000000 [0.0] pri=-1 flags=0 cpu=000000000  credit=-502 [w=256]
00000000 (XEN) sched_smt_power_savings: disabled
(XEN) NOW=0x0000001BAE72FF21
00000000 (XEN) CPU[00]  sort=65, sibling=00000000,00000001, core=00000000,0000000f
(XEN)   run: [0.0] pri=-2 flags=0 cpu=0 credit=-277 [w=256]
(XEN)     1: [32767.0] pri=-64 flags=0 cpu=0
(XEN) CPU[01] 00000000  sort=61, sibling=00000000,00000002, 00000000 core=00000000,0000000f
00000000 (XEN)  run: 00000000
[0.1] pri=0 flags=0 cpu=1 credit=-47 [w=256][  117.335072]  
  (XEN)           1: [32767.1] pri=-64 flags=0 cpu=100000000 
(XEN) CPU[02] 00000000  sort=66, sibling=00000000,00000004, 00000000 core=00000000,0000000f
00000000 (XEN)  run: 00000000 [0.2] pri=-1 flags=0 cpu=2 credit=-159 [w=256]00000000 
(XEN)     1: 00000000 [32767.2] pri=-64 flags=0 cpu=200000000

[  117.335072]  (XEN) CPU[03]    sort=67, sibling=00000000,00000008, 00000000 core=00000000,0000000f
00000000 (XEN)  run: 00000000 [0.3] pri=-2 flags=0 cpu=3 credit=-120 [w=256]00000000 
(XEN)     1: 00000000 [32767.3] pri=-64 flags=0 cpu=300000000 
00000000 (XEN) [s: dump softtsc stats]
00000000
[  117.335072]  (XEN) TSC marked as constant but not reliable, warp = 0 (count=1)
  00000000 (XEN) All domains have native TSC
00000000 (XEN) [t: display multi-cpu clock info]
00000000 (XEN) Synced stime skew: max=63298ns avg=63298ns samples=1 current=63298ns
00000000 00000000 (XEN) Synced cycles skew: max=848 avg=848 samples=1 current=848
00000000 (XEN) [u: dump numa info]
00000000 (XEN) 'u' pressed -> dumping numa info (now-0x1B:BB35B692)
00000000
[  117.335072]  (XEN) idx0 -> NODE0 start->0 size->519792
  (XEN) phys_to_nid(0000000000001000) -> 0 should be 0
00000000 (XEN) CPU0 -> NODE0
00000000 (XEN) CPU1 -> NODE0
00000000 (XEN) CPU2 -> NODE0
(XEN) CPU3 -> NODE0
00000000 (XEN) Memory location of each domain:
00000000 (XEN) Domain 0 (total: 130112):
00000000 (XEN)     Node 0: 130112
00000000 (XEN) [v: dump Intel's VMCS]
00000000
[  117.335072]  (XEN) *********** VMCS Areas **************
  (XEN) **************************************
00000000 (XEN) [z: print ioapic info]
00000000 00000000 (XEN) number of MP IRQ sources: 18.
00000000 (XEN) number of IO-APIC #4 registers: 24.
00000000 (XEN) testing the IO APIC.......................
00000000 (XEN) IO APIC #4......
00000000 (XEN) .... register #00: 04000000
00000000
[  117.335072]  (XEN) .......    : physical APIC id: 04
  00000000 (XEN) .......    : Delivery Type: 0
00000000 (XEN) .......    : LTS          : 0
00000000 (XEN) .... register #01: 00170020
00000000 00000000 (XEN) .......     : max redirection entries: 0017
00000000 (XEN) .......     : PRQ implemented: 0
00000000 (XEN) .......     : IO APIC version: 0020
00000000
(XEN) .... IRQ redirection table:
[  117.335072]  (XEN)  NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   
  00000000 (XEN)  00 000 00  00000000 1    0    0   0   0    0    0    00
00000000 00000000 (XEN)  01 001 01  00000000 1    0    0   0   0    1    1    28
00000000 00000000 (XEN)  02 0FF 0F  00000280
0    0    0   0   0    1    1    F0
[  117.335072]  (XEN)  03 000 00    1    0    0   0   0    0    0    00

[  117.335072] m(XEN)  04 0FF 0F  asks:
[  117.335072]  0    0    0   0   0    1    1    F1
  ffffffffffffffff(XEN)  05 015 05   1    0    0   0   0    1    2    90
ffffffffffffffff(XEN)  06 001 01   0    0    0   0   0    1    1    30
ffffffffffffffff(XEN)  07 000 00   ffffffffffffffff1    0    0   0   0    0    0    00
 ffffffffffffffff(XEN)  08 001 01   ffffffffffffffff0    0    0   0   0    1    1    38
 ffffffffffffffff(XEN)  09 001 01   0    0    0   0   0    1    1    40
ffffffffffffffff(XEN)  0a 000 00  
[  117.335072]  1    0    0   0   0    0    0    00
  ffffffffffffffff(XEN)  0b 000 00   ffffffffffffffff1    0    0   0   0    0    0    00
 ffffffffffffffff(XEN)  0c 001 01   0    0    0   0   0    1    1    48
ffffffffffffffff(XEN)  0d 001 01   0    0    0   0   0    1    1    50
ffffffffffffffff(XEN)  0e 001 01   1    0    0   0   0    1    1    58
ffffffffffffffff(XEN)  0f 001 01   0    0    0   0   0    1    1    60
ffffffffffffffff(XEN)  10 001 01   1    1    0   1   0    1    1    68
ffffffffffffffff(XEN)  11 001 01  
1    1    0   1   0    1    1    70
[  117.335072]  (XEN)  12 001 01    ffffffffffffffff1    1    0   1   0    1    1    78
 (XEN)  13 000 00  ffffffffffffffff1    0    0   0   0    0    0    00
 ffffffffffffffff(XEN)  14 001 01   1    1    0   1   0    1    1    88
ffffffffffffffff(XEN)  15 010 00   1    0    0   0   0    0    2    20
ffffffffffffffff(XEN)  16 001 01   1    1    0   1   0    1    1    90
ffffffffffffffff(XEN)  17 000 00   ffffffffffffffff1    0    0   0   0    0    0    00
 (XEN) Using vector-based indexing
ffffffffffffffff(XEN) IRQ to pin mappings:

(XEN) IRQ240 [  117.335072]  -> 0:2  
(XEN) IRQ40 -> 0:1ffffffffffffffff
(XEN) IRQ241  ffffffffffffffff-> 0:4
 (XEN) IRQ48 ffffffffffffffff-> 0:6
 ffffffffffffffff(XEN) IRQ56 -> 0:8 
(XEN) IRQ64 ffffffffffffffff-> 0:9 ffffffffffffffff
 (XEN) IRQ72 -> 0:12ffffffffffffffff
 (XEN) IRQ80 -> 0:13ffffffffffffffff
(XEN) IRQ88 -> 0:14

(XEN) IRQ96 [  117.335072]  -> 0:15  
(XEN) IRQ104 -> 0:16
ffffffffffffffff(XEN) IRQ112  ffffffffffffffff-> 0:17
 (XEN) IRQ120 ffffffffffffffff-> 0:18 
(XEN) IRQ136 ffffffffffffffff-> 0:20 ffffffffffffffff
 (XEN) IRQ144 ffffffffffffffff-> 0:22
(XEN) .................................... done.
 ff[  124.701046] ata1: lost interrupt (Status 0x50)
[  124.701097] sd 0:0:0:0: [sda] Unhandled error code
[  124.701102] sd 0:0:0:0: [sda] Result: hostbyte=DID_OK driverbyte=DRIVER_TIMEOUT
[  124.701111] end_request: I/O error, dev sda, sector 0
[  124.701118] Buffer I/O error on device sda, logical block 0

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-19 10:21           ` Pasi Kärkkäinen
  2009-11-20  6:56             ` Fasiha Ashraf
@ 2009-11-20 13:53             ` Fasiha Ashraf
  1 sibling, 0 replies; 24+ messages in thread
From: Fasiha Ashraf @ 2009-11-20 13:53 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: Fajar A., Xen Developers List


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

comments in-line

That sounds like you have problems with some network offloading
settings.

Have you tried for example this in the domU:
ethtool -K eth0 tx off
After doing this throughput increases between external node<-> guest, it becomes 940Mb/s on 1G card in both directions. But my domU<->domU throughput just reaches 300Mb/s. It should be in Gbits/s since loop-back is used in this case. How can i improve it to Gb/s
Does that help? If it doesn't, try playing with the other offloading
settings.. you can check them with "ethtool -k eth0".
Yes it helps also other offloading parameters.

Do you have errors in the dom0 dmesg? No




      The INTERNET now has a personality. YOURS! See your Yahoo! Homepage. http://in.yahoo.com/

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 11:25             ` Sander Eikelenboom
  2009-11-20 11:49               ` Sander Eikelenboom
@ 2009-11-20 14:50               ` Konrad Rzeszutek Wilk
  2009-11-20 15:05                 ` Sander Eikelenboom
                                   ` (2 more replies)
  1 sibling, 3 replies; 24+ messages in thread
From: Konrad Rzeszutek Wilk @ 2009-11-20 14:50 UTC (permalink / raw)
  To: Sander Eikelenboom; +Cc: Xen Developers List, Goswin von Brederlow

On Fri, Nov 20, 2009 at 12:25:16PM +0100, Sander Eikelenboom wrote:
> I occasionally have the same problem (same messages spit out by the kernel on boot.
> System keeps running, but everything is terribly slow it seems (these messages appear one by one with sometimes several seconds in between)
> In the end it can not mount the root filesystem and bails out.


This is most curious. Based on your Xen hypervisor logs:

..snip..
> (XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=
> 00000000 mapped, unbound
> (XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=
> 00000006 mapped, unbound
> (XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=
> 00000000 mapped, unbound
> (XEN)    IRQ:   3, IRQ affinity:0xffffffff, Vec:227 type=XT-PIC          status=
> 00000002 mapped, unbound
> (XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=
> 00000000 mapped, unbound
> (XEN)    IRQ:   5, IRQ affinity:0xffffffff, Vec:229 type=XT-PIC          status=
> 00000010 in-flight=0 domain-list=0:  5(----),
> (XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=
> 00000002 mapped, unbound
> (XEN)    IRQ:   7, IRQ affinity:0xffffffff, Vec:231 type=XT-PIC          status=
> 00000010 in-flight=0 domain-list=0:  7(----),
> (XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=
> 00000002 mapped, unbound
.. snip..

That are not mapped to the Dom0. Meaning that well, ..., they are not being received by
Dom0, which definilty is a problem.

<side-track>
Mr Goswin,

Can you try getting the hypervisor output? That can be done by pressing Ctrl-A three
times and one of the keys for the IRQ to domains mapping. I am just looking to see
if you have the same issue.
</side-track>

There were some patches (cs/ 20437) that changed the IRQ mapping and I wonder if
it inadvertly triggered this failure.

Can you revert back before cs 20437 and compile Xen.gz? Here is one way I know
of how to do this (there is probably a better one):

mkdir ../test
cd ../test
hg clone ../xen-unstable.hg/ -r20436
cd xen-unstable.hg
hg tip
(and it should show c/s 20436 as the latest).

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 14:50               ` Konrad Rzeszutek Wilk
@ 2009-11-20 15:05                 ` Sander Eikelenboom
  2009-11-20 22:26                 ` Sander Eikelenboom
  2009-11-21  1:26                 ` Goswin von Brederlow
  2 siblings, 0 replies; 24+ messages in thread
From: Sander Eikelenboom @ 2009-11-20 15:05 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: Xen Developers List, Goswin von Brederlow

Hello Konrad,

I will give that a go ...




Friday, November 20, 2009, 3:50:20 PM, you wrote:

> On Fri, Nov 20, 2009 at 12:25:16PM +0100, Sander Eikelenboom wrote:
>> I occasionally have the same problem (same messages spit out by the kernel on boot.
>> System keeps running, but everything is terribly slow it seems (these messages appear one by one with sometimes several seconds in between)
>> In the end it can not mount the root filesystem and bails out.


> This is most curious. Based on your Xen hypervisor logs:

> ..snip..
>> (XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=
>> 00000000 mapped, unbound
>> (XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=
>> 00000006 mapped, unbound
>> (XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=
>> 00000000 mapped, unbound
>> (XEN)    IRQ:   3, IRQ affinity:0xffffffff, Vec:227 type=XT-PIC          status=
>> 00000002 mapped, unbound
>> (XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=
>> 00000000 mapped, unbound
>> (XEN)    IRQ:   5, IRQ affinity:0xffffffff, Vec:229 type=XT-PIC          status=
>> 00000010 in-flight=0 domain-list=0:  5(----),
>> (XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=
>> 00000002 mapped, unbound
>> (XEN)    IRQ:   7, IRQ affinity:0xffffffff, Vec:231 type=XT-PIC          status=
>> 00000010 in-flight=0 domain-list=0:  7(----),
>> (XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=
>> 00000002 mapped, unbound
> .. snip..

> That are not mapped to the Dom0. Meaning that well, ..., they are not being received by
> Dom0, which definilty is a problem.

> <side-track>
> Mr Goswin,

> Can you try getting the hypervisor output? That can be done by pressing Ctrl-A three
> times and one of the keys for the IRQ to domains mapping. I am just looking to see
> if you have the same issue.
> </side-track>

> There were some patches (cs/ 20437) that changed the IRQ mapping and I wonder if
> it inadvertly triggered this failure.

> Can you revert back before cs 20437 and compile Xen.gz? Here is one way I know
> of how to do this (there is probably a better one):

> mkdir ../test
> cd ../test
> hg clone ../xen-unstable.hg/ -r20436
> cd xen-unstable.hg
> hg tip
> (and it should show c/s 20436 as the latest).




-- 
Best regards,
 Sander                            mailto:linux@eikelenboom.it

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 14:50               ` Konrad Rzeszutek Wilk
  2009-11-20 15:05                 ` Sander Eikelenboom
@ 2009-11-20 22:26                 ` Sander Eikelenboom
  2009-11-25 11:46                   ` Sander Eikelenboom
  2009-11-21  1:26                 ` Goswin von Brederlow
  2 siblings, 1 reply; 24+ messages in thread
From: Sander Eikelenboom @ 2009-11-20 22:26 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: Xen Developers List, Goswin von Brederlow

Hello Konrad,

With the bios option "ACPI APIC" on disabled, the bug comes up with
- xen-3.5 tip && 2.6.31.6
- xen-3.5 #20436 && 2.6.31.6
- xen 3.5 #20365 && 2.6.31.6


- xen 3.5 #20365 && 2.6.18.8-xen boots fine.


Anything else i could try or give additional info about ?

BTW the description of this bios option is:
"Allows you to enable or disable the ACPI support in the APIC, When enabled the ACPI APIC table pointer is included in the RSDT pointer list."

-- 
Sander




Friday, November 20, 2009, 3:50:20 PM, you wrote:

> On Fri, Nov 20, 2009 at 12:25:16PM +0100, Sander Eikelenboom wrote:
>> I occasionally have the same problem (same messages spit out by the kernel on boot.
>> System keeps running, but everything is terribly slow it seems (these messages appear one by one with sometimes several seconds in between)
>> In the end it can not mount the root filesystem and bails out.


> This is most curious. Based on your Xen hypervisor logs:

> ..snip..
>> (XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=
>> 00000000 mapped, unbound
>> (XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=
>> 00000006 mapped, unbound
>> (XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=
>> 00000000 mapped, unbound
>> (XEN)    IRQ:   3, IRQ affinity:0xffffffff, Vec:227 type=XT-PIC          status=
>> 00000002 mapped, unbound
>> (XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=
>> 00000000 mapped, unbound
>> (XEN)    IRQ:   5, IRQ affinity:0xffffffff, Vec:229 type=XT-PIC          status=
>> 00000010 in-flight=0 domain-list=0:  5(----),
>> (XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=
>> 00000002 mapped, unbound
>> (XEN)    IRQ:   7, IRQ affinity:0xffffffff, Vec:231 type=XT-PIC          status=
>> 00000010 in-flight=0 domain-list=0:  7(----),
>> (XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=
>> 00000002 mapped, unbound
> .. snip..

> That are not mapped to the Dom0. Meaning that well, ..., they are not being received by
> Dom0, which definilty is a problem.

> <side-track>
> Mr Goswin,

> Can you try getting the hypervisor output? That can be done by pressing Ctrl-A three
> times and one of the keys for the IRQ to domains mapping. I am just looking to see
> if you have the same issue.
> </side-track>

> There were some patches (cs/ 20437) that changed the IRQ mapping and I wonder if
> it inadvertly triggered this failure.

> Can you revert back before cs 20437 and compile Xen.gz? Here is one way I know
> of how to do this (there is probably a better one):

> mkdir ../test
> cd ../test
> hg clone ../xen-unstable.hg/ -r20436
> cd xen-unstable.hg
> hg tip
> (and it should show c/s 20436 as the latest).




-- 
Best regards,
 Sander                            mailto:linux@eikelenboom.it

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 14:50               ` Konrad Rzeszutek Wilk
  2009-11-20 15:05                 ` Sander Eikelenboom
  2009-11-20 22:26                 ` Sander Eikelenboom
@ 2009-11-21  1:26                 ` Goswin von Brederlow
  2009-11-23 14:48                   ` Konrad Rzeszutek Wilk
  2 siblings, 1 reply; 24+ messages in thread
From: Goswin von Brederlow @ 2009-11-21  1:26 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk
  Cc: Sander Eikelenboom, Xen Developers List, Goswin von Brederlow

Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> writes:

> Mr Goswin,
>
> Can you try getting the hypervisor output? That can be done by pressing Ctrl-A three
> times and one of the keys for the IRQ to domains mapping. I am just looking to see
> if you have the same issue.
> </side-track>

What key is that for IRQ to domain mapping?

And are you sure this works on the VGA console after the hypervisor
has given up the console to linux itself? I know I tried in the past
to get the hypervisor console back.

> There were some patches (cs/ 20437) that changed the IRQ mapping and I wonder if
> it inadvertly triggered this failure.
>
> Can you revert back before cs 20437 and compile Xen.gz? Here is one way I know
> of how to do this (there is probably a better one):
>
> mkdir ../test
> cd ../test
> hg clone ../xen-unstable.hg/ -r20436
> cd xen-unstable.hg
> hg tip
> (and it should show c/s 20436 as the latest).

MfG
        Goswin

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-21  1:26                 ` Goswin von Brederlow
@ 2009-11-23 14:48                   ` Konrad Rzeszutek Wilk
  0 siblings, 0 replies; 24+ messages in thread
From: Konrad Rzeszutek Wilk @ 2009-11-23 14:48 UTC (permalink / raw)
  To: Goswin von Brederlow; +Cc: Sander Eikelenboom, Xen Developers List

On Sat, Nov 21, 2009 at 02:26:06AM +0100, Goswin von Brederlow wrote:
> Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> writes:
> 
> > Mr Goswin,
> >
> > Can you try getting the hypervisor output? That can be done by pressing Ctrl-A three
> > times and one of the keys for the IRQ to domains mapping. I am just looking to see
> > if you have the same issue.
> > </side-track>
> 
> What key is that for IRQ to domain mapping?

'i'.

> 
> And are you sure this works on the VGA console after the hypervisor
> has given up the console to linux itself? I know I tried in the past
> to get the hypervisor console back.

I believe so. You might need to have these in your boot arguments:
xen.gz console=com1,vga guest_loglvl=all earlyprintk=vga

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-20 22:26                 ` Sander Eikelenboom
@ 2009-11-25 11:46                   ` Sander Eikelenboom
  2009-11-25 19:34                     ` Jeremy Fitzhardinge
  0 siblings, 1 reply; 24+ messages in thread
From: Sander Eikelenboom @ 2009-11-25 11:46 UTC (permalink / raw)
  To: Xen Developers List
  Cc: Jeremy Fitzhardinge, Goswin von Brederlow, Konrad Rzeszutek Wilk

It seems with the bios option "ACPI APIC" on disabled:
(BTW the description of this bios option is: "Allows you to enable or disable the ACPI support in the APIC, When enabled the ACPI APIC table pointer is included in the RSDT pointer list.")

- xen 3.5 tip && 2.6.18.8-xen                            boots fine
- 2.6.31.6 jeremy's tree (without hypervisor)            boots fine
- xen 3.5 tip && 2.6.31.6 jeremy's tree                  doesn't boot completely at gives the problems reported.

With the option on enabled, it also boots xen 3.5 tip && 2.6.31.6 fine, but for what i recall i have seen the same problem occur rarely too.

-- 
Sander















Friday, November 20, 2009, 11:26:26 PM, you wrote:

> Hello Konrad,

> With the bios option "ACPI APIC" on disabled, the bug comes up with
> - xen-3.5 tip && 2.6.31.6
> - xen-3.5 #20436 && 2.6.31.6
> - xen 3.5 #20365 && 2.6.31.6


> - xen 3.5 #20365 && 2.6.18.8-xen boots fine.


> Anything else i could try or give additional info about ?

> BTW the description of this bios option is:
> "Allows you to enable or disable the ACPI support in the APIC, When enabled the ACPI APIC table pointer is included in the RSDT pointer list."

> -- 
> Sander




> Friday, November 20, 2009, 3:50:20 PM, you wrote:

>> On Fri, Nov 20, 2009 at 12:25:16PM +0100, Sander Eikelenboom wrote:
>>> I occasionally have the same problem (same messages spit out by the kernel on boot.
>>> System keeps running, but everything is terribly slow it seems (these messages appear one by one with sometimes several seconds in between)
>>> In the end it can not mount the root filesystem and bails out.


>> This is most curious. Based on your Xen hypervisor logs:

>> ..snip..
>>> (XEN)    IRQ:   0, IRQ affinity:0xffffffff, Vec:240 type=IO-APIC-edge    status=
>>> 00000000 mapped, unbound
>>> (XEN)    IRQ:   1, IRQ affinity:0x00000001, Vec: 40 type=IO-APIC-edge    status=
>>> 00000006 mapped, unbound
>>> (XEN)    IRQ:   2, IRQ affinity:0xffffffff, Vec:226 type=XT-PIC          status=
>>> 00000000 mapped, unbound
>>> (XEN)    IRQ:   3, IRQ affinity:0xffffffff, Vec:227 type=XT-PIC          status=
>>> 00000002 mapped, unbound
>>> (XEN)    IRQ:   4, IRQ affinity:0xffffffff, Vec:241 type=IO-APIC-edge    status=
>>> 00000000 mapped, unbound
>>> (XEN)    IRQ:   5, IRQ affinity:0xffffffff, Vec:229 type=XT-PIC          status=
>>> 00000010 in-flight=0 domain-list=0:  5(----),
>>> (XEN)    IRQ:   6, IRQ affinity:0x00000001, Vec: 48 type=IO-APIC-edge    status=
>>> 00000002 mapped, unbound
>>> (XEN)    IRQ:   7, IRQ affinity:0xffffffff, Vec:231 type=XT-PIC          status=
>>> 00000010 in-flight=0 domain-list=0:  7(----),
>>> (XEN)    IRQ:   8, IRQ affinity:0x00000001, Vec: 56 type=IO-APIC-edge    status=
>>> 00000002 mapped, unbound
>> .. snip..

>> That are not mapped to the Dom0. Meaning that well, ..., they are not being received by
>> Dom0, which definilty is a problem.

>> <side-track>
>> Mr Goswin,

>> Can you try getting the hypervisor output? That can be done by pressing Ctrl-A three
>> times and one of the keys for the IRQ to domains mapping. I am just looking to see
>> if you have the same issue.
>> </side-track>

>> There were some patches (cs/ 20437) that changed the IRQ mapping and I wonder if
>> it inadvertly triggered this failure.

>> Can you revert back before cs 20437 and compile Xen.gz? Here is one way I know
>> of how to do this (there is probably a better one):

>> mkdir ../test
>> cd ../test
>> hg clone ../xen-unstable.hg/ -r20436
>> cd xen-unstable.hg
>> hg tip
>> (and it should show c/s 20436 as the latest).







-- 
Best regards,
 Sander                            mailto:linux@eikelenboom.it

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

* Re: Problems booting latest xen pv-ops linux kernel
  2009-11-25 11:46                   ` Sander Eikelenboom
@ 2009-11-25 19:34                     ` Jeremy Fitzhardinge
  0 siblings, 0 replies; 24+ messages in thread
From: Jeremy Fitzhardinge @ 2009-11-25 19:34 UTC (permalink / raw)
  To: Sander Eikelenboom
  Cc: Goswin von Brederlow, Xen Developers List, Konrad Rzeszutek Wilk

On 11/25/09 03:46, Sander Eikelenboom wrote:
> It seems with the bios option "ACPI APIC" on disabled:
> (BTW the description of this bios option is: "Allows you to enable or disable the ACPI support in the APIC, When enabled the ACPI APIC table pointer is included in the RSDT pointer list.")
>   

I wonder what the rationale for this is?  I guess for some legacy OS
support?

> - xen 3.5 tip && 2.6.18.8-xen                            boots fine
> - 2.6.31.6 jeremy's tree (without hypervisor)            boots fine
> - xen 3.5 tip && 2.6.31.6 jeremy's tree                  doesn't boot completely at gives the problems reported.
>
> With the option on enabled, it also boots xen 3.5 tip && 2.6.31.6 fine, but for what i recall i have seen the same problem occur rarely too.
>   

I think we're approaching the point of officially not supporting legacy
modes of operation (non-ACPI, non-APIC).  At the moment we're trying to
support them, but it just adds extra complexity for what I suspect is
little value.

    J

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

end of thread, other threads:[~2009-11-25 19:34 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-17 23:18 Problems booting latest xen pv-ops linux kernel Goswin von Brederlow
2009-11-18  7:10 ` Pasi Kärkkäinen
2009-11-18 15:08   ` Konrad Rzeszutek Wilk
2009-11-18 15:28     ` Pasi Kärkkäinen
2009-11-19  5:43       ` Goswin von Brederlow
2009-11-19 17:41         ` Konrad Rzeszutek Wilk
2009-11-20  1:41           ` Goswin von Brederlow
2009-11-20 11:25             ` Sander Eikelenboom
2009-11-20 11:49               ` Sander Eikelenboom
2009-11-20 12:33                 ` Sander Eikelenboom
2009-11-20 14:50               ` Konrad Rzeszutek Wilk
2009-11-20 15:05                 ` Sander Eikelenboom
2009-11-20 22:26                 ` Sander Eikelenboom
2009-11-25 11:46                   ` Sander Eikelenboom
2009-11-25 19:34                     ` Jeremy Fitzhardinge
2009-11-21  1:26                 ` Goswin von Brederlow
2009-11-23 14:48                   ` Konrad Rzeszutek Wilk
2009-11-19  5:40   ` Goswin von Brederlow
2009-11-19  7:55     ` Pasi Kärkkäinen
2009-11-19  8:00       ` Pasi Kärkkäinen
2009-11-19 10:16         ` Fasiha Ashraf
2009-11-19 10:21           ` Pasi Kärkkäinen
2009-11-20  6:56             ` Fasiha Ashraf
2009-11-20 13:53             ` Fasiha Ashraf

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.