xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
@ 2012-12-19  8:47 James Dingwall
  2012-12-19 10:55 ` James Dingwall
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: James Dingwall @ 2012-12-19  8:47 UTC (permalink / raw)
  To: xen-devel

Hi,

I have encountered an apparently benign error on two systems where the 
dom0 kernel log is flooded with messages like:

[52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff] cannot 
be added
[52482.163860] xen_balloon: reserve_additional_memory: add_memory() 
failed: -17

The first line is from drivers/xen/xen-balloon.c, the second from 
mm/memory_hotplug.c

The trigger for the messages seems to be the first occasion that a Xen 
guest is shutdown.  I have noted this in a vanilla 3.6.7 and kernel 
3.5.0-18 built from Ubuntu sources.  Xen version is 4.2.0.  It is not 
clear why the dom0 is kernel is trying to balloon up as the Xen command 
line is specifies a fixed dom0 memory allocation and noselfballooning is 
specified for the kernel and ballooning is also disabled in the 
xend-config.sxp / xl.conf (one system using xm, another xl)

xen command line:
placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 
dom0_mem=max:6144m

kernel command line:
root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen nomodeset 
noselfballooning

Examining /proc/iomem does show that the dom0 memory allocation is 
actually 64kb short of 6144Mb:

cat /proc/iomem | grep System\ RAM
00010000-0009bfff : System RAM      [573440 bytes]
00100000-cb2dffff : System RAM      [3407740928 bytes]
100000000-1b4d83fff : System RAM    [3034071040 bytes]

Total system ram: 6442385408 - 6x2^30 = 65536

The memory range indicated in the log message is "Unusable memory" in 
/proc/iomem:
1b4d84000-82fffffff : Unusable memory

Another point of interest is that we have multiple "identical" hardware 
platforms (Dell T320) for the system running the 3.5.0-18 kernel but 
only see this error on a slightly more recent system.  Older systems 
show in /proc/iomem that all memory is System RAM.

100000000-82fffffff : System RAM  [older system BIOS 1.0]

100000000-1b4d83fff : System RAM  [newer system BIOS 1.3]
1b4d84000-82fffffff : Unusable memory

The BIOS revision between the old and new has changed so I was 
wondering if it is possible that there is a white list which affects the 
impact of the kernel option:
CONFIG_X86_RESERVE_LOW=64
This is only a guess since the amount of memory reserved is equivalent 
to the short fall calculated above.  If this is the right area perhaps 
the dom0 calculation for its memory entitlement needs to be taught to 
not to try and hotplug the missing 64k when it has been reserved.

If any other information would be useful then please let me know.

Thanks,
James

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-19  8:47 kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17 James Dingwall
@ 2012-12-19 10:55 ` James Dingwall
  2012-12-21 20:23   ` Konrad Rzeszutek Wilk
  2012-12-20 14:50 ` Jacek Konieczny
  2012-12-21 20:25 ` Konrad Rzeszutek Wilk
  2 siblings, 1 reply; 14+ messages in thread
From: James Dingwall @ 2012-12-19 10:55 UTC (permalink / raw)
  To: xen-devel

On 2012-12-19 08:47, James Dingwall wrote:
> Hi,
>
> I have encountered an apparently benign error on two systems where
> the dom0 kernel log is flooded with messages like:
>
> [52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff] 
> cannot be added
> [52482.163860] xen_balloon: reserve_additional_memory: add_memory() 
> failed: -17
>
> The first line is from drivers/xen/xen-balloon.c, the second from
> mm/memory_hotplug.c
>
> The trigger for the messages seems to be the first occasion that a
> Xen guest is shutdown.  I have noted this in a vanilla 3.6.7 and
> kernel 3.5.0-18 built from Ubuntu sources.  Xen version is 4.2.0.  It
> is not clear why the dom0 is kernel is trying to balloon up as the 
> Xen
> command line is specifies a fixed dom0 memory allocation and
> noselfballooning is specified for the kernel and ballooning is also
> disabled in the xend-config.sxp / xl.conf (one system using xm,
> another xl)
>
> xen command line:
> placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 
> dom0_mem=max:6144m
>
> kernel command line:
> root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen
> nomodeset noselfballooning
>
> Examining /proc/iomem does show that the dom0 memory allocation is
> actually 64kb short of 6144Mb:
>
> cat /proc/iomem | grep System\ RAM
> 00010000-0009bfff : System RAM      [573440 bytes]
> 00100000-cb2dffff : System RAM      [3407740928 bytes]
> 100000000-1b4d83fff : System RAM    [3034071040 bytes]
>
> Total system ram: 6442385408 - 6x2^30 = 65536
>
> The memory range indicated in the log message is "Unusable memory" in
> /proc/iomem:
> 1b4d84000-82fffffff : Unusable memory
>
> Another point of interest is that we have multiple "identical"
> hardware platforms (Dell T320) for the system running the 3.5.0-18
> kernel but only see this error on a slightly more recent system.
> Older systems show in /proc/iomem that all memory is System RAM.
>
> 100000000-82fffffff : System RAM  [older system BIOS 1.0]
>
> 100000000-1b4d83fff : System RAM  [newer system BIOS 1.3]
> 1b4d84000-82fffffff : Unusable memory
>
> The BIOS revision between the old and new has changed so I was
> wondering if it is possible that there is a white list which affects
> the impact of the kernel option:
> CONFIG_X86_RESERVE_LOW=64
> This is only a guess since the amount of memory reserved is
> equivalent to the short fall calculated above.  If this is the right
> area perhaps the dom0 calculation for its memory entitlement needs to
> be taught to not to try and hotplug the missing 64k when it has been
> reserved.
>
> If any other information would be useful then please let me know.

With some further investigation we have determined that the different 
BIOS version does not seem to be a factor and the key point is actually 
the Xen command line.  The reason that we had max: specified is that 
without it we could not boot the kernel/xen combination on an AMD 
platform.  I will do some further testing to see what the result of 
dom0_mem=6144m,max:6144m as suggested 
http://wiki.xen.org/wiki/Xen_Best_Practices gets us.

placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 
dom0_mem=max:6144m
results in /proc/iomem having an unusable range and top reports 
6083900k of memory in dom0

placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 
dom0_mem=6144m
no unusable range, top reports 5605976k of memory in dom0 and no log 
messages

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-19  8:47 kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17 James Dingwall
  2012-12-19 10:55 ` James Dingwall
@ 2012-12-20 14:50 ` Jacek Konieczny
  2012-12-20 15:55   ` James Dingwall
  2012-12-21 20:25 ` Konrad Rzeszutek Wilk
  2 siblings, 1 reply; 14+ messages in thread
From: Jacek Konieczny @ 2012-12-20 14:50 UTC (permalink / raw)
  To: James Dingwall; +Cc: xen-devel

On Wed, Dec 19, 2012 at 08:47:22AM +0000, James Dingwall wrote:
> Hi,
> 
> I have encountered an apparently benign error on two systems where the 
> dom0 kernel log is flooded with messages like:
> 
> [52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff] cannot 
> be added
> [52482.163860] xen_balloon: reserve_additional_memory: add_memory() 
> failed: -17

I have seen this bug too (under Xen 4.2.0).

I am using the following workaround to stop those messages:

cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb > \
        /sys/devices/system/xen_memory/xen_memory0/target_kb

I have not verified yet if Xen 4.2.1 is also affected.

Greets,
        Jacek

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-20 14:50 ` Jacek Konieczny
@ 2012-12-20 15:55   ` James Dingwall
  0 siblings, 0 replies; 14+ messages in thread
From: James Dingwall @ 2012-12-20 15:55 UTC (permalink / raw)
  To: xen-devel; +Cc: jajcus

On 2012-12-20 14:50, Jacek Konieczny wrote:
> On Wed, Dec 19, 2012 at 08:47:22AM +0000, James Dingwall wrote:
>> Hi,
>>
>> I have encountered an apparently benign error on two systems where 
>> the
>> dom0 kernel log is flooded with messages like:
>>
>> [52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff] 
>> cannot
>> be added
>> [52482.163860] xen_balloon: reserve_additional_memory: add_memory()
>> failed: -17
>
> I have seen this bug too (under Xen 4.2.0).
>
> I am using the following workaround to stop those messages:
>
> cat /sys/devices/system/xen_memory/xen_memory0/info/current_kb > \
>         /sys/devices/system/xen_memory/xen_memory0/target_kb
>
> I have not verified yet if Xen 4.2.1 is also affected.

Thanks for the cat tip, that works for me too.  The issue is still 
present in Xen 4.2.1 with kernel. 3.7.1.

James

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-19 10:55 ` James Dingwall
@ 2012-12-21 20:23   ` Konrad Rzeszutek Wilk
  2013-01-02 10:28     ` James Dingwall
  0 siblings, 1 reply; 14+ messages in thread
From: Konrad Rzeszutek Wilk @ 2012-12-21 20:23 UTC (permalink / raw)
  To: James Dingwall; +Cc: xen-devel

On Wed, Dec 19, 2012 at 10:55:49AM +0000, James Dingwall wrote:
> On 2012-12-19 08:47, James Dingwall wrote:
> >Hi,
> >
> >I have encountered an apparently benign error on two systems where
> >the dom0 kernel log is flooded with messages like:
> >
> >[52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff]
> >cannot be added
> >[52482.163860] xen_balloon: reserve_additional_memory:
> >add_memory() failed: -17
> >
> >The first line is from drivers/xen/xen-balloon.c, the second from
> >mm/memory_hotplug.c
> >
> >The trigger for the messages seems to be the first occasion that a
> >Xen guest is shutdown.  I have noted this in a vanilla 3.6.7 and
> >kernel 3.5.0-18 built from Ubuntu sources.  Xen version is 4.2.0.  It
> >is not clear why the dom0 is kernel is trying to balloon up as the
> >Xen
> >command line is specifies a fixed dom0 memory allocation and
> >noselfballooning is specified for the kernel and ballooning is also
> >disabled in the xend-config.sxp / xl.conf (one system using xm,
> >another xl)
> >
> >xen command line:
> >placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1
> >dom0_mem=max:6144m
> >
> >kernel command line:
> >root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen
> >nomodeset noselfballooning
> >
> >Examining /proc/iomem does show that the dom0 memory allocation is
> >actually 64kb short of 6144Mb:
> >
> >cat /proc/iomem | grep System\ RAM
> >00010000-0009bfff : System RAM      [573440 bytes]
> >00100000-cb2dffff : System RAM      [3407740928 bytes]
> >100000000-1b4d83fff : System RAM    [3034071040 bytes]
> >
> >Total system ram: 6442385408 - 6x2^30 = 65536
> >
> >The memory range indicated in the log message is "Unusable memory" in
> >/proc/iomem:
> >1b4d84000-82fffffff : Unusable memory
> >
> >Another point of interest is that we have multiple "identical"
> >hardware platforms (Dell T320) for the system running the 3.5.0-18
> >kernel but only see this error on a slightly more recent system.
> >Older systems show in /proc/iomem that all memory is System RAM.
> >
> >100000000-82fffffff : System RAM  [older system BIOS 1.0]

Wow. That is a lot of memory :-)

> >
> >100000000-1b4d83fff : System RAM  [newer system BIOS 1.3]
> >1b4d84000-82fffffff : Unusable memory
> >
> >The BIOS revision between the old and new has changed so I was
> >wondering if it is possible that there is a white list which affects
> >the impact of the kernel option:
> >CONFIG_X86_RESERVE_LOW=64
> >This is only a guess since the amount of memory reserved is
> >equivalent to the short fall calculated above.  If this is the right
> >area perhaps the dom0 calculation for its memory entitlement needs to
> >be taught to not to try and hotplug the missing 64k when it has been
> >reserved.
> >
> >If any other information would be useful then please let me know.
> 
> With some further investigation we have determined that the
> different BIOS version does not seem to be a factor and the key
> point is actually the Xen command line.  The reason that we had max:
> specified is that without it we could not boot the kernel/xen
> combination on an AMD platform.  I will do some further testing to

What happend? Did you report it in another email on this mailing list?

> see what the result of dom0_mem=6144m,max:6144m as suggested
> http://wiki.xen.org/wiki/Xen_Best_Practices gets us.
> 
> placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1
> dom0_mem=max:6144m

I think you don't need xsave=0 anymore? It was only needed with
a Fedora stock kernel (and the underlaying issue I believe is
now fixed).

> results in /proc/iomem having an unusable range and top reports
> 6083900k of memory in dom0
> 
> placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1
> dom0_mem=6144m
> no unusable range, top reports 5605976k of memory in dom0 and no log
> messages

Hmm..

If you were to run this with 'loglevel=8 debug' with the
dom0_mem=6144m and dom0_mem=max:6144m could you send both
'xl dmesg' and 'dmesg' outputs?
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
> 

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-19  8:47 kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17 James Dingwall
  2012-12-19 10:55 ` James Dingwall
  2012-12-20 14:50 ` Jacek Konieczny
@ 2012-12-21 20:25 ` Konrad Rzeszutek Wilk
  2012-12-23 10:41   ` Carsten Schiers
  2 siblings, 1 reply; 14+ messages in thread
From: Konrad Rzeszutek Wilk @ 2012-12-21 20:25 UTC (permalink / raw)
  To: James Dingwall; +Cc: daniel.kiper, xen-devel

On Wed, Dec 19, 2012 at 08:47:22AM +0000, James Dingwall wrote:
> Hi,
> 
> I have encountered an apparently benign error on two systems where
> the dom0 kernel log is flooded with messages like:
> 
> [52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff]
> cannot be added
> [52482.163860] xen_balloon: reserve_additional_memory: add_memory()
> failed: -17

Daniel tells me it is due to the recent changes in the balloon code.
CC-ing him here.

> 
> The first line is from drivers/xen/xen-balloon.c, the second from
> mm/memory_hotplug.c
> 
> The trigger for the messages seems to be the first occasion that a
> Xen guest is shutdown.  I have noted this in a vanilla 3.6.7 and
> kernel 3.5.0-18 built from Ubuntu sources.  Xen version is 4.2.0.
> It is not clear why the dom0 is kernel is trying to balloon up as
> the Xen command line is specifies a fixed dom0 memory allocation and
> noselfballooning is specified for the kernel and ballooning is also
> disabled in the xend-config.sxp / xl.conf (one system using xm,
> another xl)
> 
> xen command line:
> placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1
> dom0_mem=max:6144m
> 
> kernel command line:
> root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen
> nomodeset noselfballooning
> 
> Examining /proc/iomem does show that the dom0 memory allocation is
> actually 64kb short of 6144Mb:
> 
> cat /proc/iomem | grep System\ RAM
> 00010000-0009bfff : System RAM      [573440 bytes]
> 00100000-cb2dffff : System RAM      [3407740928 bytes]
> 100000000-1b4d83fff : System RAM    [3034071040 bytes]
> 
> Total system ram: 6442385408 - 6x2^30 = 65536
> 
> The memory range indicated in the log message is "Unusable memory"
> in /proc/iomem:
> 1b4d84000-82fffffff : Unusable memory
> 
> Another point of interest is that we have multiple "identical"
> hardware platforms (Dell T320) for the system running the 3.5.0-18
> kernel but only see this error on a slightly more recent system.
> Older systems show in /proc/iomem that all memory is System RAM.
> 
> 100000000-82fffffff : System RAM  [older system BIOS 1.0]
> 
> 100000000-1b4d83fff : System RAM  [newer system BIOS 1.3]
> 1b4d84000-82fffffff : Unusable memory
> 
> The BIOS revision between the old and new has changed so I was
> wondering if it is possible that there is a white list which affects
> the impact of the kernel option:
> CONFIG_X86_RESERVE_LOW=64
> This is only a guess since the amount of memory reserved is
> equivalent to the short fall calculated above.  If this is the right
> area perhaps the dom0 calculation for its memory entitlement needs
> to be taught to not to try and hotplug the missing 64k when it has
> been reserved.
> 
> If any other information would be useful then please let me know.
> 
> Thanks,
> James
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
> 

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-21 20:25 ` Konrad Rzeszutek Wilk
@ 2012-12-23 10:41   ` Carsten Schiers
  0 siblings, 0 replies; 14+ messages in thread
From: Carsten Schiers @ 2012-12-23 10:41 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk, daniel.kiper@oracle.com
  Cc: James Dingwall, xen-devel@lists.xen.org

Hi folks,

I had the same messages flooding logs, but it was in DomUs. It came together with e.g.:

    System RAM resource [mem 0x20000000-0x3fffffff] cannot be added

I am not 100% sure, but it was only for DomUs with PCI and PCIe devices passed-through.

Xen 4.2.1, Dom0&DomU Kernel 3.7.1. Xen commandline with dom0_mem=2G and dom0_mem=2G,max:2G.
Machine is an Intel 64 Bit 16 GB installation.

Difficult to check deeper, as it made me so nervous that I reverted to Xen 4.1, but I could 
certainly re-install it after Xmas, if it is helping...

BR,
Carsten.


-----Ursprüngliche Nachricht-----
Von: xen-devel-bounces@lists.xen.org [mailto:xen-devel-bounces@lists.xen.org] Im Auftrag von Konrad Rzeszutek Wilk
Gesendet: Freitag, 21. Dezember 2012 21:25
An: James Dingwall
Cc: daniel.kiper@oracle.com; xen-devel@lists.xen.org
Betreff: Re: [Xen-devel] kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17

On Wed, Dec 19, 2012 at 08:47:22AM +0000, James Dingwall wrote:
> Hi,
> 
> I have encountered an apparently benign error on two systems where the 
> dom0 kernel log is flooded with messages like:
> 
> [52482.163855] System RAM resource [mem 0x1b8000000-0x1bfffffff] 
> cannot be added [52482.163860] xen_balloon: reserve_additional_memory: 
> add_memory()
> failed: -17

Daniel tells me it is due to the recent changes in the balloon code.
CC-ing him here.

> 
> The first line is from drivers/xen/xen-balloon.c, the second from 
> mm/memory_hotplug.c
> 
> The trigger for the messages seems to be the first occasion that a Xen 
> guest is shutdown.  I have noted this in a vanilla 3.6.7 and kernel 
> 3.5.0-18 built from Ubuntu sources.  Xen version is 4.2.0.
> It is not clear why the dom0 is kernel is trying to balloon up as the 
> Xen command line is specifies a fixed dom0 memory allocation and 
> noselfballooning is specified for the kernel and ballooning is also 
> disabled in the xend-config.sxp / xl.conf (one system using xm, 
> another xl)
> 
> xen command line:
> placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 
> dom0_mem=max:6144m
> 
> kernel command line:
> root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen nomodeset 
> noselfballooning
> 
> Examining /proc/iomem does show that the dom0 memory allocation is 
> actually 64kb short of 6144Mb:
> 
> cat /proc/iomem | grep System\ RAM
> 00010000-0009bfff : System RAM      [573440 bytes]
> 00100000-cb2dffff : System RAM      [3407740928 bytes]
> 100000000-1b4d83fff : System RAM    [3034071040 bytes]
> 
> Total system ram: 6442385408 - 6x2^30 = 65536
> 
> The memory range indicated in the log message is "Unusable memory"
> in /proc/iomem:
> 1b4d84000-82fffffff : Unusable memory
> 
> Another point of interest is that we have multiple "identical"
> hardware platforms (Dell T320) for the system running the 3.5.0-18 
> kernel but only see this error on a slightly more recent system.
> Older systems show in /proc/iomem that all memory is System RAM.
> 
> 100000000-82fffffff : System RAM  [older system BIOS 1.0]
> 
> 100000000-1b4d83fff : System RAM  [newer system BIOS 1.3] 
> 1b4d84000-82fffffff : Unusable memory
> 
> The BIOS revision between the old and new has changed so I was 
> wondering if it is possible that there is a white list which affects 
> the impact of the kernel option:
> CONFIG_X86_RESERVE_LOW=64
> This is only a guess since the amount of memory reserved is equivalent 
> to the short fall calculated above.  If this is the right area perhaps 
> the dom0 calculation for its memory entitlement needs to be taught to 
> not to try and hotplug the missing 64k when it has been reserved.
> 
> If any other information would be useful then please let me know.
> 
> Thanks,
> James
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
> 

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

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
@ 2012-12-24 14:39 Daniel Kiper
  2013-01-24 21:38 ` Carsten Schiers
  0 siblings, 1 reply; 14+ messages in thread
From: Daniel Kiper @ 2012-12-24 14:39 UTC (permalink / raw)
  To: carsten; +Cc: xen-devel, james-xen, konrad.wilk

Hi,

> I had the same messages flooding logs, but it was in DomUs. It came together with e.g.:
>
>     System RAM resource [mem 0x20000000-0x3fffffff] cannot be added
>
> I am not 100% sure, but it was only for DomUs with PCI and PCIe devices passed-through.
>
> Xen 4.2.1, Dom0&DomU Kernel 3.7.1. Xen commandline with dom0_mem=2G and dom0_mem=2G,max:2G.
> Machine is an Intel 64 Bit 16 GB installation.
>
> Difficult to check deeper, as it made me so nervous that I reverted to Xen 4.1, but I could
> certainly re-install it after Xmas, if it is helping...

Thanks for update. I fill that it could be linked with
recent balloon driver updates. I will take a look at that
bug in new year.

Daniel

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-21 20:23   ` Konrad Rzeszutek Wilk
@ 2013-01-02 10:28     ` James Dingwall
  0 siblings, 0 replies; 14+ messages in thread
From: James Dingwall @ 2013-01-02 10:28 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: daniel.kiper, xen-devel

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

On 2012-12-21 20:23, Konrad Rzeszutek Wilk wrote:
> On Wed, Dec 19, 2012 at 10:55:49AM +0000, James Dingwall wrote:
>> On 2012-12-19 08:47, James Dingwall wrote:

Hi Konrad,

Thanks for your interest in this problem, sorry for the delay in 
replying but today is the first day I've had access to the machine to do 
more testing.

>> With some further investigation we have determined that the
>> different BIOS version does not seem to be a factor and the key
>> point is actually the Xen command line.  The reason that we had max:
>> specified is that without it we could not boot the kernel/xen
>> combination on an AMD platform.  I will do some further testing to
>
> What happend? Did you report it in another email on this mailing 
> list?
I reported this on xen-users
http://lists.xen.org/archives/html/xen-users/2012-07/msg00062.html

>> see what the result of dom0_mem=6144m,max:6144m as suggested
>> http://wiki.xen.org/wiki/Xen_Best_Practices gets us.
>>
>> placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1
>> dom0_mem=max:6144m
>
> I think you don't need xsave=0 anymore? It was only needed with
> a Fedora stock kernel (and the underlaying issue I believe is
> now fixed).
IIRC the stock Ubuntu Precise kernel needed this but as we are running 
our own build now it is probably unnecessary.

> Hmm..
>
> If you were to run this with 'loglevel=8 debug' with the
> dom0_mem=6144m and dom0_mem=max:6144m could you send both
> 'xl dmesg' and 'dmesg' outputs?
Output attached.  Thicky question, loglevel=8 debug was for the Xen 
command line?

James

[-- Attachment #2: 4096m-dmesg.txt --]
[-- Type: text/plain, Size: 67764 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.5.0-18-zdom0 (root@build) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #29~precise1 SMP Mon Nov 12 13:19:27 GMT 2012 (Ubuntu 3.5.0-18.29~precise1-zdom0 3.5.7)
[    0.000000] Command line: root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen nomodeset zyimage=hapcon.ext4
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] Freeing 9c-100 pfn range: 100 pages freed
[    0.000000] 1-1 mapping on 9c->100
[    0.000000] Freeing cb2e0-100000 pfn range: 216352 pages freed
[    0.000000] 1-1 mapping on cb2e0->100000
[    0.000000] Released 216452 pages of unused memory
[    0.000000] Set 216452 page(s) to 1-1 mapping
[    0.000000] Populating 100000-134d84 pfn range: 216452 pages added
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009bfff] usable
[    0.000000] Xen: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x00000000cb2dffff] usable
[    0.000000] Xen: [mem 0x00000000cb2e0000-0x00000000cd31bfff] reserved
[    0.000000] Xen: [mem 0x00000000cd31c000-0x00000000cd35afff] ACPI data
[    0.000000] Xen: [mem 0x00000000cd35b000-0x00000000cfffffff] reserved
[    0.000000] Xen: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] Xen: [mem 0x00000000fe000000-0x00000000ffffffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x000000082fffffff] usable
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: Dell Inc. PowerEdge T320/0W7H8C, BIOS 1.3.5 08/21/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x830000 max_arch_pfn = 0x400000000
[    0.000000] e820: last_pfn = 0xcb2e0 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped: [mem 0x00000000-0x04b2afff]
[    0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xcb2dffff]
[    0.000000]  [mem 0x00000000-0xcb2dffff] page 4k
[    0.000000] kernel direct mapping tables up to 0xcb2dffff @ [mem 0x009a1000-0x00ffffff]
[    0.000000] xen: setting RW the range fd0000 - 1000000
[    0.000000] init_memory_mapping: [mem 0x100000000-0x82fffffff]
[    0.000000]  [mem 0x100000000-0x82fffffff] page 4k
[    0.000000] kernel direct mapping tables up to 0x82fffffff @ [mem 0xc713e000-0xcb2dffff]
[    0.000000] xen: setting RW the range caadb000 - cb2e0000
[    0.000000] RAMDISK: [mem 0x02355000-0x04b2afff]
[    0.000000] ACPI: RSDP 00000000000f13a0 00024 (v02 DELL  )
[    0.000000] ACPI: XSDT 00000000000f14a8 000A4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: FACP 00000000cd3411cc 000F4 (v03 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: DSDT 00000000cd31c000 068A3 (v01 DELL   PE_SC3   00000001 INTL 20110211)
[    0.000000] ACPI: FACS 00000000cd343000 00040
[    0.000000] ACPI: APIC 00000000cd340478 0015E (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SPCR 00000000cd3405e4 00050 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: HPET 00000000cd340638 00038 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: XMAR 00000000cd340674 000E0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: MCFG 00000000cd340990 0003C (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: WD__ 00000000cd3409d0 00134 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SLIC 00000000cd340b08 00024 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: ERST 00000000cd322a64 00270 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: HEST 00000000cd322cd4 0059C (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: BERT 00000000cd3228a4 00030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: EINJ 00000000cd3228d4 00190 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: TCPA 00000000cd341164 00064 (v02 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: PC__ 00000000cd3410f4 0006E (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SRAT 00000000cd340d30 003C0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SSDT 00000000cd344000 03358 (v01 INTEL  PPM RCM  80000001 INTL 20061109)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000082fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x82fffffff]
[    0.000000]   NODE_DATA [mem 0x134d80000-0x134d83fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x82fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0009bfff]
[    0.000000]   node   0: [mem 0x00100000-0xcb2dffff]
[    0.000000]   node   0: [mem 0x100000000-0x82fffffff]
[    0.000000] On node 0 totalpages: 8368748
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 1589 pages reserved
[    0.000000]   DMA zone: 2327 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 811808 pages, LIFO batch:31
[    0.000000]   Normal zone: 117760 pages used for memmap
[    0.000000]   Normal zone: 7418880 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x0a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x4c] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x4d] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x4e] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x4f] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x50] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x51] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x52] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x53] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x54] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x55] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x56] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x57] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x58] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x59] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x5a] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x5b] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x5c] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x5d] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x5e] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x5f] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec3f000] gsi_base[32])
[    0.000000] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] SMP: Allowing 32 CPUs, 20 hotplug CPUs
[    0.000000] nr_irqs_gsi: 72
[    0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000cb2e0000 - 00000000cd31c000
[    0.000000] PM: Registered nosave memory: 00000000cd31c000 - 00000000cd35b000
[    0.000000] PM: Registered nosave memory: 00000000cd35b000 - 00000000d0000000
[    0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fe000000
[    0.000000] PM: Registered nosave memory: 00000000fe000000 - 0000000100000000
[    0.000000] e820: [mem 0xd0000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.2.0 (preserve-AD)
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff880114000000 s83584 r8192 d22912 u131072
[    0.000000] pcpu-alloc: s83584 r8192 d22912 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 
[    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 
[    7.417336] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 8233015
[    7.417339] Policy zone: Normal
[    7.417341] Kernel command line: root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen nomodeset zyimage=hapcon.ext4
[    7.417785] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    7.417790] __ex_table already sorted, skipping sort
[    7.452022] software IO TLB [mem 0x110000000-0x113ffffff] (64MB) mapped at [ffff880110000000-ffff880113ffffff]
[    7.468792] Memory: 3468808k/34340864k available (6861k kernel code, 865872k absent, 30006184k reserved, 6310k data, 948k init)
[    7.468885] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    7.468928] Hierarchical RCU implementation.
[    7.468930] 	RCU dyntick-idle grace-period acceleration is enabled.
[    7.468944] NR_IRQS:16640 nr_irqs:1320 16
[    7.469022] xen: sci override: global_irq=9 trigger=0 polarity=0
[    7.469025] xen: registering gsi 9 triggering 0 polarity 0
[    7.469037] xen: --> pirq=9 -> irq=9 (gsi=9)
[    7.469042] xen: acpi sci 9
[    7.469046] xen: --> pirq=1 -> irq=1 (gsi=1)
[    7.469049] xen: --> pirq=2 -> irq=2 (gsi=2)
[    7.469052] xen: --> pirq=3 -> irq=3 (gsi=3)
[    7.469054] xen: --> pirq=4 -> irq=4 (gsi=4)
[    7.469057] xen: --> pirq=5 -> irq=5 (gsi=5)
[    7.469060] xen: --> pirq=6 -> irq=6 (gsi=6)
[    7.469063] xen: --> pirq=7 -> irq=7 (gsi=7)
[    7.469066] xen: --> pirq=8 -> irq=8 (gsi=8)
[    7.469069] xen: --> pirq=10 -> irq=10 (gsi=10)
[    7.469072] xen: --> pirq=11 -> irq=11 (gsi=11)
[    7.469075] xen: --> pirq=12 -> irq=12 (gsi=12)
[    7.469077] xen: --> pirq=13 -> irq=13 (gsi=13)
[    7.469080] xen: --> pirq=14 -> irq=14 (gsi=14)
[    7.469083] xen: --> pirq=15 -> irq=15 (gsi=15)
[    7.472116] Console: colour VGA+ 80x25
[    7.485955] console [tty1] enabled
[    7.486050] console [hvc0] enabled, bootconsole disabled
[    7.518398] allocated 134217728 bytes of page_cgroup
[    7.518504] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    7.518669] Xen: using vcpuop timer interface
[    7.518676] installing Xen timer for CPU 0
[    7.518801] Detected 2200.054 MHz processor.
[    7.518932] Calibrating delay loop (skipped), value calculated using timer frequency.. 4400.10 BogoMIPS (lpj=8800216)
[    7.519130] pid_max: default: 32768 minimum: 301
[    7.519257] Security Framework initialized
[    7.519361] AppArmor: AppArmor initialized
[    7.519456] Yama: becoming mindful.
[    7.527077] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    7.538732] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    7.542780] Mount-cache hash table entries: 256
[    7.543126] Initializing cgroup subsys cpuacct
[    7.543243] Initializing cgroup subsys memory
[    7.543350] Initializing cgroup subsys devices
[    7.543448] Initializing cgroup subsys freezer
[    7.543544] Initializing cgroup subsys blkio
[    7.543640] Initializing cgroup subsys perf_event
[    7.543833] CPU: Physical Processor ID: 0
[    7.543928] CPU: Processor Core ID: 0
[    7.546434] ACPI: Core revision 20120320
[    7.548963] ftrace: allocating 27799 entries in 109 pages
[    7.562929] cpu 0 spinlock event irq 73
[    7.563135] Performance Events: unsupported p6 CPU model 45 no PMU driver, software events only.
[    7.563503] NMI watchdog: disabled (cpu0): hardware events not enabled
[    7.563730] installing Xen timer for CPU 1
[    7.563835] cpu 1 spinlock event irq 80
[    7.564152] installing Xen timer for CPU 2
[    7.564257] cpu 2 spinlock event irq 87
[    7.564561] installing Xen timer for CPU 3
[    7.564666] cpu 3 spinlock event irq 94
[    7.564933] installing Xen timer for CPU 4
[    7.565038] cpu 4 spinlock event irq 101
[    7.567310] installing Xen timer for CPU 5
[    7.567415] cpu 5 spinlock event irq 108
[    7.567710] installing Xen timer for CPU 6
[    7.567815] cpu 6 spinlock event irq 115
[    7.568089] installing Xen timer for CPU 7
[    7.568196] cpu 7 spinlock event irq 122
[    7.568463] installing Xen timer for CPU 8
[    7.568570] cpu 8 spinlock event irq 129
[    7.568845] installing Xen timer for CPU 9
[    7.568950] cpu 9 spinlock event irq 136
[    7.569245] installing Xen timer for CPU 10
[    7.569351] cpu 10 spinlock event irq 143
[    7.569635] installing Xen timer for CPU 11
[    7.569740] cpu 11 spinlock event irq 150
[    7.569965] Brought up 12 CPUs
[    7.570413] devtmpfs: initialized
[    7.573720] EVM: security.selinux
[    7.573816] EVM: security.SMACK64
[    7.573909] EVM: security.capability
[    7.574667] Grant tables using version 2 layout.
[    7.574775] Grant table initialized
[    7.574914] dummy: 
[    7.575043] RTC time:  9:44:35, date: 01/02/13
[    7.575170] NET: Registered protocol family 16
[    7.575421] Trying to unpack rootfs image as initramfs...
[    7.575595] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    7.575726] ACPI: bus type pci registered
[    7.575901] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    7.576034] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    7.613637] Freeing initrd memory: 40792k freed
[    7.642315] PCI: Using configuration type 1 for base access
[    7.642450] PCI: Dell System detected, enabling pci=bfsort.
[    7.644100] bio: create slab <bio-0> at 0
[    7.644314] ACPI: Added _OSI(Module Device)
[    7.644412] ACPI: Added _OSI(Processor Device)
[    7.644508] ACPI: Added _OSI(3.0 _SCP Extensions)
[    7.644605] ACPI: Added _OSI(Processor Aggregator Device)
[    7.645532] ACPI: EC: Look up EC in DSDT
[    7.646741] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    7.648441] ACPI: Interpreter enabled
[    7.648550] ACPI: (supports S0 S4 S5)
[    7.648844] ACPI: Using IOAPIC for interrupt routing
[    7.652058] ACPI: No dock devices found.
[    7.652250] HEST: Table parsing has been initialized.
[    7.652358] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    7.653250] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    7.654036] pci_root PNP0A08:00: host bridge window [io  0x0000-0x03af]
[    7.654142] pci_root PNP0A08:00: host bridge window [io  0x03e0-0x0cf7]
[    7.654244] pci_root PNP0A08:00: host bridge window [io  0x03b0-0x03df]
[    7.654351] pci_root PNP0A08:00: host bridge window [io  0x0d00-0x1fff]
[    7.654468] pci_root PNP0A08:00: host bridge window [io  0x2000-0xffff]
[    7.654571] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    7.654697] pci_root PNP0A08:00: host bridge window [mem 0xd0000000-0xfbffffff]
[    7.654824] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
[    7.654988] PCI host bridge to bus 0000:00
[    7.655085] pci_bus 0000:00: root bus resource [io  0x0000-0x03af]
[    7.655187] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
[    7.655288] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
[    7.655390] pci_bus 0000:00: root bus resource [io  0x0d00-0x1fff]
[    7.655491] pci_bus 0000:00: root bus resource [io  0x2000-0xffff]
[    7.655592] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    7.655695] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfbffffff]
[    7.655798] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    7.655925] pci 0000:00:00.0: [8086:3c00] type 00 class 0x060000
[    7.656034] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    7.656080] pci 0000:00:01.0: [8086:3c02] type 01 class 0x060400
[    7.656211] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    7.656262] pci 0000:00:01.1: [8086:3c03] type 01 class 0x060400
[    7.656391] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    7.656451] pci 0000:00:03.0: [8086:3c08] type 01 class 0x060400
[    7.656580] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    7.656634] pci 0000:00:05.0: [8086:3c28] type 00 class 0x088000
[    7.656784] pci 0000:00:05.2: [8086:3c2a] type 00 class 0x088000
[    7.656955] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    7.657108] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    7.657167] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    7.657202] pci 0000:00:16.0: reg 10: [mem 0xdf8fb000-0xdf8fb00f 64bit]
[    7.657328] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    7.657365] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    7.657400] pci 0000:00:16.1: reg 10: [mem 0xdf8fc000-0xdf8fc00f 64bit]
[    7.657524] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    7.657581] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    7.657623] pci 0000:00:1a.0: reg 10: [mem 0xdf8fd000-0xdf8fd3ff]
[    7.657784] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    7.657824] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    7.657967] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    7.658016] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    7.658158] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    7.658203] pci 0000:00:1c.6: [8086:1d1c] type 01 class 0x060400
[    7.658346] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    7.658389] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400
[    7.658532] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    7.658582] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    7.658617] pci 0000:00:1d.0: reg 10: [mem 0xdf8fe000-0xdf8fe3ff]
[    7.658778] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    7.658814] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    7.658932] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    7.659141] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    7.659177] pci 0000:00:1f.2: reg 10: [io  0xece8-0xecef]
[    7.659191] pci 0000:00:1f.2: reg 14: [io  0xecf8-0xecfb]
[    7.659205] pci 0000:00:1f.2: reg 18: [io  0xecf0-0xecf7]
[    7.659219] pci 0000:00:1f.2: reg 1c: [io  0xecfc-0xecff]
[    7.659233] pci 0000:00:1f.2: reg 20: [io  0xecc0-0xecdf]
[    7.659247] pci 0000:00:1f.2: reg 24: [mem 0xdf8ff000-0xdf8ff7ff]
[    7.659338] pci 0000:00:1f.2: PME# supported from D3hot
[    7.659461] pci 0000:08:00.0: [1000:0073] type 00 class 0x010400
[    7.659477] pci 0000:08:00.0: reg 10: [io  0xfc00-0xfcff]
[    7.659499] pci 0000:08:00.0: reg 14: [mem 0xdcffc000-0xdcffffff 64bit]
[    7.659517] pci 0000:08:00.0: reg 1c: [mem 0xdcf80000-0xdcfbffff 64bit]
[    7.659540] pci 0000:08:00.0: reg 30: [mem 0xdc000000-0xdc01ffff pref]
[    7.659613] pci 0000:08:00.0: supports D1 D2
[    7.665722] pci 0000:00:01.0: PCI bridge to [bus 08-08]
[    7.665826] pci 0000:00:01.0:   bridge window [io  0xf000-0xffff]
[    7.665831] pci 0000:00:01.0:   bridge window [mem 0xdc000000-0xdcffffff]
[    7.665917] pci 0000:00:01.1: PCI bridge to [bus 09-09]
[    7.666105] pci 0000:00:03.0: PCI bridge to [bus 0a-0a]
[    7.666299] pci 0000:00:11.0: PCI bridge to [bus 0b-0b]
[    7.666492] pci 0000:00:1c.0: PCI bridge to [bus 0c-0c]
[    7.666725] pci 0000:01:00.0: [14e4:165f] type 00 class 0x020000
[    7.666765] pci 0000:01:00.0: reg 10: [mem 0xd90a0000-0xd90affff 64bit pref]
[    7.666797] pci 0000:01:00.0: reg 18: [mem 0xd90b0000-0xd90bffff 64bit pref]
[    7.666827] pci 0000:01:00.0: reg 20: [mem 0xd90c0000-0xd90cffff 64bit pref]
[    7.666848] pci 0000:01:00.0: reg 30: [mem 0xdd000000-0xdd03ffff pref]
[    7.666980] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    7.667067] pci 0000:01:00.1: [14e4:165f] type 00 class 0x020000
[    7.667105] pci 0000:01:00.1: reg 10: [mem 0xd90d0000-0xd90dffff 64bit pref]
[    7.667136] pci 0000:01:00.1: reg 18: [mem 0xd90e0000-0xd90effff 64bit pref]
[    7.667167] pci 0000:01:00.1: reg 20: [mem 0xd90f0000-0xd90fffff 64bit pref]
[    7.667187] pci 0000:01:00.1: reg 30: [mem 0xdd000000-0xdd03ffff pref]
[    7.667319] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    7.667419] pci 0000:00:1c.4: PCI bridge to [bus 01-01]
[    7.667526] pci 0000:00:1c.4:   bridge window [mem 0xdd000000-0xdd7fffff]
[    7.667535] pci 0000:00:1c.4:   bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[    7.667656] pci 0000:02:00.0: [14e4:165f] type 00 class 0x020000
[    7.667694] pci 0000:02:00.0: reg 10: [mem 0xd91a0000-0xd91affff 64bit pref]
[    7.667725] pci 0000:02:00.0: reg 18: [mem 0xd91b0000-0xd91bffff 64bit pref]
[    7.667756] pci 0000:02:00.0: reg 20: [mem 0xd91c0000-0xd91cffff 64bit pref]
[    7.667776] pci 0000:02:00.0: reg 30: [mem 0xdd800000-0xdd83ffff pref]
[    7.667907] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    7.667993] pci 0000:02:00.1: [14e4:165f] type 00 class 0x020000
[    7.668031] pci 0000:02:00.1: reg 10: [mem 0xd91d0000-0xd91dffff 64bit pref]
[    7.668062] pci 0000:02:00.1: reg 18: [mem 0xd91e0000-0xd91effff 64bit pref]
[    7.668093] pci 0000:02:00.1: reg 20: [mem 0xd91f0000-0xd91fffff 64bit pref]
[    7.668113] pci 0000:02:00.1: reg 30: [mem 0xdd800000-0xdd83ffff pref]
[    7.668244] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
[    7.668345] pci 0000:00:1c.6: PCI bridge to [bus 02-02]
[    7.668452] pci 0000:00:1c.6:   bridge window [mem 0xdd800000-0xddffffff]
[    7.668462] pci 0000:00:1c.6:   bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[    7.668912] pci 0000:03:00.0: [1912:0013] type 01 class 0x060400
[    7.671164] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    7.677946] pci 0000:00:1c.7: PCI bridge to [bus 03-07]
[    7.678053] pci 0000:00:1c.7:   bridge window [mem 0xde000000-0xdf7fffff]
[    7.678063] pci 0000:00:1c.7:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.679699] pci 0000:04:00.0: [1912:0013] type 01 class 0x060400
[    7.682278] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    7.683188] pci 0000:04:01.0: [1912:0013] type 01 class 0x060400
[    7.685781] pci 0000:04:01.0: PME# supported from D0 D3hot D3cold
[    7.688039] pci 0000:03:00.0: PCI bridge to [bus 04-07]
[    7.688330] pci 0000:03:00.0:   bridge window [mem 0xde000000-0xdf7fffff]
[    7.688455] pci 0000:03:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.690203] pci 0000:05:00.0: [1912:0012] type 01 class 0x060400
[    7.693704] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[    7.694040] pci 0000:04:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.694183] pci 0000:04:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.695763] pci 0000:06:00.0: [102b:0534] type 00 class 0x030000
[    7.696247] pci 0000:06:00.0: reg 10: [mem 0xd8000000-0xd8ffffff pref]
[    7.696507] pci 0000:06:00.0: reg 14: [mem 0xdeffc000-0xdeffffff]
[    7.696768] pci 0000:06:00.0: reg 18: [mem 0xde000000-0xde7fffff]
[    7.700810] pci 0000:05:00.0: PCI bridge to [bus 06-06]
[    7.701131] pci 0000:05:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.701276] pci 0000:05:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.702981] pci 0000:04:01.0: PCI bridge to [bus 07-07]
[    7.703298] pci 0000:04:01.0:   bridge window [mem 0xdf700000-0xdf7fffff]
[    7.704515] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode)
[    7.704633] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    7.704635] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    7.704637] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    7.704638] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x1fff] (subtractive decode)
[    7.704640] pci 0000:00:1e.0:   bridge window [io  0x2000-0xffff] (subtractive decode)
[    7.704642] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    7.704644] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xfbffffff] (subtractive decode)
[    7.704645] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
[    7.704718] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    7.704899] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
[    7.704947] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
[    7.704991] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    7.705039] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX6._PRT]
[    7.705084] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX7._PRT]
[    7.705135] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX8._PRT]
[    7.705180] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX9._PRT]
[    7.705319]  pci0000:00: Requesting ACPI _OSC control (0x15)
[    7.705648]  pci0000:00: ACPI _OSC control (0x15) granted
[    7.710700] ACPI: PCI Root Bridge [P0B1] (domain 0000 [bus 3f])
[    7.710845] PCI host bridge to bus 0000:3f
[    7.710961] pci 0000:3f:08.0: [8086:3c80] type 00 class 0x088000
[    7.711063] pci 0000:3f:09.0: [8086:3c90] type 00 class 0x088000
[    7.711162] pci 0000:3f:0a.0: [8086:3cc0] type 00 class 0x088000
[    7.711247] pci 0000:3f:0a.1: [8086:3cc1] type 00 class 0x088000
[    7.711333] pci 0000:3f:0a.2: [8086:3cc2] type 00 class 0x088000
[    7.711418] pci 0000:3f:0a.3: [8086:3cd0] type 00 class 0x088000
[    7.711507] pci 0000:3f:0b.0: [8086:3ce0] type 00 class 0x088000
[    7.711591] pci 0000:3f:0b.3: [8086:3ce3] type 00 class 0x088000
[    7.711678] pci 0000:3f:0c.0: [8086:3ce8] type 00 class 0x088000
[    7.711761] pci 0000:3f:0c.1: [8086:3ce8] type 00 class 0x088000
[    7.711844] pci 0000:3f:0c.2: [8086:3ce8] type 00 class 0x088000
[    7.711930] pci 0000:3f:0c.6: [8086:3cf4] type 00 class 0x088000
[    7.712014] pci 0000:3f:0c.7: [8086:3cf6] type 00 class 0x088000
[    7.712097] pci 0000:3f:0d.0: [8086:3ce8] type 00 class 0x088000
[    7.712180] pci 0000:3f:0d.1: [8086:3ce8] type 00 class 0x088000
[    7.712263] pci 0000:3f:0d.2: [8086:3ce8] type 00 class 0x088000
[    7.712350] pci 0000:3f:0d.6: [8086:3cf5] type 00 class 0x088000
[    7.712434] pci 0000:3f:0e.0: [8086:3ca0] type 00 class 0x088000
[    7.712521] pci 0000:3f:0e.1: [8086:3c46] type 00 class 0x110100
[    7.712622] pci 0000:3f:0f.0: [8086:3ca8] type 00 class 0x088000
[    7.712739] pci 0000:3f:0f.1: [8086:3c71] type 00 class 0x088000
[    7.712855] pci 0000:3f:0f.2: [8086:3caa] type 00 class 0x088000
[    7.712970] pci 0000:3f:0f.3: [8086:3cab] type 00 class 0x088000
[    7.713086] pci 0000:3f:0f.4: [8086:3cac] type 00 class 0x088000
[    7.713201] pci 0000:3f:0f.5: [8086:3cad] type 00 class 0x088000
[    7.713312] pci 0000:3f:0f.6: [8086:3cae] type 00 class 0x088000
[    7.713407] pci 0000:3f:10.0: [8086:3cb0] type 00 class 0x088000
[    7.713523] pci 0000:3f:10.1: [8086:3cb1] type 00 class 0x088000
[    7.713640] pci 0000:3f:10.2: [8086:3cb2] type 00 class 0x088000
[    7.713756] pci 0000:3f:10.3: [8086:3cb3] type 00 class 0x088000
[    7.713873] pci 0000:3f:10.5: [8086:3cb5] type 00 class 0x088000
[    7.713989] pci 0000:3f:10.6: [8086:3cb6] type 00 class 0x088000
[    7.714105] pci 0000:3f:10.7: [8086:3cb7] type 00 class 0x088000
[    7.714216] pci 0000:3f:11.0: [8086:3cb8] type 00 class 0x088000
[    7.714316] pci 0000:3f:13.0: [8086:3ce4] type 00 class 0x088000
[    7.714403] pci 0000:3f:13.1: [8086:3c43] type 00 class 0x110100
[    7.714492] pci 0000:3f:13.4: [8086:3ce6] type 00 class 0x110100
[    7.714582] pci 0000:3f:13.5: [8086:3c44] type 00 class 0x110100
[    7.714665] pci 0000:3f:13.6: [8086:3c45] type 00 class 0x088000
[    7.714849]  pci0000:3f: Requesting ACPI _OSC control (0x15)
[    7.715093]  pci0000:3f: ACPI _OSC control (0x15) granted
[    7.717756] ACPI: PCI Root Bridge [P1B1] (domain 0000 [bus 7f])
[    7.717892] PCI host bridge to bus 0000:7f
[    7.718122]  pci0000:7f: Requesting ACPI _OSC control (0x15)
[    7.718364]  pci0000:7f: ACPI _OSC control (0x15) granted
[    7.718519] ACPI: PCI Interrupt Link [LK00] (IRQs 3 4 5 6 7 11 14 *15)
[    7.719323] ACPI: PCI Interrupt Link [LK01] (IRQs 3 4 5 6 7 11 *14 15)
[    7.720145] ACPI: PCI Interrupt Link [LK02] (IRQs 3 4 5 6 7 11 14 15) *0, disabled.
[    7.721086] ACPI: PCI Interrupt Link [LK03] (IRQs 3 4 5 6 7 *11 14 15)
[    7.721855] ACPI: PCI Interrupt Link [LK04] (IRQs 3 4 *5 6 7 11 14 15)
[    7.722639] ACPI: PCI Interrupt Link [LK05] (IRQs 3 4 5 6 7 11 14 15) *0, disabled.
[    7.723589] ACPI: PCI Interrupt Link [LK06] (IRQs 3 4 5 *6 7 11 14 15)
[    7.724358] ACPI: PCI Interrupt Link [LK07] (IRQs 3 4 5 6 7 11 *14 15)
[    7.725132] xen/balloon: Initialising balloon driver.
[    7.838623] xen-balloon: Initialising balloon driver.
[    7.838775] xen/balloon: Xen selfballooning driver disabled for domain0.
[    7.839127] vgaarb: device added: PCI:0000:06:00.0,decodes=io+mem,owns=io+mem,locks=none
[    7.839278] vgaarb: loaded
[    7.839369] vgaarb: bridge control possible 0000:06:00.0
[    7.839617] SCSI subsystem initialized
[    7.839788] libata version 3.00 loaded.
[    7.839807] ACPI: bus type usb registered
[    7.839937] usbcore: registered new interface driver usbfs
[    7.840052] usbcore: registered new interface driver hub
[    7.840187] usbcore: registered new device driver usb
[    7.840377] PCI: Using ACPI for IRQ routing
[    7.853464] PCI: pci_cache_line_size set to 64 bytes
[    7.854079] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
[    7.854081] e820: reserve RAM buffer [mem 0xcb2e0000-0xcbffffff]
[    7.854189] NetLabel: Initializing
[    7.854285] NetLabel:  domain hash size = 128
[    7.854382] NetLabel:  protocols = UNLABELED CIPSOv4
[    7.854487] NetLabel:  unlabeled traffic allowed by default
[    7.854680] Switching to clocksource xen
[    7.861516] AppArmor: AppArmor Filesystem Enabled
[    7.861655] pnp: PnP ACPI init
[    7.861757] ACPI: bus type pnp registered
[    7.862258] pnp 00:00: [bus 00-3e]
[    7.862261] pnp 00:00: [io  0x0cf8-0x0cff]
[    7.862263] pnp 00:00: [io  0x0000-0x03af window]
[    7.862265] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    7.862266] pnp 00:00: [io  0x03b0-0x03df window]
[    7.862268] pnp 00:00: [io  0x0d00-0x1fff window]
[    7.862270] pnp 00:00: [io  0x2000-0xffff window]
[    7.862271] pnp 00:00: [io  0x0000 window]
[    7.862273] pnp 00:00: [io  0x0000 window]
[    7.862275] pnp 00:00: [io  0x0000 window]
[    7.862276] pnp 00:00: [io  0x0000 window]
[    7.862278] pnp 00:00: [io  0x0000 window]
[    7.862280] pnp 00:00: [io  0x0000 window]
[    7.862281] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    7.862283] pnp 00:00: [mem 0xd0000000-0xfbffffff window]
[    7.862285] pnp 00:00: [mem 0x00000000 window]
[    7.862286] pnp 00:00: [mem 0x00000000 window]
[    7.862288] pnp 00:00: [mem 0x00000000 window]
[    7.862290] pnp 00:00: [mem 0x00000000 window]
[    7.862291] pnp 00:00: [mem 0x00000000 window]
[    7.862293] pnp 00:00: [mem 0x00000000 window]
[    7.862297] pnp 00:00: [mem 0x00000000 window]
[    7.862298] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[    7.862354] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    7.862408] pnp 00:01: [io  0x0080-0x009f]
[    7.862410] pnp 00:01: [io  0x0000-0x001f]
[    7.862411] pnp 00:01: [io  0x00c0-0x00df]
[    7.862413] pnp 00:01: [dma 4]
[    7.862441] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    7.862456] pnp 00:02: [io  0x00f0-0x00ff]
[    7.862460] xen: registering gsi 13 triggering 1 polarity 0
[    7.862468] pnp 00:02: [irq 13]
[    7.862497] pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active)
[    7.862513] pnp 00:03: [io  0x0061]
[    7.862578] system 00:03: Plug and Play ACPI device, IDs PNP0c01 (active)
[    7.862594] pnp 00:04: [io  0x0070-0x007f]
[    7.862596] xen: registering gsi 8 triggering 1 polarity 0
[    7.862600] pnp 00:04: [irq 8]
[    7.862630] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    7.862760] pnp 00:05: [io  0x03f8-0x03ff]
[    7.862762] xen: registering gsi 4 triggering 1 polarity 0
[    7.862766] pnp 00:05: [irq 4]
[    7.862830] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    7.862969] pnp 00:06: [io  0x02f8-0x02ff]
[    7.862971] xen: registering gsi 3 triggering 1 polarity 0
[    7.862972] Already setup the GSI :3
[    7.863068] pnp 00:06: [irq 3]
[    7.863128] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    7.863408] pnp 00:07: [io  0x0800-0x087f]
[    7.863410] pnp 00:07: [io  0x00e0-0x00e7]
[    7.863411] pnp 00:07: [io  0x0880-0x08ff]
[    7.863413] pnp 00:07: [io  0x0900-0x091f]
[    7.863414] pnp 00:07: [io  0x0920-0x0923]
[    7.863416] pnp 00:07: [io  0x0924]
[    7.863418] pnp 00:07: [io  0x0370-0x0377]
[    7.863421] pnp 00:07: [io  0x0ca0-0x0ca7]
[    7.863423] pnp 00:07: [io  0x0ca9-0x0cab]
[    7.863424] pnp 00:07: [io  0x0cad-0x0caf]
[    7.863426] pnp 00:07: [io  0x0cb0-0x0cbf]
[    7.863428] pnp 00:07: [io  0x0060-0x005f disabled]
[    7.863429] pnp 00:07: [io  0x0064-0x0063 disabled]
[    7.863500] system 00:07: [io  0x0800-0x087f] has been reserved
[    7.863603] system 00:07: [io  0x0880-0x08ff] has been reserved
[    7.863703] system 00:07: [io  0x0900-0x091f] has been reserved
[    7.863804] system 00:07: [io  0x0920-0x0923] has been reserved
[    7.863905] system 00:07: [io  0x0924] has been reserved
[    7.864005] system 00:07: [io  0x0370-0x0377] has been reserved
[    7.864106] system 00:07: [io  0x0ca0-0x0ca7] has been reserved
[    7.864207] system 00:07: [io  0x0ca9-0x0cab] has been reserved
[    7.864307] system 00:07: [io  0x0cad-0x0caf] has been reserved
[    7.864408] system 00:07: [io  0x0cb0-0x0cbf] has been reserved
[    7.864510] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    7.864545] pnp 00:08: [io  0x0ca8]
[    7.864547] pnp 00:08: [io  0x0cac]
[    7.864549] xen: registering gsi 10 triggering 1 polarity 0
[    7.864554] pnp 00:08: [irq 10]
[    7.864618] system 00:08: [io  0x0ca8] has been reserved
[    7.864725] system 00:08: [io  0x0cac] has been reserved
[    7.864825] system 00:08: Plug and Play ACPI device, IDs IPI0001 PNP0c01 (active)
[    7.865108] pnp 00:09: [mem 0xe0000000-0xe3efffff]
[    7.865177] system 00:09: [mem 0xe0000000-0xe3efffff] has been reserved
[    7.865282] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    7.865334] pnp 00:0a: [bus 3f]
[    7.865368] pnp 00:0a: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    7.865384] pnp 00:0b: [mem 0xe3f00000-0xe3ffffff]
[    7.865454] system 00:0b: [mem 0xe3f00000-0xe3ffffff] has been reserved
[    7.865559] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    7.865584] pnp 00:0c: [mem 0xdf900000-0xdf901fff]
[    7.865648] system 00:0c: [mem 0xdf900000-0xdf901fff] has been reserved
[    7.865753] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    7.865785] pnp 00:0d: [bus 7f]
[    7.865821] pnp 00:0d: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    7.865853] pnp 00:0e: [mem 0xfed00000-0xfed003ff]
[    7.865884] pnp 00:0e: Plug and Play ACPI device, IDs PNP0103 (active)
[    7.866021] pnp: PnP ACPI: found 15 devices
[    7.866117] ACPI: ACPI bus type pnp unregistered
[    7.873071] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    7.873186] pci 0000:01:00.1: address space collision: [mem 0xdd000000-0xdd03ffff pref] conflicts with 0000:01:00.0 [mem 0xdd000000-0xdd03ffff pref]
[    7.873330] pci 0000:02:00.1: address space collision: [mem 0xdd800000-0xdd83ffff pref] conflicts with 0000:02:00.0 [mem 0xdd800000-0xdd83ffff pref]
[    7.874559] pci 0000:00:01.0: PCI bridge to [bus 08-08]
[    7.874661] pci 0000:00:01.0:   bridge window [io  0xf000-0xffff]
[    7.874767] pci 0000:00:01.0:   bridge window [mem 0xdc000000-0xdcffffff]
[    7.874887] pci 0000:00:01.1: PCI bridge to [bus 09-09]
[    7.875002] pci 0000:00:03.0: PCI bridge to [bus 0a-0a]
[    7.875116] pci 0000:00:11.0: PCI bridge to [bus 0b-0b]
[    7.875233] pci 0000:00:1c.0: PCI bridge to [bus 0c-0c]
[    7.875352] pci 0000:01:00.1: BAR 6: assigned [mem 0xd9000000-0xd903ffff pref]
[    7.875478] pci 0000:00:1c.4: PCI bridge to [bus 01-01]
[    7.875592] pci 0000:00:1c.4:   bridge window [mem 0xdd000000-0xdd7fffff]
[    7.875701] pci 0000:00:1c.4:   bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[    7.875837] pci 0000:02:00.1: BAR 6: assigned [mem 0xd9100000-0xd913ffff pref]
[    7.875963] pci 0000:00:1c.6: PCI bridge to [bus 02-02]
[    7.876067] pci 0000:00:1c.6:   bridge window [mem 0xdd800000-0xddffffff]
[    7.876174] pci 0000:00:1c.6:   bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[    7.876401] pci 0000:05:00.0: PCI bridge to [bus 06-06]
[    7.876639] pci 0000:05:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.876836] pci 0000:05:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.877157] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[    7.877422] pci 0000:04:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.877619] pci 0000:04:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.877939] pci 0000:04:01.0: PCI bridge to [bus 07-07]
[    7.878181] pci 0000:04:01.0:   bridge window [mem 0xdf700000-0xdf7fffff]
[    7.878633] pci 0000:03:00.0: PCI bridge to [bus 04-07]
[    7.878875] pci 0000:03:00.0:   bridge window [mem 0xde000000-0xdf7fffff]
[    7.879061] pci 0000:03:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.879426] pci 0000:00:1c.7: PCI bridge to [bus 03-07]
[    7.879532] pci 0000:00:1c.7:   bridge window [mem 0xde000000-0xdf7fffff]
[    7.881583] pci 0000:00:1c.7:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.881718] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
[    7.881852] xen: registering gsi 53 triggering 0 polarity 1
[    7.881869] xen: --> pirq=53 -> irq=53 (gsi=53)
[    7.881881] xen: registering gsi 53 triggering 0 polarity 1
[    7.881883] Already setup the GSI :53
[    7.881984] xen: registering gsi 53 triggering 0 polarity 1
[    7.881985] Already setup the GSI :53
[    7.882086] xen: registering gsi 16 triggering 0 polarity 1
[    7.882092] xen: --> pirq=16 -> irq=16 (gsi=16)
[    7.882108] xen: registering gsi 16 triggering 0 polarity 1
[    7.882110] Already setup the GSI :16
[    7.882218] xen: registering gsi 19 triggering 0 polarity 1
[    7.882223] xen: --> pirq=19 -> irq=19 (gsi=19)
[    7.882650] pci 0000:00:1e.0: setting latency timer to 64
[    7.882656] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    7.882658] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    7.882659] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    7.882661] pci_bus 0000:00: resource 7 [io  0x0d00-0x1fff]
[    7.882663] pci_bus 0000:00: resource 8 [io  0x2000-0xffff]
[    7.882664] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff]
[    7.882666] pci_bus 0000:00: resource 10 [mem 0xd0000000-0xfbffffff]
[    7.882668] pci_bus 0000:00: resource 11 [mem 0xfed40000-0xfed44fff]
[    7.882670] pci_bus 0000:08: resource 0 [io  0xf000-0xffff]
[    7.882671] pci_bus 0000:08: resource 1 [mem 0xdc000000-0xdcffffff]
[    7.882674] pci_bus 0000:01: resource 1 [mem 0xdd000000-0xdd7fffff]
[    7.882675] pci_bus 0000:01: resource 2 [mem 0xd9000000-0xd90fffff 64bit pref]
[    7.882677] pci_bus 0000:02: resource 1 [mem 0xdd800000-0xddffffff]
[    7.882679] pci_bus 0000:02: resource 2 [mem 0xd9100000-0xd91fffff 64bit pref]
[    7.882681] pci_bus 0000:03: resource 1 [mem 0xde000000-0xdf7fffff]
[    7.882683] pci_bus 0000:03: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.882684] pci_bus 0000:04: resource 1 [mem 0xde000000-0xdf7fffff]
[    7.882686] pci_bus 0000:04: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.882688] pci_bus 0000:05: resource 1 [mem 0xde000000-0xdeffffff]
[    7.882690] pci_bus 0000:05: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.882692] pci_bus 0000:06: resource 1 [mem 0xde000000-0xdeffffff]
[    7.882693] pci_bus 0000:06: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.882695] pci_bus 0000:07: resource 1 [mem 0xdf700000-0xdf7fffff]
[    7.882697] pci_bus 0000:0d: resource 4 [io  0x0000-0x03af]
[    7.882699] pci_bus 0000:0d: resource 5 [io  0x03e0-0x0cf7]
[    7.882700] pci_bus 0000:0d: resource 6 [io  0x03b0-0x03df]
[    7.882702] pci_bus 0000:0d: resource 7 [io  0x0d00-0x1fff]
[    7.882704] pci_bus 0000:0d: resource 8 [io  0x2000-0xffff]
[    7.882705] pci_bus 0000:0d: resource 9 [mem 0x000a0000-0x000bffff]
[    7.882707] pci_bus 0000:0d: resource 10 [mem 0xd0000000-0xfbffffff]
[    7.882709] pci_bus 0000:0d: resource 11 [mem 0xfed40000-0xfed44fff]
[    7.882738] NET: Registered protocol family 2
[    7.883819] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    7.886284] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    7.888476] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    7.888797] TCP: Hash tables configured (established 524288 bind 65536)
[    7.888900] TCP: reno registered
[    7.889124] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    7.889454] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    7.889746] NET: Registered protocol family 1
[    7.889888] xen: registering gsi 23 triggering 0 polarity 1
[    7.889906] xen: --> pirq=23 -> irq=23 (gsi=23)
[    7.902902] xen: registering gsi 22 triggering 0 polarity 1
[    7.902911] xen: --> pirq=22 -> irq=22 (gsi=22)
[    7.903276] pci 0000:06:00.0: Boot video device
[    7.903404] PCI: CLS 64 bytes, default 64
[    7.904067] audit: initializing netlink socket (disabled)
[    7.904184] type=2000 audit(1357119875.886:1): initialized
[    7.926046] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    7.927307] VFS: Disk quotas dquot_6.5.2
[    7.927443] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    7.927972] fuse init (API version 7.19)
[    7.928151] msgmni has been set to 6854
[    7.928761] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    7.928928] io scheduler noop registered
[    7.929024] io scheduler deadline registered (default)
[    7.929144] io scheduler cfq registered
[    7.934556] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    7.934674] pci 0000:08:00.0: Signaling PME through PCIe PME interrupt
[    7.934781] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    7.934804] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    7.934920] pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
[    7.934943] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    7.935051] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    7.935079] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    7.935186] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    7.935209] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    7.935316] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    7.935339] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    7.935442] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    7.935544] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    7.935650] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    7.935674] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
[    7.935777] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    7.935879] pci 0000:02:00.1: Signaling PME through PCIe PME interrupt
[    7.935986] pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
[    7.936008] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    7.936115] pcieport 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    7.936235] pcieport 0000:04:00.0: Signaling PME through PCIe PME interrupt
[    7.936338] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    7.936440] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    7.936542] pcieport 0000:04:01.0: Signaling PME through PCIe PME interrupt
[    7.936649] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[    7.936670] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    7.936785] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    7.936945] intel_idle: does not run on family 6 model 45
[    7.937012] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.937142] ACPI: Power Button [PWRF]
[    7.940804] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.941078] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    7.941362] Event-channel device installed.
[    7.941613] xen-pciback: backend is vpci
[    7.942098] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.962817] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    7.984730] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    7.985217] hpet_acpi_add: no address or irqs in _CRS
[    7.985326] Linux agpgart interface v0.103
[    7.986787] brd: module loaded
[    7.987696] loop: module loaded
[    7.987884] ahci 0000:00:1f.2: version 3.0
[    7.987894] xen: registering gsi 20 triggering 0 polarity 1
[    7.987906] xen: --> pirq=20 -> irq=20 (gsi=20)
[    8.002892] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    8.003023] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    8.003156] ahci 0000:00:1f.2: setting latency timer to 64
[    8.043260] scsi0 : ahci
[    8.043433] scsi1 : ahci
[    8.043592] scsi2 : ahci
[    8.043746] scsi3 : ahci
[    8.043900] scsi4 : ahci
[    8.044054] scsi5 : ahci
[    8.044177] ata1: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff100 irq 166
[    8.044304] ata2: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff180 irq 166
[    8.044431] ata3: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff200 irq 166
[    8.044558] ata4: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff280 irq 166
[    8.044685] ata5: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff300 irq 166
[    8.044841] ata6: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff380 irq 166
[    8.045238] Fixed MDIO Bus: probed
[    8.045362] tun: Universal TUN/TAP device driver, 1.6
[    8.045460] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    8.045613] PPP generic driver version 2.4.2
[    8.045749] Initialising Xen virtual ethernet driver.
[    8.045858] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    8.045979] xen: registering gsi 23 triggering 0 polarity 1
[    8.045982] Already setup the GSI :23
[    8.046096] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    8.046100] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    8.046203] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    8.046406] ehci_hcd 0000:00:1a.0: debug port 2
[    8.050389] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    8.050408] ehci_hcd 0000:00:1a.0: irq 23, io mem 0xdf8fd000
[    8.058858] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    8.058991] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    8.059094] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.059221] usb usb1: Product: EHCI Host Controller
[    8.059318] usb usb1: Manufacturer: Linux 3.5.0-18-zdom0 ehci_hcd
[    8.059419] usb usb1: SerialNumber: 0000:00:1a.0
[    8.059609] hub 1-0:1.0: USB hub found
[    8.059709] hub 1-0:1.0: 2 ports detected
[    8.059875] xen: registering gsi 22 triggering 0 polarity 1
[    8.059878] Already setup the GSI :22
[    8.059993] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    8.059996] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    8.060098] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    8.060292] ehci_hcd 0000:00:1d.0: debug port 2
[    8.064274] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    8.064294] ehci_hcd 0000:00:1d.0: irq 22, io mem 0xdf8fe000
[    8.074861] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    8.074983] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    8.075086] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.075212] usb usb2: Product: EHCI Host Controller
[    8.075309] usb usb2: Manufacturer: Linux 3.5.0-18-zdom0 ehci_hcd
[    8.075410] usb usb2: SerialNumber: 0000:00:1d.0
[    8.075591] hub 2-0:1.0: USB hub found
[    8.075689] hub 2-0:1.0: 2 ports detected
[    8.075884] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    8.076005] uhci_hcd: USB Universal Host Controller Interface driver
[    8.076157] usbcore: registered new interface driver libusual
[    8.076286] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    8.077293] i8042: No controller found
[    8.077461] mousedev: PS/2 mouse device common for all mice
[    8.077660] rtc_cmos 00:04: RTC can wake from S4
[    8.077900] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    8.078033] rtc0: alarms up to one day, y3k, 242 bytes nvram
[    8.078187] device-mapper: uevent: version 1.0.3
[    8.078345] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    8.078478] EFI Variables Facility v0.08 2004-May-17
[    8.078761] ashmem: initialized
[    8.078994] TCP: cubic registered
[    8.079167] NET: Registered protocol family 10
[    8.079429] NET: Registered protocol family 17
[    8.079534] Key type dns_resolver registered
[    8.079773] PM: Hibernation image not present or could not be loaded.
[    8.079782] registered taskstats version 1
[    8.083347] Key type trusted registered
[    8.086383] Key type encrypted registered
[    8.092540]   Magic number: 13:753:726
[    8.092642] block loop6: hash matches
[    8.092758] pci 0000:01:00.1: hash matches
[    8.092982] rtc_cmos 00:04: setting system clock to 2013-01-02 09:44:35 UTC (1357119875)
[    8.093172] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    8.093274] EDD information not available.
[    8.362866] ata1: SATA link down (SStatus 0 SControl 300)
[    8.362984] ata2: SATA link down (SStatus 0 SControl 300)
[    8.363101] ata6: SATA link down (SStatus 0 SControl 300)
[    8.363221] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    8.363344] ata4: SATA link down (SStatus 0 SControl 300)
[    8.363463] ata3: SATA link down (SStatus 0 SControl 300)
[    8.363583] ata5.00: ATAPI: HL-DT-ST DVD-ROM DH41N, A101, max UDMA/100
[    8.364227] ata5.00: configured for UDMA/100
[    8.365882] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-ROM DH41N    A101 PQ: 0 ANSI: 5
[    8.368728] sr0: scsi3-mmc drive: 12x/48x cd/rw xa/form2 cdda tray
[    8.368831] cdrom: Uniform CD-ROM driver Revision: 3.20
[    8.369045] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    8.369121] sr 4:0:0:0: Attached scsi generic sg0 type 5
[    8.369622] Freeing unused kernel memory: 948k freed
[    8.369860] Write protecting the kernel read-only data: 12288k
[    8.370866] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    8.375034] Freeing unused kernel memory: 1320k freed
[    8.375700] Freeing unused kernel memory: 1020k freed
[    8.412195] udevd[145]: starting version 175
[    8.422127] md: linear personality registered for level -1
[    8.427764] md: multipath personality registered for level -4
[    8.432060] md: raid0 personality registered for level 0
[    8.435426] md: raid1 personality registered for level 1
[    8.439040] async_tx: api initialized (async)
[    8.440038] megasas: 00.00.06.15-rc1 Mon. Mar. 19 17:00:00 PDT 2012
[    8.440167] megasas: 0x1000:0x0073:0x1028:0x1f4e: bus 8:slot 0:func 0
[    8.440353] xen: registering gsi 34 triggering 0 polarity 1
[    8.440378] xen: --> pirq=34 -> irq=34 (gsi=34)
[    8.440518] megasas: FW now in Ready state
[    8.460924] tg3.c:v3.123 (March 21, 2012)
[    8.461068] xen: registering gsi 16 triggering 0 polarity 1
[    8.461076] Already setup the GSI :16
[    8.475512] tg3 0000:01:00.0: eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address e0:db:55:07:4a:14
[    8.475674] tg3 0000:01:00.0: eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    8.475825] tg3 0000:01:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    8.475977] tg3 0000:01:00.0: eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    8.476263] xen: registering gsi 17 triggering 0 polarity 1
[    8.476286] xen: --> pirq=17 -> irq=17 (gsi=17)
[    8.497820] tg3 0000:01:00.1: eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address e0:db:55:07:4a:16
[    8.497960] tg3 0000:01:00.1: eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    8.498094] tg3 0000:01:00.1: eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    8.498223] tg3 0000:01:00.1: eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    8.498440] xen: registering gsi 18 triggering 0 polarity 1
[    8.498453] xen: --> pirq=18 -> irq=18 (gsi=18)
[    8.503165] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    8.503271] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.503572] hub 1-1:1.0: USB hub found
[    8.503787] hub 1-1:1.0: 6 ports detected
[    8.506859] raid6: sse2x1    5215 MB/s
[    8.511718] tg3 0000:02:00.0: eth2: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 00:10:18:e4:b6:0a
[    8.511865] tg3 0000:02:00.0: eth2: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    8.512000] tg3 0000:02:00.0: eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    8.512139] tg3 0000:02:00.0: eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    8.512370] xen: registering gsi 19 triggering 0 polarity 1
[    8.512374] Already setup the GSI :19
[    8.533944] tg3 0000:02:00.1: eth3: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 00:10:18:e4:b6:0b
[    8.534084] tg3 0000:02:00.1: eth3: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    8.534218] tg3 0000:02:00.1: eth3: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    8.534346] tg3 0000:02:00.1: eth3: dma_rwctrl[00000001] dma_mask[64-bit]
[    8.534868] megasas_init_mfi: fw_support_ieee=67108864
[    8.534958] megasas: INIT adapter done
[    8.574854] raid6: sse2x2    7975 MB/s
[    8.606890] scsi6 : LSI SAS based MegaRAID driver
[    8.608968] scsi 6:0:0:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    8.611310] scsi 6:0:1:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    8.613679] scsi 6:0:2:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    8.614871] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    8.615913] scsi 6:0:3:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    8.642850] raid6: sse2x4    9209 MB/s
[    8.642947] raid6: using algorithm sse2x4 (9209 MB/s)
[    8.643045] raid6: using ssse3x2 recovery algorithm
[    8.643494] sd 6:0:0:0: Attached scsi generic sg1 type 0
[    8.643811] sd 6:0:1:0: Attached scsi generic sg2 type 0
[    8.644093] sd 6:0:2:0: Attached scsi generic sg3 type 0
[    8.644380] sd 6:0:3:0: Attached scsi generic sg4 type 0
[    8.644970] sd 6:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    8.644987] sd 6:0:1:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    8.644999] sd 6:0:2:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    8.645761] sd 6:0:3:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    8.720003] sd 6:0:3:0: [sdd] Write Protect is off
[    8.720105] sd 6:0:3:0: [sdd] Mode Sense: 73 00 00 08
[    8.720814] sd 6:0:1:0: [sdb] Write Protect is off
[    8.720913] sd 6:0:1:0: [sdb] Mode Sense: 73 00 00 08
[    8.721496] sd 6:0:0:0: [sda] Write Protect is off
[    8.721595] sd 6:0:0:0: [sda] Mode Sense: 73 00 00 08
[    8.722430] sd 6:0:2:0: [sdc] Write Protect is off
[    8.722529] sd 6:0:2:0: [sdc] Mode Sense: 73 00 00 08
[    8.722596] sd 6:0:3:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.724490] sd 6:0:2:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.735628] sd 6:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.737312] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    8.747283] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    8.747388] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    8.747686] hub 2-1:1.0: USB hub found
[    8.747907] hub 2-1:1.0: 8 ports detected
[    8.788972]  sdd: sdd1 sdd2 sdd3 sdd4
[    8.791785]  sdc: sdc1 sdc2 sdc3 sdc4
[    8.818909] usb 1-1.3: new high-speed USB device number 3 using ehci_hcd
[    8.856952]  sdb: sdb1 sdb2 sdb3 sdb4
[    8.857476]  sda: sda1 sda2 sda3 sda4
[    8.911805] usb 1-1.3: New USB device found, idVendor=413c, idProduct=a101
[    8.911915] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.912061] usb 1-1.3: Product: Internal Dual SD
[    8.912159] usb 1-1.3: Manufacturer: Dell Computer Corp.
[    8.912258] usb 1-1.3: SerialNumber: 0123456789AB
[    8.914615] Initializing USB Mass Storage driver...
[    8.914858] scsi7 : usb-storage 1-1.3:1.0
[    8.915016] usbcore: registered new interface driver usb-storage
[    8.915127] USB Mass Storage support registered.
[    8.915333] usbcore: registered new interface driver uas
[    8.924384] sd 6:0:3:0: [sdd] Attached SCSI disk
[    8.924573] sd 6:0:2:0: [sdc] Attached SCSI disk
[    8.982933] usb 1-1.6: new high-speed USB device number 4 using ehci_hcd
[    8.983880] sd 6:0:1:0: [sdb] Attached SCSI disk
[    8.984064] sd 6:0:0:0: [sda] Attached SCSI disk
[    8.984943] xor: automatically using best checksumming function:
[    9.022857]    generic_sse:  2856.000 MB/sec
[    9.024190] md: raid6 personality registered for level 6
[    9.024292] md: raid5 personality registered for level 5
[    9.024391] md: raid4 personality registered for level 4
[    9.034595] md: raid10 personality registered for level 10
[    9.075801] usb 1-1.6: New USB device found, idVendor=0624, idProduct=0248
[    9.075908] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    9.076035] usb 1-1.6: Product: Gadget USB HUB
[    9.076145] usb 1-1.6: Manufacturer: no manufacturer
[    9.076243] usb 1-1.6: SerialNumber: 0123456789
[    9.076584] hub 1-1.6:1.0: USB hub found
[    9.076801] hub 1-1.6:1.0: 6 ports detected
[    9.387420] usb 1-1.6.1: new high-speed USB device number 5 using ehci_hcd
[    9.530414] usb 1-1.6.1: New USB device found, idVendor=0624, idProduct=0249
[    9.530519] usb 1-1.6.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6
[    9.530647] usb 1-1.6.1: Product: Keyboard/Mouse Function
[    9.530746] usb 1-1.6.1: Manufacturer: Avocent
[    9.530842] usb 1-1.6.1: SerialNumber: 20110426
[    9.585448] usbcore: registered new interface driver usbhid
[    9.585550] usbhid: USB HID core driver
[    9.915453] scsi 7:0:0:0: Direct-Access     Dell     Internal Dual SD 1.:  PQ: 0 ANSI: 5
[    9.916397] sd 7:0:0:0: Attached scsi generic sg5 type 0
[    9.916945] sd 7:0:0:0: [sde] 1990656 512-byte logical blocks: (1.01 GB/972 MiB)
[    9.917817] sd 7:0:0:0: [sde] Write Protect is off
[    9.917916] sd 7:0:0:0: [sde] Mode Sense: 0b 00 00 08
[    9.918693] sd 7:0:0:0: [sde] No Caching mode page present
[    9.918793] sd 7:0:0:0: [sde] Assuming drive cache: write through
[    9.921066] sd 7:0:0:0: [sde] No Caching mode page present
[    9.921168] sd 7:0:0:0: [sde] Assuming drive cache: write through
[    9.936962]  sde: sde1
[    9.939571] sd 7:0:0:0: [sde] No Caching mode page present
[    9.939674] sd 7:0:0:0: [sde] Assuming drive cache: write through
[    9.939776] sd 7:0:0:0: [sde] Attached SCSI disk
[   39.729485] kjournald starting.  Commit interval 5 seconds
[   39.729503] EXT3-fs (dm-7): mounted filesystem with ordered data mode
[   59.368449] EXT3-fs (loop0): error: couldn't mount because of unsupported optional features (240)
[   59.395373] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[   59.548205] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   59.548211] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   59.548216] IPv6: ADDRCONF(NETDEV_UP): eth2: link is not ready
[   59.548220] IPv6: ADDRCONF(NETDEV_UP): eth3: link is not ready
[   59.555167] udevd[610]: starting version 175
[   59.555782] EXT4-fs (loop0): re-mounted. Opts: (null)
[   59.604826] wmi: Mapper loaded
[   59.606252] ACPI Error: No handler for Region [SYSI] (ffff88010485c1b0) [IPMI] (20120320/evregion-376)
[   59.606259] ACPI Error: Region IPMI (ID=7) has no handler (20120320/exfldio-306)
[   59.606266] ACPI Error: Method parse/execution failed [\_SB_.PMI0._GHL] (Node ffff88010485bdc0), AE_NOT_EXIST (20120320/psparse-536)
[   59.606278] ACPI Error: Method parse/execution failed [\_SB_.PMI0._PMC] (Node ffff88010485bd20), AE_NOT_EXIST (20120320/psparse-536)
[   59.606293] ACPI Exception: AE_NOT_EXIST, Evaluating _PMC (20120320/power_meter-754)
[   59.614349] EXT4-fs (sde1): warning: mounting unchecked fs, running e2fsck is recommended
[   59.617995] EXT4-fs (sde1): mounted filesystem without journal. Opts: (null)
[   59.620651] mei 0000:00:16.0: Device doesn't have valid ME Interface
[   59.620655] mei 0000:00:16.0: initialization failed.
[   59.625995] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.0/input/input1
[   59.626127] hid-generic 0003:0624:0249.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input0
[   59.626285] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.1/input/input2
[   59.626415] hid-generic 0003:0624:0249.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input1
[   59.626631] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.2/input/input3
[   59.627588] hid-generic 0003:0624:0249.0003: input,hidraw2: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input2
[   59.634931] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   59.635477] ACPI Warning: 0x0000000000000860-0x000000000000087f SystemIO conflicts with Region \_GPE.TCOS 1 (20120320/utaddress-251)
[   59.635485] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   59.635489] lpc_ich: Resource conflict(s) found affecting iTCO_wdt
[   59.658177] EDAC MC: Ver: 2.1.0
[   59.660213] EDAC sbridge: Seeking for: dev 0e.0 PCI ID 8086:3ca0
[   59.660229] EDAC sbridge: Seeking for: dev 0e.0 PCI ID 8086:3ca0
[   59.660234] EDAC sbridge: Seeking for: dev 0f.0 PCI ID 8086:3ca8
[   59.660244] EDAC sbridge: Seeking for: dev 0f.0 PCI ID 8086:3ca8
[   59.660248] EDAC sbridge: Seeking for: dev 0f.1 PCI ID 8086:3c71
[   59.660257] EDAC sbridge: Seeking for: dev 0f.1 PCI ID 8086:3c71
[   59.660262] EDAC sbridge: Seeking for: dev 0f.2 PCI ID 8086:3caa
[   59.660272] EDAC sbridge: Seeking for: dev 0f.2 PCI ID 8086:3caa
[   59.660275] EDAC sbridge: Seeking for: dev 0f.3 PCI ID 8086:3cab
[   59.660283] EDAC sbridge: Seeking for: dev 0f.3 PCI ID 8086:3cab
[   59.660288] EDAC sbridge: Seeking for: dev 0f.4 PCI ID 8086:3cac
[   59.660298] EDAC sbridge: Seeking for: dev 0f.4 PCI ID 8086:3cac
[   59.660302] EDAC sbridge: Seeking for: dev 0f.5 PCI ID 8086:3cad
[   59.660311] EDAC sbridge: Seeking for: dev 0f.5 PCI ID 8086:3cad
[   59.660316] EDAC sbridge: Seeking for: dev 11.0 PCI ID 8086:3cb8
[   59.660325] EDAC sbridge: Seeking for: dev 11.0 PCI ID 8086:3cb8
[   59.660327] EDAC sbridge: Seeking for: dev 0c.6 PCI ID 8086:3cf4
[   59.660333] EDAC sbridge: Seeking for: dev 0c.6 PCI ID 8086:3cf4
[   59.660337] EDAC sbridge: Seeking for: dev 0c.7 PCI ID 8086:3cf6
[   59.660345] EDAC sbridge: Seeking for: dev 0c.7 PCI ID 8086:3cf6
[   59.660350] EDAC sbridge: Seeking for: dev 0d.6 PCI ID 8086:3cf5
[   59.660359] EDAC sbridge: Seeking for: dev 0d.6 PCI ID 8086:3cf5
[   59.660502] EDAC MC0: Giving out device to 'sbridge_edac.c' 'Sandy Bridge Socket#0': DEV 0000:3f:0e.0
[   59.660504] EDAC sbridge: Driver loaded.
[   59.669213] init: zynstra-ssh-keys (local-filesystems) main process (706) terminated with status 1
[   59.709342] microcode: CPU0 sig=0x206d7, pf=0x8, revision=0x70d
[   59.740532] device-mapper: multipath: version 1.4.0 loaded
[   59.791098] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   59.827777] microcode: CPU1 sig=0x206d7, pf=0x8, revision=0x70d
[   59.834529] microcode: CPU2 sig=0x206d7, pf=0x8, revision=0x70d
[   59.837691] microcode: CPU3 sig=0x206d7, pf=0x8, revision=0x70d
[   59.840714] microcode: CPU4 sig=0x206d7, pf=0x8, revision=0x70d
[   59.843749] microcode: CPU5 sig=0x206d7, pf=0x8, revision=0x70d
[   59.846682] microcode: CPU6 sig=0x206d7, pf=0x8, revision=0x70d
[   59.849366] microcode: CPU7 sig=0x206d7, pf=0x8, revision=0x70d
[   59.852305] microcode: CPU8 sig=0x206d7, pf=0x8, revision=0x70d
[   59.855551] microcode: CPU9 sig=0x206d7, pf=0x8, revision=0x70d
[   59.858794] microcode: CPU10 sig=0x206d7, pf=0x8, revision=0x70d
[   59.862302] microcode: CPU11 sig=0x206d7, pf=0x8, revision=0x70d
[   59.865647] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   59.896879] init: failsafe main process (1077) killed by TERM signal

[-- Attachment #3: 4096m-xm-dmesg.txt --]
[-- Type: text/plain, Size: 5807 bytes --]

 __  __            _  _    ____    ___  
 \ \/ /___ _ __   | || |  |___ \  / _ \ 
  \  // _ \ '_ \  | || |_   __) || | | |
  /  \  __/ | | | |__   _| / __/ | |_| |
 /_/\_\___|_| |_|    |_|(_)_____(_)___/ 
                                        
(XEN) Xen version 4.2.0 (@dingwall.me.uk) (gcc (Gentoo 4.5.4 p1.0, pie-0.4.7) 4.5.4) Fri Sep 21 16:25:46 BST 2012
(XEN) Latest ChangeSet: unavailable
(XEN) Bootloader: GRUB 2.00-7ubuntu11
(XEN) Command line: placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 dom0_mem=4096m loglevel=8 debug
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: none; EDID transfer time: 0 seconds
(XEN)  EDID info not retrieved because no DDC retrieval method detected
(XEN) Disc information:
(XEN)  Found 5 MBR signatures
(XEN)  Found 5 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009c000 (usable)
(XEN)  0000000000100000 - 00000000cb2e0000 (usable)
(XEN)  00000000cb2e0000 - 00000000cd31c000 (reserved)
(XEN)  00000000cd31c000 - 00000000cd35b000 (ACPI data)
(XEN)  00000000cd35b000 - 00000000d0000000 (reserved)
(XEN)  00000000e0000000 - 00000000f0000000 (reserved)
(XEN)  00000000fe000000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000830000000 (usable)
(XEN) ACPI: RSDP 000F13A0, 0024 (r2 DELL  )
(XEN) ACPI: XSDT 000F14A8, 00A4 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: FACP CD3411CC, 00F4 (r3 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: DSDT CD31C000, 68A3 (r1 DELL   PE_SC3          1 INTL 20110211)
(XEN) ACPI: FACS CD343000, 0040
(XEN) ACPI: APIC CD340478, 015E (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SPCR CD3405E4, 0050 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: HPET CD340638, 0038 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: DMAR CD340674, 00E0 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: MCFG CD340990, 003C (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: WD__ CD3409D0, 0134 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SLIC CD340B08, 0024 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: ERST CD322A64, 0270 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: HEST CD322CD4, 059C (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: BERT CD3228A4, 0030 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: EINJ CD3228D4, 0190 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: TCPA CD341164, 0064 (r2 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: PC__ CD3410F4, 006E (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SRAT CD340D30, 03C0 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SSDT CD344000, 3358 (r1 INTEL  PPM RCM  80000001 INTL 20061109)
(XEN) System RAM: 32690MB (33475056kB)
(XEN) Domain heap initialised
(XEN) Processor #0 6:13 APIC version 21
(XEN) Processor #2 6:13 APIC version 21
(XEN) Processor #4 6:13 APIC version 21
(XEN) Processor #6 6:13 APIC version 21
(XEN) Processor #8 6:13 APIC version 21
(XEN) Processor #10 6:13 APIC version 21
(XEN) Processor #1 6:13 APIC version 21
(XEN) Processor #3 6:13 APIC version 21
(XEN) Processor #5 6:13 APIC version 21
(XEN) Processor #7 6:13 APIC version 21
(XEN) Processor #9 6:13 APIC version 21
(XEN) Processor #11 6:13 APIC version 21
(XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
(XEN) IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55
(XEN) Enabling APIC mode:  Phys.  Using 2 I/O APICs
(XEN) ERST table is invalid
(XEN) Not enabling x2APIC: depends on iommu_supports_eim.
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 2200.055 MHz processor.
(XEN) Initing memory sharing.
(XEN) I/O virtualisation disabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) Platform timer is 14.318MHz HPET
(XEN) Allocated console ring of 32 KiB.
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Extended Page Tables (EPT)
(XEN)  - Virtual-Processor Identifiers (VPID)
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN)  - Unrestricted Guest
(XEN) HVM: ASIDs enabled.
(XEN) HVM: VMX enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) Brought up 12 CPUs
(XEN) *** LOADING DOMAIN 0 ***
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x2355000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000810000000->0000000814000000 (1021994 pages to be allocated)
(XEN)  Init. ramdisk: 000000082d82a000->000000082ffff800
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff82355000
(XEN)  Init. ramdisk: ffffffff82355000->ffffffff84b2a800
(XEN)  Phys-Mach map: ffffffff84b2b000->ffffffff8532b000
(XEN)  Start info:    ffffffff8532b000->ffffffff8532b4b4
(XEN)  Page tables:   ffffffff8532c000->ffffffff85359000
(XEN)  Boot stack:    ffffffff85359000->ffffffff8535a000
(XEN)  TOTAL:         ffffffff80000000->ffffffff85400000
(XEN)  ENTRY ADDRESS: ffffffff81cf4210
(XEN) Dom0 has maximum 12 VCPUs
(XEN) Scrubbing Free RAM: ...........................................................................................................................................................................................................................................................................................done.
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: Errors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 236kB init memory.

[-- Attachment #4: 4096m-xm-info.txt --]
[-- Type: text/plain, Size: 1200 bytes --]

host                   : zhapcon
release                : 3.5.0-18-zdom0
version                : #29~precise1 SMP Mon Nov 12 13:19:27 GMT 2012
machine                : x86_64
nr_cpus                : 12
nr_nodes               : 1
cores_per_socket       : 6
threads_per_core       : 2
cpu_mhz                : 2200
hw_caps                : bfebfbff:2c100800:00000000:00003f40:13bee3ff:00000000:00000001:00000000
virt_caps              : hvm
total_memory           : 32690
free_memory            : 10435
free_cpus              : 0
xen_major              : 4
xen_minor              : 2
xen_extra              : .0
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          : unavailable
xen_commandline        : placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 dom0_mem=4096m loglevel=8 debug
cc_compiler            : gcc (Gentoo 4.5.4 p1.0, pie-0.4.7) 4.5.4
cc_compile_by          : 
cc_compile_domain      : dingwall.me.uk
cc_compile_date        : Fri Sep 21 16:25:46 BST 2012
xend_config_format     : 4

[-- Attachment #5: max4096m-dmesg.txt --]
[-- Type: text/plain, Size: 67849 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.5.0-18-zdom0 (root@build) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #29~precise1 SMP Mon Nov 12 13:19:27 GMT 2012 (Ubuntu 3.5.0-18.29~precise1-zdom0 3.5.7)
[    0.000000] Command line: root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen nomodeset zyimage=hapcon.ext4
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] Freeing 9c-100 pfn range: 100 pages freed
[    0.000000] 1-1 mapping on 9c->100
[    0.000000] Freeing cb2e0-100000 pfn range: 216352 pages freed
[    0.000000] 1-1 mapping on cb2e0->100000
[    0.000000] Released 216452 pages of unused memory
[    0.000000] Set 216452 page(s) to 1-1 mapping
[    0.000000] Populating 100000-134d84 pfn range: 216452 pages added
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] Xen: [mem 0x0000000000000000-0x000000000009bfff] usable
[    0.000000] Xen: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] Xen: [mem 0x0000000000100000-0x00000000cb2dffff] usable
[    0.000000] Xen: [mem 0x00000000cb2e0000-0x00000000cd31bfff] reserved
[    0.000000] Xen: [mem 0x00000000cd31c000-0x00000000cd35afff] ACPI data
[    0.000000] Xen: [mem 0x00000000cd35b000-0x00000000cfffffff] reserved
[    0.000000] Xen: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] Xen: [mem 0x00000000fe000000-0x00000000ffffffff] reserved
[    0.000000] Xen: [mem 0x0000000100000000-0x0000000134d83fff] usable
[    0.000000] Xen: [mem 0x0000000134d84000-0x000000082fffffff] unusable
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: Dell Inc. PowerEdge T320/0W7H8C, BIOS 1.3.5 08/21/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x134d84 max_arch_pfn = 0x400000000
[    0.000000] e820: last_pfn = 0xcb2e0 max_arch_pfn = 0x400000000
[    0.000000] initial memory mapped: [mem 0x00000000-0x04b2afff]
[    0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xcb2dffff]
[    0.000000]  [mem 0x00000000-0xcb2dffff] page 4k
[    0.000000] kernel direct mapping tables up to 0xcb2dffff @ [mem 0x009a1000-0x00ffffff]
[    0.000000] xen: setting RW the range fd0000 - 1000000
[    0.000000] init_memory_mapping: [mem 0x100000000-0x134d83fff]
[    0.000000]  [mem 0x100000000-0x134d83fff] page 4k
[    0.000000] kernel direct mapping tables up to 0x134d83fff @ [mem 0xca933000-0xcb2dffff]
[    0.000000] xen: setting RW the range caadb000 - cb2e0000
[    0.000000] RAMDISK: [mem 0x02355000-0x04b2afff]
[    0.000000] ACPI: RSDP 00000000000f13a0 00024 (v02 DELL  )
[    0.000000] ACPI: XSDT 00000000000f14a8 000A4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: FACP 00000000cd3411cc 000F4 (v03 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: DSDT 00000000cd31c000 068A3 (v01 DELL   PE_SC3   00000001 INTL 20110211)
[    0.000000] ACPI: FACS 00000000cd343000 00040
[    0.000000] ACPI: APIC 00000000cd340478 0015E (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SPCR 00000000cd3405e4 00050 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: HPET 00000000cd340638 00038 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: XMAR 00000000cd340674 000E0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: MCFG 00000000cd340990 0003C (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: WD__ 00000000cd3409d0 00134 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SLIC 00000000cd340b08 00024 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: ERST 00000000cd322a64 00270 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: HEST 00000000cd322cd4 0059C (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: BERT 00000000cd3228a4 00030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: EINJ 00000000cd3228d4 00190 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: TCPA 00000000cd341164 00064 (v02 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: PC__ 00000000cd3410f4 0006E (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SRAT 00000000cd340d30 003C0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SSDT 00000000cd344000 03358 (v01 INTEL  PPM RCM  80000001 INTL 20061109)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] NUMA turned off
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000134d83fff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x134d83fff]
[    0.000000]   NODE_DATA [mem 0x134d80000-0x134d83fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x134d83fff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0009bfff]
[    0.000000]   node   0: [mem 0x00100000-0xcb2dffff]
[    0.000000]   node   0: [mem 0x100000000-0x134d83fff]
[    0.000000] On node 0 totalpages: 1048560
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 1589 pages reserved
[    0.000000]   DMA zone: 2327 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 811808 pages, LIFO batch:31
[    0.000000]   Normal zone: 3383 pages used for memmap
[    0.000000]   Normal zone: 213069 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x0a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x4c] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x4d] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x4e] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x4f] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x50] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x51] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x52] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x53] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x54] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x55] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x56] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x57] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x58] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x59] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x5a] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x5b] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x5c] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x5d] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x5e] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x5f] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec3f000] gsi_base[32])
[    0.000000] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] SMP: Allowing 32 CPUs, 20 hotplug CPUs
[    0.000000] nr_irqs_gsi: 72
[    0.000000] PM: Registered nosave memory: 000000000009c000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000cb2e0000 - 00000000cd31c000
[    0.000000] PM: Registered nosave memory: 00000000cd31c000 - 00000000cd35b000
[    0.000000] PM: Registered nosave memory: 00000000cd35b000 - 00000000d0000000
[    0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fe000000
[    0.000000] PM: Registered nosave memory: 00000000fe000000 - 0000000100000000
[    0.000000] e820: [mem 0xd0000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.2.0 (preserve-AD)
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88012fe00000 s83584 r8192 d22912 u131072
[    0.000000] pcpu-alloc: s83584 r8192 d22912 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 
[    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 
[    6.768889] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1027204
[    6.768892] Policy zone: Normal
[    6.768894] Kernel command line: root=/dev/loop0 ro console=tty1 console=hvc0 earlyprintk=xen nomodeset zyimage=hapcon.ext4
[    6.769342] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    6.769346] __ex_table already sorted, skipping sort
[    6.803705] software IO TLB [mem 0x12be00000-0x12fdfffff] (64MB) mapped at [ffff88012be00000-ffff88012fdfffff]
[    6.823004] Memory: 3983716k/5060112k available (6861k kernel code, 865872k absent, 210524k reserved, 6310k data, 948k init)
[    6.823097] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    6.823140] Hierarchical RCU implementation.
[    6.823141] 	RCU dyntick-idle grace-period acceleration is enabled.
[    6.823155] NR_IRQS:16640 nr_irqs:1320 16
[    6.823232] xen: sci override: global_irq=9 trigger=0 polarity=0
[    6.823235] xen: registering gsi 9 triggering 0 polarity 0
[    6.823247] xen: --> pirq=9 -> irq=9 (gsi=9)
[    6.823252] xen: acpi sci 9
[    6.823256] xen: --> pirq=1 -> irq=1 (gsi=1)
[    6.823259] xen: --> pirq=2 -> irq=2 (gsi=2)
[    6.823262] xen: --> pirq=3 -> irq=3 (gsi=3)
[    6.823265] xen: --> pirq=4 -> irq=4 (gsi=4)
[    6.823267] xen: --> pirq=5 -> irq=5 (gsi=5)
[    6.823270] xen: --> pirq=6 -> irq=6 (gsi=6)
[    6.823273] xen: --> pirq=7 -> irq=7 (gsi=7)
[    6.823276] xen: --> pirq=8 -> irq=8 (gsi=8)
[    6.823279] xen: --> pirq=10 -> irq=10 (gsi=10)
[    6.823282] xen: --> pirq=11 -> irq=11 (gsi=11)
[    6.823285] xen: --> pirq=12 -> irq=12 (gsi=12)
[    6.823288] xen: --> pirq=13 -> irq=13 (gsi=13)
[    6.823290] xen: --> pirq=14 -> irq=14 (gsi=14)
[    6.823293] xen: --> pirq=15 -> irq=15 (gsi=15)
[    6.826423] Console: colour VGA+ 80x25
[    6.840349] console [tty1] enabled
[    6.840444] console [hvc0] enabled, bootconsole disabled
[    6.844733] allocated 17301504 bytes of page_cgroup
[    6.844837] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    6.845049] Xen: using vcpuop timer interface
[    6.845055] installing Xen timer for CPU 0
[    6.845182] Detected 2200.056 MHz processor.
[    6.845282] Calibrating delay loop (skipped), value calculated using timer frequency.. 4400.11 BogoMIPS (lpj=8800224)
[    6.845511] pid_max: default: 32768 minimum: 301
[    6.845639] Security Framework initialized
[    6.845743] AppArmor: AppArmor initialized
[    6.845838] Yama: becoming mindful.
[    6.846953] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    6.848583] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    6.849176] Mount-cache hash table entries: 256
[    6.849525] Initializing cgroup subsys cpuacct
[    6.849624] Initializing cgroup subsys memory
[    6.849731] Initializing cgroup subsys devices
[    6.849828] Initializing cgroup subsys freezer
[    6.849925] Initializing cgroup subsys blkio
[    6.850021] Initializing cgroup subsys perf_event
[    6.850212] CPU: Physical Processor ID: 0
[    6.850307] CPU: Processor Core ID: 0
[    6.852810] ACPI: Core revision 20120320
[    6.855403] ftrace: allocating 27799 entries in 109 pages
[    6.869373] cpu 0 spinlock event irq 73
[    6.869487] Performance Events: unsupported p6 CPU model 45 no PMU driver, software events only.
[    6.869854] NMI watchdog: disabled (cpu0): hardware events not enabled
[    6.870080] installing Xen timer for CPU 1
[    6.870186] cpu 1 spinlock event irq 80
[    6.870501] installing Xen timer for CPU 2
[    6.870607] cpu 2 spinlock event irq 87
[    6.870889] installing Xen timer for CPU 3
[    6.870994] cpu 3 spinlock event irq 94
[    6.871261] installing Xen timer for CPU 4
[    6.871367] cpu 4 spinlock event irq 101
[    6.873667] installing Xen timer for CPU 5
[    6.873775] cpu 5 spinlock event irq 108
[    6.874069] installing Xen timer for CPU 6
[    6.874175] cpu 6 spinlock event irq 115
[    6.874449] installing Xen timer for CPU 7
[    6.874554] cpu 7 spinlock event irq 122
[    6.874822] installing Xen timer for CPU 8
[    6.874928] cpu 8 spinlock event irq 129
[    6.875203] installing Xen timer for CPU 9
[    6.875309] cpu 9 spinlock event irq 136
[    6.875575] installing Xen timer for CPU 10
[    6.875681] cpu 10 spinlock event irq 143
[    6.875964] installing Xen timer for CPU 11
[    6.876071] cpu 11 spinlock event irq 150
[    6.876296] Brought up 12 CPUs
[    6.876746] devtmpfs: initialized
[    6.877998] EVM: security.selinux
[    6.878093] EVM: security.SMACK64
[    6.878187] EVM: security.capability
[    6.878974] Grant tables using version 2 layout.
[    6.879083] Grant table initialized
[    6.879220] dummy: 
[    6.879348] RTC time:  9:22:26, date: 01/02/13
[    6.879475] NET: Registered protocol family 16
[    6.879693] Trying to unpack rootfs image as initramfs...
[    6.879869] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    6.879999] ACPI: bus type pci registered
[    6.880195] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    6.880328] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    6.917860] Freeing initrd memory: 40792k freed
[    6.946593] PCI: Using configuration type 1 for base access
[    6.946730] PCI: Dell System detected, enabling pci=bfsort.
[    6.947976] bio: create slab <bio-0> at 0
[    6.948190] ACPI: Added _OSI(Module Device)
[    6.948288] ACPI: Added _OSI(Processor Device)
[    6.948416] ACPI: Added _OSI(3.0 _SCP Extensions)
[    6.948513] ACPI: Added _OSI(Processor Aggregator Device)
[    6.949410] ACPI: EC: Look up EC in DSDT
[    6.950632] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    6.952310] ACPI: Interpreter enabled
[    6.952409] ACPI: (supports S0 S4 S5)
[    6.952701] ACPI: Using IOAPIC for interrupt routing
[    6.955948] ACPI: No dock devices found.
[    6.956172] HEST: Table parsing has been initialized.
[    6.956273] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    6.957169] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    6.957950] pci_root PNP0A08:00: host bridge window [io  0x0000-0x03af]
[    6.958056] pci_root PNP0A08:00: host bridge window [io  0x03e0-0x0cf7]
[    6.958159] pci_root PNP0A08:00: host bridge window [io  0x03b0-0x03df]
[    6.958262] pci_root PNP0A08:00: host bridge window [io  0x0d00-0x1fff]
[    6.958364] pci_root PNP0A08:00: host bridge window [io  0x2000-0xffff]
[    6.958468] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    6.958594] pci_root PNP0A08:00: host bridge window [mem 0xd0000000-0xfbffffff]
[    6.958721] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
[    6.958935] PCI host bridge to bus 0000:00
[    6.959031] pci_bus 0000:00: root bus resource [io  0x0000-0x03af]
[    6.959133] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
[    6.959239] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
[    6.959356] pci_bus 0000:00: root bus resource [io  0x0d00-0x1fff]
[    6.959457] pci_bus 0000:00: root bus resource [io  0x2000-0xffff]
[    6.959559] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    6.959663] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfbffffff]
[    6.959767] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    6.959889] pci 0000:00:00.0: [8086:3c00] type 00 class 0x060000
[    6.960006] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    6.960054] pci 0000:00:01.0: [8086:3c02] type 01 class 0x060400
[    6.960184] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    6.960235] pci 0000:00:01.1: [8086:3c03] type 01 class 0x060400
[    6.960365] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    6.960424] pci 0000:00:03.0: [8086:3c08] type 01 class 0x060400
[    6.960553] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    6.960608] pci 0000:00:05.0: [8086:3c28] type 00 class 0x088000
[    6.960758] pci 0000:00:05.2: [8086:3c2a] type 00 class 0x088000
[    6.960928] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    6.961081] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    6.961140] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    6.961175] pci 0000:00:16.0: reg 10: [mem 0xdf8fb000-0xdf8fb00f 64bit]
[    6.961298] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    6.961334] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    6.961369] pci 0000:00:16.1: reg 10: [mem 0xdf8fc000-0xdf8fc00f 64bit]
[    6.961492] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    6.961548] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    6.961584] pci 0000:00:1a.0: reg 10: [mem 0xdf8fd000-0xdf8fd3ff]
[    6.961744] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    6.961785] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    6.961928] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    6.961977] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    6.962119] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    6.962164] pci 0000:00:1c.6: [8086:1d1c] type 01 class 0x060400
[    6.962307] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    6.962354] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400
[    6.962497] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    6.962546] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    6.962582] pci 0000:00:1d.0: reg 10: [mem 0xdf8fe000-0xdf8fe3ff]
[    6.962743] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    6.962779] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    6.962898] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    6.963105] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    6.963141] pci 0000:00:1f.2: reg 10: [io  0xece8-0xecef]
[    6.963155] pci 0000:00:1f.2: reg 14: [io  0xecf8-0xecfb]
[    6.963169] pci 0000:00:1f.2: reg 18: [io  0xecf0-0xecf7]
[    6.963183] pci 0000:00:1f.2: reg 1c: [io  0xecfc-0xecff]
[    6.963197] pci 0000:00:1f.2: reg 20: [io  0xecc0-0xecdf]
[    6.963212] pci 0000:00:1f.2: reg 24: [mem 0xdf8ff000-0xdf8ff7ff]
[    6.963302] pci 0000:00:1f.2: PME# supported from D3hot
[    6.963425] pci 0000:08:00.0: [1000:0073] type 00 class 0x010400
[    6.963441] pci 0000:08:00.0: reg 10: [io  0xfc00-0xfcff]
[    6.963460] pci 0000:08:00.0: reg 14: [mem 0xdcffc000-0xdcffffff 64bit]
[    6.963478] pci 0000:08:00.0: reg 1c: [mem 0xdcf80000-0xdcfbffff 64bit]
[    6.963501] pci 0000:08:00.0: reg 30: [mem 0xdc000000-0xdc01ffff pref]
[    6.963574] pci 0000:08:00.0: supports D1 D2
[    6.972075] pci 0000:00:01.0: PCI bridge to [bus 08-08]
[    6.972180] pci 0000:00:01.0:   bridge window [io  0xf000-0xffff]
[    6.972185] pci 0000:00:01.0:   bridge window [mem 0xdc000000-0xdcffffff]
[    6.972270] pci 0000:00:01.1: PCI bridge to [bus 09-09]
[    6.972458] pci 0000:00:03.0: PCI bridge to [bus 0a-0a]
[    6.972654] pci 0000:00:11.0: PCI bridge to [bus 0b-0b]
[    6.972847] pci 0000:00:1c.0: PCI bridge to [bus 0c-0c]
[    6.973080] pci 0000:01:00.0: [14e4:165f] type 00 class 0x020000
[    6.973119] pci 0000:01:00.0: reg 10: [mem 0xd90a0000-0xd90affff 64bit pref]
[    6.973150] pci 0000:01:00.0: reg 18: [mem 0xd90b0000-0xd90bffff 64bit pref]
[    6.973181] pci 0000:01:00.0: reg 20: [mem 0xd90c0000-0xd90cffff 64bit pref]
[    6.973203] pci 0000:01:00.0: reg 30: [mem 0xdd000000-0xdd03ffff pref]
[    6.973337] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    6.973424] pci 0000:01:00.1: [14e4:165f] type 00 class 0x020000
[    6.973462] pci 0000:01:00.1: reg 10: [mem 0xd90d0000-0xd90dffff 64bit pref]
[    6.973493] pci 0000:01:00.1: reg 18: [mem 0xd90e0000-0xd90effff 64bit pref]
[    6.973524] pci 0000:01:00.1: reg 20: [mem 0xd90f0000-0xd90fffff 64bit pref]
[    6.973544] pci 0000:01:00.1: reg 30: [mem 0xdd000000-0xdd03ffff pref]
[    6.973676] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    6.973776] pci 0000:00:1c.4: PCI bridge to [bus 01-01]
[    6.973883] pci 0000:00:1c.4:   bridge window [mem 0xdd000000-0xdd7fffff]
[    6.973893] pci 0000:00:1c.4:   bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[    6.974013] pci 0000:02:00.0: [14e4:165f] type 00 class 0x020000
[    6.974051] pci 0000:02:00.0: reg 10: [mem 0xd91a0000-0xd91affff 64bit pref]
[    6.974082] pci 0000:02:00.0: reg 18: [mem 0xd91b0000-0xd91bffff 64bit pref]
[    6.974113] pci 0000:02:00.0: reg 20: [mem 0xd91c0000-0xd91cffff 64bit pref]
[    6.974133] pci 0000:02:00.0: reg 30: [mem 0xdd800000-0xdd83ffff pref]
[    6.974264] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    6.974350] pci 0000:02:00.1: [14e4:165f] type 00 class 0x020000
[    6.974388] pci 0000:02:00.1: reg 10: [mem 0xd91d0000-0xd91dffff 64bit pref]
[    6.974419] pci 0000:02:00.1: reg 18: [mem 0xd91e0000-0xd91effff 64bit pref]
[    6.974450] pci 0000:02:00.1: reg 20: [mem 0xd91f0000-0xd91fffff 64bit pref]
[    6.974470] pci 0000:02:00.1: reg 30: [mem 0xdd800000-0xdd83ffff pref]
[    6.974601] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
[    6.974699] pci 0000:00:1c.6: PCI bridge to [bus 02-02]
[    6.974814] pci 0000:00:1c.6:   bridge window [mem 0xdd800000-0xddffffff]
[    6.974824] pci 0000:00:1c.6:   bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[    6.975273] pci 0000:03:00.0: [1912:0013] type 01 class 0x060400
[    6.977521] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    6.984311] pci 0000:00:1c.7: PCI bridge to [bus 03-07]
[    6.984419] pci 0000:00:1c.7:   bridge window [mem 0xde000000-0xdf7fffff]
[    6.984429] pci 0000:00:1c.7:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    6.986064] pci 0000:04:00.0: [1912:0013] type 01 class 0x060400
[    6.988643] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    6.989553] pci 0000:04:01.0: [1912:0013] type 01 class 0x060400
[    6.992147] pci 0000:04:01.0: PME# supported from D0 D3hot D3cold
[    6.994404] pci 0000:03:00.0: PCI bridge to [bus 04-07]
[    6.994695] pci 0000:03:00.0:   bridge window [mem 0xde000000-0xdf7fffff]
[    6.994820] pci 0000:03:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    6.996569] pci 0000:05:00.0: [1912:0012] type 01 class 0x060400
[    7.000070] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[    7.000401] pci 0000:04:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.000545] pci 0000:04:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.002124] pci 0000:06:00.0: [102b:0534] type 00 class 0x030000
[    7.002608] pci 0000:06:00.0: reg 10: [mem 0xd8000000-0xd8ffffff pref]
[    7.002869] pci 0000:06:00.0: reg 14: [mem 0xdeffc000-0xdeffffff]
[    7.003130] pci 0000:06:00.0: reg 18: [mem 0xde000000-0xde7fffff]
[    7.007171] pci 0000:05:00.0: PCI bridge to [bus 06-06]
[    7.007492] pci 0000:05:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.007637] pci 0000:05:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.009343] pci 0000:04:01.0: PCI bridge to [bus 07-07]
[    7.009660] pci 0000:04:01.0:   bridge window [mem 0xdf700000-0xdf7fffff]
[    7.010876] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d] (subtractive decode)
[    7.010994] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    7.010996] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    7.010998] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    7.010999] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x1fff] (subtractive decode)
[    7.011001] pci 0000:00:1e.0:   bridge window [io  0x2000-0xffff] (subtractive decode)
[    7.011003] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    7.011005] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xfbffffff] (subtractive decode)
[    7.011006] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
[    7.011079] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    7.011260] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
[    7.011307] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
[    7.011352] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
[    7.011400] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX6._PRT]
[    7.011444] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX7._PRT]
[    7.011496] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX8._PRT]
[    7.011541] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX9._PRT]
[    7.011679]  pci0000:00: Requesting ACPI _OSC control (0x15)
[    7.011926]  pci0000:00: ACPI _OSC control (0x15) granted
[    7.016980] ACPI: PCI Root Bridge [P0B1] (domain 0000 [bus 3f])
[    7.017126] PCI host bridge to bus 0000:3f
[    7.017242] pci 0000:3f:08.0: [8086:3c80] type 00 class 0x088000
[    7.017344] pci 0000:3f:09.0: [8086:3c90] type 00 class 0x088000
[    7.017443] pci 0000:3f:0a.0: [8086:3cc0] type 00 class 0x088000
[    7.017528] pci 0000:3f:0a.1: [8086:3cc1] type 00 class 0x088000
[    7.017614] pci 0000:3f:0a.2: [8086:3cc2] type 00 class 0x088000
[    7.017699] pci 0000:3f:0a.3: [8086:3cd0] type 00 class 0x088000
[    7.017788] pci 0000:3f:0b.0: [8086:3ce0] type 00 class 0x088000
[    7.017873] pci 0000:3f:0b.3: [8086:3ce3] type 00 class 0x088000
[    7.017960] pci 0000:3f:0c.0: [8086:3ce8] type 00 class 0x088000
[    7.018042] pci 0000:3f:0c.1: [8086:3ce8] type 00 class 0x088000
[    7.018126] pci 0000:3f:0c.2: [8086:3ce8] type 00 class 0x088000
[    7.018212] pci 0000:3f:0c.6: [8086:3cf4] type 00 class 0x088000
[    7.018296] pci 0000:3f:0c.7: [8086:3cf6] type 00 class 0x088000
[    7.018379] pci 0000:3f:0d.0: [8086:3ce8] type 00 class 0x088000
[    7.018464] pci 0000:3f:0d.1: [8086:3ce8] type 00 class 0x088000
[    7.018549] pci 0000:3f:0d.2: [8086:3ce8] type 00 class 0x088000
[    7.018636] pci 0000:3f:0d.6: [8086:3cf5] type 00 class 0x088000
[    7.018720] pci 0000:3f:0e.0: [8086:3ca0] type 00 class 0x088000
[    7.018807] pci 0000:3f:0e.1: [8086:3c46] type 00 class 0x110100
[    7.018908] pci 0000:3f:0f.0: [8086:3ca8] type 00 class 0x088000
[    7.019025] pci 0000:3f:0f.1: [8086:3c71] type 00 class 0x088000
[    7.019141] pci 0000:3f:0f.2: [8086:3caa] type 00 class 0x088000
[    7.019257] pci 0000:3f:0f.3: [8086:3cab] type 00 class 0x088000
[    7.019373] pci 0000:3f:0f.4: [8086:3cac] type 00 class 0x088000
[    7.019488] pci 0000:3f:0f.5: [8086:3cad] type 00 class 0x088000
[    7.019598] pci 0000:3f:0f.6: [8086:3cae] type 00 class 0x088000
[    7.019693] pci 0000:3f:10.0: [8086:3cb0] type 00 class 0x088000
[    7.019810] pci 0000:3f:10.1: [8086:3cb1] type 00 class 0x088000
[    7.019927] pci 0000:3f:10.2: [8086:3cb2] type 00 class 0x088000
[    7.020043] pci 0000:3f:10.3: [8086:3cb3] type 00 class 0x088000
[    7.020161] pci 0000:3f:10.5: [8086:3cb5] type 00 class 0x088000
[    7.020277] pci 0000:3f:10.6: [8086:3cb6] type 00 class 0x088000
[    7.020393] pci 0000:3f:10.7: [8086:3cb7] type 00 class 0x088000
[    7.020504] pci 0000:3f:11.0: [8086:3cb8] type 00 class 0x088000
[    7.020604] pci 0000:3f:13.0: [8086:3ce4] type 00 class 0x088000
[    7.020686] pci 0000:3f:13.1: [8086:3c43] type 00 class 0x110100
[    7.020779] pci 0000:3f:13.4: [8086:3ce6] type 00 class 0x110100
[    7.020869] pci 0000:3f:13.5: [8086:3c44] type 00 class 0x110100
[    7.020952] pci 0000:3f:13.6: [8086:3c45] type 00 class 0x088000
[    7.021136]  pci0000:3f: Requesting ACPI _OSC control (0x15)
[    7.021380]  pci0000:3f: ACPI _OSC control (0x15) granted
[    7.024044] ACPI: PCI Root Bridge [P1B1] (domain 0000 [bus 7f])
[    7.024181] PCI host bridge to bus 0000:7f
[    7.024411]  pci0000:7f: Requesting ACPI _OSC control (0x15)
[    7.024654]  pci0000:7f: ACPI _OSC control (0x15) granted
[    7.024812] ACPI: PCI Interrupt Link [LK00] (IRQs 3 4 5 6 7 11 14 *15)
[    7.025618] ACPI: PCI Interrupt Link [LK01] (IRQs 3 4 5 6 7 11 *14 15)
[    7.026392] ACPI: PCI Interrupt Link [LK02] (IRQs 3 4 5 6 7 11 14 15) *0, disabled.
[    7.027329] ACPI: PCI Interrupt Link [LK03] (IRQs 3 4 5 6 7 *11 14 15)
[    7.028100] ACPI: PCI Interrupt Link [LK04] (IRQs 3 4 *5 6 7 11 14 15)
[    7.028902] ACPI: PCI Interrupt Link [LK05] (IRQs 3 4 5 6 7 11 14 15) *0, disabled.
[    7.029833] ACPI: PCI Interrupt Link [LK06] (IRQs 3 4 5 *6 7 11 14 15)
[    7.030646] ACPI: PCI Interrupt Link [LK07] (IRQs 3 4 5 6 7 11 *14 15)
[    7.031409] xen/balloon: Initialising balloon driver.
[    7.031519] xen-balloon: Initialising balloon driver.
[    7.031647] xen/balloon: Xen selfballooning driver disabled for domain0.
[    7.031961] vgaarb: device added: PCI:0000:06:00.0,decodes=io+mem,owns=io+mem,locks=none
[    7.032106] vgaarb: loaded
[    7.032197] vgaarb: bridge control possible 0000:06:00.0
[    7.032439] SCSI subsystem initialized
[    7.032589] libata version 3.00 loaded.
[    7.032606] ACPI: bus type usb registered
[    7.032715] usbcore: registered new interface driver usbfs
[    7.032823] usbcore: registered new interface driver hub
[    7.032969] usbcore: registered new device driver usb
[    7.033160] PCI: Using ACPI for IRQ routing
[    7.046333] PCI: pci_cache_line_size set to 64 bytes
[    7.046941] e820: reserve RAM buffer [mem 0x0009c000-0x0009ffff]
[    7.046943] e820: reserve RAM buffer [mem 0xcb2e0000-0xcbffffff]
[    7.046944] e820: reserve RAM buffer [mem 0x134d84000-0x137ffffff]
[    7.047048] NetLabel: Initializing
[    7.047144] NetLabel:  domain hash size = 128
[    7.047240] NetLabel:  protocols = UNLABELED CIPSOv4
[    7.047346] NetLabel:  unlabeled traffic allowed by default
[    7.047535] Switching to clocksource xen
[    7.054323] AppArmor: AppArmor Filesystem Enabled
[    7.054436] pnp: PnP ACPI init
[    7.054537] ACPI: bus type pnp registered
[    7.055009] pnp 00:00: [bus 00-3e]
[    7.055012] pnp 00:00: [io  0x0cf8-0x0cff]
[    7.055014] pnp 00:00: [io  0x0000-0x03af window]
[    7.055016] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    7.055018] pnp 00:00: [io  0x03b0-0x03df window]
[    7.055019] pnp 00:00: [io  0x0d00-0x1fff window]
[    7.055021] pnp 00:00: [io  0x2000-0xffff window]
[    7.055023] pnp 00:00: [io  0x0000 window]
[    7.055024] pnp 00:00: [io  0x0000 window]
[    7.055026] pnp 00:00: [io  0x0000 window]
[    7.055027] pnp 00:00: [io  0x0000 window]
[    7.055029] pnp 00:00: [io  0x0000 window]
[    7.055031] pnp 00:00: [io  0x0000 window]
[    7.055032] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    7.055034] pnp 00:00: [mem 0xd0000000-0xfbffffff window]
[    7.055036] pnp 00:00: [mem 0x00000000 window]
[    7.055038] pnp 00:00: [mem 0x00000000 window]
[    7.055039] pnp 00:00: [mem 0x00000000 window]
[    7.055041] pnp 00:00: [mem 0x00000000 window]
[    7.055042] pnp 00:00: [mem 0x00000000 window]
[    7.055044] pnp 00:00: [mem 0x00000000 window]
[    7.055048] pnp 00:00: [mem 0x00000000 window]
[    7.055049] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[    7.055091] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    7.055143] pnp 00:01: [io  0x0080-0x009f]
[    7.055144] pnp 00:01: [io  0x0000-0x001f]
[    7.055146] pnp 00:01: [io  0x00c0-0x00df]
[    7.055148] pnp 00:01: [dma 4]
[    7.055176] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    7.055190] pnp 00:02: [io  0x00f0-0x00ff]
[    7.055193] xen: registering gsi 13 triggering 1 polarity 0
[    7.055200] pnp 00:02: [irq 13]
[    7.055229] pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active)
[    7.055245] pnp 00:03: [io  0x0061]
[    7.055308] system 00:03: Plug and Play ACPI device, IDs PNP0c01 (active)
[    7.055323] pnp 00:04: [io  0x0070-0x007f]
[    7.055325] xen: registering gsi 8 triggering 1 polarity 0
[    7.055330] pnp 00:04: [irq 8]
[    7.055359] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    7.055490] pnp 00:05: [io  0x03f8-0x03ff]
[    7.055492] xen: registering gsi 4 triggering 1 polarity 0
[    7.055497] pnp 00:05: [irq 4]
[    7.055560] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    7.055684] pnp 00:06: [io  0x02f8-0x02ff]
[    7.055686] xen: registering gsi 3 triggering 1 polarity 0
[    7.055688] Already setup the GSI :3
[    7.055795] pnp 00:06: [irq 3]
[    7.055858] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    7.056139] pnp 00:07: [io  0x0800-0x087f]
[    7.056141] pnp 00:07: [io  0x00e0-0x00e7]
[    7.056142] pnp 00:07: [io  0x0880-0x08ff]
[    7.056144] pnp 00:07: [io  0x0900-0x091f]
[    7.056145] pnp 00:07: [io  0x0920-0x0923]
[    7.056147] pnp 00:07: [io  0x0924]
[    7.056148] pnp 00:07: [io  0x0370-0x0377]
[    7.056152] pnp 00:07: [io  0x0ca0-0x0ca7]
[    7.056154] pnp 00:07: [io  0x0ca9-0x0cab]
[    7.056156] pnp 00:07: [io  0x0cad-0x0caf]
[    7.056157] pnp 00:07: [io  0x0cb0-0x0cbf]
[    7.056159] pnp 00:07: [io  0x0060-0x005f disabled]
[    7.056161] pnp 00:07: [io  0x0064-0x0063 disabled]
[    7.056231] system 00:07: [io  0x0800-0x087f] has been reserved
[    7.056335] system 00:07: [io  0x0880-0x08ff] has been reserved
[    7.056436] system 00:07: [io  0x0900-0x091f] has been reserved
[    7.056537] system 00:07: [io  0x0920-0x0923] has been reserved
[    7.056638] system 00:07: [io  0x0924] has been reserved
[    7.056738] system 00:07: [io  0x0370-0x0377] has been reserved
[    7.056839] system 00:07: [io  0x0ca0-0x0ca7] has been reserved
[    7.056940] system 00:07: [io  0x0ca9-0x0cab] has been reserved
[    7.057041] system 00:07: [io  0x0cad-0x0caf] has been reserved
[    7.057142] system 00:07: [io  0x0cb0-0x0cbf] has been reserved
[    7.057244] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    7.057279] pnp 00:08: [io  0x0ca8]
[    7.057281] pnp 00:08: [io  0x0cac]
[    7.057283] xen: registering gsi 10 triggering 1 polarity 0
[    7.057287] pnp 00:08: [irq 10]
[    7.057351] system 00:08: [io  0x0ca8] has been reserved
[    7.057452] system 00:08: [io  0x0cac] has been reserved
[    7.057552] system 00:08: Plug and Play ACPI device, IDs IPI0001 PNP0c01 (active)
[    7.057841] pnp 00:09: [mem 0xe0000000-0xe3efffff]
[    7.057910] system 00:09: [mem 0xe0000000-0xe3efffff] has been reserved
[    7.058016] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    7.058066] pnp 00:0a: [bus 3f]
[    7.058101] pnp 00:0a: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    7.058117] pnp 00:0b: [mem 0xe3f00000-0xe3ffffff]
[    7.058186] system 00:0b: [mem 0xe3f00000-0xe3ffffff] has been reserved
[    7.058291] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    7.058316] pnp 00:0c: [mem 0xdf900000-0xdf901fff]
[    7.058380] system 00:0c: [mem 0xdf900000-0xdf901fff] has been reserved
[    7.058530] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    7.058562] pnp 00:0d: [bus 7f]
[    7.058598] pnp 00:0d: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    7.058629] pnp 00:0e: [mem 0xfed00000-0xfed003ff]
[    7.058662] pnp 00:0e: Plug and Play ACPI device, IDs PNP0103 (active)
[    7.058801] pnp: PnP ACPI: found 15 devices
[    7.058899] ACPI: ACPI bus type pnp unregistered
[    7.065850] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    7.065965] pci 0000:01:00.1: address space collision: [mem 0xdd000000-0xdd03ffff pref] conflicts with 0000:01:00.0 [mem 0xdd000000-0xdd03ffff pref]
[    7.066109] pci 0000:02:00.1: address space collision: [mem 0xdd800000-0xdd83ffff pref] conflicts with 0000:02:00.0 [mem 0xdd800000-0xdd83ffff pref]
[    7.067339] pci 0000:00:01.0: PCI bridge to [bus 08-08]
[    7.067440] pci 0000:00:01.0:   bridge window [io  0xf000-0xffff]
[    7.067546] pci 0000:00:01.0:   bridge window [mem 0xdc000000-0xdcffffff]
[    7.067660] pci 0000:00:01.1: PCI bridge to [bus 09-09]
[    7.067780] pci 0000:00:03.0: PCI bridge to [bus 0a-0a]
[    7.067895] pci 0000:00:11.0: PCI bridge to [bus 0b-0b]
[    7.068013] pci 0000:00:1c.0: PCI bridge to [bus 0c-0c]
[    7.068131] pci 0000:01:00.1: BAR 6: assigned [mem 0xd9000000-0xd903ffff pref]
[    7.068258] pci 0000:00:1c.4: PCI bridge to [bus 01-01]
[    7.068363] pci 0000:00:1c.4:   bridge window [mem 0xdd000000-0xdd7fffff]
[    7.068471] pci 0000:00:1c.4:   bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
[    7.068610] pci 0000:02:00.1: BAR 6: assigned [mem 0xd9100000-0xd913ffff pref]
[    7.068754] pci 0000:00:1c.6: PCI bridge to [bus 02-02]
[    7.068858] pci 0000:00:1c.6:   bridge window [mem 0xdd800000-0xddffffff]
[    7.068965] pci 0000:00:1c.6:   bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
[    7.069101] pci 0000:05:00.0: PCI bridge to [bus 06-06]
[    7.069340] pci 0000:05:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.069537] pci 0000:05:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.069857] pci 0000:04:00.0: PCI bridge to [bus 05-06]
[    7.070099] pci 0000:04:00.0:   bridge window [mem 0xde000000-0xdeffffff]
[    7.070304] pci 0000:04:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.070624] pci 0000:04:01.0: PCI bridge to [bus 07-07]
[    7.070866] pci 0000:04:01.0:   bridge window [mem 0xdf700000-0xdf7fffff]
[    7.071318] pci 0000:03:00.0: PCI bridge to [bus 04-07]
[    7.071547] pci 0000:03:00.0:   bridge window [mem 0xde000000-0xdf7fffff]
[    7.071740] pci 0000:03:00.0:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.072122] pci 0000:00:1c.7: PCI bridge to [bus 03-07]
[    7.072229] pci 0000:00:1c.7:   bridge window [mem 0xde000000-0xdf7fffff]
[    7.074290] pci 0000:00:1c.7:   bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.074425] pci 0000:00:1e.0: PCI bridge to [bus 0d-0d]
[    7.074550] xen: registering gsi 53 triggering 0 polarity 1
[    7.074565] xen: --> pirq=53 -> irq=53 (gsi=53)
[    7.074577] xen: registering gsi 53 triggering 0 polarity 1
[    7.074578] Already setup the GSI :53
[    7.074680] xen: registering gsi 53 triggering 0 polarity 1
[    7.074681] Already setup the GSI :53
[    7.074782] xen: registering gsi 16 triggering 0 polarity 1
[    7.074788] xen: --> pirq=16 -> irq=16 (gsi=16)
[    7.074807] xen: registering gsi 16 triggering 0 polarity 1
[    7.074808] Already setup the GSI :16
[    7.074930] xen: registering gsi 19 triggering 0 polarity 1
[    7.074936] xen: --> pirq=19 -> irq=19 (gsi=19)
[    7.075362] pci 0000:00:1e.0: setting latency timer to 64
[    7.075368] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    7.075370] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    7.075372] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    7.075373] pci_bus 0000:00: resource 7 [io  0x0d00-0x1fff]
[    7.075375] pci_bus 0000:00: resource 8 [io  0x2000-0xffff]
[    7.075377] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff]
[    7.075378] pci_bus 0000:00: resource 10 [mem 0xd0000000-0xfbffffff]
[    7.075380] pci_bus 0000:00: resource 11 [mem 0xfed40000-0xfed44fff]
[    7.075382] pci_bus 0000:08: resource 0 [io  0xf000-0xffff]
[    7.075383] pci_bus 0000:08: resource 1 [mem 0xdc000000-0xdcffffff]
[    7.075386] pci_bus 0000:01: resource 1 [mem 0xdd000000-0xdd7fffff]
[    7.075387] pci_bus 0000:01: resource 2 [mem 0xd9000000-0xd90fffff 64bit pref]
[    7.075389] pci_bus 0000:02: resource 1 [mem 0xdd800000-0xddffffff]
[    7.075391] pci_bus 0000:02: resource 2 [mem 0xd9100000-0xd91fffff 64bit pref]
[    7.075393] pci_bus 0000:03: resource 1 [mem 0xde000000-0xdf7fffff]
[    7.075394] pci_bus 0000:03: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.075396] pci_bus 0000:04: resource 1 [mem 0xde000000-0xdf7fffff]
[    7.075398] pci_bus 0000:04: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.075400] pci_bus 0000:05: resource 1 [mem 0xde000000-0xdeffffff]
[    7.075401] pci_bus 0000:05: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.075403] pci_bus 0000:06: resource 1 [mem 0xde000000-0xdeffffff]
[    7.075405] pci_bus 0000:06: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
[    7.075407] pci_bus 0000:07: resource 1 [mem 0xdf700000-0xdf7fffff]
[    7.075408] pci_bus 0000:0d: resource 4 [io  0x0000-0x03af]
[    7.075410] pci_bus 0000:0d: resource 5 [io  0x03e0-0x0cf7]
[    7.075412] pci_bus 0000:0d: resource 6 [io  0x03b0-0x03df]
[    7.075413] pci_bus 0000:0d: resource 7 [io  0x0d00-0x1fff]
[    7.075415] pci_bus 0000:0d: resource 8 [io  0x2000-0xffff]
[    7.075417] pci_bus 0000:0d: resource 9 [mem 0x000a0000-0x000bffff]
[    7.075418] pci_bus 0000:0d: resource 10 [mem 0xd0000000-0xfbffffff]
[    7.075420] pci_bus 0000:0d: resource 11 [mem 0xfed40000-0xfed44fff]
[    7.075449] NET: Registered protocol family 2
[    7.075834] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    7.077955] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    7.080158] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    7.080494] TCP: Hash tables configured (established 524288 bind 65536)
[    7.080597] TCP: reno registered
[    7.080711] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    7.080841] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    7.081025] NET: Registered protocol family 1
[    7.081166] xen: registering gsi 23 triggering 0 polarity 1
[    7.081178] xen: --> pirq=23 -> irq=23 (gsi=23)
[    7.095761] xen: registering gsi 22 triggering 0 polarity 1
[    7.095770] xen: --> pirq=22 -> irq=22 (gsi=22)
[    7.096129] pci 0000:06:00.0: Boot video device
[    7.096258] PCI: CLS 64 bytes, default 64
[    7.096850] audit: initializing netlink socket (disabled)
[    7.096959] type=2000 audit(1357118548.085:1): initialized
[    7.117699] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    7.118939] VFS: Disk quotas dquot_6.5.2
[    7.119076] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    7.119600] fuse init (API version 7.19)
[    7.119786] msgmni has been set to 7860
[    7.120402] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    7.120570] io scheduler noop registered
[    7.120666] io scheduler deadline registered (default)
[    7.120786] io scheduler cfq registered
[    7.126187] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    7.126292] pci 0000:08:00.0: Signaling PME through PCIe PME interrupt
[    7.126398] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    7.126425] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    7.126532] pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
[    7.126554] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    7.126661] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    7.126685] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    7.126793] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    7.126817] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    7.126924] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    7.126947] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    7.127050] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    7.127153] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    7.127259] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    7.127281] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
[    7.127384] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    7.127487] pci 0000:02:00.1: Signaling PME through PCIe PME interrupt
[    7.127593] pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
[    7.127622] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    7.127734] pcieport 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    7.127837] pcieport 0000:04:00.0: Signaling PME through PCIe PME interrupt
[    7.127940] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    7.128042] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    7.128144] pcieport 0000:04:01.0: Signaling PME through PCIe PME interrupt
[    7.128252] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[    7.128271] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    7.128386] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    7.128548] intel_idle: does not run on family 6 model 45
[    7.128613] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    7.128743] ACPI: Power Button [PWRF]
[    7.132367] ERST: Error Record Serialization Table (ERST) support is initialized.
[    7.132633] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    7.132920] Event-channel device installed.
[    7.133166] xen-pciback: backend is vpci
[    7.133662] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    7.154384] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    7.176295] 00:05: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    7.176783] hpet_acpi_add: no address or irqs in _CRS
[    7.176891] Linux agpgart interface v0.103
[    7.178368] brd: module loaded
[    7.179272] loop: module loaded
[    7.179460] ahci 0000:00:1f.2: version 3.0
[    7.179471] xen: registering gsi 20 triggering 0 polarity 1
[    7.179482] xen: --> pirq=20 -> irq=20 (gsi=20)
[    7.191753] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    7.191885] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    7.192017] ahci 0000:00:1f.2: setting latency timer to 64
[    7.232104] scsi0 : ahci
[    7.232282] scsi1 : ahci
[    7.232449] scsi2 : ahci
[    7.232614] scsi3 : ahci
[    7.232779] scsi4 : ahci
[    7.232947] scsi5 : ahci
[    7.233072] ata1: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff100 irq 166
[    7.233230] ata2: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff180 irq 166
[    7.233357] ata3: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff200 irq 166
[    7.233484] ata4: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff280 irq 166
[    7.233611] ata5: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff300 irq 166
[    7.233737] ata6: SATA max UDMA/133 abar m2048@0xdf8ff000 port 0xdf8ff380 irq 166
[    7.234196] Fixed MDIO Bus: probed
[    7.234322] tun: Universal TUN/TAP device driver, 1.6
[    7.234420] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    7.234575] PPP generic driver version 2.4.2
[    7.234744] Initialising Xen virtual ethernet driver.
[    7.234851] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    7.234975] xen: registering gsi 23 triggering 0 polarity 1
[    7.234978] Already setup the GSI :23
[    7.235092] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    7.235096] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    7.235200] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    7.235371] ehci_hcd 0000:00:1a.0: debug port 2
[    7.239341] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    7.239361] ehci_hcd 0000:00:1a.0: irq 23, io mem 0xdf8fd000
[    7.247721] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    7.247852] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    7.247955] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.248082] usb usb1: Product: EHCI Host Controller
[    7.248180] usb usb1: Manufacturer: Linux 3.5.0-18-zdom0 ehci_hcd
[    7.248281] usb usb1: SerialNumber: 0000:00:1a.0
[    7.248472] hub 1-0:1.0: USB hub found
[    7.248571] hub 1-0:1.0: 2 ports detected
[    7.248768] xen: registering gsi 22 triggering 0 polarity 1
[    7.248771] Already setup the GSI :22
[    7.248889] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    7.248892] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    7.248995] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    7.249160] ehci_hcd 0000:00:1d.0: debug port 2
[    7.253135] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    7.253153] ehci_hcd 0000:00:1d.0: irq 22, io mem 0xdf8fe000
[    7.263722] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    7.263845] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    7.263948] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.264074] usb usb2: Product: EHCI Host Controller
[    7.264201] usb usb2: Manufacturer: Linux 3.5.0-18-zdom0 ehci_hcd
[    7.264302] usb usb2: SerialNumber: 0000:00:1d.0
[    7.264482] hub 2-0:1.0: USB hub found
[    7.264580] hub 2-0:1.0: 2 ports detected
[    7.264748] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    7.264869] uhci_hcd: USB Universal Host Controller Interface driver
[    7.265021] usbcore: registered new interface driver libusual
[    7.265149] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    7.266126] i8042: No controller found
[    7.266295] mousedev: PS/2 mouse device common for all mice
[    7.266494] rtc_cmos 00:04: RTC can wake from S4
[    7.266735] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    7.266868] rtc0: alarms up to one day, y3k, 242 bytes nvram
[    7.267021] device-mapper: uevent: version 1.0.3
[    7.267183] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[    7.267346] EFI Variables Facility v0.08 2004-May-17
[    7.267643] ashmem: initialized
[    7.267847] TCP: cubic registered
[    7.268018] NET: Registered protocol family 10
[    7.268280] NET: Registered protocol family 17
[    7.268385] Key type dns_resolver registered
[    7.268623] PM: Hibernation image not present or could not be loaded.
[    7.268631] registered taskstats version 1
[    7.272040] Key type trusted registered
[    7.275094] Key type encrypted registered
[    7.281214]   Magic number: 13:891:372
[    7.281340] pci 0000:02:00.0: hash matches
[    7.281505] rtc_cmos 00:04: setting system clock to 2013-01-02 09:22:27 UTC (1357118547)
[    7.281703] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    7.281805] EDD information not available.
[    7.551728] ata4: SATA link down (SStatus 0 SControl 300)
[    7.551846] ata3: SATA link down (SStatus 0 SControl 300)
[    7.551972] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    7.552093] ata2: SATA link down (SStatus 0 SControl 300)
[    7.552211] ata6: SATA link down (SStatus 0 SControl 300)
[    7.552330] ata1: SATA link down (SStatus 0 SControl 300)
[    7.552448] ata5.00: ATAPI: HL-DT-ST DVD-ROM DH41N, A101, max UDMA/100
[    7.553315] ata5.00: configured for UDMA/100
[    7.554970] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-ROM DH41N    A101 PQ: 0 ANSI: 5
[    7.557823] sr0: scsi3-mmc drive: 12x/48x cd/rw xa/form2 cdda tray
[    7.557926] cdrom: Uniform CD-ROM driver Revision: 3.20
[    7.558111] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    7.558184] sr 4:0:0:0: Attached scsi generic sg0 type 5
[    7.558684] Freeing unused kernel memory: 948k freed
[    7.558923] Write protecting the kernel read-only data: 12288k
[    7.559727] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    7.564106] Freeing unused kernel memory: 1320k freed
[    7.564777] Freeing unused kernel memory: 1020k freed
[    7.601499] udevd[146]: starting version 175
[    7.608961] md: linear personality registered for level -1
[    7.615180] md: multipath personality registered for level -4
[    7.619619] md: raid0 personality registered for level 0
[    7.624522] md: raid1 personality registered for level 1
[    7.628499] async_tx: api initialized (async)
[    7.628727] megasas: 00.00.06.15-rc1 Mon. Mar. 19 17:00:00 PDT 2012
[    7.628879] megasas: 0x1000:0x0073:0x1028:0x1f4e: bus 8:slot 0:func 0
[    7.629094] xen: registering gsi 34 triggering 0 polarity 1
[    7.629123] xen: --> pirq=34 -> irq=34 (gsi=34)
[    7.629255] megasas: FW now in Ready state
[    7.649405] tg3.c:v3.123 (March 21, 2012)
[    7.649532] xen: registering gsi 16 triggering 0 polarity 1
[    7.649538] Already setup the GSI :16
[    7.660438] tg3 0000:01:00.0: eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address e0:db:55:07:4a:14
[    7.662821] tg3 0000:01:00.0: eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    7.663014] tg3 0000:01:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    7.663183] tg3 0000:01:00.0: eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    7.663478] xen: registering gsi 17 triggering 0 polarity 1
[    7.663504] xen: --> pirq=17 -> irq=17 (gsi=17)
[    7.686813] tg3 0000:01:00.1: eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address e0:db:55:07:4a:16
[    7.686954] tg3 0000:01:00.1: eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    7.687088] tg3 0000:01:00.1: eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    7.687216] tg3 0000:01:00.1: eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[    7.687435] xen: registering gsi 18 triggering 0 polarity 1
[    7.687447] xen: --> pirq=18 -> irq=18 (gsi=18)
[    7.692151] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    7.692264] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.692550] hub 1-1:1.0: USB hub found
[    7.692780] hub 1-1:1.0: 6 ports detected
[    7.695732] raid6: sse2x1    4463 MB/s
[    7.700472] tg3 0000:02:00.0: eth2: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 00:10:18:e4:b6:0a
[    7.700612] tg3 0000:02:00.0: eth2: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    7.700746] tg3 0000:02:00.0: eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    7.700874] tg3 0000:02:00.0: eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[    7.701090] xen: registering gsi 19 triggering 0 polarity 1
[    7.701093] Already setup the GSI :19
[    7.722815] tg3 0000:02:00.1: eth3: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 00:10:18:e4:b6:0b
[    7.722954] tg3 0000:02:00.1: eth3: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    7.723088] tg3 0000:02:00.1: eth3: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[    7.723216] tg3 0000:02:00.1: eth3: dma_rwctrl[00000001] dma_mask[64-bit]
[    7.723728] megasas_init_mfi: fw_support_ieee=67108864
[    7.723817] megasas: INIT adapter done
[    7.763715] raid6: sse2x2    7925 MB/s
[    7.795765] scsi6 : LSI SAS based MegaRAID driver
[    7.797895] scsi 6:0:0:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    7.800267] scsi 6:0:1:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    7.802665] scsi 6:0:2:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    7.803736] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    7.804917] scsi 6:0:3:0: Direct-Access     ATA      ST1000NM0011     PA07 PQ: 0 ANSI: 5
[    7.831719] raid6: sse2x4    9193 MB/s
[    7.831822] raid6: using algorithm sse2x4 (9193 MB/s)
[    7.831923] raid6: using ssse3x2 recovery algorithm
[    7.832805] sd 6:0:0:0: Attached scsi generic sg1 type 0
[    7.832939] xor: automatically using best checksumming function:
[    7.833152] sd 6:0:1:0: Attached scsi generic sg2 type 0
[    7.833486] sd 6:0:2:0: Attached scsi generic sg3 type 0
[    7.833826] sd 6:0:3:0: Attached scsi generic sg4 type 0
[    7.834306] sd 6:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    7.834324] sd 6:0:1:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    7.834339] sd 6:0:2:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    7.835091] sd 6:0:3:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    7.871712]    generic_sse:  2872.000 MB/sec
[    7.908618] sd 6:0:2:0: [sdc] Write Protect is off
[    7.908720] sd 6:0:2:0: [sdc] Mode Sense: 73 00 00 08
[    7.910632] sd 6:0:2:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    7.913229] sd 6:0:0:0: [sda] Write Protect is off
[    7.913329] sd 6:0:0:0: [sda] Mode Sense: 73 00 00 08
[    7.914548] sd 6:0:3:0: [sdd] Write Protect is off
[    7.914647] sd 6:0:3:0: [sdd] Mode Sense: 73 00 00 08
[    7.915782] sd 6:0:1:0: [sdb] Write Protect is off
[    7.915885] sd 6:0:1:0: [sdb] Mode Sense: 73 00 00 08
[    7.917347] sd 6:0:3:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    7.930185] sd 6:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    7.936137] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    7.936243] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    7.936539] hub 2-1:1.0: USB hub found
[    7.936762] hub 2-1:1.0: 8 ports detected
[    7.960191] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    7.977161]  sdc: sdc1 sdc2 sdc3 sdc4
[    8.007888] usb 1-1.3: new high-speed USB device number 3 using ehci_hcd
[    8.014069]  sdd: sdd1 sdd2 sdd3 sdd4
[    8.049561]  sdb: sdb1 sdb2 sdb3 sdb4
[    8.051754]  sda: sda1 sda2 sda3 sda4
[    8.100633] usb 1-1.3: New USB device found, idVendor=413c, idProduct=a101
[    8.100740] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.100867] usb 1-1.3: Product: Internal Dual SD
[    8.100964] usb 1-1.3: Manufacturer: Dell Computer Corp.
[    8.101063] usb 1-1.3: SerialNumber: 0123456789AB
[    8.103465] Initializing USB Mass Storage driver...
[    8.103722] scsi7 : usb-storage 1-1.3:1.0
[    8.103885] usbcore: registered new interface driver usb-storage
[    8.103987] USB Mass Storage support registered.
[    8.104192] usbcore: registered new interface driver uas
[    8.117997] sd 6:0:2:0: [sdc] Attached SCSI disk
[    8.121687] sd 6:0:3:0: [sdd] Attached SCSI disk
[    8.152941] sd 6:0:1:0: [sdb] Attached SCSI disk
[    8.171887] usb 1-1.6: new high-speed USB device number 4 using ehci_hcd
[    8.183255] sd 6:0:0:0: [sda] Attached SCSI disk
[    8.184770] md: raid6 personality registered for level 6
[    8.184884] md: raid5 personality registered for level 5
[    8.184986] md: raid4 personality registered for level 4
[    8.194236] md: raid10 personality registered for level 10
[    8.264641] usb 1-1.6: New USB device found, idVendor=0624, idProduct=0248
[    8.264756] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.264896] usb 1-1.6: Product: Gadget USB HUB
[    8.265003] usb 1-1.6: Manufacturer: no manufacturer
[    8.265110] usb 1-1.6: SerialNumber: 0123456789
[    8.265546] hub 1-1.6:1.0: USB hub found
[    8.265766] hub 1-1.6:1.0: 6 ports detected
[    8.573897] usb 1-1.6.1: new high-speed USB device number 5 using ehci_hcd
[    8.711644] usb 1-1.6.1: New USB device found, idVendor=0624, idProduct=0249
[    8.711750] usb 1-1.6.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6
[    8.711884] usb 1-1.6.1: Product: Keyboard/Mouse Function
[    8.711984] usb 1-1.6.1: Manufacturer: Avocent
[    8.712081] usb 1-1.6.1: SerialNumber: 20110426
[    8.761552] usbcore: registered new interface driver usbhid
[    8.761654] usbhid: USB HID core driver
[    9.104406] scsi 7:0:0:0: Direct-Access     Dell     Internal Dual SD 1.:  PQ: 0 ANSI: 5
[    9.105378] sd 7:0:0:0: Attached scsi generic sg5 type 0
[    9.105897] sd 7:0:0:0: [sde] 1990656 512-byte logical blocks: (1.01 GB/972 MiB)
[    9.106771] sd 7:0:0:0: [sde] Write Protect is off
[    9.106871] sd 7:0:0:0: [sde] Mode Sense: 0b 00 00 08
[    9.107650] sd 7:0:0:0: [sde] No Caching mode page present
[    9.107769] sd 7:0:0:0: [sde] Assuming drive cache: write through
[    9.110146] sd 7:0:0:0: [sde] No Caching mode page present
[    9.110248] sd 7:0:0:0: [sde] Assuming drive cache: write through
[    9.126169]  sde: sde1
[    9.128771] sd 7:0:0:0: [sde] No Caching mode page present
[    9.128875] sd 7:0:0:0: [sde] Assuming drive cache: write through
[    9.128977] sd 7:0:0:0: [sde] Attached SCSI disk
[   38.903975] kjournald starting.  Commit interval 5 seconds
[   38.903991] EXT3-fs (dm-7): mounted filesystem with ordered data mode
[   58.601504] EXT3-fs (loop0): error: couldn't mount because of unsupported optional features (240)
[   58.628236] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[   58.778363] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   58.778369] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   58.778374] IPv6: ADDRCONF(NETDEV_UP): eth2: link is not ready
[   58.778378] IPv6: ADDRCONF(NETDEV_UP): eth3: link is not ready
[   58.785522] udevd[610]: starting version 175
[   58.786042] EXT4-fs (loop0): re-mounted. Opts: (null)
[   58.829432] ACPI Error: No handler for Region [SYSI] (ffff88012a2c11b0) [IPMI] (20120320/evregion-376)
[   58.829439] ACPI Error: Region IPMI (ID=7) has no handler (20120320/exfldio-306)
[   58.829446] ACPI Error: Method parse/execution failed [\_SB_.PMI0._GHL] (Node ffff88012a2c0dc0), AE_NOT_EXIST (20120320/psparse-536)
[   58.829460] ACPI Error: Method parse/execution failed [\_SB_.PMI0._PMC] (Node ffff88012a2c0d20), AE_NOT_EXIST (20120320/psparse-536)
[   58.829479] ACPI Exception: AE_NOT_EXIST, Evaluating _PMC (20120320/power_meter-754)
[   58.835057] wmi: Mapper loaded
[   58.843682] EXT4-fs (sde1): warning: mounting unchecked fs, running e2fsck is recommended
[   58.845680] mei 0000:00:16.0: Device doesn't have valid ME Interface
[   58.845684] mei 0000:00:16.0: initialization failed.
[   58.846979] EXT4-fs (sde1): mounted filesystem without journal. Opts: (null)
[   58.853543] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.0/input/input1
[   58.853834] hid-generic 0003:0624:0249.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input0
[   58.854054] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.1/input/input2
[   58.854340] hid-generic 0003:0624:0249.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input1
[   58.854538] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.2/input/input3
[   58.854744] hid-generic 0003:0624:0249.0003: input,hidraw2: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input2
[   58.856427] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   58.860373] ACPI Warning: 0x0000000000000860-0x000000000000087f SystemIO conflicts with Region \_GPE.TCOS 1 (20120320/utaddress-251)
[   58.860383] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   58.860385] lpc_ich: Resource conflict(s) found affecting iTCO_wdt
[   58.885757] EDAC MC: Ver: 2.1.0
[   58.887848] EDAC sbridge: Seeking for: dev 0e.0 PCI ID 8086:3ca0
[   58.887865] EDAC sbridge: Seeking for: dev 0e.0 PCI ID 8086:3ca0
[   58.887870] EDAC sbridge: Seeking for: dev 0f.0 PCI ID 8086:3ca8
[   58.887880] EDAC sbridge: Seeking for: dev 0f.0 PCI ID 8086:3ca8
[   58.887885] EDAC sbridge: Seeking for: dev 0f.1 PCI ID 8086:3c71
[   58.887898] EDAC sbridge: Seeking for: dev 0f.1 PCI ID 8086:3c71
[   58.887905] EDAC sbridge: Seeking for: dev 0f.2 PCI ID 8086:3caa
[   58.887918] EDAC sbridge: Seeking for: dev 0f.2 PCI ID 8086:3caa
[   58.887924] EDAC sbridge: Seeking for: dev 0f.3 PCI ID 8086:3cab
[   58.887938] EDAC sbridge: Seeking for: dev 0f.3 PCI ID 8086:3cab
[   58.887944] EDAC sbridge: Seeking for: dev 0f.4 PCI ID 8086:3cac
[   58.887959] EDAC sbridge: Seeking for: dev 0f.4 PCI ID 8086:3cac
[   58.887965] EDAC sbridge: Seeking for: dev 0f.5 PCI ID 8086:3cad
[   58.887980] EDAC sbridge: Seeking for: dev 0f.5 PCI ID 8086:3cad
[   58.887985] EDAC sbridge: Seeking for: dev 11.0 PCI ID 8086:3cb8
[   58.888000] EDAC sbridge: Seeking for: dev 11.0 PCI ID 8086:3cb8
[   58.888003] EDAC sbridge: Seeking for: dev 0c.6 PCI ID 8086:3cf4
[   58.888016] EDAC sbridge: Seeking for: dev 0c.6 PCI ID 8086:3cf4
[   58.888026] EDAC sbridge: Seeking for: dev 0c.7 PCI ID 8086:3cf6
[   58.888038] EDAC sbridge: Seeking for: dev 0c.7 PCI ID 8086:3cf6
[   58.888046] EDAC sbridge: Seeking for: dev 0d.6 PCI ID 8086:3cf5
[   58.888059] EDAC sbridge: Seeking for: dev 0d.6 PCI ID 8086:3cf5
[   58.888252] EDAC MC0: Giving out device to 'sbridge_edac.c' 'Sandy Bridge Socket#0': DEV 0000:3f:0e.0
[   58.888256] EDAC sbridge: Driver loaded.
[   58.904600] init: zynstra-ssh-keys (local-filesystems) main process (709) terminated with status 1
[   58.929314] microcode: CPU0 sig=0x206d7, pf=0x8, revision=0x70d
[   58.962847] device-mapper: multipath: version 1.4.0 loaded
[   58.984944] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   59.041305] microcode: CPU1 sig=0x206d7, pf=0x8, revision=0x70d
[   59.050087] microcode: CPU2 sig=0x206d7, pf=0x8, revision=0x70d
[   59.053739] microcode: CPU3 sig=0x206d7, pf=0x8, revision=0x70d
[   59.058578] microcode: CPU4 sig=0x206d7, pf=0x8, revision=0x70d
[   59.063457] microcode: CPU5 sig=0x206d7, pf=0x8, revision=0x70d
[   59.066786] microcode: CPU6 sig=0x206d7, pf=0x8, revision=0x70d
[   59.069736] microcode: CPU7 sig=0x206d7, pf=0x8, revision=0x70d
[   59.072681] microcode: CPU8 sig=0x206d7, pf=0x8, revision=0x70d
[   59.076046] microcode: CPU9 sig=0x206d7, pf=0x8, revision=0x70d
[   59.079158] microcode: CPU10 sig=0x206d7, pf=0x8, revision=0x70d
[   59.082401] microcode: CPU11 sig=0x206d7, pf=0x8, revision=0x70d
[   59.085279] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   59.099666] init: failsafe main process (1100) killed by TERM signal

[-- Attachment #6: max4096m-xm-dmesg.txt --]
[-- Type: text/plain, Size: 5811 bytes --]

 __  __            _  _    ____    ___  
 \ \/ /___ _ __   | || |  |___ \  / _ \ 
  \  // _ \ '_ \  | || |_   __) || | | |
  /  \  __/ | | | |__   _| / __/ | |_| |
 /_/\_\___|_| |_|    |_|(_)_____(_)___/ 
                                        
(XEN) Xen version 4.2.0 (@dingwall.me.uk) (gcc (Gentoo 4.5.4 p1.0, pie-0.4.7) 4.5.4) Fri Sep 21 16:25:46 BST 2012
(XEN) Latest ChangeSet: unavailable
(XEN) Bootloader: GRUB 2.00-7ubuntu11
(XEN) Command line: placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 dom0_mem=max:4096m loglevel=8 debug
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: none; EDID transfer time: 0 seconds
(XEN)  EDID info not retrieved because no DDC retrieval method detected
(XEN) Disc information:
(XEN)  Found 5 MBR signatures
(XEN)  Found 5 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009c000 (usable)
(XEN)  0000000000100000 - 00000000cb2e0000 (usable)
(XEN)  00000000cb2e0000 - 00000000cd31c000 (reserved)
(XEN)  00000000cd31c000 - 00000000cd35b000 (ACPI data)
(XEN)  00000000cd35b000 - 00000000d0000000 (reserved)
(XEN)  00000000e0000000 - 00000000f0000000 (reserved)
(XEN)  00000000fe000000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000830000000 (usable)
(XEN) ACPI: RSDP 000F13A0, 0024 (r2 DELL  )
(XEN) ACPI: XSDT 000F14A8, 00A4 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: FACP CD3411CC, 00F4 (r3 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: DSDT CD31C000, 68A3 (r1 DELL   PE_SC3          1 INTL 20110211)
(XEN) ACPI: FACS CD343000, 0040
(XEN) ACPI: APIC CD340478, 015E (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SPCR CD3405E4, 0050 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: HPET CD340638, 0038 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: DMAR CD340674, 00E0 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: MCFG CD340990, 003C (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: WD__ CD3409D0, 0134 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SLIC CD340B08, 0024 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: ERST CD322A64, 0270 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: HEST CD322CD4, 059C (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: BERT CD3228A4, 0030 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: EINJ CD3228D4, 0190 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: TCPA CD341164, 0064 (r2 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: PC__ CD3410F4, 006E (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SRAT CD340D30, 03C0 (r1 DELL   PE_SC3          1 DELL        1)
(XEN) ACPI: SSDT CD344000, 3358 (r1 INTEL  PPM RCM  80000001 INTL 20061109)
(XEN) System RAM: 32690MB (33475056kB)
(XEN) Domain heap initialised
(XEN) Processor #0 6:13 APIC version 21
(XEN) Processor #2 6:13 APIC version 21
(XEN) Processor #4 6:13 APIC version 21
(XEN) Processor #6 6:13 APIC version 21
(XEN) Processor #8 6:13 APIC version 21
(XEN) Processor #10 6:13 APIC version 21
(XEN) Processor #1 6:13 APIC version 21
(XEN) Processor #3 6:13 APIC version 21
(XEN) Processor #5 6:13 APIC version 21
(XEN) Processor #7 6:13 APIC version 21
(XEN) Processor #9 6:13 APIC version 21
(XEN) Processor #11 6:13 APIC version 21
(XEN) IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
(XEN) IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55
(XEN) Enabling APIC mode:  Phys.  Using 2 I/O APICs
(XEN) ERST table is invalid
(XEN) Not enabling x2APIC: depends on iommu_supports_eim.
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 2200.056 MHz processor.
(XEN) Initing memory sharing.
(XEN) I/O virtualisation disabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) Platform timer is 14.318MHz HPET
(XEN) Allocated console ring of 32 KiB.
(XEN) VMX: Supported advanced features:
(XEN)  - APIC MMIO access virtualisation
(XEN)  - APIC TPR shadow
(XEN)  - Extended Page Tables (EPT)
(XEN)  - Virtual-Processor Identifiers (VPID)
(XEN)  - Virtual NMI
(XEN)  - MSR direct-access bitmap
(XEN)  - Unrestricted Guest
(XEN) HVM: ASIDs enabled.
(XEN) HVM: VMX enabled
(XEN) HVM: Hardware Assisted Paging (HAP) detected
(XEN) HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) Brought up 12 CPUs
(XEN) *** LOADING DOMAIN 0 ***
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x2355000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000810000000->0000000814000000 (1021994 pages to be allocated)
(XEN)  Init. ramdisk: 000000082d82a000->000000082ffff800
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff82355000
(XEN)  Init. ramdisk: ffffffff82355000->ffffffff84b2a800
(XEN)  Phys-Mach map: ffffffff84b2b000->ffffffff8532b000
(XEN)  Start info:    ffffffff8532b000->ffffffff8532b4b4
(XEN)  Page tables:   ffffffff8532c000->ffffffff85359000
(XEN)  Boot stack:    ffffffff85359000->ffffffff8535a000
(XEN)  TOTAL:         ffffffff80000000->ffffffff85400000
(XEN)  ENTRY ADDRESS: ffffffff81cf4210
(XEN) Dom0 has maximum 12 VCPUs
(XEN) Scrubbing Free RAM: ...........................................................................................................................................................................................................................................................................................done.
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: Errors and warnings
(XEN) Guest Loglevel: Nothing (Rate-limited: Errors and warnings)
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 236kB init memory.

[-- Attachment #7: max4096m-xm-info.txt --]
[-- Type: text/plain, Size: 1204 bytes --]

host                   : zhapcon
release                : 3.5.0-18-zdom0
version                : #29~precise1 SMP Mon Nov 12 13:19:27 GMT 2012
machine                : x86_64
nr_cpus                : 12
nr_nodes               : 1
cores_per_socket       : 6
threads_per_core       : 2
cpu_mhz                : 2200
hw_caps                : bfebfbff:2c100800:00000000:00003f40:13bee3ff:00000000:00000001:00000000
virt_caps              : hvm
total_memory           : 32690
free_memory            : 10435
free_cpus              : 0
xen_major              : 4
xen_minor              : 2
xen_extra              : .0
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          : unavailable
xen_commandline        : placeholder xsave=0 iommu=0 console=vga,com2 com2=115200,8n1 dom0_mem=max:4096m loglevel=8 debug
cc_compiler            : gcc (Gentoo 4.5.4 p1.0, pie-0.4.7) 4.5.4
cc_compile_by          : 
cc_compile_domain      : dingwall.me.uk
cc_compile_date        : Fri Sep 21 16:25:46 BST 2012
xend_config_format     : 4

[-- Attachment #8: Type: text/plain, Size: 126 bytes --]

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

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2012-12-24 14:39 Daniel Kiper
@ 2013-01-24 21:38 ` Carsten Schiers
  0 siblings, 0 replies; 14+ messages in thread
From: Carsten Schiers @ 2013-01-24 21:38 UTC (permalink / raw)
  To: Daniel Kiper
  Cc: konrad.wilk@oracle.com, james-xen@dingwall.me.uk,
	xen-devel@lists.xen.org

Hello Daniel,

have you already had a chance to look at the issue?

BR,
Carsten.

-----Ursprüngliche Nachricht-----
Von: xen-devel-bounces@lists.xen.org [mailto:xen-devel-bounces@lists.xen.org] Im Auftrag von Daniel Kiper
Gesendet: Montag, 24. Dezember 2012 15:39
An: Carsten Schiers
Cc: xen-devel@lists.xen.org; james-xen@dingwall.me.uk; konrad.wilk@oracle.com
Betreff: Re: [Xen-devel] kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17

Hi,

> I had the same messages flooding logs, but it was in DomUs. It came together with e.g.:
>
>     System RAM resource [mem 0x20000000-0x3fffffff] cannot be added
>
> I am not 100% sure, but it was only for DomUs with PCI and PCIe devices passed-through.
>
> Xen 4.2.1, Dom0&DomU Kernel 3.7.1. Xen commandline with dom0_mem=2G and dom0_mem=2G,max:2G.
> Machine is an Intel 64 Bit 16 GB installation.
>
> Difficult to check deeper, as it made me so nervous that I reverted to 
> Xen 4.1, but I could certainly re-install it after Xmas, if it is helping...

Thanks for update. I fill that it could be linked with recent balloon driver updates. I will take a look at that bug in new year.

Daniel

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

-----
E-Mail ist virenfrei.
Von AVG überprüft - www.avg.de
Version: 2013.0.2805 / Virendatenbank: 2637/5993 - Ausgabedatum: 28.12.2012 

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
@ 2013-01-25 10:48 Daniel Kiper
  2013-01-28 16:36 ` Darren Shepherd
  0 siblings, 1 reply; 14+ messages in thread
From: Daniel Kiper @ 2013-01-25 10:48 UTC (permalink / raw)
  To: carsten; +Cc: xen-devel, james-xen, konrad.wilk

Hi Carsten,

> have you already had a chance to look at the issue?

Sadly not yet because I am working on my lab upgrade
which is needed for this work too. However, I will take
a look at this ASAP. Stay tuned.

Daniel

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2013-01-25 10:48 Daniel Kiper
@ 2013-01-28 16:36 ` Darren Shepherd
  2013-01-28 17:40   ` David Vrabel
  0 siblings, 1 reply; 14+ messages in thread
From: Darren Shepherd @ 2013-01-28 16:36 UTC (permalink / raw)
  To: xen-devel; +Cc: james-xen, Daniel Kiper, carsten

biting this behavior.  The specific
error I'm seeing is

xen_balloon: reserve_additional_memory: add_memory() failed: -17
System RAM resource 88000000 - 8fffffff cannot be added

This is a lab system that I'm actively working on so I can give
whatever info you need or run whatever.  Below is the xl info and xl
dmesg output

host                   : g1dlgenlab02-02.dev.glbt1.gdg
release                : 3.4.26-5.el6.centos.alt.x86_64
version                : #1 SMP Mon Jan 21 22:54:13 UTC 2013
machine                : x86_64
nr_cpus                : 16
max_cpu_id             : 23
nr_nodes               : 1
cores_per_socket       : 4
threads_per_core       : 2
cpu_mhz                : 2133
hw_caps                :
bfebfbff:2c100800:00000000:00003f40:029ee3ff:00000000:00000001:00000000
virt_caps              :
total_memory           : 49142
free_memory            : 46304
sharing_freed_memory   : 0
sharing_used_memory    : 0
free_cpus              : 0
xen_major              : 4
xen_minor              : 2
xen_extra              : .1
xen_caps               : xen-3.0-x86_64 xen-3.0-x86_32p
xen_scheduler          : credit
xen_pagesize           : 4096
platform_params        : virt_start=3D0xffff800000000000
xen_changeset          : unavailable
xen_commandline        : dom0_mem=3D2048M,max:2048M loglvl=3Dall guest_logl=
vl=3Dall
cc_compiler            : gcc (GCC) 4.4.6 20120305 (Red Hat 4.4.6-4)
cc_compile_by          : mockbuild
cc_compile_domain      : (none)
cc_compile_date        : Thu Jan 24 19:47:32 UTC 2013
xend_config_format     : 4




(XEN) Xen version 4.2.1 (mockbuild@(none)) (gcc (GCC) 4.4.6 20120305
(Red Hat 4.4.6-4)) Thu Jan 24 19:47:32 UTC 2013
(XEN) Latest ChangeSet: unavailable
(XEN) Bootloader: GNU GRUB 0.97
(XEN) Command line: dom0_mem=3D2048M,max:2048M loglvl=3Dall guest_loglvl=3D=
all
(XEN) Video information:
(XEN)  VGA is text mode 80x25, font 8x16
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN) Disc information:
(XEN)  Found 1 MBR signatures
(XEN)  Found 2 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009ec00 (usable)
(XEN)  000000000009ec00 - 00000000000a0000 (reserved)
(XEN)  00000000000e0000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 00000000bf730000 (usable)
(XEN)  00000000bf730000 - 00000000bf73e000 (ACPI data)
(XEN)  00000000bf73e000 - 00000000bf7a0000 (ACPI NVS)
(XEN)  00000000bf7a0000 - 00000000bf7b0000 (reserved)
(XEN)  00000000bf7bc000 - 00000000c0000000 (reserved)
(XEN)  00000000e0000000 - 00000000f0000000 (reserved)
(XEN)  00000000fee00000 - 00000000fee01000 (reserved)
(XEN)  00000000ffa00000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000c40000000 (usable)
(XEN) ACPI: RSDP 000FA6F0, 0024 (r2 ACPIAM)
(XEN) ACPI: XSDT BF730100, 005C (r1 102611 XSDT1515 20111026 MSFT       97)
(XEN) ACPI: FACP BF730290, 00F4 (r4 102611 FACP1515 20111026 MSFT       97)
(XEN) ACPI: DSDT BF730540, 4827 (r2  5442B 5442B165      165 INTL 20051117)
(XEN) ACPI: FACS BF73E000, 0040
(XEN) ACPI: APIC BF730390, 011E (r2 102611 APIC1515 20111026 MSFT       97)
(XEN) ACPI: SPCR BF7304B0, 0050 (r1 102611 SPCR1515 20111026 MSFT       97)
(XEN) ACPI: MCFG BF730500, 003C (r1 102611 OEMMCFG  20111026 MSFT       97)
(XEN) ACPI: OEMB BF73E040, 0082 (r1 102611 OEMB1515 20111026 MSFT       97)
(XEN) ACPI: HPET BF73A540, 0038 (r1 102611 OEMHPET  20111026 MSFT       97)
(XEN) ACPI: SSDT BF7418C0, 0363 (r1 DpgPmm    CpuPm       12 INTL 20051117)
(XEN) System RAM: 49142MB (50322232kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-0000000c40000000
(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[bf73e00c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
(XEN) Processor #0 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
(XEN) Processor #2 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
(XEN) Processor #18 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x04] lapic_id[0x14] enabled)
(XEN) Processor #20 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x05] lapic_id[0x20] enabled)
(XEN) Processor #32 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x06] lapic_id[0x22] enabled)
(XEN) Processor #34 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x07] lapic_id[0x32] enabled)
(XEN) Processor #50 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x08] lapic_id[0x34] enabled)
(XEN) Processor #52 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x09] lapic_id[0x01] enabled)
(XEN) Processor #1 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x03] enabled)
(XEN) Processor #3 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled)
(XEN) Processor #19 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x15] enabled)
(XEN) Processor #21 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x21] enabled)
(XEN) Processor #33 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x23] enabled)
(XEN) Processor #35 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x33] enabled)
(XEN) Processor #51 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x10] lapic_id[0x35] enabled)
(XEN) Processor #53 6:12 APIC version 21
(XEN) ACPI: LAPIC (acpi_id[0x11] lapic_id[0x90] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x12] lapic_id[0x91] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x13] lapic_id[0x92] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x14] lapic_id[0x93] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x15] lapic_id[0x94] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x16] lapic_id[0x95] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x17] lapic_id[0x96] disabled)
(XEN) ACPI: LAPIC (acpi_id[0x18] lapic_id[0x97] disabled)
(XEN) ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
(XEN) Overriding APIC driver with bigsmp
(XEN) ACPI: IOAPIC (id[0x06] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 6, version 32, address 0xfec00000, GSI 0-23
(XEN) ACPI: IOAPIC (id[0x07] address[0xfec8a000] gsi_base[24])
(XEN) IOAPIC[1]: apic_id 7, version 32, address 0xfec8a000, GSI 24-47
(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:  Phys.  Using 2 I/O APICs
(XEN) ACPI: HPET id: 0x8086a301 base: 0xfed00000
(XEN) Table is not found!
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) SMP: Allowing 24 CPUs (8 hotplug CPUs)
(XEN) IRQ limits: 48 GSI, 3040 MSI/MSI-X
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 2133.497 MHz processor.
(XEN) Initing memory sharing.
(XEN) mce_intel.c:1239: MCA Capability: BCAST 1 SER 0 CMCI 1 firstbank
0 extended MCE MSR 0
(XEN) Intel machine check reporting enabled
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0000 buses 00 - ff
(XEN) PCI: MCFG area at e0000000 reserved in E820
(XEN) PCI: Using MCFG for segment 0000 bus 00-ff
(XEN) I/O virtualisation disabled
(XEN) Enabled directed EOI with ioapic_ack_old on!
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using old ACK method
(XEN) ..TIMER: vector=3D0xF0 apic1=3D0 pin1=3D2 apic2=3D-1 pin2=3D-1
(XEN) Platform timer is 14.318MHz HPET
(XEN) Allocated console ring of 128 KiB.
(XEN) CPU0: VMX disabled by BIOS.
(XEN) VMX: failed to initialise.
(XEN) Brought up 16 CPUs
(XEN) ACPI sleep modes: S3
(XEN) mcheck_poll: Machine check polling timer started.
(XEN) *** LOADING DOMAIN 0 ***
(XEN)  Xen  kernel: 64-bit, lsb, compat32
(XEN)  Dom0 kernel: 64-bit, PAE, lsb, paddr 0x1000000 -> 0x2b1c000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000c14000000->0000000c18000000 (496229 pages
to be allocated)
(XEN)  Init. ramdisk: 0000000c3d265000->0000000c3ffffc00
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff82b1c000
(XEN)  Init. ramdisk: ffffffff82b1c000->ffffffff858b6c00
(XEN)  Phys-Mach map: ffffffff858b7000->ffffffff85cb7000
(XEN)  Start info:    ffffffff85cb7000->ffffffff85cb74b4
(XEN)  Page tables:   ffffffff85cb8000->ffffffff85ceb000
(XEN)  Boot stack:    ffffffff85ceb000->ffffffff85cec000
(XEN)  TOTAL:         ffffffff80000000->ffffffff86000000
(XEN)  ENTRY ADDRESS: ffffffff81b1c200
(XEN) Dom0 has maximum 16 VCPUs
(XEN) Scrubbing Free RAM:
...........................................................................=
...........................................................................=
...........................................................................=
...........................................................................=
...........................................................................=
...........................................................................=
..............done.
(XEN) Initial low memory virq threshold set at 0x4000 pages.
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) Xen is relinquishing VGA console.
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch
input to Xen)
(XEN) Freed 252kB init memory.
(XEN) PCI add device 0000:00:00.0
(XEN) PCI add device 0000:00:01.0
(XEN) PCI add device 0000:00:03.0
(XEN) PCI add device 0000:00:05.0
(XEN) PCI add device 0000:00:07.0
(XEN) PCI add device 0000:00:13.0
(XEN) PCI add device 0000:00:14.0
(XEN) PCI add device 0000:00:14.1
(XEN) PCI add device 0000:00:14.2
(XEN) PCI add device 0000:00:14.3
(XEN) PCI add device 0000:00:16.0
(XEN) PCI add device 0000:00:16.1
(XEN) PCI add device 0000:00:16.2
(XEN) PCI add device 0000:00:16.3
(XEN) PCI add device 0000:00:16.4
(XEN) PCI add device 0000:00:16.5
(XEN) PCI add device 0000:00:16.6
(XEN) PCI add device 0000:00:16.7
(XEN) PCI add device 0000:00:1d.0
(XEN) PCI add device 0000:00:1d.1
(XEN) PCI add device 0000:00:1d.2
(XEN) PCI add device 0000:00:1d.7
(XEN) PCI add device 0000:00:1e.0
(XEN) PCI add device 0000:00:1f.0
(XEN) PCI add device 0000:00:1f.2
(XEN) PCI add device 0000:00:1f.3
(XEN) PCI add device 0000:01:00.0
(XEN) PCI add device 0000:01:00.1
(XEN) PCI add device 0000:04:00.0
(XEN) PCI add device 0000:05:04.0
(XEN) PCI add device 0000:fe:00.0
(XEN) PCI add device 0000:fe:00.1
(XEN) PCI add device 0000:fe:02.0
(XEN) PCI add device 0000:fe:02.1
(XEN) PCI add device 0000:fe:02.2
(XEN) PCI add device 0000:fe:02.3
(XEN) PCI add device 0000:fe:02.4
(XEN) PCI add device 0000:fe:02.5
(XEN) PCI add device 0000:fe:03.0
(XEN) PCI add device 0000:fe:03.1
(XEN) PCI add device 0000:fe:03.2
(XEN) PCI add device 0000:fe:03.4
(XEN) PCI add device 0000:fe:04.0
(XEN) PCI add device 0000:fe:04.1
(XEN) PCI add device 0000:fe:04.2
(XEN) PCI add device 0000:fe:04.3
(XEN) PCI add device 0000:fe:05.0
(XEN) PCI add device 0000:fe:05.1
(XEN) PCI add device 0000:fe:05.2
(XEN) PCI add device 0000:fe:05.3
(XEN) PCI add device 0000:fe:06.0
(XEN) PCI add device 0000:fe:06.1
(XEN) PCI add device 0000:fe:06.2
(XEN) PCI add device 0000:fe:06.3
(XEN) PCI add device 0000:ff:00.0
(XEN) PCI add device 0000:ff:00.1
(XEN) PCI add device 0000:ff:02.0
(XEN) PCI add device 0000:ff:02.1
(XEN) PCI add device 0000:ff:02.2
(XEN) PCI add device 0000:ff:02.3
(XEN) PCI add device 0000:ff:02.4
(XEN) PCI add device 0000:ff:02.5
(XEN) PCI add device 0000:ff:03.0
(XEN) PCI add device 0000:ff:03.1
(XEN) PCI add device 0000:ff:03.2
(XEN) PCI add device 0000:ff:03.4
(XEN) PCI add device 0000:ff:04.0
(XEN) PCI add device 0000:ff:04.1
(XEN) PCI add device 0000:ff:04.2
(XEN) PCI add device 0000:ff:04.3
(XEN) PCI add device 0000:ff:05.0
(XEN) PCI add device 0000:ff:05.1
(XEN) PCI add device 0000:ff:05.2
(XEN) PCI add device 0000:ff:05.3
(XEN) PCI add device 0000:ff:06.0
(XEN) PCI add device 0000:ff:06.1
(XEN) PCI add device 0000:ff:06.2
(XEN) PCI add device 0000:ff:06.3
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.
(XEN) Cannot bind IRQ2 to dom0. In use by 'cascade'.


Thanks,
Darren

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
  2013-01-28 16:36 ` Darren Shepherd
@ 2013-01-28 17:40   ` David Vrabel
  0 siblings, 0 replies; 14+ messages in thread
From: David Vrabel @ 2013-01-28 17:40 UTC (permalink / raw)
  To: Darren Shepherd; +Cc: carsten, Daniel Kiper, james-xen, xen-devel

On 28/01/13 16:36, Darren Shepherd wrote:
> biting this behavior.  The specific
> error I'm seeing is
> 
> xen_balloon: reserve_additional_memory: add_memory() failed: -17
> System RAM resource 88000000 - 8fffffff cannot be added

Inside dom0, yes?

Looking at the balloon driver, it doesn't seem to handle dom0 (or domUs
with PCI devices passed-through) very well because it doesn't check the
memory map before attempting to hotplug additional memory so it ends up
overlapping a region that is already reserved.  This is is particularly
common if you booted Xen with dom0_mem=max:MMM as the host's memory
beyond MMM is still in dom0's memory map (marked as UNUSABLE).

I suggest disabling CONFIG_XEN_BALLOON_MEMORY_HOTPLUG for now.

However, this only triggers if current_pages != target_pages and there
are no ballooned pages available.  This shouldn't happen unless the
target is explicitly adjusted upwards.

If you're seeing this with the beta 3.4.y kernel for CentOS 6, then it's
probably because I missed backporting 58b7b53a3 (xen/balloon: Subtract
from xen_released_pages the count that is populated).

David

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

* Re: kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17
@ 2013-01-29 11:53 Daniel Kiper
  0 siblings, 0 replies; 14+ messages in thread
From: Daniel Kiper @ 2013-01-29 11:53 UTC (permalink / raw)
  To: darren.s.shepherd; +Cc: carsten, james-xen, xen-devel

Hi,

> biting this behavior.  The specific
> error I'm seeing is
>
> xen_balloon: reserve_additional_memory: add_memory() failed: -17
> System RAM resource 88000000 - 8fffffff cannot be added
>
> This is a lab system that I'm actively working on so I can give
> whatever info you need or run whatever.  Below is the xl info and xl
> dmesg output

[...]

Thanks. I am going to work on this about the
middle of February after my holiday.

Daniel

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

end of thread, other threads:[~2013-01-29 11:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-19  8:47 kernel log flooded with: xen_balloon: reserve_additional_memory: add_memory() failed: -17 James Dingwall
2012-12-19 10:55 ` James Dingwall
2012-12-21 20:23   ` Konrad Rzeszutek Wilk
2013-01-02 10:28     ` James Dingwall
2012-12-20 14:50 ` Jacek Konieczny
2012-12-20 15:55   ` James Dingwall
2012-12-21 20:25 ` Konrad Rzeszutek Wilk
2012-12-23 10:41   ` Carsten Schiers
  -- strict thread matches above, loose matches on Subject: below --
2012-12-24 14:39 Daniel Kiper
2013-01-24 21:38 ` Carsten Schiers
2013-01-25 10:48 Daniel Kiper
2013-01-28 16:36 ` Darren Shepherd
2013-01-28 17:40   ` David Vrabel
2013-01-29 11:53 Daniel Kiper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).