All of lore.kernel.org
 help / color / mirror / Atom feed
* Cannot load latest 2.6.32.10 kernel on AMD quad-core
@ 2010-04-23 17:50 Gerry Reno
  2010-04-23 18:27 ` Boris Derzhavets
  2010-05-03 16:18 ` Konrad Rzeszutek Wilk
  0 siblings, 2 replies; 64+ messages in thread
From: Gerry Reno @ 2010-04-23 17:50 UTC (permalink / raw)
  To: xen-devel

I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my 
hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that 
kernel had issues with rxchecksumming.  So I upgraded the server to 
lucid and am now trying to compile a new pv_ops dom0 kernel for it.

Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops 
dom0 kernel twice.  Once from the config in the email Lucid pv_ops dom0 
howto and once from the lucid server config modified by adding all the 
XEN configurations.  I get the same result both ways.  After building 
the kernel, I try to start the pv_ops dom0 kernel as domU just to make 
sure it runs and it crashes right at the start of boot complaining like 
this:

__vmallic_node+0xa2/0xb0
? alloc_large_system_hash+0x15/0x21
? inet_init+0x0/0x209
__vmalloc+0x22/0x30
alloc_large_system_hash+0x15/0x21a
? inet_init+0x0/0x209
? inet_init+0x0/0x209
tcp_init+0xa3//0x37e
inet_init+0x14b/0x209
do_one_initcall+0x3c/0x10a
kernel_init+0x159/0x1af
child_rip+0xa/0x20
Code: d0 49 8b 04 24 48 85 c0 75 ec eb c5 55 48 89 e5 48 8....
9 5d e8 4c 89 65 f0 4c 89 6d f8 0f 1f 44 00 00 48 89 e5 48 8....
RIP [<ffffffff810f4f5f>] __free_pages+0x1f/0x90
---[ end trace e93713a9d40cd06d ]---
Kernel panic - not syncing: Attempted to kill init!
Pid: 1, comm: swapper Tainted: G      D  W    2.6.32.10 #4
panic+0x78/0x136
? mm_release+0x60/0x130
do_exit+0x6ca/0x7f0
oops_end+0xaf/0xf0
die+0x5b/0x90
do_general_protection+0x152/0x160
general_protection+0x25/0x30
? __free_pages+0x1f/0x90
__vunmap+0x7a/0x110
vfree+0x2a/0x30
__vmalloc_area_node+0x15c/0x190
? alloc_large_system_hash+0x15a/0x21a
__vmalloc_node+0xa2/0xb0
? alloc_large_system_hash+0x15a/0x21a
? inet_init+0x0/0x209
? inet_init+0x0/0x209
tcp_init+0xa3//0x37e
inet_init+0x14b/0x209
do_one_initcall+0x3c/0x10a
kernel_init+0x159/0x1af
child_rip+0xa/0x20
? kernel_init+0x10/0x1af
? child_rip+0x0/0x20

I fired up the old 2.6.31.6 kernel with lucid and it boots just fine as 
domU.

Can anyone shed some light on what may be the problem here and how I can 
build a working 2.6.32.10 pv_ops dom0 kernel for this hardware?  


-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-23 17:50 Cannot load latest 2.6.32.10 kernel on AMD quad-core Gerry Reno
@ 2010-04-23 18:27 ` Boris Derzhavets
  2010-04-23 18:55   ` Boris Derzhavets
  2010-05-03 16:18 ` Konrad Rzeszutek Wilk
  1 sibling, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-23 18:27 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

I've just was able to reproduce  Thiago's  instruction on Lucid RC for Xen 4.0 & 2.6.32.10 pvops kernel ( C2D E8400 , ASUS P5Q-E, 8 GB RAM) . ACPI Processor
has been disabled, what is particular MB issue

Quote :-

1.Clone JF's Git Repo:

 cd /usr/src
 git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
 cd linux-2.6-xen
 git checkout -b xen/stable origin/xen/stable


2. Configure, compile and install:
 
 make menuconfig # Enabled the dom0 support and the Xen backend as usual on U   9.10, F12

 make -j2
 chmod g-s /usr/src -R     
 make deb-pkg
 dpkg -i ../linux-image*2.6.32.10*.deb
 depmod 2.6.32.10
 update-initramfs -c -k 2.6.32.10
 update-grub
 echo "xen-evtchn" >> /etc/modules

3- Download and install the latest Xen:

 Preparing your environment:

 apt-get build-dep xen-3.3
 aptitude install uuid-dev iasl texinfo

 Download and compile:

 cd /usr/src
 Uncompress xen-4.0.0.tar.gz
 cd xen-4.0.0
 make xen
 make tools
 make install-xen
 make install-tools PYTHON_PREFIX_ARG=

 update-rc.d xend defaults 20 21
 update-rc.d xendomains defaults 21 20


4. Add to /boot/grub/grub.cfg

# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry "Xen 4.0 / Ubuntu 10.4 RC kernel 2.6.32.10 pvops" {
insmod ext2
set root=(hd1,4)
multiboot (hd1,4)/xen.gz dummy=dummy
module (hd1,4)/vmlinuz-2.6.32.10 dummy=dummy root=/dev/sdb5 ro console=tty0
module (hd1,4)/initrd.img-2.6.32.10

Quote ends.


--- On Fri, 4/23/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Friday, April 23, 2010, 1:50 PM

I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that kernel had issues with rxchecksumming.  So I upgraded the server to lucid and am now trying to compile a new pv_ops dom0 kernel for it.

Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops dom0 kernel twice.  Once from the config in the email Lucid pv_ops dom0 howto and once from the lucid server config modified by adding all the XEN configurations.  I get the same result both ways.  After building the kernel, I try to start the pv_ops dom0 kernel as domU just to make sure it runs and it crashes right at the start of boot complaining like this:

__vmallic_node+0xa2/0xb0
? alloc_large_system_hash+0x15/0x21
? inet_init+0x0/0x209
__vmalloc+0x22/0x30
alloc_large_system_hash+0x15/0x21a
? inet_init+0x0/0x209
? inet_init+0x0/0x209
tcp_init+0xa3//0x37e
inet_init+0x14b/0x209
do_one_initcall+0x3c/0x10a
kernel_init+0x159/0x1af
child_rip+0xa/0x20
Code: d0 49 8b 04 24 48 85 c0 75 ec eb c5 55 48 89 e5 48 8....
9 5d e8 4c 89 65 f0 4c 89 6d f8 0f 1f 44 00 00 48 89 e5 48 8....
RIP [<ffffffff810f4f5f>] __free_pages+0x1f/0x90
---[ end trace e93713a9d40cd06d ]---
Kernel panic - not syncing: Attempted to kill init!
Pid: 1, comm: swapper Tainted: G      D  W    2.6.32.10 #4
panic+0x78/0x136
? mm_release+0x60/0x130
do_exit+0x6ca/0x7f0
oops_end+0xaf/0xf0
die+0x5b/0x90
do_general_protection+0x152/0x160
general_protection+0x25/0x30
? __free_pages+0x1f/0x90
__vunmap+0x7a/0x110
vfree+0x2a/0x30
__vmalloc_area_node+0x15c/0x190
? alloc_large_system_hash+0x15a/0x21a
__vmalloc_node+0xa2/0xb0
? alloc_large_system_hash+0x15a/0x21a
? inet_init+0x0/0x209
? inet_init+0x0/0x209
tcp_init+0xa3//0x37e
inet_init+0x14b/0x209
do_one_initcall+0x3c/0x10a
kernel_init+0x159/0x1af
child_rip+0xa/0x20
? kernel_init+0x10/0x1af
? child_rip+0x0/0x20

I fired up the old 2.6.31.6 kernel with lucid and it boots just fine as domU.

Can anyone shed some light on what may be the problem here and how I can build a working 2.6.32.10 pv_ops dom0 kernel for this hardware?  

-Gerry

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



      

[-- Attachment #1.2: Type: text/html, Size: 5181 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-23 18:27 ` Boris Derzhavets
@ 2010-04-23 18:55   ` Boris Derzhavets
  2010-04-23 20:38     ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-23 18:55 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

I skipped first instruction ( before kernel build ):

# aptitude install build-essential libncurses5-dev dpkg-dev debhelper fakeroot

Boris.

--- On Fri, 4/23/10, Boris Derzhavets <bderzhavets@yahoo.com> wrote:

From: Boris Derzhavets <bderzhavets@yahoo.com>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com, "Gerry Reno" <greno@verizon.net>
Date: Friday, April 23, 2010, 2:27 PM

I've just was able to reproduce  Thiago's  instruction on Lucid RC for Xen 4.0 & 2.6.32.10 pvops kernel ( C2D E8400 , ASUS P5Q-E, 8 GB RAM) . ACPI Processor
has been disabled, what is particular MB issue

Quote :-

1.Clone JF's Git Repo:

 cd /usr/src
 git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-xen
 cd linux-2.6-xen
 git checkout -b xen/stable origin/xen/stable


2. Configure, compile and install:
 
 make menuconfig # Enabled the dom0 support and the Xen backend as usual on U   9.10, F12

 make -j2
 chmod g-s /usr/src -R     
 make deb-pkg
 dpkg -i ../linux-image*2.6.32.10*.deb
 depmod 2.6.32.10
 update-initramfs -c -k
 2.6.32.10
 update-grub
 echo "xen-evtchn" >> /etc/modules

3- Download and install the latest Xen:

 Preparing your environment:

 apt-get build-dep xen-3.3
 aptitude install uuid-dev iasl texinfo

 Download and compile:

 cd /usr/src
 Uncompress xen-4.0.0.tar.gz
 cd xen-4.0.0
 make xen
 make tools
 make install-xen
 make install-tools PYTHON_PREFIX_ARG=

 update-rc.d xend defaults 20 21
 update-rc.d xendomains defaults 21 20


4. Add to /boot/grub/grub.cfg

# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry "Xen 4.0 / Ubuntu 10.4 RC kernel 2.6.32.10 pvops" {
insmod ext2
set root=(hd1,4)
multiboot (hd1,4)/xen.gz
 dummy=dummy
module (hd1,4)/vmlinuz-2.6.32.10 dummy=dummy root=/dev/sdb5 ro console=tty0
module (hd1,4)/initrd.img-2.6.32.10

Quote ends.


--- On Fri, 4/23/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Friday, April 23, 2010, 1:50 PM

I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that kernel had issues with rxchecksumming.  So I upgraded the server to lucid and am now trying to compile a new pv_ops dom0 kernel for it.

Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops dom0 kernel twice. 
 Once from the config in the email Lucid pv_ops dom0 howto and once from the lucid server config modified by adding all the XEN configurations.  I get the same result both ways.  After building the kernel, I try to start the pv_ops dom0 kernel as domU just to make sure it runs and it crashes right at the start of boot complaining like this:

__vmallic_node+0xa2/0xb0
? alloc_large_system_hash+0x15/0x21
? inet_init+0x0/0x209
__vmalloc+0x22/0x30
alloc_large_system_hash+0x15/0x21a
? inet_init+0x0/0x209
? inet_init+0x0/0x209
tcp_init+0xa3//0x37e
inet_init+0x14b/0x209
do_one_initcall+0x3c/0x10a
kernel_init+0x159/0x1af
child_rip+0xa/0x20
Code: d0 49 8b 04 24 48 85 c0 75 ec eb c5 55 48 89 e5 48 8....
9 5d e8 4c 89 65 f0 4c 89 6d f8 0f 1f 44 00 00 48 89 e5 48 8....
RIP [<ffffffff810f4f5f>] __free_pages+0x1f/0x90
---[ end trace e93713a9d40cd06d ]---
Kernel panic - not syncing: Attempted to kill
 init!
Pid: 1, comm: swapper Tainted: G      D  W    2.6.32.10 #4
panic+0x78/0x136
? mm_release+0x60/0x130
do_exit+0x6ca/0x7f0
oops_end+0xaf/0xf0
die+0x5b/0x90
do_general_protection+0x152/0x160
general_protection+0x25/0x30
? __free_pages+0x1f/0x90
__vunmap+0x7a/0x110
vfree+0x2a/0x30
__vmalloc_area_node+0x15c/0x190
? alloc_large_system_hash+0x15a/0x21a
__vmalloc_node+0xa2/0xb0
? alloc_large_system_hash+0x15a/0x21a
? inet_init+0x0/0x209
? inet_init+0x0/0x209
tcp_init+0xa3//0x37e
inet_init+0x14b/0x209
do_one_initcall+0x3c/0x10a
kernel_init+0x159/0x1af
child_rip+0xa/0x20
? kernel_init+0x10/0x1af
? child_rip+0x0/0x20

I fired up the old 2.6.31.6 kernel with lucid and it boots just fine as domU.

Can anyone shed some light on what may be the problem here and how I can build a working 2.6.32.10 pv_ops dom0 kernel for this hardware? 
 

-Gerry

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



      
-----Inline Attachment Follows-----

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



      

[-- Attachment #1.2: Type: text/html, Size: 6496 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-23 18:55   ` Boris Derzhavets
@ 2010-04-23 20:38     ` Gerry Reno
  2010-04-23 21:31       ` Boris Derzhavets
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-23 20:38 UTC (permalink / raw)
  To: xen-devel

Boris Derzhavets wrote:
> I skipped first instruction ( before kernel build ):
>
> # aptitude install build-essential libncurses5-dev dpkg-dev debhelper 
> fakeroot
>
> Boris.
>
> --- On *Fri, 4/23/10, Boris Derzhavets /<bderzhavets@yahoo.com>/* wrote:
>
>
>     From: Boris Derzhavets <bderzhavets@yahoo.com>
>     Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on
>     AMD quad-core
>     To: xen-devel@lists.xensource.com, "Gerry Reno" <greno@verizon.net>
>     Date: Friday, April 23, 2010, 2:27 PM
>
>     I've just was able to reproduce  Thiago's  instruction on Lucid RC
>     for Xen 4.0 & 2.6.32.10 pvops kernel ( C2D E8400 , ASUS P5Q-E, 8
>     GB RAM) . ACPI Processor
>     has been disabled, what is particular MB issue
>
>     Quote :-
>
>     1.Clone JF's Git Repo:
>
>      cd /usr/src
>      git clone
>     git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git
>     linux-2.6-xen
>      cd linux-2.6-xen
>      git checkout -b xen/stable origin/xen/stable
>
>
>     2. Configure, compile and install:
>      
>      make menuconfig # Enabled the dom0 support and the Xen backend as
>     usual on U   9.10, F12
>
>      make -j2
>      chmod g-s /usr/src -R    
>      make deb-pkg
>      dpkg -i ../linux-image*2.6.32.10*.deb
>      depmod 2.6.32.10
>      update-initramfs -c -k 2.6.32.10
>      update-grub
>      echo "xen-evtchn" >> /etc/modules
>
>     3- Download and install the latest Xen:
>
>      Preparing your environment:
>
>      apt-get build-dep xen-3.3
>      aptitude install uuid-dev iasl texinfo
>
>      Download and compile:
>
>      cd /usr/src
>      Uncompress xen-4.0.0.tar.gz
>      cd xen-4.0.0
>      make xen
>      make tools
>      make install-xen
>      make install-tools PYTHON_PREFIX_ARG=
>
>      update-rc.d xend defaults 20 21
>      update-rc.d xendomains defaults 21 20
>
>
>     4. Add to /boot/grub/grub.cfg
>
>     # This file provides an easy way to add custom menu entries. 
>     Simply type the
>     # menu entries you want to add after this comment.  Be careful not
>     to change
>     # the 'exec tail' line above.
>     menuentry "Xen 4.0 / Ubuntu 10.4 RC kernel 2.6.32.10 pvops" {
>     insmod ext2
>     set root=(hd1,4)
>     multiboot (hd1,4)/xen.gz dummy=dummy
>     module (hd1,4)/vmlinuz-2.6.32.10 dummy=dummy root=/dev/sdb5 ro
>     console=tty0
>     module (hd1,4)/initrd.img-2.6.32.10
>
>     Quote ends.
>
>
>     --- On *Fri, 4/23/10, Gerry Reno /<greno@verizon.net>/* wrote:
>
>
>         From: Gerry Reno <greno@verizon.net>
>         Subject: [Xen-devel] Cannot load latest 2.6.32.10 kernel on
>         AMD quad-core
>         To: xen-devel@lists.xensource.com
>         Date: Friday, April 23, 2010, 1:50 PM
>
>         I previously had the pv_ops dom0 2.6.31.6 kernel built and
>         running on my hardware (amd phenom ii x4 quad-core) just fine
>         under karmic.  But that kernel had issues with
>         rxchecksumming.  So I upgraded the server to lucid and am now
>         trying to compile a new pv_ops dom0 kernel for it.
>
>         Now, yesterday I carefully built the latest
>         2.6.32.10(xen/stable) pv_ops dom0 kernel twice.  Once from the
>         config in the email Lucid pv_ops dom0 howto and once from the
>         lucid server config modified by adding all the XEN
>         configurations.  I get the same result both ways.  After
>         building the kernel, I try to start the pv_ops dom0 kernel as
>         domU just to make sure it runs and it crashes right at the
>         start of boot complaining like this:
>
>         __vmallic_node+0xa2/0xb0
>         ? alloc_large_system_hash+0x15/0x21
>         ? inet_init+0x0/0x209
>         __vmalloc+0x22/0x30
>         alloc_large_system_hash+0x15/0x21a
>         ? inet_init+0x0/0x209
>         ? inet_init+0x0/0x209
>         tcp_init+0xa3//0x37e
>         inet_init+0x14b/0x209
>         do_one_initcall+0x3c/0x10a
>         kernel_init+0x159/0x1af
>         child_rip+0xa/0x20
>         Code: d0 49 8b 04 24 48 85 c0 75 ec eb c5 55 48 89 e5 48 8....
>         9 5d e8 4c 89 65 f0 4c 89 6d f8 0f 1f 44 00 00 48 89 e5 48 8....
>         RIP [<ffffffff810f4f5f>] __free_pages+0x1f/0x90
>         ---[ end trace e93713a9d40cd06d ]---
>         Kernel panic - not syncing: Attempted to kill init!
>         Pid: 1, comm: swapper Tainted: G      D  W    2.6.32.10 #4
>         panic+0x78/0x136
>         ? mm_release+0x60/0x130
>         do_exit+0x6ca/0x7f0
>         oops_end+0xaf/0xf0
>         die+0x5b/0x90
>         do_general_protection+0x152/0x160
>         general_protection+0x25/0x30
>         ? __free_pages+0x1f/0x90
>         __vunmap+0x7a/0x110
>         vfree+0x2a/0x30
>         __vmalloc_area_node+0x15c/0x190
>         ? alloc_large_system_hash+0x15a/0x21a
>         __vmalloc_node+0xa2/0xb0
>         ? alloc_large_system_hash+0x15a/0x21a
>         ? inet_init+0x0/0x209
>         ? inet_init+0x0/0x209
>         tcp_init+0xa3//0x37e
>         inet_init+0x14b/0x209
>         do_one_initcall+0x3c/0x10a
>         kernel_init+0x159/0x1af
>         child_rip+0xa/0x20
>         ? kernel_init+0x10/0x1af
>         ? child_rip+0x0/0x20
>
>         I fired up the old 2.6.31.6 kernel with lucid and it boots
>         just fine as domU.
>
>         Can anyone shed some light on what may be the problem here and
>         how I can build a working 2.6.32.10 pv_ops dom0 kernel for
>         this hardware? 
>
>         -Gerry
>
>
>
>
>     -----Inline Attachment Follows-----
>
>     _______________________________________________
>     Xen-devel mailing list
>     Xen-devel@lists.xensource.com
>     </mc/compose?to=Xen-devel@lists.xensource.com>
>     http://lists.xensource.com/xen-devel
>
>

Boris,
  Those are the exact steps that I used to build the kernel.  At the end 
of step 2, I try to boot the new kernel as domU just to make sure it 
works and this is where I get the stacktrace.  I did not have this 
problem building and running 2.6.31.6 as either domU or dom0.  And I 
think this may be related to this MB using AMD Phenom II Quad-Core.

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-23 20:38     ` Gerry Reno
@ 2010-04-23 21:31       ` Boris Derzhavets
  2010-04-24  6:12         ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-23 21:31 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

Then i would try to disable backend drivers ( block,blktap,network)
and rebuild the kernel for test in DomU.

Boris.

--- On Fri, 4/23/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Friday, April 23, 2010, 4:38 PM

Boris Derzhavets wrote:
> I skipped first instruction ( before kernel build ):
>
> # aptitude install build-essential libncurses5-dev dpkg-dev debhelper 
> fakeroot
>
> Boris.
>
> --- On *Fri, 4/23/10, Boris Derzhavets /<bderzhavets@yahoo.com>/* wrote:
>
>
>     From: Boris Derzhavets <bderzhavets@yahoo.com>
>     Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on
>     AMD quad-core
>     To: xen-devel@lists.xensource.com, "Gerry Reno" <greno@verizon.net>
>     Date: Friday, April 23, 2010, 2:27 PM
>
>     I've just was able to reproduce  Thiago's  instruction on Lucid RC
>     for Xen 4.0 & 2.6.32.10 pvops kernel ( C2D E8400 , ASUS P5Q-E, 8
>     GB RAM) . ACPI Processor
>     has been disabled, what is particular MB issue
>
>     Quote :-
>
>     1.Clone JF's Git Repo:
>
>      cd /usr/src
>      git clone
>     git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git
>     linux-2.6-xen
>      cd linux-2.6-xen
>      git checkout -b xen/stable origin/xen/stable
>
>
>     2. Configure, compile and install:
>      
>      make menuconfig # Enabled the dom0 support and the Xen backend as
>     usual on U   9.10, F12
>
>      make -j2
>      chmod g-s /usr/src -R    
>      make deb-pkg
>      dpkg -i ../linux-image*2.6.32.10*.deb
>      depmod 2.6.32.10
>      update-initramfs -c -k 2.6.32.10
>      update-grub
>      echo "xen-evtchn" >> /etc/modules
>
>     3- Download and install the latest Xen:
>
>      Preparing your environment:
>
>      apt-get build-dep xen-3.3
>      aptitude install uuid-dev iasl texinfo
>
>      Download and compile:
>
>      cd /usr/src
>      Uncompress xen-4.0.0.tar.gz
>      cd xen-4.0.0
>      make xen
>      make tools
>      make install-xen
>      make install-tools PYTHON_PREFIX_ARG=
>
>      update-rc.d xend defaults 20 21
>      update-rc.d xendomains defaults 21 20
>
>
>     4. Add to /boot/grub/grub.cfg
>
>     # This file provides an easy way to add custom menu entries. 
>     Simply type the
>     # menu entries you want to add after this comment.  Be careful not
>     to change
>     # the 'exec tail' line above.
>     menuentry "Xen 4.0 / Ubuntu 10.4 RC kernel 2.6.32.10 pvops" {
>     insmod ext2
>     set root=(hd1,4)
>     multiboot (hd1,4)/xen.gz dummy=dummy
>     module (hd1,4)/vmlinuz-2.6.32.10 dummy=dummy root=/dev/sdb5 ro
>     console=tty0
>     module (hd1,4)/initrd.img-2.6.32.10
>
>     Quote ends.
>
>
>     --- On *Fri, 4/23/10, Gerry Reno /<greno@verizon.net>/* wrote:
>
>
>         From: Gerry Reno <greno@verizon.net>
>         Subject: [Xen-devel] Cannot load latest 2.6.32.10 kernel on
>         AMD quad-core
>         To: xen-devel@lists.xensource.com
>         Date: Friday, April 23, 2010, 1:50 PM
>
>         I previously had the pv_ops dom0 2.6.31.6 kernel built and
>         running on my hardware (amd phenom ii x4 quad-core) just fine
>         under karmic.  But that kernel had issues with
>         rxchecksumming.  So I upgraded the server to lucid and am now
>         trying to compile a new pv_ops dom0 kernel for it.
>
>         Now, yesterday I carefully built the latest
>         2.6.32.10(xen/stable) pv_ops dom0 kernel twice.  Once from the
>         config in the email Lucid pv_ops dom0 howto and once from the
>         lucid server config modified by adding all the XEN
>         configurations.  I get the same result both ways.  After
>         building the kernel, I try to start the pv_ops dom0 kernel as
>         domU just to make sure it runs and it crashes right at the
>         start of boot complaining like this:
>
>         __vmallic_node+0xa2/0xb0
>         ? alloc_large_system_hash+0x15/0x21
>         ? inet_init+0x0/0x209
>         __vmalloc+0x22/0x30
>         alloc_large_system_hash+0x15/0x21a
>         ? inet_init+0x0/0x209
>         ? inet_init+0x0/0x209
>         tcp_init+0xa3//0x37e
>         inet_init+0x14b/0x209
>         do_one_initcall+0x3c/0x10a
>         kernel_init+0x159/0x1af
>         child_rip+0xa/0x20
>         Code: d0 49 8b 04 24 48 85 c0 75 ec eb c5 55 48 89 e5 48 8....
>         9 5d e8 4c 89 65 f0 4c 89 6d f8 0f 1f 44 00 00 48 89 e5 48 8....
>         RIP [<ffffffff810f4f5f>] __free_pages+0x1f/0x90
>         ---[ end trace e93713a9d40cd06d ]---
>         Kernel panic - not syncing: Attempted to kill init!
>         Pid: 1, comm: swapper Tainted: G      D  W    2.6.32.10 #4
>         panic+0x78/0x136
>         ? mm_release+0x60/0x130
>         do_exit+0x6ca/0x7f0
>         oops_end+0xaf/0xf0
>         die+0x5b/0x90
>         do_general_protection+0x152/0x160
>         general_protection+0x25/0x30
>         ? __free_pages+0x1f/0x90
>         __vunmap+0x7a/0x110
>         vfree+0x2a/0x30
>         __vmalloc_area_node+0x15c/0x190
>         ? alloc_large_system_hash+0x15a/0x21a
>         __vmalloc_node+0xa2/0xb0
>         ? alloc_large_system_hash+0x15a/0x21a
>         ? inet_init+0x0/0x209
>         ? inet_init+0x0/0x209
>         tcp_init+0xa3//0x37e
>         inet_init+0x14b/0x209
>         do_one_initcall+0x3c/0x10a
>         kernel_init+0x159/0x1af
>         child_rip+0xa/0x20
>         ? kernel_init+0x10/0x1af
>         ? child_rip+0x0/0x20
>
>         I fired up the old 2.6.31.6 kernel with lucid and it boots
>         just fine as domU.
>
>         Can anyone shed some light on what may be the problem here and
>         how I can build a working 2.6.32.10 pv_ops dom0 kernel for
>         this hardware? 
>
>         -Gerry
>
>
>
>
>     -----Inline Attachment Follows-----
>
>     _______________________________________________
>     Xen-devel mailing list
>     Xen-devel@lists.xensource.com
>     </mc/compose?to=Xen-devel@lists.xensource.com>
>     http://lists.xensource.com/xen-devel
>
>

Boris,
  Those are the exact steps that I used to build the kernel.  At the end 
of step 2, I try to boot the new kernel as domU just to make sure it 
works and this is where I get the stacktrace.  I did not have this 
problem building and running 2.6.31.6 as either domU or dom0.  And I 
think this may be related to this MB using AMD Phenom II Quad-Core.

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 12383 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-23 21:31       ` Boris Derzhavets
@ 2010-04-24  6:12         ` Gerry Reno
  2010-04-24  6:32           ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-24  6:12 UTC (permalink / raw)
  To: xen-devel

Boris Derzhavets wrote:
> Then i would try to disable backend drivers ( block,blktap,network)
> and rebuild the kernel for test in DomU.
>
> Boris.
>
Ok, I disabled packet and inet and now getting a different error.  
Something about address collision and BAR 3, can't setup and message 
about ACPI_PSS objects.  So I google this for a while and find that many 
many other AMD users having similar messages/problems with the newer 
kernels.  It seems there is some problem between ACPI and PIIX4 SMBUS.  
No BIOS update seems to fix it.  Maybe a BIOS issue that needs a quirk.  
This particular machine has MB: Gigabyte GAMA790GP-UD4H w/AMD Phenom II 
X4.  I've tried noacpi on boot line but didn't help.  Any suggestions?

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24  6:12         ` Gerry Reno
@ 2010-04-24  6:32           ` Gerry Reno
  2010-04-24  7:34             ` Boris Derzhavets
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-24  6:32 UTC (permalink / raw)
  To: xen-devel

Gerry Reno wrote:
> Boris Derzhavets wrote:
>> Then i would try to disable backend drivers ( block,blktap,network)
>> and rebuild the kernel for test in DomU.
>>
>> Boris.
>>
> Ok, I disabled packet and inet and now getting a different error.  
> Something about address collision and BAR 3, can't setup and message 
> about ACPI_PSS objects.  So I google this for a while and find that 
> many many other AMD users having similar messages/problems with the 
> newer kernels.  It seems there is some problem between ACPI and PIIX4 
> SMBUS.  No BIOS update seems to fix it.  Maybe a BIOS issue that needs 
> a quirk.  This particular machine has MB: Gigabyte GAMA790GP-UD4H 
> w/AMD Phenom II X4.  I've tried noacpi on boot line but didn't help.  
> Any suggestions?
>
> -Gerry
I just booted the Lucid kernel 2.6.32-21-server standard kernel and it 
has similar messages but it will boot fine.  Where the powernow-k8 BAR 3 
error is, instead of saying 'can't setup' like dom0 kernel, it says 
'can't allocate resource'. 
"Cool n Quiet" (freq scaling) is OFF in BIOS with this machine which 
isn't a problem for this machine since it is a small server.  Once 
again, any suggestions to compiling a bootable kernel?

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24  6:32           ` Gerry Reno
@ 2010-04-24  7:34             ` Boris Derzhavets
  2010-04-24 16:41               ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-24  7:34 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

Gerry,
Can you boot Dom0 with 2.6.32.10 under Xen 4.X on top of Ubuntu Lucid RC Server?

Boris.

--- On Sat, 4/24/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Saturday, April 24, 2010, 2:32 AM

Gerry Reno wrote:
> Boris Derzhavets wrote:
>> Then i would try to disable backend drivers ( block,blktap,network)
>> and rebuild the kernel for test in DomU.
>> 
>> Boris.
>> 
> Ok, I disabled packet and inet and now getting a different error.  Something about address collision and BAR 3, can't setup and message about ACPI_PSS objects.  So I google this for a while and find that many many other AMD users having similar messages/problems with the newer kernels.  It seems there is some problem between ACPI and PIIX4 SMBUS.  No BIOS update seems to fix it.  Maybe a BIOS issue that needs a quirk.  This particular machine has MB: Gigabyte GAMA790GP-UD4H w/AMD Phenom II X4.  I've tried noacpi on boot line but didn't help.  Any suggestions?
> 
> -Gerry
I just booted the Lucid kernel 2.6.32-21-server standard kernel and it has similar messages but it will boot fine.  Where the powernow-k8 BAR 3 error is, instead of saying 'can't setup' like dom0 kernel, it says 'can't allocate resource'. "Cool n Quiet" (freq scaling) is OFF in BIOS with this machine which isn't a problem for this machine since it is a small server.  Once again, any suggestions to compiling a bootable kernel?

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 2349 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24  7:34             ` Boris Derzhavets
@ 2010-04-24 16:41               ` Gerry Reno
  2010-04-24 17:30                 ` Boris Derzhavets
                                   ` (2 more replies)
  0 siblings, 3 replies; 64+ messages in thread
From: Gerry Reno @ 2010-04-24 16:41 UTC (permalink / raw)
  To: xen-devel

Boris Derzhavets wrote:
> Gerry,
> Can you boot Dom0 with 2.6.32.10 under Xen 4.X on top of Ubuntu Lucid 
> RC Server?
>
> Boris.
>
No, when I try to boot it as dom0 then I see errors about 'cannot locate 
IOAPIC for GSI 9' and then the same ACPI_PSS object errors and then ACPI 
conflicts with PIIX4_SMBUS and finally something like 'cannot allocate 
MMIO region'.  Then all I get is a blank screen.

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 16:41               ` Gerry Reno
@ 2010-04-24 17:30                 ` Boris Derzhavets
  2010-04-24 17:37                 ` Boris Derzhavets
  2010-04-24 17:41                 ` Boris Derzhavets
  2 siblings, 0 replies; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-24 17:30 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

I can load 2.6.32.10 under Xen 4.0 on ASUS P5Q3 (Q9550) and cannot on ASUS P5Q-E (C2D E8400) both based on ( Intel P45 + ICHR10 ), but different RAM DDR3 vs
DDR2. ACPI 2 Support & ACPI APIC are enabled on both boards

However,

Disabling option <> processor allows to load 2.6.32.10 on ASUS P5Q-E
allows to 2.6.32.10 on ASUS P5Q-E. 

[*] Power management and ACPI options  --->  
   [*] ACPI (Advanced Configuration and Power Interface) Support  --->
       [*]   Deprecated /proc/acpi files                                                     
       [*]   Deprecated power /proc/acpi
 directories                                         
                < >   ACPI 4.0 power meter                                                            
                [*]   Future power /sys
 interface                                                     
                [*]   Deprecated /proc/acpi/event support                                             
                <*>   AC
 Adapter                                                                      
                <*>  
 Battery                                                                         
                <*>  
 Button                                                                          
                <M>  
 Video                                                                           
                <*>  
 Fan                                                                             
                -*-  
 Dock                                                                            
->          < >   Processor                                                                    
 
                -*-   NUMA support                                                                   
                [ ]   Debug
 Statements                                                                
                <*>   PCI slot detection driver                                                     
                <*>  
 Container and Module Devices                                  
               <M>   Smart Battery System 

If you are interested view my the most recent reports to Yu Ke.
Thread name :-
Failure to load the most recent kernel 2.6.32.10 ( xen/stable) under Xen 4.0 on F12 (serial log)

Boris.

--- On Sat, 4/24/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Saturday, April 24, 2010, 12:41 PM

Boris Derzhavets wrote:
> Gerry,
> Can you boot Dom0 with 2.6.32.10 under Xen 4.X on top of Ubuntu Lucid RC Server?
> 
> Boris.
> 
No, when I try to boot it as dom0 then I see errors about 'cannot locate IOAPIC for GSI 9' and then the same ACPI_PSS object errors and then ACPI conflicts with PIIX4_SMBUS and finally something like 'cannot allocate MMIO region'.  Then all I get is a blank screen.

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 10247 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 16:41               ` Gerry Reno
  2010-04-24 17:30                 ` Boris Derzhavets
@ 2010-04-24 17:37                 ` Boris Derzhavets
  2010-04-24 17:41                 ` Boris Derzhavets
  2 siblings, 0 replies; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-24 17:37 UTC (permalink / raw)
  To: KeYu; +Cc: xen-devel


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

I believe you have to be aware of issue bellow.

Boris.

--- On Sat, 4/24/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Saturday, April 24, 2010, 12:41 PM

Boris Derzhavets wrote:
> Gerry,
> Can you boot Dom0 with 2.6.32.10 under Xen 4.X on top of Ubuntu Lucid RC Server?
> 
> Boris.
> 
No, when I try to boot it as dom0 then I see errors about 'cannot locate IOAPIC for GSI 9' and then the same ACPI_PSS object errors and then ACPI conflicts with PIIX4_SMBUS and finally something like 'cannot allocate MMIO region'.  Then all I get is a blank screen.

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 1419 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 16:41               ` Gerry Reno
  2010-04-24 17:30                 ` Boris Derzhavets
  2010-04-24 17:37                 ` Boris Derzhavets
@ 2010-04-24 17:41                 ` Boris Derzhavets
  2010-04-24 18:07                   ` Gerry Reno
  2 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-24 17:41 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel


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

I am pretty sure Yu Ke will ask you to obtain a serial log, when problem will be escalated
to him.

Boris.

--- On Sat, 4/24/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Saturday, April 24, 2010, 12:41 PM

Boris Derzhavets wrote:
> Gerry,
> Can you boot Dom0 with 2.6.32.10 under Xen 4.X on top of Ubuntu Lucid RC Server?
> 
> Boris.
> 
No, when I try to boot it as dom0 then I see errors about 'cannot locate IOAPIC for GSI 9' and then the same ACPI_PSS object errors and then ACPI conflicts with PIIX4_SMBUS and finally something like 'cannot allocate MMIO region'.  Then all I get is a blank screen.

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 1485 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 17:41                 ` Boris Derzhavets
@ 2010-04-24 18:07                   ` Gerry Reno
  2010-04-24 18:18                     ` Boris Derzhavets
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-24 18:07 UTC (permalink / raw)
  To: xen-devel

Boris Derzhavets wrote:
> I am pretty sure Yu Ke will ask you to obtain a serial log, when 
> problem will be escalated
> to him.
>
> Boris.
>
> -
>
I don't see a serial port on the board.  ????

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 18:07                   ` Gerry Reno
@ 2010-04-24 18:18                     ` Boris Derzhavets
  2010-04-24 22:24                       ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-24 18:18 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

There is serial (cable)  via RJ45 ( Ethernet). Of course,  if it's not your expense.

Boris.

--- On Sat, 4/24/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Saturday, April 24, 2010, 2:07 PM

Boris Derzhavets wrote:
> I am pretty sure Yu Ke will ask you to obtain a serial log, when 
> problem will be escalated
> to him.
>
> Boris.
>
> -
>
I don't see a serial port on the board.  ????

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 1281 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 18:18                     ` Boris Derzhavets
@ 2010-04-24 22:24                       ` Gerry Reno
  2010-04-25  6:44                         ` Pasi Kärkkäinen
  2010-04-25  6:53                         ` Gerry Reno
  0 siblings, 2 replies; 64+ messages in thread
From: Gerry Reno @ 2010-04-24 22:24 UTC (permalink / raw)
  To: xen-devel

Boris Derzhavets wrote:
> There is serial (cable)  via RJ45 ( Ethernet). Of course,  if it's not 
> your expense.
>
> Boris.
>
Found a USB-USB null modem cable at usbgear.com but will kernel support 
this for serial console?

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 22:24                       ` Gerry Reno
@ 2010-04-25  6:44                         ` Pasi Kärkkäinen
  2010-04-25 11:16                           ` Boris Derzhavets
  2010-04-25  6:53                         ` Gerry Reno
  1 sibling, 1 reply; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-04-25  6:44 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Sat, Apr 24, 2010 at 06:24:05PM -0400, Gerry Reno wrote:
> Boris Derzhavets wrote:
>> There is serial (cable)  via RJ45 ( Ethernet). Of course,  if it's not  
>> your expense.
>>
>> Boris.
>>
> Found a USB-USB null modem cable at usbgear.com but will kernel support  
> this for serial console?
>

http://wiki.xensource.com/xenwiki/XenSerialConsole

-- Pasi

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-24 22:24                       ` Gerry Reno
  2010-04-25  6:44                         ` Pasi Kärkkäinen
@ 2010-04-25  6:53                         ` Gerry Reno
  2010-04-25 10:22                           ` Pasi Kärkkäinen
  1 sibling, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-25  6:53 UTC (permalink / raw)
  To: xen-devel

Gerry Reno wrote:
> Boris Derzhavets wrote:
>> There is serial (cable)  via RJ45 ( Ethernet). Of course,  if it's 
>> not your expense.
>>
>> Boris.
>>
> Found a USB-USB null modem cable at usbgear.com but will kernel 
> support this for serial console?
>
> -Gerry
Ok, without a serial port on this machine the best I can do is use a 
USB-Serial convertor which I realize will not provide BIOS or GRUB 
messages.  To start with I changed the kernel boot line adding: 
console=ttyUSB0,115200n8 and I setup minicom on the other machine.  At 
first minicom would only give me unreadable characters so I assumed a 
baud mismatch and began testing other rates.  At 57600n8 in minicom I 
get this:
AT+GCAP
AT+GCAP
AT+GCAP

this is with both the standard lucid kernel and the pv_ops dom0 kernel 
using console=ttyUSB0,115200n8.  Any ideas on how to get more output?  
And I don't know how to configure xen line to add console or if usb 
serial console is even possible with xen.

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25  6:53                         ` Gerry Reno
@ 2010-04-25 10:22                           ` Pasi Kärkkäinen
  0 siblings, 0 replies; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-04-25 10:22 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Sun, Apr 25, 2010 at 02:53:08AM -0400, Gerry Reno wrote:
> Gerry Reno wrote:
>> Boris Derzhavets wrote:
>>> There is serial (cable)  via RJ45 ( Ethernet). Of course,  if it's  
>>> not your expense.
>>>
>>> Boris.
>>>
>> Found a USB-USB null modem cable at usbgear.com but will kernel  
>> support this for serial console?
>>
>> -Gerry
> Ok, without a serial port on this machine the best I can do is use a  
> USB-Serial convertor which I realize will not provide BIOS or GRUB  
> messages.  To start with I changed the kernel boot line adding:  
> console=ttyUSB0,115200n8 and I setup minicom on the other machine.  At  
> first minicom would only give me unreadable characters so I assumed a  
> baud mismatch and began testing other rates.  At 57600n8 in minicom I  
> get this:
> AT+GCAP
> AT+GCAP
> AT+GCAP
>
> this is with both the standard lucid kernel and the pv_ops dom0 kernel  
> using console=ttyUSB0,115200n8.  Any ideas on how to get more output?   
> And I don't know how to configure xen line to add console or if usb  
> serial console is even possible with xen.
>

http://wiki.xensource.com/xenwiki/XenSerialConsole

USB serial is not possible as a serial console for Xen hypervisor.
USB drivers are in dom0 linux kernel, so Xen boot messages cannot be sent to USB serial since linux is loaded only after Xen hypervisor.

-- Pasi

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25  6:44                         ` Pasi Kärkkäinen
@ 2010-04-25 11:16                           ` Boris Derzhavets
  2010-04-25 15:37                             ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-25 11:16 UTC (permalink / raw)
  To: Gerry Reno, Pasi Kärkkäinen; +Cc: xen-devel


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

Per Wiki:-

2) If your computer running Xen doesn't have a real physical serial
port you can add a PCI add-on serial card with a DB9 serial connector.
This is a good option for many computers.

seems to be the cheapest solution. No matter for AMD or Intel.
Thanks Pasi once again.

Boris.



--- On Sun, 4/25/10, Pasi Kärkkäinen <pasik@iki.fi> wrote:

From: Pasi Kärkkäinen <pasik@iki.fi>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: "Gerry Reno" <greno@verizon.net>
Cc: xen-devel@lists.xensource.com
Date: Sunday, April 25, 2010, 2:44 AM

On Sat, Apr 24, 2010 at 06:24:05PM -0400, Gerry Reno wrote:
> Boris Derzhavets wrote:
>> There is serial (cable)  via RJ45 ( Ethernet). Of course,  if it's not  
>> your expense.
>>
>> Boris.
>>
> Found a USB-USB null modem cable at usbgear.com but will kernel support  
> this for serial console?
>

http://wiki.xensource.com/xenwiki/XenSerialConsole

-- Pasi


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



      

[-- Attachment #1.2: Type: text/html, Size: 1814 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25 11:16                           ` Boris Derzhavets
@ 2010-04-25 15:37                             ` Gerry Reno
  2010-04-25 16:10                               ` Boris Derzhavets
  2010-04-25 22:15                               ` Gerry Reno
  0 siblings, 2 replies; 64+ messages in thread
From: Gerry Reno @ 2010-04-25 15:37 UTC (permalink / raw)
  To: xen-devel

Boris Derzhavets wrote:
> Per Wiki:-
>
> 2) If your computer running Xen doesn't have a real physical serial 
> port you can add a PCI add-on serial card with a DB9 serial connector. 
> This is a good option for many computers.
>
> seems to be the cheapest solution. No matter for AMD or Intel.
> Thanks Pasi once again.
>
> Boris.
>
>
>
> -
>
I'll check if there are any open slots and see if I can find an addon 
serial card.  But besides that, the output from the kernel over ttyUSB0 
still doesn't look right.  You should be able to get some kernel output 
I would think.

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25 15:37                             ` Gerry Reno
@ 2010-04-25 16:10                               ` Boris Derzhavets
  2010-04-25 23:18                                 ` Mike Viau
  2010-04-25 22:15                               ` Gerry Reno
  1 sibling, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-04-25 16:10 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

> You should be able to get some kernel output I would think.
Yes, i have COM1 on both boards. No problems.

Boris.


--- On Sun, 4/25/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Sunday, April 25, 2010, 11:37 AM

Boris Derzhavets wrote:
> Per Wiki:-
> 
> 2) If your computer running Xen doesn't have a real physical serial port you can add a PCI add-on serial card with a DB9 serial connector. This is a good option for many computers.
> 
> seems to be the cheapest solution. No matter for AMD or Intel.
> Thanks Pasi once again.
> 
> Boris.
> 
> 
> 
> -
> 
I'll check if there are any open slots and see if I can find an addon serial card.  But besides that, the output from the kernel over ttyUSB0 still doesn't look right.  You should be able to get some kernel output I would think.

-Gerry


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



      

[-- Attachment #1.2: Type: text/html, Size: 1717 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25 15:37                             ` Gerry Reno
  2010-04-25 16:10                               ` Boris Derzhavets
@ 2010-04-25 22:15                               ` Gerry Reno
  2010-04-26  2:10                                 ` Gerry Reno
  1 sibling, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-25 22:15 UTC (permalink / raw)
  To: xen-devel

Gerry Reno wrote:
> Boris Derzhavets wrote:
>> Per Wiki:-
>>
>> 2) If your computer running Xen doesn't have a real physical serial 
>> port you can add a PCI add-on serial card with a DB9 serial 
>> connector. This is a good option for many computers.
>>
>> seems to be the cheapest solution. No matter for AMD or Intel.
>> Thanks Pasi once again.
>>
>> Boris.
>>
>>
>>
>> -
>>
> I'll check if there are any open slots and see if I can find an addon 
> serial card. 
<snip>

Well, I could not find even one local electronics/computer store that 
carried a serial port card.  Had to order it online which will take some 
time.  Maybe I can capture a video of the boot sequence.

-Gerry

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

* RE: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25 16:10                               ` Boris Derzhavets
@ 2010-04-25 23:18                                 ` Mike Viau
  2010-04-26  0:49                                   ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Mike Viau @ 2010-04-25 23:18 UTC (permalink / raw)
  To: bderzhavets, xen-devel


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


> Sun, 25 Apr 2010 09:10:11 -0700 <bderzhavets@yahoo.com> wrote: 
>>But besides that, the output from the kernel over ttyUSB0 still doesn't look right.  You should be able to get some kernel output I would think.>Yes, i have COM1 on both boards. No problems.

>Boris.

Just to clarify, do you really use a ttyUSB0 (via an usb to serial adapter) and it works on you kernel command line to log messages or do just use your ttyUSB serial port (in dom0 for example) to console into your Linux machine?

Thanks.

-M


--- On Sun, 4/25/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] Cannot load latest 2.6.32.10 kernel on AMD quad-core
To: xen-devel@lists.xensource.com
Date: Sunday, April 25, 2010, 11:37 AM

Boris Derzhavets wrote:
> Per Wiki:-
> 
> 2) If your computer running Xen doesn't have a real physical serial port you can add a PCI add-on serial card with a DB9 serial connector. This is a good option for many computers.
> 
> seems to be the cheapest solution. No matter for AMD or
 Intel.
> Thanks Pasi once again.
> 
> Boris.
> 
> 
> 
> -
> 
I'll check if there are any open slots and see if I can find an addon serial card.  But besides that, the output from the kernel over ttyUSB0 still doesn't look right.  You should be able to get some kernel output I would think.

-Gerry


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

 		 	   		  
_________________________________________________________________
Hotmail & Messenger are available on your phone. Try now.
http://go.microsoft.com/?linkid=9724461

[-- Attachment #1.2: Type: text/html, Size: 2410 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25 23:18                                 ` Mike Viau
@ 2010-04-26  0:49                                   ` Gerry Reno
  2010-04-26  2:10                                     ` Mike Viau
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-26  0:49 UTC (permalink / raw)
  To: xen-devel


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

On 04/25/2010 07:18 PM, Mike Viau wrote:
> > Sun, 25 Apr 2010 09:10:11 -0700 <bderzhavets@yahoo.com> wrote:
> >>But besides that, the output from the kernel over ttyUSB0 still doesn't look right.  You should be able to get some kernel output I would think.
> >Yes, i have COM1 on both boards. No problems.
>
> >Boris.
>
> Just to clarify, do you really use a ttyUSB0 (via an usb to serial 
> adapter) and it works on you kernel command line to log messages or do 
> just use your ttyUSB serial port (in dom0 for example) to console into 
> your Linux machine?
>
> Thanks.
>
> -M
>
>
Not sure who you're addressing, but yes I have a USB-Serial adapter and 
ttyUSB0 I have put on the kernel command line, BUT it isn't working very 
well.  All it shows in minicom right now is
AT+GCAP
AT+GCAP
AT+GCAP
when the system boots up.

-Gerry


[-- Attachment #1.2: Type: text/html, Size: 1860 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-25 22:15                               ` Gerry Reno
@ 2010-04-26  2:10                                 ` Gerry Reno
  2010-04-26  4:12                                   ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-26  2:10 UTC (permalink / raw)
  To: xen-devel

On 04/25/2010 06:15 PM, Gerry Reno wrote:
> Gerry Reno wrote:
>> Boris Derzhavets wrote:
>>> Per Wiki:-
>>>
>>> 2) If your computer running Xen doesn't have a real physical serial 
>>> port you can add a PCI add-on serial card with a DB9 serial 
>>> connector. This is a good option for many computers.
>>>
>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>> Thanks Pasi once again.
>>>
>>> Boris.
>>>
>>>
>>>
>>> -
>>>
>> I'll check if there are any open slots and see if I can find an addon 
>> serial card. 
> <snip>
>
> Well, I could not find even one local electronics/computer store that 
> carried a serial port card.  Had to order it online which will take 
> some time.  Maybe I can capture a video of the boot sequence.
>
> -Gerry
>
I tried to capture some video of the pv_ops dom0 2.6.32.10 boot sequence 
problem on Gigabyte AMD hardware and I posted it on youtube.  Here's the 
link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
It was a little fuzzy before the upload but got real fuzzy afterwards.  
But I think you can make out the critical parts.

-Gerry

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

* RE: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26  0:49                                   ` Gerry Reno
@ 2010-04-26  2:10                                     ` Mike Viau
  2010-04-26  2:18                                       ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Mike Viau @ 2010-04-26  2:10 UTC (permalink / raw)
  To: xen-devel


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


Sun, 25 Apr 2010 20:49:38 -0400 <greno@verizon.net> wrote:






  
  


On 04/25/2010 07:18 PM, Mike Viau wrote:

  >
Sun, 25 Apr 2010 09:10:11 -0700 <bderzhavets@yahoo.com> wrote: 

  >>But besides that, the output from the kernel over ttyUSB0 still doesn't look right.  You should be able to get some kernel output I would think.
  
    
      
        >Yes, i have COM1 on both boards. No problems.

        

>Boris.

        

Just to clarify, do you really use a ttyUSB0 (via an usb to serial
adapter) and it works on you kernel command line to log messages or do
just use your ttyUSB serial port (in dom0 for example) to console into
your Linux machine?

        

Thanks.

        

-M

        

        

        
      
    
  
     
Not sure who you're addressing, but yes I have a USB-Serial adapter and
ttyUSB0 I have put on the kernel command line, BUT it isn't working
very well.  All it shows in minicom right now is 
     
AT+GCAP
     
AT+GCAP
     
AT+GCAP
     
when the system boots up.

Not sure what the AT+GCAP messages are all about, but it may or may not have to do with modem commands. See http://http://en.wikipedia.org/wiki/Hayes_command_set

Has anyone ever successfully used a USB-Serial adapter and ttyUSB0 to work on the kernel command line to get boot messages?

It seems to go against what the wiki @ http://wiki.xensource.com/xenwiki/XenSerialConsole

[quote]
USB serial adapter doesn't work for the computer running Xen (*), but it
 works for the other computer that is only used to view and log the 
serial console. 
[/quote]


-M
 		 	   		  
_________________________________________________________________
Videos that have everyone talking! Now also in HD!
http://go.microsoft.com/?linkid=9724465

[-- Attachment #1.2: Type: text/html, Size: 2918 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26  2:10                                     ` Mike Viau
@ 2010-04-26  2:18                                       ` Gerry Reno
  0 siblings, 0 replies; 64+ messages in thread
From: Gerry Reno @ 2010-04-26  2:18 UTC (permalink / raw)
  To: xen-devel


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

On 04/25/2010 10:10 PM, Mike Viau wrote:
> Sun, 25 Apr 2010 20:49:38 -0400 <greno@verizon.net> wrote:
>
> On 04/25/2010 07:18 PM, Mike Viau wrote:
>
>     > Sun, 25 Apr 2010 09:10:11 -0700 <bderzhavets@yahoo.com>
>     <mailto:bderzhavets@yahoo.com> wrote:
>
>     >>But besides that, the output from the kernel over ttyUSB0 still doesn't look right.  You should be able to get some kernel output I would think.
>
>     >Yes, i have COM1 on both boards. No problems.
>
>     >Boris.
>
>     Just to clarify, do you really use a ttyUSB0 (via an usb to serial
>     adapter) and it works on you kernel command line to log messages
>     or do just use your ttyUSB serial port (in dom0 for example) to
>     console into your Linux machine?
>
>     Thanks.
>
>     -M
>
>
>       Not sure who you're addressing, but yes I have a USB-Serial 
> adapter and ttyUSB0 I have put on the kernel command line, BUT it 
> isn't working very well.  All it shows in minicom right now is
>       AT+GCAP
>       AT+GCAP
>       AT+GCAP
>       when the system boots up.
>
> Not sure what the AT+GCAP messages are all about, but it may or may 
> not have to do with modem commands. See 
> http://http://en.wikipedia.org/wiki/Hayes_command_set 
> <http://http//en.wikipedia.org/wiki/Hayes_command_set>
>
> Has anyone ever successfully used a USB-Serial adapter and ttyUSB0 to 
> work on the kernel command line to get boot messages?
>
> It seems to go against what the wiki @ 
> http://wiki.xensource.com/xenwiki/XenSerialConsole
>
> [quote]
> USB serial adapter doesn't work for the computer running Xen (*), but 
> it works for the other computer that is only used to view and log the 
> serial console.
> [/quote]
>
>
> -M
That's referring to the Xen kernel not the linux kernel.  At some point 
USB-Serial may have to be supported by Linux kernel as well as Xen 
hypervisor kernel if 16550 cards get scarce.

-Gerry


[-- Attachment #1.2: Type: text/html, Size: 3409 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26  2:10                                 ` Gerry Reno
@ 2010-04-26  4:12                                   ` Gerry Reno
  2010-04-26 20:04                                     ` Pasi Kärkkäinen
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-26  4:12 UTC (permalink / raw)
  To: xen-devel

On 04/25/2010 10:10 PM, Gerry Reno wrote:
> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>> Gerry Reno wrote:
>>> Boris Derzhavets wrote:
>>>> Per Wiki:-
>>>>
>>>> 2) If your computer running Xen doesn't have a real physical serial 
>>>> port you can add a PCI add-on serial card with a DB9 serial 
>>>> connector. This is a good option for many computers.
>>>>
>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>> Thanks Pasi once again.
>>>>
>>>> Boris.
>>>>
>>>>
>>>>
>>>> -
>>>>
>>> I'll check if there are any open slots and see if I can find an 
>>> addon serial card. 
>> <snip>
>>
>> Well, I could not find even one local electronics/computer store that 
>> carried a serial port card.  Had to order it online which will take 
>> some time.  Maybe I can capture a video of the boot sequence.
>>
>> -Gerry
>>
> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot 
> sequence problem on Gigabyte AMD hardware and I posted it on youtube.  
> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
> It was a little fuzzy before the upload but got real fuzzy 
> afterwards.  But I think you can make out the critical parts.
>
> -Gerry

I uploaded another take and it came out a little better:  
http://www.youtube.com/watch?v=n7fW7yjrIEM

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26  4:12                                   ` Gerry Reno
@ 2010-04-26 20:04                                     ` Pasi Kärkkäinen
  2010-04-26 21:26                                       ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-04-26 20:04 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Mon, Apr 26, 2010 at 12:12:13AM -0400, Gerry Reno wrote:
> On 04/25/2010 10:10 PM, Gerry Reno wrote:
>> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>>> Gerry Reno wrote:
>>>> Boris Derzhavets wrote:
>>>>> Per Wiki:-
>>>>>
>>>>> 2) If your computer running Xen doesn't have a real physical 
>>>>> serial port you can add a PCI add-on serial card with a DB9 
>>>>> serial connector. This is a good option for many computers.
>>>>>
>>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>>> Thanks Pasi once again.
>>>>>
>>>>> Boris.
>>>>>
>>>>>
>>>>>
>>>>> -
>>>>>
>>>> I'll check if there are any open slots and see if I can find an  
>>>> addon serial card. 
>>> <snip>
>>>
>>> Well, I could not find even one local electronics/computer store that 
>>> carried a serial port card.  Had to order it online which will take  
>>> some time.  Maybe I can capture a video of the boot sequence.
>>>
>>> -Gerry
>>>
>> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot  
>> sequence problem on Gigabyte AMD hardware and I posted it on youtube.   
>> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
>> It was a little fuzzy before the upload but got real fuzzy afterwards.  
>> But I think you can make out the critical parts.
>>
>> -Gerry
>
> I uploaded another take and it came out a little better:   
> http://www.youtube.com/watch?v=n7fW7yjrIEM
>

You seem to be missing most of the dom0 linux kernel boot messages..

Please paste your grub.conf.

-- Pasi

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26 20:04                                     ` Pasi Kärkkäinen
@ 2010-04-26 21:26                                       ` Gerry Reno
  2010-04-26 21:52                                         ` Pasi Kärkkäinen
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-26 21:26 UTC (permalink / raw)
  To: xen-devel

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

On 04/26/2010 04:04 PM, Pasi Kärkkäinen wrote:
> On Mon, Apr 26, 2010 at 12:12:13AM -0400, Gerry Reno wrote:
>> On 04/25/2010 10:10 PM, Gerry Reno wrote:
>>> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>>>> Gerry Reno wrote:
>>>>> Boris Derzhavets wrote:
>>>>>> Per Wiki:-
>>>>>>
>>>>>> 2) If your computer running Xen doesn't have a real physical
>>>>>> serial port you can add a PCI add-on serial card with a DB9
>>>>>> serial connector. This is a good option for many computers.
>>>>>>
>>>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>>>> Thanks Pasi once again.
>>>>>>
>>>>>> Boris.
>>>>>>
>>>>>>
>>>>>>
>>>>>> -
>>>>>>
>>>>> I'll check if there are any open slots and see if I can find an
>>>>> addon serial card.
>>>> <snip>
>>>>
>>>> Well, I could not find even one local electronics/computer store that
>>>> carried a serial port card.  Had to order it online which will take
>>>> some time.  Maybe I can capture a video of the boot sequence.
>>>>
>>>> -Gerry
>>>>
>>> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot
>>> sequence problem on Gigabyte AMD hardware and I posted it on youtube.
>>> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
>>> It was a little fuzzy before the upload but got real fuzzy afterwards.
>>> But I think you can make out the critical parts.
>>>
>>> -Gerry
>>
>> I uploaded another take and it came out a little better:
>> http://www.youtube.com/watch?v=n7fW7yjrIEM
>>
>
> You seem to be missing most of the dom0 linux kernel boot messages..
>
> Please paste your grub.conf.
>
> -- Pasi
>
>
Pasi, my grub.conf is attached.

-Gerry


[-- Attachment #2: menu.lst --]
[-- Type: text/plain, Size: 1783 bytes --]

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup01/LogVol00
#          initrd /initrd-version.img
#boot=/dev/md0
default=4
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Ubuntu UEC-Node kernel 2.6.31.6
	root (hd4,0)
	kernel /vmlinuz-2.6.31.6 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro  quiet console=tty0 console=ttyS0 text
	module /initrd.img-2.6.31.6
title Ubuntu UEC-Node kernel 2.6.31.6 (pv_ops dom0)
	root (hd4,0)
	kernel /xen-3.4.2.gz  dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all
	module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro  quiet console=tty0 console=ttyS0 text
	module /initrd.img-2.6.32.10
title Ubuntu UEC-Node kernel 2.6.32.10
	root (hd4,0)
	kernel /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro quiet splash console=ttyUSB0,115200n8 text idle=nomwait
	initrd	/initrd.img-2.6.32.10
title Ubuntu UEC-Node kernel 2.6.32.10 (pv_ops dom0)
	root (hd4,0)
	kernel /xen-4.0.0-rc8.gz  dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all
	module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro  quiet console=tty0 console=ttyS0 console=ttyUSB0,115200n8 text
	module /initrd.img-2.6.32.10
title Ubuntu UEC-Node (Lucid Lynx) 2.6.32-21
	root (hd4,0)
	kernel /vmlinuz-2.6.32-21-server root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro quiet splash console=ttyS0 console=ttyUSB0,115200n8
	initrd	/initrd.img-2.6.32-21-server



[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26 21:26                                       ` Gerry Reno
@ 2010-04-26 21:52                                         ` Pasi Kärkkäinen
  2010-04-26 23:36                                           ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-04-26 21:52 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Mon, Apr 26, 2010 at 05:26:54PM -0400, Gerry Reno wrote:
> On 04/26/2010 04:04 PM, Pasi Kärkkäinen wrote:
>> On Mon, Apr 26, 2010 at 12:12:13AM -0400, Gerry Reno wrote:
>>> On 04/25/2010 10:10 PM, Gerry Reno wrote:
>>>> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>>>>> Gerry Reno wrote:
>>>>>> Boris Derzhavets wrote:
>>>>>>> Per Wiki:-
>>>>>>>
>>>>>>> 2) If your computer running Xen doesn't have a real physical
>>>>>>> serial port you can add a PCI add-on serial card with a DB9
>>>>>>> serial connector. This is a good option for many computers.
>>>>>>>
>>>>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>>>>> Thanks Pasi once again.
>>>>>>>
>>>>>>> Boris.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> -
>>>>>>>
>>>>>> I'll check if there are any open slots and see if I can find an
>>>>>> addon serial card.
>>>>> <snip>
>>>>>
>>>>> Well, I could not find even one local electronics/computer store that
>>>>> carried a serial port card.  Had to order it online which will take
>>>>> some time.  Maybe I can capture a video of the boot sequence.
>>>>>
>>>>> -Gerry
>>>>>
>>>> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot
>>>> sequence problem on Gigabyte AMD hardware and I posted it on youtube.
>>>> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
>>>> It was a little fuzzy before the upload but got real fuzzy afterwards.
>>>> But I think you can make out the critical parts.
>>>>
>>>> -Gerry
>>>
>>> I uploaded another take and it came out a little better:
>>> http://www.youtube.com/watch?v=n7fW7yjrIEM
>>>
>>
>> You seem to be missing most of the dom0 linux kernel boot messages..
>>
>> Please paste your grub.conf.
>>
>> -- Pasi
>>
>>
> Pasi, my grub.conf is attached.
>

Ok, fix it to be like this:

module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8 text

aka remove "quiet" and add "earlyprintk=xen console=hvc0"

-- Pasi

> -Gerry
>

> # grub.conf generated by anaconda
> #
> # Note that you do not have to rerun grub after making changes to this file
> # NOTICE:  You have a /boot partition.  This means that
> #          all kernel and initrd paths are relative to /boot/, eg.
> #          root (hd0,0)
> #          kernel /vmlinuz-version ro root=/dev/VolGroup01/LogVol00
> #          initrd /initrd-version.img
> #boot=/dev/md0
> default=4
> timeout=5
> splashimage=(hd0,0)/grub/splash.xpm.gz
> hiddenmenu
> title Ubuntu UEC-Node kernel 2.6.31.6
> 	root (hd4,0)
> 	kernel /vmlinuz-2.6.31.6 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro  quiet console=tty0 console=ttyS0 text
> 	module /initrd.img-2.6.31.6
> title Ubuntu UEC-Node kernel 2.6.31.6 (pv_ops dom0)
> 	root (hd4,0)
> 	kernel /xen-3.4.2.gz  dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all
> 	module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro  quiet console=tty0 console=ttyS0 text
> 	module /initrd.img-2.6.32.10
> title Ubuntu UEC-Node kernel 2.6.32.10
> 	root (hd4,0)
> 	kernel /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro quiet splash console=ttyUSB0,115200n8 text idle=nomwait
> 	initrd	/initrd.img-2.6.32.10
> title Ubuntu UEC-Node kernel 2.6.32.10 (pv_ops dom0)
> 	root (hd4,0)
> 	kernel /xen-4.0.0-rc8.gz  dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all
> 	module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro  quiet console=tty0 console=ttyS0 console=ttyUSB0,115200n8 text
> 	module /initrd.img-2.6.32.10
> title Ubuntu UEC-Node (Lucid Lynx) 2.6.32-21
> 	root (hd4,0)
> 	kernel /vmlinuz-2.6.32-21-server root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro quiet splash console=ttyS0 console=ttyUSB0,115200n8
> 	initrd	/initrd.img-2.6.32-21-server
> 
> 

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26 21:52                                         ` Pasi Kärkkäinen
@ 2010-04-26 23:36                                           ` Gerry Reno
  2010-04-27  0:00                                             ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-26 23:36 UTC (permalink / raw)
  To: xen-devel

On 04/26/2010 05:52 PM, Pasi Kärkkäinen wrote:
> On Mon, Apr 26, 2010 at 05:26:54PM -0400, Gerry Reno wrote:
>    
>> On 04/26/2010 04:04 PM, Pasi Kärkkäinen wrote:
>>      
>>> On Mon, Apr 26, 2010 at 12:12:13AM -0400, Gerry Reno wrote:
>>>        
>>>> On 04/25/2010 10:10 PM, Gerry Reno wrote:
>>>>          
>>>>> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>>>>>            
>>>>>> Gerry Reno wrote:
>>>>>>              
>>>>>>> Boris Derzhavets wrote:
>>>>>>>                
>>>>>>>> Per Wiki:-
>>>>>>>>
>>>>>>>> 2) If your computer running Xen doesn't have a real physical
>>>>>>>> serial port you can add a PCI add-on serial card with a DB9
>>>>>>>> serial connector. This is a good option for many computers.
>>>>>>>>
>>>>>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>>>>>> Thanks Pasi once again.
>>>>>>>>
>>>>>>>> Boris.
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> -
>>>>>>>>
>>>>>>>>                  
>>>>>>> I'll check if there are any open slots and see if I can find an
>>>>>>> addon serial card.
>>>>>>>                
>>>>>> <snip>
>>>>>>
>>>>>> Well, I could not find even one local electronics/computer store that
>>>>>> carried a serial port card.  Had to order it online which will take
>>>>>> some time.  Maybe I can capture a video of the boot sequence.
>>>>>>
>>>>>> -Gerry
>>>>>>
>>>>>>              
>>>>> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot
>>>>> sequence problem on Gigabyte AMD hardware and I posted it on youtube.
>>>>> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
>>>>> It was a little fuzzy before the upload but got real fuzzy afterwards.
>>>>> But I think you can make out the critical parts.
>>>>>
>>>>> -Gerry
>>>>>            
>>>> I uploaded another take and it came out a little better:
>>>> http://www.youtube.com/watch?v=n7fW7yjrIEM
>>>>
>>>>          
>>> You seem to be missing most of the dom0 linux kernel boot messages..
>>>
>>> Please paste your grub.conf.
>>>
>>> -- Pasi
>>>
>>>
>>>        
>> Pasi, my grub.conf is attached.
>>
>>      
> Ok, fix it to be like this:
>
> module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8 text
>
> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
>
> -- Pasi
>
>    

Pasi, this gave some more output.  Sorry the video is fuzzy but this 
happens by youtube postprocessing.  Here is new link:  
http://www.youtube.com/watch?v=jePyapeHpSI

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-26 23:36                                           ` Gerry Reno
@ 2010-04-27  0:00                                             ` Gerry Reno
  2010-04-27  2:48                                               ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-27  0:00 UTC (permalink / raw)
  To: xen-devel

On 04/26/2010 07:36 PM, Gerry Reno wrote:
> On 04/26/2010 05:52 PM, Pasi Kärkkäinen wrote:
>> On Mon, Apr 26, 2010 at 05:26:54PM -0400, Gerry Reno wrote:
>>> On 04/26/2010 04:04 PM, Pasi Kärkkäinen wrote:
>>>> On Mon, Apr 26, 2010 at 12:12:13AM -0400, Gerry Reno wrote:
>>>>> On 04/25/2010 10:10 PM, Gerry Reno wrote:
>>>>>> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>>>>>>> Gerry Reno wrote:
>>>>>>>> Boris Derzhavets wrote:
>>>>>>>>> Per Wiki:-
>>>>>>>>>
>>>>>>>>> 2) If your computer running Xen doesn't have a real physical
>>>>>>>>> serial port you can add a PCI add-on serial card with a DB9
>>>>>>>>> serial connector. This is a good option for many computers.
>>>>>>>>>
>>>>>>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>>>>>>> Thanks Pasi once again.
>>>>>>>>>
>>>>>>>>> Boris.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> -
>>>>>>>>>
>>>>>>>> I'll check if there are any open slots and see if I can find an
>>>>>>>> addon serial card.
>>>>>>> <snip>
>>>>>>>
>>>>>>> Well, I could not find even one local electronics/computer store 
>>>>>>> that
>>>>>>> carried a serial port card.  Had to order it online which will take
>>>>>>> some time.  Maybe I can capture a video of the boot sequence.
>>>>>>>
>>>>>>> -Gerry
>>>>>>>
>>>>>> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot
>>>>>> sequence problem on Gigabyte AMD hardware and I posted it on 
>>>>>> youtube.
>>>>>> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
>>>>>> It was a little fuzzy before the upload but got real fuzzy 
>>>>>> afterwards.
>>>>>> But I think you can make out the critical parts.
>>>>>>
>>>>>> -Gerry
>>>>> I uploaded another take and it came out a little better:
>>>>> http://www.youtube.com/watch?v=n7fW7yjrIEM
>>>>>
>>>> You seem to be missing most of the dom0 linux kernel boot messages..
>>>>
>>>> Please paste your grub.conf.
>>>>
>>>> -- Pasi
>>>>
>>>>
>>> Pasi, my grub.conf is attached.
>>>
>> Ok, fix it to be like this:
>>
>> module /vmlinuz-2.6.32.10 
>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro 
>> earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8 text
>>
>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
>>
>> -- Pasi
>>
>
> Pasi, this gave some more output.  Sorry the video is fuzzy but this 
> happens by youtube postprocessing.  Here is new link:  
> http://www.youtube.com/watch?v=jePyapeHpSI
>
> -Gerry
If you have somewhere I can ftp original video file, it is clearer.  
File is about 90 MB.

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-27  0:00                                             ` Gerry Reno
@ 2010-04-27  2:48                                               ` Gerry Reno
  2010-04-27  9:15                                                 ` Pasi Kärkkäinen
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-27  2:48 UTC (permalink / raw)
  To: xen-devel

On 04/26/2010 08:00 PM, Gerry Reno wrote:
> On 04/26/2010 07:36 PM, Gerry Reno wrote:
>> On 04/26/2010 05:52 PM, Pasi Kärkkäinen wrote:
>>> On Mon, Apr 26, 2010 at 05:26:54PM -0400, Gerry Reno wrote:
>>>> On 04/26/2010 04:04 PM, Pasi Kärkkäinen wrote:
>>>>> On Mon, Apr 26, 2010 at 12:12:13AM -0400, Gerry Reno wrote:
>>>>>> On 04/25/2010 10:10 PM, Gerry Reno wrote:
>>>>>>> On 04/25/2010 06:15 PM, Gerry Reno wrote:
>>>>>>>> Gerry Reno wrote:
>>>>>>>>> Boris Derzhavets wrote:
>>>>>>>>>> Per Wiki:-
>>>>>>>>>>
>>>>>>>>>> 2) If your computer running Xen doesn't have a real physical
>>>>>>>>>> serial port you can add a PCI add-on serial card with a DB9
>>>>>>>>>> serial connector. This is a good option for many computers.
>>>>>>>>>>
>>>>>>>>>> seems to be the cheapest solution. No matter for AMD or Intel.
>>>>>>>>>> Thanks Pasi once again.
>>>>>>>>>>
>>>>>>>>>> Boris.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> -
>>>>>>>>>>
>>>>>>>>> I'll check if there are any open slots and see if I can find an
>>>>>>>>> addon serial card.
>>>>>>>> <snip>
>>>>>>>>
>>>>>>>> Well, I could not find even one local electronics/computer 
>>>>>>>> store that
>>>>>>>> carried a serial port card.  Had to order it online which will 
>>>>>>>> take
>>>>>>>> some time.  Maybe I can capture a video of the boot sequence.
>>>>>>>>
>>>>>>>> -Gerry
>>>>>>>>
>>>>>>> I tried to capture some video of the pv_ops dom0 2.6.32.10 boot
>>>>>>> sequence problem on Gigabyte AMD hardware and I posted it on 
>>>>>>> youtube.
>>>>>>> Here's the link:  http://www.youtube.com/watch?v=OcuwH7S-qZA
>>>>>>> It was a little fuzzy before the upload but got real fuzzy 
>>>>>>> afterwards.
>>>>>>> But I think you can make out the critical parts.
>>>>>>>
>>>>>>> -Gerry
>>>>>> I uploaded another take and it came out a little better:
>>>>>> http://www.youtube.com/watch?v=n7fW7yjrIEM
>>>>>>
>>>>> You seem to be missing most of the dom0 linux kernel boot messages..
>>>>>
>>>>> Please paste your grub.conf.
>>>>>
>>>>> -- Pasi
>>>>>
>>>>>
>>>> Pasi, my grub.conf is attached.
>>>>
>>> Ok, fix it to be like this:
>>>
>>> module /vmlinuz-2.6.32.10 
>>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro 
>>> earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8 
>>> text
>>>
>>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
>>>
>>> -- Pasi
>>>
>>
>> Pasi, this gave some more output.  Sorry the video is fuzzy but this 
>> happens by youtube postprocessing.  Here is new link:  
>> http://www.youtube.com/watch?v=jePyapeHpSI
>>
>> -Gerry
> If you have somewhere I can ftp original video file, it is clearer.  
> File is about 90 MB.
>
> -Gerry
>
Original video is posted here:  
http://greno-misc.googlecode.com/files/MOV03932.MPG

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-27  2:48                                               ` Gerry Reno
@ 2010-04-27  9:15                                                 ` Pasi Kärkkäinen
  2010-04-27 17:35                                                   ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-04-27  9:15 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Mon, Apr 26, 2010 at 10:48:44PM -0400, Gerry Reno wrote:
>>>>>>
>>>>> Pasi, my grub.conf is attached.
>>>>>
>>>> Ok, fix it to be like this:
>>>>
>>>> module /vmlinuz-2.6.32.10  
>>>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro  
>>>> earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8 
>>>> text
>>>>
>>>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
>>>>
>>>> -- Pasi
>>>>
>>>
>>> Pasi, this gave some more output.  Sorry the video is fuzzy but this  
>>> happens by youtube postprocessing.  Here is new link:   
>>> http://www.youtube.com/watch?v=jePyapeHpSI
>>>
>>> -Gerry
>> If you have somewhere I can ftp original video file, it is clearer.   
>> File is about 90 MB.
>>
>> -Gerry
>>
> Original video is posted here:   
> http://greno-misc.googlecode.com/files/MOV03932.MPG
>

It's very difficult to see the problem from that video :(
We'd really need a serial console log.

Also you I wonder why the screen goes blank in the end? 
Before that it seems to mount the root (?) filesystem OK..

Do you have some console font/videomode thingie configured? 
See the "Dom0 console gets all weird and corrupted in the end of the boot process" from:
http://wiki.xensource.com/xenwiki/XenParavirtOps

Also please add "nomodeset" option to the end of the pvops kernel boot options,
like suggested on pvops examples/docs.

-- Pasi

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-27  9:15                                                 ` Pasi Kärkkäinen
@ 2010-04-27 17:35                                                   ` Gerry Reno
  2010-04-29 13:54                                                     ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-27 17:35 UTC (permalink / raw)
  To: xen-devel

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

On 04/27/2010 05:15 AM, Pasi Kärkkäinen wrote:
> On Mon, Apr 26, 2010 at 10:48:44PM -0400, Gerry Reno wrote:
>    
>>>>>>>                
>>>>>> Pasi, my grub.conf is attached.
>>>>>>
>>>>>>              
>>>>> Ok, fix it to be like this:
>>>>>
>>>>> module /vmlinuz-2.6.32.10
>>>>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro
>>>>> earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8
>>>>> text
>>>>>
>>>>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
>>>>>
>>>>> -- Pasi
>>>>>
>>>>>            
>>>> Pasi, this gave some more output.  Sorry the video is fuzzy but this
>>>> happens by youtube postprocessing.  Here is new link:
>>>> http://www.youtube.com/watch?v=jePyapeHpSI
>>>>
>>>> -Gerry
>>>>          
>>> If you have somewhere I can ftp original video file, it is clearer.
>>> File is about 90 MB.
>>>
>>> -Gerry
>>>
>>>        
>> Original video is posted here:
>> http://greno-misc.googlecode.com/files/MOV03932.MPG
>>
>>      
> It's very difficult to see the problem from that video :(
> We'd really need a serial console log.
>
> Also you I wonder why the screen goes blank in the end?
> Before that it seems to mount the root (?) filesystem OK..
>
> Do you have some console font/videomode thingie configured?
> See the "Dom0 console gets all weird and corrupted in the end of the boot process" from:
> http://wiki.xensource.com/xenwiki/XenParavirtOps
>
> Also please add "nomodeset" option to the end of the pvops kernel boot options,
> like suggested on pvops examples/docs.
>
> -- Pasi
>
>    
Ok, I finally got a little more output using nomodeset.  There is a soft 
lockup bug.  Attaching screenshots.

-Gerry


[-- Attachment #2: DSC03933-emailsize.JPG --]
[-- Type: image/jpeg, Size: 71517 bytes --]

[-- Attachment #3: DSC03934-emailsize.JPG --]
[-- Type: image/jpeg, Size: 94953 bytes --]

[-- Attachment #4: DSC03935-emailsize.JPG --]
[-- Type: image/jpeg, Size: 110172 bytes --]

[-- Attachment #5: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-27 17:35                                                   ` Gerry Reno
@ 2010-04-29 13:54                                                     ` Gerry Reno
  2010-04-29 14:41                                                       ` Mike Viau
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-29 13:54 UTC (permalink / raw)
  To: xen-devel

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

On 04/27/2010 01:35 PM, Gerry Reno wrote:
> On 04/27/2010 05:15 AM, Pasi Kärkkäinen wrote:
>> On Mon, Apr 26, 2010 at 10:48:44PM -0400, Gerry Reno wrote:
>>>>>>> Pasi, my grub.conf is attached.
>>>>>>>
>>>>>> Ok, fix it to be like this:
>>>>>>
>>>>>> module /vmlinuz-2.6.32.10
>>>>>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro
>>>>>> earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8
>>>>>> text
>>>>>>
>>>>>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
>>>>>>
>>>>>> -- Pasi
>>>>>>
>>>>> Pasi, this gave some more output.  Sorry the video is fuzzy but this
>>>>> happens by youtube postprocessing.  Here is new link:
>>>>> http://www.youtube.com/watch?v=jePyapeHpSI
>>>>>
>>>>> -Gerry
>>>> If you have somewhere I can ftp original video file, it is clearer.
>>>> File is about 90 MB.
>>>>
>>>> -Gerry
>>>>
>>> Original video is posted here:
>>> http://greno-misc.googlecode.com/files/MOV03932.MPG
>>>
>> It's very difficult to see the problem from that video :(
>> We'd really need a serial console log.
>>
>> Also you I wonder why the screen goes blank in the end?
>> Before that it seems to mount the root (?) filesystem OK..
>>
>> Do you have some console font/videomode thingie configured?
>> See the "Dom0 console gets all weird and corrupted in the end of the 
>> boot process" from:
>> http://wiki.xensource.com/xenwiki/XenParavirtOps
>>
>> Also please add "nomodeset" option to the end of the pvops kernel 
>> boot options,
>> like suggested on pvops examples/docs.
>>
>> -- Pasi
>>
> Ok, I finally got a little more output using nomodeset.  There is a 
> soft lockup bug.  Attaching screenshots.
>
> -Gerry
>

I've been changing various settings trying to figure out what is the 
problem and today after a very long wait (> 5 min) I was able to see a 
login prompt.  But things are not well.  During the boot I now see:
XENBUS: Unable to read cpu state.
XENBUS: Unable to read cpu state.
XENBUS: Unable to read cpu state.
XENBUS: Unable to read cpu state.

and while logged in I get a lot of these type of messages every few minutes:
INFO: task xxxxxxx:nnn  blocked for more than 120 seconds.
"echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.

and I notice a number of errors in the xen logs with I'm attaching.

Can someone look at these logs and see if there is anything I can do on 
my end to help fix the problem?

-Gerry




[-- Attachment #2: domain-builder-ng.log --]
[-- Type: text/x-log, Size: 5080 bytes --]

xc_dom_allocate: cmdline="root=/dev/xvda1  ro", features=""
xc_dom_kernel_file: filename="/var/lib/eucalyptus/instances/admin/i-578308F0/kernel"
xc_dom_malloc_filemap    : 3842 kB
xc_dom_ramdisk_file: filename="/var/lib/eucalyptus/instances/admin/i-578308F0/ramdisk"
xc_dom_malloc_filemap    : 3772 kB
xc_dom_boot_xen_init: ver 3.4, 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 
xc_dom_parse_image: called
xc_dom_find_loader: trying ELF-generic loader ... failed
xc_dom_find_loader: trying Linux bzImage loader ... xc_dom_malloc            : 15175 kB
xc_dom_do_gunzip: unzip ok, 0x3b9354 -> 0xed1d78
OK
elf_parse_binary: phdr: paddr=0x1000000 memsz=0x76e000
elf_parse_binary: phdr: paddr=0x176e000 memsz=0xb1570
elf_parse_binary: phdr: paddr=0x1820000 memsz=0x8c8
elf_parse_binary: phdr: paddr=0x1821000 memsz=0x16260
elf_parse_binary: phdr: paddr=0x1837260 memsz=0x1c9da0
elf_parse_binary: memory: 0x1000000 -> 0x1a01000
elf_xen_parse_note: GUEST_OS = "linux"
elf_xen_parse_note: GUEST_VERSION = "2.6"
elf_xen_parse_note: XEN_VERSION = "xen-3.0"
elf_xen_parse_note: VIRT_BASE = 0xffffffff80000000
elf_xen_parse_note: ENTRY = 0xffffffff81837460
elf_xen_parse_note: HYPERCALL_PAGE = 0xffffffff81009000
elf_xen_parse_note: FEATURES = "!writable_page_tables|pae_pgdir_above_4gb"
elf_xen_parse_note: PAE_MODE = "yes"
elf_xen_parse_note: LOADER = "generic"
elf_xen_parse_note: unknown xen elf note (0xd)
elf_xen_parse_note: SUSPEND_CANCEL = 0x1
elf_xen_parse_note: HV_START_LOW = 0xffff800000000000
elf_xen_parse_note: PADDR_OFFSET = 0x0
elf_xen_addr_calc_check: addresses:
    virt_base        = 0xffffffff80000000
    elf_paddr_offset = 0x0
    virt_offset      = 0xffffffff80000000
    virt_kstart      = 0xffffffff81000000
    virt_kend        = 0xffffffff81a01000
    virt_entry       = 0xffffffff81837460
    p2m_base         = 0xffffffffffffffff
xc_dom_parse_elf_kernel: xen-3.0-x86_64: 0xffffffff81000000 -> 0xffffffff81a01000
xc_dom_mem_init: mem 512 MB, pages 0x20000 pages, 4k each
xc_dom_mem_init: 0x20000 pages
xc_dom_boot_mem_init: called
x86_compat: guest xen-3.0-x86_64, address size 64
xc_dom_malloc            : 1024 kB
xc_dom_build_image: called
xc_dom_alloc_segment:   kernel       : 0xffffffff81000000 -> 0xffffffff81a01000  (pfn 0x1000 + 0xa01 pages)
xc_dom_pfn_to_ptr: domU mapping: pfn 0x1000+0xa01 at 0x7f6e7968b000
elf_load_binary: phdr 0 at 0x0x7f6e7968b000 -> 0x0x7f6e79df9000
elf_load_binary: phdr 1 at 0x0x7f6e79df9000 -> 0x0x7f6e79eaa570
elf_load_binary: phdr 2 at 0x0x7f6e79eab000 -> 0x0x7f6e79eab8c8
elf_load_binary: phdr 3 at 0x0x7f6e79eac000 -> 0x0x7f6e79ec2260
elf_load_binary: phdr 4 at 0x0x7f6e79ec2260 -> 0x0x7f6e79f5c000
xc_dom_alloc_segment:   ramdisk      : 0xffffffff81a01000 -> 0xffffffff82342000  (pfn 0x1a01 + 0x941 pages)
xc_dom_pfn_to_ptr: domU mapping: pfn 0x1a01+0x941 at 0x7f6e78d4a000
xc_dom_do_gunzip: unzip ok, 0x3af20c -> 0x940a10
xc_dom_alloc_segment:   phys2mach    : 0xffffffff82342000 -> 0xffffffff82442000  (pfn 0x2342 + 0x100 pages)
xc_dom_pfn_to_ptr: domU mapping: pfn 0x2342+0x100 at 0x7f6e78c4a000
xc_dom_alloc_page   :   start info   : 0xffffffff82442000 (pfn 0x2442)
xc_dom_alloc_page   :   xenstore     : 0xffffffff82443000 (pfn 0x2443)
xc_dom_alloc_page   :   console      : 0xffffffff82444000 (pfn 0x2444)
nr_page_tables: 0x0000ffffffffffff/48: 0xffff000000000000 -> 0xffffffffffffffff, 1 table(s)
nr_page_tables: 0x0000007fffffffff/39: 0xffffff8000000000 -> 0xffffffffffffffff, 1 table(s)
nr_page_tables: 0x000000003fffffff/30: 0xffffffff80000000 -> 0xffffffffbfffffff, 1 table(s)
nr_page_tables: 0x00000000001fffff/21: 0xffffffff80000000 -> 0xffffffff827fffff, 20 table(s)
xc_dom_alloc_segment:   page tables  : 0xffffffff82445000 -> 0xffffffff8245c000  (pfn 0x2445 + 0x17 pages)
xc_dom_pfn_to_ptr: domU mapping: pfn 0x2445+0x17 at 0x7f6e78c33000
xc_dom_alloc_page   :   boot stack   : 0xffffffff8245c000 (pfn 0x245c)
xc_dom_build_image  : virt_alloc_end : 0xffffffff8245d000
xc_dom_build_image  : virt_pgtab_end : 0xffffffff82800000
xc_dom_boot_image: called
arch_setup_bootearly: doing nothing
xc_dom_compat_check: supported guest type: xen-3.0-x86_64 <= matches
xc_dom_compat_check: supported guest type: xen-3.0-x86_32p
xc_dom_compat_check: supported guest type: hvm-3.0-x86_32
xc_dom_compat_check: supported guest type: hvm-3.0-x86_32p
xc_dom_compat_check: supported guest type: hvm-3.0-x86_64
xc_dom_update_guest_p2m: dst 64bit, pages 0x20000 
clear_page: pfn 0x2444, mfn 0x1ac0c5
clear_page: pfn 0x2443, mfn 0x1ac0c6
xc_dom_pfn_to_ptr: domU mapping: pfn 0x2442+0x1 at 0x7f6e78c32000
start_info_x86_64: called
setup_hypercall_page: vaddr=0xffffffff81009000 pfn=0x1009
domain builder memory footprint
   allocated
      malloc             : 16324 kB
      anon mmap          : 0 bytes
   mapped
      file mmap          : 7615 kB
      domU mmap          : 20840 kB
arch_setup_bootlate: shared_info: pfn 0x0, mfn 0xafdd0
shared_info_x86_64: called
vcpu_x86_64: called
vcpu_x86_64: cr3: pfn 0x2445 mfn 0x1ac0c4
launch_vm: called, ctxt=0x7f6e7b7fa5c0
xc_dom_release: called

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: xend.log --]
[-- Type: text/x-log; name=xend.log, Size: 18584 bytes --]

[2010-04-29 09:19:31 2017] INFO (SrvDaemon:332) Xend Daemon started
[2010-04-29 09:19:31 2017] INFO (SrvDaemon:336) Xend changeset: Fri Mar 26 10:29:38 2010 +0000 21074:542211ba675c.
[2010-04-29 09:19:35 2017] DEBUG (XendDomainInfo:149) XendDomainInfo.recreate({'max_vcpu_id': 3, 'cpu_time': 59013874695L, 'ssidref': 0, 'hvm': 0, 'shutdown_reason': 0, 'dying': 0, 'online_vcpus': 4, 'domid': 0, 'paused': 0, 'crashed': 0, 'running': 1, 'maxmem_kb': 17179869180L, 'shutdown': 0, 'mem_kb': 1041920L, 'handle': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'blocked': 0, 'name': 'Domain-0'})
[2010-04-29 09:19:35 2017] INFO (XendDomainInfo:167) Recreating domain 0, UUID 00000000-0000-0000-0000-000000000000. at /local/domain/0
[2010-04-29 09:19:35 2017] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '00000000-0000-0000-0000-000000000000', 'on_reboot': 'restart', 'image': '(linux (kernel ) (superpages 0) (nomigrate 0) (tsc_mode 0))', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'restart', 'xend/restart_count': '0', 'vcpus': '4', 'vcpu_avail': '15', 'bootloader': '', 'name': 'Domain-0'}
[2010-04-29 09:19:35 2017] DEBUG (XendDomainInfo:1804) Storing domain details: {'cpu/3/availability': 'online', 'description': '', 'console/limit': '1048576', 'memory/target': '1041920', 'cpu/2/availability': 'online', 'vm': '/vm/00000000-0000-0000-0000-000000000000', 'domid': '0', 'cpu/0/availability': 'online', 'cpu/1/availability': 'online', 'control/platform-feature-multiprocessor-suspend': '1', 'console/type': 'xenconsoled', 'name': 'Domain-0'}
[2010-04-29 09:19:35 2017] DEBUG (XendDomain:464) Adding Domain: 0
[2010-04-29 09:19:35 2017] DEBUG (XendDomain:398) number of vcpus to use is 0
[2010-04-29 09:19:35 2017] DEBUG (XendDomainInfo:1891) XendDomainInfo.handleShutdownWatch
[2010-04-29 09:19:35 2017] DEBUG (XendDomainInfo:258) XendDomainInfo.createDormant({'vcpus_params': {'cap': 0, 'weight': 256}, 'PV_args': '', 'features': '', 'cpus': [[]], 'use_tmp_kernel': False, 'devices': {'35135de1-2593-7931-ac31-c3e762e41040': ('vbd', {'uuid': '35135de1-2593-7931-ac31-c3e762e41040', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda', 'uname': 'file:/var/lib/xen/images/test.img', 'mode': 'w'}), '98708744-2701-b87a-a919-ce200755eb51': ('vif', {'bridge': 'br0', 'mac': '00:16:36:7f:2f:28', 'uuid': '98708744-2701-b87a-a919-ce200755eb51', 'script': 'vif-bridge'})}, 'memory_sharing': 0, 'superpages': 0, 'VCPUs_live': 1, 'PV_bootloader': '/usr/lib/xen-default/bin/pygrub', 'actions_after_crash': 'restart', 'vbd_refs': ['35135de1-2593-7931-ac31-c3e762e41040'], 'PV_ramdisk': '', 'is_control_domain': False, 'name_label': 'test', 'VCPUs_at_startup': 1, 'HVM_boot_params': {}, 'platform': {'tsc_mode': 0, 'nomigrate': 0}, 'PV_kernel': '', 'console_refs': [], 'vif_refs': ['98708744-2701-b87a-a919-ce200755eb51'], 'on_xend_stop': 'ignore', 'memory_static_min': 0, 'HVM_boot_policy': '', 'description': '', 'VCPUs_max': 1, 'memory_static_max': 1073741824, 'actions_after_shutdown': 'destroy', 'use_tmp_ramdisk': False, 'on_xend_start': 'ignore', 'memory_dynamic_max': 1073741824, 'actions_after_suspend': '', 'is_a_template': False, 'PV_bootloader_args': '', 'memory_dynamic_min': 1073741824, 'uuid': 'a77618fa-2d1d-f5a5-c3e9-f429a4cd8bce', 'shadow_memory': 0, 'target': 0, 'vcpu_avail': 1L, 'other_config': {}, 'auto_power_on': False, 'actions_after_reboot': 'restart', 'Description': '', 'status': '0', 'vtpm_refs': []})
[2010-04-29 09:19:35 2017] DEBUG (XendDomainInfo:258) XendDomainInfo.createDormant({'vcpus_params': {'cap': 0, 'weight': 256}, 'PV_args': '(hd0,4)/grub/menu.lst', 'features': '', 'cpus': [[], [], [], []], 'use_tmp_kernel': False, 'devices': {'ab8364d8-ffc2-491a-9cdc-f349ae40c1ab': ('vif', {'bridge': 'br0', 'mac': '00:16:1a:2a:ef:56', 'script': '/etc/xen/scripts/vif-bridge', 'uuid': 'ab8364d8-ffc2-491a-9cdc-f349ae40c1ab', 'backend': '0'}), '935c1e4f-7a88-773c-25d1-b337bd7b2f3e': ('vbd', {'protocol': 'x86_64-abi', 'uuid': '935c1e4f-7a88-773c-25d1-b337bd7b2f3e', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda:disk', 'uname': 'file:/var/lib/xen/images/CLOUD-CC-1.img', 'mode': 'w', 'backend': '0'}), '4605ea87-1321-44f2-5532-1fe3288bee13': ('console', {'protocol': 'vt100', 'location': '2', 'uuid': '4605ea87-1321-44f2-5532-1fe3288bee13'})}, 'memory_sharing': 0, 'superpages': 0, 'VCPUs_live': 4, 'PV_bootloader': '', 'actions_after_crash': 'restart', 'vbd_refs': ['935c1e4f-7a88-773c-25d1-b337bd7b2f3e'], 'PV_ramdisk': '', 'is_control_domain': False, 'name_label': 'CLOUD-CC-1', 'VCPUs_at_startup': 1, 'HVM_boot_params': {}, 'platform': {'tsc_mode': 0, 'nomigrate': 0}, 'PV_kernel': '/usr/lib/xen/boot/pv-grub-x86_64.gz', 'console_refs': ['4605ea87-1321-44f2-5532-1fe3288bee13'], 'vif_refs': ['ab8364d8-ffc2-491a-9cdc-f349ae40c1ab'], 'on_xend_stop': 'ignore', 'memory_static_min': 0, 'HVM_boot_policy': '', 'description': '', 'VCPUs_max': 4, 'start_time': 1271835210.3399999, 'memory_static_max': 4294967296, 'actions_after_shutdown': 'destroy', 'use_tmp_ramdisk': False, 'on_xend_start': 'ignore', 'memory_dynamic_max': 1073741824, 'actions_after_suspend': '', 'is_a_template': False, 'PV_bootloader_args': '', 'memory_dynamic_min': 1073741824, 'uuid': 'f2636676-0c99-0a61-08db-9b0c6844824d', 'cpu_time': 143.22409792600001, 'shadow_memory': 0, 'target': 0, 'vcpu_avail': 15L, 'notes': {}, 'other_config': {}, 'auto_power_on': False, 'actions_after_reboot': 'restart', 'Description': '', 'status': '1', 'vtpm_refs': []})
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: VBD.set_device not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: VBD.set_type not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: session.get_all_records not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: event.get_record not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: event.get_all not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: VIF.set_device not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: VIF.set_MAC not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: VIF.set_MTU not found
[2010-04-29 09:19:35 2017] WARNING (XendAPI:705) API call: debug.get_all not found
[2010-04-29 09:19:35 2017] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xen-api.sock; authentication has been disabled for this server.
[2010-04-29 09:19:35 2017] INFO (XMLRPCServer:156) Opening Unix domain socket XML-RPC server on /var/run/xend/xmlrpc.sock.
[2010-04-29 09:21:25 2017] DEBUG (XendDomainInfo:235) XendDomainInfo.restore(['domain', ['domid', '6'], ['bootloader'], ['on_crash', 'destroy'], ['uuid', '6a0cd4d7-1f9d-ed9e-8d4e-8ca22c374dea'], ['bootloader_args'], ['vcpus', '2'], ['name', 'i-471B08A1'], ['cpus', [[], []]], ['on_reboot', 'restart'], ['on_poweroff', 'destroy'], ['maxmem', '512'], ['memory', '512'], ['shadow_memory', '0'], ['vcpu_avail', '3'], ['features'], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], ['start_time', '1271822064.18'], ['cpu_time', '13.148059362'], ['online_vcpus', '2'], ['image', ['linux', ['kernel', '/var/lib/eucalyptus/instances/admin/i-471B08A1/kernel'], ['ramdisk', '/var/lib/eucalyptus/instances/admin/i-471B08A1/ramdisk'], ['args', 'root=/dev/xvda1  ro'], ['notes', ['HV_START_LOW', '18446603336221196288'], ['FEATURES', '!writable_page_tables|pae_pgdir_above_4gb'], ['VIRT_BASE', '18446744071562067968'], ['GUEST_VERSION', '2.6'], ['PADDR_OFFSET', '0'], ['GUEST_OS', 'linux'], ['HYPERCALL_PAGE', '18446744071578882048'], ['LOADER', 'generic'], ['SUSPEND_CANCEL', '1'], ['PAE_MODE', 'yes'], ['ENTRY', '18446744071587460192'], ['XEN_VERSION', 'xen-3.0']]]], ['status', '2'], ['state', '-b----'], ['store_mfn', '1753286'], ['console_mfn', '1753285'], ['device', ['vif', ['bridge', 'br0'], ['mac', 'd0:0d:47:1b:08:a1'], ['script', '/etc/xen/scripts/vif-bridge'], ['uuid', '7f55cdca-fdd1-b2cc-31f6-bc0ce8cbb960'], ['backend', '0']]], ['device', ['console', ['protocol', 'vt100'], ['location', '2'], ['uuid', '0d2fd80b-d9f3-3562-6716-b84d4ae5913b']]], ['device', ['vbd', ['protocol', 'x86_64-abi'], ['uuid', 'dceb2f12-1dcf-f189-2a21-64b843655908'], ['bootable', '1'], ['dev', 'xvda1:disk'], ['uname', 'file:/var/lib/eucalyptus/instances/admin/i-471B08A1/root'], ['mode', 'w'], ['backend', '0'], ['bootable', '1'], ['VDI']]], ['device', ['vbd', ['protocol', 'x86_64-abi'], ['uuid', 'cf51fc5d-1b8f-e830-cf82-aae2c190edba'], ['bootable', '0'], ['dev', 'xvda2:disk'], ['uname', 'file:/var/lib/eucalyptus/instances/admin/i-471B08A1/ephemeral'], ['mode', 'w'], ['backend', '0'], ['bootable', '0'], ['VDI']]], ['device', ['vbd', ['protocol', 'x86_64-abi'], ['uuid', 'c055b0ce-f0d0-a35e-4a84-ab66cd8ad233'], ['bootable', '0'], ['dev', 'xvda3:disk'], ['uname', 'file:/var/lib/eucalyptus/instances/admin/i-471B08A1/swap'], ['mode', 'w'], ['backend', '0'], ['bootable', '0'], ['VDI']]]])
[2010-04-29 09:21:25 2017] DEBUG (XendDomainInfo:2508) XendDomainInfo.constructDomain
[2010-04-29 09:21:25 2017] DEBUG (balloon:220) Balloon: 6727868 KiB free; need 16384; done.
[2010-04-29 09:21:25 2017] DEBUG (XendDomain:464) Adding Domain: 1
[2010-04-29 09:21:25 2017] DEBUG (XendDomainInfo:3400) Storing VM details: {'on_xend_stop': 'ignore', 'shadow_memory': '0', 'uuid': '6a0cd4d7-1f9d-ed9e-8d4e-8ca22c374dea', 'on_reboot': 'restart', 'start_time': '1271822064.18', 'on_poweroff': 'destroy', 'bootloader_args': '', 'on_xend_start': 'ignore', 'on_crash': 'destroy', 'xend/restart_count': '0', 'vcpus': '2', 'vcpu_avail': '3', 'bootloader': '', 'image': "(linux (kernel /var/lib/eucalyptus/instances/admin/i-471B08A1/kernel) (ramdisk /var/lib/eucalyptus/instances/admin/i-471B08A1/ramdisk) (args 'root=/dev/xvda1  ro') (superpages 0) (pci ()) (nomigrate 0) (tsc_mode 0) (notes (HV_START_LOW 18446603336221196288) (FEATURES '!writable_page_tables|pae_pgdir_above_4gb') (VIRT_BASE 18446744071562067968) (GUEST_VERSION 2.6) (PADDR_OFFSET 0) (GUEST_OS linux) (HYPERCALL_PAGE 18446744071578882048) (LOADER generic) (SUSPEND_CANCEL 1) (PAE_MODE yes) (ENTRY 18446744071587460192) (XEN_VERSION xen-3.0)))", 'name': 'i-471B08A1'}
[2010-04-29 09:21:25 2017] INFO (XendDomainInfo:2367) createDevice: console : {'protocol': 'vt100', 'location': '2', 'uuid': '0d2fd80b-d9f3-3562-6716-b84d4ae5913b'}
[2010-04-29 09:21:25 2017] DEBUG (DevController:95) DevController: writing {'state': '1', 'backend-id': '0', 'backend': '/local/domain/0/backend/console/1/0'} to /local/domain/1/device/console/0.
[2010-04-29 09:21:25 2017] DEBUG (DevController:97) DevController: writing {'domain': 'i-471B08A1', 'frontend': '/local/domain/1/device/console/0', 'uuid': '0d2fd80b-d9f3-3562-6716-b84d4ae5913b', 'frontend-id': '1', 'state': '1', 'location': '2', 'online': '1', 'protocol': 'vt100'} to /local/domain/0/backend/console/1/0.
[2010-04-29 09:21:25 2017] INFO (XendDomainInfo:2367) createDevice: vbd : {'protocol': 'x86_64-abi', 'uuid': 'dceb2f12-1dcf-f189-2a21-64b843655908', 'bootable': 1, 'driver': 'paravirtualised', 'dev': 'xvda1:disk', 'uname': 'file:/var/lib/eucalyptus/instances/admin/i-471B08A1/root', 'mode': 'w', 'backend': '0'}
[2010-04-29 09:21:25 2017] DEBUG (DevController:95) DevController: writing {'virtual-device': '51713', 'protocol': 'x86_64-abi', 'device-type': 'disk', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/51713'} to /local/domain/1/device/vbd/51713.
[2010-04-29 09:21:25 2017] DEBUG (DevController:97) DevController: writing {'domain': 'i-471B08A1', 'frontend': '/local/domain/1/device/vbd/51713', 'uuid': 'dceb2f12-1dcf-f189-2a21-64b843655908', 'bootable': '1', 'dev': 'xvda1', 'state': '1', 'params': '/var/lib/eucalyptus/instances/admin/i-471B08A1/root', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/51713.
[2010-04-29 09:21:25 2017] INFO (XendDomainInfo:2367) createDevice: vbd : {'protocol': 'x86_64-abi', 'uuid': 'cf51fc5d-1b8f-e830-cf82-aae2c190edba', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'xvda2:disk', 'uname': 'file:/var/lib/eucalyptus/instances/admin/i-471B08A1/ephemeral', 'mode': 'w', 'backend': '0'}
[2010-04-29 09:21:25 2017] DEBUG (DevController:95) DevController: writing {'virtual-device': '51714', 'protocol': 'x86_64-abi', 'device-type': 'disk', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/51714'} to /local/domain/1/device/vbd/51714.
[2010-04-29 09:21:25 2017] DEBUG (DevController:97) DevController: writing {'domain': 'i-471B08A1', 'frontend': '/local/domain/1/device/vbd/51714', 'uuid': 'cf51fc5d-1b8f-e830-cf82-aae2c190edba', 'bootable': '0', 'dev': 'xvda2', 'state': '1', 'params': '/var/lib/eucalyptus/instances/admin/i-471B08A1/ephemeral', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/51714.
[2010-04-29 09:21:25 2017] INFO (XendDomainInfo:2367) createDevice: vbd : {'protocol': 'x86_64-abi', 'uuid': 'c055b0ce-f0d0-a35e-4a84-ab66cd8ad233', 'bootable': 0, 'driver': 'paravirtualised', 'dev': 'xvda3:disk', 'uname': 'file:/var/lib/eucalyptus/instances/admin/i-471B08A1/swap', 'mode': 'w', 'backend': '0'}
[2010-04-29 09:21:25 2017] DEBUG (DevController:95) DevController: writing {'virtual-device': '51715', 'protocol': 'x86_64-abi', 'device-type': 'disk', 'backend-id': '0', 'state': '1', 'backend': '/local/domain/0/backend/vbd/1/51715'} to /local/domain/1/device/vbd/51715.
[2010-04-29 09:21:25 2017] DEBUG (DevController:97) DevController: writing {'domain': 'i-471B08A1', 'frontend': '/local/domain/1/device/vbd/51715', 'uuid': 'c055b0ce-f0d0-a35e-4a84-ab66cd8ad233', 'bootable': '0', 'dev': 'xvda3', 'state': '1', 'params': '/var/lib/eucalyptus/instances/admin/i-471B08A1/swap', 'mode': 'w', 'online': '1', 'frontend-id': '1', 'type': 'file'} to /local/domain/0/backend/vbd/1/51715.
[2010-04-29 09:21:25 2017] INFO (XendDomainInfo:2367) createDevice: vif : {'bridge': 'br0', 'mac': 'd0:0d:47:1b:08:a1', 'script': '/etc/xen/scripts/vif-bridge', 'uuid': '7f55cdca-fdd1-b2cc-31f6-bc0ce8cbb960', 'backend': '0'}
[2010-04-29 09:21:25 2017] DEBUG (DevController:95) DevController: writing {'backend-id': '0', 'mac': 'd0:0d:47:1b:08:a1', 'handle': '0', 'state': '1', 'backend': '/local/domain/0/backend/vif/1/0'} to /local/domain/1/device/vif/0.
[2010-04-29 09:21:25 2017] DEBUG (DevController:97) DevController: writing {'bridge': 'br0', 'domain': 'i-471B08A1', 'handle': '0', 'uuid': '7f55cdca-fdd1-b2cc-31f6-bc0ce8cbb960', 'script': '/etc/xen/scripts/vif-bridge', 'mac': 'd0:0d:47:1b:08:a1', 'frontend-id': '1', 'state': '1', 'online': '1', 'frontend': '/local/domain/1/device/vif/0'} to /local/domain/0/backend/vif/1/0.
[2010-04-29 09:21:25 2017] DEBUG (XendDomainInfo:1804) Storing domain details: {'image/entry': '18446744071587460192', 'console/port': '2', 'image/loader': 'generic', 'vm': '/vm/6a0cd4d7-1f9d-ed9e-8d4e-8ca22c374dea', 'control/platform-feature-multiprocessor-suspend': '1', 'image/hv-start-low': '18446603336221196288', 'image/guest-os': 'linux', 'cpu/1/availability': 'online', 'image/virt-base': '18446744071562067968', 'memory/target': '524288', 'image/guest-version': '2.6', 'image/pae-mode': 'yes', 'description': '', 'console/limit': '1048576', 'image/paddr-offset': '0', 'image/hypercall-page': '18446744071578882048', 'image/suspend-cancel': '1', 'cpu/0/availability': 'online', 'image/features/pae-pgdir-above-4gb': '1', 'image/features/writable-page-tables': '0', 'console/type': 'xenconsoled', 'name': 'i-471B08A1', 'domid': '1', 'image/xen-version': 'xen-3.0', 'store/port': '1'}
[2010-04-29 09:21:26 2017] DEBUG (XendCheckpoint:286) restore:shadow=0x0, _static_max=0x20000000, _static_min=0x0, 
[2010-04-29 09:21:26 2017] DEBUG (XendCheckpoint:305) [xc_restore]: /usr/lib/xen/bin/xc_restore 42 1 1 2 0 0 0 0
[2010-04-29 09:21:26 2017] INFO (XendCheckpoint:423) ERROR Internal error: read: p2m_size
[2010-04-29 09:21:26 2017] INFO (XendCheckpoint:423) Restore exit with rc=1
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:3053) XendDomainInfo.destroy: domid=1
[2010-04-29 09:21:26 2017] ERROR (XendDomainInfo:3067) XendDomainInfo.destroy: domain destruction failed.
Traceback (most recent call last):
  File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendDomainInfo.py", line 3060, in destroy
    xc.domain_pause(self.domid)
Error: (3, 'No such process')
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2416) No device model
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2418) Releasing devices
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2424) Removing vif/0
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vif, device = vif/0
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2424) Removing console/0
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = console, device = console/0
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2424) Removing vbd/51713
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51713
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2424) Removing vbd/51714
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51714
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:2424) Removing vbd/51715
[2010-04-29 09:21:26 2017] DEBUG (XendDomainInfo:1286) XendDomainInfo.destroyDevice: deviceClass = vbd, device = vbd/51715
[2010-04-29 09:21:26 2017] ERROR (XendCheckpoint:357) /usr/lib/xen/bin/xc_restore 42 1 1 2 0 0 0 0 failed
Traceback (most recent call last):
  File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.py", line 309, in restore
    forkHelper(cmd, fd, handler.handler, True)
  File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.py", line 411, in forkHelper
    raise XendError("%s failed" % string.join(cmd))
XendError: /usr/lib/xen/bin/xc_restore 42 1 1 2 0 0 0 0 failed
[2010-04-29 09:21:26 2017] ERROR (XendDomain:1175) Restore failed
Traceback (most recent call last):
  File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendDomain.py", line 1159, in domain_restore_fd
    dominfo = XendCheckpoint.restore(self, fd, paused=paused, relocating=relocating)
  File "/usr/local/lib/python2.6/dist-packages/xen/xend/XendCheckpoint.py", line 358, in restore
    raise exn
XendError: /usr/lib/xen/bin/xc_restore 42 1 1 2 0 0 0 0 failed

[-- Attachment #4: xend-debug.log --]
[-- Type: text/x-log, Size: 5412 bytes --]

Xend started at Thu Apr 29 09:19:31 2010.
cat: /sys/bus/scsi/devices/host0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host0/model: No such file or directory
cat: /sys/bus/scsi/devices/host0/type: No such file or directory
cat: /sys/bus/scsi/devices/host0/rev: No such file or directory
cat: /sys/bus/scsi/devices/host0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host1/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host1/model: No such file or directory
cat: /sys/bus/scsi/devices/host1/type: No such file or directory
cat: /sys/bus/scsi/devices/host1/rev: No such file or directory
cat: /sys/bus/scsi/devices/host1/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host2/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host2/model: No such file or directory
cat: /sys/bus/scsi/devices/host2/type: No such file or directory
cat: /sys/bus/scsi/devices/host2/rev: No such file or directory
cat: /sys/bus/scsi/devices/host2/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host3/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host3/model: No such file or directory
cat: /sys/bus/scsi/devices/host3/type: No such file or directory
cat: /sys/bus/scsi/devices/host3/rev: No such file or directory
cat: /sys/bus/scsi/devices/host3/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host4/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host4/model: No such file or directory
cat: /sys/bus/scsi/devices/host4/type: No such file or directory
cat: /sys/bus/scsi/devices/host4/rev: No such file or directory
cat: /sys/bus/scsi/devices/host4/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host5/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host5/model: No such file or directory
cat: /sys/bus/scsi/devices/host5/type: No such file or directory
cat: /sys/bus/scsi/devices/host5/rev: No such file or directory
cat: /sys/bus/scsi/devices/host5/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host6/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host6/model: No such file or directory
cat: /sys/bus/scsi/devices/host6/type: No such file or directory
cat: /sys/bus/scsi/devices/host6/rev: No such file or directory
cat: /sys/bus/scsi/devices/host6/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/host7/vendor: No such file or directory
cat: /sys/bus/scsi/devices/host7/model: No such file or directory
cat: /sys/bus/scsi/devices/host7/type: No such file or directory
cat: /sys/bus/scsi/devices/host7/rev: No such file or directory
cat: /sys/bus/scsi/devices/host7/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target0:0:0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target0:0:0/model: No such file or directory
cat: /sys/bus/scsi/devices/target0:0:0/type: No such file or directory
cat: /sys/bus/scsi/devices/target0:0:0/rev: No such file or directory
cat: /sys/bus/scsi/devices/target0:0:0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target1:0:0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target1:0:0/model: No such file or directory
cat: /sys/bus/scsi/devices/target1:0:0/type: No such file or directory
cat: /sys/bus/scsi/devices/target1:0:0/rev: No such file or directory
cat: /sys/bus/scsi/devices/target1:0:0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target2:0:0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target2:0:0/model: No such file or directory
cat: /sys/bus/scsi/devices/target2:0:0/type: No such file or directory
cat: /sys/bus/scsi/devices/target2:0:0/rev: No such file or directory
cat: /sys/bus/scsi/devices/target2:0:0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target3:0:0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target3:0:0/model: No such file or directory
cat: /sys/bus/scsi/devices/target3:0:0/type: No such file or directory
cat: /sys/bus/scsi/devices/target3:0:0/rev: No such file or directory
cat: /sys/bus/scsi/devices/target3:0:0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target4:0:0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target4:0:0/model: No such file or directory
cat: /sys/bus/scsi/devices/target4:0:0/type: No such file or directory
cat: /sys/bus/scsi/devices/target4:0:0/rev: No such file or directory
cat: /sys/bus/scsi/devices/target4:0:0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target5:0:0/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target5:0:0/model: No such file or directory
cat: /sys/bus/scsi/devices/target5:0:0/type: No such file or directory
cat: /sys/bus/scsi/devices/target5:0:0/rev: No such file or directory
cat: /sys/bus/scsi/devices/target5:0:0/scsi_level: No such file or directory
cat: /sys/bus/scsi/devices/target6:0:1/vendor: No such file or directory
cat: /sys/bus/scsi/devices/target6:0:1/model: No such file or directory
cat: /sys/bus/scsi/devices/target6:0:1/type: No such file or directory
cat: /sys/bus/scsi/devices/target6:0:1/rev: No such file or directory
cat: /sys/bus/scsi/devices/target6:0:1/scsi_level: No such file or directory
/usr/local/lib/python2.6/dist-packages/xen/xend/XendAPI.py:548: DeprecationWarning: object.__new__() takes no parameters
  return object.__new__(cls, *args, **kwds)

[-- Attachment #5: xen-hotplug.log --]
[-- Type: text/x-log, Size: 2415 bytes --]

xenstore-read: couldn't read path backend/vbd/1/51714/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
/etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
/etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected
xenstore-read: couldn't read path backend/vbd/1/51714/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
/etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
/etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
/etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51714/node
xenstore-read: couldn't read path backend/vbd/1/51715/node
/etc/xen/scripts/xen-hotplug-cleanup: line 24: [: !=: unary operator expected
xenstore-read: couldn't read path backend/vbd/1/51714/node
xenstore-read: couldn't read path backend/vbd/1/51713/node
xenstore-read: couldn't read path backend/vbd/1/51715/node

[-- Attachment #6: Type: text/plain, Size: 138 bytes --]

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

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

* RE: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-29 13:54                                                     ` Gerry Reno
@ 2010-04-29 14:41                                                       ` Mike Viau
  2010-04-29 14:46                                                         ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Mike Viau @ 2010-04-29 14:41 UTC (permalink / raw)
  To: xen-devel


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


> Thu, 29 Apr 2010 09:54:07 -0400 <greno@verizon.net> wrote: on AMD quad-core
> 
> On 04/27/2010 01:35 PM, Gerry Reno wrote:
> > On 04/27/2010 05:15 AM, Pasi Kärkkäinen wrote:
> >> On Mon, Apr 26, 2010 at 10:48:44PM -0400, Gerry Reno wrote:
> >>>>>>> Pasi, my grub.conf is attached.
> >>>>>>>
> >>>>>> Ok, fix it to be like this:
> >>>>>>
> >>>>>> module /vmlinuz-2.6.32.10
> >>>>>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro
> >>>>>> earlyprintk=xen console=hvc0 console=ttyS0 console=ttyUSB0,115200n8
> >>>>>> text
> >>>>>>
> >>>>>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
> >>>>>>
> >>>>>> -- Pasi
> >>>>>>
> >>>>> Pasi, this gave some more output.  Sorry the video is fuzzy but this
> >>>>> happens by youtube postprocessing.  Here is new link:
> >>>>> http://www.youtube.com/watch?v=jePyapeHpSI
> >>>>>
> >>>>> -Gerry
> >>>> If you have somewhere I can ftp original video file, it is clearer.
> >>>> File is about 90 MB.
> >>>>
> >>>> -Gerry
> >>>>
> >>> Original video is posted here:
> >>> http://greno-misc.googlecode.com/files/MOV03932.MPG
> >>>
> >> It's very difficult to see the problem from that video :(
> >> We'd really need a serial console log.
> >>
> >> Also you I wonder why the screen goes blank in the end?
> >> Before that it seems to mount the root (?) filesystem OK..
> >>
> >> Do you have some console font/videomode thingie configured?
> >> See the "Dom0 console gets all weird and corrupted in the end of the 
> >> boot process" from:
> >> http://wiki.xensource.com/xenwiki/XenParavirtOps
> >>
> >> Also please add "nomodeset" option to the end of the pvops kernel 
> >> boot options,
> >> like suggested on pvops examples/docs.
> >>
> >> -- Pasi
> >>
> > Ok, I finally got a little more output using nomodeset.  There is a 
> > soft lockup bug.  Attaching screenshots.
> >
> > -Gerry
> >
> 
> I've been changing various settings trying to figure out what is the 
> problem and today after a very long wait (> 5 min) I was able to see a 
> login prompt.  But things are not well.  During the boot I now see:
> XENBUS: Unable to read cpu state.
> XENBUS: Unable to read cpu state.
> XENBUS: Unable to read cpu state.
> XENBUS: Unable to read cpu state.
> 

I get these message on boot too (note there is not long delay to get these messages but they do appear closer to the end of my boot up sequence). FYI, it has not affected XEN for as far as I could see.


> and while logged in I get a lot of these type of messages every few minutes:
> INFO: task xxxxxxx:nnn  blocked for more than 120 seconds.
> "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
> 
> and I notice a number of errors in the xen logs with I'm attaching.
> 
> Can someone look at these logs and see if there is anything I can do on 
> my end to help fix the problem?
> 
> -Gerry
> 
> 
> 
 		 	   		  
_________________________________________________________________
Live connected. Get Hotmail & Messenger on your phone.
http://go.microsoft.com/?linkid=9724462

[-- Attachment #1.2: Type: text/html, Size: 4191 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-29 14:41                                                       ` Mike Viau
@ 2010-04-29 14:46                                                         ` Gerry Reno
  2010-04-29 15:11                                                           ` Mike Viau
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-04-29 14:46 UTC (permalink / raw)
  To: xen-devel


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

On 04/29/2010 10:41 AM, Mike Viau wrote:
> > Thu, 29 Apr 2010 09:54:07 -0400 <greno@verizon.net> wrote: on AMD 
> quad-core
> >
> > On 04/27/2010 01:35 PM, Gerry Reno wrote:
> > > On 04/27/2010 05:15 AM, Pasi Kärkkäinen wrote:
> > >> On Mon, Apr 26, 2010 at 10:48:44PM -0400, Gerry Reno wrote:
> > >>>>>>> Pasi, my grub.conf is attached.
> > >>>>>>>
> > >>>>>> Ok, fix it to be like this:
> > >>>>>>
> > >>>>>> module /vmlinuz-2.6.32.10
> > >>>>>> root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro
> > >>>>>> earlyprintk=xen console=hvc0 console=ttyS0 
> console=ttyUSB0,115200n8
> > >>>>>> text
> > >>>>>>
> > >>>>>> aka remove "quiet" and add "earlyprintk=xen console=hvc0"
> > >>>>>>
> > >>>>>> -- Pasi
> > >>>>>>
> > >>>>> Pasi, this gave some more output. Sorry the video is fuzzy but 
> this
> > >>>>> happens by youtube postprocessing. Here is new link:
> > >>>>> http://www.youtube.com/watch?v=jePyapeHpSI
> > >>>>>
> > >>>>> -Gerry
> > >>>> If you have somewhere I can ftp original video file, it is clearer.
> > >>>> File is about 90 MB.
> > >>>>
> > >>>> -Gerry
> > >>>>
> > >>> Original video is posted here:
> > >>> http://greno-misc.googlecode.com/files/MOV03932.MPG
> > >>>
> > >> It's very difficult to see the problem from that video :(
> > >> We'd really need a serial console log.
> > >>
> > >> Also you I wonder why the screen goes blank in the end?
> > >> Before that it seems to mount the root (?) filesystem OK..
> > >>
> > >> Do you have some console font/videomode thingie configured?
> > >> See the "Dom0 console gets all weird and corrupted in the end of the
> > >> boot process" from:
> > >> http://wiki.xensource.com/xenwiki/XenParavirtOps
> > >>
> > >> Also please add "nomodeset" option to the end of the pvops kernel
> > >> boot options,
> > >> like suggested on pvops examples/docs.
> > >>
> > >> -- Pasi
> > >>
> > > Ok, I finally got a little more output using nomodeset. There is a
> > > soft lockup bug. Attaching screenshots.
> > >
> > > -Gerry
> > >
> >
> > I've been changing various settings trying to figure out what is the
> > problem and today after a very long wait (> 5 min) I was able to see a
> > login prompt. But things are not well. During the boot I now see:
> > XENBUS: Unable to read cpu state.
> > XENBUS: Unable to read cpu state.
> > XENBUS: Unable to read cpu state.
> > XENBUS: Unable to read cpu state.
> >
>
> I get these message on boot too (note there is not long delay to get 
> these messages but they do appear closer to the end of my boot up 
> sequence). FYI, it has not affected XEN for as far as I could see.
>
>
> > and while logged in I get a lot of these type of messages every few 
> minutes:
> > INFO: task xxxxxxx:nnn blocked for more than 120 seconds.
> > "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this 
> message.
> >
> > and I notice a number of errors in the xen logs with I'm attaching.
> >
> > Can someone look at these logs and see if there is anything I can do on
> > my end to help fix the problem?
> >
> > -Gerry
> >
Mike, what processor are you running on?

-Gerry


[-- Attachment #1.2: Type: text/html, Size: 4805 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* RE: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-29 14:46                                                         ` Gerry Reno
@ 2010-04-29 15:11                                                           ` Mike Viau
  2010-04-29 16:50                                                             ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Mike Viau @ 2010-04-29 15:11 UTC (permalink / raw)
  To: xen-devel


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


Thu, 29 Apr 2010 10:46:51 -0400 <greno@verizon.net> wrote:


>> I've been changing various settings trying to figure out what is
the 

>> problem and today after a very long wait (> 5 min) I was able
to see a 

>> login prompt. But things are not well. During the boot I now see:

>> XENBUS: Unable to read cpu state.

>> XENBUS: Unable to read cpu state.

>> XENBUS: Unable to read cpu state.

>> XENBUS: Unable to read cpu state.

>> 

  

> I get these message on boot too (note there is not long delay to get
these messages but they do appear closer to the end of my boot up
sequence). FYI, it has not affected XEN for as far as I could see.

  
Mike, what processor are you running on?




A fairly recent Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 30
model name      : Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz
stepping        : 5
cpu MHz         : 2800.132
cache size      : 8192 KB
fpu             : yes
fpu_exception   : yes
cpuid level     : 11
wp              : yes
flags           : fpu de tsc msr pae cx8 apic sep mtrr cmov pat clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc rep_good nonstop_tsc aperfmperf pni est ssse3 cx16 sse4_1 sse4_2 popcnt hypervisor lahf_lm ida
bogomips        : 5600.26
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:





 		 	   		  
_________________________________________________________________
Hotmail & Messenger. Get them on your phone now.
http://go.microsoft.com/?linkid=9724463

[-- Attachment #1.2: Type: text/html, Size: 2683 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-29 15:11                                                           ` Mike Viau
@ 2010-04-29 16:50                                                             ` Gerry Reno
  0 siblings, 0 replies; 64+ messages in thread
From: Gerry Reno @ 2010-04-29 16:50 UTC (permalink / raw)
  To: xen-devel


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

On 04/29/2010 11:11 AM, Mike Viau wrote:
> Thu, 29 Apr 2010 10:46:51 -0400 <greno@verizon.net> wrote:
>
>     >> I've been changing various settings trying to figure out what
>     is the
>     >> problem and today after a very long wait (> 5 min) I was able
>     to see a
>     >> login prompt. But things are not well. During the boot I now see:
>     >> XENBUS: Unable to read cpu state.
>     >> XENBUS: Unable to read cpu state.
>     >> XENBUS: Unable to read cpu state.
>     >> XENBUS: Unable to read cpu state.
>     >>
>
>     > I get these message on boot too (note there is not long delay to
>     get these messages but they do appear closer to the end of my boot
>     up sequence). FYI, it has not affected XEN for as far as I could see.
>
>     Mike, what processor are you running on?
>
>
>
> A fairly recent Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz
>
> processor       : 0
> vendor_id       : GenuineIntel
> cpu family      : 6
> model           : 30
> model name      : Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz
> stepping        : 5
> cpu MHz         : 2800.132
> cache size      : 8192 KB
> fpu             : yes
> fpu_exception   : yes
> cpuid level     : 11
> wp              : yes
> flags           : fpu de tsc msr pae cx8 apic sep mtrr cmov pat 
> clflush acpi mmx fxsr sse sse2 ss ht syscall nx lm constant_tsc 
> rep_good nonstop_tsc aperfmperf pni est ssse3 cx16 sse4_1 sse4_2 
> popcnt hypervisor lahf_lm ida
> bogomips        : 5600.26
> clflush size    : 64
> cache_alignment : 64
> address sizes   : 36 bits physical, 48 bits virtual
> power management:
>
>
>
Intel processors do not seem to have the same problem for some reason.  
I did see though a large number of "soft lockup" bugs reported for Lucid 
Lynx recently (2.6.32-21).

The problem I'm seeing is just with the latest pv_ops dom0 kernel on AMD 
hardware.  Before I tore down the previous Xen installation in order to 
load 4.0.0-rc8 I was running 2.6.31.6 and xen 3.4.1 which worked with 
the exception of the checksumming problem which turned out to be a 
blocker.  But now something has changed between 2.6.31.6 and 2.6.32.10 
that seriously affected AMD processor hardware with a "soft lockup" problem.

-Gerry



[-- Attachment #1.2: Type: text/html, Size: 3575 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-04-23 17:50 Cannot load latest 2.6.32.10 kernel on AMD quad-core Gerry Reno
  2010-04-23 18:27 ` Boris Derzhavets
@ 2010-05-03 16:18 ` Konrad Rzeszutek Wilk
  2010-05-03 17:18   ` Gerry Reno
  1 sibling, 1 reply; 64+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-05-03 16:18 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Fri, Apr 23, 2010 at 01:50:40PM -0400, Gerry Reno wrote:
> I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my  
> hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that  
> kernel had issues with rxchecksumming.  So I upgraded the server to  
> lucid and am now trying to compile a new pv_ops dom0 kernel for it.
>
> Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops  
> dom0 kernel twice.  Once from the config in the email Lucid pv_ops dom0  
> howto and once from the lucid server config modified by adding all the  

Gerry,

Can you attach your .config file ? I am not seeing it anywhere in the
thread. Also is this x86_64 or i386 build? If it is i386 do you have
CONFIG_NUMA enabled? If so, what happens if you disable that?

Can you also tell me which Phenom it is? 940? 

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-05-03 16:18 ` Konrad Rzeszutek Wilk
@ 2010-05-03 17:18   ` Gerry Reno
  2010-05-03 20:36     ` Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-03 17:18 UTC (permalink / raw)
  To: xen-devel

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

On 05/03/2010 12:18 PM, Konrad Rzeszutek Wilk wrote:
> On Fri, Apr 23, 2010 at 01:50:40PM -0400, Gerry Reno wrote:
>    
>> I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my
>> hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that
>> kernel had issues with rxchecksumming.  So I upgraded the server to
>> lucid and am now trying to compile a new pv_ops dom0 kernel for it.
>>
>> Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops
>> dom0 kernel twice.  Once from the config in the email Lucid pv_ops dom0
>> howto and once from the lucid server config modified by adding all the
>>      
> Gerry,
>
> Can you attach your .config file ? I am not seeing it anywhere in the
> thread. Also is this x86_64 or i386 build? If it is i386 do you have
> CONFIG_NUMA enabled? If so, what happens if you disable that?
>
> Can you also tell me which Phenom it is? 940?
>
>    

Konrad, I attached my .config file and /proc/cpuinfo.  The build was 
x86_64.  The cpu is AMD Phenom II x4 940.

-Gerry



[-- Attachment #2: .config --]
[-- Type: text/plain, Size: 109065 bytes --]

#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.32.10
# Sat Apr 24 14:52:14 2010
#
CONFIG_64BIT=y
# CONFIG_X86_32 is not set
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_GENERIC_TIME=y
CONFIG_GENERIC_CMOS_UPDATE=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_ZONE_DMA=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_GPIO=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_GENERIC_SPINLOCK=y
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ZONE_DMA32=y
CONFIG_ARCH_POPULATES_NODE_MAP=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_X86_TRAMPOLINE=y
# CONFIG_KTIME_SCALAR is not set
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_CONSTRUCTORS=y

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
# CONFIG_TASK_DELAY_ACCT is not set
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_TREE=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_TREE_PREEMPT_RCU is not set
# CONFIG_RCU_TRACE is not set
CONFIG_RCU_FANOUT=64
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_GROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_RT_GROUP_SCHED=y
# CONFIG_USER_SCHED is not set
CONFIG_CGROUP_SCHED=y
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_NS=y
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_RESOURCE_COUNTERS=y
CONFIG_CGROUP_MEM_RES_CTLR=y
CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y
CONFIG_MM_OWNER=y
# CONFIG_SYSFS_DEPRECATED_V2 is not set
CONFIG_RELAY=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
# CONFIG_EMBEDDED is not set
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_HAVE_PERF_EVENTS=y

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
CONFIG_EVENT_PROFILE=y
CONFIG_PERF_COUNTERS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_PCI_QUIRKS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
CONFIG_OPROFILE=m
CONFIG_OPROFILE_IBS=y
# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_KPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_KRETPROBES=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_HAVE_DMA_API_DEBUG=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_SLOW_WORK=y
# CONFIG_SLOW_WORK_DEBUG is not set
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLOCK_COMPAT=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
# CONFIG_DEFAULT_AS is not set
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_FREEZER=y

#
# Processor type and features
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_SMP=y
CONFIG_SPARSE_IRQ=y
CONFIG_NUMA_IRQ_DESC=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_VSMP is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_PARAVIRT_GUEST=y
CONFIG_XEN=y
CONFIG_XEN_MAX_DOMAIN_MEMORY=32
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
CONFIG_SWIOTLB_XEN=y
CONFIG_MICROCODE_XEN=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PRIVILEGED_GUEST=y
CONFIG_XEN_DOM0_PCI=y
CONFIG_XEN_PCI_PASSTHROUGH=y
CONFIG_KVM_CLOCK=y
CONFIG_KVM_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_PARAVIRT_DEBUG is not set
# CONFIG_MEMTEST is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_MVIAC7 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_CPU=y
CONFIG_X86_L1_CACHE_BYTES=64
CONFIG_X86_INTERNODE_CACHE_BYTES=64
CONFIG_X86_CMPXCHG=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
# CONFIG_X86_DS is not set
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
CONFIG_AMD_IOMMU=y
CONFIG_AMD_IOMMU_STATS=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
CONFIG_IOMMU_API=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=64
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
CONFIG_X86_MCE_INJECT=m
CONFIG_X86_THERMAL_VECTOR=y
CONFIG_I8K=m
CONFIG_MICROCODE=m
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=m
CONFIG_X86_CPUID=m
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
CONFIG_NUMA=y
CONFIG_K8_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_MEMORY_PROBE=y
CONFIG_SELECT_MEMORY_MODEL=y
# CONFIG_FLATMEM_MANUAL is not set
# CONFIG_DISCONTIGMEM_MANUAL is not set
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG_SPARSE=y
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_HAVE_MLOCK=y
CONFIG_HAVE_MLOCKED_PAGE_BIT=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW_64K=y
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_EFI=y
CONFIG_SECCOMP=y
CONFIG_CC_STACKPROTECTOR=y
CONFIG_HZ_100=y
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=100
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=y
CONFIG_PHYSICAL_START=0x200000
CONFIG_RELOCATABLE=y
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID=y

#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_VERBOSE is not set
CONFIG_CAN_PM_TRACE=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
CONFIG_PM_SLEEP_SMP=y
CONFIG_PM_SLEEP=y
CONFIG_SUSPEND=y
CONFIG_PM_TEST_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATION_NVS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_RUNTIME=y
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_PROCFS=y
CONFIG_ACPI_PROCFS_POWER=y
CONFIG_ACPI_POWER_METER=m
CONFIG_ACPI_SYSFS_POWER=y
CONFIG_ACPI_PROC_EVENT=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
CONFIG_ACPI_PROCESSOR_AGGREGATOR=m
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
CONFIG_ACPI_CUSTOM_DSDT_FILE=""
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_PCI_SLOT=y
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_MEMORY=m
CONFIG_ACPI_SBS=y
CONFIG_SFI=y

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y

#
# CPUFreq processor drivers
#
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_POWERNOW_K8=y
CONFIG_X86_SPEEDSTEP_CENTRINO=y
CONFIG_X86_P4_CLOCKMOD=m

#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=m
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y

#
# Memory power savings
#
CONFIG_I7300_IDLE_IOAT_CHANNEL=y
CONFIG_I7300_IDLE=m

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_DMAR is not set
# CONFIG_INTR_REMAP is not set
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
# CONFIG_PCIEASPM is not set
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
CONFIG_PCI_LEGACY=y
# CONFIG_PCI_DEBUG is not set
CONFIG_PCI_STUB=m
CONFIG_XEN_PCIDEV_FRONTEND=y
CONFIG_HT_IRQ=y
CONFIG_PCI_IOV=y
CONFIG_ISA_DMA_API=y
CONFIG_K8_NB=y
CONFIG_PCCARD=m
# CONFIG_PCMCIA_DEBUG is not set
CONFIG_PCMCIA=m
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_PCMCIA_IOCTL=y
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=m
CONFIG_YENTA_O2=y
CONFIG_YENTA_RICOH=y
CONFIG_YENTA_TI=y
CONFIG_YENTA_ENE_TUNE=y
CONFIG_YENTA_TOSHIBA=y
CONFIG_PD6729=m
CONFIG_I82092=m
CONFIG_PCCARD_NONSTATIC=m
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_FAKE=m
CONFIG_HOTPLUG_PCI_ACPI=m
CONFIG_HOTPLUG_PCI_ACPI_IBM=m
CONFIG_HOTPLUG_PCI_CPCI=y
CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m
CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m
CONFIG_HOTPLUG_PCI_SHPC=m

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=m
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_NET=y
CONFIG_COMPAT_NETLINK_MESSAGES=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
CONFIG_XFRM=y
CONFIG_XFRM_USER=m
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_IPCOMP=m
CONFIG_NET_KEY=m
# CONFIG_NET_KEY_MIGRATE is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_ASK_IP_FIB_HASH=y
# CONFIG_IP_FIB_TRIE is not set
CONFIG_IP_FIB_HASH=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_PNP is not set
CONFIG_NET_IPIP=m
CONFIG_NET_IPGRE=m
CONFIG_NET_IPGRE_BROADCAST=y
CONFIG_IP_MROUTE=y
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
# CONFIG_ARPD is not set
CONFIG_SYN_COOKIES=y
CONFIG_INET_AH=m
CONFIG_INET_ESP=m
CONFIG_INET_IPCOMP=m
CONFIG_INET_XFRM_TUNNEL=m
CONFIG_INET_TUNNEL=m
CONFIG_INET_XFRM_MODE_TRANSPORT=m
CONFIG_INET_XFRM_MODE_TUNNEL=m
CONFIG_INET_XFRM_MODE_BEET=m
CONFIG_INET_LRO=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
CONFIG_TCP_CONG_ADVANCED=y
CONFIG_TCP_CONG_BIC=m
CONFIG_TCP_CONG_CUBIC=y
CONFIG_TCP_CONG_WESTWOOD=m
CONFIG_TCP_CONG_HTCP=m
CONFIG_TCP_CONG_HSTCP=m
CONFIG_TCP_CONG_HYBLA=m
CONFIG_TCP_CONG_VEGAS=m
CONFIG_TCP_CONG_SCALABLE=m
CONFIG_TCP_CONG_LP=m
CONFIG_TCP_CONG_VENO=m
CONFIG_TCP_CONG_YEAH=m
CONFIG_TCP_CONG_ILLINOIS=m
# CONFIG_DEFAULT_BIC is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_HTCP is not set
# CONFIG_DEFAULT_VEGAS is not set
# CONFIG_DEFAULT_WESTWOOD is not set
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
CONFIG_IPV6_PRIVACY=y
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
CONFIG_INET6_IPCOMP=m
# CONFIG_IPV6_MIP6 is not set
CONFIG_INET6_XFRM_TUNNEL=m
CONFIG_INET6_TUNNEL=m
CONFIG_INET6_XFRM_MODE_TRANSPORT=m
CONFIG_INET6_XFRM_MODE_TUNNEL=m
CONFIG_INET6_XFRM_MODE_BEET=m
CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m
CONFIG_IPV6_SIT=m
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=m
CONFIG_IPV6_MULTIPLE_TABLES=y
# CONFIG_IPV6_SUBTREES is not set
# CONFIG_IPV6_MROUTE is not set
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=y

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m
CONFIG_NF_CONNTRACK=m
CONFIG_NF_CT_ACCT=y
CONFIG_NF_CONNTRACK_MARK=y
CONFIG_NF_CONNTRACK_SECMARK=y
CONFIG_NF_CONNTRACK_EVENTS=y
CONFIG_NF_CT_PROTO_DCCP=m
CONFIG_NF_CT_PROTO_GRE=m
CONFIG_NF_CT_PROTO_SCTP=m
CONFIG_NF_CT_PROTO_UDPLITE=m
CONFIG_NF_CONNTRACK_AMANDA=m
CONFIG_NF_CONNTRACK_FTP=m
CONFIG_NF_CONNTRACK_H323=m
CONFIG_NF_CONNTRACK_IRC=m
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
CONFIG_NF_CONNTRACK_PPTP=m
CONFIG_NF_CONNTRACK_SANE=m
CONFIG_NF_CONNTRACK_SIP=m
CONFIG_NF_CONNTRACK_TFTP=m
CONFIG_NF_CT_NETLINK=m
CONFIG_NETFILTER_TPROXY=m
CONFIG_NETFILTER_XTABLES=m
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m
CONFIG_NETFILTER_XT_TARGET_DSCP=m
CONFIG_NETFILTER_XT_TARGET_HL=m
CONFIG_NETFILTER_XT_TARGET_LED=m
CONFIG_NETFILTER_XT_TARGET_MARK=m
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
CONFIG_NETFILTER_XT_TARGET_RATEEST=m
CONFIG_NETFILTER_XT_TARGET_TPROXY=m
CONFIG_NETFILTER_XT_TARGET_TRACE=m
CONFIG_NETFILTER_XT_TARGET_SECMARK=m
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set
CONFIG_NETFILTER_XT_MATCH_CLUSTER=m
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
CONFIG_NETFILTER_XT_MATCH_DCCP=m
CONFIG_NETFILTER_XT_MATCH_DSCP=m
CONFIG_NETFILTER_XT_MATCH_ESP=m
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
CONFIG_NETFILTER_XT_MATCH_HELPER=m
CONFIG_NETFILTER_XT_MATCH_HL=m
CONFIG_NETFILTER_XT_MATCH_IPRANGE=m
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
CONFIG_NETFILTER_XT_MATCH_MAC=m
CONFIG_NETFILTER_XT_MATCH_MARK=m
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
CONFIG_NETFILTER_XT_MATCH_OWNER=m
CONFIG_NETFILTER_XT_MATCH_POLICY=m
CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
CONFIG_NETFILTER_XT_MATCH_RATEEST=m
CONFIG_NETFILTER_XT_MATCH_REALM=m
CONFIG_NETFILTER_XT_MATCH_RECENT=m
# CONFIG_NETFILTER_XT_MATCH_RECENT_PROC_COMPAT is not set
CONFIG_NETFILTER_XT_MATCH_SCTP=m
CONFIG_NETFILTER_XT_MATCH_SOCKET=m
CONFIG_NETFILTER_XT_MATCH_STATE=m
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
CONFIG_NETFILTER_XT_MATCH_STRING=m
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
CONFIG_NETFILTER_XT_MATCH_TIME=m
CONFIG_NETFILTER_XT_MATCH_U32=m
CONFIG_NETFILTER_XT_MATCH_OSF=m
CONFIG_IP_VS=m
CONFIG_IP_VS_IPV6=y
# CONFIG_IP_VS_DEBUG is not set
CONFIG_IP_VS_TAB_BITS=12

#
# IPVS transport protocol load balancing support
#
CONFIG_IP_VS_PROTO_TCP=y
CONFIG_IP_VS_PROTO_UDP=y
CONFIG_IP_VS_PROTO_AH_ESP=y
CONFIG_IP_VS_PROTO_ESP=y
CONFIG_IP_VS_PROTO_AH=y

#
# IPVS scheduler
#
CONFIG_IP_VS_RR=m
CONFIG_IP_VS_WRR=m
CONFIG_IP_VS_LC=m
CONFIG_IP_VS_WLC=m
CONFIG_IP_VS_LBLC=m
CONFIG_IP_VS_LBLCR=m
CONFIG_IP_VS_DH=m
CONFIG_IP_VS_SH=m
CONFIG_IP_VS_SED=m
CONFIG_IP_VS_NQ=m

#
# IPVS application helper
#
CONFIG_IP_VS_FTP=m

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_CONNTRACK_IPV4=m
CONFIG_NF_CONNTRACK_PROC_COMPAT=y
CONFIG_IP_NF_QUEUE=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_ADDRTYPE=m
CONFIG_IP_NF_MATCH_AH=m
CONFIG_IP_NF_MATCH_ECN=m
CONFIG_IP_NF_MATCH_TTL=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_LOG=m
CONFIG_IP_NF_TARGET_ULOG=m
CONFIG_NF_NAT=m
CONFIG_NF_NAT_NEEDED=y
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_NETMAP=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_NF_NAT_SNMP_BASIC=m
CONFIG_NF_NAT_PROTO_DCCP=m
CONFIG_NF_NAT_PROTO_GRE=m
CONFIG_NF_NAT_PROTO_UDPLITE=m
CONFIG_NF_NAT_PROTO_SCTP=m
CONFIG_NF_NAT_FTP=m
CONFIG_NF_NAT_IRC=m
CONFIG_NF_NAT_TFTP=m
CONFIG_NF_NAT_AMANDA=m
CONFIG_NF_NAT_PPTP=m
CONFIG_NF_NAT_H323=m
CONFIG_NF_NAT_SIP=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_CLUSTERIP=m
CONFIG_IP_NF_TARGET_ECN=m
CONFIG_IP_NF_TARGET_TTL=m
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_SECURITY=m
CONFIG_IP_NF_ARPTABLES=m
CONFIG_IP_NF_ARPFILTER=m
CONFIG_IP_NF_ARP_MANGLE=m

#
# IPv6: Netfilter Configuration
#
CONFIG_NF_CONNTRACK_IPV6=m
CONFIG_IP6_NF_QUEUE=m
CONFIG_IP6_NF_IPTABLES=m
CONFIG_IP6_NF_MATCH_AH=m
CONFIG_IP6_NF_MATCH_EUI64=m
CONFIG_IP6_NF_MATCH_FRAG=m
CONFIG_IP6_NF_MATCH_OPTS=m
CONFIG_IP6_NF_MATCH_HL=m
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
CONFIG_IP6_NF_MATCH_MH=m
CONFIG_IP6_NF_MATCH_RT=m
CONFIG_IP6_NF_TARGET_HL=m
CONFIG_IP6_NF_TARGET_LOG=m
CONFIG_IP6_NF_FILTER=m
CONFIG_IP6_NF_TARGET_REJECT=m
CONFIG_IP6_NF_MANGLE=m
CONFIG_IP6_NF_RAW=m
CONFIG_IP6_NF_SECURITY=m

#
# DECnet: Netfilter Configuration
#
CONFIG_DECNET_NF_GRABULATOR=m
CONFIG_BRIDGE_NF_EBTABLES=m
CONFIG_BRIDGE_EBT_BROUTE=m
CONFIG_BRIDGE_EBT_T_FILTER=m
CONFIG_BRIDGE_EBT_T_NAT=m
CONFIG_BRIDGE_EBT_802_3=m
CONFIG_BRIDGE_EBT_AMONG=m
CONFIG_BRIDGE_EBT_ARP=m
CONFIG_BRIDGE_EBT_IP=m
CONFIG_BRIDGE_EBT_IP6=m
CONFIG_BRIDGE_EBT_LIMIT=m
CONFIG_BRIDGE_EBT_MARK=m
CONFIG_BRIDGE_EBT_PKTTYPE=m
CONFIG_BRIDGE_EBT_STP=m
CONFIG_BRIDGE_EBT_VLAN=m
CONFIG_BRIDGE_EBT_ARPREPLY=m
CONFIG_BRIDGE_EBT_DNAT=m
CONFIG_BRIDGE_EBT_MARK_T=m
CONFIG_BRIDGE_EBT_REDIRECT=m
CONFIG_BRIDGE_EBT_SNAT=m
CONFIG_BRIDGE_EBT_LOG=m
CONFIG_BRIDGE_EBT_ULOG=m
CONFIG_BRIDGE_EBT_NFLOG=m
CONFIG_IP_DCCP=m
CONFIG_INET_DCCP_DIAG=m

#
# DCCP CCIDs Configuration (EXPERIMENTAL)
#
# CONFIG_IP_DCCP_CCID2_DEBUG is not set
CONFIG_IP_DCCP_CCID3=y
# CONFIG_IP_DCCP_CCID3_DEBUG is not set
CONFIG_IP_DCCP_CCID3_RTO=100
CONFIG_IP_DCCP_TFRC_LIB=y

#
# DCCP Kernel Hacking
#
# CONFIG_IP_DCCP_DEBUG is not set
CONFIG_NET_DCCPPROBE=m
CONFIG_IP_SCTP=m
# CONFIG_SCTP_DBG_MSG is not set
# CONFIG_SCTP_DBG_OBJCNT is not set
# CONFIG_SCTP_HMAC_NONE is not set
# CONFIG_SCTP_HMAC_SHA1 is not set
CONFIG_SCTP_HMAC_MD5=y
CONFIG_RDS=m
CONFIG_RDS_RDMA=m
CONFIG_RDS_TCP=m
# CONFIG_RDS_DEBUG is not set
CONFIG_TIPC=m
# CONFIG_TIPC_ADVANCED is not set
# CONFIG_TIPC_DEBUG is not set
CONFIG_ATM=m
CONFIG_ATM_CLIP=m
# CONFIG_ATM_CLIP_NO_ICMP is not set
CONFIG_ATM_LANE=m
CONFIG_ATM_MPOA=m
CONFIG_ATM_BR2684=m
# CONFIG_ATM_BR2684_IPFILTER is not set
CONFIG_STP=m
CONFIG_GARP=m
CONFIG_BRIDGE=m
CONFIG_NET_DSA=y
CONFIG_NET_DSA_TAG_DSA=y
CONFIG_NET_DSA_TAG_EDSA=y
CONFIG_NET_DSA_TAG_TRAILER=y
CONFIG_NET_DSA_MV88E6XXX=y
CONFIG_NET_DSA_MV88E6060=y
CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y
CONFIG_NET_DSA_MV88E6131=y
CONFIG_NET_DSA_MV88E6123_61_65=y
CONFIG_VLAN_8021Q=m
CONFIG_VLAN_8021Q_GVRP=y
CONFIG_DECNET=m
# CONFIG_DECNET_ROUTER is not set
CONFIG_LLC=y
CONFIG_LLC2=m
CONFIG_IPX=m
# CONFIG_IPX_INTERN is not set
CONFIG_ATALK=m
CONFIG_DEV_APPLETALK=m
CONFIG_IPDDP=m
CONFIG_IPDDP_ENCAP=y
CONFIG_IPDDP_DECAP=y
CONFIG_X25=m
CONFIG_LAPB=m
CONFIG_ECONET=m
CONFIG_ECONET_AUNUDP=y
CONFIG_ECONET_NATIVE=y
CONFIG_WAN_ROUTER=m
CONFIG_PHONET=m
CONFIG_IEEE802154=m
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
CONFIG_NET_SCH_CBQ=m
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
CONFIG_NET_SCH_ATM=m
CONFIG_NET_SCH_PRIO=m
CONFIG_NET_SCH_MULTIQ=m
CONFIG_NET_SCH_RED=m
CONFIG_NET_SCH_SFQ=m
CONFIG_NET_SCH_TEQL=m
CONFIG_NET_SCH_TBF=m
CONFIG_NET_SCH_GRED=m
CONFIG_NET_SCH_DSMARK=m
CONFIG_NET_SCH_NETEM=m
CONFIG_NET_SCH_DRR=m
CONFIG_NET_SCH_INGRESS=m

#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
CONFIG_NET_CLS_TCINDEX=m
CONFIG_NET_CLS_ROUTE4=m
CONFIG_NET_CLS_ROUTE=y
CONFIG_NET_CLS_FW=m
CONFIG_NET_CLS_U32=m
# CONFIG_CLS_U32_PERF is not set
CONFIG_CLS_U32_MARK=y
CONFIG_NET_CLS_RSVP=m
CONFIG_NET_CLS_RSVP6=m
CONFIG_NET_CLS_FLOW=m
CONFIG_NET_CLS_CGROUP=y
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
CONFIG_NET_EMATCH_CMP=m
CONFIG_NET_EMATCH_NBYTE=m
CONFIG_NET_EMATCH_U32=m
CONFIG_NET_EMATCH_META=m
CONFIG_NET_EMATCH_TEXT=m
CONFIG_NET_CLS_ACT=y
CONFIG_NET_ACT_POLICE=m
CONFIG_NET_ACT_GACT=m
CONFIG_GACT_PROB=y
CONFIG_NET_ACT_MIRRED=m
CONFIG_NET_ACT_IPT=m
CONFIG_NET_ACT_NAT=m
CONFIG_NET_ACT_PEDIT=m
CONFIG_NET_ACT_SIMP=m
CONFIG_NET_ACT_SKBEDIT=m
# CONFIG_NET_CLS_IND is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y

#
# Network testing
#
CONFIG_NET_PKTGEN=m
CONFIG_NET_TCPPROBE=m
# CONFIG_NET_DROP_MONITOR is not set
CONFIG_HAMRADIO=y

#
# Packet Radio protocols
#
CONFIG_AX25=m
CONFIG_AX25_DAMA_SLAVE=y
CONFIG_NETROM=m
CONFIG_ROSE=m

#
# AX.25 network device drivers
#
CONFIG_MKISS=m
CONFIG_6PACK=m
CONFIG_BPQETHER=m
CONFIG_BAYCOM_SER_FDX=m
CONFIG_BAYCOM_SER_HDX=m
CONFIG_BAYCOM_PAR=m
CONFIG_YAM=m
CONFIG_CAN=m
CONFIG_CAN_RAW=m
CONFIG_CAN_BCM=m

#
# CAN Device Drivers
#
CONFIG_CAN_VCAN=m
CONFIG_CAN_DEV=m
# CONFIG_CAN_CALC_BITTIMING is not set
CONFIG_CAN_SJA1000=m
CONFIG_CAN_SJA1000_PLATFORM=m
CONFIG_CAN_EMS_PCI=m
CONFIG_CAN_KVASER_PCI=m

#
# CAN USB interfaces
#
CONFIG_CAN_EMS_USB=m
# CONFIG_CAN_DEBUG_DEVICES is not set
CONFIG_IRDA=m

#
# IrDA protocols
#
CONFIG_IRLAN=m
CONFIG_IRNET=m
CONFIG_IRCOMM=m
CONFIG_IRDA_ULTRA=y

#
# IrDA options
#
CONFIG_IRDA_CACHE_LAST_LSAP=y
CONFIG_IRDA_FAST_RR=y
CONFIG_IRDA_DEBUG=y

#
# Infrared-port device drivers
#

#
# SIR device drivers
#
CONFIG_IRTTY_SIR=m

#
# Dongle support
#
CONFIG_DONGLE=y
CONFIG_ESI_DONGLE=m
CONFIG_ACTISYS_DONGLE=m
CONFIG_TEKRAM_DONGLE=m
CONFIG_TOIM3232_DONGLE=m
CONFIG_LITELINK_DONGLE=m
CONFIG_MA600_DONGLE=m
CONFIG_GIRBIL_DONGLE=m
CONFIG_MCP2120_DONGLE=m
CONFIG_OLD_BELKIN_DONGLE=m
CONFIG_ACT200L_DONGLE=m
CONFIG_KINGSUN_DONGLE=m
CONFIG_KSDAZZLE_DONGLE=m
CONFIG_KS959_DONGLE=m

#
# FIR device drivers
#
CONFIG_USB_IRDA=m
CONFIG_SIGMATEL_FIR=m
CONFIG_NSC_FIR=m
CONFIG_WINBOND_FIR=m
CONFIG_SMC_IRCC_FIR=m
CONFIG_ALI_FIR=m
CONFIG_VLSI_FIR=m
CONFIG_VIA_FIR=m
CONFIG_MCS_FIR=m
CONFIG_BT=m
CONFIG_BT_L2CAP=m
CONFIG_BT_SCO=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_CMTP=m
CONFIG_BT_HIDP=m

#
# Bluetooth device drivers
#
CONFIG_BT_HCIBTUSB=m
CONFIG_BT_HCIBTSDIO=m
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIUART_LL=y
CONFIG_BT_HCIBCM203X=m
CONFIG_BT_HCIBPA10X=m
CONFIG_BT_HCIBFUSB=m
CONFIG_BT_HCIDTL1=m
CONFIG_BT_HCIBT3C=m
CONFIG_BT_HCIBLUECARD=m
CONFIG_BT_HCIBTUART=m
CONFIG_BT_HCIVHCI=m
CONFIG_BT_MRVL=m
CONFIG_BT_MRVL_SDIO=m
CONFIG_AF_RXRPC=m
# CONFIG_AF_RXRPC_DEBUG is not set
CONFIG_RXKAD=m
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=m
CONFIG_NL80211_TESTMODE=y
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
CONFIG_CFG80211_REG_DEBUG=y
CONFIG_CFG80211_DEFAULT_PS=y
CONFIG_CFG80211_DEFAULT_PS_VALUE=1
CONFIG_CFG80211_DEBUGFS=y
# CONFIG_WIRELESS_OLD_REGULATORY is not set
CONFIG_WIRELESS_EXT=y
CONFIG_WIRELESS_EXT_SYSFS=y
CONFIG_LIB80211=m
CONFIG_LIB80211_CRYPT_WEP=m
CONFIG_LIB80211_CRYPT_CCMP=m
CONFIG_LIB80211_CRYPT_TKIP=m
# CONFIG_LIB80211_DEBUG is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_RC_MINSTREL=y
# CONFIG_MAC80211_RC_DEFAULT_PID is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel"
CONFIG_MAC80211_MESH=y
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_WIMAX=m
CONFIG_WIMAX_DEBUG_LEVEL=8
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
CONFIG_NET_9P=m
CONFIG_NET_9P_VIRTIO=m
CONFIG_NET_9P_RDMA=m
# CONFIG_NET_9P_DEBUG is not set

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
CONFIG_SYS_HYPERVISOR=y
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
CONFIG_MTD=m
# CONFIG_MTD_DEBUG is not set
CONFIG_MTD_TESTS=m
CONFIG_MTD_CONCAT=m
CONFIG_MTD_PARTITIONS=y
CONFIG_MTD_REDBOOT_PARTS=m
CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1
# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set
# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set
CONFIG_MTD_AR7_PARTS=m

#
# User Modules And Translation Layers
#
CONFIG_MTD_CHAR=m
CONFIG_HAVE_MTD_OTP=y
CONFIG_MTD_BLKDEVS=m
CONFIG_MTD_BLOCK=m
CONFIG_MTD_BLOCK_RO=m
CONFIG_FTL=m
CONFIG_NFTL=m
CONFIG_NFTL_RW=y
CONFIG_INFTL=m
CONFIG_RFD_FTL=m
CONFIG_SSFDC=m
CONFIG_MTD_OOPS=m

#
# RAM/ROM/Flash chip drivers
#
CONFIG_MTD_CFI=m
CONFIG_MTD_JEDECPROBE=m
CONFIG_MTD_GEN_PROBE=m
# CONFIG_MTD_CFI_ADV_OPTIONS is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_CFI_I4 is not set
# CONFIG_MTD_CFI_I8 is not set
CONFIG_MTD_CFI_INTELEXT=m
CONFIG_MTD_CFI_AMDSTD=m
CONFIG_MTD_CFI_STAA=m
CONFIG_MTD_CFI_UTIL=m
CONFIG_MTD_RAM=m
CONFIG_MTD_ROM=m
CONFIG_MTD_ABSENT=m

#
# Mapping drivers for chip access
#
CONFIG_MTD_COMPLEX_MAPPINGS=y
CONFIG_MTD_PHYSMAP=m
# CONFIG_MTD_PHYSMAP_COMPAT is not set
CONFIG_MTD_SC520CDP=m
CONFIG_MTD_NETSC520=m
CONFIG_MTD_TS5500=m
CONFIG_MTD_SBC_GXX=m
CONFIG_MTD_AMD76XROM=m
CONFIG_MTD_ICHXROM=m
CONFIG_MTD_ESB2ROM=m
CONFIG_MTD_CK804XROM=m
CONFIG_MTD_SCB2_FLASH=m
CONFIG_MTD_NETtel=m
CONFIG_MTD_L440GX=m
CONFIG_MTD_PCI=m
CONFIG_MTD_GPIO_ADDR=m
CONFIG_MTD_INTEL_VR_NOR=m
CONFIG_MTD_PLATRAM=m

#
# Self-contained MTD device drivers
#
CONFIG_MTD_PMC551=m
# CONFIG_MTD_PMC551_BUGFIX is not set
# CONFIG_MTD_PMC551_DEBUG is not set
CONFIG_MTD_DATAFLASH=m
# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set
CONFIG_MTD_DATAFLASH_OTP=y
CONFIG_MTD_M25P80=m
CONFIG_M25PXX_USE_FAST_READ=y
CONFIG_MTD_SST25L=m
CONFIG_MTD_SLRAM=m
CONFIG_MTD_PHRAM=m
CONFIG_MTD_MTDRAM=m
CONFIG_MTDRAM_TOTAL_SIZE=4096
CONFIG_MTDRAM_ERASE_SIZE=128
CONFIG_MTD_BLOCK2MTD=m

#
# Disk-On-Chip Device Drivers
#
CONFIG_MTD_DOC2000=m
CONFIG_MTD_DOC2001=m
CONFIG_MTD_DOC2001PLUS=m
CONFIG_MTD_DOCPROBE=m
CONFIG_MTD_DOCECC=m
# CONFIG_MTD_DOCPROBE_ADVANCED is not set
CONFIG_MTD_DOCPROBE_ADDRESS=0
CONFIG_MTD_NAND=m
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
# CONFIG_MTD_NAND_ECC_SMC is not set
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
CONFIG_MTD_NAND_IDS=m
CONFIG_MTD_NAND_DISKONCHIP=m
# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set
CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0
# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set
CONFIG_MTD_NAND_CAFE=m
CONFIG_MTD_NAND_NANDSIM=m
CONFIG_MTD_NAND_PLATFORM=m
CONFIG_MTD_ALAUDA=m
CONFIG_MTD_ONENAND=m
CONFIG_MTD_ONENAND_VERIFY_WRITE=y
CONFIG_MTD_ONENAND_GENERIC=m
# CONFIG_MTD_ONENAND_OTP is not set
CONFIG_MTD_ONENAND_2X_PROGRAM=y
CONFIG_MTD_ONENAND_SIM=m

#
# LPDDR flash memory drivers
#
CONFIG_MTD_LPDDR=m
CONFIG_MTD_QINFO_PROBE=m

#
# UBI - Unsorted block images
#
CONFIG_MTD_UBI=m
CONFIG_MTD_UBI_WL_THRESHOLD=4096
CONFIG_MTD_UBI_BEB_RESERVE=1
CONFIG_MTD_UBI_GLUEBI=m

#
# UBI debugging options
#
# CONFIG_MTD_UBI_DEBUG is not set
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
CONFIG_PARPORT_PC_PCMCIA=m
# CONFIG_PARPORT_GSC is not set
CONFIG_PARPORT_AX88796=m
CONFIG_PARPORT_1284=y
CONFIG_PARPORT_NOT_PC=y
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_FD=m
CONFIG_PARIDE=m

#
# Parallel IDE high-level drivers
#
CONFIG_PARIDE_PD=m
CONFIG_PARIDE_PCD=m
CONFIG_PARIDE_PF=m
CONFIG_PARIDE_PT=m
CONFIG_PARIDE_PG=m

#
# Parallel IDE protocol modules
#
CONFIG_PARIDE_ATEN=m
CONFIG_PARIDE_BPCK=m
CONFIG_PARIDE_COMM=m
CONFIG_PARIDE_DSTR=m
CONFIG_PARIDE_FIT2=m
CONFIG_PARIDE_FIT3=m
CONFIG_PARIDE_EPAT=m
# CONFIG_PARIDE_EPATC8 is not set
CONFIG_PARIDE_EPIA=m
CONFIG_PARIDE_FRIQ=m
CONFIG_PARIDE_FRPW=m
CONFIG_PARIDE_KBIC=m
CONFIG_PARIDE_KTTI=m
CONFIG_PARIDE_ON20=m
CONFIG_PARIDE_ON26=m
CONFIG_BLK_CPQ_DA=m
CONFIG_BLK_CPQ_CISS_DA=m
CONFIG_CISS_SCSI_TAPE=y
CONFIG_BLK_DEV_DAC960=m
CONFIG_BLK_DEV_UMEM=m
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_CRYPTOLOOP=m
CONFIG_BLK_DEV_NBD=m
CONFIG_BLK_DEV_OSD=m
CONFIG_BLK_DEV_SX8=m
# CONFIG_BLK_DEV_UB is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=65536
# CONFIG_BLK_DEV_XIP is not set
CONFIG_CDROM_PKTCDVD=y
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
CONFIG_ATA_OVER_ETH=m
CONFIG_XEN_BLKDEV_FRONTEND=m
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
CONFIG_MISC_DEVICES=y
CONFIG_IBM_ASM=m
CONFIG_PHANTOM=m
CONFIG_SGI_IOC4=m
CONFIG_TIFM_CORE=m
CONFIG_TIFM_7XX1=m
CONFIG_ICS932S401=m
CONFIG_ENCLOSURE_SERVICES=m
CONFIG_HP_ILO=m
CONFIG_DELL_LAPTOP=m
CONFIG_ISL29003=m
CONFIG_C2PORT=m
CONFIG_C2PORT_DURAMAR_2150=m

#
# EEPROM support
#
CONFIG_EEPROM_AT24=m
CONFIG_EEPROM_AT25=m
CONFIG_EEPROM_LEGACY=m
CONFIG_EEPROM_MAX6875=m
CONFIG_EEPROM_93CX6=m
CONFIG_CB710_CORE=m
# CONFIG_CB710_DEBUG is not set
CONFIG_CB710_DEBUG_ASSUMPTIONS=y
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_RAID_ATTRS=m
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
CONFIG_SCSI_TGT=m
CONFIG_SCSI_NETLINK=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
CONFIG_CHR_DEV_ST=m
CONFIG_CHR_DEV_OSST=m
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
CONFIG_CHR_DEV_SCH=m
CONFIG_SCSI_ENCLOSURE=m
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y
CONFIG_SCSI_WAIT_SCAN=m

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
CONFIG_SCSI_FC_ATTRS=m
CONFIG_SCSI_FC_TGT_ATTRS=y
CONFIG_SCSI_ISCSI_ATTRS=m
CONFIG_SCSI_SAS_ATTRS=m
CONFIG_SCSI_SAS_LIBSAS=m
CONFIG_SCSI_SAS_ATA=y
CONFIG_SCSI_SAS_HOST_SMP=y
# CONFIG_SCSI_SAS_LIBSAS_DEBUG is not set
CONFIG_SCSI_SRP_ATTRS=m
CONFIG_SCSI_SRP_TGT_ATTRS=y
CONFIG_SCSI_LOWLEVEL=y
CONFIG_ISCSI_TCP=m
CONFIG_SCSI_CXGB3_ISCSI=m
CONFIG_SCSI_BNX2_ISCSI=m
CONFIG_BE2ISCSI=m
CONFIG_BLK_DEV_3W_XXXX_RAID=m
CONFIG_SCSI_3W_9XXX=m
CONFIG_SCSI_ACARD=m
CONFIG_SCSI_AACRAID=m
CONFIG_SCSI_AIC7XXX=m
CONFIG_AIC7XXX_CMDS_PER_DEVICE=8
CONFIG_AIC7XXX_RESET_DELAY_MS=15000
CONFIG_AIC7XXX_DEBUG_ENABLE=y
CONFIG_AIC7XXX_DEBUG_MASK=0
CONFIG_AIC7XXX_REG_PRETTY_PRINT=y
# CONFIG_SCSI_AIC7XXX_OLD is not set
CONFIG_SCSI_AIC79XX=m
CONFIG_AIC79XX_CMDS_PER_DEVICE=32
CONFIG_AIC79XX_RESET_DELAY_MS=5000
CONFIG_AIC79XX_DEBUG_ENABLE=y
CONFIG_AIC79XX_DEBUG_MASK=0
CONFIG_AIC79XX_REG_PRETTY_PRINT=y
CONFIG_SCSI_AIC94XX=m
# CONFIG_AIC94XX_DEBUG is not set
CONFIG_SCSI_MVSAS=m
CONFIG_SCSI_MVSAS_DEBUG=y
CONFIG_SCSI_DPT_I2O=m
CONFIG_SCSI_ADVANSYS=m
CONFIG_SCSI_ARCMSR=m
CONFIG_SCSI_ARCMSR_AER=y
CONFIG_MEGARAID_NEWGEN=y
CONFIG_MEGARAID_MM=m
CONFIG_MEGARAID_MAILBOX=m
CONFIG_MEGARAID_LEGACY=m
CONFIG_MEGARAID_SAS=m
CONFIG_SCSI_MPT2SAS=m
CONFIG_SCSI_MPT2SAS_MAX_SGE=128
# CONFIG_SCSI_MPT2SAS_LOGGING is not set
CONFIG_SCSI_HPTIOP=m
CONFIG_SCSI_BUSLOGIC=m
CONFIG_LIBFC=m
CONFIG_LIBFCOE=m
CONFIG_FCOE=m
CONFIG_FCOE_FNIC=m
CONFIG_SCSI_DMX3191D=m
CONFIG_SCSI_EATA=m
CONFIG_SCSI_EATA_TAGGED_QUEUE=y
CONFIG_SCSI_EATA_LINKED_COMMANDS=y
CONFIG_SCSI_EATA_MAX_TAGS=16
CONFIG_SCSI_FUTURE_DOMAIN=m
CONFIG_SCSI_GDTH=m
CONFIG_SCSI_IPS=m
CONFIG_SCSI_INITIO=m
CONFIG_SCSI_INIA100=m
CONFIG_SCSI_PPA=m
CONFIG_SCSI_IMM=m
# CONFIG_SCSI_IZIP_EPP16 is not set
# CONFIG_SCSI_IZIP_SLOW_CTR is not set
CONFIG_SCSI_STEX=m
CONFIG_SCSI_SYM53C8XX_2=y
CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1
CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16
CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64
CONFIG_SCSI_SYM53C8XX_MMIO=y
CONFIG_SCSI_IPR=m
# CONFIG_SCSI_IPR_TRACE is not set
# CONFIG_SCSI_IPR_DUMP is not set
CONFIG_SCSI_QLOGIC_1280=m
CONFIG_SCSI_QLA_FC=m
CONFIG_SCSI_QLA_ISCSI=m
CONFIG_SCSI_LPFC=m
CONFIG_SCSI_LPFC_DEBUG_FS=y
CONFIG_SCSI_DC395x=m
CONFIG_SCSI_DC390T=m
CONFIG_SCSI_DEBUG=m
CONFIG_SCSI_PMCRAID=m
CONFIG_SCSI_SRP=m
CONFIG_SCSI_BFA_FC=m
CONFIG_SCSI_LOWLEVEL_PCMCIA=y
CONFIG_PCMCIA_FDOMAIN=m
CONFIG_PCMCIA_QLOGIC=m
CONFIG_PCMCIA_SYM53C500=m
CONFIG_SCSI_DH=y
CONFIG_SCSI_DH_RDAC=m
CONFIG_SCSI_DH_HP_SW=m
CONFIG_SCSI_DH_EMC=m
CONFIG_SCSI_DH_ALUA=m
CONFIG_SCSI_OSD_INITIATOR=m
CONFIG_SCSI_OSD_ULD=m
CONFIG_SCSI_OSD_DPRINT_SENSE=1
# CONFIG_SCSI_OSD_DEBUG is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
CONFIG_SATA_PMP=y
CONFIG_SATA_AHCI=m
CONFIG_SATA_SIL24=m
CONFIG_ATA_SFF=y
CONFIG_SATA_SVW=m
CONFIG_ATA_PIIX=y
CONFIG_SATA_MV=m
CONFIG_SATA_NV=m
CONFIG_PDC_ADMA=y
CONFIG_SATA_QSTOR=m
CONFIG_SATA_PROMISE=m
CONFIG_SATA_SX4=m
CONFIG_SATA_SIL=m
CONFIG_SATA_SIS=m
CONFIG_SATA_ULI=m
CONFIG_SATA_VIA=m
CONFIG_SATA_VITESSE=m
CONFIG_SATA_INIC162X=m
CONFIG_PATA_ACPI=y
CONFIG_PATA_ALI=m
CONFIG_PATA_AMD=m
CONFIG_PATA_ARTOP=m
CONFIG_PATA_ATP867X=m
CONFIG_PATA_ATIIXP=m
CONFIG_PATA_CMD640_PCI=m
CONFIG_PATA_CMD64X=m
CONFIG_PATA_CS5520=m
CONFIG_PATA_CS5530=m
CONFIG_PATA_CYPRESS=m
CONFIG_PATA_EFAR=m
CONFIG_ATA_GENERIC=y
CONFIG_PATA_HPT366=m
CONFIG_PATA_HPT37X=m
CONFIG_PATA_HPT3X2N=m
CONFIG_PATA_HPT3X3=m
# CONFIG_PATA_HPT3X3_DMA is not set
CONFIG_PATA_IT821X=m
CONFIG_PATA_IT8213=m
CONFIG_PATA_JMICRON=m
CONFIG_PATA_TRIFLEX=m
CONFIG_PATA_MARVELL=m
CONFIG_PATA_MPIIX=m
CONFIG_PATA_OLDPIIX=m
CONFIG_PATA_NETCELL=m
CONFIG_PATA_NINJA32=m
CONFIG_PATA_NS87410=m
CONFIG_PATA_NS87415=m
CONFIG_PATA_OPTI=m
CONFIG_PATA_OPTIDMA=m
CONFIG_PATA_PCMCIA=m
CONFIG_PATA_PDC_OLD=m
CONFIG_PATA_RADISYS=m
CONFIG_PATA_RDC=m
CONFIG_PATA_RZ1000=m
CONFIG_PATA_SC1200=m
CONFIG_PATA_SERVERWORKS=m
CONFIG_PATA_PDC2027X=m
CONFIG_PATA_SIL680=m
CONFIG_PATA_SIS=y
CONFIG_PATA_VIA=m
CONFIG_PATA_WINBOND=m
CONFIG_PATA_SCH=m
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID10=m
CONFIG_MD_RAID456=m
# CONFIG_MULTICORE_RAID456 is not set
CONFIG_MD_RAID6_PQ=m
CONFIG_ASYNC_RAID6_TEST=m
CONFIG_MD_MULTIPATH=m
CONFIG_MD_FAULTY=m
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
CONFIG_DM_CRYPT=m
CONFIG_DM_SNAPSHOT=y
CONFIG_DM_MIRROR=y
# CONFIG_DM_LOG_USERSPACE is not set
CONFIG_DM_ZERO=m
CONFIG_DM_MULTIPATH=y
CONFIG_DM_MULTIPATH_QL=m
CONFIG_DM_MULTIPATH_ST=m
# CONFIG_DM_DELAY is not set
CONFIG_DM_UEVENT=y
CONFIG_FUSION=y
CONFIG_FUSION_SPI=m
CONFIG_FUSION_FC=m
CONFIG_FUSION_SAS=m
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_CTL=m
CONFIG_FUSION_LAN=m
CONFIG_FUSION_LOGGING=y

#
# IEEE 1394 (FireWire) support
#

#
# You can enable one or both FireWire driver stacks.
#

#
# See the help texts for more information.
#
CONFIG_FIREWIRE=m
CONFIG_FIREWIRE_OHCI=m
CONFIG_FIREWIRE_OHCI_DEBUG=y
CONFIG_FIREWIRE_SBP2=m
CONFIG_FIREWIRE_NET=m
CONFIG_IEEE1394=m
CONFIG_IEEE1394_OHCI1394=m
CONFIG_IEEE1394_PCILYNX=m
CONFIG_IEEE1394_SBP2=m
# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set
CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y
CONFIG_IEEE1394_ETH1394=m
CONFIG_IEEE1394_RAWIO=m
CONFIG_IEEE1394_VIDEO1394=m
CONFIG_IEEE1394_DV1394=m
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
CONFIG_I2O=m
CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y
CONFIG_I2O_EXT_ADAPTEC=y
CONFIG_I2O_EXT_ADAPTEC_DMA64=y
CONFIG_I2O_CONFIG=m
CONFIG_I2O_CONFIG_OLD_IOCTL=y
CONFIG_I2O_BUS=m
CONFIG_I2O_BLOCK=m
CONFIG_I2O_SCSI=m
CONFIG_I2O_PROC=m
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_IFB=m
CONFIG_DUMMY=m
CONFIG_BONDING=m
CONFIG_MACVLAN=m
CONFIG_EQUALIZER=m
CONFIG_TUN=y
CONFIG_VETH=m
CONFIG_NET_SB1000=m
CONFIG_ARCNET=m
CONFIG_ARCNET_1201=m
CONFIG_ARCNET_1051=m
CONFIG_ARCNET_RAW=m
CONFIG_ARCNET_CAP=m
CONFIG_ARCNET_COM90xx=m
CONFIG_ARCNET_COM90xxIO=m
CONFIG_ARCNET_RIM_I=m
CONFIG_ARCNET_COM20020=m
CONFIG_ARCNET_COM20020_PCI=m
CONFIG_PHYLIB=y

#
# MII PHY device drivers
#
CONFIG_MARVELL_PHY=y
CONFIG_DAVICOM_PHY=y
CONFIG_QSEMI_PHY=y
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
CONFIG_SMSC_PHY=y
CONFIG_BROADCOM_PHY=y
CONFIG_ICPLUS_PHY=y
CONFIG_REALTEK_PHY=y
CONFIG_NATIONAL_PHY=y
CONFIG_STE10XP=y
CONFIG_LSI_ET1011C_PHY=y
CONFIG_FIXED_PHY=y
CONFIG_MDIO_BITBANG=y
CONFIG_MDIO_GPIO=y
CONFIG_NET_ETHERNET=y
CONFIG_MII=m
CONFIG_HAPPYMEAL=m
CONFIG_SUNGEM=m
CONFIG_CASSINI=m
CONFIG_NET_VENDOR_3COM=y
CONFIG_VORTEX=m
CONFIG_TYPHOON=m
# CONFIG_ENC28J60 is not set
CONFIG_ETHOC=m
CONFIG_DNET=m
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_DE2104X_DSL=0
CONFIG_TULIP=m
# CONFIG_TULIP_MWI is not set
# CONFIG_TULIP_MMIO is not set
# CONFIG_TULIP_NAPI is not set
CONFIG_DE4X5=m
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
CONFIG_ULI526X=m
CONFIG_PCMCIA_XIRCOM=m
CONFIG_HP100=m
# CONFIG_IBM_NEW_EMAC_ZMII is not set
# CONFIG_IBM_NEW_EMAC_RGMII is not set
# CONFIG_IBM_NEW_EMAC_TAH is not set
# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
# CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
CONFIG_NET_PCI=y
CONFIG_PCNET32=m
CONFIG_AMD8111_ETH=m
CONFIG_ADAPTEC_STARFIRE=m
CONFIG_B44=m
CONFIG_B44_PCI_AUTOSELECT=y
CONFIG_B44_PCICORE_AUTOSELECT=y
CONFIG_B44_PCI=y
CONFIG_FORCEDETH=m
# CONFIG_FORCEDETH_NAPI is not set
CONFIG_E100=m
CONFIG_FEALNX=m
CONFIG_NATSEMI=m
CONFIG_NE2K_PCI=m
CONFIG_8139CP=m
CONFIG_8139TOO=m
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_R6040 is not set
CONFIG_SIS900=m
CONFIG_EPIC100=m
CONFIG_SMSC9420=m
CONFIG_SUNDANCE=m
# CONFIG_SUNDANCE_MMIO is not set
CONFIG_TLAN=m
CONFIG_KS8842=m
CONFIG_KS8851=m
CONFIG_KS8851_MLL=m
CONFIG_VIA_RHINE=m
CONFIG_VIA_RHINE_MMIO=y
CONFIG_SC92031=m
CONFIG_NET_POCKET=y
CONFIG_ATP=m
CONFIG_DE600=m
CONFIG_DE620=m
CONFIG_ATL2=m
CONFIG_NETDEV_1000=y
CONFIG_ACENIC=m
# CONFIG_ACENIC_OMIT_TIGON_I is not set
# CONFIG_DL2K is not set
CONFIG_E1000=m
CONFIG_E1000E=m
CONFIG_IP1000=m
CONFIG_IGB=m
CONFIG_IGB_DCA=y
CONFIG_IGBVF=m
CONFIG_NS83820=m
CONFIG_HAMACHI=m
CONFIG_YELLOWFIN=m
CONFIG_R8169=m
CONFIG_R8169_VLAN=y
CONFIG_SIS190=m
CONFIG_SKGE=m
# CONFIG_SKGE_DEBUG is not set
CONFIG_SKY2=m
# CONFIG_SKY2_DEBUG is not set
CONFIG_VIA_VELOCITY=m
CONFIG_TIGON3=m
CONFIG_BNX2=m
CONFIG_CNIC=m
CONFIG_QLA3XXX=m
CONFIG_ATL1=m
CONFIG_ATL1E=m
CONFIG_ATL1C=m
CONFIG_JME=m
CONFIG_NETDEV_10000=y
CONFIG_MDIO=m
CONFIG_CHELSIO_T1=m
CONFIG_CHELSIO_T1_1G=y
CONFIG_CHELSIO_T3_DEPENDS=y
CONFIG_CHELSIO_T3=m
CONFIG_ENIC=m
CONFIG_IXGBE=m
CONFIG_IXGBE_DCA=y
CONFIG_IXGBE_DCB=y
CONFIG_IXGB=m
CONFIG_S2IO=m
CONFIG_VXGE=m
# CONFIG_VXGE_DEBUG_TRACE_ALL is not set
CONFIG_MYRI10GE=m
CONFIG_MYRI10GE_DCA=y
CONFIG_NETXEN_NIC=m
CONFIG_NIU=m
CONFIG_MLX4_EN=m
CONFIG_MLX4_CORE=m
CONFIG_MLX4_DEBUG=y
CONFIG_TEHUTI=m
CONFIG_BNX2X=m
CONFIG_QLGE=m
CONFIG_SFC=m
CONFIG_SFC_MTD=y
CONFIG_BE2NET=m
CONFIG_TR=y
CONFIG_IBMOL=m
CONFIG_3C359=m
CONFIG_TMS380TR=m
CONFIG_TMSPCI=m
CONFIG_ABYSS=m
CONFIG_WLAN=y
CONFIG_WLAN_PRE80211=y
CONFIG_STRIP=m
CONFIG_PCMCIA_WAVELAN=m
CONFIG_PCMCIA_NETWAVE=m
CONFIG_WLAN_80211=y
CONFIG_PCMCIA_RAYCS=m
CONFIG_LIBERTAS=m
CONFIG_LIBERTAS_USB=m
CONFIG_LIBERTAS_CS=m
CONFIG_LIBERTAS_SDIO=m
CONFIG_LIBERTAS_SPI=m
# CONFIG_LIBERTAS_DEBUG is not set
CONFIG_LIBERTAS_THINFIRM=m
CONFIG_LIBERTAS_THINFIRM_USB=m
CONFIG_AIRO=m
CONFIG_ATMEL=m
CONFIG_PCI_ATMEL=m
CONFIG_PCMCIA_ATMEL=m
CONFIG_AT76C50X_USB=m
CONFIG_AIRO_CS=m
CONFIG_PCMCIA_WL3501=m
CONFIG_PRISM54=m
CONFIG_USB_ZD1201=m
CONFIG_USB_NET_RNDIS_WLAN=m
CONFIG_RTL8180=m
CONFIG_RTL8187=m
CONFIG_RTL8187_LEDS=y
CONFIG_ADM8211=m
CONFIG_MAC80211_HWSIM=m
CONFIG_MWL8K=m
CONFIG_P54_COMMON=m
CONFIG_P54_USB=m
CONFIG_P54_PCI=m
CONFIG_P54_SPI=m
CONFIG_P54_LEDS=y
CONFIG_ATH_COMMON=m
CONFIG_ATH5K=m
# CONFIG_ATH5K_DEBUG is not set
CONFIG_ATH9K=m
CONFIG_ATH9K_DEBUG=y
CONFIG_AR9170_USB=m
CONFIG_AR9170_LEDS=y
CONFIG_IPW2100=m
CONFIG_IPW2100_MONITOR=y
# CONFIG_IPW2100_DEBUG is not set
CONFIG_IPW2200=m
CONFIG_IPW2200_MONITOR=y
CONFIG_IPW2200_RADIOTAP=y
CONFIG_IPW2200_PROMISCUOUS=y
CONFIG_IPW2200_QOS=y
# CONFIG_IPW2200_DEBUG is not set
CONFIG_LIBIPW=m
CONFIG_LIBIPW_DEBUG=y
CONFIG_IWLWIFI=m
CONFIG_IWLWIFI_LEDS=y
# CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT is not set
# CONFIG_IWLWIFI_DEBUG is not set
CONFIG_IWLAGN=m
CONFIG_IWL4965=y
CONFIG_IWL5000=y
CONFIG_IWL3945=m
CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y
CONFIG_HOSTAP=m
CONFIG_HOSTAP_FIRMWARE=y
CONFIG_HOSTAP_FIRMWARE_NVRAM=y
CONFIG_HOSTAP_PLX=m
CONFIG_HOSTAP_PCI=m
CONFIG_HOSTAP_CS=m
CONFIG_B43=m
CONFIG_B43_PCI_AUTOSELECT=y
CONFIG_B43_PCICORE_AUTOSELECT=y
# CONFIG_B43_PCMCIA is not set
# CONFIG_B43_SDIO is not set
CONFIG_B43_PHY_LP=y
CONFIG_B43_LEDS=y
CONFIG_B43_HWRNG=y
# CONFIG_B43_DEBUG is not set
CONFIG_B43LEGACY=m
CONFIG_B43LEGACY_PCI_AUTOSELECT=y
CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y
CONFIG_B43LEGACY_LEDS=y
CONFIG_B43LEGACY_HWRNG=y
CONFIG_B43LEGACY_DEBUG=y
CONFIG_B43LEGACY_DMA=y
CONFIG_B43LEGACY_PIO=y
CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y
# CONFIG_B43LEGACY_DMA_MODE is not set
# CONFIG_B43LEGACY_PIO_MODE is not set
CONFIG_ZD1211RW=m
# CONFIG_ZD1211RW_DEBUG is not set
CONFIG_RT2X00=m
CONFIG_RT2400PCI=m
CONFIG_RT2500PCI=m
CONFIG_RT61PCI=m
CONFIG_RT2500USB=m
CONFIG_RT73USB=m
CONFIG_RT2800USB=m
CONFIG_RT2X00_LIB_PCI=m
CONFIG_RT2X00_LIB_USB=m
CONFIG_RT2X00_LIB=m
CONFIG_RT2X00_LIB_HT=y
CONFIG_RT2X00_LIB_FIRMWARE=y
CONFIG_RT2X00_LIB_CRYPTO=y
CONFIG_RT2X00_LIB_LEDS=y
# CONFIG_RT2X00_LIB_DEBUGFS is not set
# CONFIG_RT2X00_DEBUG is not set
CONFIG_HERMES=m
CONFIG_HERMES_CACHE_FW_ON_INIT=y
CONFIG_PLX_HERMES=m
CONFIG_TMD_HERMES=m
CONFIG_NORTEL_HERMES=m
CONFIG_PCI_HERMES=m
CONFIG_PCMCIA_HERMES=m
CONFIG_PCMCIA_SPECTRUM=m
CONFIG_WL12XX=m
CONFIG_WL1251=m
CONFIG_WL1251_SPI=m
CONFIG_WL1251_SDIO=m
CONFIG_WL1271=m
CONFIG_IWM=m
# CONFIG_IWM_DEBUG is not set

#
# WiMAX Wireless Broadband devices
#
CONFIG_WIMAX_I2400M=m
CONFIG_WIMAX_I2400M_USB=m
CONFIG_WIMAX_I2400M_SDIO=m
CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8

#
# USB Network Adapters
#
CONFIG_USB_CATC=m
CONFIG_USB_KAWETH=m
CONFIG_USB_PEGASUS=m
CONFIG_USB_RTL8150=m
CONFIG_USB_USBNET=m
CONFIG_USB_NET_AX8817X=m
CONFIG_USB_NET_CDCETHER=m
CONFIG_USB_NET_CDC_EEM=m
CONFIG_USB_NET_DM9601=m
CONFIG_USB_NET_SMSC95XX=m
CONFIG_USB_NET_GL620A=m
CONFIG_USB_NET_NET1080=m
CONFIG_USB_NET_PLUSB=m
CONFIG_USB_NET_MCS7830=m
CONFIG_USB_NET_RNDIS_HOST=m
CONFIG_USB_NET_CDC_SUBSET=m
CONFIG_USB_ALI_M5632=y
CONFIG_USB_AN2720=y
CONFIG_USB_BELKIN=y
CONFIG_USB_ARMLINUX=y
CONFIG_USB_EPSON2888=y
CONFIG_USB_KC2190=y
CONFIG_USB_NET_ZAURUS=m
CONFIG_USB_HSO=m
CONFIG_USB_NET_INT51X1=m
CONFIG_USB_CDC_PHONET=m
CONFIG_NET_PCMCIA=y
CONFIG_PCMCIA_3C589=m
CONFIG_PCMCIA_3C574=m
CONFIG_PCMCIA_FMVJ18X=m
CONFIG_PCMCIA_PCNET=m
CONFIG_PCMCIA_NMCLAN=m
CONFIG_PCMCIA_SMC91C92=m
CONFIG_PCMCIA_XIRC2PS=m
CONFIG_PCMCIA_AXNET=m
CONFIG_ARCNET_COM20020_CS=m
CONFIG_PCMCIA_IBMTR=m
CONFIG_WAN=y
CONFIG_LANMEDIA=m
CONFIG_HDLC=m
CONFIG_HDLC_RAW=m
CONFIG_HDLC_RAW_ETH=m
CONFIG_HDLC_CISCO=m
CONFIG_HDLC_FR=m
CONFIG_HDLC_PPP=m
CONFIG_HDLC_X25=m
CONFIG_PCI200SYN=m
CONFIG_WANXL=m
# CONFIG_PC300TOO is not set
CONFIG_FARSYNC=m
CONFIG_DSCC4=m
CONFIG_DSCC4_PCISYNC=y
CONFIG_DSCC4_PCI_RST=y
CONFIG_DLCI=m
CONFIG_DLCI_MAX=8
CONFIG_WAN_ROUTER_DRIVERS=m
CONFIG_CYCLADES_SYNC=m
CONFIG_CYCLOMX_X25=y
CONFIG_LAPBETHER=m
CONFIG_X25_ASY=m
CONFIG_SBNI=m
# CONFIG_SBNI_MULTILINE is not set
CONFIG_ATM_DRIVERS=y
# CONFIG_ATM_DUMMY is not set
CONFIG_ATM_TCP=m
CONFIG_ATM_LANAI=m
CONFIG_ATM_ENI=m
# CONFIG_ATM_ENI_DEBUG is not set
# CONFIG_ATM_ENI_TUNE_BURST is not set
CONFIG_ATM_FIRESTREAM=m
CONFIG_ATM_ZATM=m
# CONFIG_ATM_ZATM_DEBUG is not set
CONFIG_ATM_IDT77252=m
# CONFIG_ATM_IDT77252_DEBUG is not set
# CONFIG_ATM_IDT77252_RCV_ALL is not set
CONFIG_ATM_IDT77252_USE_SUNI=y
CONFIG_ATM_AMBASSADOR=m
# CONFIG_ATM_AMBASSADOR_DEBUG is not set
CONFIG_ATM_HORIZON=m
# CONFIG_ATM_HORIZON_DEBUG is not set
CONFIG_ATM_IA=m
# CONFIG_ATM_IA_DEBUG is not set
CONFIG_ATM_FORE200E=m
# CONFIG_ATM_FORE200E_USE_TASKLET is not set
CONFIG_ATM_FORE200E_TX_RETRY=16
CONFIG_ATM_FORE200E_DEBUG=0
CONFIG_ATM_HE=m
CONFIG_ATM_HE_USE_SUNI=y
CONFIG_ATM_SOLOS=m
CONFIG_IEEE802154_DRIVERS=m
# CONFIG_IEEE802154_FAKEHARD is not set
CONFIG_XEN_NETDEV_FRONTEND=m
CONFIG_FDDI=y
CONFIG_DEFXX=m
# CONFIG_DEFXX_MMIO is not set
CONFIG_SKFP=m
CONFIG_HIPPI=y
CONFIG_ROADRUNNER=m
# CONFIG_ROADRUNNER_LARGE_RINGS is not set
CONFIG_PLIP=m
CONFIG_PPP=y
CONFIG_PPP_MULTILINK=y
CONFIG_PPP_FILTER=y
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_BSDCOMP=m
CONFIG_PPP_MPPE=m
CONFIG_PPPOE=m
CONFIG_PPPOATM=m
CONFIG_PPPOL2TP=m
CONFIG_SLIP=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLHC=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
CONFIG_NET_FC=y
CONFIG_NETCONSOLE=m
CONFIG_NETCONSOLE_DYNAMIC=y
CONFIG_NETPOLL=y
# CONFIG_NETPOLL_TRAP is not set
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_VIRTIO_NET=y
CONFIG_VMXNET3=m
CONFIG_ISDN=y
CONFIG_ISDN_I4L=m
CONFIG_MISDN=m
CONFIG_MISDN_DSP=m
CONFIG_MISDN_L1OIP=m

#
# mISDN hardware drivers
#
CONFIG_MISDN_HFCPCI=m
CONFIG_MISDN_HFCMULTI=m
CONFIG_MISDN_HFCUSB=m
CONFIG_MISDN_AVMFRITZ=m
CONFIG_MISDN_SPEEDFAX=m
CONFIG_MISDN_INFINEON=m
CONFIG_MISDN_W6692=m
CONFIG_MISDN_NETJET=m
CONFIG_MISDN_IPAC=m
CONFIG_MISDN_ISAR=m
CONFIG_ISDN_PPP=y
CONFIG_ISDN_PPP_VJ=y
CONFIG_ISDN_MPP=y
CONFIG_IPPP_FILTER=y
CONFIG_ISDN_PPP_BSDCOMP=m
CONFIG_ISDN_AUDIO=y
CONFIG_ISDN_TTY_FAX=y
CONFIG_ISDN_X25=y

#
# ISDN feature submodules
#
CONFIG_ISDN_DIVERSION=m

#
# ISDN4Linux hardware drivers
#

#
# Passive cards
#
CONFIG_ISDN_DRV_HISAX=m

#
# D-channel protocol features
#
CONFIG_HISAX_EURO=y
CONFIG_DE_AOC=y
# CONFIG_HISAX_NO_SENDCOMPLETE is not set
# CONFIG_HISAX_NO_LLC is not set
# CONFIG_HISAX_NO_KEYPAD is not set
CONFIG_HISAX_1TR6=y
CONFIG_HISAX_NI1=y
CONFIG_HISAX_MAX_CARDS=8

#
# HiSax supported cards
#
CONFIG_HISAX_16_3=y
CONFIG_HISAX_TELESPCI=y
CONFIG_HISAX_S0BOX=y
CONFIG_HISAX_FRITZPCI=y
CONFIG_HISAX_AVM_A1_PCMCIA=y
CONFIG_HISAX_ELSA=y
CONFIG_HISAX_DIEHLDIVA=y
CONFIG_HISAX_SEDLBAUER=y
CONFIG_HISAX_NETJET=y
CONFIG_HISAX_NETJET_U=y
CONFIG_HISAX_NICCY=y
CONFIG_HISAX_BKM_A4T=y
CONFIG_HISAX_SCT_QUADRO=y
CONFIG_HISAX_GAZEL=y
CONFIG_HISAX_HFC_PCI=y
CONFIG_HISAX_W6692=y
CONFIG_HISAX_HFC_SX=y
CONFIG_HISAX_ENTERNOW_PCI=y
# CONFIG_HISAX_DEBUG is not set

#
# HiSax PCMCIA card service modules
#
CONFIG_HISAX_SEDLBAUER_CS=m
CONFIG_HISAX_ELSA_CS=m
CONFIG_HISAX_AVM_A1_CS=m
CONFIG_HISAX_TELES_CS=m

#
# HiSax sub driver modules
#
CONFIG_HISAX_ST5481=m
CONFIG_HISAX_HFCUSB=m
CONFIG_HISAX_HFC4S8S=m
CONFIG_HISAX_FRITZ_PCIPNP=m

#
# Active cards
#
CONFIG_HYSDN=m
CONFIG_HYSDN_CAPI=y
CONFIG_ISDN_HDLC=m
CONFIG_ISDN_CAPI=m
CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y
CONFIG_CAPI_TRACE=y
CONFIG_ISDN_CAPI_MIDDLEWARE=y
CONFIG_ISDN_CAPI_CAPI20=m
CONFIG_ISDN_CAPI_CAPIFS_BOOL=y
CONFIG_ISDN_CAPI_CAPIFS=m
CONFIG_ISDN_CAPI_CAPIDRV=m

#
# CAPI hardware drivers
#
CONFIG_CAPI_AVM=y
CONFIG_ISDN_DRV_AVMB1_B1PCI=m
CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y
CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m
CONFIG_ISDN_DRV_AVMB1_AVM_CS=m
CONFIG_ISDN_DRV_AVMB1_T1PCI=m
CONFIG_ISDN_DRV_AVMB1_C4=m
CONFIG_CAPI_EICON=y
CONFIG_ISDN_DIVAS=m
CONFIG_ISDN_DIVAS_BRIPCI=y
CONFIG_ISDN_DIVAS_PRIPCI=y
CONFIG_ISDN_DIVAS_DIVACAPI=m
CONFIG_ISDN_DIVAS_USERIDI=m
CONFIG_ISDN_DIVAS_MAINT=m
CONFIG_ISDN_DRV_GIGASET=m
CONFIG_GIGASET_BASE=m
CONFIG_GIGASET_M105=m
CONFIG_GIGASET_M101=m
# CONFIG_GIGASET_DEBUG is not set
CONFIG_PHONE=m
CONFIG_PHONE_IXJ=m
CONFIG_PHONE_IXJ_PCMCIA=m

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_FF_MEMLESS=m
CONFIG_INPUT_POLLDEV=m

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
CONFIG_INPUT_EVBUG=m
CONFIG_XEN_KBDDEV_FRONTEND=m

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ADP5588=m
CONFIG_KEYBOARD_ATKBD=y
CONFIG_QT2160=m
CONFIG_KEYBOARD_LKKBD=m
CONFIG_KEYBOARD_GPIO=m
CONFIG_KEYBOARD_MATRIX=m
CONFIG_KEYBOARD_LM8323=m
CONFIG_KEYBOARD_MAX7359=m
CONFIG_KEYBOARD_NEWTON=m
CONFIG_KEYBOARD_OPENCORES=m
CONFIG_KEYBOARD_STOWAWAY=m
CONFIG_KEYBOARD_SUNKBD=m
CONFIG_KEYBOARD_TWL4030=m
CONFIG_KEYBOARD_XTKBD=m
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_MOUSE_PS2_ELANTECH=y
CONFIG_MOUSE_PS2_SENTELIC=y
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_SERIAL=m
CONFIG_MOUSE_APPLETOUCH=m
CONFIG_MOUSE_BCM5974=m
CONFIG_MOUSE_VSXXXAA=m
CONFIG_MOUSE_GPIO=m
CONFIG_MOUSE_SYNAPTICS_I2C=m
CONFIG_INPUT_JOYSTICK=y
CONFIG_JOYSTICK_ANALOG=m
CONFIG_JOYSTICK_A3D=m
CONFIG_JOYSTICK_ADI=m
CONFIG_JOYSTICK_COBRA=m
CONFIG_JOYSTICK_GF2K=m
CONFIG_JOYSTICK_GRIP=m
CONFIG_JOYSTICK_GRIP_MP=m
CONFIG_JOYSTICK_GUILLEMOT=m
CONFIG_JOYSTICK_INTERACT=m
CONFIG_JOYSTICK_SIDEWINDER=m
CONFIG_JOYSTICK_TMDC=m
CONFIG_JOYSTICK_IFORCE=m
CONFIG_JOYSTICK_IFORCE_USB=y
CONFIG_JOYSTICK_IFORCE_232=y
CONFIG_JOYSTICK_WARRIOR=m
CONFIG_JOYSTICK_MAGELLAN=m
CONFIG_JOYSTICK_SPACEORB=m
CONFIG_JOYSTICK_SPACEBALL=m
CONFIG_JOYSTICK_STINGER=m
CONFIG_JOYSTICK_TWIDJOY=m
CONFIG_JOYSTICK_ZHENHUA=m
CONFIG_JOYSTICK_DB9=m
CONFIG_JOYSTICK_GAMECON=m
CONFIG_JOYSTICK_TURBOGRAFX=m
CONFIG_JOYSTICK_JOYDUMP=m
CONFIG_JOYSTICK_XPAD=m
CONFIG_JOYSTICK_XPAD_FF=y
CONFIG_JOYSTICK_XPAD_LEDS=y
CONFIG_JOYSTICK_WALKERA0701=m
CONFIG_INPUT_TABLET=y
CONFIG_TABLET_USB_ACECAD=m
CONFIG_TABLET_USB_AIPTEK=m
CONFIG_TABLET_USB_GTCO=m
CONFIG_TABLET_USB_KBTAB=m
CONFIG_TABLET_USB_WACOM=m
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_ADS7846=m
CONFIG_TOUCHSCREEN_AD7877=m
CONFIG_TOUCHSCREEN_AD7879_I2C=m
CONFIG_TOUCHSCREEN_AD7879=m
CONFIG_TOUCHSCREEN_DA9034=m
CONFIG_TOUCHSCREEN_EETI=m
CONFIG_TOUCHSCREEN_FUJITSU=m
CONFIG_TOUCHSCREEN_GUNZE=m
CONFIG_TOUCHSCREEN_ELO=m
CONFIG_TOUCHSCREEN_WACOM_W8001=m
CONFIG_TOUCHSCREEN_MCS5000=m
CONFIG_TOUCHSCREEN_MTOUCH=m
CONFIG_TOUCHSCREEN_INEXIO=m
CONFIG_TOUCHSCREEN_MK712=m
CONFIG_TOUCHSCREEN_PENMOUNT=m
CONFIG_TOUCHSCREEN_TOUCHRIGHT=m
CONFIG_TOUCHSCREEN_TOUCHWIN=m
CONFIG_TOUCHSCREEN_UCB1400=m
CONFIG_TOUCHSCREEN_WM97XX=m
CONFIG_TOUCHSCREEN_WM9705=y
CONFIG_TOUCHSCREEN_WM9712=y
CONFIG_TOUCHSCREEN_WM9713=y
CONFIG_TOUCHSCREEN_USB_COMPOSITE=m
CONFIG_TOUCHSCREEN_USB_EGALAX=y
CONFIG_TOUCHSCREEN_USB_PANJIT=y
CONFIG_TOUCHSCREEN_USB_3M=y
CONFIG_TOUCHSCREEN_USB_ITM=y
CONFIG_TOUCHSCREEN_USB_ETURBO=y
CONFIG_TOUCHSCREEN_USB_GUNZE=y
CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y
CONFIG_TOUCHSCREEN_USB_IRTOUCH=y
CONFIG_TOUCHSCREEN_USB_IDEALTEK=y
CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y
CONFIG_TOUCHSCREEN_USB_GOTOP=y
CONFIG_TOUCHSCREEN_USB_JASTEC=y
CONFIG_TOUCHSCREEN_USB_E2I=y
CONFIG_TOUCHSCREEN_TOUCHIT213=m
CONFIG_TOUCHSCREEN_TSC2007=m
CONFIG_INPUT_MISC=y
CONFIG_INPUT_PCSPKR=m
# CONFIG_INPUT_APANEL is not set
CONFIG_INPUT_ATLAS_BTNS=m
CONFIG_INPUT_ATI_REMOTE=m
CONFIG_INPUT_ATI_REMOTE2=m
CONFIG_INPUT_KEYSPAN_REMOTE=m
CONFIG_INPUT_POWERMATE=m
CONFIG_INPUT_YEALINK=m
CONFIG_INPUT_CM109=m
CONFIG_INPUT_TWL4030_PWRBUTTON=m
CONFIG_INPUT_UINPUT=m
CONFIG_INPUT_WINBOND_CIR=m
CONFIG_INPUT_PCF50633_PMU=m
CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
CONFIG_INPUT_WM831X_ON=m

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=m
CONFIG_SERIO_CT82C710=m
CONFIG_SERIO_PARKBD=m
CONFIG_SERIO_PCIPS2=m
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
CONFIG_GAMEPORT=m
CONFIG_GAMEPORT_NS558=m
CONFIG_GAMEPORT_L4=m
CONFIG_GAMEPORT_EMU10K1=m
CONFIG_GAMEPORT_FM801=m

#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
# CONFIG_DEVKMEM is not set
CONFIG_SERIAL_NONSTANDARD=y
CONFIG_COMPUTONE=m
CONFIG_ROCKETPORT=m
CONFIG_CYCLADES=m
# CONFIG_CYZ_INTR is not set
CONFIG_DIGIEPCA=m
CONFIG_MOXA_INTELLIO=m
CONFIG_MOXA_SMARTIO=m
# CONFIG_ISI is not set
CONFIG_SYNCLINK=m
CONFIG_SYNCLINKMP=m
CONFIG_SYNCLINK_GT=m
CONFIG_N_HDLC=m
CONFIG_RISCOM8=m
CONFIG_SPECIALIX=m
CONFIG_STALDRV=y
CONFIG_STALLION=m
CONFIG_ISTALLION=m
CONFIG_NOZOMI=m

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_CS=m
CONFIG_SERIAL_8250_NR_UARTS=48
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
CONFIG_SERIAL_MAX3100=m
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
CONFIG_SERIAL_JSM=m
CONFIG_UNIX98_PTYS=y
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=0
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_VIRTIO_CONSOLE=m
CONFIG_IPMI_HANDLER=m
# CONFIG_IPMI_PANIC_EVENT is not set
CONFIG_IPMI_DEVICE_INTERFACE=m
CONFIG_IPMI_SI=m
CONFIG_IPMI_WATCHDOG=m
CONFIG_IPMI_POWEROFF=m
CONFIG_HW_RANDOM=y
CONFIG_HW_RANDOM_TIMERIOMEM=m
CONFIG_HW_RANDOM_INTEL=m
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_HW_RANDOM_VIRTIO=m
CONFIG_NVRAM=m
CONFIG_R3964=m
CONFIG_APPLICOM=m

#
# PCMCIA character devices
#
CONFIG_SYNCLINK_CS=m
CONFIG_CARDMAN_4000=m
CONFIG_CARDMAN_4040=m
CONFIG_IPWIRELESS=m
CONFIG_MWAVE=m
CONFIG_PC8736x_GPIO=m
CONFIG_NSC_GPIO=m
CONFIG_RAW_DRIVER=m
CONFIG_MAX_RAW_DEVS=256
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
CONFIG_HANGCHECK_TIMER=m
CONFIG_TCG_TPM=m
CONFIG_TCG_TIS=m
CONFIG_TCG_NSC=m
CONFIG_TCG_ATMEL=m
CONFIG_TCG_INFINEON=m
CONFIG_TELCLOCK=m
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
CONFIG_I2C_CHARDEV=m
# CONFIG_I2C_HELPER_AUTO is not set

#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=m
CONFIG_I2C_ALGOPCF=m
CONFIG_I2C_ALGOPCA=m

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
CONFIG_I2C_ALI1535=m
CONFIG_I2C_ALI1563=m
CONFIG_I2C_ALI15X3=m
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD756_S4882=m
CONFIG_I2C_AMD8111=m
CONFIG_I2C_I801=m
CONFIG_I2C_ISCH=m
CONFIG_I2C_PIIX4=m
CONFIG_I2C_NFORCE2=m
CONFIG_I2C_NFORCE2_S4985=m
CONFIG_I2C_SIS5595=m
CONFIG_I2C_SIS630=m
CONFIG_I2C_SIS96X=m
CONFIG_I2C_VIA=m
CONFIG_I2C_VIAPRO=m

#
# ACPI drivers
#
CONFIG_I2C_SCMI=m

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
CONFIG_I2C_GPIO=m
CONFIG_I2C_OCORES=m
CONFIG_I2C_SIMTEC=m

#
# External I2C/SMBus adapter drivers
#
CONFIG_I2C_PARPORT=m
CONFIG_I2C_PARPORT_LIGHT=m
CONFIG_I2C_TAOS_EVM=m
CONFIG_I2C_TINY_USB=m

#
# Graphics adapter I2C/DDC channel drivers
#
CONFIG_I2C_VOODOO3=m

#
# Other I2C/SMBus bus drivers
#
CONFIG_I2C_PCA_PLATFORM=m
CONFIG_I2C_STUB=m

#
# Miscellaneous I2C Chip support
#
CONFIG_DS1682=m
CONFIG_SENSORS_TSL2550=m
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y

#
# SPI Master Controller Drivers
#
CONFIG_SPI_BITBANG=m
CONFIG_SPI_BUTTERFLY=m
CONFIG_SPI_GPIO=m
CONFIG_SPI_LM70_LLP=m

#
# SPI Protocol Masters
#
CONFIG_SPI_SPIDEV=m
CONFIG_SPI_TLE62X0=m

#
# PPS support
#
CONFIG_PPS=m
# CONFIG_PPS_DEBUG is not set
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
CONFIG_GPIOLIB=y
# CONFIG_DEBUG_GPIO is not set
CONFIG_GPIO_SYSFS=y

#
# Memory mapped GPIO expanders:
#

#
# I2C GPIO expanders:
#
CONFIG_GPIO_MAX732X=m
CONFIG_GPIO_PCA953X=m
CONFIG_GPIO_PCF857X=m
CONFIG_GPIO_TWL4030=m
CONFIG_GPIO_WM831X=m

#
# PCI GPIO expanders:
#
CONFIG_GPIO_LANGWELL=y

#
# SPI GPIO expanders:
#
CONFIG_GPIO_MAX7301=m
CONFIG_GPIO_MCP23S08=m
CONFIG_GPIO_MC33880=m

#
# AC97 GPIO expanders:
#
CONFIG_GPIO_UCB1400=y
CONFIG_W1=m
CONFIG_W1_CON=y

#
# 1-wire Bus Masters
#
CONFIG_W1_MASTER_MATROX=m
CONFIG_W1_MASTER_DS2490=m
CONFIG_W1_MASTER_DS2482=m
CONFIG_W1_MASTER_GPIO=m

#
# 1-wire Slaves
#
CONFIG_W1_SLAVE_THERM=m
CONFIG_W1_SLAVE_SMEM=m
CONFIG_W1_SLAVE_DS2431=m
CONFIG_W1_SLAVE_DS2433=m
# CONFIG_W1_SLAVE_DS2433_CRC is not set
CONFIG_W1_SLAVE_DS2760=m
CONFIG_W1_SLAVE_BQ27000=m
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_PDA_POWER=m
CONFIG_WM831X_POWER=m
CONFIG_WM8350_POWER=m
CONFIG_BATTERY_DS2760=m
CONFIG_BATTERY_DS2782=m
CONFIG_BATTERY_BQ27x00=m
CONFIG_BATTERY_DA9030=m
CONFIG_BATTERY_MAX17040=m
CONFIG_CHARGER_PCF50633=m
CONFIG_HWMON=y
CONFIG_HWMON_VID=m
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
CONFIG_SENSORS_ABITUGURU=m
CONFIG_SENSORS_ABITUGURU3=m
CONFIG_SENSORS_AD7414=m
CONFIG_SENSORS_AD7418=m
CONFIG_SENSORS_ADCXX=m
CONFIG_SENSORS_ADM1021=m
CONFIG_SENSORS_ADM1025=m
CONFIG_SENSORS_ADM1026=m
CONFIG_SENSORS_ADM1029=m
CONFIG_SENSORS_ADM1031=m
CONFIG_SENSORS_ADM9240=m
CONFIG_SENSORS_ADT7462=m
CONFIG_SENSORS_ADT7470=m
CONFIG_SENSORS_ADT7473=m
CONFIG_SENSORS_ADT7475=m
CONFIG_SENSORS_K8TEMP=m
CONFIG_SENSORS_ASB100=m
CONFIG_SENSORS_ATXP1=m
CONFIG_SENSORS_DS1621=m
CONFIG_SENSORS_I5K_AMB=m
CONFIG_SENSORS_F71805F=m
CONFIG_SENSORS_F71882FG=m
CONFIG_SENSORS_F75375S=m
CONFIG_SENSORS_FSCHMD=m
CONFIG_SENSORS_G760A=m
CONFIG_SENSORS_GL518SM=m
CONFIG_SENSORS_GL520SM=m
CONFIG_SENSORS_CORETEMP=m
CONFIG_SENSORS_IBMAEM=m
CONFIG_SENSORS_IBMPEX=m
CONFIG_SENSORS_IT87=m
CONFIG_SENSORS_LM63=m
CONFIG_SENSORS_LM70=m
CONFIG_SENSORS_LM75=m
CONFIG_SENSORS_LM77=m
CONFIG_SENSORS_LM78=m
CONFIG_SENSORS_LM80=m
CONFIG_SENSORS_LM83=m
CONFIG_SENSORS_LM85=m
CONFIG_SENSORS_LM87=m
CONFIG_SENSORS_LM90=m
CONFIG_SENSORS_LM92=m
CONFIG_SENSORS_LM93=m
CONFIG_SENSORS_LTC4215=m
CONFIG_SENSORS_LTC4245=m
CONFIG_SENSORS_LM95241=m
CONFIG_SENSORS_MAX1111=m
CONFIG_SENSORS_MAX1619=m
CONFIG_SENSORS_MAX6650=m
CONFIG_SENSORS_PC87360=m
CONFIG_SENSORS_PC87427=m
CONFIG_SENSORS_PCF8591=m
CONFIG_SENSORS_SHT15=m
CONFIG_SENSORS_SIS5595=m
CONFIG_SENSORS_DME1737=m
CONFIG_SENSORS_SMSC47M1=m
CONFIG_SENSORS_SMSC47M192=m
CONFIG_SENSORS_SMSC47B397=m
CONFIG_SENSORS_ADS7828=m
CONFIG_SENSORS_THMC50=m
CONFIG_SENSORS_TMP401=m
CONFIG_SENSORS_TMP421=m
CONFIG_SENSORS_VIA686A=m
CONFIG_SENSORS_VT1211=m
CONFIG_SENSORS_VT8231=m
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83791D=m
CONFIG_SENSORS_W83792D=m
CONFIG_SENSORS_W83793=m
CONFIG_SENSORS_W83L785TS=m
CONFIG_SENSORS_W83L786NG=m
CONFIG_SENSORS_W83627HF=m
CONFIG_SENSORS_W83627EHF=m
CONFIG_SENSORS_WM831X=m
CONFIG_SENSORS_WM8350=m
CONFIG_SENSORS_HDAPS=m
CONFIG_SENSORS_APPLESMC=m

#
# ACPI drivers
#
CONFIG_SENSORS_ATK0110=m
CONFIG_SENSORS_LIS3LV02D=m
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
CONFIG_WATCHDOG=y
# CONFIG_WATCHDOG_NOWAYOUT is not set

#
# Watchdog Device Drivers
#
CONFIG_SOFT_WATCHDOG=m
CONFIG_WM831X_WATCHDOG=m
CONFIG_WM8350_WATCHDOG=m
CONFIG_TWL4030_WATCHDOG=m
CONFIG_ACQUIRE_WDT=m
CONFIG_ADVANTECH_WDT=m
CONFIG_ALIM1535_WDT=m
CONFIG_ALIM7101_WDT=m
CONFIG_SC520_WDT=m
CONFIG_SBC_FITPC2_WATCHDOG=m
CONFIG_EUROTECH_WDT=m
CONFIG_IB700_WDT=m
CONFIG_IBMASR=m
CONFIG_WAFER_WDT=m
CONFIG_I6300ESB_WDT=m
CONFIG_ITCO_WDT=m
CONFIG_ITCO_VENDOR_SUPPORT=y
CONFIG_IT8712F_WDT=m
CONFIG_IT87_WDT=m
# CONFIG_HP_WATCHDOG is not set
CONFIG_SC1200_WDT=m
CONFIG_PC87413_WDT=m
CONFIG_60XX_WDT=m
CONFIG_SBC8360_WDT=m
CONFIG_CPU5_WDT=m
CONFIG_SMSC_SCH311X_WDT=m
CONFIG_SMSC37B787_WDT=m
CONFIG_W83627HF_WDT=m
CONFIG_W83697HF_WDT=m
CONFIG_W83697UG_WDT=m
CONFIG_W83877F_WDT=m
CONFIG_W83977F_WDT=m
CONFIG_MACHZ_WDT=m
CONFIG_SBC_EPX_C3_WATCHDOG=m

#
# PCI-based Watchdog Cards
#
CONFIG_PCIPCWATCHDOG=m
CONFIG_WDTPCI=m

#
# USB-based Watchdog Cards
#
CONFIG_USBPCWATCHDOG=m
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=y
CONFIG_SSB_B43_PCI_BRIDGE=y
CONFIG_SSB_PCMCIAHOST_POSSIBLE=y
# CONFIG_SSB_PCMCIAHOST is not set
CONFIG_SSB_SDIOHOST_POSSIBLE=y
CONFIG_SSB_SDIOHOST=y
# CONFIG_SSB_DEBUG is not set
CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y
CONFIG_SSB_DRIVER_PCICORE=y

#
# Multifunction device drivers
#
CONFIG_MFD_CORE=m
CONFIG_MFD_SM501=m
# CONFIG_MFD_SM501_GPIO is not set
CONFIG_HTC_PASIC3=m
CONFIG_UCB1400_CORE=m
CONFIG_TPS65010=m
CONFIG_TWL4030_CORE=y
# CONFIG_MFD_TMIO is not set
CONFIG_PMIC_DA903X=y
CONFIG_MFD_WM8400=m
CONFIG_MFD_WM831X=m
CONFIG_MFD_WM8350=m
CONFIG_MFD_WM8350_I2C=m
CONFIG_MFD_PCF50633=m
CONFIG_MFD_MC13783=m
CONFIG_PCF50633_ADC=m
CONFIG_PCF50633_GPIO=m
CONFIG_AB3100_CORE=m
CONFIG_AB3100_OTP=m
# CONFIG_EZX_PCAP is not set
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
# CONFIG_REGULATOR_FIXED_VOLTAGE is not set
CONFIG_REGULATOR_VIRTUAL_CONSUMER=m
CONFIG_REGULATOR_USERSPACE_CONSUMER=m
CONFIG_REGULATOR_BQ24022=m
CONFIG_REGULATOR_MAX1586=m
CONFIG_REGULATOR_TWL4030=y
CONFIG_REGULATOR_WM831X=m
CONFIG_REGULATOR_WM8350=m
CONFIG_REGULATOR_WM8400=m
CONFIG_REGULATOR_DA903X=m
CONFIG_REGULATOR_PCF50633=m
CONFIG_REGULATOR_LP3971=m
CONFIG_REGULATOR_MC13783=m
CONFIG_REGULATOR_AB3100=m
CONFIG_REGULATOR_TPS65023=m
CONFIG_REGULATOR_TPS6507X=m
CONFIG_MEDIA_SUPPORT=m

#
# Multimedia core support
#
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2_COMMON=m
CONFIG_VIDEO_ALLOW_V4L1=y
CONFIG_VIDEO_V4L1_COMPAT=y
CONFIG_DVB_CORE=m
CONFIG_VIDEO_MEDIA=m

#
# Multimedia drivers
#
CONFIG_VIDEO_SAA7146=m
CONFIG_VIDEO_SAA7146_VV=m
CONFIG_MEDIA_ATTACH=y
CONFIG_MEDIA_TUNER=m
# CONFIG_MEDIA_TUNER_CUSTOMISE is not set
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_MT2060=m
CONFIG_MEDIA_TUNER_MT2266=m
CONFIG_MEDIA_TUNER_MT2131=m
CONFIG_MEDIA_TUNER_QT1010=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_MXL5005S=m
CONFIG_MEDIA_TUNER_MXL5007T=m
CONFIG_MEDIA_TUNER_MC44S803=m
CONFIG_VIDEO_V4L2=m
CONFIG_VIDEO_V4L1=m
CONFIG_VIDEOBUF_GEN=m
CONFIG_VIDEOBUF_DMA_SG=m
CONFIG_VIDEOBUF_VMALLOC=m
CONFIG_VIDEOBUF_DVB=m
CONFIG_VIDEO_BTCX=m
CONFIG_VIDEO_IR=m
CONFIG_VIDEO_TVEEPROM=m
CONFIG_VIDEO_TUNER=m
CONFIG_VIDEO_CAPTURE_DRIVERS=y
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEO_HELPER_CHIPS_AUTO=y
CONFIG_VIDEO_IR_I2C=m
CONFIG_VIDEO_TVAUDIO=m
CONFIG_VIDEO_TDA7432=m
CONFIG_VIDEO_TDA9840=m
CONFIG_VIDEO_TEA6415C=m
CONFIG_VIDEO_TEA6420=m
CONFIG_VIDEO_MSP3400=m
CONFIG_VIDEO_CS5345=m
CONFIG_VIDEO_CS53L32A=m
CONFIG_VIDEO_M52790=m
CONFIG_VIDEO_WM8775=m
CONFIG_VIDEO_WM8739=m
CONFIG_VIDEO_VP27SMPX=m
CONFIG_VIDEO_SAA6588=m
CONFIG_VIDEO_BT819=m
CONFIG_VIDEO_BT856=m
CONFIG_VIDEO_BT866=m
CONFIG_VIDEO_KS0127=m
CONFIG_VIDEO_OV7670=m
CONFIG_VIDEO_MT9V011=m
CONFIG_VIDEO_SAA7110=m
CONFIG_VIDEO_SAA711X=m
CONFIG_VIDEO_SAA717X=m
CONFIG_VIDEO_TVP5150=m
CONFIG_VIDEO_VPX3220=m
CONFIG_VIDEO_CX25840=m
CONFIG_VIDEO_CX2341X=m
CONFIG_VIDEO_SAA7127=m
CONFIG_VIDEO_SAA7185=m
CONFIG_VIDEO_ADV7170=m
CONFIG_VIDEO_ADV7175=m
CONFIG_VIDEO_UPD64031A=m
CONFIG_VIDEO_UPD64083=m
CONFIG_VIDEO_VIVI=m
CONFIG_VIDEO_BT848=m
CONFIG_VIDEO_BT848_DVB=y
CONFIG_VIDEO_BWQCAM=m
CONFIG_VIDEO_CQCAM=m
CONFIG_VIDEO_W9966=m
CONFIG_VIDEO_CPIA=m
CONFIG_VIDEO_CPIA_PP=m
CONFIG_VIDEO_CPIA_USB=m
CONFIG_VIDEO_CPIA2=m
CONFIG_VIDEO_SAA5246A=m
CONFIG_VIDEO_SAA5249=m
CONFIG_VIDEO_STRADIS=m
CONFIG_VIDEO_ZORAN=m
CONFIG_VIDEO_ZORAN_DC30=m
CONFIG_VIDEO_ZORAN_ZR36060=m
CONFIG_VIDEO_ZORAN_BUZ=m
CONFIG_VIDEO_ZORAN_DC10=m
CONFIG_VIDEO_ZORAN_LML33=m
CONFIG_VIDEO_ZORAN_LML33R10=m
CONFIG_VIDEO_ZORAN_AVS6EYES=m
CONFIG_VIDEO_MEYE=m
CONFIG_VIDEO_SAA7134=m
CONFIG_VIDEO_SAA7134_ALSA=m
CONFIG_VIDEO_SAA7134_DVB=m
CONFIG_VIDEO_MXB=m
CONFIG_VIDEO_HEXIUM_ORION=m
CONFIG_VIDEO_HEXIUM_GEMINI=m
CONFIG_VIDEO_CX88=m
CONFIG_VIDEO_CX88_ALSA=m
CONFIG_VIDEO_CX88_BLACKBIRD=m
CONFIG_VIDEO_CX88_DVB=m
CONFIG_VIDEO_CX88_MPEG=m
CONFIG_VIDEO_CX88_VP3054=m
CONFIG_VIDEO_CX23885=m
CONFIG_VIDEO_AU0828=m
CONFIG_VIDEO_IVTV=m
CONFIG_VIDEO_FB_IVTV=m
CONFIG_VIDEO_CX18=m
CONFIG_VIDEO_SAA7164=m
CONFIG_VIDEO_CAFE_CCIC=m
CONFIG_SOC_CAMERA=m
CONFIG_SOC_CAMERA_MT9M001=m
CONFIG_SOC_CAMERA_MT9M111=m
CONFIG_SOC_CAMERA_MT9T031=m
CONFIG_SOC_CAMERA_MT9V022=m
CONFIG_SOC_CAMERA_TW9910=m
CONFIG_SOC_CAMERA_PLATFORM=m
CONFIG_SOC_CAMERA_OV772X=m
CONFIG_V4L_USB_DRIVERS=y
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
CONFIG_USB_GSPCA=m
CONFIG_USB_M5602=m
CONFIG_USB_STV06XX=m
CONFIG_USB_GL860=m
CONFIG_USB_GSPCA_CONEX=m
CONFIG_USB_GSPCA_ETOMS=m
CONFIG_USB_GSPCA_FINEPIX=m
CONFIG_USB_GSPCA_JEILINJ=m
CONFIG_USB_GSPCA_MARS=m
CONFIG_USB_GSPCA_MR97310A=m
CONFIG_USB_GSPCA_OV519=m
CONFIG_USB_GSPCA_OV534=m
CONFIG_USB_GSPCA_PAC207=m
CONFIG_USB_GSPCA_PAC7311=m
CONFIG_USB_GSPCA_SN9C20X=m
# CONFIG_USB_GSPCA_SN9C20X_EVDEV is not set
CONFIG_USB_GSPCA_SONIXB=m
CONFIG_USB_GSPCA_SONIXJ=m
CONFIG_USB_GSPCA_SPCA500=m
CONFIG_USB_GSPCA_SPCA501=m
CONFIG_USB_GSPCA_SPCA505=m
CONFIG_USB_GSPCA_SPCA506=m
CONFIG_USB_GSPCA_SPCA508=m
CONFIG_USB_GSPCA_SPCA561=m
CONFIG_USB_GSPCA_SQ905=m
CONFIG_USB_GSPCA_SQ905C=m
CONFIG_USB_GSPCA_STK014=m
CONFIG_USB_GSPCA_SUNPLUS=m
CONFIG_USB_GSPCA_T613=m
CONFIG_USB_GSPCA_TV8532=m
CONFIG_USB_GSPCA_VC032X=m
CONFIG_USB_GSPCA_ZC3XX=m
CONFIG_VIDEO_PVRUSB2=m
CONFIG_VIDEO_PVRUSB2_SYSFS=y
CONFIG_VIDEO_PVRUSB2_DVB=y
# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
CONFIG_VIDEO_HDPVR=m
CONFIG_VIDEO_EM28XX=m
CONFIG_VIDEO_EM28XX_ALSA=m
CONFIG_VIDEO_EM28XX_DVB=m
CONFIG_VIDEO_CX231XX=m
CONFIG_VIDEO_CX231XX_ALSA=m
CONFIG_VIDEO_CX231XX_DVB=m
CONFIG_VIDEO_USBVISION=m
CONFIG_VIDEO_USBVIDEO=m
CONFIG_USB_VICAM=m
CONFIG_USB_IBMCAM=m
CONFIG_USB_KONICAWC=m
CONFIG_USB_QUICKCAM_MESSENGER=m
CONFIG_USB_ET61X251=m
CONFIG_VIDEO_OVCAMCHIP=m
CONFIG_USB_W9968CF=m
# CONFIG_USB_OV511 is not set
CONFIG_USB_SE401=m
CONFIG_USB_SN9C102=m
CONFIG_USB_STV680=m
CONFIG_USB_ZC0301=m
CONFIG_USB_PWC=m
# CONFIG_USB_PWC_DEBUG is not set
CONFIG_USB_PWC_INPUT_EVDEV=y
CONFIG_USB_ZR364XX=m
CONFIG_USB_STKWEBCAM=m
CONFIG_USB_S2255=m
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_GEMTEK_PCI=m
CONFIG_RADIO_MAXIRADIO=m
CONFIG_RADIO_MAESTRO=m
CONFIG_I2C_SI4713=m
CONFIG_RADIO_SI4713=m
CONFIG_USB_DSBR=m
CONFIG_RADIO_SI470X=y
CONFIG_USB_SI470X=m
CONFIG_I2C_SI470X=m
CONFIG_USB_MR800=m
CONFIG_RADIO_TEA5764=m
CONFIG_DVB_MAX_ADAPTERS=8
CONFIG_DVB_DYNAMIC_MINORS=y
CONFIG_DVB_CAPTURE_DRIVERS=y

#
# Supported SAA7146 based PCI Adapters
#
CONFIG_TTPCI_EEPROM=m
CONFIG_DVB_AV7110=m
CONFIG_DVB_AV7110_OSD=y
CONFIG_DVB_BUDGET_CORE=m
CONFIG_DVB_BUDGET=m
CONFIG_DVB_BUDGET_CI=m
CONFIG_DVB_BUDGET_AV=m
CONFIG_DVB_BUDGET_PATCH=m

#
# Supported USB Adapters
#
CONFIG_DVB_USB=m
# CONFIG_DVB_USB_DEBUG is not set
CONFIG_DVB_USB_A800=m
CONFIG_DVB_USB_DIBUSB_MB=m
# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
CONFIG_DVB_USB_DIBUSB_MC=m
CONFIG_DVB_USB_DIB0700=m
CONFIG_DVB_USB_UMT_010=m
CONFIG_DVB_USB_CXUSB=m
CONFIG_DVB_USB_M920X=m
CONFIG_DVB_USB_GL861=m
CONFIG_DVB_USB_AU6610=m
CONFIG_DVB_USB_DIGITV=m
CONFIG_DVB_USB_VP7045=m
CONFIG_DVB_USB_VP702X=m
CONFIG_DVB_USB_GP8PSK=m
CONFIG_DVB_USB_NOVA_T_USB2=m
CONFIG_DVB_USB_TTUSB2=m
CONFIG_DVB_USB_DTT200U=m
CONFIG_DVB_USB_OPERA1=m
CONFIG_DVB_USB_AF9005=m
CONFIG_DVB_USB_AF9005_REMOTE=m
CONFIG_DVB_USB_DW2102=m
CONFIG_DVB_USB_CINERGY_T2=m
CONFIG_DVB_USB_ANYSEE=m
CONFIG_DVB_USB_DTV5100=m
CONFIG_DVB_USB_AF9015=m
CONFIG_DVB_USB_CE6230=m
CONFIG_DVB_USB_FRIIO=m
CONFIG_DVB_TTUSB_BUDGET=m
CONFIG_DVB_TTUSB_DEC=m
CONFIG_SMS_SIANO_MDTV=m

#
# Siano module components
#
CONFIG_SMS_USB_DRV=m
CONFIG_SMS_SDIO_DRV=m

#
# Supported FlexCopII (B2C2) Adapters
#
CONFIG_DVB_B2C2_FLEXCOP=m
CONFIG_DVB_B2C2_FLEXCOP_PCI=m
CONFIG_DVB_B2C2_FLEXCOP_USB=m
# CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set

#
# Supported BT878 Adapters
#
CONFIG_DVB_BT8XX=m

#
# Supported Pluto2 Adapters
#
CONFIG_DVB_PLUTO2=m

#
# Supported SDMC DM1105 Adapters
#
CONFIG_DVB_DM1105=m

#
# Supported FireWire (IEEE 1394) Adapters
#
CONFIG_DVB_FIREDTV=m
CONFIG_DVB_FIREDTV_IEEE1394=y
CONFIG_DVB_FIREDTV_INPUT=y

#
# Supported Earthsoft PT1 Adapters
#
CONFIG_DVB_PT1=m

#
# Supported DVB Frontends
#
# CONFIG_DVB_FE_CUSTOMISE is not set
CONFIG_DVB_STB0899=m
CONFIG_DVB_STB6100=m
CONFIG_DVB_CX24110=m
CONFIG_DVB_CX24123=m
CONFIG_DVB_MT312=m
CONFIG_DVB_ZL10036=m
CONFIG_DVB_ZL10039=m
CONFIG_DVB_S5H1420=m
CONFIG_DVB_STV0288=m
CONFIG_DVB_STB6000=m
CONFIG_DVB_STV0299=m
CONFIG_DVB_STV6110=m
CONFIG_DVB_STV0900=m
CONFIG_DVB_TDA8083=m
CONFIG_DVB_TDA10086=m
CONFIG_DVB_TDA8261=m
CONFIG_DVB_VES1X93=m
CONFIG_DVB_TUNER_ITD1000=m
CONFIG_DVB_TUNER_CX24113=m
CONFIG_DVB_TDA826X=m
CONFIG_DVB_TUA6100=m
CONFIG_DVB_CX24116=m
CONFIG_DVB_SI21XX=m
CONFIG_DVB_SP8870=m
CONFIG_DVB_SP887X=m
CONFIG_DVB_CX22700=m
CONFIG_DVB_CX22702=m
CONFIG_DVB_L64781=m
CONFIG_DVB_TDA1004X=m
CONFIG_DVB_NXT6000=m
CONFIG_DVB_MT352=m
CONFIG_DVB_ZL10353=m
CONFIG_DVB_DIB3000MB=m
CONFIG_DVB_DIB3000MC=m
CONFIG_DVB_DIB7000M=m
CONFIG_DVB_DIB7000P=m
CONFIG_DVB_TDA10048=m
CONFIG_DVB_AF9013=m
CONFIG_DVB_VES1820=m
CONFIG_DVB_TDA10021=m
CONFIG_DVB_TDA10023=m
CONFIG_DVB_STV0297=m
CONFIG_DVB_NXT200X=m
CONFIG_DVB_OR51211=m
CONFIG_DVB_OR51132=m
CONFIG_DVB_BCM3510=m
CONFIG_DVB_LGDT330X=m
CONFIG_DVB_LGDT3305=m
CONFIG_DVB_S5H1409=m
CONFIG_DVB_AU8522=m
CONFIG_DVB_S5H1411=m
CONFIG_DVB_DIB8000=m
CONFIG_DVB_PLL=m
CONFIG_DVB_TUNER_DIB0070=m
CONFIG_DVB_LNBP21=m
CONFIG_DVB_ISL6405=m
CONFIG_DVB_ISL6421=m
CONFIG_DVB_LGS8GXX=m
CONFIG_DAB=y
CONFIG_USB_DABUSB=m

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=m
CONFIG_AGP_SIS=m
CONFIG_AGP_VIA=m
CONFIG_VGA_ARB=y
CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_TTM=m
CONFIG_DRM_TDFX=m
CONFIG_DRM_R128=m
CONFIG_DRM_RADEON=m
CONFIG_DRM_I810=m
CONFIG_DRM_I830=m
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y
CONFIG_DRM_MGA=m
CONFIG_DRM_SIS=m
CONFIG_DRM_VIA=m
CONFIG_DRM_SAVAGE=m
CONFIG_VGASTATE=m
CONFIG_VIDEO_OUTPUT_CONTROL=m
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_DDC=m
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_HECUBA=m
CONFIG_FB_SVGALIB=m
# CONFIG_FB_MACMODES is not set
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
CONFIG_FB_CIRRUS=m
CONFIG_FB_PM2=m
CONFIG_FB_PM2_FIFO_DISCONNECT=y
CONFIG_FB_CYBER2000=m
CONFIG_FB_ARC=m
CONFIG_FB_ASILIANT=y
CONFIG_FB_IMSTT=y
CONFIG_FB_VGA16=m
CONFIG_FB_UVESA=m
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
CONFIG_FB_N411=m
CONFIG_FB_HGA=m
# CONFIG_FB_HGA_ACCEL is not set
CONFIG_FB_S1D13XXX=m
CONFIG_FB_NVIDIA=m
CONFIG_FB_NVIDIA_I2C=y
# CONFIG_FB_NVIDIA_DEBUG is not set
CONFIG_FB_NVIDIA_BACKLIGHT=y
CONFIG_FB_RIVA=m
CONFIG_FB_RIVA_I2C=y
# CONFIG_FB_RIVA_DEBUG is not set
CONFIG_FB_RIVA_BACKLIGHT=y
CONFIG_FB_LE80578=m
CONFIG_FB_CARILLO_RANCH=m
CONFIG_FB_MATROX=m
CONFIG_FB_MATROX_MILLENIUM=y
CONFIG_FB_MATROX_MYSTIQUE=y
CONFIG_FB_MATROX_G=y
CONFIG_FB_MATROX_I2C=m
CONFIG_FB_MATROX_MAVEN=m
CONFIG_FB_RADEON=m
CONFIG_FB_RADEON_I2C=y
CONFIG_FB_RADEON_BACKLIGHT=y
# CONFIG_FB_RADEON_DEBUG is not set
CONFIG_FB_ATY128=m
CONFIG_FB_ATY128_BACKLIGHT=y
CONFIG_FB_ATY=m
CONFIG_FB_ATY_CT=y
CONFIG_FB_ATY_GENERIC_LCD=y
CONFIG_FB_ATY_GX=y
CONFIG_FB_ATY_BACKLIGHT=y
CONFIG_FB_S3=m
CONFIG_FB_SAVAGE=m
CONFIG_FB_SAVAGE_I2C=y
CONFIG_FB_SAVAGE_ACCEL=y
CONFIG_FB_SIS=m
CONFIG_FB_SIS_300=y
CONFIG_FB_SIS_315=y
CONFIG_FB_VIA=m
CONFIG_FB_NEOMAGIC=m
CONFIG_FB_KYRO=m
CONFIG_FB_3DFX=m
# CONFIG_FB_3DFX_ACCEL is not set
CONFIG_FB_3DFX_I2C=y
CONFIG_FB_VOODOO1=m
CONFIG_FB_VT8623=m
CONFIG_FB_TRIDENT=m
CONFIG_FB_ARK=m
CONFIG_FB_PM3=m
CONFIG_FB_CARMINE=m
CONFIG_FB_CARMINE_DRAM_EVAL=y
# CONFIG_CARMINE_DRAM_CUSTOM is not set
CONFIG_FB_GEODE=y
CONFIG_FB_GEODE_LX=m
CONFIG_FB_GEODE_GX=m
CONFIG_FB_GEODE_GX1=m
CONFIG_FB_TMIO=m
CONFIG_FB_TMIO_ACCELL=y
CONFIG_FB_SM501=m
# CONFIG_FB_VIRTUAL is not set
CONFIG_XEN_FBDEV_FRONTEND=m
CONFIG_FB_METRONOME=m
CONFIG_FB_MB862XX=m
CONFIG_FB_MB862XX_PCI_GDC=y
CONFIG_FB_BROADSHEET=m
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=m
CONFIG_LCD_LMS283GF05=m
CONFIG_LCD_LTV350QV=m
CONFIG_LCD_ILI9320=m
CONFIG_LCD_TDO24M=m
CONFIG_LCD_VGG2432A4=m
CONFIG_LCD_PLATFORM=m
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=m
CONFIG_BACKLIGHT_PROGEAR=m
CONFIG_BACKLIGHT_CARILLO_RANCH=m
CONFIG_BACKLIGHT_DA903X=m
CONFIG_BACKLIGHT_MBP_NVIDIA=m
CONFIG_BACKLIGHT_SAHARA=m
CONFIG_BACKLIGHT_WM831X=m

#
# Display device support
#
CONFIG_DISPLAY_SUPPORT=m

#
# Display hardware drivers
#

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=m
# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_LOGO is not set
CONFIG_SOUND=m
CONFIG_SOUND_OSS_CORE=y
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=m
CONFIG_SND_SEQ_DUMMY=m
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_HRTIMER=m
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_RAWMIDI_SEQ=m
CONFIG_SND_OPL3_LIB_SEQ=m
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
CONFIG_SND_EMU10K1_SEQ=m
CONFIG_SND_MPU401_UART=m
CONFIG_SND_OPL3_LIB=m
CONFIG_SND_VX_LIB=m
CONFIG_SND_AC97_CODEC=m
CONFIG_SND_DRIVERS=y
CONFIG_SND_PCSP=m
CONFIG_SND_DUMMY=m
CONFIG_SND_VIRMIDI=m
CONFIG_SND_MTPAV=m
CONFIG_SND_MTS64=m
CONFIG_SND_SERIAL_U16550=m
CONFIG_SND_MPU401=m
CONFIG_SND_PORTMAN2X4=m
CONFIG_SND_AC97_POWER_SAVE=y
CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0
CONFIG_SND_SB_COMMON=m
CONFIG_SND_SB16_DSP=m
CONFIG_SND_PCI=y
CONFIG_SND_AD1889=m
CONFIG_SND_ALS300=m
CONFIG_SND_ALS4000=m
CONFIG_SND_ALI5451=m
CONFIG_SND_ATIIXP=m
CONFIG_SND_ATIIXP_MODEM=m
CONFIG_SND_AU8810=m
CONFIG_SND_AU8820=m
CONFIG_SND_AU8830=m
CONFIG_SND_AW2=m
CONFIG_SND_AZT3328=m
CONFIG_SND_BT87X=m
# CONFIG_SND_BT87X_OVERCLOCK is not set
CONFIG_SND_CA0106=m
CONFIG_SND_CMIPCI=m
CONFIG_SND_OXYGEN_LIB=m
CONFIG_SND_OXYGEN=m
CONFIG_SND_CS4281=m
CONFIG_SND_CS46XX=m
CONFIG_SND_CS46XX_NEW_DSP=y
CONFIG_SND_CS5530=m
CONFIG_SND_CS5535AUDIO=m
CONFIG_SND_CTXFI=m
CONFIG_SND_DARLA20=m
CONFIG_SND_GINA20=m
CONFIG_SND_LAYLA20=m
CONFIG_SND_DARLA24=m
CONFIG_SND_GINA24=m
CONFIG_SND_LAYLA24=m
CONFIG_SND_MONA=m
CONFIG_SND_MIA=m
CONFIG_SND_ECHO3G=m
CONFIG_SND_INDIGO=m
CONFIG_SND_INDIGOIO=m
CONFIG_SND_INDIGODJ=m
CONFIG_SND_INDIGOIOX=m
CONFIG_SND_INDIGODJX=m
CONFIG_SND_EMU10K1=m
CONFIG_SND_EMU10K1X=m
CONFIG_SND_ENS1370=m
CONFIG_SND_ENS1371=m
CONFIG_SND_ES1938=m
CONFIG_SND_ES1968=m
CONFIG_SND_FM801=m
CONFIG_SND_FM801_TEA575X_BOOL=y
CONFIG_SND_FM801_TEA575X=m
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_RECONFIG=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_JACK=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
CONFIG_SND_HDA_CODEC_ANALOG=y
CONFIG_SND_HDA_CODEC_SIGMATEL=y
CONFIG_SND_HDA_CODEC_VIA=y
CONFIG_SND_HDA_CODEC_ATIHDMI=y
CONFIG_SND_HDA_CODEC_NVHDMI=y
CONFIG_SND_HDA_CODEC_INTELHDMI=y
CONFIG_SND_HDA_ELD=y
CONFIG_SND_HDA_CODEC_CIRRUS=y
CONFIG_SND_HDA_CODEC_CONEXANT=y
CONFIG_SND_HDA_CODEC_CA0110=y
CONFIG_SND_HDA_CODEC_CMEDIA=y
CONFIG_SND_HDA_CODEC_SI3054=y
CONFIG_SND_HDA_GENERIC=y
CONFIG_SND_HDA_POWER_SAVE=y
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_HDSP=m
CONFIG_SND_HDSPM=m
CONFIG_SND_HIFIER=m
CONFIG_SND_ICE1712=m
CONFIG_SND_ICE1724=m
CONFIG_SND_INTEL8X0=m
CONFIG_SND_INTEL8X0M=m
CONFIG_SND_KORG1212=m
CONFIG_SND_LX6464ES=m
CONFIG_SND_MAESTRO3=m
CONFIG_SND_MIXART=m
CONFIG_SND_NM256=m
CONFIG_SND_PCXHR=m
CONFIG_SND_RIPTIDE=m
CONFIG_SND_RME32=m
CONFIG_SND_RME96=m
CONFIG_SND_RME9652=m
CONFIG_SND_SONICVIBES=m
CONFIG_SND_TRIDENT=m
CONFIG_SND_VIA82XX=m
CONFIG_SND_VIA82XX_MODEM=m
CONFIG_SND_VIRTUOSO=m
CONFIG_SND_VX222=m
CONFIG_SND_YMFPCI=m
CONFIG_SND_SPI=y
CONFIG_SND_USB=y
CONFIG_SND_USB_AUDIO=m
CONFIG_SND_USB_USX2Y=m
CONFIG_SND_USB_CAIAQ=m
CONFIG_SND_USB_CAIAQ_INPUT=y
CONFIG_SND_USB_US122L=m
CONFIG_SND_PCMCIA=y
CONFIG_SND_VXPOCKET=m
CONFIG_SND_PDAUDIOCF=m
CONFIG_SND_SOC=m
CONFIG_SND_SOC_I2C_AND_SPI=m
CONFIG_SND_SOC_ALL_CODECS=m
CONFIG_SND_SOC_WM_HUBS=m
CONFIG_SND_SOC_AD1836=m
CONFIG_SND_SOC_AD1938=m
CONFIG_SND_SOC_AD73311=m
CONFIG_SND_SOC_AK4104=m
CONFIG_SND_SOC_AK4535=m
CONFIG_SND_SOC_AK4642=m
CONFIG_SND_SOC_CS4270=m
CONFIG_SND_SOC_L3=m
CONFIG_SND_SOC_PCM3008=m
CONFIG_SND_SOC_SPDIF=m
CONFIG_SND_SOC_SSM2602=m
CONFIG_SND_SOC_TLV320AIC23=m
CONFIG_SND_SOC_TLV320AIC26=m
CONFIG_SND_SOC_TLV320AIC3X=m
CONFIG_SND_SOC_TWL4030=m
CONFIG_SND_SOC_UDA134X=m
CONFIG_SND_SOC_UDA1380=m
CONFIG_SND_SOC_WM8350=m
CONFIG_SND_SOC_WM8400=m
CONFIG_SND_SOC_WM8510=m
CONFIG_SND_SOC_WM8523=m
CONFIG_SND_SOC_WM8580=m
CONFIG_SND_SOC_WM8728=m
CONFIG_SND_SOC_WM8731=m
CONFIG_SND_SOC_WM8750=m
CONFIG_SND_SOC_WM8753=m
CONFIG_SND_SOC_WM8776=m
CONFIG_SND_SOC_WM8900=m
CONFIG_SND_SOC_WM8903=m
CONFIG_SND_SOC_WM8940=m
CONFIG_SND_SOC_WM8960=m
CONFIG_SND_SOC_WM8961=m
CONFIG_SND_SOC_WM8971=m
CONFIG_SND_SOC_WM8974=m
CONFIG_SND_SOC_WM8988=m
CONFIG_SND_SOC_WM8990=m
CONFIG_SND_SOC_WM8993=m
CONFIG_SND_SOC_WM9081=m
CONFIG_SND_SOC_MAX9877=m
CONFIG_SOUND_PRIME=m
CONFIG_SOUND_OSS=m
# CONFIG_SOUND_TRACEINIT is not set
CONFIG_SOUND_DMAP=y
CONFIG_SOUND_SSCAPE=m
CONFIG_SOUND_VMIDI=m
CONFIG_SOUND_TRIX=m
CONFIG_SOUND_MSS=m
CONFIG_SOUND_MPU401=m
CONFIG_SOUND_PAS=m
CONFIG_SOUND_PSS=m
CONFIG_PSS_MIXER=y
# CONFIG_PSS_HAVE_BOOT is not set
CONFIG_SOUND_SB=m
CONFIG_SOUND_YM3812=m
CONFIG_SOUND_UART6850=m
CONFIG_SOUND_AEDSP16=m
CONFIG_SC6600=y
CONFIG_SC6600_JOY=y
CONFIG_SC6600_CDROM=4
CONFIG_SC6600_CDROMBASE=0
CONFIG_SOUND_KAHLUA=m
CONFIG_AC97_BUS=m
CONFIG_HID_SUPPORT=y
CONFIG_HID=m
CONFIG_HIDRAW=y

#
# USB Input Devices
#
CONFIG_USB_HID=m
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=m
CONFIG_HID_APPLE=m
CONFIG_HID_BELKIN=m
CONFIG_HID_CHERRY=m
CONFIG_HID_CHICONY=m
CONFIG_HID_CYPRESS=m
CONFIG_HID_DRAGONRISE=m
CONFIG_DRAGONRISE_FF=y
CONFIG_HID_EZKEY=m
CONFIG_HID_KYE=m
CONFIG_HID_GYRATION=m
CONFIG_HID_TWINHAN=m
CONFIG_HID_KENSINGTON=m
CONFIG_HID_LOGITECH=m
CONFIG_LOGITECH_FF=y
CONFIG_LOGIRUMBLEPAD2_FF=y
CONFIG_HID_MICROSOFT=m
CONFIG_HID_MONTEREY=m
CONFIG_HID_NTRIG=m
CONFIG_HID_PANTHERLORD=m
CONFIG_PANTHERLORD_FF=y
CONFIG_HID_PETALYNX=m
CONFIG_HID_SAMSUNG=m
CONFIG_HID_SONY=m
CONFIG_HID_SUNPLUS=m
CONFIG_HID_GREENASIA=m
CONFIG_GREENASIA_FF=y
CONFIG_HID_SMARTJOYPLUS=m
CONFIG_SMARTJOYPLUS_FF=y
CONFIG_HID_TOPSEED=m
CONFIG_HID_THRUSTMASTER=m
CONFIG_THRUSTMASTER_FF=y
CONFIG_HID_WACOM=m
CONFIG_HID_ZEROPLUS=m
CONFIG_ZEROPLUS_FF=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set
# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set

#
# Miscellaneous USB options
#
# CONFIG_USB_DEVICEFS is not set
# CONFIG_USB_DEVICE_CLASS is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
CONFIG_USB_SUSPEND=y
# CONFIG_USB_OTG is not set
CONFIG_USB_MON=y
CONFIG_USB_WUSB=m
CONFIG_USB_WUSB_CBAF=m
# CONFIG_USB_WUSB_CBAF_DEBUG is not set

#
# USB Host Controller Drivers
#
CONFIG_USB_C67X00_HCD=m
CONFIG_USB_XHCI_HCD=m
# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_OXU210HP_HCD=m
CONFIG_USB_ISP116X_HCD=m
CONFIG_USB_ISP1760_HCD=m
CONFIG_USB_ISP1362_HCD=m
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
CONFIG_USB_U132_HCD=m
CONFIG_USB_SL811_HCD=m
CONFIG_USB_SL811_CS=m
CONFIG_USB_R8A66597_HCD=m
CONFIG_USB_WHCI_HCD=m
CONFIG_USB_HWA_HCD=m
# CONFIG_USB_GADGET_MUSB_HDRC is not set

#
# USB Device Class drivers
#
CONFIG_USB_ACM=m
CONFIG_USB_PRINTER=m
CONFIG_USB_WDM=m
CONFIG_USB_TMC=m

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
CONFIG_USB_STORAGE_DATAFAB=m
CONFIG_USB_STORAGE_FREECOM=m
CONFIG_USB_STORAGE_ISD200=m
CONFIG_USB_STORAGE_USBAT=m
CONFIG_USB_STORAGE_SDDR09=m
CONFIG_USB_STORAGE_SDDR55=m
CONFIG_USB_STORAGE_JUMPSHOT=m
CONFIG_USB_STORAGE_ALAUDA=m
CONFIG_USB_STORAGE_ONETOUCH=m
CONFIG_USB_STORAGE_KARMA=m
CONFIG_USB_STORAGE_CYPRESS_ATACB=m
# CONFIG_USB_LIBUSUAL is not set

#
# USB Imaging devices
#
CONFIG_USB_MDC800=m
CONFIG_USB_MICROTEK=m

#
# USB port drivers
#
CONFIG_USB_USS720=m
CONFIG_USB_SERIAL=m
CONFIG_USB_EZUSB=y
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_AIRCABLE=m
CONFIG_USB_SERIAL_ARK3116=m
CONFIG_USB_SERIAL_BELKIN=m
CONFIG_USB_SERIAL_CH341=m
CONFIG_USB_SERIAL_WHITEHEAT=m
CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m
CONFIG_USB_SERIAL_CP210X=m
CONFIG_USB_SERIAL_CYPRESS_M8=m
CONFIG_USB_SERIAL_EMPEG=m
CONFIG_USB_SERIAL_FTDI_SIO=m
CONFIG_USB_SERIAL_FUNSOFT=m
CONFIG_USB_SERIAL_VISOR=m
CONFIG_USB_SERIAL_IPAQ=m
CONFIG_USB_SERIAL_IR=m
CONFIG_USB_SERIAL_EDGEPORT=m
CONFIG_USB_SERIAL_EDGEPORT_TI=m
CONFIG_USB_SERIAL_GARMIN=m
CONFIG_USB_SERIAL_IPW=m
CONFIG_USB_SERIAL_IUU=m
CONFIG_USB_SERIAL_KEYSPAN_PDA=m
CONFIG_USB_SERIAL_KEYSPAN=m
CONFIG_USB_SERIAL_KEYSPAN_MPR=y
CONFIG_USB_SERIAL_KEYSPAN_USA28=y
CONFIG_USB_SERIAL_KEYSPAN_USA28X=y
CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y
CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y
CONFIG_USB_SERIAL_KEYSPAN_USA19=y
CONFIG_USB_SERIAL_KEYSPAN_USA18X=y
CONFIG_USB_SERIAL_KEYSPAN_USA19W=y
CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y
CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y
CONFIG_USB_SERIAL_KEYSPAN_USA49W=y
CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y
CONFIG_USB_SERIAL_KLSI=m
CONFIG_USB_SERIAL_KOBIL_SCT=m
CONFIG_USB_SERIAL_MCT_U232=m
CONFIG_USB_SERIAL_MOS7720=m
CONFIG_USB_SERIAL_MOS7840=m
CONFIG_USB_SERIAL_MOTOROLA=m
CONFIG_USB_SERIAL_NAVMAN=m
CONFIG_USB_SERIAL_PL2303=m
CONFIG_USB_SERIAL_OTI6858=m
CONFIG_USB_SERIAL_QUALCOMM=m
CONFIG_USB_SERIAL_SPCP8X5=m
CONFIG_USB_SERIAL_HP4X=m
CONFIG_USB_SERIAL_SAFE=m
# CONFIG_USB_SERIAL_SAFE_PADDED is not set
CONFIG_USB_SERIAL_SIEMENS_MPI=m
CONFIG_USB_SERIAL_SIERRAWIRELESS=m
CONFIG_USB_SERIAL_SYMBOL=m
CONFIG_USB_SERIAL_TI=m
CONFIG_USB_SERIAL_CYBERJACK=m
CONFIG_USB_SERIAL_XIRCOM=m
CONFIG_USB_SERIAL_OPTION=m
CONFIG_USB_SERIAL_OMNINET=m
CONFIG_USB_SERIAL_OPTICON=m
CONFIG_USB_SERIAL_DEBUG=m

#
# USB Miscellaneous drivers
#
CONFIG_USB_EMI62=m
CONFIG_USB_EMI26=m
CONFIG_USB_ADUTUX=m
CONFIG_USB_SEVSEG=m
CONFIG_USB_RIO500=m
CONFIG_USB_LEGOTOWER=m
CONFIG_USB_LCD=m
CONFIG_USB_BERRY_CHARGE=m
CONFIG_USB_LED=m
CONFIG_USB_CYPRESS_CY7C63=m
CONFIG_USB_CYTHERM=m
CONFIG_USB_IDMOUSE=m
CONFIG_USB_FTDI_ELAN=m
CONFIG_USB_APPLEDISPLAY=m
CONFIG_USB_SISUSBVGA=m
# CONFIG_USB_SISUSBVGA_CON is not set
CONFIG_USB_LD=m
CONFIG_USB_TRANCEVIBRATOR=m
CONFIG_USB_IOWARRIOR=m
CONFIG_USB_TEST=m
CONFIG_USB_ISIGHTFW=m
CONFIG_USB_VST=m
CONFIG_USB_ATM=m
CONFIG_USB_SPEEDTOUCH=m
CONFIG_USB_CXACRU=m
CONFIG_USB_UEAGLEATM=m
CONFIG_USB_XUSBATM=m
CONFIG_USB_GADGET=m
# CONFIG_USB_GADGET_DEBUG is not set
# CONFIG_USB_GADGET_DEBUG_FILES is not set
# CONFIG_USB_GADGET_DEBUG_FS is not set
CONFIG_USB_GADGET_VBUS_DRAW=2
CONFIG_USB_GADGET_SELECTED=y
# CONFIG_USB_GADGET_AT91 is not set
# CONFIG_USB_GADGET_ATMEL_USBA is not set
# CONFIG_USB_GADGET_FSL_USB2 is not set
# CONFIG_USB_GADGET_LH7A40X is not set
# CONFIG_USB_GADGET_OMAP is not set
# CONFIG_USB_GADGET_PXA25X is not set
# CONFIG_USB_GADGET_R8A66597 is not set
# CONFIG_USB_GADGET_PXA27X is not set
# CONFIG_USB_GADGET_S3C_HSOTG is not set
# CONFIG_USB_GADGET_IMX is not set
# CONFIG_USB_GADGET_S3C2410 is not set
# CONFIG_USB_GADGET_M66592 is not set
# CONFIG_USB_GADGET_AMD5536UDC is not set
# CONFIG_USB_GADGET_FSL_QE is not set
# CONFIG_USB_GADGET_CI13XXX is not set
# CONFIG_USB_GADGET_NET2280 is not set
# CONFIG_USB_GADGET_GOKU is not set
# CONFIG_USB_GADGET_LANGWELL is not set
CONFIG_USB_GADGET_DUMMY_HCD=y
CONFIG_USB_DUMMY_HCD=m
CONFIG_USB_GADGET_DUALSPEED=y
CONFIG_USB_ZERO=m
CONFIG_USB_AUDIO=m
CONFIG_USB_ETH=m
CONFIG_USB_ETH_RNDIS=y
# CONFIG_USB_ETH_EEM is not set
CONFIG_USB_GADGETFS=m
CONFIG_USB_FILE_STORAGE=m
# CONFIG_USB_FILE_STORAGE_TEST is not set
CONFIG_USB_G_SERIAL=m
CONFIG_USB_MIDI_GADGET=m
CONFIG_USB_G_PRINTER=m
CONFIG_USB_CDC_COMPOSITE=m

#
# OTG and related infrastructure
#
CONFIG_USB_OTG_UTILS=y
CONFIG_USB_GPIO_VBUS=m
CONFIG_TWL4030_USB=m
CONFIG_NOP_USB_XCEIV=m
CONFIG_UWB=m
CONFIG_UWB_HWA=m
CONFIG_UWB_WHCI=m
CONFIG_UWB_WLP=m
CONFIG_UWB_I1480U=m
CONFIG_UWB_I1480U_WLP=m
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set
# CONFIG_MMC_UNSAFE_RESUME is not set

#
# MMC/SD/SDIO Card Drivers
#
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_BOUNCE=y
CONFIG_SDIO_UART=m
# CONFIG_MMC_TEST is not set

#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=m
CONFIG_MMC_SDHCI_PCI=m
CONFIG_MMC_RICOH_MMC=m
CONFIG_MMC_SDHCI_PLTFM=m
CONFIG_MMC_WBSD=m
# CONFIG_MMC_AT91 is not set
# CONFIG_MMC_ATMELMCI is not set
CONFIG_MMC_TIFM_SD=m
CONFIG_MMC_SPI=m
CONFIG_MMC_SDRICOH_CS=m
CONFIG_MMC_CB710=m
CONFIG_MMC_VIA_SDMMC=m
CONFIG_MEMSTICK=m
# CONFIG_MEMSTICK_DEBUG is not set

#
# MemoryStick drivers
#
# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
CONFIG_MSPRO_BLOCK=m

#
# MemoryStick Host Controller Drivers
#
CONFIG_MEMSTICK_TIFM_MS=m
CONFIG_MEMSTICK_JMICRON_38X=m
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=m

#
# LED drivers
#
CONFIG_LEDS_ALIX2=m
CONFIG_LEDS_PCA9532=m
CONFIG_LEDS_GPIO=m
CONFIG_LEDS_GPIO_PLATFORM=y
CONFIG_LEDS_LP3944=m
# CONFIG_LEDS_CLEVO_MAIL is not set
CONFIG_LEDS_PCA955X=m
CONFIG_LEDS_WM831X_STATUS=m
CONFIG_LEDS_WM8350=m
CONFIG_LEDS_DA903X=m
CONFIG_LEDS_DAC124S085=m
CONFIG_LEDS_BD2802=m

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
CONFIG_LEDS_TRIGGER_TIMER=m
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
CONFIG_LEDS_TRIGGER_GPIO=m
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m

#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_ACCESSIBILITY is not set
CONFIG_INFINIBAND=m
CONFIG_INFINIBAND_USER_MAD=m
CONFIG_INFINIBAND_USER_ACCESS=m
CONFIG_INFINIBAND_USER_MEM=y
CONFIG_INFINIBAND_ADDR_TRANS=y
CONFIG_INFINIBAND_MTHCA=m
CONFIG_INFINIBAND_MTHCA_DEBUG=y
CONFIG_INFINIBAND_IPATH=m
CONFIG_INFINIBAND_AMSO1100=m
CONFIG_INFINIBAND_AMSO1100_DEBUG=y
CONFIG_INFINIBAND_CXGB3=m
# CONFIG_INFINIBAND_CXGB3_DEBUG is not set
CONFIG_MLX4_INFINIBAND=m
# CONFIG_INFINIBAND_NES is not set
CONFIG_INFINIBAND_IPOIB=m
CONFIG_INFINIBAND_IPOIB_CM=y
CONFIG_INFINIBAND_IPOIB_DEBUG=y
# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
CONFIG_INFINIBAND_SRP=m
CONFIG_INFINIBAND_ISER=m
CONFIG_EDAC=y

#
# Reporting subsystems
#
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_DECODE_MCE=m
CONFIG_EDAC_MM_EDAC=m
CONFIG_EDAC_AMD64=m
# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set
CONFIG_EDAC_E752X=m
CONFIG_EDAC_I82975X=m
CONFIG_EDAC_I3000=m
CONFIG_EDAC_I3200=m
CONFIG_EDAC_X38=m
CONFIG_EDAC_I5400=m
CONFIG_EDAC_I5000=m
CONFIG_EDAC_I5100=m
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
CONFIG_RTC_INTF_DEV_UIE_EMUL=y
CONFIG_RTC_DRV_TEST=m

#
# I2C RTC drivers
#
CONFIG_RTC_DRV_DS1307=m
CONFIG_RTC_DRV_DS1374=m
CONFIG_RTC_DRV_DS1672=m
CONFIG_RTC_DRV_MAX6900=m
CONFIG_RTC_DRV_RS5C372=m
CONFIG_RTC_DRV_ISL1208=m
CONFIG_RTC_DRV_X1205=m
CONFIG_RTC_DRV_PCF8563=m
CONFIG_RTC_DRV_PCF8583=m
CONFIG_RTC_DRV_M41T80=m
CONFIG_RTC_DRV_M41T80_WDT=y
CONFIG_RTC_DRV_TWL4030=m
CONFIG_RTC_DRV_S35390A=m
CONFIG_RTC_DRV_FM3130=m
CONFIG_RTC_DRV_RX8581=m
CONFIG_RTC_DRV_RX8025=m

#
# SPI RTC drivers
#
CONFIG_RTC_DRV_M41T94=m
CONFIG_RTC_DRV_DS1305=m
CONFIG_RTC_DRV_DS1390=m
CONFIG_RTC_DRV_MAX6902=m
CONFIG_RTC_DRV_R9701=m
CONFIG_RTC_DRV_RS5C348=m
CONFIG_RTC_DRV_DS3234=m
CONFIG_RTC_DRV_PCF2123=m

#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
CONFIG_RTC_DRV_DS1286=m
CONFIG_RTC_DRV_DS1511=m
CONFIG_RTC_DRV_DS1553=m
CONFIG_RTC_DRV_DS1742=m
CONFIG_RTC_DRV_STK17TA8=m
CONFIG_RTC_DRV_M48T86=m
CONFIG_RTC_DRV_M48T35=m
CONFIG_RTC_DRV_M48T59=m
CONFIG_RTC_DRV_BQ4802=m
CONFIG_RTC_DRV_V3020=m
CONFIG_RTC_DRV_WM831X=m
CONFIG_RTC_DRV_WM8350=m
CONFIG_RTC_DRV_PCF50633=m
CONFIG_RTC_DRV_AB3100=m

#
# on-CPU RTC drivers
#
CONFIG_DMADEVICES=y

#
# DMA Devices
#
CONFIG_ASYNC_TX_DISABLE_CHANNEL_SWITCH=y
CONFIG_INTEL_IOATDMA=m
CONFIG_DMA_ENGINE=y

#
# DMA Clients
#
CONFIG_NET_DMA=y
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST is not set
CONFIG_DCA=m
CONFIG_AUXDISPLAY=y
CONFIG_KS0108=m
CONFIG_KS0108_PORT=0x378
CONFIG_KS0108_DELAY=2
CONFIG_CFAG12864B=m
CONFIG_CFAG12864B_RATE=20
CONFIG_UIO=m
CONFIG_UIO_CIF=m
CONFIG_UIO_PDRV=m
CONFIG_UIO_PDRV_GENIRQ=m
CONFIG_UIO_SMX=m
CONFIG_UIO_AEC=m
CONFIG_UIO_SERCOS3=m
CONFIG_UIO_PCI_GENERIC=m

#
# TI VLYNQ
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SCRUB_PAGES=y
CONFIG_XEN_DEV_EVTCHN=y
CONFIG_XEN_BACKEND=y
CONFIG_XEN_NETDEV_BACKEND=y
CONFIG_XEN_BLKDEV_BACKEND=y
CONFIG_XEN_BLKDEV_TAP=y
CONFIG_XEN_BLKBACK_PAGEMAP=y
CONFIG_XEN_PCIDEV_BACKEND=y
# CONFIG_XEN_PCIDEV_BACKEND_VPCI is not set
CONFIG_XEN_PCIDEV_BACKEND_PASS=y
# CONFIG_XEN_PCIDEV_BACKEND_SLOT is not set
# CONFIG_XEN_PCIDEV_BACKEND_CONTROLLER is not set
CONFIG_XEN_PCIDEV_BE_DEBUG=y
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
CONFIG_XEN_GNTDEV=y
CONFIG_XEN_S3=y
CONFIG_ACPI_PROCESSOR_XEN=y
CONFIG_STAGING=y
# CONFIG_STAGING_EXCLUDE_BUILD is not set
CONFIG_ET131X=m
# CONFIG_ET131X_DEBUG is not set
CONFIG_SLICOSS=m
CONFIG_VIDEO_GO7007=m
CONFIG_VIDEO_GO7007_USB=m
CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m
CONFIG_VIDEO_GO7007_OV7640=m
CONFIG_VIDEO_GO7007_SAA7113=m
CONFIG_VIDEO_GO7007_SAA7115=m
CONFIG_VIDEO_GO7007_TW9903=m
CONFIG_VIDEO_GO7007_UDA1342=m
CONFIG_VIDEO_GO7007_SONY_TUNER=m
CONFIG_VIDEO_GO7007_TW2804=m
CONFIG_VIDEO_CX25821=m
CONFIG_VIDEO_CX25821_ALSA=m
CONFIG_USB_IP_COMMON=m
CONFIG_USB_IP_VHCI_HCD=m
CONFIG_USB_IP_HOST=m
CONFIG_W35UND=m
CONFIG_PRISM2_USB=m
CONFIG_ECHO=m
CONFIG_POCH=m
# CONFIG_OTUS is not set
CONFIG_RT2860=m
CONFIG_RT2870=m
CONFIG_RT3090=m
CONFIG_COMEDI=m
# CONFIG_COMEDI_DEBUG is not set
CONFIG_COMEDI_PCI_DRIVERS=m
CONFIG_COMEDI_PCMCIA_DRIVERS=m
CONFIG_COMEDI_USB_DRIVERS=m
CONFIG_ASUS_OLED=m
CONFIG_PANEL=m
CONFIG_PANEL_PARPORT=0
CONFIG_PANEL_PROFILE=5
# CONFIG_PANEL_CHANGE_MESSAGE is not set
CONFIG_ALTERA_PCIE_CHDMA=m
CONFIG_RTL8187SE=m
CONFIG_RTL8192SU=m
CONFIG_RTL8192E=m
CONFIG_TRANZPORT=m

#
# Android
#

#
# Qualcomm MSM Camera And Video
#

#
# Camera Sensor Selection
#
CONFIG_INPUT_GPIO=m
CONFIG_DST=m
# CONFIG_DST_DEBUG is not set
CONFIG_POHMELFS=m
# CONFIG_POHMELFS_DEBUG is not set
CONFIG_POHMELFS_CRYPTO=y
CONFIG_B3DFG=m
CONFIG_IDE_PHISON=m
CONFIG_PLAN9AUTH=m
CONFIG_LINE6_USB=m
CONFIG_DRM_RADEON_KMS=y
CONFIG_USB_SERIAL_QUATECH2=m
CONFIG_USB_SERIAL_QUATECH_USB2=m
# CONFIG_VT6655 is not set
CONFIG_VT6656=m
CONFIG_FB_UDL=m
CONFIG_HYPERV=m
CONFIG_HYPERV_STORAGE=m
CONFIG_HYPERV_BLOCK=m
CONFIG_HYPERV_NET=m
CONFIG_VME_BUS=m

#
# VME Bridge Drivers
#
CONFIG_VME_CA91CX42=m
CONFIG_VME_TSI148=m

#
# VME Device Drivers
#
CONFIG_VME_USER=m

#
# RAR Register Driver
#
CONFIG_RAR_REGISTER=m
CONFIG_DX_SEP=m
CONFIG_IIO=m
# CONFIG_IIO_RING_BUFFER is not set
# CONFIG_IIO_TRIGGER is not set

#
# Accelerometers
#
CONFIG_KXSD9=m
CONFIG_LIS3L02DQ=m

#
# Analog to digital convertors
#
CONFIG_MAX1363=m

#
# Light sensors
#
CONFIG_TSL2561=m

#
# Triggers - standalone
#
CONFIG_X86_PLATFORM_DEVICES=y
CONFIG_ACER_WMI=m
CONFIG_ACERHDF=m
CONFIG_ASUS_LAPTOP=m
CONFIG_DELL_WMI=m
CONFIG_FUJITSU_LAPTOP=m
# CONFIG_FUJITSU_LAPTOP_DEBUG is not set
CONFIG_HP_WMI=m
CONFIG_MSI_LAPTOP=m
CONFIG_PANASONIC_LAPTOP=m
CONFIG_COMPAL_LAPTOP=m
CONFIG_SONY_LAPTOP=m
CONFIG_SONYPI_COMPAT=y
CONFIG_THINKPAD_ACPI=m
CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y
# CONFIG_THINKPAD_ACPI_DEBUG is not set
# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set
CONFIG_THINKPAD_ACPI_VIDEO=y
CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
CONFIG_INTEL_MENLOW=m
CONFIG_EEEPC_LAPTOP=m
CONFIG_ACPI_WMI=y
# CONFIG_ACPI_ASUS is not set
CONFIG_TOPSTAR_LAPTOP=m
CONFIG_ACPI_TOSHIBA=m

#
# Firmware Drivers
#
CONFIG_EDD=y
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
CONFIG_EFI_VARS=y
CONFIG_DELL_RBU=m
CONFIG_DCDBAS=m
CONFIG_DMIID=y
CONFIG_ISCSI_IBFT_FIND=y
CONFIG_ISCSI_IBFT=m

#
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
CONFIG_EXT3_FS_XATTR=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_EXT3_FS_SECURITY=y
CONFIG_EXT4_FS=y
CONFIG_EXT4_FS_XATTR=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
CONFIG_REISERFS_FS=m
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
CONFIG_REISERFS_FS_XATTR=y
CONFIG_REISERFS_FS_POSIX_ACL=y
CONFIG_REISERFS_FS_SECURITY=y
CONFIG_JFS_FS=m
CONFIG_JFS_POSIX_ACL=y
CONFIG_JFS_SECURITY=y
# CONFIG_JFS_DEBUG is not set
CONFIG_JFS_STATISTICS=y
CONFIG_FS_POSIX_ACL=y
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_XFS_DEBUG is not set
CONFIG_GFS2_FS=m
CONFIG_GFS2_FS_LOCKING_DLM=y
CONFIG_OCFS2_FS=m
CONFIG_OCFS2_FS_O2CB=m
CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m
CONFIG_OCFS2_FS_STATS=y
CONFIG_OCFS2_DEBUG_MASKLOG=y
# CONFIG_OCFS2_DEBUG_FS is not set
CONFIG_OCFS2_FS_POSIX_ACL=y
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
CONFIG_NILFS2_FS=m
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
CONFIG_QUOTA_TREE=m
CONFIG_QFMT_V1=m
CONFIG_QFMT_V2=m
CONFIG_QUOTACTL=y
CONFIG_AUTOFS_FS=m
CONFIG_AUTOFS4_FS=m
CONFIG_FUSE_FS=y
CONFIG_CUSE=m
CONFIG_GENERIC_ACL=y

#
# Caches
#
CONFIG_FSCACHE=m
# CONFIG_FSCACHE_STATS is not set
# CONFIG_FSCACHE_HISTOGRAM is not set
# CONFIG_FSCACHE_DEBUG is not set
# CONFIG_FSCACHE_OBJECT_LIST is not set
CONFIG_CACHEFILES=m
# CONFIG_CACHEFILES_DEBUG is not set
# CONFIG_CACHEFILES_HISTOGRAM is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
# CONFIG_NTFS_RW is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_CONFIGFS_FS=m
CONFIG_MISC_FILESYSTEMS=y
CONFIG_ADFS_FS=m
# CONFIG_ADFS_FS_RW is not set
CONFIG_AFFS_FS=m
CONFIG_ECRYPT_FS=y
CONFIG_HFS_FS=m
CONFIG_HFSPLUS_FS=m
CONFIG_BEFS_FS=m
# CONFIG_BEFS_DEBUG is not set
CONFIG_BFS_FS=m
CONFIG_EFS_FS=m
CONFIG_JFFS2_FS=m
CONFIG_JFFS2_FS_DEBUG=0
CONFIG_JFFS2_FS_WRITEBUFFER=y
# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
# CONFIG_JFFS2_SUMMARY is not set
# CONFIG_JFFS2_FS_XATTR is not set
CONFIG_JFFS2_COMPRESSION_OPTIONS=y
CONFIG_JFFS2_ZLIB=y
CONFIG_JFFS2_LZO=y
CONFIG_JFFS2_RTIME=y
# CONFIG_JFFS2_RUBIN is not set
# CONFIG_JFFS2_CMODE_NONE is not set
# CONFIG_JFFS2_CMODE_PRIORITY is not set
# CONFIG_JFFS2_CMODE_SIZE is not set
CONFIG_JFFS2_CMODE_FAVOURLZO=y
CONFIG_UBIFS_FS=m
CONFIG_UBIFS_FS_XATTR=y
# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set
CONFIG_UBIFS_FS_LZO=y
CONFIG_UBIFS_FS_ZLIB=y
# CONFIG_UBIFS_FS_DEBUG is not set
CONFIG_CRAMFS=m
CONFIG_SQUASHFS=m
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
CONFIG_VXFS_FS=m
CONFIG_MINIX_FS=m
CONFIG_OMFS_FS=m
CONFIG_HPFS_FS=m
CONFIG_QNX4FS_FS=m
CONFIG_ROMFS_FS=m
CONFIG_ROMFS_BACKED_BY_BLOCK=y
# CONFIG_ROMFS_BACKED_BY_MTD is not set
# CONFIG_ROMFS_BACKED_BY_BOTH is not set
CONFIG_ROMFS_ON_BLOCK=y
CONFIG_SYSV_FS=m
CONFIG_UFS_FS=m
# CONFIG_UFS_FS_WRITE is not set
# CONFIG_UFS_DEBUG is not set
CONFIG_EXOFS_FS=m
# CONFIG_EXOFS_DEBUG is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=m
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_V4_1 is not set
# CONFIG_NFS_FSCACHE is not set
CONFIG_NFSD=m
CONFIG_NFSD_V2_ACL=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_V3_ACL=y
CONFIG_NFSD_V4=y
CONFIG_LOCKD=m
CONFIG_LOCKD_V4=y
CONFIG_EXPORTFS=m
CONFIG_NFS_ACL_SUPPORT=m
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=m
CONFIG_SUNRPC_GSS=m
CONFIG_SUNRPC_XPRT_RDMA=m
CONFIG_RPCSEC_GSS_KRB5=m
CONFIG_RPCSEC_GSS_SPKM3=m
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT is not set
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
CONFIG_CIFS_WEAK_PW_HASH=y
CONFIG_CIFS_UPCALL=y
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
# CONFIG_CIFS_DEBUG2 is not set
CONFIG_CIFS_DFS_UPCALL=y
CONFIG_CIFS_EXPERIMENTAL=y
CONFIG_NCP_FS=m
CONFIG_NCPFS_PACKET_SIGNING=y
CONFIG_NCPFS_IOCTL_LOCKING=y
CONFIG_NCPFS_STRONG=y
CONFIG_NCPFS_NFS_NS=y
CONFIG_NCPFS_OS2_NS=y
# CONFIG_NCPFS_SMALLDOS is not set
CONFIG_NCPFS_NLS=y
CONFIG_NCPFS_EXTRAS=y
CONFIG_CODA_FS=m
CONFIG_AFS_FS=m
# CONFIG_AFS_DEBUG is not set
# CONFIG_AFS_FSCACHE is not set
CONFIG_9P_FS=m
# CONFIG_9P_FSCACHE is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
# CONFIG_ACORN_PARTITION_CUMANA is not set
# CONFIG_ACORN_PARTITION_EESOX is not set
CONFIG_ACORN_PARTITION_ICS=y
# CONFIG_ACORN_PARTITION_ADFS is not set
# CONFIG_ACORN_PARTITION_POWERTEC is not set
CONFIG_ACORN_PARTITION_RISCIX=y
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_SYSV68_PARTITION=y
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="cp437"
CONFIG_NLS_CODEPAGE_437=m
CONFIG_NLS_CODEPAGE_737=m
CONFIG_NLS_CODEPAGE_775=m
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=m
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=m
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=m
CONFIG_NLS_CODEPAGE_863=m
CONFIG_NLS_CODEPAGE_864=m
CONFIG_NLS_CODEPAGE_865=m
CONFIG_NLS_CODEPAGE_866=m
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
CONFIG_NLS_CODEPAGE_932=m
CONFIG_NLS_CODEPAGE_949=m
CONFIG_NLS_CODEPAGE_874=m
CONFIG_NLS_ISO8859_8=m
CONFIG_NLS_CODEPAGE_1250=m
CONFIG_NLS_CODEPAGE_1251=m
CONFIG_NLS_ASCII=m
CONFIG_NLS_ISO8859_1=m
CONFIG_NLS_ISO8859_2=m
CONFIG_NLS_ISO8859_3=m
CONFIG_NLS_ISO8859_4=m
CONFIG_NLS_ISO8859_5=m
CONFIG_NLS_ISO8859_6=m
CONFIG_NLS_ISO8859_7=m
CONFIG_NLS_ISO8859_9=m
CONFIG_NLS_ISO8859_13=m
CONFIG_NLS_ISO8859_14=m
CONFIG_NLS_ISO8859_15=m
CONFIG_NLS_KOI8_R=m
CONFIG_NLS_KOI8_U=m
CONFIG_NLS_UTF8=m
CONFIG_DLM=m
# CONFIG_DLM_DEBUG is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=1024
CONFIG_MAGIC_SYSRQ=y
# CONFIG_STRIP_ASM_SYMS is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
CONFIG_DEBUG_KERNEL=y
# CONFIG_DEBUG_SHIRQ is not set
CONFIG_DETECT_SOFTLOCKUP=y
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
CONFIG_DETECT_HUNG_TASK=y
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_RT_MUTEX_TESTER is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_MUTEXES is not set
# CONFIG_DEBUG_LOCK_ALLOC is not set
# CONFIG_PROVE_LOCKING is not set
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_WRITECOUNT is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_LIST is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CREDENTIALS is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_RCU_TORTURE_TEST is not set
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# CONFIG_LKDTM is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FTRACE_NMI_ENTER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_RING_BUFFER=y
CONFIG_FTRACE_NMI_ENTER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_RING_BUFFER_ALLOW_SWAP=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_SYSPROF_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_FTRACE_SYSCALLS is not set
# CONFIG_BOOT_TRACER is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
# CONFIG_POWER_TRACER is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_KMEMTRACE is not set
# CONFIG_WORKQUEUE_TRACER is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_DYNAMIC_FTRACE=y
# CONFIG_FUNCTION_PROFILER is not set
CONFIG_FTRACE_MCOUNT_RECORD=y
# CONFIG_FTRACE_STARTUP_TEST is not set
CONFIG_MMIOTRACE=y
# CONFIG_MMIOTRACE_TEST is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set
# CONFIG_DYNAMIC_DEBUG is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
# CONFIG_KGDB_TESTS is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
CONFIG_STRICT_DEVMEM=y
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
# CONFIG_DEBUG_STACKOVERFLOW is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_RODATA_TEST is not set
# CONFIG_DEBUG_NX_TEST is not set
# CONFIG_IOMMU_DEBUG is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=1
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
# CONFIG_SECURITY_NETWORK_XFRM is not set
CONFIG_SECURITY_PATH=y
CONFIG_SECURITY_FILE_CAPABILITIES=y
# CONFIG_SECURITY_ROOTPLUG is not set
CONFIG_LSM_MMAP_MIN_ADDR=0
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
CONFIG_SECURITY_SMACK=y
CONFIG_SECURITY_TOMOYO=y
# CONFIG_IMA is not set
CONFIG_XOR_BLOCKS=m
CONFIG_ASYNC_CORE=m
CONFIG_ASYNC_MEMCPY=m
CONFIG_ASYNC_XOR=m
CONFIG_ASYNC_PQ=m
CONFIG_ASYNC_RAID6_RECOV=m
CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y
CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_FIPS=y
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=m
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=m
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_GF128MUL=m
CONFIG_CRYPTO_NULL=m
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=m
CONFIG_CRYPTO_AUTHENC=m
CONFIG_CRYPTO_TEST=m

#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=m
CONFIG_CRYPTO_SEQIV=m

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=m
CONFIG_CRYPTO_CTS=m
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=m
CONFIG_CRYPTO_PCBC=m
CONFIG_CRYPTO_XTS=m
CONFIG_CRYPTO_FPU=m

#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=m
CONFIG_CRYPTO_VMAC=m

#
# Digest
#
CONFIG_CRYPTO_CRC32C=m
CONFIG_CRYPTO_CRC32C_INTEL=m
CONFIG_CRYPTO_GHASH=m
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_RMD128=m
CONFIG_CRYPTO_RMD160=m
CONFIG_CRYPTO_RMD256=m
CONFIG_CRYPTO_RMD320=m
CONFIG_CRYPTO_SHA1=m
CONFIG_CRYPTO_SHA256=m
CONFIG_CRYPTO_SHA512=m
CONFIG_CRYPTO_TGR192=m
CONFIG_CRYPTO_WP512=m

#
# Ciphers
#
CONFIG_CRYPTO_AES=m
CONFIG_CRYPTO_AES_X86_64=m
CONFIG_CRYPTO_AES_NI_INTEL=m
CONFIG_CRYPTO_ANUBIS=m
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_CAMELLIA=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_DES=m
CONFIG_CRYPTO_FCRYPT=m
CONFIG_CRYPTO_KHAZAD=m
CONFIG_CRYPTO_SALSA20=m
CONFIG_CRYPTO_SALSA20_X86_64=m
CONFIG_CRYPTO_SEED=m
CONFIG_CRYPTO_SERPENT=m
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_TWOFISH_COMMON=m
CONFIG_CRYPTO_TWOFISH_X86_64=m

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=m
CONFIG_CRYPTO_ZLIB=m
CONFIG_CRYPTO_LZO=m

#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=m
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
CONFIG_CRYPTO_DEV_PADLOCK_AES=m
CONFIG_CRYPTO_DEV_PADLOCK_SHA=m
CONFIG_CRYPTO_DEV_HIFN_795X=m
CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_APIC_ARCHITECTURE=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
CONFIG_KVM_INTEL=m
CONFIG_KVM_AMD=m
CONFIG_VIRTIO=y
CONFIG_VIRTIO_RING=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_BALLOON=m
CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_FIND_NEXT_BIT=y
CONFIG_GENERIC_FIND_LAST_BIT=y
CONFIG_CRC_CCITT=m
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
CONFIG_CRC7=m
CONFIG_LIBCRC32C=m
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=m
CONFIG_LZO_COMPRESS=m
CONFIG_LZO_DECOMPRESS=m
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_REED_SOLOMON=m
CONFIG_REED_SOLOMON_DEC16=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=m
CONFIG_TEXTSEARCH_BM=m
CONFIG_TEXTSEARCH_FSM=m
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_NLATTR=y

[-- Attachment #3: cpuinfo.txt --]
[-- Type: text/plain, Size: 3344 bytes --]

processor	: 0
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 4
model name	: AMD Phenom(tm) II X4 940 Processor
stepping	: 2
cpu MHz		: 3013.594
cache size	: 512 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 4
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt
bogomips	: 6027.18
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

processor	: 1
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 4
model name	: AMD Phenom(tm) II X4 940 Processor
stepping	: 2
cpu MHz		: 3013.594
cache size	: 512 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 4
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt
bogomips	: 6027.54
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

processor	: 2
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 4
model name	: AMD Phenom(tm) II X4 940 Processor
stepping	: 2
cpu MHz		: 3013.594
cache size	: 512 KB
physical id	: 0
siblings	: 4
core id		: 3
cpu cores	: 4
apicid		: 2
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt
bogomips	: 6027.54
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

processor	: 3
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 4
model name	: AMD Phenom(tm) II X4 940 Processor
stepping	: 2
cpu MHz		: 3013.594
cache size	: 512 KB
physical id	: 0
siblings	: 4
core id		: 2
cpu cores	: 4
apicid		: 3
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc rep_good nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt
bogomips	: 6027.54
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate


[-- Attachment #4: Type: text/plain, Size: 138 bytes --]

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

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-05-03 17:18   ` Gerry Reno
@ 2010-05-03 20:36     ` Konrad Rzeszutek Wilk
  2010-05-03 21:23       ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-05-03 20:36 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

On Mon, May 03, 2010 at 01:18:44PM -0400, Gerry Reno wrote:
> On 05/03/2010 12:18 PM, Konrad Rzeszutek Wilk wrote:
>> On Fri, Apr 23, 2010 at 01:50:40PM -0400, Gerry Reno wrote:
>>    
>>> I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my
>>> hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that
>>> kernel had issues with rxchecksumming.  So I upgraded the server to
>>> lucid and am now trying to compile a new pv_ops dom0 kernel for it.
>>>
>>> Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops
>>> dom0 kernel twice.  Once from the config in the email Lucid pv_ops dom0
>>> howto and once from the lucid server config modified by adding all the
>>>      
>> Gerry,
>>
>> Can you attach your .config file ? I am not seeing it anywhere in the
>> thread. Also is this x86_64 or i386 build? If it is i386 do you have
>> CONFIG_NUMA enabled? If so, what happens if you disable that?
>>
>> Can you also tell me which Phenom it is? 940?
>>
>>    
>
> Konrad, I attached my .config file and /proc/cpuinfo.  The build was  
> x86_64.  The cpu is AMD Phenom II x4 940.

When I use your .config I get these:

[   10.781056] ------------[ cut here ]------------
[   10.785736] WARNING: at
/home/konrad/git/neb.64/linux-up/mm/vmalloc.c:1AMD-BOOT #7
[   10.790016] Call Trace:
[   10.790016]  [<ffffffff810660cb>] warn_slowpath_common+0x7b/0xc0
[   10.790016]  [<ffffffff81066124>] warn_slowpath_null+0x14/0x20
[   10.790016]  [<ffffffff8111bb19>] vmap_page_range_noflush+0x2d9/0x370
[   10.790016]  [<ffffffff8111cfaf>] ? __vmalloc_area_node+0x5f/0x190
[   10.790016]  [<ffffffff8100fadd>] ?  xen_force_evtchn_callback+0xd/0x10
[   10.790016]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
[   10.790016]  [<ffffffff8111d050>] __vmalloc_area_node+0x100/0x190
[   10.790016]  [<ffffffff8111d0f7>] __vmalloc_area+0x17/0x20
[   10.790016]  [<ffffffff8103592e>] module_alloc+0x5e/0x60
[   10.790016]  [<ffffffff8109b8c6>] module_alloc_update_bounds+0x16/0x50
[   10.790016]  [<ffffffff8109e479>] load_module+0x989/0x1ce0
[   10.790016]  [<ffffffff8113f8a5>] ? vfs_read+0xb5/0x1a0
[   10.790016]  [<ffffffff8109f849>] sys_init_module+0x79/0x250
[   10.790016]  [<ffffffff810140f2>] system_call_fastpath+0x16/0x1b
[   10.790016] ---[ end trace a7919e7f17c0a727 ]---
FATAL: Error inserting xen_kbdfront
(/lib/modules/2.6.32.12AMD-BOOT/kernel/drivers/input/xen-kbdfront.ko):
Cannot allocate memory

Is this about the same thing you see? (the calltrace being of interest
here).

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-05-03 20:36     ` Konrad Rzeszutek Wilk
@ 2010-05-03 21:23       ` Gerry Reno
  2010-05-05  0:42         ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-03 21:23 UTC (permalink / raw)
  To: xen-devel

On 05/03/2010 04:36 PM, Konrad Rzeszutek Wilk wrote:
> On Mon, May 03, 2010 at 01:18:44PM -0400, Gerry Reno wrote:
>    
>> On 05/03/2010 12:18 PM, Konrad Rzeszutek Wilk wrote:
>>      
>>> On Fri, Apr 23, 2010 at 01:50:40PM -0400, Gerry Reno wrote:
>>>
>>>        
>>>> I previously had the pv_ops dom0 2.6.31.6 kernel built and running on my
>>>> hardware (amd phenom ii x4 quad-core) just fine under karmic.  But that
>>>> kernel had issues with rxchecksumming.  So I upgraded the server to
>>>> lucid and am now trying to compile a new pv_ops dom0 kernel for it.
>>>>
>>>> Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) pv_ops
>>>> dom0 kernel twice.  Once from the config in the email Lucid pv_ops dom0
>>>> howto and once from the lucid server config modified by adding all the
>>>>
>>>>          
>>> Gerry,
>>>
>>> Can you attach your .config file ? I am not seeing it anywhere in the
>>> thread. Also is this x86_64 or i386 build? If it is i386 do you have
>>> CONFIG_NUMA enabled? If so, what happens if you disable that?
>>>
>>> Can you also tell me which Phenom it is? 940?
>>>
>>>
>>>        
>> Konrad, I attached my .config file and /proc/cpuinfo.  The build was
>> x86_64.  The cpu is AMD Phenom II x4 940.
>>      
> When I use your .config I get these:
>
> [   10.781056] ------------[ cut here ]------------
> [   10.785736] WARNING: at
> /home/konrad/git/neb.64/linux-up/mm/vmalloc.c:1AMD-BOOT #7
> [   10.790016] Call Trace:
> [   10.790016]  [<ffffffff810660cb>] warn_slowpath_common+0x7b/0xc0
> [   10.790016]  [<ffffffff81066124>] warn_slowpath_null+0x14/0x20
> [   10.790016]  [<ffffffff8111bb19>] vmap_page_range_noflush+0x2d9/0x370
> [   10.790016]  [<ffffffff8111cfaf>] ? __vmalloc_area_node+0x5f/0x190
> [   10.790016]  [<ffffffff8100fadd>] ?  xen_force_evtchn_callback+0xd/0x10
> [   10.790016]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
> [   10.790016]  [<ffffffff8111d050>] __vmalloc_area_node+0x100/0x190
> [   10.790016]  [<ffffffff8111d0f7>] __vmalloc_area+0x17/0x20
> [   10.790016]  [<ffffffff8103592e>] module_alloc+0x5e/0x60
> [   10.790016]  [<ffffffff8109b8c6>] module_alloc_update_bounds+0x16/0x50
> [   10.790016]  [<ffffffff8109e479>] load_module+0x989/0x1ce0
> [   10.790016]  [<ffffffff8113f8a5>] ? vfs_read+0xb5/0x1a0
> [   10.790016]  [<ffffffff8109f849>] sys_init_module+0x79/0x250
> [   10.790016]  [<ffffffff810140f2>] system_call_fastpath+0x16/0x1b
> [   10.790016] ---[ end trace a7919e7f17c0a727 ]---
> FATAL: Error inserting xen_kbdfront
> (/lib/modules/2.6.32.12AMD-BOOT/kernel/drivers/input/xen-kbdfront.ko):
> Cannot allocate memory
>
> Is this about the same thing you see? (the calltrace being of interest
> here).
>
>    
The screen output goes by so fast I cannot tell if this call trace is in 
it.  I'm still waiting for a serial card to show up so I can capture the 
output.  When I boot the 2.6.32.10 kernel under Xen pv_ops dom0 it will 
either start showing "soft lockup" bugs or it just hangs after XENBUS: 
Unable to read cpu state.  If I boot the 2.6.32.10 kernel without Xen 
then it just hangs - no output at all.

-Gerry

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

* Re: Cannot load latest 2.6.32.10 kernel on AMD quad-core
  2010-05-03 21:23       ` Gerry Reno
@ 2010-05-05  0:42         ` Gerry Reno
  2010-05-05 17:54           ` AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-05  0:42 UTC (permalink / raw)
  To: xen-devel

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

On 05/03/2010 05:23 PM, Gerry Reno wrote:
> On 05/03/2010 04:36 PM, Konrad Rzeszutek Wilk wrote:
>> On Mon, May 03, 2010 at 01:18:44PM -0400, Gerry Reno wrote:
>>> On 05/03/2010 12:18 PM, Konrad Rzeszutek Wilk wrote:
>>>> On Fri, Apr 23, 2010 at 01:50:40PM -0400, Gerry Reno wrote:
>>>>
>>>>> I previously had the pv_ops dom0 2.6.31.6 kernel built and running 
>>>>> on my
>>>>> hardware (amd phenom ii x4 quad-core) just fine under karmic.  But 
>>>>> that
>>>>> kernel had issues with rxchecksumming.  So I upgraded the server to
>>>>> lucid and am now trying to compile a new pv_ops dom0 kernel for it.
>>>>>
>>>>> Now, yesterday I carefully built the latest 2.6.32.10(xen/stable) 
>>>>> pv_ops
>>>>> dom0 kernel twice.  Once from the config in the email Lucid pv_ops 
>>>>> dom0
>>>>> howto and once from the lucid server config modified by adding all 
>>>>> the
>>>>>
>>>> Gerry,
>>>>
>>>> Can you attach your .config file ? I am not seeing it anywhere in the
>>>> thread. Also is this x86_64 or i386 build? If it is i386 do you have
>>>> CONFIG_NUMA enabled? If so, what happens if you disable that?
>>>>
>>>> Can you also tell me which Phenom it is? 940?
>>>>
>>>>
>>> Konrad, I attached my .config file and /proc/cpuinfo.  The build was
>>> x86_64.  The cpu is AMD Phenom II x4 940.
>> When I use your .config I get these:
>>
>> [   10.781056] ------------[ cut here ]------------
>> [   10.785736] WARNING: at
>> /home/konrad/git/neb.64/linux-up/mm/vmalloc.c:1AMD-BOOT #7
>> [   10.790016] Call Trace:
>> [   10.790016]  [<ffffffff810660cb>] warn_slowpath_common+0x7b/0xc0
>> [   10.790016]  [<ffffffff81066124>] warn_slowpath_null+0x14/0x20
>> [   10.790016]  [<ffffffff8111bb19>] vmap_page_range_noflush+0x2d9/0x370
>> [   10.790016]  [<ffffffff8111cfaf>] ? __vmalloc_area_node+0x5f/0x190
>> [   10.790016]  [<ffffffff8100fadd>] ?  
>> xen_force_evtchn_callback+0xd/0x10
>> [   10.790016]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
>> [   10.790016]  [<ffffffff8111d050>] __vmalloc_area_node+0x100/0x190
>> [   10.790016]  [<ffffffff8111d0f7>] __vmalloc_area+0x17/0x20
>> [   10.790016]  [<ffffffff8103592e>] module_alloc+0x5e/0x60
>> [   10.790016]  [<ffffffff8109b8c6>] 
>> module_alloc_update_bounds+0x16/0x50
>> [   10.790016]  [<ffffffff8109e479>] load_module+0x989/0x1ce0
>> [   10.790016]  [<ffffffff8113f8a5>] ? vfs_read+0xb5/0x1a0
>> [   10.790016]  [<ffffffff8109f849>] sys_init_module+0x79/0x250
>> [   10.790016]  [<ffffffff810140f2>] system_call_fastpath+0x16/0x1b
>> [   10.790016] ---[ end trace a7919e7f17c0a727 ]---
>> FATAL: Error inserting xen_kbdfront
>> (/lib/modules/2.6.32.12AMD-BOOT/kernel/drivers/input/xen-kbdfront.ko):
>> Cannot allocate memory
>>
>> Is this about the same thing you see? (the calltrace being of interest
>> here).
>>
> The screen output goes by so fast I cannot tell if this call trace is 
> in it.  I'm still waiting for a serial card to show up so I can 
> capture the output.  When I boot the 2.6.32.10 kernel under Xen pv_ops 
> dom0 it will either start showing "soft lockup" bugs or it just hangs 
> after XENBUS: Unable to read cpu state.  If I boot the 2.6.32.10 
> kernel without Xen then it just hangs - no output at all.
>
> -Gerry
>
Finally, my serial port header cables showed up so I installed them and 
now have some console output.

Case 1: Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.10

After playing around with the order of the consoles on the xen and 
kernel lines I am able to get a login prompt but only after quite a long 
time (4-5 mins).  It seems like something is stealing processor cycles.  
And the behavior is not consistent, on different boots I get different 
errors at times.


Case 1: pv_ops domU kernel 2.6.32.10  (no xen dom0)

The kernel shows a lot of errors and just hangs.



Attached: console output for both cases plus menu.lst

-Gerry




[-- Attachment #2: AMD_pvops_domU_console.txt --]
[-- Type: text/plain, Size: 26267 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.10 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #12 SMP Sat Apr0
[    0.000000] Command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 consolet
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000afde0000 (usable)
[    0.000000]  BIOS-e820: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000230000000 (usable)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x230000 max_arch_pfn = 0x400000000
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] last_pfn = 0xafde0 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000afde0000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 0000000230000000 (usable)
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000afde0000
[    0.000000] init_memory_mapping: 0000000100000000-0000000230000000
[    0.000000] RAMDISK: 33d29000 - 37fef12a
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000230000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000230000000
[    0.000000]   NODE_DATA [000000000000b000 - 000000000000ffff]
[    0.000000]   bootmap [0000000000010000 -  0000000000055fff] pages 46
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0230000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #2 [0001000000 - 0001a51864]    TEXT DATA BSS ==> [0001000000 - 0001a51864]
[    0.000000]   #3 [0033d29000 - 0037fef12a]          RAMDISK ==> [0033d29000 - 0037fef12a]
[    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 - 0000100000]
[    0.000000]   #5 [0001a52000 - 0001a520fe]              BRK ==> [0001a52000 - 0001a520fe]
[    0.000000]   #6 [0000008000 - 000000a000]          PGTABLE ==> [0000008000 - 000000a000]
[    0.000000]   #7 [000000a000 - 000000b000]          PGTABLE ==> [000000a000 - 000000b000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00230000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000afde0
[    0.000000]     0: 0x00100000 -> 0x00230000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    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 low level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000afde0000 - 00000000afde3000
[    0.000000] PM: Registered nosave memory: 00000000afde3000 - 00000000afdf0000
[    0.000000] PM: Registered nosave memory: 00000000afdf0000 - 00000000afe00000
[    0.000000] PM: Registered nosave memory: 00000000afe00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at afe00000 (gap: afe00000:30200000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880008a00000 s91416 r8192 d23272 u524288
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1933972
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 t
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 20000000 size 32 MB
[    0.000000] Aperture pointing to e820 RAM. Ignoring.
[    0.000000] Memory: 7605344k/9175040k available (5523k kernel code, 1313304k absent, 256392k reserved, 3053k data, 8)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:440
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] allocated 78643200 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] HPET: 4 timers in total, 1 timers will be used for per-cpu timer
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 3013.747 MHz processor.
[    0.030006] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.48 BogoMIPS (lpj=3013743)
[    0.050017] Security Framework initialized
[    0.054134] SELinux:  Disabled at boot.
[    0.058452] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.063393] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.071575] Mount-cache hash table entries: 256
[    0.080121] Initializing cgroup subsys ns
[    0.084147] Initializing cgroup subsys cpuacct
[    0.090004] Initializing cgroup subsys memory
[    0.094384] Initializing cgroup subsys devices
[    0.100002] Initializing cgroup subsys freezer
[    0.104466] Initializing cgroup subsys net_cls
[    0.108943] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.110002] CPU: L2 Cache: 512K (64 bytes/line)
[    0.120003] CPU 0/0x0 -> Node 0
[    0.123163] CPU: Physical Processor ID: 0
[    0.127190] CPU: Processor Core ID: 0
[    0.130002] mce: CPU supports 6 MCE banks
[    0.134042] using C1E aware idle routine
[    0.137986] Performance Events: AMD PMU driver.
[    0.141521] ... version:                0
[    0.145549] ... bit width:              48
[    0.150001] ... generic registers:      4
[    0.154024] ... value mask:             0000ffffffffffff
[    0.160001] ... max period:             00007fffffffffff
[    0.165330] ... fixed-purpose events:   0
[    0.170001] ... event mask:             000000000000000f
[    0.176667] ACPI: Core revision 20090903
[    0.200029] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.210008] ftrace: allocating 21751 entries in 86 pages
[    0.225172] Setting APIC routing to flat
[    0.230490] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.336570] CPU0: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.350000] Booting processor 1 APIC 0x1 ip 0x6000
[    0.040000] Initializing CPU#1
[    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
[    0.040000] CPU 1/0x1 -> Node 0
[    0.040000] CPU: Physical Processor ID: 0
[    0.040000] CPU: Processor Core ID: 1
[    0.500087] CPU1: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.521266] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.530052] Booting processor 2 APIC 0x2 ip 0x6000
[    0.040000] Initializing CPU#2
[    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
[    0.040000] CPU 2/0x2 -> Node 0
[    0.040000] CPU: Physical Processor ID: 0
[    0.040000] CPU: Processor Core ID: 3
[    0.700082] CPU2: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.721263] checking TSC synchronization [CPU#0 -> CPU#2]: passed.
[    0.730058] Booting processor 3 APIC 0x3 ip 0x6000
[    0.040000] Initializing CPU#3
[    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
[    0.040000] CPU 3/0x3 -> Node 0
[    0.040000] CPU: Physical Processor ID: 0
[    0.040000] CPU: Processor Core ID: 2
[    0.900091] CPU3: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.921264] checking TSC synchronization [CPU#0 -> CPU#3]: passed.
[    0.930009] Brought up 4 CPUs
[    0.940001] Total of 4 processors activated (24110.25 BogoMIPS).
[    0.950170] devtmpfs: initialized
[    0.954622] regulator: core version 0.5
[    0.958500] Time:  0:10:44  Date: 05/05/10
[    0.960041] NET: Registered protocol family 16
[    0.964594] TOM: 00000000d0000000 aka 3328M
[    0.970012] TOM2: 0000000230000000 aka 8960M
[    0.974339] ACPI: bus type pci registered
[    0.978424] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.980002] PCI: MCFG area at e0000000 reserved in E820
[    0.995600] PCI: Using MMCONFIG at e0000000 - efffffff
[    1.000001] PCI: Using configuration type 1 for base access
[    1.006220] bio: create slab <bio-0> at 0
[    1.020358] ACPI: Interpreter enabled
[    1.024052] ACPI: (supports S0 S1 S4 S5)
[    1.028207] ACPI: Using IOAPIC for interrupt routing
[    1.033096] ACPI Warning: Incorrect checksum in table [��"�] - 00, should be A6 (20090903/tbutils-314)
[    1.042365] ACPI: No dock devices found.
[    1.046409] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    1.050128] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    1.060002] pci 0000:00:0a.0: PME# disabled
[    1.064490] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    1.070003] pci 0000:00:12.2: PME# disabled
[    1.074404] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    1.080004] pci 0000:00:13.2: PME# disabled
[    1.084437] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    1.090003] pci 0000:00:14.2: PME# disabled
[    1.094608] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.100003] pci 0000:02:00.0: PME# disabled
[    1.104387] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    1.110004] pci 0000:03:0e.0: PME# disabled
[    1.114240] pci 0000:00:14.4: transparent bridge
[    1.132377] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.140299] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.148292] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.153425] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.163451] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.172355] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.180286] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.188293] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.193491] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    1.200002] vgaarb: loaded
[    1.202810] SCSI subsystem initialized
[    1.210142] usbcore: registered new interface driver usbfs
[    1.215652] usbcore: registered new interface driver hub
[    1.220016] usbcore: registered new device driver usb
[    1.225157] ACPI: WMI: Mapper loaded
[    1.230001] PCI: Using ACPI for IRQ routing
[    1.234206] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    1.240001] pci 0000:00:00.0: BAR 3: can't allocate resource
[    1.250004] NetLabel: Initializing
[    1.253432] NetLabel:  domain hash size = 128
[    1.257807] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.260009] NetLabel:  unlabeled traffic allowed by default
[    1.265630] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 24, 0
[    1.271470] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    1.281005] Switching to clocksource tsc
[    1.285069] pnp: PnP ACPI init
[    1.285069] ACPI: bus type pnp registered
[    1.289814] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.299767] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.309708] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.319646] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.329587] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.339181] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.349524] pnp: PnP ACPI: found 13 devices
[    1.353738] ACPI: ACPI bus type pnp unregistered
[    1.358377] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    1.364773] system 00:01: ioport range 0x220-0x225 has been reserved
[    1.371159] system 00:01: ioport range 0x290-0x294 has been reserved
[    1.377523] system 00:02: ioport range 0x4100-0x411f has been reserved
[    1.384089] system 00:02: ioport range 0x228-0x22f has been reserved
[    1.390470] system 00:02: ioport range 0x40b-0x40b has been reserved
[    1.396832] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    1.403229] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    1.409597] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    1.415992] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    1.422370] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    1.428735] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    1.435128] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    1.441509] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    1.447871] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    1.454266] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    1.460818] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    1.467355] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    1.473748] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    1.480128] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    1.486493] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    1.493667] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    1.501182] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    1.508330] system 00:0c: iomem range 0xafef0000-0xcfeeffff could not be reserved
[    1.515856] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    1.523369] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    1.530534] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    1.542754] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    1.548689] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    1.554050] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    1.560175] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    1.567754] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    1.573722] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    1.579047] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    1.585181] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    1.592775] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    1.598711] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    1.604067] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    1.610193] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    1.616751] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.623549] NET: Registered protocol family 2
[    1.628090] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    1.636549] ------------[ cut here ]------------
[    1.641209] WARNING: at mm/vmalloc.c:110 vmap_page_range_noflush+0x301/0x380()
[    1.648440] Hardware name: GA-MA790GP-UD4H
[    1.652582] Modules linked in:
[    1.655710] Pid: 1, comm: swapper Not tainted 2.6.32.10 #12
[    1.661321] Call Trace:
[    1.663801]  [<ffffffff8106602b>] warn_slowpath_common+0x7b/0xc0
[    1.669819]  [<ffffffff81066084>] warn_slowpath_null+0x14/0x20
[    1.675698]  [<ffffffff8111bb31>] vmap_page_range_noflush+0x301/0x380
[    1.682164]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
[    1.687402]  [<ffffffff8111d010>] __vmalloc_area_node+0x100/0x190
[    1.693535]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
[    1.700172]  [<ffffffff8111cf02>] __vmalloc_node+0xa2/0xb0
[    1.705671]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
[    1.712324]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    1.717562]  [<ffffffff8111d282>] __vmalloc+0x22/0x30
[    1.722653]  [<ffffffff81898700>] alloc_large_system_hash+0x15e/0x222
[    1.729916]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    1.735186]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    1.740438]  [<ffffffff818b44b6>] tcp_init+0xa3/0x383
[    1.745505]  [<ffffffff818b4bbd>] inet_init+0x14b/0x209
[    1.750772]  [<ffffffff8100a04c>] do_one_initcall+0x3c/0x1a0
[    1.756451]  [<ffffffff8187972c>] kernel_init+0x15a/0x1b0
[    1.761890]  [<ffffffff810150ea>] child_rip+0xa/0x20
[    1.766870]  [<ffffffff818795d2>] ? kernel_init+0x0/0x1b0
[    1.772307]  [<ffffffff810150e0>] ? child_rip+0x0/0x20
[    1.777461] ---[ end trace e93713a9d40cd06c ]---
[    1.782160] general protection fault: 0000 [#1] SMP 
[    1.787242] last sysfs file: 
[    1.790234] CPU 0 
[    1.792115] Modules linked in:
[    1.792115] Pid: 1, comm: swapper Tainted: G        W  2.6.32.10 #12 GA-MA790GP-UD4H
[    1.792115] RIP: 0010:[<ffffffff810f86ef>]  [<ffffffff810f86ef>] __free_pages+0x1f/0x90
[    1.792115] RSP: 0018:ffff8802278cbd20  EFLAGS: 00010282
[    1.792115] RAX: ffffc90000c31000 RBX: 80000002f722ff85 RCX: 0000000000000010
[    1.792115] RDX: 0000000000000200 RSI: 0000000000000000 RDI: 80000002f722ff85
[    1.792115] RBP: ffff8802278cbd40 R08: 0000000000000004 R09: 0000000000000000
[    1.792115] R10: ffff88000005ae80 R11: 0000000000000002 R12: 0000000000000000
[    1.792115] R13: 0000000000000001 R14: ffffffffffffffff R15: 0000000000000020
[    1.792115] FS:  0000000000000000(0000) GS:ffff880008a00000(0000) knlGS:0000000000000000
[    1.792115] CS:  0010 DS: 0018 ES: 0018 CR0: 000000008005003b
[    1.792115] CR2: 0000000000000000 CR3: 0000000001001000 CR4: 00000000000006f0
[    1.792115] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[    1.792115] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
[    1.792115] Process swapper (pid: 1, threadinfo ffff8802278ca000, task ffff8802278d0000)
[    1.792115] Stack:
[    1.792115]  ffffc90011200000 0000000000000201 ffff880227b30b80 0000000000000001
[    1.792115] <0> ffff8802278cbd70 ffffffff8111c42b ffffffffffffffff ffff880227b30b80
[    1.792115] <0> 00000000ffffffff 0000000000000800 ffff8802278cbd80 ffffffff8111c51a
[    1.792115] Call Trace:
[    1.792115]  [<ffffffff8111c42b>] __vunmap+0x7b/0x110
[    1.792115]  [<ffffffff8111c51a>] vfree+0x2a/0x30
[    1.792115]  [<ffffffff8111d06c>] __vmalloc_area_node+0x15c/0x190
[    1.792115]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
[    1.792115]  [<ffffffff8111cf02>] __vmalloc_node+0xa2/0xb0
[    1.792115]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
[    1.792115]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    1.792115]  [<ffffffff8111d282>] __vmalloc+0x22/0x30
[    1.792115]  [<ffffffff81898700>] alloc_large_system_hash+0x15e/0x222
[    1.792115]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    1.792115]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    1.792115]  [<ffffffff818b44b6>] tcp_init+0xa3/0x383
[    1.792115]  [<ffffffff818b4bbd>] inet_init+0x14b/0x209
[    1.792115]  [<ffffffff8100a04c>] do_one_initcall+0x3c/0x1a0
[    1.792115]  [<ffffffff8187972c>] kernel_init+0x15a/0x1b0
[    1.792115]  [<ffffffff810150ea>] child_rip+0xa/0x20
[    1.792115]  [<ffffffff818795d2>] ? kernel_init+0x0/0x1b0
[    1.792115]  [<ffffffff810150e0>] ? child_rip+0x0/0x20
[    1.792115] Code: d0 49 8b 04 24 48 85 c0 75 ec eb c5 55 48 89 e5 48 83 ec 20 48 89 5d e8 4c 89 65 f0 4c 89 6d f8 0f 
[    1.792115] RIP  [<ffffffff810f86ef>] __free_pages+0x1f/0x90
[    1.792115]  RSP <ffff8802278cbd20>
[    2.054400] ---[ end trace e93713a9d40cd06d ]---
[    2.059042] Kernel panic - not syncing: Attempted to kill init!
[    2.064998] Pid: 1, comm: swapper Tainted: G      D W  2.6.32.10 #12
[    2.071375] Call Trace:
[    2.073848]  [<ffffffff8155a818>] panic+0x78/0x137
[    2.078657]  [<ffffffff81063540>] ? mm_release+0x60/0x120
[    2.084099]  [<ffffffff8106a54a>] do_exit+0x6ca/0x7f0
[    2.089167]  [<ffffffff8155ea10>] oops_end+0xb0/0xf0
[    2.094171]  [<ffffffff8101805b>] die+0x5b/0x90
[    2.098717]  [<ffffffff8155e592>] do_general_protection+0x152/0x160
[    2.105022]  [<ffffffff8155dd55>] general_protection+0x25/0x30
[    2.110879]  [<ffffffff810f86ef>] ? __free_pages+0x1f/0x90
[    2.116377]  [<ffffffff8111c42b>] __vunmap+0x7b/0x110
[    2.121469]  [<ffffffff8111c51a>] vfree+0x2a/0x30
[    2.126191]  [<ffffffff8111d06c>] __vmalloc_area_node+0x15c/0x190
[    2.132322]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
[    2.138945]  [<ffffffff8111cf02>] __vmalloc_node+0xa2/0xb0
[    2.144474]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
[    2.151113]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    2.156350]  [<ffffffff8111d282>] __vmalloc+0x22/0x30
[    2.161443]  [<ffffffff81898700>] alloc_large_system_hash+0x15e/0x222
[    2.167893]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    2.173159]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
[    2.178400]  [<ffffffff818b44b6>] tcp_init+0xa3/0x383
[    2.183491]  [<ffffffff818b4bbd>] inet_init+0x14b/0x209
[    2.188730]  [<ffffffff8100a04c>] do_one_initcall+0x3c/0x1a0
[    2.194428]  [<ffffffff8187972c>] kernel_init+0x15a/0x1b0
[    2.199840]  [<ffffffff810150ea>] child_rip+0xa/0x20
[    2.204848]  [<ffffffff818795d2>] ? kernel_init+0x0/0x1b0
[    2.210273]  [<ffffffff810150e0>] ? child_rip+0x0/0x20

GR: kernel is hung right here

[-- Attachment #3: menu.lst --]
[-- Type: text/plain, Size: 1344 bytes --]

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup01/LogVol00
#          initrd /initrd-version.img
#boot=/dev/md0
default=1
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Ubuntu UEC-Node kernel 2.6.32.10 (pv_ops domU)
	root (hd4,0)
	kernel /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 console=ttyS0,115200n8 text
	initrd	/initrd.img-2.6.32.10
title Ubuntu UEC-Node kernel 2.6.32.10 (pv_ops dom0)
	root (hd4,0)
	kernel /xen-4.0.0-rc8.gz  dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_ring com1=115200,8n1 console=com1
	module /vmlinuz-2.6.32.10 root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen console=hvc0,115200n8 console=tty0,115200n8 nomodeset text
	module /initrd.img-2.6.32.10
title Ubuntu UEC-Node (Lucid Lynx) 2.6.32-21 (domU)
	root (hd4,0)
	kernel /vmlinuz-2.6.32-21-server root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro console=tty0,115200n8 console=ttyS0,115200n8 text
	initrd	/initrd.img-2.6.32-21-server

[-- Attachment #4: AMD_pvops_dom0_console.txt --]
[-- Type: text/plain, Size: 57717 bytes --]

 __  __            _  _    ___   ___              ___  
 \ \/ /___ _ __   | || |  / _ \ / _ \    _ __ ___( _ ) 
  \  // _ \ '_ \  | || |_| | | | | | |__| '__/ __/ _ \ 
  /  \  __/ | | | |__   _| |_| | |_| |__| | | (_| (_) |
 /_/\_\___|_| |_|    |_|(_)___(_)___/   |_|  \___\___/ 
                                                       
(XEN) Xen version 4.0.0-rc8 (root@) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) Sat Apr 24 11:56:47 EDT 2010
(XEN) Latest ChangeSet: Fri Mar 26 10:29:38 2010 +0000 21074:542211ba675c
(XEN) Console output is synchronous.
(XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_rin1
(XEN) Video information:
(XEN)  VGA is text mode 80x50, font 8x8
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN)  EDID info not retrieved because of reasons unknown
(XEN) Disc information:
(XEN)  Found 6 MBR signatures
(XEN)  Found 6 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009f800 (usable)
(XEN)  000000000009f800 - 00000000000a0000 (reserved)
(XEN)  00000000000f0000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 00000000afde0000 (usable)
(XEN)  00000000afde0000 - 00000000afde3000 (ACPI NVS)
(XEN)  00000000afde3000 - 00000000afdf0000 (ACPI data)
(XEN)  00000000afdf0000 - 00000000afe00000 (reserved)
(XEN)  00000000e0000000 - 00000000f0000000 (reserved)
(XEN)  00000000fec00000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000230000000 (usable)
(XEN) ACPI: RSDP 000F75D0, 0014 (r0 GBT   )
(XEN) ACPI: RSDT AFDE3000, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: FACP AFDE3040, 0074 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: DSDT AFDE30C0, 6E65 (r1 GBT    GBTUACPI     1000 MSFT  3000000)
(XEN) ACPI: FACS AFDE0000, 0040
(XEN) ACPI: HPET AFDEA000, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU       98)
(XEN) ACPI: MCFG AFDEA040, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: TAMG AFDEA080, 030A (r1 GBT    GBT   B0 5455312E BG53450101)
(XEN) ACPI: APIC AFDE9F40, 0084 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) System RAM: 7433MB (7612124kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-0000000230000000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000f5c30
(XEN) DMI 2.4 present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x4008
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[4004,0], pm1x_evt[4000,0]
(XEN) ACPI:                  wakeup_vec[afde000c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
(XEN) Processor #0 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
(XEN) Processor #1 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
(XEN) Processor #2 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
(XEN) Processor #3 0:4 APIC version 16
(XEN) ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
(XEN) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x10b9a201 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: MCFG area at e0000000 reserved in E820
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 3013.821 MHz processor.
(XEN) Initing memory sharing.
(XEN) HVM: ASIDs enabled.
(XEN) HVM: SVM enabled
(XEN) HVM: Hardware Assisted Paging detected.
(XEN) AMD Fam10h machine check reporting enabled
(XEN) AMD-Vi: IOMMU not found!
(XEN) I/O virtualisation disabled
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) TSC is reliable, synchronization unnecessary
(XEN) Platform timer is 14.318MHz HPET
�(XEN) Allocated console ring of 32 KiB.
(XEN) do_IRQ: 1.231 No irq handler for vector (irq -1)
(XEN) do_IRQ: 3.231 No irq handler for vector (irq -1)
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) do_IRQ: 2.231 No irq handler for vector (irq -1)
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) Brought up 4 CPUs
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) HPET: 4 timers in total, 3 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) MCA: Use hw thresholding to adjust polling frequency
(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 -> 0x1a72000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000210000000->0000000220000000 (196608 pages to be allocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81a72000
(XEN)  Init. ramdisk: ffffffff81a72000->ffffffff8f7d1600
(XEN)  Phys-Mach map: ffffffff8f7d2000->ffffffff8f9d2000
(XEN)  Start info:    ffffffff8f9d2000->ffffffff8f9d24b4
(XEN)  Page tables:   ffffffff8f9d3000->ffffffff8fa54000
(XEN)  Boot stack:    ffffffff8fa54000->ffffffff8fa55000
(XEN)  TOTAL:         ffffffff80000000->ffffffff8fc00000
(XEN)  ENTRY ADDRESS: ffffffff81879200
(XEN) Dom0 has maximum 4 VCPUs
(XEN) Scrubbing Free RAM: ..................................................................done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) **********************************************
(XEN) ******* WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) ******* This option is intended to aid debugging of Xen by ensuring
(XEN) ******* that all output is synchronously delivered on the serial line.
(XEN) ******* However it can introduce SIGNIFICANT latencies and affect
(XEN) ******* timekeeping. It is NOT recommended for production use!
(XEN) **********************************************
(XEN) 3... 2... 1... 
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 164kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.10 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #12 SMP Sat Apr0
[    0.000000] Command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen console=hvt
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] xen_release_chunk: looking at area pfn 40000-afde0: 0 pages freed
[    0.000000] xen_release_chunk: looking at area pfn afe00-e0000: 0 pages freed
[    0.000000] xen_release_chunk: looking at area pfn f0000-fec00: 0 pages freed
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000] RAMDISK: 01a72000 - 0f7d1600
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9d3000 - 000fa54000]   XEN PAGETABLES ==> [000f9d3000 - 000fa54000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a51864]    TEXT DATA BSS ==> [0001000000 - 0001a51864]
[    0.000000]   #4 [0001a72000 - 000f7d1600]          RAMDISK ==> [0001a72000 - 000f7d1600]
[    0.000000]   #5 [000f7d2000 - 000f9d3000]   XEN START INFO ==> [000f7d2000 - 000f9d3000]
[    0.000000]   #6 [0001a52000 - 0001a520fe]              BRK ==> [0001a52000 - 0001a520fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa8a000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen cont
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c3f000 - ffff880014c3f000
[    0.000000] DMA: software IO TLB at phys 0x10c3f000 - 0x14c3f000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c3f000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014c9f000 size=32768
[    0.000000] Memory: 725700k/1048576k available (5523k kernel code, 408k absent, 322468k reserved, 3053k data, 800k i)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.10 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #12 SMP Sat Apr0
[    0.000000] Command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen console=hvt
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] xen_release_chunk: looking at area pfn 40000-afde0: 0 pages freed
[    0.000000] xen_release_chunk: looking at area pfn afe00-e0000: 0 pages freed
[    0.000000] xen_release_chunk: looking at area pfn f0000-fec00: 0 pages freed
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000] RAMDISK: 01a72000 - 0f7d1600
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9d3000 - 000fa54000]   XEN PAGETABLES ==> [000f9d3000 - 000fa54000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a51864]    TEXT DATA BSS ==> [0001000000 - 0001a51864]
[    0.000000]   #4 [0001a72000 - 000f7d1600]          RAMDISK ==> [0001a72000 - 000f7d1600]
[    0.000000]   #5 [000f7d2000 - 000f9d3000]   XEN START INFO ==> [000f7d2000 - 000f9d3000]
[    0.000000]   #6 [0001a52000 - 0001a520fe]              BRK ==> [0001a52000 - 0001a520fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa8a000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 dummy=dummy ro earlyprintk=xen cont
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c3f000 - ffff880014c3f000
[    0.000000] DMA: software IO TLB at phys 0x10c3f000 - 0x14c3f000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c3f000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014c9f000 size=32768
[    0.000000] Memory: 725700k/1048576k available (5523k kernel code, 408k absent, 322468k reserved, 3053k data, 800k i)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] console [hvc0] enabled
[    0.000000] allocated 10485760 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] installing Xen timer for CPU 0
(XEN) traps.c:2309:d0 Domain attempted WRMSR 00000000c0010004 from 00000270:e8597444 to 00000000:00000000.
(XEN) traps.c:2309:d0 Domain attempted WRMSR 00000000c0010000 from 00000000:00030076 to 00000000:00430076.
[    0.000000] Detected 3579879.094 MHz processor.
[    0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.64 BogoMIPS (lpj=3013820)
[    0.010031] Security Framework initialized
[    0.014199] SELinux:  Disabled at boot.
[    0.018367] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.020085] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.027303] Mount-cache hash table entries: 256
[    0.030138] Initializing cgroup subsys ns
[    0.034191] Initializing cgroup subsys cpuacct
[    0.038774] Initializing cgroup subsys memory
[    0.040000] Initializing cgroup subsys devices
[    0.040000] Initializing cgroup subsys freezer
[    0.040000] Initializing cgroup subsys net_cls
[    0.040025] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.047277] CPU: L2 Cache: 512K (64 bytes/line)
[    0.050000] CPU 0/0x0 -> Node 0
[    0.050006] CPU: Physical Processor ID: 0
[    0.054124] CPU: Processor Core ID: 0
[    0.057947] Performance Events: AMD PMU driver.
[    0.060000] ------------[ cut here ]------------
[    0.060000] WARNING: at arch/x86/xen/enlighten.c:722 xen_apic_write+0x1a/0x20()
[    0.060000] Hardware name: GA-MA790GP-UD4H
[    0.060000] Modules linked in:
[    0.060000] Pid: 0, comm: swapper Not tainted 2.6.32.10 #12
[    0.060000] Call Trace:
[    0.060000]  [<ffffffff8106602b>] warn_slowpath_common+0x7b/0xc0
[    0.060000]  [<ffffffff81066084>] warn_slowpath_null+0x14/0x20
[    0.060000]  [<ffffffff8100b40a>] xen_apic_write+0x1a/0x20
[    0.060000]  [<ffffffff81021cc6>] perf_events_lapic_init+0x36/0x40
[    0.060000]  [<ffffffff81882432>] init_hw_perf_events+0x311/0x3ae
[    0.060000]  [<ffffffff81882092>] identify_boot_cpu+0x3c/0x3e
[    0.060000]  [<ffffffff818820fd>] check_bugs+0x9/0x2d
[    0.060000]  [<ffffffff81879d84>] start_kernel+0x3d7/0x3f7
[    0.060000]  [<ffffffff8187933a>] x86_64_start_reservations+0x125/0x129
[    0.060000]  [<ffffffff8187d19d>] xen_start_kernel+0x6ab/0x6b2
[    0.060007] ---[ end trace a7919e7f17c0a725 ]---
[    0.064773] ... version:                0
[    0.068914] ... bit width:              48
[    0.070000] ... generic registers:      4
[    0.070000] ... value mask:             0000ffffffffffff
[    0.070000] ... max period:             00007fffffffffff
[    0.070000] ... fixed-purpose events:   0
[    0.070000] ... event mask:             000000000000000f
[    0.070000] SMP alternatives: switching to UP code
[    0.070000] ACPI: Core revision 20090903
[    0.080046] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.085906] ftrace: allocating 21751 entries in 86 pages
[    0.090081] cpu 0 spinlock event irq 1278
[    0.095201] installing Xen timer for CPU 1
[    0.099408] cpu 1 spinlock event irq 1272
[    0.100021] SMP alternatives: switching to SMP code
[    0.000017] Initializing CPU#1
[    0.000063] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000065] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000067] CPU 1/0x0 -> Node 0
[    0.000069] CPU: Physical Processor ID: 0
[    0.000070] CPU: Processor Core ID: 1
[    0.110190] installing Xen timer for CPU 2
[    0.120013] cpu 2 spinlock event irq 1266
[    0.000014] Initializing CPU#2
[    0.000066] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000069] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000071] CPU 2/0x0 -> Node 0
[    0.000073] CPU: Physical Processor ID: 0
[    0.000074] CPU: Processor Core ID: 3
[    0.124284] installing Xen timer for CPU 3
[    0.130013] cpu 3 spinlock event irq 1260
[    0.000014] Initializing CPU#3
[    0.000059] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000062] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000064] CPU 3/0x0 -> Node 0
[    0.000066] CPU: Physical Processor ID: 0
[    0.000067] CPU: Processor Core ID: 2
[    0.134281] Brought up 4 CPUs
[    0.140143] devtmpfs: initialized
[    0.144593] Grant table initialized
[    0.148145] regulator: core version 0.5
[    0.150000] Time: 23:47:59  Date: 05/04/10
[    0.150039] NET: Registered protocol family 16
[    0.154689] TOM: 00000000d0000000 aka 3328M
[    0.158954] TOM2: 0000000230000000 aka 8960M
[    0.160033] ACPI: bus type pci registered
[    0.164136] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.170000] PCI: MCFG area at e0000000 reserved in E820
[    0.199638] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.200000] PCI: Using configuration type 1 for base access
[    0.200710] bio: create slab <bio-0> at 0
[    0.205749] ERROR: Unable to locate IOAPIC for GSI 9
[    0.219518] ACPI: Interpreter enabled
[    0.220000] ACPI: (supports S0 S1 S4 S5)
[    0.220000] ACPI: Using IOAPIC for interrupt routing
[    0.224951] ACPI: No dock devices found.
[    0.229090] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.230257] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.236426] pci 0000:00:0a.0: PME# disabled
[    0.240432] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.246533] pci 0000:00:12.2: PME# disabled
[    0.250288] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.256422] pci 0000:00:13.2: PME# disabled
[    0.260345] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.266527] pci 0000:00:14.2: PME# disabled
[    0.270791] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.277532] pci 0000:02:00.0: PME# disabled
[    0.280250] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.286384] pci 0000:03:0e.0: PME# disabled
[    0.290038] pci 0000:00:14.4: transparent bridge
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:0a.0
(XEN) PCI add device 00:11.0
(XEN) PCI add device 00:12.0
(XEN) PCI add device 00:12.1
(XEN) PCI add device 00:12.2
(XEN) PCI add device 00:13.0
(XEN) PCI add device 00:13.1
(XEN) PCI add device 00:13.2
(XEN) PCI add device 00:14.0
(XEN) PCI add device 00:14.1
(XEN) PCI add device 00:14.2
(XEN) PCI add device 00:14.3
(XEN) PCI add device 00:14.4
(XEN) PCI add device 00:14.5
(XEN) PCI add device 00:18.0
(XEN) PCI add device 00:18.1
(XEN) PCI add device 00:18.2
(XEN) PCI add device 00:18.3
(XEN) PCI add device 00:18.4
(XEN) PCI add device 01:05.0
(XEN) PCI add device 01:05.1
(XEN) PCI add device 02:00.0
(XEN) PCI add device 03:0e.0
[    0.367968] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.370083] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.377650] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.380080] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.387617] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.390080] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.397623] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.400081] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.407668] xen_balloon: Initialising balloon driver with page order 0.
[    0.410069] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.418302] vgaarb: loaded
[    0.420098] SCSI subsystem initialized
[    0.424102] usbcore: registered new interface driver usbfs
[    0.429696] usbcore: registered new interface driver hub
[    0.430023] usbcore: registered new device driver usb
[    0.435271] ACPI: WMI: Mapper loaded
[    0.438914] PCI: Using ACPI for IRQ routing
[    0.440000] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    0.440000] pci 0000:00:00.0: BAR 3: can't allocate resource
[    0.440075] NetLabel: Initializing
[    0.443576] NetLabel:  domain hash size = 128
[    0.448065] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.450000] NetLabel:  unlabeled traffic allowed by default
[    0.450067] Switching to clocksource xen
[    0.454221] pnp: PnP ACPI init
[    0.454734] ACPI: bus type pnp registered
[    0.459856] xen_allocate_pirq: returning irq 8 for gsi 8
[    0.465242] Already setup the GSI :8
[    0.469085] xen_allocate_pirq: returning irq 13 for gsi 13
[    0.474631] Already setup the GSI :13
[    0.478937] xen_allocate_pirq: returning irq 4 for gsi 4
[    0.484319] Already setup the GSI :4
[    0.488148] xen_allocate_pirq: returning irq 12 for gsi 12
[    0.493706] Already setup the GSI :12
[    0.497548] xen_allocate_pirq: returning irq 1 for gsi 1
[    0.502919] Already setup the GSI :1
[    0.507005] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.512916] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.512916] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.512916] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.512916] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.512916] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.567842] pnp: PnP ACPI: found 13 devices
[    0.572091] ACPI: ACPI bus type pnp unregistered
[    0.576803] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.582083] system 00:01: ioport range 0x220-0x225 has been reserved
[    0.582083] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.596331] system 00:02: ioport range 0x4100-0x411f has been reserved
[    0.603016] system 00:02: ioport range 0x228-0x22f has been reserved
[    0.606323] system 00:02: ioport range 0x40b-0x40b has been reserved
[    0.606323] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    0.606323] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    0.606323] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    0.606323] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    0.606323] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    0.606323] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    0.606323] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    0.606323] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    0.606323] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    0.606323] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    0.606323] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    0.606323] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    0.606323] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    0.700945] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    0.707408] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.714692] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    0.722319] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    0.724684] system 00:0c: iomem range 0xafef0000-0xcfeeffff has been reserved
[    0.724684] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.724684] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.724684] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    0.762269] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    0.769036] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.770004] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    0.770004] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    0.770004] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.770004] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    0.770004] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    0.770004] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    0.770004] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    0.770004] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    0.770004] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    0.770004] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    0.770004] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    0.845278] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.852161] NET: Registered protocol family 2
[    0.856716] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.864551] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[    0.872772] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.879884] TCP: Hash tables configured (established 131072 bind 65536)
[    0.882706] TCP reno registered
[    0.889969] NET: Registered protocol family 1
[    0.924415] Trying to unpack rootfs image as initramfs...
[    1.130546] Freeing initrd memory: 226685k freed
[    1.229176] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.230046] DMA: Placing 64MB software IO TLB between ffff880010c3f000 - ffff880014c3f000
[    1.230046] DMA: software IO TLB at phys 0x10c3f000 - 0x14c3f000
[    1.250625] Scanning for low memory corruption every 60 seconds
[    1.256837] audit: initializing netlink socket (disabled)
[    1.262310] type=2000 audit(1273016881.682:1): initialized
[    1.273991] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.281733] VFS: Disk quotas dquot_6.5.2
[    1.285789] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.292923] fuse init (API version 7.13)
[    1.296971] msgmni has been set to 1860
[    1.301111] alg: No test for stdrng (krng)
[    1.305308] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.310887] io scheduler noop registered
[    1.310887] io scheduler anticipatory registered
[    1.310887] io scheduler deadline registered (default)
[    1.327003] io scheduler cfq registered
[    1.331295] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.337010] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.343932] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.352403] ACPI: Power Button [PWRB]
[    1.356273] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.363780] ACPI: Power Button [PWRF]
[    1.369700] Event-channel device installed.
[    1.377742] blktap_device_init: blktap device major 253
[    1.383036] blktap_ring_init: blktap ring major: 252
[    1.388828] registering netback
[    1.393379] hpet_acpi_add: no address or irqs in _CRS
[    1.398534] Linux agpgart interface v0.103
[    1.402131] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.410263] brd: module loaded
[    1.413803] loop: module loaded
[    1.417122] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    1.425157] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.432781] Fixed MDIO Bus: probed
[    1.436339] PPP generic driver version 2.4.2
[    1.440770] tun: Universal TUN/TAP device driver, 1.6
[    1.445900] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.452314] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.459000] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.462246] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    1.471626] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.479226] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    1.481597] ehci_hcd 0000:00:12.2: debug port 1
[    1.481597] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    1.510037] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.515983] usb usb1: configuration #1 chosen from 1 choice
[    1.521700] hub 1-0:1.0: USB hub found
[    1.525557] hub 1-0:1.0: 6 ports detected
[    1.529766] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.531675] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    1.542439] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.550009] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    1.557635] ehci_hcd 0000:00:13.2: debug port 1
[    1.562355] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    1.580041] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.585974] usb usb2: configuration #1 chosen from 1 choice
[    1.591636] hub 2-0:1.0: USB hub found
[    1.595514] hub 2-0:1.0: 6 ports detected
[    1.599698] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.606018] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.611603] Already setup the GSI :16
[    1.615358] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.621600] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    1.628062] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.635645] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    1.684112] usb usb3: configuration #1 chosen from 1 choice
[    1.689773] hub 3-0:1.0: USB hub found
[    1.693666] hub 3-0:1.0: 3 ports detected
[    1.697909] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.703488] Already setup the GSI :16
[    1.707224] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.713483] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    1.719923] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    1.760108] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    1.824190] usb usb4: configuration #1 chosen from 1 choice
[    1.829953] hub 4-0:1.0: USB hub found
[    1.833860] hub 4-0:1.0: 3 ports detected
[    1.838107] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.843780] Already setup the GSI :18
[    1.847576] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.853775] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    1.860628] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    1.900141] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    1.964199] usb usb5: configuration #1 chosen from 1 choice
[    1.969965] hub 5-0:1.0: USB hub found
[    1.973951] hub 5-0:1.0: 3 ports detected
[    1.978206] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.983878] Already setup the GSI :18
[    1.987765] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.993874] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    2.000826] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    2.040121] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.104190] usb usb6: configuration #1 chosen from 1 choice
[    2.110005] hub 6-0:1.0: USB hub found
[    2.113995] hub 6-0:1.0: 3 ports detected
[    2.118353] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.124017] Already setup the GSI :18
[    2.127888] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.134011] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.140853] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    2.180112] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.244195] usb usb7: configuration #1 chosen from 1 choice
[    2.250033] hub 7-0:1.0: USB hub found
[    2.254000] hub 7-0:1.0: 2 ports detected
[    2.258274] uhci_hcd: USB Universal Host Controller Interface driver
[    2.264988] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.273350] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.278456] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.283766] mice: PS/2 mouse device common for all mice
[    2.289239] rtc_cmos 00:05: RTC can wake from S4
[    2.294095] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.300519] rtc0: alarms up to one month, 242 bytes nvram
[    2.306267] device-mapper: uevent: version 1.0.3
[    2.311045] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.319921] device-mapper: multipath: version 1.1.0 loaded
[    2.325539] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.332609] cpuidle: using governor ladder
[    2.336815] cpuidle: using governor menu
[    2.341098] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.341322] TCP cubic registered
[    2.341420] NET: Registered protocol family 10
[    2.341867] lo: Disabled Privacy Extensions
[    2.342109] NET: Registered protocol family 17
[    2.368274] powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor processors (4 cpu cores) (version 2.20.00)
[    2.378629] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found.
[    2.378630] [Firmware Bug]: powernow-k8: Try again with latest BIOS.
[    2.393097] registered taskstats version 1
[    2.397725]   Magic number: 10:968:806
[    2.401706] rtc_cmos 00:05: setting system clock to 2010-05-04 23:48:02 UTC (1273016882)
[    2.410082] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.411678] EDD information not available.
[    2.420862] Freeing unused kernel memory: 800k freed
[    2.426201] Write protecting the kernel read-only data: 7796k
[    2.466932] udev: starting version 151
[    2.485935] md: linear personality registered for level -1
[    2.531017] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.538168] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.540011] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    2.572272] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.578074] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.583868] Already setup the GSI :18
[    2.587711] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.595713] eth0: RTL8168c/8111c at 0xffffc900001ee000, 00:24:1d:19:05:df, XID 1c4000c0 IRQ 1251
[    2.608296] xen_allocate_pirq: returning irq 22 for gsi 22
[    2.614107] Already setup the GSI :22
[    2.617916] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.633818] md: multipath personality registered for level -4
[    2.642652] scsi0 : ahci
[    2.645423] scsi1 : ahci
[    2.648183] scsi2 : ahci
[    2.650992] scsi3 : ahci
[    2.653750] scsi4 : ahci
[    2.656424] scsi5 : ahci
[    2.659292] ata1: SATA max UDMA/133 irq_stat 0x00400000, PHY RDY changed irq 22
[    2.666799] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    2.674553] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    2.682239] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    2.689821] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    2.691136] md: raid0 personality registered for level 0
[    2.692230] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    2.710642] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[fdcff000-fdcff7ff]  Max Packet=[2048]  IR/IT co]
[    2.722893] scsi6 : pata_atiixp
[    2.726262] scsi7 : pata_atiixp
[    2.730653] ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[    2.732343] md: raid1 personality registered for level 1
[    2.740005] ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[    2.940512] ata7.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
[    2.980480] ata7.01: configured for UDMA/33
[    3.280065] ata2: softreset failed (device not ready)
[    3.285263] ata2: applying SB600 PMP SRST workaround and retrying
[    3.291611] ata4: softreset failed (device not ready)
[    3.291637] ata5: softreset failed (device not ready)
[    3.291640] ata5: applying SB600 PMP SRST workaround and retrying
[    3.291669] ata3: softreset failed (device not ready)
[    3.291671] ata3: applying SB600 PMP SRST workaround and retrying
[    3.291708] ata6: softreset failed (device not ready)
[    3.291710] ata6: applying SB600 PMP SRST workaround and retrying
[    3.301603] ata4: applying SB600 PMP SRST workaround and retrying
[    3.490054] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.490074] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.500059] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.500101] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.515570] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.522156] ata4.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.522300] ata3.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.522303] ata3.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.523434] ata3.00: configured for UDMA/133
[    3.526116] ata6.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.526118] ata6.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.527129] ata6.00: configured for UDMA/133
[    3.542295] ata2.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.542297] ata2.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.543399] ata2.00: configured for UDMA/133
[    3.545940] ata5.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.545942] ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.546929] ata5.00: configured for UDMA/133
[    3.532150] ata4.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.613341] ata4.00: configured for UDMA/133
[    3.770050] ata1: softreset failed (device not ready)
[    3.775188] ata1: applying SB600 PMP SRST workaround and retrying
[    3.950042] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.982972] ata1.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.990140] ata1.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.998504] ata1.00: configured for UDMA/133
[    4.020125] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    4.028570] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.034183] scsi 1:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    4.035981] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    4.036027] sd 0:0:0:0: [sda] Write Protect is off
[    4.036052] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.036178]  sda:
[    4.056980]  sda1 sda2 sda3
[    4.068876] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    4.068881] sd 1:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    4.068924] sd 1:0:0:0: [sdb] Write Protect is off
[    4.068949] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.069060]  sdb:
[    4.069148] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.091224]  sdb1 sdb2 sdb3
[    4.105355] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    4.105424] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.118303] sd 2:0:0:0: Attached scsi generic sg2 type 0
[    4.118310] sd 2:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    4.118352] sd 2:0:0:0: [sdc] Write Protect is off
[    4.118375] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.118493]  sdc: sdc1
[    4.147669] scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    4.147719] sd 2:0:0:0: [sdc] Attached SCSI disk
[    4.160577] sd 3:0:0:0: Attached scsi generic sg3 type 0
[    4.160586] sd 3:0:0:0: [sdd] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    4.160628] sd 3:0:0:0: [sdd] Write Protect is off
[    4.160651] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.160771]  sdd: sdd1
[    4.189922] scsi 4:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    4.189994] sd 3:0:0:0: [sdd] Attached SCSI disk
[    4.202814] sd 4:0:0:0: Attached scsi generic sg4 type 0
[    4.202824] sd 4:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    4.202866] sd 4:0:0:0: [sde] Write Protect is off
[    4.202889] sd 4:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.203005]  sde: sde1 sde2 sde3
[    4.233036] scsi 5:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    4.233103] sd 4:0:0:0: [sde] Attached SCSI disk
[    4.246724] sd 5:0:0:0: [sdf] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    4.246724] sd 5:0:0:0: Attached scsi generic sg5 type 0
[    4.260015] sd 5:0:0:0: [sdf] Write Protect is off
[    4.264930] sd 5:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.274236] scsi 6:0:1:0: CD-ROM            HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[    4.274340]  sdf:sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    4.296879] Uniform CD-ROM driver Revision: 3.20
[    4.300375]  sdf1 sdf2 sdf3
[    4.304590] sr 6:0:1:0: Attached scsi generic sg6 type 5
[    4.304617] sd 5:0:0:0: [sdf] Attached SCSI disk
[    4.476381] async_tx: api initialized (async)
[    4.482502] xor: automatically using best checksumming function: generic_sse
[    4.531271]    generic_sse:  4952.800 MB/sec
[    4.532501] xor: using function: generic_sse (4952.800 MB/sec)
[    4.620552] md: bind<sdc1>
[    4.625595] md: bind<sdd1>
[    4.631938] raid1: raid set md3 active with 2 out of 2 mirrors
[    4.637911] md3: detected capacity change from 0 to 250056605696
[    4.646749] md: bind<sda1>
[    4.650471] md: bind<sda2>
[    4.653337]  md3: unknown partition table
[    4.658814] md: bind<sdb1>
[    4.662499] md: bind<sdf1>
[    4.665564] md: bind<sda3>
[    4.672760] raid1: raid set md0 active with 2 out of 2 mirrors
[    4.678711] md0: detected capacity change from 0 to 526319616
[    4.685618] md: bind<sdb2>
[    4.690493]  md0:
[    4.698449] raid1: raid set md1 active with 2 out of 2 mirrors
[    4.704436] md: bind<sdf2>
[    4.704440] md1: detected capacity change from 0 to 19329318912
[    4.711262] raid6: int64x1   2507 MB/s
[    4.717481] md: bind<sde3>
[    4.720941] md: bind<sdb3>
[    4.726254]  md1: unknown partition table
[    4.731241] raid1: raid set md2 active with 2 out of 2 mirrors
[    4.737236] md2: detected capacity change from 0 to 230200836096
[    4.744078] md: bind<sdf3>
[    4.748474]  md2:
[    4.751385] raid1: raid set md6 active with 2 out of 2 mirrors
[    4.757582] md6: detected capacity change from 0 to 483605217280
[    4.757604]  unknown partition table
[    4.770186]  md6: unknown partition table
[    4.862989] md: bind<sde1>
[    4.868452] raid1: raid set md4 active with 2 out of 2 mirrors
[    4.874499] md4: detected capacity change from 0 to 501612544
[    4.880431] raid6: int64x2   3398 MB/s
[    4.884726] md: bind<sde2>
[    4.888517]  md4: unknown partition table
[    5.051267] raid6: int64x4   2662 MB/s
[    5.221275] raid6: int64x8   2355 MB/s
[    5.391269] raid6: sse2x1    3291 MB/s
[    5.561272] raid6: sse2x2    4935 MB/s
[    5.731269] raid6: sse2x4    4887 MB/s
[    5.733771] raid6: using algorithm sse2x2 (4935 MB/s)
[    5.746352] md: raid6 personality registered for level 6
[    5.751576] raid1: raid set md5 active with 2 out of 2 mirrors
[    5.751612] md5: detected capacity change from 0 to 15998058496
[    5.751554] md: raid5 personality registered for level 5
[    5.768322] md: raid4 personality registered for level 4
[    5.776364]  md5: unknown partition table
[    5.790764] md: raid10 personality registered for level 10
[    6.119867] EXT4-fs (dm-0): INFO: recovery required on readonly filesystem
[    6.126841] EXT4-fs (dm-0): write access will be enabled during recovery
[    6.447532] EXT4-fs (dm-0): recovery complete
[    6.476769] EXT4-fs (dm-0): mounted filesystem with ordered data mode
[   11.382063] ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
[   11.495395] shpchp 0000:00:01.0: Cannot reserve MMIO region
fsck from util-linux-ng 2.17.2
fsck from util-linux-ng 2.17.2
init: procps main process (555) terminated with status 255
/dev/mapper/vg--grp--01--23--02--2-LogVol00: clean, 434432/29523968 files, 14057053/118067200 blocks
/dev/md4 has been mounted 38 times without being checked, check forced.
init: eucalyptus-network (lo) main process (1150) killed by TERM signal
init: eucalyptus-network (eth0) main process (1334) killed by TERM signal
/dev/md4: 220/122880 files (9.1% non-contiguous), 205802/489856 blocks
init: ureadahead-other main process (1448) terminated with status 4
init: tftpd-hpa main process (1459) terminated with status 66
init: tftpd-hpa main process ended, respawning
Loading the saved-state of the serial devices... 
/dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
[ OK ]ting sensors limits        

** (process:1593): WARNING **: Could not parse config file: Could not open config file /etc/nbd-server/config.
** Message: Nothing to do! Bye!
 nbd-server.
[ OK ]rting internet superserver inetd        
 * Starting Postfix Mail Transport Agent postfix        [   39.003931] XENBUS: Unable to read cpu state
[   39.008413] XENBUS: Unable to read cpu state
[   39.020015] XENBUS: Unable to read cpu state
[   39.024573] XENBUS: Unable to read cpu state

GR: minutes elapse until this prompt shows up:

Ubuntu lucid (development branch) grp-01-23-02 hvc0

grp-01-23-02 login: 


[-- Attachment #5: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-05  0:42         ` Gerry Reno
@ 2010-05-05 17:54           ` Konrad Rzeszutek Wilk
  2010-05-06  3:18             ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-05-05 17:54 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

> Finally, my serial port header cables showed up so I installed them and  
> now have some console output.
>
> Case 1: Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.10
>
> After playing around with the order of the consoles on the xen and  
> kernel lines I am able to get a login prompt but only after quite a long  
> time (4-5 mins).  It seems like something is stealing processor cycles.   
> And the behavior is not consistent, on different boots I get different  
> errors at times.
>
>
> Case 1: pv_ops domU kernel 2.6.32.10  (no xen dom0)
>
> The kernel shows a lot of errors and just hangs.
>
>
>
> Attached: console output for both cases plus menu.lst
>
> -Gerry
>
>
>

> [    0.000000] Initializing cgroup subsys cpuset
> [    0.000000] Initializing cgroup subsys cpu
> [    0.000000] Linux version 2.6.32.10 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #12 SMP Sat Apr0
> [    0.000000] Command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 consolet
> [    0.000000] KERNEL supported cpus:
> [    0.000000]   Intel GenuineIntel
> [    0.000000]   AMD AuthenticAMD
> [    0.000000]   Centaur CentaurHauls
> [    0.000000] BIOS-provided physical RAM map:
> [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
> [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  BIOS-e820: 0000000000100000 - 00000000afde0000 (usable)
> [    0.000000]  BIOS-e820: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
> [    0.000000]  BIOS-e820: 00000000afde3000 - 00000000afdf0000 (ACPI data)
> [    0.000000]  BIOS-e820: 00000000afdf0000 - 00000000afe00000 (reserved)
> [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
> [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  BIOS-e820: 0000000100000000 - 0000000230000000 (usable)
> [    0.000000] DMI 2.4 present.
> [    0.000000] last_pfn = 0x230000 max_arch_pfn = 0x400000000
> [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
> [    0.000000] last_pfn = 0xafde0 max_arch_pfn = 0x400000000
> [    0.000000] Scanning 1 areas for low memory corruption
> [    0.000000] modified physical RAM map:
> [    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
> [    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
> [    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
> [    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
> [    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
> [    0.000000]  modified: 0000000000100000 - 00000000afde0000 (usable)
> [    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
> [    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
> [    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
> [    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
> [    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
> [    0.000000]  modified: 0000000100000000 - 0000000230000000 (usable)
> [    0.000000] Using GB pages for direct mapping
> [    0.000000] init_memory_mapping: 0000000000000000-00000000afde0000
> [    0.000000] init_memory_mapping: 0000000100000000-0000000230000000
> [    0.000000] RAMDISK: 33d29000 - 37fef12a
> [    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
> [    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
> [    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
> [    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
> [    0.000000] ACPI: FACS 00000000afde0000 00040
> [    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
> [    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
> [    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
> [    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
> [    0.000000] Scanning NUMA topology in Northbridge 24
> [    0.000000] No NUMA configuration found
> [    0.000000] Faking a node at 0000000000000000-0000000230000000
> [    0.000000] Bootmem setup node 0 0000000000000000-0000000230000000
> [    0.000000]   NODE_DATA [000000000000b000 - 000000000000ffff]
> [    0.000000]   bootmap [0000000000010000 -  0000000000055fff] pages 46
> [    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0230000000]
> [    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
> [    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
> [    0.000000]   #2 [0001000000 - 0001a51864]    TEXT DATA BSS ==> [0001000000 - 0001a51864]
> [    0.000000]   #3 [0033d29000 - 0037fef12a]          RAMDISK ==> [0033d29000 - 0037fef12a]
> [    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 - 0000100000]
> [    0.000000]   #5 [0001a52000 - 0001a520fe]              BRK ==> [0001a52000 - 0001a520fe]
> [    0.000000]   #6 [0000008000 - 000000a000]          PGTABLE ==> [0000008000 - 000000a000]
> [    0.000000]   #7 [000000a000 - 000000b000]          PGTABLE ==> [000000a000 - 000000b000]
> [    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
> [    0.000000] Zone PFN ranges:
> [    0.000000]   DMA      0x00000000 -> 0x00001000
> [    0.000000]   DMA32    0x00001000 -> 0x00100000
> [    0.000000]   Normal   0x00100000 -> 0x00230000
> [    0.000000] Movable zone start PFN for each node
> [    0.000000] early_node_map[4] active PFN ranges
> [    0.000000]     0: 0x00000000 -> 0x00000001
> [    0.000000]     0: 0x00000006 -> 0x0000009f
> [    0.000000]     0: 0x00000100 -> 0x000afde0
> [    0.000000]     0: 0x00100000 -> 0x00230000
> [    0.000000] ACPI: PM-Timer IO Port: 0x4008
> [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
> [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
> [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
> [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
> [    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
> [    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 low level)
> [    0.000000] Using ACPI (MADT) for SMP configuration information
> [    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
> [    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
> [    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
> [    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
> [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
> [    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
> [    0.000000] PM: Registered nosave memory: 00000000afde0000 - 00000000afde3000
> [    0.000000] PM: Registered nosave memory: 00000000afde3000 - 00000000afdf0000
> [    0.000000] PM: Registered nosave memory: 00000000afdf0000 - 00000000afe00000
> [    0.000000] PM: Registered nosave memory: 00000000afe00000 - 00000000e0000000
> [    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
> [    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
> [    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
> [    0.000000] Allocating PCI resources starting at afe00000 (gap: afe00000:30200000)
> [    0.000000] Booting paravirtualized kernel on bare hardware
> [    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
> [    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880008a00000 s91416 r8192 d23272 u524288
> [    0.000000] pcpu-alloc: s91416 r8192 d23272 u524288 alloc=1*2097152
> [    0.000000] pcpu-alloc: [0] 0 1 2 3 
> [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1933972
> [    0.000000] Policy zone: Normal
> [    0.000000] Kernel command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 t
> [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
> [    0.000000] Initializing CPU#0
> [    0.000000] Checking aperture...
> [    0.000000] No AGP bridge found
> [    0.000000] Node 0: aperture @ 20000000 size 32 MB
> [    0.000000] Aperture pointing to e820 RAM. Ignoring.
> [    0.000000] Memory: 7605344k/9175040k available (5523k kernel code, 1313304k absent, 256392k reserved, 3053k data, 8)
> [    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
> [    0.000000] Hierarchical RCU implementation.
> [    0.000000] NR_IRQS:4352 nr_irqs:440
> [    0.000000] Console: colour VGA+ 80x50
> [    0.000000] console [tty0] enabled
> [    0.000000] console [ttyS0] enabled
> [    0.000000] allocated 78643200 bytes of page_cgroup
> [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
> [    0.000000] HPET: 4 timers in total, 1 timers will be used for per-cpu timer
> [    0.000000] Fast TSC calibration using PIT
> [    0.000000] Detected 3013.747 MHz processor.
> [    0.030006] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.48 BogoMIPS (lpj=3013743)
> [    0.050017] Security Framework initialized
> [    0.054134] SELinux:  Disabled at boot.
> [    0.058452] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
> [    0.063393] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
> [    0.071575] Mount-cache hash table entries: 256
> [    0.080121] Initializing cgroup subsys ns
> [    0.084147] Initializing cgroup subsys cpuacct
> [    0.090004] Initializing cgroup subsys memory
> [    0.094384] Initializing cgroup subsys devices
> [    0.100002] Initializing cgroup subsys freezer
> [    0.104466] Initializing cgroup subsys net_cls
> [    0.108943] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
> [    0.110002] CPU: L2 Cache: 512K (64 bytes/line)
> [    0.120003] CPU 0/0x0 -> Node 0
> [    0.123163] CPU: Physical Processor ID: 0
> [    0.127190] CPU: Processor Core ID: 0
> [    0.130002] mce: CPU supports 6 MCE banks
> [    0.134042] using C1E aware idle routine
> [    0.137986] Performance Events: AMD PMU driver.
> [    0.141521] ... version:                0
> [    0.145549] ... bit width:              48
> [    0.150001] ... generic registers:      4
> [    0.154024] ... value mask:             0000ffffffffffff
> [    0.160001] ... max period:             00007fffffffffff
> [    0.165330] ... fixed-purpose events:   0
> [    0.170001] ... event mask:             000000000000000f
> [    0.176667] ACPI: Core revision 20090903
> [    0.200029] ftrace: converting mcount calls to 0f 1f 44 00 00
> [    0.210008] ftrace: allocating 21751 entries in 86 pages
> [    0.225172] Setting APIC routing to flat
> [    0.230490] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> [    0.336570] CPU0: AMD Phenom(tm) II X4 940 Processor stepping 02
> [    0.350000] Booting processor 1 APIC 0x1 ip 0x6000
> [    0.040000] Initializing CPU#1
> [    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
> [    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
> [    0.040000] CPU 1/0x1 -> Node 0
> [    0.040000] CPU: Physical Processor ID: 0
> [    0.040000] CPU: Processor Core ID: 1
> [    0.500087] CPU1: AMD Phenom(tm) II X4 940 Processor stepping 02
> [    0.521266] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
> [    0.530052] Booting processor 2 APIC 0x2 ip 0x6000
> [    0.040000] Initializing CPU#2
> [    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
> [    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
> [    0.040000] CPU 2/0x2 -> Node 0
> [    0.040000] CPU: Physical Processor ID: 0
> [    0.040000] CPU: Processor Core ID: 3
> [    0.700082] CPU2: AMD Phenom(tm) II X4 940 Processor stepping 02
> [    0.721263] checking TSC synchronization [CPU#0 -> CPU#2]: passed.
> [    0.730058] Booting processor 3 APIC 0x3 ip 0x6000
> [    0.040000] Initializing CPU#3
> [    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
> [    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
> [    0.040000] CPU 3/0x3 -> Node 0
> [    0.040000] CPU: Physical Processor ID: 0
> [    0.040000] CPU: Processor Core ID: 2
> [    0.900091] CPU3: AMD Phenom(tm) II X4 940 Processor stepping 02
> [    0.921264] checking TSC synchronization [CPU#0 -> CPU#3]: passed.
> [    0.930009] Brought up 4 CPUs
> [    0.940001] Total of 4 processors activated (24110.25 BogoMIPS).
> [    0.950170] devtmpfs: initialized
> [    0.954622] regulator: core version 0.5
> [    0.958500] Time:  0:10:44  Date: 05/05/10
> [    0.960041] NET: Registered protocol family 16
> [    0.964594] TOM: 00000000d0000000 aka 3328M
> [    0.970012] TOM2: 0000000230000000 aka 8960M
> [    0.974339] ACPI: bus type pci registered
> [    0.978424] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
> [    0.980002] PCI: MCFG area at e0000000 reserved in E820
> [    0.995600] PCI: Using MMCONFIG at e0000000 - efffffff
> [    1.000001] PCI: Using configuration type 1 for base access
> [    1.006220] bio: create slab <bio-0> at 0
> [    1.020358] ACPI: Interpreter enabled
> [    1.024052] ACPI: (supports S0 S1 S4 S5)
> [    1.028207] ACPI: Using IOAPIC for interrupt routing
> [    1.033096] ACPI Warning: Incorrect checksum in table [??????"???] - 00, should be A6 (20090903/tbutils-314)
> [    1.042365] ACPI: No dock devices found.
> [    1.046409] ACPI: PCI Root Bridge [PCI0] (0000:00)
> [    1.050128] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
> [    1.060002] pci 0000:00:0a.0: PME# disabled
> [    1.064490] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
> [    1.070003] pci 0000:00:12.2: PME# disabled
> [    1.074404] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
> [    1.080004] pci 0000:00:13.2: PME# disabled
> [    1.084437] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
> [    1.090003] pci 0000:00:14.2: PME# disabled
> [    1.094608] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
> [    1.100003] pci 0000:02:00.0: PME# disabled
> [    1.104387] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
> [    1.110004] pci 0000:03:0e.0: PME# disabled
> [    1.114240] pci 0000:00:14.4: transparent bridge
> [    1.132377] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.140299] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.148292] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.153425] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.163451] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.172355] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.180286] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.188293] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
> [    1.193491] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
> [    1.200002] vgaarb: loaded
> [    1.202810] SCSI subsystem initialized
> [    1.210142] usbcore: registered new interface driver usbfs
> [    1.215652] usbcore: registered new interface driver hub
> [    1.220016] usbcore: registered new device driver usb
> [    1.225157] ACPI: WMI: Mapper loaded
> [    1.230001] PCI: Using ACPI for IRQ routing
> [    1.234206] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
> [    1.240001] pci 0000:00:00.0: BAR 3: can't allocate resource
> [    1.250004] NetLabel: Initializing
> [    1.253432] NetLabel:  domain hash size = 128
> [    1.257807] NetLabel:  protocols = UNLABELED CIPSOv4
> [    1.260009] NetLabel:  unlabeled traffic allowed by default
> [    1.265630] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 24, 0
> [    1.271470] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
> [    1.281005] Switching to clocksource tsc
> [    1.285069] pnp: PnP ACPI init
> [    1.285069] ACPI: bus type pnp registered
> [    1.289814] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
> [    1.299767] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
> [    1.309708] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
> [    1.319646] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
> [    1.329587] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
> [    1.339181] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
> [    1.349524] pnp: PnP ACPI: found 13 devices
> [    1.353738] ACPI: ACPI bus type pnp unregistered
> [    1.358377] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
> [    1.364773] system 00:01: ioport range 0x220-0x225 has been reserved
> [    1.371159] system 00:01: ioport range 0x290-0x294 has been reserved
> [    1.377523] system 00:02: ioport range 0x4100-0x411f has been reserved
> [    1.384089] system 00:02: ioport range 0x228-0x22f has been reserved
> [    1.390470] system 00:02: ioport range 0x40b-0x40b has been reserved
> [    1.396832] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
> [    1.403229] system 00:02: ioport range 0xc00-0xc01 has been reserved
> [    1.409597] system 00:02: ioport range 0xc14-0xc14 has been reserved
> [    1.415992] system 00:02: ioport range 0xc50-0xc52 has been reserved
> [    1.422370] system 00:02: ioport range 0xc6c-0xc6d has been reserved
> [    1.428735] system 00:02: ioport range 0xc6f-0xc6f has been reserved
> [    1.435128] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
> [    1.441509] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
> [    1.447871] system 00:02: ioport range 0xcd4-0xcdf has been reserved
> [    1.454266] system 00:02: ioport range 0x4000-0x40fe has been reserved
> [    1.460818] system 00:02: ioport range 0x4210-0x4217 has been reserved
> [    1.467355] system 00:02: ioport range 0xb00-0xb0f has been reserved
> [    1.473748] system 00:02: ioport range 0xb10-0xb1f has been reserved
> [    1.480128] system 00:02: ioport range 0xb20-0xb3f has been reserved
> [    1.486493] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
> [    1.493667] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
> [    1.501182] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
> [    1.508330] system 00:0c: iomem range 0xafef0000-0xcfeeffff could not be reserved
> [    1.515856] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
> [    1.523369] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
> [    1.530534] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
> [    1.542754] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
> [    1.548689] pci 0000:00:01.0:   IO window: 0xe000-0xefff
> [    1.554050] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
> [    1.560175] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
> [    1.567754] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
> [    1.573722] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
> [    1.579047] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
> [    1.585181] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
> [    1.592775] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
> [    1.598711] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
> [    1.604067] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
> [    1.610193] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
> [    1.616751] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
> [    1.623549] NET: Registered protocol family 2
> [    1.628090] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
> [    1.636549] ------------[ cut here ]------------
> [    1.641209] WARNING: at mm/vmalloc.c:110 vmap_page_range_noflush+0x301/0x380()
> [    1.648440] Hardware name: GA-MA790GP-UD4H
> [    1.652582] Modules linked in:
> [    1.655710] Pid: 1, comm: swapper Not tainted 2.6.32.10 #12
> [    1.661321] Call Trace:
> [    1.663801]  [<ffffffff8106602b>] warn_slowpath_common+0x7b/0xc0
> [    1.669819]  [<ffffffff81066084>] warn_slowpath_null+0x14/0x20
> [    1.675698]  [<ffffffff8111bb31>] vmap_page_range_noflush+0x301/0x380
> [    1.682164]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
> [    1.687402]  [<ffffffff8111d010>] __vmalloc_area_node+0x100/0x190
> [    1.693535]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
> [    1.700172]  [<ffffffff8111cf02>] __vmalloc_node+0xa2/0xb0
> [    1.705671]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
> [    1.712324]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
> [    1.717562]  [<ffffffff8111d282>] __vmalloc+0x22/0x30
> [    1.722653]  [<ffffffff81898700>] alloc_large_system_hash+0x15e/0x222
> [    1.729916]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
> [    1.735186]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
> [    1.740438]  [<ffffffff818b44b6>] tcp_init+0xa3/0x383
> [    1.745505]  [<ffffffff818b4bbd>] inet_init+0x14b/0x209
> [    1.750772]  [<ffffffff8100a04c>] do_one_initcall+0x3c/0x1a0
> [    1.756451]  [<ffffffff8187972c>] kernel_init+0x15a/0x1b0
> [    1.761890]  [<ffffffff810150ea>] child_rip+0xa/0x20
> [    1.766870]  [<ffffffff818795d2>] ? kernel_init+0x0/0x1b0
> [    1.772307]  [<ffffffff810150e0>] ? child_rip+0x0/0x20
> [    1.777461] ---[ end trace e93713a9d40cd06c ]---
> [    1.782160] general protection fault: 0000 [#1] SMP 

This is the same error I've gotten. Now thought I can't reproduce it (after
I slimmed down the .config to build less modules).

Try 'nopat' as a command line parameter.

Also, you might want to update your kernel. The 2.6.32.12 is out

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-05 17:54           ` AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush Konrad Rzeszutek Wilk
@ 2010-05-06  3:18             ` Gerry Reno
  2010-05-06  5:52               ` Pasi Kärkkäinen
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-06  3:18 UTC (permalink / raw)
  To: Konrad Rzeszutek Wilk; +Cc: xen-devel

On 05/05/2010 01:54 PM, Konrad Rzeszutek Wilk wrote:
>> Finally, my serial port header cables showed up so I installed them and
>> now have some console output.
>>
>> Case 1: Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.10
>>
>> After playing around with the order of the consoles on the xen and
>> kernel lines I am able to get a login prompt but only after quite a long
>> time (4-5 mins).  It seems like something is stealing processor cycles.
>> And the behavior is not consistent, on different boots I get different
>> errors at times.
>>
>>
>> Case 1: pv_ops domU kernel 2.6.32.10  (no xen dom0)
>>
>> The kernel shows a lot of errors and just hangs.
>>
>>
>>
>> Attached: console output for both cases plus menu.lst
>>
>> -Gerry
>>
>>
>>
>>      
>    
>> [    0.000000] Initializing cgroup subsys cpuset
>> [    0.000000] Initializing cgroup subsys cpu
>> [    0.000000] Linux version 2.6.32.10 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #12 SMP Sat Apr0
>> [    0.000000] Command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 consolet
>> [    0.000000] KERNEL supported cpus:
>> [    0.000000]   Intel GenuineIntel
>> [    0.000000]   AMD AuthenticAMD
>> [    0.000000]   Centaur CentaurHauls
>> [    0.000000] BIOS-provided physical RAM map:
>> [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
>> [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
>> [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
>> [    0.000000]  BIOS-e820: 0000000000100000 - 00000000afde0000 (usable)
>> [    0.000000]  BIOS-e820: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
>> [    0.000000]  BIOS-e820: 00000000afde3000 - 00000000afdf0000 (ACPI data)
>> [    0.000000]  BIOS-e820: 00000000afdf0000 - 00000000afe00000 (reserved)
>> [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
>> [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
>> [    0.000000]  BIOS-e820: 0000000100000000 - 0000000230000000 (usable)
>> [    0.000000] DMI 2.4 present.
>> [    0.000000] last_pfn = 0x230000 max_arch_pfn = 0x400000000
>> [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
>> [    0.000000] last_pfn = 0xafde0 max_arch_pfn = 0x400000000
>> [    0.000000] Scanning 1 areas for low memory corruption
>> [    0.000000] modified physical RAM map:
>> [    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
>> [    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
>> [    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
>> [    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
>> [    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
>> [    0.000000]  modified: 0000000000100000 - 00000000afde0000 (usable)
>> [    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
>> [    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
>> [    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
>> [    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
>> [    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
>> [    0.000000]  modified: 0000000100000000 - 0000000230000000 (usable)
>> [    0.000000] Using GB pages for direct mapping
>> [    0.000000] init_memory_mapping: 0000000000000000-00000000afde0000
>> [    0.000000] init_memory_mapping: 0000000100000000-0000000230000000
>> [    0.000000] RAMDISK: 33d29000 - 37fef12a
>> [    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
>> [    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
>> [    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
>> [    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
>> [    0.000000] ACPI: FACS 00000000afde0000 00040
>> [    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
>> [    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
>> [    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
>> [    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
>> [    0.000000] Scanning NUMA topology in Northbridge 24
>> [    0.000000] No NUMA configuration found
>> [    0.000000] Faking a node at 0000000000000000-0000000230000000
>> [    0.000000] Bootmem setup node 0 0000000000000000-0000000230000000
>> [    0.000000]   NODE_DATA [000000000000b000 - 000000000000ffff]
>> [    0.000000]   bootmap [0000000000010000 -  0000000000055fff] pages 46
>> [    0.000000] (8 early reservations) ==>  bootmem [0000000000 - 0230000000]
>> [    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==>  [0000000000 - 0000001000]
>> [    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==>  [0000006000 - 0000008000]
>> [    0.000000]   #2 [0001000000 - 0001a51864]    TEXT DATA BSS ==>  [0001000000 - 0001a51864]
>> [    0.000000]   #3 [0033d29000 - 0037fef12a]          RAMDISK ==>  [0033d29000 - 0037fef12a]
>> [    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==>  [000009f800 - 0000100000]
>> [    0.000000]   #5 [0001a52000 - 0001a520fe]              BRK ==>  [0001a52000 - 0001a520fe]
>> [    0.000000]   #6 [0000008000 - 000000a000]          PGTABLE ==>  [0000008000 - 000000a000]
>> [    0.000000]   #7 [000000a000 - 000000b000]          PGTABLE ==>  [000000a000 - 000000b000]
>> [    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
>> [    0.000000] Zone PFN ranges:
>> [    0.000000]   DMA      0x00000000 ->  0x00001000
>> [    0.000000]   DMA32    0x00001000 ->  0x00100000
>> [    0.000000]   Normal   0x00100000 ->  0x00230000
>> [    0.000000] Movable zone start PFN for each node
>> [    0.000000] early_node_map[4] active PFN ranges
>> [    0.000000]     0: 0x00000000 ->  0x00000001
>> [    0.000000]     0: 0x00000006 ->  0x0000009f
>> [    0.000000]     0: 0x00000100 ->  0x000afde0
>> [    0.000000]     0: 0x00100000 ->  0x00230000
>> [    0.000000] ACPI: PM-Timer IO Port: 0x4008
>> [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
>> [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
>> [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
>> [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
>> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
>> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
>> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
>> [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
>> [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
>> [    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
>> [    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 low level)
>> [    0.000000] Using ACPI (MADT) for SMP configuration information
>> [    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
>> [    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
>> [    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
>> [    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
>> [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
>> [    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
>> [    0.000000] PM: Registered nosave memory: 00000000afde0000 - 00000000afde3000
>> [    0.000000] PM: Registered nosave memory: 00000000afde3000 - 00000000afdf0000
>> [    0.000000] PM: Registered nosave memory: 00000000afdf0000 - 00000000afe00000
>> [    0.000000] PM: Registered nosave memory: 00000000afe00000 - 00000000e0000000
>> [    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
>> [    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
>> [    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
>> [    0.000000] Allocating PCI resources starting at afe00000 (gap: afe00000:30200000)
>> [    0.000000] Booting paravirtualized kernel on bare hardware
>> [    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
>> [    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880008a00000 s91416 r8192 d23272 u524288
>> [    0.000000] pcpu-alloc: s91416 r8192 d23272 u524288 alloc=1*2097152
>> [    0.000000] pcpu-alloc: [0] 0 1 2 3
>> [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1933972
>> [    0.000000] Policy zone: Normal
>> [    0.000000] Kernel command line: root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0,115200n8 t
>> [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
>> [    0.000000] Initializing CPU#0
>> [    0.000000] Checking aperture...
>> [    0.000000] No AGP bridge found
>> [    0.000000] Node 0: aperture @ 20000000 size 32 MB
>> [    0.000000] Aperture pointing to e820 RAM. Ignoring.
>> [    0.000000] Memory: 7605344k/9175040k available (5523k kernel code, 1313304k absent, 256392k reserved, 3053k data, 8)
>> [    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
>> [    0.000000] Hierarchical RCU implementation.
>> [    0.000000] NR_IRQS:4352 nr_irqs:440
>> [    0.000000] Console: colour VGA+ 80x50
>> [    0.000000] console [tty0] enabled
>> [    0.000000] console [ttyS0] enabled
>> [    0.000000] allocated 78643200 bytes of page_cgroup
>> [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
>> [    0.000000] HPET: 4 timers in total, 1 timers will be used for per-cpu timer
>> [    0.000000] Fast TSC calibration using PIT
>> [    0.000000] Detected 3013.747 MHz processor.
>> [    0.030006] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.48 BogoMIPS (lpj=3013743)
>> [    0.050017] Security Framework initialized
>> [    0.054134] SELinux:  Disabled at boot.
>> [    0.058452] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
>> [    0.063393] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
>> [    0.071575] Mount-cache hash table entries: 256
>> [    0.080121] Initializing cgroup subsys ns
>> [    0.084147] Initializing cgroup subsys cpuacct
>> [    0.090004] Initializing cgroup subsys memory
>> [    0.094384] Initializing cgroup subsys devices
>> [    0.100002] Initializing cgroup subsys freezer
>> [    0.104466] Initializing cgroup subsys net_cls
>> [    0.108943] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
>> [    0.110002] CPU: L2 Cache: 512K (64 bytes/line)
>> [    0.120003] CPU 0/0x0 ->  Node 0
>> [    0.123163] CPU: Physical Processor ID: 0
>> [    0.127190] CPU: Processor Core ID: 0
>> [    0.130002] mce: CPU supports 6 MCE banks
>> [    0.134042] using C1E aware idle routine
>> [    0.137986] Performance Events: AMD PMU driver.
>> [    0.141521] ... version:                0
>> [    0.145549] ... bit width:              48
>> [    0.150001] ... generic registers:      4
>> [    0.154024] ... value mask:             0000ffffffffffff
>> [    0.160001] ... max period:             00007fffffffffff
>> [    0.165330] ... fixed-purpose events:   0
>> [    0.170001] ... event mask:             000000000000000f
>> [    0.176667] ACPI: Core revision 20090903
>> [    0.200029] ftrace: converting mcount calls to 0f 1f 44 00 00
>> [    0.210008] ftrace: allocating 21751 entries in 86 pages
>> [    0.225172] Setting APIC routing to flat
>> [    0.230490] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
>> [    0.336570] CPU0: AMD Phenom(tm) II X4 940 Processor stepping 02
>> [    0.350000] Booting processor 1 APIC 0x1 ip 0x6000
>> [    0.040000] Initializing CPU#1
>> [    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
>> [    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
>> [    0.040000] CPU 1/0x1 ->  Node 0
>> [    0.040000] CPU: Physical Processor ID: 0
>> [    0.040000] CPU: Processor Core ID: 1
>> [    0.500087] CPU1: AMD Phenom(tm) II X4 940 Processor stepping 02
>> [    0.521266] checking TSC synchronization [CPU#0 ->  CPU#1]: passed.
>> [    0.530052] Booting processor 2 APIC 0x2 ip 0x6000
>> [    0.040000] Initializing CPU#2
>> [    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
>> [    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
>> [    0.040000] CPU 2/0x2 ->  Node 0
>> [    0.040000] CPU: Physical Processor ID: 0
>> [    0.040000] CPU: Processor Core ID: 3
>> [    0.700082] CPU2: AMD Phenom(tm) II X4 940 Processor stepping 02
>> [    0.721263] checking TSC synchronization [CPU#0 ->  CPU#2]: passed.
>> [    0.730058] Booting processor 3 APIC 0x3 ip 0x6000
>> [    0.040000] Initializing CPU#3
>> [    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
>> [    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
>> [    0.040000] CPU 3/0x3 ->  Node 0
>> [    0.040000] CPU: Physical Processor ID: 0
>> [    0.040000] CPU: Processor Core ID: 2
>> [    0.900091] CPU3: AMD Phenom(tm) II X4 940 Processor stepping 02
>> [    0.921264] checking TSC synchronization [CPU#0 ->  CPU#3]: passed.
>> [    0.930009] Brought up 4 CPUs
>> [    0.940001] Total of 4 processors activated (24110.25 BogoMIPS).
>> [    0.950170] devtmpfs: initialized
>> [    0.954622] regulator: core version 0.5
>> [    0.958500] Time:  0:10:44  Date: 05/05/10
>> [    0.960041] NET: Registered protocol family 16
>> [    0.964594] TOM: 00000000d0000000 aka 3328M
>> [    0.970012] TOM2: 0000000230000000 aka 8960M
>> [    0.974339] ACPI: bus type pci registered
>> [    0.978424] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
>> [    0.980002] PCI: MCFG area at e0000000 reserved in E820
>> [    0.995600] PCI: Using MMCONFIG at e0000000 - efffffff
>> [    1.000001] PCI: Using configuration type 1 for base access
>> [    1.006220] bio: create slab<bio-0>  at 0
>> [    1.020358] ACPI: Interpreter enabled
>> [    1.024052] ACPI: (supports S0 S1 S4 S5)
>> [    1.028207] ACPI: Using IOAPIC for interrupt routing
>> [    1.033096] ACPI Warning: Incorrect checksum in table [??????"???] - 00, should be A6 (20090903/tbutils-314)
>> [    1.042365] ACPI: No dock devices found.
>> [    1.046409] ACPI: PCI Root Bridge [PCI0] (0000:00)
>> [    1.050128] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
>> [    1.060002] pci 0000:00:0a.0: PME# disabled
>> [    1.064490] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
>> [    1.070003] pci 0000:00:12.2: PME# disabled
>> [    1.074404] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
>> [    1.080004] pci 0000:00:13.2: PME# disabled
>> [    1.084437] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
>> [    1.090003] pci 0000:00:14.2: PME# disabled
>> [    1.094608] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
>> [    1.100003] pci 0000:02:00.0: PME# disabled
>> [    1.104387] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
>> [    1.110004] pci 0000:03:0e.0: PME# disabled
>> [    1.114240] pci 0000:00:14.4: transparent bridge
>> [    1.132377] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.140299] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.148292] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.153425] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.163451] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.172355] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.180286] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.188293] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
>> [    1.193491] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
>> [    1.200002] vgaarb: loaded
>> [    1.202810] SCSI subsystem initialized
>> [    1.210142] usbcore: registered new interface driver usbfs
>> [    1.215652] usbcore: registered new interface driver hub
>> [    1.220016] usbcore: registered new device driver usb
>> [    1.225157] ACPI: WMI: Mapper loaded
>> [    1.230001] PCI: Using ACPI for IRQ routing
>> [    1.234206] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
>> [    1.240001] pci 0000:00:00.0: BAR 3: can't allocate resource
>> [    1.250004] NetLabel: Initializing
>> [    1.253432] NetLabel:  domain hash size = 128
>> [    1.257807] NetLabel:  protocols = UNLABELED CIPSOv4
>> [    1.260009] NetLabel:  unlabeled traffic allowed by default
>> [    1.265630] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 24, 0
>> [    1.271470] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
>> [    1.281005] Switching to clocksource tsc
>> [    1.285069] pnp: PnP ACPI init
>> [    1.285069] ACPI: bus type pnp registered
>> [    1.289814] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
>> [    1.299767] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
>> [    1.309708] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
>> [    1.319646] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
>> [    1.329587] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
>> [    1.339181] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
>> [    1.349524] pnp: PnP ACPI: found 13 devices
>> [    1.353738] ACPI: ACPI bus type pnp unregistered
>> [    1.358377] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
>> [    1.364773] system 00:01: ioport range 0x220-0x225 has been reserved
>> [    1.371159] system 00:01: ioport range 0x290-0x294 has been reserved
>> [    1.377523] system 00:02: ioport range 0x4100-0x411f has been reserved
>> [    1.384089] system 00:02: ioport range 0x228-0x22f has been reserved
>> [    1.390470] system 00:02: ioport range 0x40b-0x40b has been reserved
>> [    1.396832] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
>> [    1.403229] system 00:02: ioport range 0xc00-0xc01 has been reserved
>> [    1.409597] system 00:02: ioport range 0xc14-0xc14 has been reserved
>> [    1.415992] system 00:02: ioport range 0xc50-0xc52 has been reserved
>> [    1.422370] system 00:02: ioport range 0xc6c-0xc6d has been reserved
>> [    1.428735] system 00:02: ioport range 0xc6f-0xc6f has been reserved
>> [    1.435128] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
>> [    1.441509] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
>> [    1.447871] system 00:02: ioport range 0xcd4-0xcdf has been reserved
>> [    1.454266] system 00:02: ioport range 0x4000-0x40fe has been reserved
>> [    1.460818] system 00:02: ioport range 0x4210-0x4217 has been reserved
>> [    1.467355] system 00:02: ioport range 0xb00-0xb0f has been reserved
>> [    1.473748] system 00:02: ioport range 0xb10-0xb1f has been reserved
>> [    1.480128] system 00:02: ioport range 0xb20-0xb3f has been reserved
>> [    1.486493] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
>> [    1.493667] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
>> [    1.501182] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
>> [    1.508330] system 00:0c: iomem range 0xafef0000-0xcfeeffff could not be reserved
>> [    1.515856] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
>> [    1.523369] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
>> [    1.530534] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
>> [    1.542754] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
>> [    1.548689] pci 0000:00:01.0:   IO window: 0xe000-0xefff
>> [    1.554050] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
>> [    1.560175] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
>> [    1.567754] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
>> [    1.573722] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
>> [    1.579047] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
>> [    1.585181] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
>> [    1.592775] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
>> [    1.598711] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
>> [    1.604067] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
>> [    1.610193] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
>> [    1.616751] pci 0000:00:0a.0: PCI INT A ->  GSI 18 (level, low) ->  IRQ 18
>> [    1.623549] NET: Registered protocol family 2
>> [    1.628090] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
>> [    1.636549] ------------[ cut here ]------------
>> [    1.641209] WARNING: at mm/vmalloc.c:110 vmap_page_range_noflush+0x301/0x380()
>> [    1.648440] Hardware name: GA-MA790GP-UD4H
>> [    1.652582] Modules linked in:
>> [    1.655710] Pid: 1, comm: swapper Not tainted 2.6.32.10 #12
>> [    1.661321] Call Trace:
>> [    1.663801]  [<ffffffff8106602b>] warn_slowpath_common+0x7b/0xc0
>> [    1.669819]  [<ffffffff81066084>] warn_slowpath_null+0x14/0x20
>> [    1.675698]  [<ffffffff8111bb31>] vmap_page_range_noflush+0x301/0x380
>> [    1.682164]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
>> [    1.687402]  [<ffffffff8111d010>] __vmalloc_area_node+0x100/0x190
>> [    1.693535]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
>> [    1.700172]  [<ffffffff8111cf02>] __vmalloc_node+0xa2/0xb0
>> [    1.705671]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
>> [    1.712324]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
>> [    1.717562]  [<ffffffff8111d282>] __vmalloc+0x22/0x30
>> [    1.722653]  [<ffffffff81898700>] alloc_large_system_hash+0x15e/0x222
>> [    1.729916]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
>> [    1.735186]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
>> [    1.740438]  [<ffffffff818b44b6>] tcp_init+0xa3/0x383
>> [    1.745505]  [<ffffffff818b4bbd>] inet_init+0x14b/0x209
>> [    1.750772]  [<ffffffff8100a04c>] do_one_initcall+0x3c/0x1a0
>> [    1.756451]  [<ffffffff8187972c>] kernel_init+0x15a/0x1b0
>> [    1.761890]  [<ffffffff810150ea>] child_rip+0xa/0x20
>> [    1.766870]  [<ffffffff818795d2>] ? kernel_init+0x0/0x1b0
>> [    1.772307]  [<ffffffff810150e0>] ? child_rip+0x0/0x20
>> [    1.777461] ---[ end trace e93713a9d40cd06c ]---
>> [    1.782160] general protection fault: 0000 [#1] SMP
>>      
> This is the same error I've gotten. Now thought I can't reproduce it (after
> I slimmed down the .config to build less modules).
>
> Try 'nopat' as a command line parameter.
>
> Also, you might want to update your kernel. The 2.6.32.12 is out
>
>    
Thanks.  I tried 'nopat' but that did not seem to change anything.

I also tried 'git pull' for xen/stable but it says 'Already up to 
date'.  So where do I find the 2.6.32.12?

-Gerry

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-06  3:18             ` Gerry Reno
@ 2010-05-06  5:52               ` Pasi Kärkkäinen
  2010-05-06 17:57                 ` Jeremy Fitzhardinge
  0 siblings, 1 reply; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-05-06  5:52 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel, Konrad Rzeszutek Wilk

On Wed, May 05, 2010 at 11:18:52PM -0400, Gerry Reno wrote:
> On 05/05/2010 01:54 PM, Konrad Rzeszutek Wilk wrote:
>>> Finally, my serial port header cables showed up so I installed them and
>>> now have some console output.
>>>
>>> Case 1: Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.10
>>>
>>> After playing around with the order of the consoles on the xen and
>>> kernel lines I am able to get a login prompt but only after quite a long
>>> time (4-5 mins).  It seems like something is stealing processor cycles.
>>> And the behavior is not consistent, on different boots I get different
>>> errors at times.
>>>
>>>
>>> Case 1: pv_ops domU kernel 2.6.32.10  (no xen dom0)
>>>
>>> The kernel shows a lot of errors and just hangs.
>>>
>>>
>>>
>>> Attached: console output for both cases plus menu.lst
>>>
>>> -Gerry
>>>
>>>
>>>
>>>      
>>    
>>> [    1.616751] pci 0000:00:0a.0: PCI INT A ->  GSI 18 (level, low) ->  IRQ 18
>>> [    1.623549] NET: Registered protocol family 2
>>> [    1.628090] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
>>> [    1.636549] ------------[ cut here ]------------
>>> [    1.641209] WARNING: at mm/vmalloc.c:110 vmap_page_range_noflush+0x301/0x380()
>>> [    1.648440] Hardware name: GA-MA790GP-UD4H
>>> [    1.652582] Modules linked in:
>>> [    1.655710] Pid: 1, comm: swapper Not tainted 2.6.32.10 #12
>>> [    1.661321] Call Trace:
>>> [    1.663801]  [<ffffffff8106602b>] warn_slowpath_common+0x7b/0xc0
>>> [    1.669819]  [<ffffffff81066084>] warn_slowpath_null+0x14/0x20
>>> [    1.675698]  [<ffffffff8111bb31>] vmap_page_range_noflush+0x301/0x380
>>> [    1.682164]  [<ffffffff8111bbe2>] map_vm_area+0x32/0x50
>>> [    1.687402]  [<ffffffff8111d010>] __vmalloc_area_node+0x100/0x190
>>> [    1.693535]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
>>> [    1.700172]  [<ffffffff8111cf02>] __vmalloc_node+0xa2/0xb0
>>> [    1.705671]  [<ffffffff81898700>] ? alloc_large_system_hash+0x15e/0x222
>>> [    1.712324]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
>>> [    1.717562]  [<ffffffff8111d282>] __vmalloc+0x22/0x30
>>> [    1.722653]  [<ffffffff81898700>] alloc_large_system_hash+0x15e/0x222
>>> [    1.729916]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
>>> [    1.735186]  [<ffffffff818b4a72>] ? inet_init+0x0/0x209
>>> [    1.740438]  [<ffffffff818b44b6>] tcp_init+0xa3/0x383
>>> [    1.745505]  [<ffffffff818b4bbd>] inet_init+0x14b/0x209
>>> [    1.750772]  [<ffffffff8100a04c>] do_one_initcall+0x3c/0x1a0
>>> [    1.756451]  [<ffffffff8187972c>] kernel_init+0x15a/0x1b0
>>> [    1.761890]  [<ffffffff810150ea>] child_rip+0xa/0x20
>>> [    1.766870]  [<ffffffff818795d2>] ? kernel_init+0x0/0x1b0
>>> [    1.772307]  [<ffffffff810150e0>] ? child_rip+0x0/0x20
>>> [    1.777461] ---[ end trace e93713a9d40cd06c ]---
>>> [    1.782160] general protection fault: 0000 [#1] SMP
>>>      
>> This is the same error I've gotten. Now thought I can't reproduce it (after
>> I slimmed down the .config to build less modules).
>>
>> Try 'nopat' as a command line parameter.
>>
>> Also, you might want to update your kernel. The 2.6.32.12 is out
>>
>>    
> Thanks.  I tried 'nopat' but that did not seem to change anything.
>
> I also tried 'git pull' for xen/stable but it says 'Already up to date'.  
> So where do I find the 2.6.32.12?
>

You should be using xen/stable-2.6.32.x branch.

changelog:
http://git.kernel.org/?p=linux/kernel/git/jeremy/xen.git;a=shortlog;h=xen/stable-2.6.32.x

-- Pasi

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-06  5:52               ` Pasi Kärkkäinen
@ 2010-05-06 17:57                 ` Jeremy Fitzhardinge
  2010-05-06 19:39                   ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Jeremy Fitzhardinge @ 2010-05-06 17:57 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: Gerry Reno, xen-devel, Konrad Rzeszutek Wilk

On 05/05/2010 10:52 PM, Pasi Kärkkäinen wrote:
> You should be using xen/stable-2.6.32.x branch.
>   

Meaning, do "git checkout xen/stable-2.6.32.x".  And if you want to make
it the default, add "XEN_LINUX_GIT_REMOTEBRANCH = xen/stable-2.6.32.x"
to your Config.mk.

    J

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-06 17:57                 ` Jeremy Fitzhardinge
@ 2010-05-06 19:39                   ` Gerry Reno
  2010-05-07  0:21                     ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-06 19:39 UTC (permalink / raw)
  To: xen-devel

On 05/06/2010 01:57 PM, Jeremy Fitzhardinge wrote:
> On 05/05/2010 10:52 PM, Pasi Kärkkäinen wrote:
>    
>> You should be using xen/stable-2.6.32.x branch.
>>
>>      
> Meaning, do "git checkout xen/stable-2.6.32.x".  And if you want to make
> it the default, add "XEN_LINUX_GIT_REMOTEBRANCH = xen/stable-2.6.32.x"
> to your Config.mk.
>
>      J
>
>    

Here's what I did on my platform (ubuntu lucid) which got 2.6.32.12 
compiled and installed (not tested yet):
sudo su -
cd /usr/src
git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git 
linux-2.6-xen
cd linux-2.6-xen
git reset --hard
git checkout -b xen/stable-2.6.32.x origin/xen/stable-2.6.32.x
git pull
cp PATHTOYOURCONFIG/.config .
make oldconfig
make menuconfig # if you need to change something
make
chmod g-s /usr/src -R
make deb-pkg
dpkg -i ../linux-image-2.6.32.12_2.6.32.12-2_amd64.deb  # update deb 
version if you rebuild kernel
depmod 2.6.32.12
update-initramfs -c -k 2.6.32.12
update-grub
echo "xen-evtchn" >> /etc/modules

-Gerry

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-06 19:39                   ` Gerry Reno
@ 2010-05-07  0:21                     ` Gerry Reno
  2010-05-07  2:22                       ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-07  0:21 UTC (permalink / raw)
  To: xen-devel; +Cc: Konrad Rzeszutek Wilk

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

Ok, I tested with the new 2.6.32.12:  (.config same)

Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12

Still pv_ops dom0 is not working properly.
There are still call trace and other errors.  The kernel does boot up 
but it takes again a long time to get the login prompt (about 3 mins).  
This is far longer than when I used 2.6.31.6 pv_ops dom0.  Networking 
does not start properly (only see 'lo' and 'virbr0'), so I have to 
restart it manually and then I see my bridge 'br0' and 'eth0'.
Can't find device "br0"
/etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.
And it is trying unsuccessfully to start some laptop feature like 
S99powernap (unknown job) and also S28-libvirt-bin fails (maybe network 
related?).


Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):

Now the straight linux kernel (no xen dom0) boots right up and goes to 
login prompt in normal timeframe.  Networking starts correctly.  Things 
look pretty normal.


Observation:
I'm getting slightly different output on console and serial console.  
Some errors show on one but not the other.  Shouldn't these be identical?


I'm attaching both serial console outputs.

menu.lst is same as before (just .12 instead of .10)

-Gerry



[-- Attachment #2: AMD_pvops_dom0_console_2.6.32.12.txt --]
[-- Type: text/plain, Size: 57354 bytes --]

 __  __            _  _    ___   ___              ___  
 \ \/ /___ _ __   | || |  / _ \ / _ \    _ __ ___( _ ) 
  \  // _ \ '_ \  | || |_| | | | | | |__| '__/ __/ _ \ 
  /  \  __/ | | | |__   _| |_| | |_| |__| | | (_| (_) |
 /_/\_\___|_| |_|    |_|(_)___(_)___/   |_|  \___\___/ 
                                                       
(XEN) Xen version 4.0.0-rc8 (root@) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) Sat Apr 24 11:56:47 EDT 2010
(XEN) Latest ChangeSet: Fri Mar 26 10:29:38 2010 +0000 21074:542211ba675c
(XEN) Console output is synchronous.
(XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_rin1
(XEN) Video information:
(XEN)  VGA is text mode 80x50, font 8x8
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN) Disc information:
(XEN)  Found 6 MBR signatures
(XEN)  Found 6 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009f800 (usable)
(XEN)  000000000009f800 - 00000000000a0000 (reserved)
(XEN)  00000000000f0000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 00000000afde0000 (usable)
(XEN)  00000000afde0000 - 00000000afde3000 (ACPI NVS)
(XEN)  00000000afde3000 - 00000000afdf0000 (ACPI data)
(XEN)  00000000afdf0000 - 00000000afe00000 (reserved)
(XEN)  00000000e0000000 - 00000000f0000000 (reserved)
(XEN)  00000000fec00000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000230000000 (usable)
(XEN) ACPI: RSDP 000F75D0, 0014 (r0 GBT   )
(XEN) ACPI: RSDT AFDE3000, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: FACP AFDE3040, 0074 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: DSDT AFDE30C0, 6E65 (r1 GBT    GBTUACPI     1000 MSFT  3000000)
(XEN) ACPI: FACS AFDE0000, 0040
(XEN) ACPI: HPET AFDEA000, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU       98)
(XEN) ACPI: MCFG AFDEA040, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: TAMG AFDEA080, 030A (r1 GBT    GBT   B0 5455312E BG53450101)
(XEN) ACPI: APIC AFDE9F40, 0084 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) System RAM: 7433MB (7612036kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-0000000230000000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000f5c30
(XEN) DMI 2.4 present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x4008
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[4004,0], pm1x_evt[4000,0]
(XEN) ACPI:                  wakeup_vec[afde000c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
(XEN) Processor #0 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
(XEN) Processor #1 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
(XEN) Processor #2 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
(XEN) Processor #3 0:4 APIC version 16
(XEN) ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
(XEN) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x10b9a201 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: MCFG area at e0000000 reserved in E820
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 3013.846 MHz processor.
(XEN) Initing memory sharing.
(XEN) HVM: ASIDs enabled.
(XEN) HVM: SVM enabled
(XEN) HVM: Hardware Assisted Paging detected.
(XEN) AMD Fam10h machine check reporting enabled
(XEN) AMD-Vi: IOMMU not found!
(XEN) I/O virtualisation disabled
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) TSC is reliable, synchronization unnecessary
(XEN) Platform timer is 14.318MHz HPET
�(XEN) Allocated console ring of 32 KiB.
(XEN) do_IRQ: 1.231 No irq handler for vector (irq -1)
(XEN) do_IRQ: 2.231 No irq handler for vector (irq -1)
(XEN) Brought up 4 CPUs
(XEN) do_IRQ: 3.231 No irq handler for vector (irq -1)
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) HPET: 4 timers in total, 3 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) MCA: Use hw thresholding to adjust polling frequency
(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 -> 0x1a76000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000210000000->0000000220000000 (196608 pages to be allocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81a76000
(XEN)  Init. ramdisk: ffffffff81a76000->ffffffff8f7e5400
(XEN)  Phys-Mach map: ffffffff8f7e6000->ffffffff8f9e6000
(XEN)  Start info:    ffffffff8f9e6000->ffffffff8f9e64b4
(XEN)  Page tables:   ffffffff8f9e7000->ffffffff8fa68000
(XEN)  Boot stack:    ffffffff8fa68000->ffffffff8fa69000
(XEN)  TOTAL:         ffffffff80000000->ffffffff8fc00000
(XEN)  ENTRY ADDRESS: ffffffff8187d200
(XEN) Dom0 has maximum 4 VCPUs
(XEN) Scrubbing Free RAM: ..................................................................done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) **********************************************
(XEN) ******* WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) ******* This option is intended to aid debugging of Xen by ensuring
(XEN) ******* that all output is synchronously delivered on the serial line.
(XEN) ******* However it can introduce SIGNIFICANT latencies and affect
(XEN) ******* timekeeping. It is NOT recommended for production use!
(XEN) **********************************************
(XEN) 3... 2... 1... 
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 164kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.12 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #2 SMP Thu May 0
[    0.000000] Command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen console=hvt
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] PAT support disabled.
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000] RAMDISK: 01a76000 - 0f7e5400
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9e7000 - 000fa68000]   XEN PAGETABLES ==> [000f9e7000 - 000fa68000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a558e4]    TEXT DATA BSS ==> [0001000000 - 0001a558e4]
[    0.000000]   #4 [0001a76000 - 000f7e5400]          RAMDISK ==> [0001a76000 - 000f7e5400]
[    0.000000]   #5 [000f7e6000 - 000f9e7000]   XEN START INFO ==> [000f7e6000 - 000f9e7000]
[    0.000000]   #6 [0001a56000 - 0001a560fe]              BRK ==> [0001a56000 - 0001a560fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa9e000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen cont
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    0.000000] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c53000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014cb3000 size=32768
[    0.000000] Memory: 725620k/1048576k available (5532k kernel code, 408k absent, 322548k reserved, 3061k data, 800k i)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.12 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #2 SMP Thu May 0
[    0.000000] Command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen console=hvt
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] PAT support disabled.
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000] RAMDISK: 01a76000 - 0f7e5400
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9e7000 - 000fa68000]   XEN PAGETABLES ==> [000f9e7000 - 000fa68000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a558e4]    TEXT DATA BSS ==> [0001000000 - 0001a558e4]
[    0.000000]   #4 [0001a76000 - 000f7e5400]          RAMDISK ==> [0001a76000 - 000f7e5400]
[    0.000000]   #5 [000f7e6000 - 000f9e7000]   XEN START INFO ==> [000f7e6000 - 000f9e7000]
[    0.000000]   #6 [0001a56000 - 0001a560fe]              BRK ==> [0001a56000 - 0001a560fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa9e000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen cont
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    0.000000] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c53000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014cb3000 size=32768
[    0.000000] Memory: 725620k/1048576k available (5532k kernel code, 408k absent, 322548k reserved, 3061k data, 800k i)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] console [hvc0] enabled
[    0.000000] allocated 10485760 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] installing Xen timer for CPU 0
(XEN) traps.c:2309:d0 Domain attempted WRMSR 00000000c0010004 from 00000002:0d6ef2ec to 00000000:00000000.
(XEN) traps.c:2309:d0 Domain attempted WRMSR 00000000c0010000 from 00000000:00030076 to 00000000:00430076.
[    0.000000] Detected 265678.238 MHz processor.
[    0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.69 BogoMIPS (lpj=3013846)
[    0.010029] Security Framework initialized
[    0.014336] SELinux:  Disabled at boot.
[    0.018602] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.020034] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.027394] Mount-cache hash table entries: 256
[    0.030132] Initializing cgroup subsys ns
[    0.034244] Initializing cgroup subsys cpuacct
[    0.038935] Initializing cgroup subsys memory
[    0.040000] Initializing cgroup subsys devices
[    0.040000] Initializing cgroup subsys freezer
[    0.040000] Initializing cgroup subsys net_cls
[    0.040025] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.047425] CPU: L2 Cache: 512K (64 bytes/line)
[    0.050000] CPU 0/0x0 -> Node 0
[    0.050006] CPU: Physical Processor ID: 0
[    0.054152] CPU: Processor Core ID: 0
[    0.057958] mce: CPU supports 6 MCE banks
[    0.060014] Performance Events: AMD PMU driver.
[    0.064713] ------------[ cut here ]------------
[    0.069607] WARNING: at arch/x86/xen/enlighten.c:731 xen_apic_write+0x1a/0x20()
[    0.070000] Hardware name: GA-MA790GP-UD4H
[    0.070000] Modules linked in:
[    0.070000] Pid: 0, comm: swapper Not tainted 2.6.32.12 #2
[    0.070000] Call Trace:
[    0.070000]  [<ffffffff8106605b>] warn_slowpath_common+0x7b/0xc0
[    0.070000]  [<ffffffff810660b4>] warn_slowpath_null+0x14/0x20
[    0.070000]  [<ffffffff8100b70a>] xen_apic_write+0x1a/0x20
[    0.070000]  [<ffffffff81021c76>] perf_events_lapic_init+0x36/0x40
[    0.070000]  [<ffffffff81886553>] init_hw_perf_events+0x34f/0x3ec
[    0.070000]  [<ffffffff81886175>] identify_boot_cpu+0x3c/0x3e
[    0.070000]  [<ffffffff818861e0>] check_bugs+0x9/0x2d
[    0.070000]  [<ffffffff8187dd7e>] start_kernel+0x3e3/0x403
[    0.070000]  [<ffffffff8187d33a>] x86_64_start_reservations+0x125/0x129
[    0.070000]  [<ffffffff818812f7>] xen_start_kernel+0x6ab/0x6b2
[    0.070000] ---[ end trace a7919e7f17c0a725 ]---
[    0.070000] ... version:                0
[    0.070000] ... bit width:              48
[    0.070000] ... generic registers:      4
[    0.070000] ... value mask:             0000ffffffffffff
[    0.070000] ... max period:             00007fffffffffff
[    0.070000] ... fixed-purpose events:   0
[    0.070000] ... event mask:             000000000000000f
[    0.070000] SMP alternatives: switching to UP code
[    0.070000] ACPI: Core revision 20090903
[    0.080057] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.085983] ftrace: allocating 21787 entries in 86 pages
[    0.090080] cpu 0 spinlock event irq 1278
[    0.094464] installing Xen timer for CPU 1
[    0.099506] cpu 1 spinlock event irq 1272
[    0.100022] SMP alternatives: switching to SMP code
[    0.000017] Initializing CPU#1
[    0.000064] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000067] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000068] CPU 1/0x0 -> Node 0
[    0.000070] CPU: Physical Processor ID: 0
[    0.000071] CPU: Processor Core ID: 1
[    0.120200] installing Xen timer for CPU 2
[    0.130013] cpu 2 spinlock event irq 1266
[    0.000015] Initializing CPU#2
[    0.000068] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000071] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000073] CPU 2/0x0 -> Node 0
[    0.000075] CPU: Physical Processor ID: 0
[    0.000076] CPU: Processor Core ID: 3
[    0.134375] installing Xen timer for CPU 3
[    0.140012] cpu 3 spinlock event irq 1260
[    0.000017] Initializing CPU#3
[    0.000064] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000066] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000068] CPU 3/0x0 -> Node 0
[    0.000070] CPU: Physical Processor ID: 0
[    0.000071] CPU: Processor Core ID: 2
[    0.144397] Brought up 4 CPUs
[    0.150038] devtmpfs: initialized
[    0.154587] Grant table initialized
[    0.154587] regulator: core version 0.5
[    0.157782] Time: 23:19:38  Date: 05/06/10
[    0.160034] NET: Registered protocol family 16
[    0.164672] TOM: 00000000d0000000 aka 3328M
[    0.164672] TOM2: 0000000230000000 aka 8960M
[    0.170033] ACPI: bus type pci registered
[    0.174300] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.180000] PCI: MCFG area at e0000000 reserved in E820
[    0.210000] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.210000] PCI: Using configuration type 1 for base access
[    0.210599] bio: create slab <bio-0> at 0
[    0.214197] ERROR: Unable to locate IOAPIC for GSI 9
[    0.229620] ACPI: Interpreter enabled
[    0.230000] ACPI: (supports S0 S1 S4 S5)
[    0.230000] ACPI: Using IOAPIC for interrupt routing
[    0.234949] ACPI: No dock devices found.
[    0.239118] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.240000] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.240000] pci 0000:00:0a.0: PME# disabled
[    0.240420] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.246644] pci 0000:00:12.2: PME# disabled
[    0.250000] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.250000] pci 0000:00:13.2: PME# disabled
[    0.250224] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.256568] pci 0000:00:14.2: PME# disabled
[    0.260522] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.267388] pci 0000:02:00.0: PME# disabled
[    0.270000] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.270000] pci 0000:03:0e.0: PME# disabled
[    0.270000] pci 0000:00:14.4: transparent bridge
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:0a.0
(XEN) PCI add device 00:11.0
(XEN) PCI add device 00:12.0
(XEN) PCI add device 00:12.1
(XEN) PCI add device 00:12.2
(XEN) PCI add device 00:13.0
(XEN) PCI add device 00:13.1
(XEN) PCI add device 00:13.2
(XEN) PCI add device 00:14.0
(XEN) PCI add device 00:14.1
(XEN) PCI add device 00:14.2
(XEN) PCI add device 00:14.3
(XEN) PCI add device 00:14.4
(XEN) PCI add device 00:14.5
(XEN) PCI add device 00:18.0
(XEN) PCI add device 00:18.1
(XEN) PCI add device 00:18.2
(XEN) PCI add device 00:18.3
(XEN) PCI add device 00:18.4
(XEN) PCI add device 01:05.0
(XEN) PCI add device 01:05.1
(XEN) PCI add device 02:00.0
(XEN) PCI add device 03:0e.0
[    0.345464] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.350086] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.357740] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.360082] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.367761] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.370082] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.377870] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.380082] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.387701] xen_balloon: Initialising balloon driver with page order 0.
[    0.390067] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.398304] vgaarb: loaded
[    0.400095] SCSI subsystem initialized
[    0.404004] usbcore: registered new interface driver usbfs
[    0.405720] usbcore: registered new interface driver hub
[    0.410025] usbcore: registered new device driver usb
[    0.415305] ACPI: WMI: Mapper loaded
[    0.415305] PCI: Using ACPI for IRQ routing
[    0.418198] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    0.420000] pci 0000:00:00.0: BAR 3: can't allocate resource
[    0.420075] NetLabel: Initializing
[    0.423536] NetLabel:  domain hash size = 128
[    0.428040] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.430000] NetLabel:  unlabeled traffic allowed by default
[    0.430058] Switching to clocksource xen
[    0.434176] pnp: PnP ACPI init
[    0.434704] ACPI: bus type pnp registered
[    0.439874] xen_allocate_pirq: returning irq 8 for gsi 8
[    0.445386] Already setup the GSI :8
[    0.449322] xen_allocate_pirq: returning irq 13 for gsi 13
[    0.455053] Already setup the GSI :13
[    0.459364] xen_allocate_pirq: returning irq 4 for gsi 4
[    0.464835] Already setup the GSI :4
[    0.468741] xen_allocate_pirq: returning irq 12 for gsi 12
[    0.474335] Already setup the GSI :12
[    0.478272] xen_allocate_pirq: returning irq 1 for gsi 1
[    0.483817] Already setup the GSI :1
[    0.488021] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.493813] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.493813] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.493813] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.493813] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.493813] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.549932] pnp: PnP ACPI: found 13 devices
[    0.554267] ACPI: ACPI bus type pnp unregistered
[    0.559172] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.565840] system 00:01: ioport range 0x220-0x225 has been reserved
[    0.569160] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.579054] system 00:02: ioport range 0x4100-0x411f has been reserved
[    0.585926] system 00:02: ioport range 0x228-0x22f has been reserved
[    0.589049] system 00:02: ioport range 0x40b-0x40b has been reserved
[    0.589049] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    0.589049] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    0.589049] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    0.589049] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    0.589049] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    0.589049] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    0.589049] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    0.589049] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    0.589049] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    0.589049] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    0.589049] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    0.589049] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    0.589049] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    0.589049] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    0.692574] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.700069] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    0.707747] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    0.710061] system 00:0c: iomem range 0xafef0000-0xcfeeffff has been reserved
[    0.710061] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.710061] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.710061] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    0.748432] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    0.755288] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.756049] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    0.756049] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    0.756049] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.756049] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    0.756049] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    0.756049] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    0.756049] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    0.756049] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    0.756049] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    0.756049] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    0.756049] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    0.832712] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.839778] NET: Registered protocol family 2
[    0.844470] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.852506] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[    0.860773] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.868050] TCP: Hash tables configured (established 131072 bind 65536)
[    0.870711] TCP reno registered
[    0.870711] NET: Registered protocol family 1
[    1.030203] Trying to unpack rootfs image as initramfs...
[    1.238992] Freeing initrd memory: 226749k freed
[    1.337472] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.340012] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    1.340012] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    1.359399] Scanning for low memory corruption every 60 seconds
[    1.365638] audit: initializing netlink socket (disabled)
[    1.371215] type=2000 audit(1273187980.195:1): initialized
[    1.383011] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.390972] VFS: Disk quotas dquot_6.5.2
[    1.395128] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.402390] fuse init (API version 7.13)
[    1.406532] msgmni has been set to 1860
[    1.410844] alg: No test for stdrng (krng)
[    1.415044] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.422748] io scheduler noop registered
[    1.424972] io scheduler anticipatory registered
[    1.424972] io scheduler deadline registered (default)
[    1.437076] io scheduler cfq registered
[    1.441535] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.447288] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.454357] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.462926] ACPI: Power Button [PWRB]
[    1.466848] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.474581] ACPI: Power Button [PWRF]
[    1.480642] Event-channel device installed.
[    1.488794] blktap_device_init: blktap device major 253
[    1.494208] blktap_ring_init: blktap ring major: 252
[    1.500149] registering netback
[    1.503472] xen-platform-pcifailed backend handshake: unrecognised magic value
[    1.512240] hpet_acpi_add: no address or irqs in _CRS
[    1.517465] Linux agpgart interface v0.103
[    1.521783] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.529322] brd: module loaded
[    1.532831] loop: module loaded
[    1.536149] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    1.544461] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.552284] Fixed MDIO Bus: probed
[    1.555811] PPP generic driver version 2.4.2
[    1.560265] tun: Universal TUN/TAP device driver, 1.6
[    1.565520] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.572050] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.578960] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.586376] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    1.591824] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.599570] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    1.601797] ehci_hcd 0000:00:12.2: debug port 1
[    1.601797] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    1.617964] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.624031] usb usb1: configuration #1 chosen from 1 choice
[    1.629797] hub 1-0:1.0: USB hub found
[    1.633773] hub 1-0:1.0: 6 ports detected
[    1.638085] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.645523] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    1.648052] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.648052] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    1.648052] ehci_hcd 0000:00:13.2: debug port 1
[    1.648052] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    1.677279] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.683326] usb usb2: configuration #1 chosen from 1 choice
[    1.689122] hub 2-0:1.0: USB hub found
[    1.693117] hub 2-0:1.0: 6 ports detected
[    1.697321] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.703824] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.709466] Already setup the GSI :16
[    1.713347] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.713803] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    1.713803] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.713803] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    1.764112] usb usb3: configuration #1 chosen from 1 choice
[    1.769899] hub 3-0:1.0: USB hub found
[    1.773886] hub 3-0:1.0: 3 ports detected
[    1.778266] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.784008] Already setup the GSI :16
[    1.787873] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.793991] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    1.800936] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    1.808703] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    1.864119] usb usb4: configuration #1 chosen from 1 choice
[    1.869929] hub 4-0:1.0: USB hub found
[    1.873911] hub 4-0:1.0: 3 ports detected
[    1.878174] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.883843] Already setup the GSI :18
[    1.887728] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.893840] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    1.900604] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    1.908394] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    1.964123] usb usb5: configuration #1 chosen from 1 choice
[    1.969955] hub 5-0:1.0: USB hub found
[    1.973949] hub 5-0:1.0: 3 ports detected
[    1.978300] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.983969] Already setup the GSI :18
[    1.987844] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.993965] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    1.993965] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    1.993965] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.044109] usb usb6: configuration #1 chosen from 1 choice
[    2.049910] hub 6-0:1.0: USB hub found
[    2.053898] hub 6-0:1.0: 3 ports detected
[    2.058147] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.063772] Already setup the GSI :18
[    2.067620] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.073768] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.080580] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    2.088312] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.144109] usb usb7: configuration #1 chosen from 1 choice
[    2.149893] hub 7-0:1.0: USB hub found
[    2.153884] hub 7-0:1.0: 2 ports detected
[    2.158157] uhci_hcd: USB Universal Host Controller Interface driver
[    2.164852] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.173120] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.178285] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.183679] mice: PS/2 mouse device common for all mice
[    2.189226] rtc_cmos 00:05: RTC can wake from S4
[    2.193606] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.200484] rtc0: alarms up to one month, 242 bytes nvram
[    2.206049] device-mapper: uevent: version 1.0.3
[    2.210957] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.219772] device-mapper: multipath: version 1.1.0 loaded
[    2.225483] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.232593] cpuidle: using governor ladder
[    2.236876] cpuidle: using governor menu
[    2.242083] TCP cubic registered
[    2.245476] NET: Registered protocol family 10
[    2.250210] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.250538] lo: Disabled Privacy Extensions
[    2.250779] NET: Registered protocol family 17
[    2.268329] powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor processors (4 cpu cores) (version 2.20.00)
[    2.270004] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found.
[    2.270004] [Firmware Bug]: powernow-k8: Try again with latest BIOS.
[    2.293213] registered taskstats version 1
[    2.297895]   Magic number: 10:156:352
[    2.301920] rtc_cmos 00:05: setting system clock to 2010-05-06 23:19:41 UTC (1273187981)
[    2.310225] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.311891] EDD information not available.
[    2.320841] Freeing unused kernel memory: 800k freed
[    2.326236] Write protecting the kernel read-only data: 7812k
[    2.368178] udev: starting version 151
[    2.381485] md: linear personality registered for level -1
[    2.405146] md: multipath personality registered for level -4
[    2.426686] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.434009] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.442558] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    2.464406] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.470302] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.476027] Already setup the GSI :18
[    2.479819] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.487872] eth0: RTL8168c/8111c at 0xffffc900001ee000, 00:24:1d:19:05:df, XID 1c4000c0 IRQ 1250
[    2.522791] md: raid0 personality registered for level 0
[    2.528588] xen_allocate_pirq: returning irq 22 for gsi 22
[    2.534375] Already setup the GSI :22
[    2.538161] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.545920] scsi0 : ahci
[    2.548695] scsi1 : ahci
[    2.551503] scsi2 : ahci
[    2.554206] scsi3 : ahci
[    2.556960] scsi4 : ahci
[    2.559705] scsi5 : ahci
[    2.562534] ata1: SATA max UDMA/133 irq_stat 0x00400000, PHY RDY changed irq 22
[    2.570163] ata2: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    2.572315] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    2.572315] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    2.588556] md: raid1 personality registered for level 1
[    2.572315] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    2.572315] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    2.614469] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[fdcff000-fdcff7ff]  Max Packet=[2048]  IR/IT co]
[    2.626568] scsi6 : pata_atiixp
[    2.629968] scsi7 : pata_atiixp
[    2.631325] async_tx: api initialized (async)
[    2.638813] ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[    2.645958] ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[    2.840535] ata7.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
[    2.880473] ata7.01: configured for UDMA/33
[    3.140045] ata4: softreset failed (device not ready)
[    3.140052] ata2: softreset failed (device not ready)
[    3.140055] ata2: applying SB600 PMP SRST workaround and retrying
[    3.140072] ata3: softreset failed (device not ready)
[    3.140074] ata3: applying SB600 PMP SRST workaround and retrying
[    3.140102] ata6: softreset failed (device not ready)
[    3.140104] ata6: applying SB600 PMP SRST workaround and retrying
[    3.140132] ata5: softreset failed (device not ready)
[    3.140135] ata5: applying SB600 PMP SRST workaround and retrying
[    3.150021] ata4: applying SB600 PMP SRST workaround and retrying
[    3.350069] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.360060] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.360066] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.360091] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.360120] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.386071] ata5.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.386094] ata4.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.386097] ata4.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.386114] ata3.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.386116] ata3.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.387230] ata4.00: configured for UDMA/133
[    3.387250] ata3.00: configured for UDMA/133
[    3.388928] ata6.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.388930] ata6.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.389921] ata6.00: configured for UDMA/133
[    3.406816] ata2.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.406818] ata2.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.407922] ata2.00: configured for UDMA/133
[    3.396065] ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.477917] ata5.00: configured for UDMA/133
[    3.540037] ata1: softreset failed (device not ready)
[    3.545286] ata1: applying SB600 PMP SRST workaround and retrying
[    3.720046] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.751569] ata1.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.758731] ata1.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.767238] ata1.00: configured for UDMA/133
[    3.780152] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.788773] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.788823] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.788868] sd 0:0:0:0: [sda] Write Protect is off
[    3.788891] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.789031]  sda: sda1 sda2 sda3
[    3.820223] scsi 1:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.820242] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.833585] sd 1:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.833624] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.833762] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.833878] sd 2:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.833916] sd 2:0:0:0: Attached scsi generic sg2 type 0
[    3.833920] sd 2:0:0:0: [sdc] Write Protect is off
[    3.833944] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.834005] scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.834075]  sdc:
[    3.834112] sd 3:0:0:0: Attached scsi generic sg3 type 0
[    3.834126] sd 3:0:0:0: [sdd] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.834217] scsi 4:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.834353] sd 4:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.834357] sd 4:0:0:0: Attached scsi generic sg4 type 0
[    3.834397] sd 4:0:0:0: [sde] Write Protect is off
[    3.834434] sd 3:0:0:0: [sdd] Write Protect is off
[    3.834459] scsi 5:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.834459] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.834569] sd 5:0:0:0: [sdf] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.834587] sd 5:0:0:0: Attached scsi generic sg5 type 0
[    3.834611] sd 5:0:0:0: [sdf] Write Protect is off
[    3.834654] sd 5:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.834761]  sdf:
[    3.834782] sd 4:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.834805]  sdd:
[    3.834918]  sde:
[    3.837947] scsi 6:0:1:0: CD-ROM            HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[    3.846164] sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    3.846167] Uniform CD-ROM driver Revision: 3.20
[    3.846298] sr 6:0:1:0: Attached scsi generic sg6 type 5
[    3.854208]  sdc1
[    4.021842]  sdf1
[    4.021876] sd 1:0:0:0: [sdb] Write Protect is off
[    4.021900] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.031252]  sdf2 sdf3
[    4.040813]  sde1 sde2 sde3
[    4.043790]  sdd1
[    4.045981]  sdb:
[    4.046117] sd 4:0:0:0: [sde] Attached SCSI disk
[    4.046199] sd 5:0:0:0: [sdf] Attached SCSI disk
[    4.046284] sd 3:0:0:0: [sdd] Attached SCSI disk
[    4.062129] sd 2:0:0:0: [sdc] Attached SCSI disk
[    4.089101]  sdb1 sdb2 sdb3
[    4.092236] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.100732] xor: automatically using best checksumming function: generic_sse
[    4.150008]    generic_sse:  4623.200 MB/sec
[    4.154385] xor: using function: generic_sse (4623.200 MB/sec)
[    4.246433] md: bind<sdd1>
[    4.254830] md: bind<sdc1>
[    4.260141] raid1: raid set md3 active with 2 out of 2 mirrors
[    4.266232] md3: detected capacity change from 0 to 250056605696
[    4.274852]  md3:
[    4.274878] md: bind<sda1>
[    4.281703]  unknown partition table
[    4.285972] md: bind<sda2>
[    4.289216] md: bind<sde2>
[    4.292979] md: bind<sde1>
[    4.296327] md: bind<sdf2>
[    4.299437] md: bind<sda3>
[    4.305981] raid1: raid set md5 active with 2 out of 2 mirrors
[    4.311861] md5: detected capacity change from 0 to 15998058496
[    4.318696] md: bind<sdb2>
[    4.322358] md: bind<sdb3>
[    4.325642]  md5:
[    4.327648] raid1: raid set md1 active with 2 out of 2 mirrors
[    4.330032] raid6: int64x1   2508 MB/s
[    4.337925] md1: detected capacity change from 0 to 19329318912
[    4.346063] raid1: raid set md2 active with 2 out of 2 mirrors
[    4.346247]  md1: unknown partition table
[    4.356366] md2: detected capacity change from 0 to 230200836096
[    4.356382]  unknown partition table
[    4.366722] md: bind<sde3>
[    4.371758]  md2: unknown partition table
[    4.377228] md: bind<sdf3>
[    4.383355] raid1: raid set md6 active with 2 out of 2 mirrors
[    4.389287] md6: detected capacity change from 0 to 483605217280
[    4.398352]  md6: unknown partition table
[    4.489946] md: bind<sdf1>
[    4.493326] md: bind<sdb1>
[    4.500009] raid6: int64x2   3476 MB/s
[    4.670019] raid6: int64x4   2691 MB/s
[    4.840020] raid6: int64x8   2353 MB/s
[    5.010009] raid6: sse2x1    3206 MB/s
[    5.180008] raid6: sse2x2    4643 MB/s
[    5.350018] raid6: sse2x4    4584 MB/s
[    5.353878] raid6: using algorithm sse2x2 (4643 MB/s)
[    5.359402] raid1: raid set md4 active with 2 out of 2 mirrors
[    5.360776] raid1: raid set md0 active with 2 out of 2 mirrors
[    5.360808] md0: detected capacity change from 0 to 526319616
[    5.375952] md: raid6 personality registered for level 6
[    5.375954] md: raid5 personality registered for level 5
[    5.375956] md: raid4 personality registered for level 4
[    5.394292] md4: detected capacity change from 0 to 501612544
[    5.400762]  md0:
[    5.404469]  md4: unknown partition table
[    5.416776] md: raid10 personality registered for level 10
[    5.642261] EXT4-fs (dm-0): INFO: recovery required on readonly filesystem
[    5.649270] EXT4-fs (dm-0): write access will be enabled during recovery
[    9.406719] EXT4-fs (dm-0): recovery complete
[    9.411566] EXT4-fs (dm-0): mounted filesystem with ordered data mode
[   16.223906] ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
[   16.318523] shpchp 0000:00:01.0: Cannot reserve MMIO region
init: procps main process (554) terminated with status 255
fsck from util-linux-ng 2.17.2
fsck from util-linux-ng 2.17.2
init: eucalyptus-network (lo) main process (1070) killed by TERM signal
init: eucalyptus-network (eth0) main process (1153) killed by TERM signal
/dev/mapper/vg--grp--01--23--02--2-LogVol00: clean, 511645/29523968 files, 16461663/118067200 blocks
/dev/md4: clean, 224/122880 files, 280736/489856 blocks
init: tftpd-hpa main process (1367) terminated with status 66
init: tftpd-hpa main process ended, respawning
Loading the saved-state of the serial devices... 
/dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
[ OK ]ting sensors limits        

** (process:1523): WARNING **: Could not parse config file: Could not open config file /etc/nbd-server/config.
** Message: Nothing to do! Bye!
 nbd-server.
[ OK ]rting internet superserver inetd        
[ OK ]rting Postfix Mail Transport Agent postfix        
 * Speech-dispatcher configured for user sessions
[   33.491279] XENBUS: Unable to read cpu state
[   33.495847] XENBUS: Unable to read cpu state
[   33.500302] XENBUS: Unable to read cpu state
[   33.504855] XENBUS: Unable to read cpu state

GR: still many minutes until this prompt displays:

Ubuntu lucid (development branch) grp-01-23-02 hvc0

grp-01-23-02 login: 


[-- Attachment #3: AMD_pvops_domU_console_2.6.32.12.txt --]
[-- Type: text/plain, Size: 41233 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.12 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #2 SMP Thu May 0
[    0.000000] Command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=tty0 const
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000afde0000 (usable)
[    0.000000]  BIOS-e820: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000230000000 (usable)
[    0.000000] PAT support disabled.
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x230000 max_arch_pfn = 0x400000000
[    0.000000] last_pfn = 0xafde0 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000afde0000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 0000000230000000 (usable)
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-00000000afde0000
[    0.000000] init_memory_mapping: 0000000100000000-0000000230000000
[    0.000000] RAMDISK: 33d26000 - 37fef20c
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000230000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000230000000
[    0.000000]   NODE_DATA [000000000000b000 - 000000000000ffff]
[    0.000000]   bootmap [0000000000010000 -  0000000000055fff] pages 46
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0230000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #2 [0001000000 - 0001a558e4]    TEXT DATA BSS ==> [0001000000 - 0001a558e4]
[    0.000000]   #3 [0033d26000 - 0037fef20c]          RAMDISK ==> [0033d26000 - 0037fef20c]
[    0.000000]   #4 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 - 0000100000]
[    0.000000]   #5 [0001a56000 - 0001a560fe]              BRK ==> [0001a56000 - 0001a560fe]
[    0.000000]   #6 [0000008000 - 000000a000]          PGTABLE ==> [0000008000 - 000000a000]
[    0.000000]   #7 [000000a000 - 000000b000]          PGTABLE ==> [000000a000 - 000000b000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00230000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000afde0
[    0.000000]     0: 0x00100000 -> 0x00230000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    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 low level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000afde0000 - 00000000afde3000
[    0.000000] PM: Registered nosave memory: 00000000afde3000 - 00000000afdf0000
[    0.000000] PM: Registered nosave memory: 00000000afdf0000 - 00000000afe00000
[    0.000000] PM: Registered nosave memory: 00000000afe00000 - 00000000e0000000
[    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at afe00000 (gap: afe00000:30200000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff880008a00000 s91416 r8192 d23272 u524288
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1933972
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00  vga=ext ro console=ttt
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 20000000 size 32 MB
[    0.000000] Aperture pointing to e820 RAM. Ignoring.
[    0.000000] Memory: 7605316k/9175040k available (5532k kernel code, 1313304k absent, 256420k reserved, 3061k data, 8)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:440
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] allocated 78643200 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] HPET: 4 timers in total, 1 timers will be used for per-cpu timer
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 3013.617 MHz processor.
[    0.030006] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.22 BogoMIPS (lpj=3013613)
[    0.050016] Security Framework initialized
[    0.054135] SELinux:  Disabled at boot.
[    0.058500] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.063418] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.071598] Mount-cache hash table entries: 256
[    0.080122] Initializing cgroup subsys ns
[    0.084154] Initializing cgroup subsys cpuacct
[    0.090003] Initializing cgroup subsys memory
[    0.094384] Initializing cgroup subsys devices
[    0.100002] Initializing cgroup subsys freezer
[    0.104459] Initializing cgroup subsys net_cls
[    0.108935] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.110002] CPU: L2 Cache: 512K (64 bytes/line)
[    0.120002] CPU 0/0x0 -> Node 0
[    0.123173] CPU: Physical Processor ID: 0
[    0.127198] CPU: Processor Core ID: 0
[    0.130003] mce: CPU supports 6 MCE banks
[    0.134034] using C1E aware idle routine
[    0.137979] Performance Events: AMD PMU driver.
[    0.141519] ... version:                0
[    0.145548] ... bit width:              48
[    0.150001] ... generic registers:      4
[    0.154025] ... value mask:             0000ffffffffffff
[    0.160001] ... max period:             00007fffffffffff
[    0.165332] ... fixed-purpose events:   0
[    0.170001] ... event mask:             000000000000000f
[    0.176673] ACPI: Core revision 20090903
[    0.200027] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.210007] ftrace: allocating 21787 entries in 86 pages
[    0.225133] Setting APIC routing to flat
[    0.230493] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.336590] CPU0: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.350000] Booting processor 1 APIC 0x1 ip 0x6000
[    0.040000] Initializing CPU#1
[    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
[    0.040000] CPU 1/0x1 -> Node 0
[    0.040000] CPU: Physical Processor ID: 0
[    0.040000] CPU: Processor Core ID: 1
[    0.500072] CPU1: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.521266] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.530052] Booting processor 2 APIC 0x2 ip 0x6000
[    0.040000] Initializing CPU#2
[    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
[    0.040000] CPU 2/0x2 -> Node 0
[    0.040000] CPU: Physical Processor ID: 0
[    0.040000] CPU: Processor Core ID: 2
[    0.700067] CPU2: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.721263] checking TSC synchronization [CPU#0 -> CPU#2]: passed.
[    0.730057] Booting processor 3 APIC 0x3 ip 0x6000
[    0.040000] Initializing CPU#3
[    0.040000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.040000] CPU: L2 Cache: 512K (64 bytes/line)
[    0.040000] CPU 3/0x3 -> Node 0
[    0.040000] CPU: Physical Processor ID: 0
[    0.040000] CPU: Processor Core ID: 3
[    0.900055] CPU3: AMD Phenom(tm) II X4 940 Processor stepping 02
[    0.921267] checking TSC synchronization [CPU#0 -> CPU#3]: passed.
[    0.930009] Brought up 4 CPUs
[    0.940001] Total of 4 processors activated (24109.62 BogoMIPS).
[    0.950064] devtmpfs: initialized
[    0.954507] regulator: core version 0.5
[    0.954507] Time: 23:54:26  Date: 05/06/10
[    0.960040] NET: Registered protocol family 16
[    0.964591] TOM: 00000000d0000000 aka 3328M
[    0.970011] TOM2: 0000000230000000 aka 8960M
[    0.974340] ACPI: bus type pci registered
[    0.980053] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.987108] PCI: MCFG area at e0000000 reserved in E820
[    0.994756] PCI: Using MMCONFIG at e0000000 - efffffff
[    1.000001] PCI: Using configuration type 1 for base access
[    1.006124] bio: create slab <bio-0> at 0
[    1.016509] ACPI: Interpreter enabled
[    1.016509] ACPI: (supports S0 S1 S4 S5)
[    1.018211] ACPI: Using IOAPIC for interrupt routing
[    1.033072] ACPI: No dock devices found.
[    1.037015] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    1.037015] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    1.050002] pci 0000:00:0a.0: PME# disabled
[    1.054486] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    1.060003] pci 0000:00:12.2: PME# disabled
[    1.064403] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    1.070003] pci 0000:00:13.2: PME# disabled
[    1.074427] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    1.080003] pci 0000:00:14.2: PME# disabled
[    1.084604] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.090003] pci 0000:02:00.0: PME# disabled
[    1.094384] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    1.100004] pci 0000:03:0e.0: PME# disabled
[    1.104208] pci 0000:00:14.4: transparent bridge
[    1.113921] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.121755] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.130018] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.138039] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.153456] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.158006] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.162068] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.170066] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    1.178112] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    1.190002] vgaarb: loaded
[    1.192813] SCSI subsystem initialized
[    1.200047] usbcore: registered new interface driver usbfs
[    1.205526] usbcore: registered new interface driver hub
[    1.210038] usbcore: registered new device driver usb
[    1.215089] ACPI: WMI: Mapper loaded
[    1.220007] PCI: Using ACPI for IRQ routing
[    1.224206] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    1.230001] pci 0000:00:00.0: BAR 3: can't allocate resource
[    1.235678] NetLabel: Initializing
[    1.235678] NetLabel:  domain hash size = 128
[    1.237918] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.250010] NetLabel:  unlabeled traffic allowed by default
[    1.255593] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 24, 0
[    1.255593] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    1.262014] Switching to clocksource tsc
[    1.271029] pnp: PnP ACPI init
[    1.274159] ACPI: bus type pnp registered
[    1.279963] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.289926] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.299863] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.309806] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.319746] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.329343] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    1.339684] pnp: PnP ACPI: found 13 devices
[    1.343901] ACPI: ACPI bus type pnp unregistered
[    1.348539] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    1.354933] system 00:01: ioport range 0x220-0x225 has been reserved
[    1.361313] system 00:01: ioport range 0x290-0x294 has been reserved
[    1.367677] system 00:02: ioport range 0x4100-0x411f has been reserved
[    1.374245] system 00:02: ioport range 0x228-0x22f has been reserved
[    1.380622] system 00:02: ioport range 0x40b-0x40b has been reserved
[    1.386988] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    1.393383] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    1.399743] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    1.406139] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    1.412519] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    1.418882] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    1.425277] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    1.431657] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    1.438020] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    1.444414] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    1.450967] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    1.457503] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    1.463900] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    1.470276] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    1.476643] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    1.483819] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    1.491332] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    1.498471] system 00:0c: iomem range 0xafef0000-0xcfeeffff could not be reserved
[    1.505998] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    1.513512] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    1.520678] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    1.533063] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    1.538997] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    1.544360] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    1.550485] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    1.558064] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    1.564032] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    1.569356] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    1.575491] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    1.583086] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    1.589022] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    1.594377] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    1.600497] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    1.607061] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.613863] NET: Registered protocol family 2
[    1.618414] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    1.626868] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    1.637503] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.644656] TCP: Hash tables configured (established 524288 bind 65536)
[    1.651304] TCP reno registered
[    1.654552] NET: Registered protocol family 1
[    1.840121] Trying to unpack rootfs image as initramfs...
[    2.932850] Freeing initrd memory: 68388k freed
[    2.964108] PCI-DMA: Disabling AGP.
[    2.967620] PCI-DMA: More than 4GB of RAM and no IOMMU
[    2.967621] falling back to iommu=soft.
[    2.976673] More than 4GB of memory but GART IOMMU not available.
[    2.982795] falling back to iommu=soft.
[    2.986652] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.993129] DMA: Placing 64MB software IO TLB between ffff880008b9e000 - ffff88000cb9e000
[    3.001330] DMA: software IO TLB at phys 0x8b9e000 - 0xcb9e000
[    3.007464] Scanning for low memory corruption every 60 seconds
[    3.013533] audit: initializing netlink socket (disabled)
[    3.018960] type=2000 audit(1273190067.013:1): initialized
[    3.031642] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.038946] VFS: Disk quotas dquot_6.5.2
[    3.042945] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.049833] fuse init (API version 7.13)
[    3.053837] msgmni has been set to 14987
[    3.058021] alg: No test for stdrng (krng)
[    3.062223] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    3.069638] io scheduler noop registered
[    3.073617] io scheduler anticipatory registered
[    3.078255] io scheduler deadline registered (default)
[    3.083475] io scheduler cfq registered
[    3.087589] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.093206] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.099927] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    3.108330] ACPI: Power Button [PWRB]
[    3.112060] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    3.119464] ACPI: Power Button [PWRF]
[    3.123401] processor LNXCPU:00: registered as cooling_device0
[    3.129283] processor LNXCPU:01: registered as cooling_device1
[    3.135193] processor LNXCPU:02: registered as cooling_device2
[    3.141087] processor LNXCPU:03: registered as cooling_device3
[    3.148080] xenfs: not registering filesystem on non-xen platform
[    3.154220] xen-platform-pcifailed backend handshake: unrecognised magic value
[    3.162270] Linux agpgart interface v0.103
[    3.166393] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.172801] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    3.179047] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    3.185271] brd: module loaded
[    3.188619] loop: module loaded
[    3.191860] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    3.199798] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.207316] Fixed MDIO Bus: probed
[    3.210776] PPP generic driver version 2.4.2
[    3.215087] tun: Universal TUN/TAP device driver, 1.6
[    3.220180] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.226426] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.233064] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    3.240256] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    3.245519] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    3.252981] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    3.260500] ehci_hcd 0000:00:12.2: debug port 1
[    3.265079] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    3.290025] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    3.295847] usb usb1: configuration #1 chosen from 1 choice
[    3.301493] hub 1-0:1.0: USB hub found
[    3.305264] hub 1-0:1.0: 6 ports detected
[    3.309420] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    3.316593] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    3.321872] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    3.329297] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    3.336836] ehci_hcd 0000:00:13.2: debug port 1
[    3.341422] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    3.360025] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    3.365840] usb usb2: configuration #1 chosen from 1 choice
[    3.371481] hub 2-0:1.0: USB hub found
[    3.375254] hub 2-0:1.0: 6 ports detected
[    3.379337] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.385625] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.392796] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    3.398056] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    3.405527] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    3.474102] usb usb3: configuration #1 chosen from 1 choice
[    3.479710] hub 3-0:1.0: USB hub found
[    3.483522] hub 3-0:1.0: 3 ports detected
[    3.487650] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.494817] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    3.500086] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    3.507502] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    3.574081] usb usb4: configuration #1 chosen from 1 choice
[    3.579685] hub 4-0:1.0: USB hub found
[    3.583502] hub 4-0:1.0: 3 ports detected
[    3.587617] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    3.594790] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    3.600068] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    3.607497] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    3.674082] usb usb5: configuration #1 chosen from 1 choice
[    3.679679] hub 5-0:1.0: USB hub found
[    3.683495] hub 5-0:1.0: 3 ports detected
[    3.687620] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    3.694791] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    3.700065] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    3.707482] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    3.774086] usb usb6: configuration #1 chosen from 1 choice
[    3.779692] hub 6-0:1.0: USB hub found
[    3.783506] hub 6-0:1.0: 3 ports detected
[    3.787619] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    3.794828] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    3.800107] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    3.807527] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    3.874081] usb usb7: configuration #1 chosen from 1 choice
[    3.879687] hub 7-0:1.0: USB hub found
[    3.883500] hub 7-0:1.0: 2 ports detected
[    3.887581] uhci_hcd: USB Universal Host Controller Interface driver
[    3.894013] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    3.902017] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.907011] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.912156] mice: PS/2 mouse device common for all mice
[    3.917457] rtc_cmos 00:05: RTC can wake from S4
[    3.922136] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.928272] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.934749] device-mapper: uevent: version 1.0.3
[    3.937606] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    3.948109] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    3.956678] device-mapper: multipath: version 1.1.0 loaded
[    3.962192] device-mapper: multipath round-robin: version 1.0.0 loaded
[    3.968933] cpuidle: using governor ladder
[    3.973063] cpuidle: using governor menu
[    3.977252] TCP cubic registered
[    3.980596] NET: Registered protocol family 10
[    3.985369] lo: Disabled Privacy Extensions
[    3.989758] NET: Registered protocol family 17
[    3.994305] powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor processors (4 cpu cores) (version 2.20.00)
[    4.004330] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found.
[    4.004331] [Firmware Bug]: powernow-k8: Try again with latest BIOS.
[    4.018137] registered taskstats version 1
[    4.022526]   Magic number: 10:774:958
[    4.026302] mem oldmem: hash matches
[    4.029955] rtc_cmos 00:05: setting system clock to 2010-05-06 23:54:29 UTC (1273190069)
[    4.038094] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    4.044173] EDD information not available.
[    4.048347] Freeing unused kernel memory: 800k freed
[    4.053636] Write protecting the kernel read-only data: 7812k
Loading, please wait...
[    4.072957] udev: starting version 151
Begin: Loading essential drivers... ...
[    4.080849] md: linear personality registered for level -1
[    4.106010] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    4.111793] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    4.113820] md: multipath personality registered for level -4
[    4.124901] md: raid0 personality registered for level 0
[    4.130586] md: raid1 personality registered for level 1
[    4.132162] async_tx: api initialized (async)
[    4.132754] xor: automatically using best checksumming function: generic_sse
[    4.149303] eth0: RTL8168c/8111c at 0xffffc90000c7c000, 00:24:1d:19:05:df, XID 1c4000c0 IRQ 26
[    4.161156] scsi0 : pata_atiixp
[    4.165287] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    4.172752] scsi1 : pata_atiixp
[    4.176780] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[    4.184307]    generic_sse: 19682.800 MB/sec
[    4.184310] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[    4.184573] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    4.184728] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    4.184731] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    4.185193] scsi2 : ahci
[    4.185266] scsi3 : ahci
[    4.185315] scsi4 : ahci
[    4.185359] scsi5 : ahci
[    4.185403] scsi6 : ahci
[    4.185447] scsi7 : ahci
[    4.185538] ata3: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f100 irq 22
[    4.185540] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    4.185543] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    4.185546] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    4.185548] ata7: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    4.185551] ata8: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    4.230063] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[fdcff000-fdcff7ff]  Max Packet=[2048]  IR/IT co]
[    4.298018] xor: using function: generic_sse (19682.800 MB/sec)
[    4.370463] ata1.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
[    4.410424] ata1.01: configured for UDMA/33
[    4.418773] scsi 0:0:1:0: CD-ROM            HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[    4.435018] sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    4.441220] Uniform CD-ROM driver Revision: 3.20
[    4.446046] sr 0:0:1:0: Attached scsi generic sg0 type 5
[    4.710029] ata4: softreset failed (device not ready)
[    4.715255] ata4: applying SB600 PMP SRST workaround and retrying
[    4.721531] ata3: softreset failed (device not ready)
[    4.721537] ata6: softreset failed (device not ready)
[    4.721539] ata6: applying SB600 PMP SRST workaround and retrying
[    4.721560] ata5: softreset failed (device not ready)
[    4.721562] ata5: applying SB600 PMP SRST workaround and retrying
[    4.721582] ata8: softreset failed (device not ready)
[    4.721585] ata8: applying SB600 PMP SRST workaround and retrying
[    4.721606] ata7: softreset failed (device not ready)
[    4.721608] ata7: applying SB600 PMP SRST workaround and retrying
[    4.772432] ata3: applying SB600 PMP SRST workaround and retrying
[    4.900040] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.906340] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.912896] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.912912] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.912943] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.923972] ata5.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    4.923975] ata5.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    4.925053] ata5.00: configured for UDMA/133
[    4.926204] ata8.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    4.926205] ata8.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    4.926669] ata6.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    4.926671] ata6.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    4.927145] ata8.00: configured for UDMA/133
[    4.927721] ata6.00: configured for UDMA/133
[    4.928374] ata4.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    4.928376] ata4.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    4.929457] ata4.00: configured for UDMA/133
[    5.011815] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    5.040363] ata7.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    5.043543] ata3.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    5.043545] ata3.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    5.044627] ata3.00: configured for UDMA/133
[    5.061358] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    5.061468] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    5.061491] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    5.061540] scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    5.061545] sd 2:0:0:0: [sda] Write Protect is off
[    5.061559] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.061619] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    5.061664]  sda:
[    5.061679] scsi 4:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    5.061718] sd 3:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    5.061747] sd 4:0:0:0: Attached scsi generic sg3 type 0
[    5.061792] sd 4:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    5.061796] sd 3:0:0:0: [sdb] Write Protect is off
[    5.061814] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.061819] scsi 5:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    5.061823] sd 4:0:0:0: [sdc] Write Protect is off
[    5.061836] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.061934] sd 5:0:0:0: [sdd] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    5.061953]  sdb:
[    5.061957] sd 5:0:0:0: [sdd] Write Protect is off
[    5.061967] sd 5:0:0:0: Attached scsi generic sg4 type 0
[    5.061981] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.062039]  sdc:
[    5.062097]  sdd: sdd1
[    5.223866] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    5.223877]  sdb1 sdb2 sdb3
[    5.223943]  sda1 sda2 sda3
[    5.237459]  sdc1
[    5.237580] sd 2:0:0:0: [sda] Attached SCSI disk
[    5.237638] sd 3:0:0:0: [sdb] Attached SCSI disk
[    5.238439] ata7.00: configured for UDMA/133
[    5.251353] scsi 6:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    5.251462] sd 6:0:0:0: Attached scsi generic sg5 type 0
[    5.251501] sd 6:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    5.251518] scsi 7:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    5.251529] sd 6:0:0:0: [sde] Write Protect is off
[    5.251581] sd 6:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.251584] sd 7:0:0:0: Attached scsi generic sg6 type 0
[    5.251635] sd 7:0:0:0: [sdf] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    5.251657] sd 7:0:0:0: [sdf] Write Protect is off
[    5.251670] sd 7:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.328654] 
[    5.330349]  sde:
[    5.330484] sd 5:0:0:0: [sdd] Attached SCSI disk
[    5.330528] sd 4:0:0:0: [sdc] Attached SCSI disk
[    5.341987]  sdf: sde1 sde2 sde3
[    5.366649] sd 6:0:0:0: [sde] Attached SCSI disk
[    5.367202]  sdf1 sdf2 sdf3
[    5.374435] sd 7:0:0:0: [sdf] Attached SCSI disk
[    5.503869] md: bind<sdc1>
[    5.508741] md: bind<sdd1>
[    5.512889] raid1: raid set md3 active with 2 out of 2 mirrors
[    5.519165] md3: detected capacity change from 0 to 250056605696
[    5.526363]  md3: unknown partition table
[    5.533830] md: bind<sda1>
[    5.539933] md: bind<sdf2>
[    5.544910] md: bind<sdb3>
[    5.548715] md: bind<sdb2>
[    5.551505] raid6: int64x1   2522 MB/s
[    5.563953] md: bind<sda2>
[    5.567275] md: bind<sda3>
[    5.571148] raid1: raid set md1 active with 2 out of 2 mirrors
[    5.577447] md1: detected capacity change from 0 to 19329318912
[    5.577484] raid1: raid set md2 active with 2 out of 2 mirrors
[    5.577498] md2: detected capacity change from 0 to 230200836096
[    5.597307]  md2: unknown partition table
[    5.602000]  md1: unknown partition table
[    5.607033] md: bind<sdf1>
[    5.610119] md: bind<sdf3>
[    5.640957] md: bind<sde2>
[    5.640960] md: bind<sde1>
[    5.647036] md: bind<sde3>
[    5.720013] raid6: int64x2   3485 MB/s
[    5.890013] raid6: int64x4   2687 MB/s
[    6.060013] raid6: int64x8   2355 MB/s
[    6.230013] raid6: sse2x1    3995 MB/s
[    6.399996] raid6: sse2x2    6494 MB/s
[    6.569997] raid6: sse2x4    7216 MB/s
[    6.573955] raid6: using algorithm sse2x4 (7216 MB/s)
[    6.579340] raid1: raid set md4 active with 2 out of 2 mirrors
[    6.579340] raid1: raid set md6 active with 2 out of 2 mirrors
[    6.579355] md6: detected capacity change from 0 to 483605217280
[    6.579593] raid1: raid set md5 active with 2 out of 2 mirrors
Done.[    6.579611] md5: detected capacity change from 0 to 15998058496

[    6.584795] md: raid6 personality registered for level 6
[    6.584798] md: raid5 personality registered for level 5
[    6.584799] md: raid4 personality registered for level 4
[    6.586866]  md5:
[    6.587033]  md6: unknown partition table
[    6.590766] md: raid10 personality registered for level 10
[    6.640888]  unknown partition table
[    6.640934] md4: detected capacity change from 0 to 501612544
Begin: Running /[    6.651264]  md4:scripts/init-pre
mount ...
[    6.654565] md: bind<sdb1>
Done.
[    6.659996]  unknown partition table
Begin: Mounting [    6.665251] raid1: raid set md0 active with 2 out of 2 mirrors
root file system[    6.671738] md0: detected capacity change from 0 to 526319616
... ...
Begin: [    6.680083]  md0:Running /scripts/local-top ...
Done.

Begin: Running /scripts/local-premount ...
Done.
[    7.322097] EXT4-fs (dm-1): INFO: recovery required on readonly filesystem
[    7.329290] EXT4-fs (dm-1): write access will be enabled during recovery
[    7.876531] EXT4-fs (dm-1): recovery complete
[    7.881978] EXT4-fs (dm-1): mounted filesystem with ordered data mode
Begin: Running /scripts/local-bottom ...
Done.
Done.
Begin: Running /scripts/init-bottom ...
Done.
[   15.563060] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   15.569063] ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
init: procps main process (576) terminated with status 255
fsck from util-linux-ng 2.17.2
init: eucalyptus-network (lo) main process (946) killed by TERM signal
fsck from util-linux-ng 2.17.2
init: eucalyptus-network (eth0) main process (1093) killed by TERM signal
/dev/mapper/vg--grp--01--23--02--2-LogVol00: clean, 511633/29523968 files, 16461709/118067200 blocks
/dev/md4: clean, 224/122880 files, 280736/489856 blocks
init: tftpd-hpa main process (1362) terminated with status 66
init: tftpd-hpa main process ended, respawning
Loading the saved-state of the serial devices... 
/dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
[ OK ]ting sensors limits        

** (process:1563): WARNING **: Could not parse config file: Could not open config file /etc/nbd-server/config.
** Message: Nothing to do! Bye!
 nbd-server.
[ OK ]rting internet superserver inetd        
[ OK ]rting Postfix Mail Transport Agent postfix        
 * Speech-dispatcher configured for user sessions
grep: /proc/xen/capabilities: No such file or directory
[ OK ]rting MD monitoring service mdadm --monitor        
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S28libvirt-bin start

Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S28libvirt-bin
start: Unknown job: S28libvirt-bin
 * Starting DHCP server dhcpd3         * check syslog for diagnostics.
[fail]
[ OK ]rting Common Unix Printing System: cupsd        
 * PulseAudio configured for per-user sessions
[ OK ]bling additional executable binary formats binfmt-support        
 * Starting web server apache2        apache2: Could not reliably determine the server's fully qualified domain name, ue
[ OK ]
[ OK ]cking battery state...        
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service S99powernap start

Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start S99powernap
start: Unknown job: S99powernap

GR: here the login shows up right away:

Ubuntu lucid (development branch) grp-01-23-02 ttyS0

grp-01-23-02 login:


[-- Attachment #4: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07  0:21                     ` Gerry Reno
@ 2010-05-07  2:22                       ` Gerry Reno
  2010-05-07  6:05                         ` Pasi Kärkkäinen
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-07  2:22 UTC (permalink / raw)
  To: xen-devel; +Cc: Konrad Rzeszutek Wilk

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

On 05/06/2010 08:21 PM, Gerry Reno wrote:
> Ok, I tested with the new 2.6.32.12:  (.config same)
>
> Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12
>
> Still pv_ops dom0 is not working properly.
> There are still call trace and other errors.  The kernel does boot up 
> but it takes again a long time to get the login prompt (about 3 
> mins).  This is far longer than when I used 2.6.31.6 pv_ops dom0.  
> Networking does not start properly (only see 'lo' and 'virbr0'), so I 
> have to restart it manually and then I see my bridge 'br0' and 'eth0'.
> Can't find device "br0"
> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.
> And it is trying unsuccessfully to start some laptop feature like 
> S99powernap (unknown job) and also S28-libvirt-bin fails (maybe 
> network related?).
>
>
> Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):
>
> Now the straight linux kernel (no xen dom0) boots right up and goes to 
> login prompt in normal timeframe.  Networking starts correctly.  
> Things look pretty normal.
>
>
> Observation:
> I'm getting slightly different output on console and serial console.  
> Some errors show on one but not the other.  Shouldn't these be identical?
>
>
> I'm attaching both serial console outputs.
>
> menu.lst is same as before (just .12 instead of .10)
>
> -Gerry
>
>
And I'm attaching the syslog from Case 1 (pv_ops dom0).

-Gerry


[-- Attachment #2: syslog --]
[-- Type: text/plain, Size: 35956 bytes --]

May  6 21:59:22 grp-01-23-02 kernel: imklog: Cannot read proc file system, 1.
May  6 21:59:22 grp-01-23-02 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="1366" x-info="http://www.rsyslog.com"] (re)start
May  6 21:59:22 grp-01-23-02 rsyslogd: rsyslogd's groupid changed to 103
May  6 21:59:22 grp-01-23-02 rsyslogd: rsyslogd's userid changed to 101
May  6 21:59:22 grp-01-23-02 rsyslogd-2039: Could no open output file '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Found user 'avahi' (UID 103) and group 'avahi' (GID 108).
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Successfully dropped root privileges.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: avahi-daemon 0.6.25 starting up.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Successfully called chroot().
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Successfully dropped remaining capabilities.
May  6 21:59:22 grp-01-23-02 in.tftpd[1355]: cannot resolve local IPv4 bind address: 0.0.0.0, Name or service not known
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  starting...
May  6 21:59:22 grp-01-23-02 init: tftpd-hpa main process (1355) terminated with status 66
May  6 21:59:22 grp-01-23-02 init: tftpd-hpa main process ended, respawning
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  Trying to start the modem-manager...
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: init!
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: update_system_hostname
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPluginIfupdown: guessed connection type (eth0) = 802-3-ethernet
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: update_connection_setting_from_if_block: name:eth0, type:802-3-ethernet, id:Ifupdown (eth0), uuid: 681b428f-beaf-8932-dce4-687ed5bae28e
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPluginIfupdown: guessed connection type (br0) = 802-3-ethernet
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: update_connection_setting_from_if_block: name:br0, type:802-3-ethernet, id:Ifupdown (br0), uuid: 2d548e24-d0cc-075a-4d5d-674dfade375a
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: addresses count: 1
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: No dns-nameserver configured in /etc/network/interfaces
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: autoconnect
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: autoconnect
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPluginIfupdown: management mode: unmanaged
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Novatel
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:0a.0/0000:02:00.0/net/eth0, iface: eth0)
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPluginIfupdown: locking wired connection setting
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Ericsson MBM
May  6 21:59:22 grp-01-23-02 NetworkManager:    Ifupdown: get unmanaged devices count: 1
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Huawei
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: (35936544) ... get_connections.
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: (35936544) ... get_connections (managed=false): return empty list.
May  6 21:59:22 grp-01-23-02 NetworkManager:    Ifupdown: get unmanaged devices count: 1
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/br0, iface: br0)
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPluginIfupdown: locking wired connection setting
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin ZTE
May  6 21:59:22 grp-01-23-02 NetworkManager:    Ifupdown: get unmanaged devices count: 2
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: end _init.
May  6 21:59:22 grp-01-23-02 NetworkManager: Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Option
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Generic
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin AnyData
May  6 21:59:22 grp-01-23-02 NetworkManager: Loaded plugin keyfile: (c) 2007 - 2008 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Gobi
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Option High-Speed
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Longcheer
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Nokia
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin Sierra
May  6 21:59:22 grp-01-23-02 modem-manager: Loaded plugin MotoC
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  WiFi enabled by radio killswitch; enabled by state file
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  WWAN enabled by radio killswitch; enabled by state file
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  (eth0): carrier is ON
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  (eth0): new Ethernet device (driver: 'r8169')
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
May  6 21:59:22 grp-01-23-02 NetworkManager: <WARN>  device_creator(): /sys/devices/virtual/net/br0: couldn't determine device driver; ignoring...
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  modem-manager is now available
May  6 21:59:22 grp-01-23-02 NetworkManager: <WARN>  default_adapter_cb(): bluez error getting default adapter: The name org.bluez was not provided by any .service files
May  6 21:59:22 grp-01-23-02 NetworkManager: <info>  Trying to start the supplicant...
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: No service file found in /etc/avahi/services.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Network interface enumeration completed.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Registering new address record for fe80::224:1dff:fe19:5df on br0.*.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Registering new address record for fe80::224:1dff:fe19:5df on eth0.*.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Server startup complete. Host name is grp-01-23-02.local. Local service cookie is 3722562870.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Registering HINFO record with values 'X86_64'/'LINUX'.
May  6 21:59:22 grp-01-23-02 init: apport pre-start process (1448) terminated with status 1
May  6 21:59:22 grp-01-23-02 cron[1454]: (CRON) INFO (pidfile fd = 3)
May  6 21:59:22 grp-01-23-02 acpid: starting up with proc fs
May  6 21:59:22 grp-01-23-02 anacron[1482]: Anacron 2.3 started on 2010-05-06
May  6 21:59:22 grp-01-23-02 acpid: 36 rules loaded
May  6 21:59:22 grp-01-23-02 acpid: waiting for events: event logging is off
May  6 21:59:22 grp-01-23-02 init: apport post-stop process (1480) terminated with status 1
May  6 21:59:22 grp-01-23-02 cron[1526]: (CRON) STARTUP (fork ok)
May  6 21:59:22 grp-01-23-02 cron[1526]: (CRON) INFO (Running @reboot jobs)
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/virbr0, iface: virbr0)
May  6 21:59:22 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/virbr0, iface: virbr0): no ifupdown configuration found.
May  6 21:59:22 grp-01-23-02 NetworkManager: <WARN>  device_creator(): /sys/devices/virtual/net/virbr0: couldn't determine device driver; ignoring...
May  6 21:59:22 grp-01-23-02 anacron[1482]: Normal exit (0 jobs run)
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Joining mDNS multicast group on interface virbr0.IPv4 with address 192.168.122.1.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: New relevant interface virbr0.IPv4 for mDNS.
May  6 21:59:22 grp-01-23-02 avahi-daemon[1394]: Registering new address record for 192.168.122.1 on virbr0.IPv4.
May  6 21:59:23 grp-01-23-02 postfix/master[1653]: daemon started -- version 2.7.0, configuration /etc/postfix
May  6 21:59:24 grp-01-23-02 init: eucalyptus-nc pre-start process (1503) terminated with status 1
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: started, version 2.52 cachesize 150
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: compile time options: IPv6 GNU-getopt DBus I18N DHCP TFTP
May  6 21:59:24 grp-01-23-02 dnsmasq-dhcp[1750]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: reading /etc/resolv.conf
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: using nameserver 68.238.96.12#53
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: using nameserver 68.238.112.12#53
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: using nameserver 192.168.1.200#53
May  6 21:59:24 grp-01-23-02 dnsmasq[1750]: read /etc/hosts - 8 addresses
May  6 21:59:24 grp-01-23-02 libvirtd: 21:59:24.685: warning : qemudStartup:1076 : Unable to create cgroup for driver: No such device or address
May  6 21:59:24 grp-01-23-02 avahi-daemon[1394]: Registering new address record for fe80::988e:8cff:fe07:26cd on virbr0.*.
May  6 21:59:24 grp-01-23-02 libvirtd: 21:59:24.811: warning : lxcStartup:1755 : Unable to create cgroup for driver: No such device or address
May  6 21:59:25 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/tmpbridge, iface: tmpbridge)
May  6 21:59:25 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/tmpbridge, iface: tmpbridge): no ifupdown configuration found.
May  6 21:59:25 grp-01-23-02 NetworkManager: <WARN>  device_creator(): /sys/devices/virtual/net/tmpbridge: couldn't determine device driver; ignoring...
May  6 21:59:25 grp-01-23-02 postfix/master[1653]: reload -- version 2.7.0, configuration /etc/postfix
May  6 21:59:31 grp-01-23-02 avahi-daemon[1394]: Joining mDNS multicast group on interface br0.IPv4 with address 192.168.1.46.
May  6 21:59:31 grp-01-23-02 avahi-daemon[1394]: New relevant interface br0.IPv4 for mDNS.
May  6 21:59:31 grp-01-23-02 avahi-daemon[1394]: Registering new address record for 192.168.1.46 on br0.IPv4.
May  6 21:59:31 grp-01-23-02 ltsp: # Creating dsa-hostkey for grp-01-23-02
May  6 21:59:31 grp-01-23-02 ltsp: # Creating rsa-hostkey for grp-01-23-02
May  6 21:59:31 grp-01-23-02 init: ssh main process (1378) terminated with status 255
May  6 21:59:31 grp-01-23-02 postfix/master[1653]: reload -- version 2.7.0, configuration /etc/postfix
May  6 21:59:31 grp-01-23-02 init: eucalyptus-nc-publication main process (2047) killed by TERM signal
May  6 21:59:32 grp-01-23-02 ntpdate[2006]: step time server 91.189.94.4 offset -0.189372 sec
May  6 21:59:32 grp-01-23-02 xenstored: Checking store ...
May  6 21:59:32 grp-01-23-02 xenstored: Checking store complete.
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:790: blktapctrl: v1.0.0
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:792: Found driver: [raw image (aio)]
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:792: Found driver: [raw image (sync)]
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:792: Found driver: [vmware image (vmdk)]
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:792: Found driver: [ramdisk image (ram)]
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:792: Found driver: [qcow disk (qcow)]
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:792: Found driver: [qcow2 disk (qcow2)]
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl_linux.c:92: couldn't find device number for 'blktap0'
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:859: couldn't open blktap interface
May  6 21:59:32 grp-01-23-02 BLKTAPCTRL[2119]: blktapctrl.c:922: Unable to start blktapctrl
May  6 22:01:11 grp-01-23-02 logger: /etc/xen/scripts/network-bridge: Forced to steal lock on /var/run/xen-hotplug/network-bridge from 1758: /etc/xen/scripts/network-bridge!
May  6 22:01:12 grp-01-23-02 postfix/master[1653]: reload -- version 2.7.0, configuration /etc/postfix
May  6 22:01:12 grp-01-23-02 avahi-daemon[1394]: Interface br0.IPv4 no longer relevant for mDNS.
May  6 22:01:12 grp-01-23-02 avahi-daemon[1394]: Leaving mDNS multicast group on interface br0.IPv4 with address 192.168.1.46.
May  6 22:01:12 grp-01-23-02 avahi-daemon[1394]: Withdrawing address record for fe80::224:1dff:fe19:5df on br0.
May  6 22:01:12 grp-01-23-02 avahi-daemon[1394]: Withdrawing address record for 192.168.1.46 on br0.
May  6 22:01:26 grp-01-23-02 avahi-daemon[1394]: Withdrawing address record for fe80::224:1dff:fe19:5df on eth0.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (eth0): carrier now OFF (device state 1)
May  6 22:01:26 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices removed (path: /sys/devices/virtual/net/br0, iface: br0)
May  6 22:01:26 grp-01-23-02 NetworkManager:    Ifupdown: get unmanaged devices count: 1
May  6 22:01:26 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices added (path: /sys/devices/vif-1-0/net/vif1.0, iface: vif1.0)
May  6 22:01:26 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: device added (path: /sys/devices/vif-1-0/net/vif1.0, iface: vif1.0): no ifupdown configuration found.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): carrier is OFF
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): new Ethernet device (driver: 'vif')
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): exported as /org/freedesktop/NetworkManager/Devices/1
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): now managed
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): device state change: 1 -> 2 (reason 2)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): bringing up device.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): preparing device.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): deactivating device (reason: 2).
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:26 grp-01-23-02 NetworkManager: Added default wired connection 'Auto vif1.0' for /sys/devices/vif-1-0/net/vif1.0
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): carrier now ON (device state 2)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): device state change: 2 -> 3 (reason 40)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) starting connection 'Auto vif1.0'
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): device state change: 3 -> 4 (reason 0)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 1 of 5 (Device Prepare) scheduled...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 1 of 5 (Device Prepare) started...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 2 of 5 (Device Configure) scheduled...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 1 of 5 (Device Prepare) complete.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 2 of 5 (Device Configure) starting...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): device state change: 4 -> 5 (reason 0)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 2 of 5 (Device Configure) successful.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 3 of 5 (IP Configure Start) scheduled.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 2 of 5 (Device Configure) complete.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 3 of 5 (IP Configure Start) started...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  (vif1.0): device state change: 5 -> 7 (reason 0)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Beginning DHCP transaction (timeout in 45 seconds)
May  6 22:01:26 grp-01-23-02 logger: /etc/xen/scripts/block: add XENBUS_PATH=backend/vbd/1/51715
May  6 22:01:26 grp-01-23-02 logger: /etc/xen/scripts/block: add XENBUS_PATH=backend/vbd/1/51714
May  6 22:01:26 grp-01-23-02 logger: /etc/xen/scripts/block: add XENBUS_PATH=backend/vbd/1/51713
May  6 22:01:26 grp-01-23-02 logger: /etc/xen/scripts/vif-bridge: online XENBUS_PATH=backend/vif/1/0
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  dhclient started with pid 3272
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 4 of 5 (IP6 Configure Get) scheduled...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 3 of 5 (IP Configure Start) complete.
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 4 of 5 (IP6 Configure Get) started...
May  6 22:01:26 grp-01-23-02 NetworkManager: <info>  Activation (vif1.0) Stage 4 of 5 (IP6 Configure Get) complete.
May  6 22:01:26 grp-01-23-02 dhclient: Internet Systems Consortium DHCP Client V3.1.3
May  6 22:01:26 grp-01-23-02 dhclient: Copyright 2004-2009 Internet Systems Consortium.
May  6 22:01:26 grp-01-23-02 dhclient: All rights reserved.
May  6 22:01:26 grp-01-23-02 dhclient: For info, please visit https://www.isc.org/software/dhcp/
May  6 22:01:26 grp-01-23-02 dhclient: 
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/vif-bridge: Writing backend/vif/1/0/hotplug-error Could not find bridge device br0 backend/vif/1/0/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/vif-bridge: Could not find bridge device br0
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  DHCP: device vif1.0 state changed (null) -> preinit
May  6 22:01:27 grp-01-23-02 dhclient: Listening on LPF/vif1.0/fe:ff:ff:ff:ff:ff
May  6 22:01:27 grp-01-23-02 dhclient: Sending on   LPF/vif1.0/fe:ff:ff:ff:ff:ff
May  6 22:01:27 grp-01-23-02 dhclient: Sending on   Socket/fallback
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51715/hotplug-error /var/lib/eucalyptus/instances/admin/i-471B08A1/swap does not exist. backend/vbd/1/51715/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51714/hotplug-error /var/lib/eucalyptus/instances/admin/i-471B08A1/ephemeral does not exist. backend/vbd/1/51714/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51713/hotplug-error /var/lib/eucalyptus/instances/admin/i-471B08A1/root does not exist. backend/vbd/1/51713/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: /var/lib/eucalyptus/instances/admin/i-471B08A1/ephemeral does not exist.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: /var/lib/eucalyptus/instances/admin/i-471B08A1/root does not exist.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: /var/lib/eucalyptus/instances/admin/i-471B08A1/swap does not exist.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: XENBUS_PATH=backend/console/1/0
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: remove XENBUS_PATH=backend/vbd/1/51713
May  6 22:01:27 grp-01-23-02 dhclient: receive_packet failed on vif1.0: Network is down
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  (vif1.0): carrier now OFF (device state 7, deferring action for 4 seconds)
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: remove XENBUS_PATH=backend/vbd/1/51714
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: remove XENBUS_PATH=backend/vbd/1/51715
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/vif-bridge: offline XENBUS_PATH=backend/vif/1/0
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51713/hotplug-error xenstore-read backend/vbd/1/51713/node failed. backend/vbd/1/51713/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: xenstore-read backend/vbd/1/51713/node failed.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51713/hotplug-error /etc/xen/scripts/block failed; error detected. backend/vbd/1/51713/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/block: /etc/xen/scripts/block failed; error detected.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/vif-bridge: Writing backend/vif/1/0/hotplug-error Could not find bridge device br0 backend/vif/1/0/hotplug-status error to xenstore.
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: XENBUS_PATH=backend/vbd/1/51713
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/vif-bridge: Could not find bridge device br0
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  (vif1.0): now unmanaged
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  (vif1.0): device state change: 7 -> 1 (reason 36)
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  (vif1.0): deactivating device (reason: 36).
May  6 22:01:27 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: XENBUS_PATH=backend/vif/1/0
May  6 22:01:27 grp-01-23-02 dhcpd: Wrote 0 leases to leases file.
May  6 22:01:27 grp-01-23-02 dhcpd: 
May  6 22:01:27 grp-01-23-02 dhcpd: No subnet declaration for virbr0 (192.168.122.1).
May  6 22:01:27 grp-01-23-02 dhcpd: ** Ignoring requests on virbr0.  If this is not what
May  6 22:01:27 grp-01-23-02 dhcpd:    you want, please write a subnet declaration
May  6 22:01:27 grp-01-23-02 dhcpd:    in your dhcpd.conf file for the network segment
May  6 22:01:27 grp-01-23-02 dhcpd:    to which interface virbr0 is attached. **
May  6 22:01:27 grp-01-23-02 dhcpd: 
May  6 22:01:27 grp-01-23-02 dhcpd: 
May  6 22:01:27 grp-01-23-02 dhcpd: Not configured to listen on any interfaces!
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  (vif1.0): canceled DHCP transaction, dhcp client pid 3272
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  (vif1.0): cleaning up...
May  6 22:01:27 grp-01-23-02 NetworkManager: <info>  Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
May  6 22:01:27 grp-01-23-02 NetworkManager:    SCPlugin-Ifupdown: devices removed (path: /sys/devices/vif-1-0/net/vif1.0, iface: vif1.0)
May  6 22:01:29 grp-01-23-02 anacron[3865]: Anacron 2.3 started on 2010-05-06
May  6 22:01:29 grp-01-23-02 anacron[3865]: Normal exit (0 jobs run)
May  6 22:01:30 grp-01-23-02 init: plymouth-stop pre-start process (3902) terminated with status 1
May  6 22:01:40 grp-01-23-02 init: ttyS0 main process (3904) terminated with status 1
May  6 22:01:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:01:50 grp-01-23-02 init: ttyS0 main process (4083) terminated with status 1
May  6 22:01:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:02:00 grp-01-23-02 init: ttyS0 main process (4264) terminated with status 1
May  6 22:02:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:02:10 grp-01-23-02 init: ttyS0 main process (4445) terminated with status 1
May  6 22:02:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:02:20 grp-01-23-02 init: ttyS0 main process (4626) terminated with status 1
May  6 22:02:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:02:30 grp-01-23-02 init: ttyS0 main process (4807) terminated with status 1
May  6 22:02:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:02:40 grp-01-23-02 init: ttyS0 main process (4988) terminated with status 1
May  6 22:02:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:02:50 grp-01-23-02 init: ttyS0 main process (5167) terminated with status 1
May  6 22:02:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:03:00 grp-01-23-02 init: ttyS0 main process (5348) terminated with status 1
May  6 22:03:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/block: Forced to steal lock on /var/run/xen-hotplug/block from 3379: /etc/xen/scripts/block!
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/block: Forced to steal lock on /var/run/xen-hotplug/block from 3379: /etc/xen/scripts/block!
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: Forced to steal lock on /var/run/xen-hotplug/block from 3379: /etc/xen/scripts/block!
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: Forced to steal lock on /var/run/xen-hotplug/block from 3379: /etc/xen/scripts/block!
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51714/hotplug-error xenstore-read backend/vbd/1/51714/node failed. backend/vbd/1/51714/hotplug-status error to xenstore.
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/block: xenstore-read backend/vbd/1/51714/node failed.
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51714/hotplug-error /etc/xen/scripts/block failed; error detected. backend/vbd/1/51714/hotplug-status error to xenstore.
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/block: /etc/xen/scripts/block failed; error detected.
May  6 22:03:02 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: XENBUS_PATH=backend/vbd/1/51714
May  6 22:03:10 grp-01-23-02 init: ttyS0 main process (5529) terminated with status 1
May  6 22:03:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:03:20 grp-01-23-02 init: ttyS0 main process (5836) terminated with status 1
May  6 22:03:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:03:30 grp-01-23-02 init: ttyS0 main process (6017) terminated with status 1
May  6 22:03:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:03:40 grp-01-23-02 init: ttyS0 main process (6198) terminated with status 1
May  6 22:03:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:03:50 grp-01-23-02 init: ttyS0 main process (6379) terminated with status 1
May  6 22:03:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:04:00 grp-01-23-02 init: ttyS0 main process (6558) terminated with status 1
May  6 22:04:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:04:10 grp-01-23-02 init: ttyS0 main process (6739) terminated with status 1
May  6 22:04:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:04:20 grp-01-23-02 init: ttyS0 main process (6920) terminated with status 1
May  6 22:04:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [817] unexpectedly returned with status 0x0100
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [817] failed while handling '/devices/vbd-1-51713'
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [3221] unexpectedly returned with status 0x0100
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [3221] failed while handling '/devices/vbd-1-51714'
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [3230] unexpectedly returned with status 0x0100
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [3230] failed while handling '/devices/vbd-1-51715'
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [814] unexpectedly returned with status 0x0100
May  6 22:04:27 grp-01-23-02 udevd[576]: worker [814] failed while handling '/devices/vif-1-0'
May  6 22:04:30 grp-01-23-02 init: ttyS0 main process (7101) terminated with status 1
May  6 22:04:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:04:36 grp-01-23-02 logger: /etc/xen/scripts/block: Forced to steal lock on /var/run/xen-hotplug/block from 3383: /etc/xen/scripts/block!
May  6 22:04:36 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51715/hotplug-error xenstore-read backend/vbd/1/51715/node failed. backend/vbd/1/51715/hotplug-status error to xenstore.
May  6 22:04:36 grp-01-23-02 logger: /etc/xen/scripts/block: xenstore-read backend/vbd/1/51715/node failed.
May  6 22:04:36 grp-01-23-02 logger: /etc/xen/scripts/block: Writing backend/vbd/1/51715/hotplug-error /etc/xen/scripts/block failed; error detected. backend/vbd/1/51715/hotplug-status error to xenstore.
May  6 22:04:36 grp-01-23-02 logger: /etc/xen/scripts/block: /etc/xen/scripts/block failed; error detected.
May  6 22:04:36 grp-01-23-02 logger: /etc/xen/scripts/xen-hotplug-cleanup: Forced to steal lock on /var/run/xen-hotplug/block from 3385: /etc/xen/scripts/block!
May  6 22:04:40 grp-01-23-02 logger: last message repeated 2 times
May  6 22:04:40 grp-01-23-02 init: ttyS0 main process (7282) terminated with status 1
May  6 22:04:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:04:50 grp-01-23-02 init: ttyS0 main process (7496) terminated with status 1
May  6 22:04:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:05:00 grp-01-23-02 init: ttyS0 main process (7515) terminated with status 1
May  6 22:05:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:05:10 grp-01-23-02 init: ttyS0 main process (7536) terminated with status 1
May  6 22:05:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:05:20 grp-01-23-02 init: ttyS0 main process (7557) terminated with status 1
May  6 22:05:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:05:30 grp-01-23-02 init: ttyS0 main process (7578) terminated with status 1
May  6 22:05:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:05:40 grp-01-23-02 init: ttyS0 main process (7599) terminated with status 1
May  6 22:05:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:05:50 grp-01-23-02 init: ttyS0 main process (7620) terminated with status 1
May  6 22:05:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:06:00 grp-01-23-02 init: ttyS0 main process (7641) terminated with status 1
May  6 22:06:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:06:10 grp-01-23-02 init: ttyS0 main process (7662) terminated with status 1
May  6 22:06:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:06:20 grp-01-23-02 init: ttyS0 main process (7681) terminated with status 1
May  6 22:06:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:06:30 grp-01-23-02 init: ttyS0 main process (7702) terminated with status 1
May  6 22:06:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:06:40 grp-01-23-02 init: ttyS0 main process (7723) terminated with status 1
May  6 22:06:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:06:50 grp-01-23-02 init: ttyS0 main process (7744) terminated with status 1
May  6 22:06:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:07:00 grp-01-23-02 init: ttyS0 main process (7765) terminated with status 1
May  6 22:07:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:07:10 grp-01-23-02 init: ttyS0 main process (7786) terminated with status 1
May  6 22:07:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:07:20 grp-01-23-02 init: ttyS0 main process (7807) terminated with status 1
May  6 22:07:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:07:30 grp-01-23-02 init: ttyS0 main process (7828) terminated with status 1
May  6 22:07:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:07:40 grp-01-23-02 init: ttyS0 main process (7847) terminated with status 1
May  6 22:07:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:07:50 grp-01-23-02 init: ttyS0 main process (7868) terminated with status 1
May  6 22:07:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:08:00 grp-01-23-02 init: ttyS0 main process (7889) terminated with status 1
May  6 22:08:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:08:10 grp-01-23-02 init: ttyS0 main process (7910) terminated with status 1
May  6 22:08:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:08:20 grp-01-23-02 init: ttyS0 main process (7931) terminated with status 1
May  6 22:08:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:08:30 grp-01-23-02 init: ttyS0 main process (7952) terminated with status 1
May  6 22:08:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:08:40 grp-01-23-02 init: ttyS0 main process (7973) terminated with status 1
May  6 22:08:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:08:50 grp-01-23-02 init: ttyS0 main process (7992) terminated with status 1
May  6 22:08:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:09:00 grp-01-23-02 init: ttyS0 main process (8013) terminated with status 1
May  6 22:09:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:09:10 grp-01-23-02 init: ttyS0 main process (8034) terminated with status 1
May  6 22:09:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:09:20 grp-01-23-02 init: ttyS0 main process (8055) terminated with status 1
May  6 22:09:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:09:30 grp-01-23-02 init: ttyS0 main process (8076) terminated with status 1
May  6 22:09:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:09:40 grp-01-23-02 init: ttyS0 main process (8097) terminated with status 1
May  6 22:09:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:09:50 grp-01-23-02 init: ttyS0 main process (8118) terminated with status 1
May  6 22:09:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:10:00 grp-01-23-02 init: ttyS0 main process (8139) terminated with status 1
May  6 22:10:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:10:10 grp-01-23-02 init: ttyS0 main process (8158) terminated with status 1
May  6 22:10:10 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:10:20 grp-01-23-02 init: ttyS0 main process (8179) terminated with status 1
May  6 22:10:20 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:10:30 grp-01-23-02 init: ttyS0 main process (8200) terminated with status 1
May  6 22:10:30 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:10:40 grp-01-23-02 init: ttyS0 main process (8221) terminated with status 1
May  6 22:10:40 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:10:50 grp-01-23-02 init: ttyS0 main process (8242) terminated with status 1
May  6 22:10:50 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:11:00 grp-01-23-02 init: ttyS0 main process (8263) terminated with status 1
May  6 22:11:00 grp-01-23-02 init: ttyS0 main process ended, respawning
May  6 22:11:10 grp-01-23-02 init: ttyS0 main process (8440) terminated with status 1
May  6 22:11:10 grp-01-23-02 init: ttyS0 main process ended, respawning

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07  2:22                       ` Gerry Reno
@ 2010-05-07  6:05                         ` Pasi Kärkkäinen
  2010-05-07  6:21                           ` Boris Derzhavets
  0 siblings, 1 reply; 64+ messages in thread
From: Pasi Kärkkäinen @ 2010-05-07  6:05 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel, Konrad Rzeszutek Wilk

On Thu, May 06, 2010 at 10:22:03PM -0400, Gerry Reno wrote:
> On 05/06/2010 08:21 PM, Gerry Reno wrote:
>> Ok, I tested with the new 2.6.32.12:  (.config same)
>>
>> Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12
>>
>> Still pv_ops dom0 is not working properly.
>> There are still call trace and other errors.  The kernel does boot up  
>> but it takes again a long time to get the login prompt (about 3 mins).  
>> This is far longer than when I used 2.6.31.6 pv_ops dom0.  Networking 
>> does not start properly (only see 'lo' and 'virbr0'), so I have to 
>> restart it manually and then I see my bridge 'br0' and 'eth0'.
>> Can't find device "br0"
>> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.
>> And it is trying unsuccessfully to start some laptop feature like  
>> S99powernap (unknown job) and also S28-libvirt-bin fails (maybe  
>> network related?).
>>
>>
>> Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):
>>
>> Now the straight linux kernel (no xen dom0) boots right up and goes to  
>> login prompt in normal timeframe.  Networking starts correctly.   
>> Things look pretty normal.
>>
>>
>> Observation:
>> I'm getting slightly different output on console and serial console.   
>> Some errors show on one but not the other.  Shouldn't these be 
>> identical?
>>
>>
>> I'm attaching both serial console outputs.
>>
>> menu.lst is same as before (just .12 instead of .10)
>>
>> -Gerry
>>
>>
> And I'm attaching the syslog from Case 1 (pv_ops dom0).
>

You should be posting two things:

1) xm dmesg
2) dmesg

Aka the full boot log, from both Xen hypervisor and dom0 Linux kernel.

-- Pasi

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07  6:05                         ` Pasi Kärkkäinen
@ 2010-05-07  6:21                           ` Boris Derzhavets
  2010-05-07 16:44                             ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Boris Derzhavets @ 2010-05-07  6:21 UTC (permalink / raw)
  To: Gerry Reno, Pasi Kärkkäinen; +Cc: xen-devel, Konrad Rzeszutek Wilk


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


>> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.

apt-get install bridge-utils ( has been done ?)
If yes, you could try remove br0 declaration from /etc/network/interfaces
and edit properly /etc/xen/xend-config.sxp . Xen should bring up bridge
with no pain after reboot. Just service xend restart might not help.
I got this error this error as reaction on any mistake in Xen network config
on Lucid.

Boris.
P.S. you could keep br0 declaration and commented out network bridging setup
in /etc/xen/xend-config.sxp. It works as well.
 


--- On Fri, 5/7/10, Pasi Kärkkäinen <pasik@iki.fi> wrote:

From: Pasi Kärkkäinen <pasik@iki.fi>
Subject: Re: [Xen-devel] AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
To: "Gerry Reno" <greno@verizon.net>
Cc: xen-devel@lists.xensource.com, "Konrad Rzeszutek Wilk" <konrad.wilk@oracle.com>
Date: Friday, May 7, 2010, 2:05 AM

On Thu, May 06, 2010 at 10:22:03PM -0400, Gerry Reno wrote:
> On 05/06/2010 08:21 PM, Gerry Reno wrote:
>> Ok, I tested with the new 2.6.32.12:  (.config same)
>>
>> Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12
>>
>> Still pv_ops dom0 is not working properly.
>> There are still call trace and other errors.  The kernel does boot up  
>> but it takes again a long time to get the login prompt (about 3 mins).  
>> This is far longer than when I used 2.6.31.6 pv_ops dom0.  Networking 
>> does not start properly (only see 'lo' and 'virbr0'), so I have to 
>> restart it manually and then I see my bridge 'br0' and 'eth0'.
>> Can't find device "br0"
>> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.
>> And it is trying unsuccessfully to start some laptop feature like  
>> S99powernap (unknown job) and also S28-libvirt-bin fails (maybe  
>> network related?).
>>
>>
>> Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):
>>
>> Now the straight linux kernel (no xen dom0) boots right up and goes to  
>> login prompt in normal timeframe.  Networking starts correctly.   
>> Things look pretty normal.
>>
>>
>> Observation:
>> I'm getting slightly different output on console and serial console.   
>> Some errors show on one but not the other.  Shouldn't these be 
>> identical?
>>
>>
>> I'm attaching both serial console outputs.
>>
>> menu.lst is same as before (just .12 instead of .10)
>>
>> -Gerry
>>
>>
> And I'm attaching the syslog from Case 1 (pv_ops dom0).
>

You should be posting two things:

1) xm dmesg
2) dmesg

Aka the full boot log, from both Xen hypervisor and dom0 Linux kernel.

-- Pasi


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



      

[-- Attachment #1.2: Type: text/html, Size: 3743 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07  6:21                           ` Boris Derzhavets
@ 2010-05-07 16:44                             ` Gerry Reno
  2010-05-07 21:53                               ` Gerry Reno
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-07 16:44 UTC (permalink / raw)
  To: xen-devel


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

On 05/07/2010 02:21 AM, Boris Derzhavets wrote:
>
> >> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.
>
> apt-get install bridge-utils ( has been done ?)
> If yes, you could try remove br0 declaration from /etc/network/interfaces
> and edit properly /etc/xen/xend-config.sxp . Xen should bring up bridge
> with no pain after reboot. Just service xend restart might not help.
> I got this error this error as reaction on any mistake in Xen network 
> config
> on Lucid.
>
> Boris.
> P.S. you could keep br0 declaration and commented out network bridging 
> setup
> in /etc/xen/xend-config.sxp. It works as well.
>
>
>
> --- On *Fri, 5/7/10, Pasi Kärkkäinen /<pasik@iki.fi>/* wrote:
>
>
>     From: Pasi Kärkkäinen <pasik@iki.fi>
>     Subject: Re: [Xen-devel] AMD Phenom II 940: mm/vmalloc.c:110
>     vmap_page_range_noflush
>     To: "Gerry Reno" <greno@verizon.net>
>     Cc: xen-devel@lists.xensource.com, "Konrad Rzeszutek Wilk"
>     <konrad.wilk@oracle.com>
>     Date: Friday, May 7, 2010, 2:05 AM
>
>     On Thu, May 06, 2010 at 10:22:03PM -0400, Gerry Reno wrote:
>     > On 05/06/2010 08:21 PM, Gerry Reno wrote:
>     >> Ok, I tested with the new 2.6.32.12:  (.config same)
>     >>
>     >> Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12
>     >>
>     >> Still pv_ops dom0 is not working properly.
>     >> There are still call trace and other errors.  The kernel does
>     boot up
>     >> but it takes again a long time to get the login prompt (about 3
>     mins).
>     >> This is far longer than when I used 2.6.31.6 pv_ops dom0. 
>     Networking
>     >> does not start properly (only see 'lo' and 'virbr0'), so I have to
>     >> restart it manually and then I see my bridge 'br0' and 'eth0'.
>     >> Can't find device "br0"
>     >> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not
>     found.
>     >> And it is trying unsuccessfully to start some laptop feature like
>     >> S99powernap (unknown job) and also S28-libvirt-bin fails (maybe
>     >> network related?).
>     >>
>     >>
>     >> Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):
>     >>
>     >> Now the straight linux kernel (no xen dom0) boots right up and
>     goes to
>     >> login prompt in normal timeframe.  Networking starts correctly.
>     >> Things look pretty normal.
>     >>
>     >>
>     >> Observation:
>     >> I'm getting slightly different output on console and serial
>     console.
>     >> Some errors show on one but not the other.  Shouldn't these be
>     >> identical?
>     >>
>     >>
>     >> I'm attaching both serial console outputs.
>     >>
>     >> menu.lst is same as before (just .12 instead of .10)
>     >>
>     >> -Gerry
>     >>
>     >>
>     > And I'm attaching the syslog from Case 1 (pv_ops dom0).
>     >
>
>     You should be posting two things:
>
>     1) xm dmesg
>     2) dmesg
>
>     Aka the full boot log, from both Xen hypervisor and dom0 Linux kernel.
>
>     -- Pasi
>
>
Pasi, I am attaching 'xm dmesg' and 'dmesg'.

Boris, bridge-utils is installed and latest.  I will try some of these 
other things you suggested.

-Gerry


[-- Attachment #1.2: Type: text/html, Size: 4796 bytes --]

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

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.12 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #2 SMP Thu May 6 14:59:13 EDT 2010
[    0.000000] Command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen console=hvc0,115200n8 console=tty0,115200n8 nomodeset text
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000]  0000000000 - 0040000000 page 4k
[    0.000000] kernel direct mapping tables up to 40000000 @ 100000-302000
[    0.000000] RAMDISK: 01a76000 - 0f7e5400
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9e7000 - 000fa68000]   XEN PAGETABLES ==> [000f9e7000 - 000fa68000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a558e4]    TEXT DATA BSS ==> [0001000000 - 0001a558e4]
[    0.000000]   #4 [0001a76000 - 000f7e5400]          RAMDISK ==> [0001a76000 - 000f7e5400]
[    0.000000]   #5 [000f7e6000 - 000f9e7000]   XEN START INFO ==> [000f7e6000 - 000f9e7000]
[    0.000000]   #6 [0001a56000 - 0001a560fe]              BRK ==> [0001a56000 - 0001a560fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] On node 0 totalpages: 262042
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 385 pages reserved
[    0.000000]   DMA zone: 3553 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 3528 pages used for memmap
[    0.000000]   DMA32 zone: 254520 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 256
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa9e000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] trying to map vcpu_info 0 at ffff88000faa9020, mfn 21faa9, offset 32
[    0.000000] cpu 0 using vcpu_info at ffff88000faa9020
[    0.000000] trying to map vcpu_info 1 at ffff88000fac7020, mfn 21fac7, offset 32
[    0.000000] cpu 1 using vcpu_info at ffff88000fac7020
[    0.000000] trying to map vcpu_info 2 at ffff88000fae5020, mfn 21fae5, offset 32
[    0.000000] cpu 2 using vcpu_info at ffff88000fae5020
[    0.000000] trying to map vcpu_info 3 at ffff88000fb03020, mfn 21fb03, offset 32
[    0.000000] cpu 3 using vcpu_info at ffff88000fb03020
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen console=hvc0,115200n8 console=tty0,115200n8 nomodeset text
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    0.000000] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c53000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014cb3000 size=32768
[    0.000000] Memory: 725620k/1048576k available (5532k kernel code, 408k absent, 322548k reserved, 3061k data, 800k init)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    0.000000] xen: --> irq=0
[    0.000000] xen: --> irq=1
[    0.000000] xen: --> irq=2
[    0.000000] xen: --> irq=3
[    0.000000] xen: --> irq=4
[    0.000000] xen: --> irq=5
[    0.000000] xen: --> irq=6
[    0.000000] xen: --> irq=7
[    0.000000] xen: --> irq=8
[    0.000000] xen: --> irq=9
[    0.000000] xen: --> irq=10
[    0.000000] xen: --> irq=11
[    0.000000] xen: --> irq=12
[    0.000000] xen: --> irq=13
[    0.000000] xen: --> irq=14
[    0.000000] xen: --> irq=15
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen: registering gsi 9 triggering 0 polarity 1
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] xen: --> irq=9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] console [hvc0] enabled
[    0.000000] allocated 10485760 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Xen: using vcpuop timer interface
[    0.000000] installing Xen timer for CPU 0
[    0.000000]   alloc irq_desc for 1279 on node 0
[    0.000000]   alloc kstat_irqs on node 0
[    0.000000] Detected 667544.254 MHz processor.
[    0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.59 BogoMIPS (lpj=30137980)
[    0.010029] Security Framework initialized
[    0.014330] SELinux:  Disabled at boot.
[    0.018511] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.020034] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.027277] Mount-cache hash table entries: 256
[    0.030132] Initializing cgroup subsys ns
[    0.034229] Initializing cgroup subsys cpuacct
[    0.038849] Initializing cgroup subsys memory
[    0.040000] Initializing cgroup subsys devices
[    0.040000] Initializing cgroup subsys freezer
[    0.040000] Initializing cgroup subsys net_cls
[    0.040025] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.047502] CPU: L2 Cache: 512K (64 bytes/line)
[    0.050000] CPU 0/0x0 -> Node 0
[    0.050004] tseg: 00afe00000
[    0.050006] CPU: Physical Processor ID: 0
[    0.054252] CPU: Processor Core ID: 0
[    0.058137] mce: CPU supports 6 MCE banks
[    0.060014] Performance Events: AMD PMU driver.
[    0.064781] ------------[ cut here ]------------
[    0.069587] WARNING: at arch/x86/xen/enlighten.c:731 xen_apic_write+0x1a/0x20()
[    0.070000] Hardware name: GA-MA790GP-UD4H
[    0.070000] Modules linked in:
[    0.070000] Pid: 0, comm: swapper Not tainted 2.6.32.12 #2
[    0.070000] Call Trace:
[    0.070000]  [<ffffffff8106605b>] warn_slowpath_common+0x7b/0xc0
[    0.070000]  [<ffffffff810660b4>] warn_slowpath_null+0x14/0x20
[    0.070000]  [<ffffffff8100b70a>] xen_apic_write+0x1a/0x20
[    0.070000]  [<ffffffff81021c76>] perf_events_lapic_init+0x36/0x40
[    0.070000]  [<ffffffff81886553>] init_hw_perf_events+0x34f/0x3ec
[    0.070000]  [<ffffffff81886175>] identify_boot_cpu+0x3c/0x3e
[    0.070000]  [<ffffffff818861e0>] check_bugs+0x9/0x2d
[    0.070000]  [<ffffffff8187dd7e>] start_kernel+0x3e3/0x403
[    0.070000]  [<ffffffff8187d33a>] x86_64_start_reservations+0x125/0x129
[    0.070000]  [<ffffffff818812f7>] xen_start_kernel+0x6ab/0x6b2
[    0.070000] ---[ end trace a7919e7f17c0a725 ]---
[    0.070000] ... version:                0
[    0.070000] ... bit width:              48
[    0.070000] ... generic registers:      4
[    0.070000] ... value mask:             0000ffffffffffff
[    0.070000] ... max period:             00007fffffffffff
[    0.070000] ... fixed-purpose events:   0
[    0.070000] ... event mask:             000000000000000f
[    0.070000] SMP alternatives: switching to UP code
[    0.070000] ACPI: Core revision 20090903
[    0.080046] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.085920] ftrace: allocating 21787 entries in 86 pages
[    0.090066]   alloc irq_desc for 1278 on node 0
[    0.090069]   alloc kstat_irqs on node 0
[    0.090080] cpu 0 spinlock event irq 1278
[    0.094268]   alloc irq_desc for 1277 on node 0
[    0.094269]   alloc kstat_irqs on node 0
[    0.094273]   alloc irq_desc for 1276 on node 0
[    0.094274]   alloc kstat_irqs on node 0
[    0.094278]   alloc irq_desc for 1275 on node 0
[    0.094280]   alloc kstat_irqs on node 0
[    0.094285]   alloc irq_desc for 1274 on node 0
[    0.094286]   alloc kstat_irqs on node 0
[    0.094470] installing Xen timer for CPU 1
[    0.099502]   alloc irq_desc for 1273 on node 0
[    0.099504]   alloc kstat_irqs on node 0
[    0.099508]   alloc irq_desc for 1272 on node 0
[    0.099510]   alloc kstat_irqs on node 0
[    0.099513] cpu 1 spinlock event irq 1272
[    0.100021] SMP alternatives: switching to SMP code
[    0.110000]   alloc irq_desc for 1271 on node 0
[    0.110000]   alloc kstat_irqs on node 0
[    0.110006]   alloc irq_desc for 1270 on node 0
[    0.110007]   alloc kstat_irqs on node 0
[    0.110011]   alloc irq_desc for 1269 on node 0
[    0.110013]   alloc kstat_irqs on node 0
[    0.110016]   alloc irq_desc for 1268 on node 0
[    0.110017]   alloc kstat_irqs on node 0
[    0.000016] Initializing CPU#1
[    0.000064] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000066] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000068] CPU 1/0x0 -> Node 0
[    0.000070] CPU: Physical Processor ID: 0
[    0.000071] CPU: Processor Core ID: 1
[    0.110201] installing Xen timer for CPU 2
[    0.120002]   alloc irq_desc for 1267 on node 0
[    0.120004]   alloc kstat_irqs on node 0
[    0.120008]   alloc irq_desc for 1266 on node 0
[    0.120009]   alloc kstat_irqs on node 0
[    0.120012] cpu 2 spinlock event irq 1266
[    0.124172]   alloc irq_desc for 1265 on node 0
[    0.124174]   alloc kstat_irqs on node 0
[    0.124178]   alloc irq_desc for 1264 on node 0
[    0.124179]   alloc kstat_irqs on node 0
[    0.124183]   alloc irq_desc for 1263 on node 0
[    0.124185]   alloc kstat_irqs on node 0
[    0.124188]   alloc irq_desc for 1262 on node 0
[    0.124189]   alloc kstat_irqs on node 0
[    0.000014] Initializing CPU#2
[    0.000068] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000070] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000072] CPU 2/0x0 -> Node 0
[    0.000074] CPU: Physical Processor ID: 0
[    0.000075] CPU: Processor Core ID: 3
[    0.124355] installing Xen timer for CPU 3
[    0.130002]   alloc irq_desc for 1261 on node 0
[    0.130004]   alloc kstat_irqs on node 0
[    0.130008]   alloc irq_desc for 1260 on node 0
[    0.130009]   alloc kstat_irqs on node 0
[    0.130012] cpu 3 spinlock event irq 1260
[    0.134274]   alloc irq_desc for 1259 on node 0
[    0.134275]   alloc kstat_irqs on node 0
[    0.134279]   alloc irq_desc for 1258 on node 0
[    0.134281]   alloc kstat_irqs on node 0
[    0.134284]   alloc irq_desc for 1257 on node 0
[    0.134286]   alloc kstat_irqs on node 0
[    0.134289]   alloc irq_desc for 1256 on node 0
[    0.134291]   alloc kstat_irqs on node 0
[    0.000017] Initializing CPU#3
[    0.000063] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000065] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000067] CPU 3/0x0 -> Node 0
[    0.000069] CPU: Physical Processor ID: 0
[    0.000070] CPU: Processor Core ID: 2
[    0.134404] Brought up 4 CPUs
[    0.140000] CPU0 attaching sched-domain:
[    0.140000]  domain 0: span 0-3 level CPU
[    0.140000]   groups: 0 1 2 3
[    0.140000] CPU1 attaching sched-domain:
[    0.140000]  domain 0: span 0-3 level CPU
[    0.140000]   groups: 1 2 3 0
[    0.140000] CPU2 attaching sched-domain:
[    0.140000]  domain 0: span 0-3 level CPU
[    0.140000]   groups: 2 3 0 1
[    0.140000] CPU3 attaching sched-domain:
[    0.140000]  domain 0: span 0-3 level CPU
[    0.140000]   groups: 3 0 1 2
[    0.140079] devtmpfs: initialized
[    0.144569] Grant table initialized
[    0.144569] regulator: core version 0.5
[    0.147695] Time:  1:59:06  Date: 05/07/10
[    0.150034] NET: Registered protocol family 16
[    0.154716]   alloc irq_desc for 1255 on node 0
[    0.154718]   alloc kstat_irqs on node 0
[    0.154740] node 0 link 0: io port [c000, ffff]
[    0.154740] TOM: 00000000d0000000 aka 3328M
[    0.154740] Fam 10h mmconf [e0000000, e00fffff]
[    0.154740] node 0 link 0: mmio [a0000, bffff]
[    0.154740] node 0 link 0: mmio [d0000000, dfffffff]
[    0.154740] node 0 link 0: mmio [f0000000, fe02ffff]
[    0.154740] node 0 link 0: mmio [e0000000, e03fffff] ==> [e0100000, e03fffff]
[    0.154740] TOM2: 0000000230000000 aka 8960M
[    0.158913] bus: [00,03] on node 0 link 0
[    0.158915] bus: 00 index 0 io port: [0, ffff]
[    0.158916] bus: 00 index 1 mmio: [a0000, bffff]
[    0.158918] bus: 00 index 2 mmio: [d0000000, dfffffff]
[    0.158920] bus: 00 index 3 mmio: [e0400000, ffffffff]
[    0.158921] bus: 00 index 4 mmio: [e0100000, e03fffff]
[    0.158923] bus: 00 index 5 mmio: [230000000, fcffffffff]
[    0.160032] ACPI: bus type pci registered
[    0.164286] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.170000] PCI: MCFG area at e0000000 reserved in E820
[    0.199854] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.200000] PCI: Using configuration type 1 for base access
[    0.200595] bio: create slab <bio-0> at 0
[    0.204195] ERROR: Unable to locate IOAPIC for GSI 9
[    0.210006] ACPI: EC: Look up EC in DSDT
[    0.219602] ACPI: Interpreter enabled
[    0.220000] ACPI: (supports S0 S1 S4 S5)
[    0.220000] ACPI: Using IOAPIC for interrupt routing
[    0.224965] ACPI: No dock devices found.
[    0.229147] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.230000] pci 0000:00:00.0: reg 1c 64bit mmio: [0xe0000000-0xffffffff]
[    0.230000] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.230000] pci 0000:00:0a.0: PME# disabled
[    0.230054] pci 0000:00:11.0: reg 10 io port: [0xff00-0xff07]
[    0.230065] pci 0000:00:11.0: reg 14 io port: [0xfe00-0xfe03]
[    0.230074] pci 0000:00:11.0: reg 18 io port: [0xfd00-0xfd07]
[    0.230083] pci 0000:00:11.0: reg 1c io port: [0xfc00-0xfc03]
[    0.230091] pci 0000:00:11.0: reg 20 io port: [0xfb00-0xfb0f]
[    0.230100] pci 0000:00:11.0: reg 24 32bit mmio: [0xfe02f000-0xfe02f3ff]
[    0.230172] pci 0000:00:12.0: reg 10 32bit mmio: [0xfe02e000-0xfe02efff]
[    0.230247] pci 0000:00:12.1: reg 10 32bit mmio: [0xfe02d000-0xfe02dfff]
[    0.230347] pci 0000:00:12.2: reg 10 32bit mmio: [0xfe02c000-0xfe02c0ff]
[    0.230420] pci 0000:00:12.2: supports D1 D2
[    0.230421] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.236587] pci 0000:00:12.2: PME# disabled
[    0.240000] pci 0000:00:13.0: reg 10 32bit mmio: [0xfe02b000-0xfe02bfff]
[    0.240000] pci 0000:00:13.1: reg 10 32bit mmio: [0xfe02a000-0xfe02afff]
[    0.240000] pci 0000:00:13.2: reg 10 32bit mmio: [0xfe029000-0xfe0290ff]
[    0.240000] pci 0000:00:13.2: supports D1 D2
[    0.240000] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.240000] pci 0000:00:13.2: PME# disabled
[    0.240039] pci 0000:00:14.1: reg 10 io port: [0x00-0x07]
[    0.240048] pci 0000:00:14.1: reg 14 io port: [0x00-0x03]
[    0.240056] pci 0000:00:14.1: reg 18 io port: [0x00-0x07]
[    0.240065] pci 0000:00:14.1: reg 1c io port: [0x00-0x03]
[    0.240074] pci 0000:00:14.1: reg 20 io port: [0xfa00-0xfa0f]
[    0.240164] pci 0000:00:14.2: reg 10 64bit mmio: [0xfe024000-0xfe027fff]
[    0.240224] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.246559] pci 0000:00:14.2: PME# disabled
[    0.250000] pci 0000:00:14.5: reg 10 32bit mmio: [0xfe028000-0xfe028fff]
[    0.250198] pci 0000:01:05.0: reg 10 32bit mmio pref: [0xd0000000-0xdfffffff]
[    0.250204] pci 0000:01:05.0: reg 14 io port: [0xee00-0xeeff]
[    0.250210] pci 0000:01:05.0: reg 18 32bit mmio: [0xfdfe0000-0xfdfeffff]
[    0.250223] pci 0000:01:05.0: reg 24 32bit mmio: [0xfde00000-0xfdefffff]
[    0.250246] pci 0000:01:05.0: supports D1 D2
[    0.250280] pci 0000:01:05.1: reg 10 32bit mmio: [0xfdffc000-0xfdffffff]
[    0.250321] pci 0000:01:05.1: supports D1 D2
[    0.250384] pci 0000:00:01.0: bridge io port: [0xe000-0xefff]
[    0.250388] pci 0000:00:01.0: bridge 32bit mmio: [0xfde00000-0xfdffffff]
[    0.250394] pci 0000:00:01.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff]
[    0.250442] pci 0000:02:00.0: reg 10 io port: [0xde00-0xdeff]
[    0.250463] pci 0000:02:00.0: reg 18 64bit mmio pref: [0xfdaff000-0xfdafffff]
[    0.250477] pci 0000:02:00.0: reg 20 64bit mmio pref: [0xfdae0000-0xfdaeffff]
[    0.250486] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x00ffff]
[    0.250527] pci 0000:02:00.0: supports D1 D2
[    0.250529] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.257361] pci 0000:02:00.0: PME# disabled
[    0.260000] pci 0000:00:0a.0: bridge io port: [0xd000-0xdfff]
[    0.260000] pci 0000:00:0a.0: bridge 32bit mmio: [0xfdd00000-0xfddfffff]
[    0.260000] pci 0000:00:0a.0: bridge 64bit mmio pref: [0xfda00000-0xfdafffff]
[    0.260000] pci 0000:03:0e.0: reg 10 32bit mmio: [0xfdcff000-0xfdcff7ff]
[    0.260000] pci 0000:03:0e.0: reg 14 32bit mmio: [0xfdcf8000-0xfdcfbfff]
[    0.260000] pci 0000:03:0e.0: supports D1 D2
[    0.260000] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.260000] pci 0000:03:0e.0: PME# disabled
[    0.260000] pci 0000:00:14.4: transparent bridge
[    0.260000] pci 0000:00:14.4: bridge io port: [0xc000-0xcfff]
[    0.260000] pci 0000:00:14.4: bridge 32bit mmio: [0xfdc00000-0xfdcfffff]
[    0.260000] pci 0000:00:14.4: bridge 32bit mmio pref: [0xfdb00000-0xfdbfffff]
[    0.260000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.260336] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT]
[    0.260464] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
[    0.260526] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[    0.335522] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.340085] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.347747] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.350083] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.357756] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.360082] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.367757] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.370089] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.377826] sync cpu 0 get result 1 max_id 3
[    0.377832] sync cpu 1 get result 1 max_id 3
[    0.377838] sync cpu 2 get result 1 max_id 3
[    0.377845] sync cpu 3 get result 1 max_id 3
[    0.377851]   alloc irq_desc for 1254 on node 0
[    0.377853]   alloc kstat_irqs on node 0
[    0.377884] xen_balloon: Initialising balloon driver with page order 0.
[    0.380067] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.388495] vgaarb: loaded
[    0.390098] SCSI subsystem initialized
[    0.393999] libata version 3.00 loaded.
[    0.393999] usbcore: registered new interface driver usbfs
[    0.395663] usbcore: registered new interface driver hub
[    0.400026] usbcore: registered new device driver usb
[    0.405203] ACPI: WMI: Mapper loaded
[    0.405203] PCI: Using ACPI for IRQ routing
[    0.408115] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    0.410000] pci 0000:00:00.0: BAR 3: can't allocate resource
[    0.410074] NetLabel: Initializing
[    0.413606] NetLabel:  domain hash size = 128
[    0.418147] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.420000] NetLabel:  unlabeled traffic allowed by default
[    0.420057] Switching to clocksource xen
[    0.424063] pnp: PnP ACPI init
[    0.424712] ACPI: bus type pnp registered
[    0.429892] xen: registering gsi 8 triggering 1 polarity 0
[    0.429895] xen_allocate_pirq: returning irq 8 for gsi 8
[    0.435392] xen: --> irq=8
[    0.435403] Already setup the GSI :8
[    0.439331] xen: registering gsi 13 triggering 1 polarity 0
[    0.439333] xen_allocate_pirq: returning irq 13 for gsi 13
[    0.445078] xen: --> irq=13
[    0.445086] Already setup the GSI :13
[    0.449470] xen: registering gsi 4 triggering 1 polarity 0
[    0.449472] xen_allocate_pirq: returning irq 4 for gsi 4
[    0.454966] xen: --> irq=4
[    0.454973] Already setup the GSI :4
[    0.458853] xen: registering gsi 12 triggering 1 polarity 0
[    0.458855] xen_allocate_pirq: returning irq 12 for gsi 12
[    0.464517] xen: --> irq=12
[    0.464523] Already setup the GSI :12
[    0.468375] xen: registering gsi 1 triggering 1 polarity 0
[    0.468377] xen_allocate_pirq: returning irq 1 for gsi 1
[    0.473924] xen: --> irq=1
[    0.473931] Already setup the GSI :1
[    0.478040] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.539754] pnp: PnP ACPI: found 13 devices
[    0.544115] ACPI: ACPI bus type pnp unregistered
[    0.548974] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.555504] system 00:01: ioport range 0x220-0x225 has been reserved
[    0.558962] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.568623] system 00:02: ioport range 0x4100-0x411f has been reserved
[    0.575489] system 00:02: ioport range 0x228-0x22f has been reserved
[    0.578618] system 00:02: ioport range 0x40b-0x40b has been reserved
[    0.578618] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    0.578618] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    0.578618] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    0.578618] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    0.578618] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    0.578618] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    0.578618] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    0.578618] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    0.578618] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    0.578618] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    0.578618] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    0.578618] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    0.578618] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    0.674811] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    0.681421] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.688828] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    0.691414] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    0.691414] system 00:0c: iomem range 0xafef0000-0xcfeeffff has been reserved
[    0.691414] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.691414] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.691414] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    0.734484] pciback 0000:00:00.0: probing...
[    0.734528] pciback 0000:00:01.0: probing...
[    0.734563] pciback 0000:00:0a.0: probing...
[    0.734597] pciback 0000:00:11.0: probing...
[    0.734630] pciback 0000:00:12.0: probing...
[    0.734666] pciback 0000:00:12.1: probing...
[    0.734702] pciback 0000:00:12.2: probing...
[    0.734737] pciback 0000:00:13.0: probing...
[    0.734771] pciback 0000:00:13.1: probing...
[    0.734805] pciback 0000:00:13.2: probing...
[    0.734841] pciback 0000:00:14.0: probing...
[    0.734876] pciback 0000:00:14.1: probing...
[    0.734910] pciback 0000:00:14.2: probing...
[    0.734946] pciback 0000:00:14.3: probing...
[    0.734980] pciback 0000:00:14.4: probing...
[    0.735017] pciback 0000:00:14.5: probing...
[    0.735051] pciback 0000:00:18.0: probing...
[    0.735086] pciback 0000:00:18.1: probing...
[    0.735120] pciback 0000:00:18.2: probing...
[    0.735154] pciback 0000:00:18.3: probing...
[    0.735190] pciback 0000:00:18.4: probing...
[    0.735225] pciback 0000:01:05.0: probing...
[    0.735259] pciback 0000:01:05.1: probing...
[    0.735293] pciback 0000:02:00.0: probing...
[    0.735327] pciback 0000:03:0e.0: probing...
[    0.737734] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    0.744653] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.745320] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    0.745320] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    0.745320] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.745320] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    0.745320] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    0.745320] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    0.745320] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    0.745320] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    0.745320] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    0.745320] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    0.745320] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    0.745320] xen: registering gsi 18 triggering 0 polarity 1
[    0.745320]   alloc irq_desc for 18 on node 0
[    0.745320]   alloc kstat_irqs on node 0
[    0.822177] xen: --> irq=18
[    0.822188] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.829109] pci 0000:00:0a.0: setting latency timer to 64
[    0.829119] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.829121] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.829123] pci_bus 0000:01: resource 0 io:  [0xe000-0xefff]
[    0.829125] pci_bus 0000:01: resource 1 mem: [0xfde00000-0xfdffffff]
[    0.829127] pci_bus 0000:01: resource 2 pref mem [0xd0000000-0xdfffffff]
[    0.829129] pci_bus 0000:02: resource 0 io:  [0xd000-0xdfff]
[    0.829131] pci_bus 0000:02: resource 1 mem: [0xfdd00000-0xfddfffff]
[    0.829133] pci_bus 0000:02: resource 2 pref mem [0xfda00000-0xfdafffff]
[    0.829136] pci_bus 0000:03: resource 0 io:  [0xc000-0xcfff]
[    0.829138] pci_bus 0000:03: resource 1 mem: [0xfdc00000-0xfdcfffff]
[    0.829140] pci_bus 0000:03: resource 2 pref mem [0xfdb00000-0xfdbfffff]
[    0.829142] pci_bus 0000:03: resource 3 io:  [0x00-0xffff]
[    0.829144] pci_bus 0000:03: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.829172] NET: Registered protocol family 2
[    0.833860] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.841902] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[    0.850288] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.857528] TCP: Hash tables configured (established 131072 bind 65536)
[    0.860007] TCP reno registered
[    0.860007] NET: Registered protocol family 1
[    1.020130] pci 0000:01:05.0: Boot video device
[    1.020202] Trying to unpack rootfs image as initramfs...
[    1.228490] Freeing initrd memory: 226749k freed
[    1.326952] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.330012] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    1.330012] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    1.348873] Scanning for low memory corruption every 60 seconds
[    1.355204] audit: initializing netlink socket (disabled)
[    1.360772] type=2000 audit(1273197548.595:1): initialized
[    1.372676] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.380655] VFS: Disk quotas dquot_6.5.2
[    1.384780] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.391988] fuse init (API version 7.13)
[    1.396101] msgmni has been set to 1860
[    1.400479] alg: No test for stdrng (krng)
[    1.404681] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.412402] io scheduler noop registered
[    1.414609] io scheduler anticipatory registered
[    1.414609] io scheduler deadline registered (default)
[    1.426833] io scheduler cfq registered
[    1.431150]   alloc irq_desc for 1253 on node 0
[    1.431152]   alloc kstat_irqs on node 0
[    1.431182] pcieport 0000:00:0a.0: setting latency timer to 64
[    1.431267] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.437034] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.444020] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.452565] ACPI: Power Button [PWRB]
[    1.456501] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.464149] ACPI: Power Button [PWRF]
[    1.470196] Event-channel device installed.
[    1.474546] pciback: pcistub_init_devices_late
[    1.478352] blktap_device_init: blktap device major 253
[    1.483680] blktap_ring_init: blktap ring major: 252
[    1.489641] registering netback
[    1.492961] xen-platform-pcifailed backend handshake: unrecognised magic value
[    1.500524]   alloc irq_desc for 1252 on node 0
[    1.500526]   alloc kstat_irqs on node 0
[    1.501458]   alloc irq_desc for 1251 on node 0
[    1.501460]   alloc kstat_irqs on node 0
[    1.501789] hpet_acpi_add: no address or irqs in _CRS
[    1.506963] Linux agpgart interface v0.103
[    1.511273] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.518864] brd: module loaded
[    1.522389] loop: module loaded
[    1.525723] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    1.534007] xen: registering gsi 16 triggering 0 polarity 1
[    1.534017]   alloc irq_desc for 16 on node 0
[    1.534019]   alloc kstat_irqs on node 0
[    1.534022] xen: --> irq=16
[    1.534035] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.541900] Fixed MDIO Bus: probed
[    1.545475] PPP generic driver version 2.4.2
[    1.550010] tun: Universal TUN/TAP device driver, 1.6
[    1.555212] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.561802] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.568692] xen: registering gsi 17 triggering 0 polarity 1
[    1.568695]   alloc irq_desc for 17 on node 0
[    1.568697]   alloc kstat_irqs on node 0
[    1.568700] xen: --> irq=17
[    1.568707] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.576085] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    1.581487] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.589280] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    1.591459] ehci_hcd 0000:00:12.2: debug port 1
[    1.591459] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    1.607704] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.613725] usb usb1: configuration #1 chosen from 1 choice
[    1.619454] hub 1-0:1.0: USB hub found
[    1.623362] hub 1-0:1.0: 6 ports detected
[    1.627723] xen: registering gsi 19 triggering 0 polarity 1
[    1.627727]   alloc irq_desc for 19 on node 0
[    1.627728]   alloc kstat_irqs on node 0
[    1.627731] xen: --> irq=19
[    1.627738] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.635094] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    1.637705] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.637705] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    1.637705] ehci_hcd 0000:00:13.2: debug port 1
[    1.637705] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    1.666676] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.672776] usb usb2: configuration #1 chosen from 1 choice
[    1.678600] hub 2-0:1.0: USB hub found
[    1.682590] hub 2-0:1.0: 6 ports detected
[    1.686883] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.693329] xen: registering gsi 16 triggering 0 polarity 1
[    1.693331] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.699035] xen: --> irq=16
[    1.699037] Already setup the GSI :16
[    1.702911] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.710299] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    1.715794] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.720280] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    1.774119] usb usb3: configuration #1 chosen from 1 choice
[    1.779908] hub 3-0:1.0: USB hub found
[    1.783869] hub 3-0:1.0: 3 ports detected
[    1.788159] xen: registering gsi 16 triggering 0 polarity 1
[    1.788161] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.793807] xen: --> irq=16
[    1.793818] Already setup the GSI :16
[    1.797706] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.803812] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    1.810768] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    1.818532] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    1.874118] usb usb4: configuration #1 chosen from 1 choice
[    1.879935] hub 4-0:1.0: USB hub found
[    1.883921] hub 4-0:1.0: 3 ports detected
[    1.888196] xen: registering gsi 18 triggering 0 polarity 1
[    1.888198] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.893845] xen: --> irq=18
[    1.893852] Already setup the GSI :18
[    1.897643] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.903849] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    1.910616] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    1.918397] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    1.974123] usb usb5: configuration #1 chosen from 1 choice
[    1.979969] hub 5-0:1.0: USB hub found
[    1.983961] hub 5-0:1.0: 3 ports detected
[    1.988316] xen: registering gsi 18 triggering 0 polarity 1
[    1.988318] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.993966] xen: --> irq=18
[    1.993975] Already setup the GSI :18
[    1.997778] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.003970] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    2.003970] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    2.003970] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.054108] usb usb6: configuration #1 chosen from 1 choice
[    2.059975] hub 6-0:1.0: USB hub found
[    2.063928] hub 6-0:1.0: 3 ports detected
[    2.068237] xen: registering gsi 18 triggering 0 polarity 1
[    2.068239] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.073952] xen: --> irq=18
[    2.073960] Already setup the GSI :18
[    2.077840] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.083956] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.090898] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    2.098676] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.154110] usb usb7: configuration #1 chosen from 1 choice
[    2.159892] hub 7-0:1.0: USB hub found
[    2.163779] hub 7-0:1.0: 2 ports detected
[    2.167990] uhci_hcd: USB Universal Host Controller Interface driver
[    2.174662] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.183025] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.188162] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.193425] mice: PS/2 mouse device common for all mice
[    2.198955] rtc_cmos 00:05: RTC can wake from S4
[    2.203352] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.210117] rtc0: alarms up to one month, 242 bytes nvram
[    2.215877] device-mapper: uevent: version 1.0.3
[    2.220774] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.229572] device-mapper: multipath: version 1.1.0 loaded
[    2.235205] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.242372] cpuidle: using governor ladder
[    2.246602] cpuidle: using governor menu
[    2.251825] TCP cubic registered
[    2.255316] NET: Registered protocol family 10
[    2.260025] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.260360] lo: Disabled Privacy Extensions
[    2.260601] NET: Registered protocol family 17
[    2.278060] powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor processors (4 cpu cores) (version 2.20.00)
[    2.280003] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found.
[    2.280003] [Firmware Bug]: powernow-k8: Try again with latest BIOS.
[    2.302933] PM: Resume from disk failed.
[    2.302944] registered taskstats version 1
[    2.307635]   Magic number: 10:64:963
[    2.311561] rtc_cmos 00:05: setting system clock to 2010-05-07 01:59:09 UTC (1273197549)
[    2.319921] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.321532] EDD information not available.
[    2.330670] Freeing unused kernel memory: 800k freed
[    2.336094] Write protecting the kernel read-only data: 7812k
[    2.377901] udev: starting version 151
[    2.434300] scsi0 : pata_atiixp
[    2.437684] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.443612] xen: registering gsi 18 triggering 0 polarity 1
[    2.443615] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.449301] xen: --> irq=18
[    2.449309] Already setup the GSI :18
[    2.453116] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.460360] r8169 0000:02:00.0: setting latency timer to 64
[    2.460407]   alloc irq_desc for 1250 on node 0
[    2.460409]   alloc kstat_irqs on node 0
[    2.461073] eth0: RTL8168c/8111c at 0xffffc900001ea000, 00:24:1d:19:05:df, XID 1c4000c0 IRQ 1250
[    2.473401] scsi1 : pata_atiixp
[    2.474826] md: linear personality registered for level -1
[    2.502807] md: multipath personality registered for level -4
[    2.519018] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[    2.526363] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[    2.533939] xen: registering gsi 22 triggering 0 polarity 1
[    2.533959]   alloc irq_desc for 22 on node 0
[    2.533964]   alloc kstat_irqs on node 0
[    2.533975] xen: --> irq=22
[    2.533997] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.543434] ahci 0000:00:11.0: version 3.0
[    2.543451] xen: registering gsi 22 triggering 0 polarity 1
[    2.543454] xen_allocate_pirq: returning irq 22 for gsi 22
[    2.549068] xen: --> irq=22
[    2.549071] Already setup the GSI :22
[    2.551284] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.560166] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.568601] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    2.578077] scsi2 : ahci
[    2.580845] scsi3 : ahci
[    2.582197] md: raid0 personality registered for level 0
[    2.589128] scsi4 : ahci
[    2.591862] scsi5 : ahci
[    2.594547] scsi6 : ahci
[    2.597269] scsi7 : ahci
[    2.600088] ata3: SATA max UDMA/133 irq_stat 0x00400000, PHY RDY changed irq 22
[    2.607669] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    2.610003] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    2.610003] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    2.610003] ata7: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    2.610003] ata8: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    2.646400] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[fdcff000-fdcff7ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    2.730506] ata1.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
[    2.770452] ata1.01: configured for UDMA/33
[    2.779025] scsi 0:0:1:0: CD-ROM            HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[    2.795469] sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    2.801673] Uniform CD-ROM driver Revision: 3.20
[    2.806468] sr 0:0:1:0: Attached scsi CD-ROM sr0
[    2.806537] sr 0:0:1:0: Attached scsi generic sg0 type 5
[    3.170048] ata7: softreset failed (device not ready)
[    3.170055] ata4: softreset failed (device not ready)
[    3.170058] ata4: applying SB600 PMP SRST workaround and retrying
[    3.170081] ata6: softreset failed (device not ready)
[    3.170084] ata6: applying SB600 PMP SRST workaround and retrying
[    3.170111] ata8: softreset failed (device not ready)
[    3.170114] ata8: applying SB600 PMP SRST workaround and retrying
[    3.170141] ata5: softreset failed (device not ready)
[    3.170144] ata5: applying SB600 PMP SRST workaround and retrying
[    3.180021] ata7: applying SB600 PMP SRST workaround and retrying
[    3.350064] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.350068] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.350098] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.350129] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.372764] ata5.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.372766] ata5.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.373859] ata5.00: configured for UDMA/133
[    3.374992] ata4.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.374994] ata4.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.376093] ata4.00: configured for UDMA/133
[    3.377275] ata6.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.377277] ata6.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.378371] ata6.00: configured for UDMA/133
[    3.440103] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.461124] ata8.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.468367] ata8.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.471836] ata7.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.471838] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.472813] ata7.00: configured for UDMA/133
[    3.495903] ata8.00: configured for UDMA/133
[    3.620037] ata3: softreset failed (device not ready)
[    3.625291] ata3: applying SB600 PMP SRST workaround and retrying
[    3.800046] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.833760] ata3.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.840997] ata3.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.849458] ata3.00: configured for UDMA/133
[    3.880141] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.888541] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    3.888547] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.888590] sd 2:0:0:0: [sda] Write Protect is off
[    3.888592] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.888613] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.888774]  sda: sda1 sda2 sda3
[    3.919815] scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.919919] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.933204] sd 3:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.933221] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    3.933354] scsi 4:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.933470] sd 4:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.933496] sd 4:0:0:0: Attached scsi generic sg3 type 0
[    3.933516] sd 4:0:0:0: [sdc] Write Protect is off
[    3.933518] sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    3.933594] scsi 5:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.933694] sd 5:0:0:0: [sdd] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.933706] sd 5:0:0:0: Attached scsi generic sg4 type 0
[    3.933744] sd 5:0:0:0: [sdd] Write Protect is off
[    3.933746] sd 5:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    3.933757] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.933770] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.933925]  sdc:
[    3.933953]  sdd:
[    3.933992] scsi 6:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.934086] sd 6:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.934101] sd 6:0:0:0: Attached scsi generic sg5 type 0
[    3.934127] sd 6:0:0:0: [sde] Write Protect is off
[    3.934129] sd 6:0:0:0: [sde] Mode Sense: 00 3a 00 00
[    3.934181] scsi 7:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.934275] sd 7:0:0:0: [sdf] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.934294] sd 7:0:0:0: Attached scsi generic sg6 type 0
[    3.934317] sd 7:0:0:0: [sdf] Write Protect is off
[    3.934318] sd 7:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[    3.934362] sd 7:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.934367] sd 6:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.934503]  sdf:
[    3.934513]  sde: sdc1
[    4.095402]  sdf1
[    4.095437] sd 3:0:0:0: [sdb] Write Protect is off
[    4.095439] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.095460] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.100120] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[001ab1780000241d]
[    4.101251]  sdf2 sdf3
[    4.114440]  sdd1
[    4.116485]  sde1 sde2 sde3
[    4.119659]  sdb:
[    4.119676] sd 6:0:0:0: [sde] Attached SCSI disk
[    4.119744] sd 7:0:0:0: [sdf] Attached SCSI disk
[    4.131130] sd 4:0:0:0: [sdc] Attached SCSI disk
[    4.131173] sd 5:0:0:0: [sdd] Attached SCSI disk
[    4.157276]  sdb1 sdb2 sdb3
[    4.160380] sd 3:0:0:0: [sdb] Attached SCSI disk
[    4.172851] md: raid1 personality registered for level 1
[    4.184930] async_tx: api initialized (async)
[    4.190811] xor: automatically using best checksumming function: generic_sse
[    4.240015]    generic_sse:  4929.200 MB/sec
[    4.243771] xor: using function: generic_sse (4929.200 MB/sec)
[    4.318454] md: bind<sdd1>
[    4.325096] md: bind<sdc1>
[    4.331112] raid1: raid set md3 active with 2 out of 2 mirrors
[    4.337250] md3: detected capacity change from 0 to 250056605696
[    4.345257] md: bind<sdb1>
[    4.349354] md: bind<sda2>
[    4.351176]  md3: unknown partition table
[    4.357714] md: bind<sda3>
[    4.416566] md: bind<sdf1>
[    4.420029] md: bind<sde2>
[    4.420034] raid6: int64x1   2508 MB/s
[    4.427111] md: bind<sde3>
[    4.447733] md: bind<sdf2>
[    4.451271] md: bind<sdf3>
[    4.456521] raid1: raid set md6 active with 2 out of 2 mirrors
[    4.462518] md6: detected capacity change from 0 to 483605217280
[    4.469274] raid1: raid set md5 active with 2 out of 2 mirrors
[    4.475269] md5: detected capacity change from 0 to 15998058496
[    4.482757]  md6:
[    4.484562]  md5: unknown partition table
[    4.489284]  unknown partition table
[    4.545684] md: bind<sda1>
[    4.549068] md: bind<sdb2>
[    4.590007] raid6: int64x2   3502 MB/s
[    4.760024] raid6: int64x4   2689 MB/s
[    4.930014] raid6: int64x8   2353 MB/s
[    5.100021] raid6: sse2x1    3317 MB/s
[    5.270015] raid6: sse2x2    5026 MB/s
[    5.448014] raid6: sse2x4    5248 MB/s
[    5.451883] raid6: using algorithm sse2x4 (5248 MB/s)
[    5.457372] raid1: raid set md1 active with 2 out of 2 mirrors
[    5.457379] raid1: raid set md0 active with 2 out of 2 mirrors
[    5.457404] md0: detected capacity change from 0 to 526319616
[    5.472698] md: raid6 personality registered for level 6
[    5.472700] md: raid5 personality registered for level 5
[    5.472702] md: raid4 personality registered for level 4
[    5.492106] md1: detected capacity change from 0 to 19329318912
[    5.499096] md: bind<sdb3>
[    5.502037] md: bind<sde1>
[    5.505356]  md0:
[    5.509949]  md1: unknown partition table
[    5.514663] raid1: raid set md4 active with 2 out of 2 mirrors
[    5.520610] md4: detected capacity change from 0 to 501612544
[    5.529304]  md4: unknown partition table
[    5.534764] raid1: raid set md2 active with 2 out of 2 mirrors
[    5.540914] md2: detected capacity change from 0 to 230200836096
[    5.549484]  md2: unknown partition table
[    5.557663] md: raid10 personality registered for level 10
[    5.985409] EXT4-fs (dm-1): INFO: recovery required on readonly filesystem
[    5.992487] EXT4-fs (dm-1): write access will be enabled during recovery
[    6.998484] EXT4-fs (dm-1): recovery complete
[    7.027954] EXT4-fs (dm-1): mounted filesystem with ordered data mode
[   13.361407] udev: starting version 151
[   13.438708] Adding 15622136k swap on /dev/mapper/vg--grp--01--23--02--1-LogVol00.  Priority:-1 extents:1 across:15622136k 
[   13.498375] Adding 18841592k swap on /dev/mapper/VolGroup00-LogVol00.  Priority:-2 extents:1 across:18841592k 
[   13.659203] ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
[   13.660808] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.880296] shpchp 0000:00:01.0: HPC vendor_id 1022 device_id 9602 ss_vid 0 ss_did 0
[   13.880301] shpchp 0000:00:01.0: Cannot reserve MMIO region
[   13.886202] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   14.018078] EDAC MC: Ver: 2.1.0 May  6 2010
[   14.453529] EDAC amd64_edac:  Ver: 3.2.0 May  6 2010
[   14.453645] EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3).
[   14.453661] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[   14.453662]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[   14.453664]  (Note that use of the override may cause unknown side effects.)
[   14.453681] amd64_edac: probe of 0000:00:18.2 failed with error -22
[   14.959017] Bridge firewalling registered
[   14.969220] device eth0 entered promiscuous mode
[   14.971470] r8169: eth0: link up
[   14.971485] r8169: eth0: link up
[   14.980755] br0: port 1(eth0) entering learning state
[   15.211165] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[   15.258949] lp: driver loaded but no devices found
[   15.287297] kjournald starting.  Commit interval 5 seconds
[   15.313133] EXT3 FS on md4, internal journal
[   15.313141] EXT3-fs: mounted filesystem with ordered data mode.
[   15.423576] [drm] Initialized drm 1.1.0 20060810
[   15.480316] ttyS0: LSR safety check engaged!
[   15.481673] ttyS0: LSR safety check engaged!

[-- Attachment #3: xm_dmesg.txt --]
[-- Type: text/plain, Size: 32245 bytes --]

 banks
[    0.060014] Performance Events: AMD PMU driver.
[    0.064781] ------------[ cut here ]------------
[    0.069587] WARNING: at arch/x86/xen/enlighten.c:731 xen_apic_write+0x1a/0x20()
[    0.070000] Hardware name: GA-MA790GP-UD4H
[    0.070000] Modules linked in:
[    0.070000] Pid: 0, comm: swapper Not tainted 2.6.32.12 #2
[    0.070000] Call Trace:
[    0.070000]  [<ffffffff8106605b>] warn_slowpath_common+0x7b/0xc0
[    0.070000]  [<ffffffff810660b4>] warn_slowpath_null+0x14/0x20
[    0.070000]  [<ffffffff8100b70a>] xen_apic_write+0x1a/0x20
[    0.070000]  [<ffffffff81021c76>] perf_events_lapic_init+0x36/0x40
[    0.070000]  [<ffffffff81886553>] init_hw_perf_events+0x34f/0x3ec
[    0.070000]  [<ffffffff81886175>] identify_boot_cpu+0x3c/0x3e
[    0.070000]  [<ffffffff818861e0>] check_bugs+0x9/0x2d
[    0.070000]  [<ffffffff8187dd7e>] start_kernel+0x3e3/0x403
[    0.070000]  [<ffffffff8187d33a>] x86_64_start_reservations+0x125/0x129
[    0.070000]  [<ffffffff818812f7>] xen_start_kernel+0x6ab/0x6b2
[    0.070000] ---[ end trace a7919e7f17c0a725 ]---
[    0.070000] ... version:                0
[    0.070000] ... bit width:              48
[    0.070000] ... generic registers:      4
[    0.070000] ... value mask:             0000ffffffffffff
[    0.070000] ... max period:             00007fffffffffff
[    0.070000] ... fixed-purpose events:   0
[    0.070000] ... event mask:             000000000000000f
[    0.070000] SMP alternatives: switching to UP code
[    0.070000] ACPI: Core revision 20090903
[    0.080046] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.085920] ftrace: allocating 21787 entries in 86 pages
[    0.090080] cpu 0 spinlock event irq 1278
[    0.094470] installing Xen timer for CPU 1
[    0.099513] cpu 1 spinlock event irq 1272
[    0.100021] SMP alternatives: switching to SMP code
[    0.000016] Initializing CPU#1
[    0.000064] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000066] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000068] CPU 1/0x0 -> Node 0
[    0.000070] CPU: Physical Processor ID: 0
[    0.000071] CPU: Processor Core ID: 1
[    0.110201] installing Xen timer for CPU 2
[    0.120012] cpu 2 spinlock event irq 1266
[    0.000014] Initializing CPU#2
[    0.000068] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000070] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000072] CPU 2/0x0 -> Node 0
[    0.000074] CPU: Physical Processor ID: 0
[    0.000075] CPU: Processor Core ID: 3
[    0.124355] installing Xen timer for CPU 3
[    0.130012] cpu 3 spinlock event irq 1260
[    0.000017] Initializing CPU#3
[    0.000063] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000065] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000067] CPU 3/0x0 -> Node 0
[    0.000069] CPU: Physical Processor ID: 0
[    0.000070] CPU: Processor Core ID: 2
[    0.134404] Brought up 4 CPUs
[    0.140079] devtmpfs: initialized
[    0.144569] Grant table initialized
[    0.144569] regulator: core version 0.5
[    0.147695] Time:  1:59:06  Date: 05/07/10
[    0.150034] NET: Registered protocol family 16
[    0.154740] TOM: 00000000d0000000 aka 3328M
[    0.154740] TOM2: 0000000230000000 aka 8960M
[    0.160032] ACPI: bus type pci registered
[    0.164286] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.170000] PCI: MCFG area at e0000000 reserved in E820
[    0.199854] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.200000] PCI: Using configuration type 1 for base access
[    0.200595] bio: create slab <bio-0> at 0
[    0.204195] ERROR: Unable to locate IOAPIC for GSI 9
[    0.219602] ACPI: Interpreter enabled
[    0.220000] ACPI: (supports S0 S1 S4 S5)
[    0.220000] ACPI: Using IOAPIC for interrupt routing
[    0.224965] ACPI: No dock devices found.
[    0.229147] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.230000] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.230000] pci 0000:00:0a.0: PME# disabled
[    0.230421] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.236587] pci 0000:00:12.2: PME# disabled
[    0.240000] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.240000] pci 0000:00:13.2: PME# disabled
[    0.240224] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.246559] pci 0000:00:14.2: PME# disabled
[    0.250529] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.257361] pci 0000:02:00.0: PME# disabled
[    0.260000] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.260000] pci 0000:03:0e.0: PME# disabled
[    0.260000] pci 0000:00:14.4: transparent bridge
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:0a.0
(XEN) PCI add device 00:11.0
(XEN) PCI add device 00:12.0
(XEN) PCI add device 00:12.1
(XEN) PCI add device 00:12.2
(XEN) PCI add device 00:13.0
(XEN) PCI add device 00:13.1
(XEN) PCI add device 00:13.2
(XEN) PCI add device 00:14.0
(XEN) PCI add device 00:14.1
(XEN) PCI add device 00:14.2
(XEN) PCI add device 00:14.3
(XEN) PCI add device 00:14.4
(XEN) PCI add device 00:14.5
(XEN) PCI add device 00:18.0
(XEN) PCI add device 00:18.1
(XEN) PCI add device 00:18.2
(XEN) PCI add device 00:18.3
(XEN) PCI add device 00:18.4
(XEN) PCI add device 01:05.0
(XEN) PCI add device 01:05.1
(XEN) PCI add device 02:00.0
(XEN) PCI add device 03:0e.0
[    0.335522] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.340085] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.347747] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.350083] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.357756] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.360082] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.367757] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.370089] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.377884] xen_balloon: Initialising balloon driver with page order 0.
[    0.380067] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.388495] vgaarb: loaded
[    0.390098] SCSI subsystem initialized
[    0.393999] usbcore: registered new interface driver usbfs
[    0.395663] usbcore: registered new interface driver hub
[    0.400026] usbcore: registered new device driver usb
[    0.405203] ACPI: WMI: Mapper loaded
[    0.405203] PCI: Using ACPI for IRQ routing
[    0.408115] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    0.410000] pci 0000:00:00.0: BAR 3: can't allocate resource
[    0.410074] NetLabel: Initializing
[    0.413606] NetLabel:  domain hash size = 128
[    0.418147] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.420000] NetLabel:  unlabeled traffic allowed by default
[    0.420057] Switching to clocksource xen
[    0.424063] pnp: PnP ACPI init
[    0.424712] ACPI: bus type pnp registered
[    0.429895] xen_allocate_pirq: returning irq 8 for gsi 8
[    0.435403] Already setup the GSI :8
[    0.439333] xen_allocate_pirq: returning irq 13 for gsi 13
[    0.445086] Already setup the GSI :13
[    0.449472] xen_allocate_pirq: returning irq 4 for gsi 4
[    0.454973] Already setup the GSI :4
[    0.458855] xen_allocate_pirq: returning irq 12 for gsi 12
[    0.464523] Already setup the GSI :12
[    0.468377] xen_allocate_pirq: returning irq 1 for gsi 1
[    0.473931] Already setup the GSI :1
[    0.478040] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483927] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.539754] pnp: PnP ACPI: found 13 devices
[    0.544115] ACPI: ACPI bus type pnp unregistered
[    0.548974] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.555504] system 00:01: ioport range 0x220-0x225 has been reserved
[    0.558962] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.568623] system 00:02: ioport range 0x4100-0x411f has been reserved
[    0.575489] system 00:02: ioport range 0x228-0x22f has been reserved
[    0.578618] system 00:02: ioport range 0x40b-0x40b has been reserved
[    0.578618] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    0.578618] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    0.578618] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    0.578618] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    0.578618] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    0.578618] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    0.578618] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    0.578618] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    0.578618] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    0.578618] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    0.578618] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    0.578618] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    0.578618] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    0.674811] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    0.681421] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.688828] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    0.691414] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    0.691414] system 00:0c: iomem range 0xafef0000-0xcfeeffff has been reserved
[    0.691414] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.691414] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.691414] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    0.737734] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    0.744653] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.745320] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    0.745320] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    0.745320] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.745320] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    0.745320] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    0.745320] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    0.745320] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    0.745320] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    0.745320] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    0.745320] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    0.745320] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    0.822188] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.829172] NET: Registered protocol family 2
[    0.833860] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.841902] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[    0.850288] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.857528] TCP: Hash tables configured (established 131072 bind 65536)
[    0.860007] TCP reno registered
[    0.860007] NET: Registered protocol family 1
[    1.020202] Trying to unpack rootfs image as initramfs...
[    1.228490] Freeing initrd memory: 226749k freed
[    1.326952] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.330012] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    1.330012] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    1.348873] Scanning for low memory corruption every 60 seconds
[    1.355204] audit: initializing netlink socket (disabled)
[    1.360772] type=2000 audit(1273197548.595:1): initialized
[    1.372676] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.380655] VFS: Disk quotas dquot_6.5.2
[    1.384780] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.391988] fuse init (API version 7.13)
[    1.396101] msgmni has been set to 1860
[    1.400479] alg: No test for stdrng (krng)
[    1.404681] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.412402] io scheduler noop registered
[    1.414609] io scheduler anticipatory registered
[    1.414609] io scheduler deadline registered (default)
[    1.426833] io scheduler cfq registered
[    1.431267] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.437034] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.444020] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.452565] ACPI: Power Button [PWRB]
[    1.456501] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.464149] ACPI: Power Button [PWRF]
[    1.470196] Event-channel device installed.
[    1.478352] blktap_device_init: blktap device major 253
[    1.483680] blktap_ring_init: blktap ring major: 252
[    1.489641] registering netback
[    1.492961] xen-platform-pcifailed backend handshake: unrecognised magic value
[    1.501789] hpet_acpi_add: no address or irqs in _CRS
[    1.506963] Linux agpgart interface v0.103
[    1.511273] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.518864] brd: module loaded
[    1.522389] loop: module loaded
[    1.525723] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    1.534035] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.541900] Fixed MDIO Bus: probed
[    1.545475] PPP generic driver version 2.4.2
[    1.550010] tun: Universal TUN/TAP device driver, 1.6
[    1.555212] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.561802] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.568707] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.576085] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    1.581487] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.589280] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    1.591459] ehci_hcd 0000:00:12.2: debug port 1
[    1.591459] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    1.607704] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.613725] usb usb1: configuration #1 chosen from 1 choice
[    1.619454] hub 1-0:1.0: USB hub found
[    1.623362] hub 1-0:1.0: 6 ports detected
[    1.627738] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.635094] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    1.637705] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.637705] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    1.637705] ehci_hcd 0000:00:13.2: debug port 1
[    1.637705] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    1.666676] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.672776] usb usb2: configuration #1 chosen from 1 choice
[    1.678600] hub 2-0:1.0: USB hub found
[    1.682590] hub 2-0:1.0: 6 ports detected
[    1.686883] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.693331] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.699037] Already setup the GSI :16
[    1.702911] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.710299] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    1.715794] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.720280] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    1.774119] usb usb3: configuration #1 chosen from 1 choice
[    1.779908] hub 3-0:1.0: USB hub found
[    1.783869] hub 3-0:1.0: 3 ports detected
[    1.788161] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.793818] Already setup the GSI :16
[    1.797706] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.803812] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    1.810768] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    1.818532] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    1.874118] usb usb4: configuration #1 chosen from 1 choice
[    1.879935] hub 4-0:1.0: USB hub found
[    1.883921] hub 4-0:1.0: 3 ports detected
[    1.888198] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.893852] Already setup the GSI :18
[    1.897643] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.903849] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    1.910616] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    1.918397] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    1.974123] usb usb5: configuration #1 chosen from 1 choice
[    1.979969] hub 5-0:1.0: USB hub found
[    1.983961] hub 5-0:1.0: 3 ports detected
[    1.988318] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.993975] Already setup the GSI :18
[    1.997778] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.003970] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    2.003970] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    2.003970] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.054108] usb usb6: configuration #1 chosen from 1 choice
[    2.059975] hub 6-0:1.0: USB hub found
[    2.063928] hub 6-0:1.0: 3 ports detected
[    2.068239] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.073960] Already setup the GSI :18
[    2.077840] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.083956] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.090898] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    2.098676] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.154110] usb usb7: configuration #1 chosen from 1 choice
[    2.159892] hub 7-0:1.0: USB hub found
[    2.163779] hub 7-0:1.0: 2 ports detected
[    2.167990] uhci_hcd: USB Universal Host Controller Interface driver
[    2.174662] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.183025] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.188162] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.193425] mice: PS/2 mouse device common for all mice
[    2.198955] rtc_cmos 00:05: RTC can wake from S4
[    2.203352] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.210117] rtc0: alarms up to one month, 242 bytes nvram
[    2.215877] device-mapper: uevent: version 1.0.3
[    2.220774] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.229572] device-mapper: multipath: version 1.1.0 loaded
[    2.235205] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.242372] cpuidle: using governor ladder
[    2.246602] cpuidle: using governor menu
[    2.251825] TCP cubic registered
[    2.255316] NET: Registered protocol family 10
[    2.260025] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.260360] lo: Disabled Privacy Extensions
[    2.260601] NET: Registered protocol family 17
[    2.278060] powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor processors (4 cpu cores) (version 2.20.00)
[    2.280003] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found.
[    2.280003] [Firmware Bug]: powernow-k8: Try again with latest BIOS.
[    2.302944] registered taskstats version 1
[    2.307635]   Magic number: 10:64:963
[    2.311561] rtc_cmos 00:05: setting system clock to 2010-05-07 01:59:09 UTC (1273197549)
[    2.319921] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.321532] EDD information not available.
[    2.330670] Freeing unused kernel memory: 800k freed
[    2.336094] Write protecting the kernel read-only data: 7812k
[    2.377901] udev: starting version 151
[    2.434300] scsi0 : pata_atiixp
[    2.437684] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.443615] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.449309] Already setup the GSI :18
[    2.453116] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.461073] eth0: RTL8168c/8111c at 0xffffc900001ea000, 00:24:1d:19:05:df, XID 1c4000c0 IRQ 1250
[    2.473401] scsi1 : pata_atiixp
[    2.474826] md: linear personality registered for level -1
[    2.502807] md: multipath personality registered for level -4
[    2.519018] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[    2.526363] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[    2.533997] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.543454] xen_allocate_pirq: returning irq 22 for gsi 22
[    2.549071] Already setup the GSI :22
[    2.551284] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.560166] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.568601] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    2.578077] scsi2 : ahci
[    2.580845] scsi3 : ahci
[    2.582197] md: raid0 personality registered for level 0
[    2.589128] scsi4 : ahci
[    2.591862] scsi5 : ahci
[    2.594547] scsi6 : ahci
[    2.597269] scsi7 : ahci
[    2.600088] ata3: SATA max UDMA/133 irq_stat 0x00400000, PHY RDY changed irq 22
[    2.607669] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    2.610003] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    2.610003] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    2.610003] ata7: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    2.610003] ata8: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    2.646400] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[fdcff000-fdcff7ff]  Max Packet=[2048]  IR/IT contexts=[4/8]
[    2.730506] ata1.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
[    2.770452] ata1.01: configured for UDMA/33
[    2.779025] scsi 0:0:1:0: CD-ROM            HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[    2.795469] sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    2.801673] Uniform CD-ROM driver Revision: 3.20
[    2.806537] sr 0:0:1:0: Attached scsi generic sg0 type 5
[    3.170048] ata7: softreset failed (device not ready)
[    3.170055] ata4: softreset failed (device not ready)
[    3.170058] ata4: applying SB600 PMP SRST workaround and retrying
[    3.170081] ata6: softreset failed (device not ready)
[    3.170084] ata6: applying SB600 PMP SRST workaround and retrying
[    3.170111] ata8: softreset failed (device not ready)
[    3.170114] ata8: applying SB600 PMP SRST workaround and retrying
[    3.170141] ata5: softreset failed (device not ready)
[    3.170144] ata5: applying SB600 PMP SRST workaround and retrying
[    3.180021] ata7: applying SB600 PMP SRST workaround and retrying
[    3.350064] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.350068] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.350098] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.350129] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.372764] ata5.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.372766] ata5.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.373859] ata5.00: configured for UDMA/133
[    3.374992] ata4.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.374994] ata4.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.376093] ata4.00: configured for UDMA/133
[    3.377275] ata6.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.377277] ata6.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.378371] ata6.00: configured for UDMA/133
[    3.440103] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.461124] ata8.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.468367] ata8.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.471836] ata7.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.471838] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.472813] ata7.00: configured for UDMA/133
[    3.495903] ata8.00: configured for UDMA/133
[    3.620037] ata3: softreset failed (device not ready)
[    3.625291] ata3: applying SB600 PMP SRST workaround and retrying
[    3.800046] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.833760] ata3.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.840997] ata3.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.849458] ata3.00: configured for UDMA/133
[    3.880141] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.888541] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    3.888547] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.888590] sd 2:0:0:0: [sda] Write Protect is off
[    3.888613] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.888774]  sda: sda1 sda2 sda3
[    3.919815] scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.919919] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.933204] sd 3:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.933221] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    3.933354] scsi 4:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.933470] sd 4:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.933496] sd 4:0:0:0: Attached scsi generic sg3 type 0
[    3.933516] sd 4:0:0:0: [sdc] Write Protect is off
[    3.933594] scsi 5:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.933694] sd 5:0:0:0: [sdd] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.933706] sd 5:0:0:0: Attached scsi generic sg4 type 0
[    3.933744] sd 5:0:0:0: [sdd] Write Protect is off
[    3.933757] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.933770] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.933925]  sdc:
[    3.933953]  sdd:
[    3.933992] scsi 6:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.934086] sd 6:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.934101] sd 6:0:0:0: Attached scsi generic sg5 type 0
[    3.934127] sd 6:0:0:0: [sde] Write Protect is off
[    3.934181] scsi 7:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.934275] sd 7:0:0:0: [sdf] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.934294] sd 7:0:0:0: Attached scsi generic sg6 type 0
[    3.934317] sd 7:0:0:0: [sdf] Write Protect is off
[    3.934362] sd 7:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.934367] sd 6:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.934503]  sdf:
[    3.934513]  sde: sdc1
[    4.095402]  sdf1
[    4.095437] sd 3:0:0:0: [sdb] Write Protect is off
[    4.095460] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.101251]  sdf2 sdf3
[    4.114440]  sdd1
[    4.116485]  sde1 sde2 sde3
[    4.119659]  sdb:
[    4.119676] sd 6:0:0:0: [sde] Attached SCSI disk
[    4.119744] sd 7:0:0:0: [sdf] Attached SCSI disk
[    4.131130] sd 4:0:0:0: [sdc] Attached SCSI disk
[    4.131173] sd 5:0:0:0: [sdd] Attached SCSI disk
[    4.157276]  sdb1 sdb2 sdb3
[    4.160380] sd 3:0:0:0: [sdb] Attached SCSI disk
[    4.172851] md: raid1 personality registered for level 1
[    4.184930] async_tx: api initialized (async)
[    4.190811] xor: automatically using best checksumming function: generic_sse
[    4.240015]    generic_sse:  4929.200 MB/sec
[    4.243771] xor: using function: generic_sse (4929.200 MB/sec)
[    4.318454] md: bind<sdd1>
[    4.325096] md: bind<sdc1>
[    4.331112] raid1: raid set md3 active with 2 out of 2 mirrors
[    4.337250] md3: detected capacity change from 0 to 250056605696
[    4.345257] md: bind<sdb1>
[    4.349354] md: bind<sda2>
[    4.351176]  md3: unknown partition table
[    4.357714] md: bind<sda3>
[    4.416566] md: bind<sdf1>
[    4.420029] md: bind<sde2>
[    4.420034] raid6: int64x1   2508 MB/s
[    4.427111] md: bind<sde3>
[    4.447733] md: bind<sdf2>
[    4.451271] md: bind<sdf3>
[    4.456521] raid1: raid set md6 active with 2 out of 2 mirrors
[    4.462518] md6: detected capacity change from 0 to 483605217280
[    4.469274] raid1: raid set md5 active with 2 out of 2 mirrors
[    4.475269] md5: detected capacity change from 0 to 15998058496
[    4.482757]  md6:
[    4.484562]  md5: unknown partition table
[    4.489284]  unknown partition table
[    4.545684] md: bind<sda1>
[    4.549068] md: bind<sdb2>
[    4.590007] raid6: int64x2   3502 MB/s
[    4.760024] raid6: int64x4   2689 MB/s
[    4.930014] raid6: int64x8   2353 MB/s
[    5.100021] raid6: sse2x1    3317 MB/s
[    5.270015] raid6: sse2x2    5026 MB/s
[    5.448014] raid6: sse2x4    5248 MB/s
[    5.451883] raid6: using algorithm sse2x4 (5248 MB/s)
[    5.457372] raid1: raid set md1 active with 2 out of 2 mirrors
[    5.457379] raid1: raid set md0 active with 2 out of 2 mirrors
[    5.457404] md0: detected capacity change from 0 to 526319616
[    5.472698] md: raid6 personality registered for level 6
[    5.472700] md: raid5 personality registered for level 5
[    5.472702] md: raid4 personality registered for level 4
[    5.492106] md1: detected capacity change from 0 to 19329318912
[    5.499096] md: bind<sdb3>
[    5.502037] md: bind<sde1>
[    5.505356]  md0:
[    5.509949]  md1: unknown partition table
[    5.514663] raid1: raid set md4 active with 2 out of 2 mirrors
[    5.520610] md4: detected capacity change from 0 to 501612544
[    5.529304]  md4: unknown partition table
[    5.534764] raid1: raid set md2 active with 2 out of 2 mirrors
[    5.540914] md2: detected capacity change from 0 to 230200836096
[    5.549484]  md2: unknown partition table
[    5.557663] md: raid10 personality registered for level 10
[    5.985409] EXT4-fs (dm-1): INFO: recovery required on readonly filesystem
[    5.992487] EXT4-fs (dm-1): write access will be enabled during recovery
[    6.998484] EXT4-fs (dm-1): recovery complete
[    7.027954] EXT4-fs (dm-1): mounted filesystem with ordered data mode
[   13.659203] ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
[   13.880301] shpchp 0000:00:01.0: Cannot reserve MMIO region
init: procps main process (565) terminated with status 255

fsck from util-linux-ng 2.17.2
fsck from util-linux-ng 2.17.2
init: eucalyptus-network (lo) main process (1048) killed by TERM signal

init: eucalyptus-network (eth0) main process (1172) killed by TERM signal

/dev/mapper/vg--grp--01--23--02--2-LogVol00: clean, 511633/29523968 files, 16461856/118067200 blocks
/dev/md4: clean, 224/122880 files, 280736/489856 blocks
Loading the saved-state of the serial devices... 
/dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
 * Setting sensors limits       ^[[80G 
^[[74G[ OK ]

** (process:1467): WARNING **: Could not parse config file: Could not open config file /etc/nbd-server/config.
** Message: Nothing to do! Bye!
 nbd-server.
 * Starting internet superserver inetd       ^[[80G 
^[[74G[ OK ]
 * Starting Postfix Mail Transport Agent postfix       ^[[80G 
^[[74G[ OK ]
 ^[[33m*^[[39;49m Speech-dispatcher configured for user sessions
[   25.731427] XENBUS: Unable to read cpu state
[   25.742015] XENBUS: Unable to read cpu state
[   25.749931] XENBUS: Unable to read cpu state
[   25.754457] XENBUS: Unable to read cpu state

Ubuntu lucid (development branch) grp-01-23-02 hvc0

grp-01-23-02 login: [ 8589.000015] NOHZ: local_softirq_pending 100

[-- Attachment #4: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07 16:44                             ` Gerry Reno
@ 2010-05-07 21:53                               ` Gerry Reno
  2010-05-08  7:20                                 ` Boris Derzhavets
  2010-05-10 14:10                                 ` Konrad Rzeszutek Wilk
  0 siblings, 2 replies; 64+ messages in thread
From: Gerry Reno @ 2010-05-07 21:53 UTC (permalink / raw)
  To: xen-devel


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

On 05/07/2010 12:44 PM, Gerry Reno wrote:
> On 05/07/2010 02:21 AM, Boris Derzhavets wrote:
>>
>> >> /etc/xen/scripts/network-bridge: line 240: "sigerr" command not found.
>>
>> apt-get install bridge-utils ( has been done ?)
>> If yes, you could try remove br0 declaration from /etc/network/interfaces
>> and edit properly /etc/xen/xend-config.sxp . Xen should bring up bridge
>> with no pain after reboot. Just service xend restart might not help.
>> I got this error this error as reaction on any mistake in Xen network 
>> config
>> on Lucid.
>>
>> Boris.
>> P.S. you could keep br0 declaration and commented out network 
>> bridging setup
>> in /etc/xen/xend-config.sxp. It works as well.
>>
>>
>>
>> --- On *Fri, 5/7/10, Pasi Kärkkäinen /<pasik@iki.fi>/* wrote:
>>
>>
>>     From: Pasi Kärkkäinen <pasik@iki.fi>
>>     Subject: Re: [Xen-devel] AMD Phenom II 940: mm/vmalloc.c:110
>>     vmap_page_range_noflush
>>     To: "Gerry Reno" <greno@verizon.net>
>>     Cc: xen-devel@lists.xensource.com, "Konrad Rzeszutek Wilk"
>>     <konrad.wilk@oracle.com>
>>     Date: Friday, May 7, 2010, 2:05 AM
>>
>>     On Thu, May 06, 2010 at 10:22:03PM -0400, Gerry Reno wrote:
>>     > On 05/06/2010 08:21 PM, Gerry Reno wrote:
>>     >> Ok, I tested with the new 2.6.32.12:  (.config same)
>>     >>
>>     >> Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12
>>     >>
>>     >> Still pv_ops dom0 is not working properly.
>>     >> There are still call trace and other errors.  The kernel does
>>     boot up
>>     >> but it takes again a long time to get the login prompt (about
>>     3 mins).
>>     >> This is far longer than when I used 2.6.31.6 pv_ops dom0. 
>>     Networking
>>     >> does not start properly (only see 'lo' and 'virbr0'), so I
>>     have to
>>     >> restart it manually and then I see my bridge 'br0' and 'eth0'.
>>     >> Can't find device "br0"
>>     >> /etc/xen/scripts/network-bridge: line 240: "sigerr" command
>>     not found.
>>     >> And it is trying unsuccessfully to start some laptop feature like
>>     >> S99powernap (unknown job) and also S28-libvirt-bin fails (maybe
>>     >> network related?).
>>     >>
>>     >>
>>     >> Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):
>>     >>
>>     >> Now the straight linux kernel (no xen dom0) boots right up and
>>     goes to
>>     >> login prompt in normal timeframe.  Networking starts correctly.
>>     >> Things look pretty normal.
>>     >>
>>     >>
>>     >> Observation:
>>     >> I'm getting slightly different output on console and serial
>>     console.
>>     >> Some errors show on one but not the other.  Shouldn't these be
>>     >> identical?
>>     >>
>>     >>
>>     >> I'm attaching both serial console outputs.
>>     >>
>>     >> menu.lst is same as before (just .12 instead of .10)
>>     >>
>>     >> -Gerry
>>     >>
>>     >>
>>     > And I'm attaching the syslog from Case 1 (pv_ops dom0).
>>     >
>>
>>     You should be posting two things:
>>
>>     1) xm dmesg
>>     2) dmesg
>>
>>     Aka the full boot log, from both Xen hypervisor and dom0 Linux
>>     kernel.
>>
>>     -- Pasi
>>
>>
> Pasi, I am attaching 'xm dmesg' and 'dmesg'.
>
> Boris, bridge-utils is installed and latest.  I will try some of these 
> other things you suggested.
>
> -Gerry

Ok, I tried to adjust bridge parameters and found that I can finally get 
pv_ops dom0 to boot in normal timeframe if I comment out all bridge 
related statements in /etc/xen/xend-config.sxp.  Before with 2.6.31.6 I 
had (network-script network-bridge) and also tried (network-script 
'network-bridge bridge=br0') but these do not work with 2.6.32.12.

However, there are still errors in the pv_ops dom0 2.6.32.12 console 
output so I'm attaching the output so someone could see if they are 
serious or if there are workarounds to improve things.  I'm seeing 
things like 'unable to locate IOAPIC for xxx', call trace from 
enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz 
processor.'(a 1.2 TeraHz processor??? - the processor is actually a 3.1 
GHz processor), 'No compatible ACPI _PSS objects found.'.

Plus, why do I see slightly different outputs on the consoles?  Some 
errors only show on one of the consoles but not the other.


-Gerry


[-- Attachment #1.2: Type: text/html, Size: 6163 bytes --]

[-- Attachment #2: AMD_pvops_dom0_console_2.6.32.12_20100507.txt --]
[-- Type: text/plain, Size: 57267 bytes --]

 __  __            _  _    ___   ___              ___  
 \ \/ /___ _ __   | || |  / _ \ / _ \    _ __ ___( _ ) 
  \  // _ \ '_ \  | || |_| | | | | | |__| '__/ __/ _ \ 
  /  \  __/ | | | |__   _| |_| | |_| |__| | | (_| (_) |
 /_/\_\___|_| |_|    |_|(_)___(_)___/   |_|  \___\___/ 
                                                       
(XEN) Xen version 4.0.0-rc8 (root@) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) Sat Apr 24 11:56:47 EDT 2010
(XEN) Latest ChangeSet: Fri Mar 26 10:29:38 2010 +0000 21074:542211ba675c
(XEN) Console output is synchronous.
(XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_rin1
(XEN) Video information:
(XEN)  VGA is text mode 80x50, font 8x8
(XEN)  VBE/DDC methods: V2; EDID transfer time: 1 seconds
(XEN) Disc information:
(XEN)  Found 6 MBR signatures
(XEN)  Found 6 EDD information structures
(XEN) Xen-e820 RAM map:
(XEN)  0000000000000000 - 000000000009f800 (usable)
(XEN)  000000000009f800 - 00000000000a0000 (reserved)
(XEN)  00000000000f0000 - 0000000000100000 (reserved)
(XEN)  0000000000100000 - 00000000afde0000 (usable)
(XEN)  00000000afde0000 - 00000000afde3000 (ACPI NVS)
(XEN)  00000000afde3000 - 00000000afdf0000 (ACPI data)
(XEN)  00000000afdf0000 - 00000000afe00000 (reserved)
(XEN)  00000000e0000000 - 00000000f0000000 (reserved)
(XEN)  00000000fec00000 - 0000000100000000 (reserved)
(XEN)  0000000100000000 - 0000000230000000 (usable)
(XEN) ACPI: RSDP 000F75D0, 0014 (r0 GBT   )
(XEN) ACPI: RSDT AFDE3000, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: FACP AFDE3040, 0074 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: DSDT AFDE30C0, 6E65 (r1 GBT    GBTUACPI     1000 MSFT  3000000)
(XEN) ACPI: FACS AFDE0000, 0040
(XEN) ACPI: HPET AFDEA000, 0038 (r1 GBT    GBTUACPI 42302E31 GBTU       98)
(XEN) ACPI: MCFG AFDEA040, 003C (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) ACPI: TAMG AFDEA080, 030A (r1 GBT    GBT   B0 5455312E BG53450101)
(XEN) ACPI: APIC AFDE9F40, 0084 (r1 GBT    GBTUACPI 42302E31 GBTU  1010101)
(XEN) System RAM: 7433MB (7612036kB)
(XEN) No NUMA configuration found
(XEN) Faking a node at 0000000000000000-0000000230000000
(XEN) Domain heap initialised
(XEN) found SMP MP-table at 000f5c30
(XEN) DMI 2.4 present.
(XEN) Using APIC driver default
(XEN) ACPI: PM-Timer IO Port: 0x4008
(XEN) ACPI: ACPI SLEEP INFO: pm1x_cnt[4004,0], pm1x_evt[4000,0]
(XEN) ACPI:                  wakeup_vec[afde000c], vec_size[20]
(XEN) ACPI: Local APIC address 0xfee00000
(XEN) ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
(XEN) Processor #0 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
(XEN) Processor #1 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
(XEN) Processor #2 0:4 APIC version 16
(XEN) ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
(XEN) Processor #3 0:4 APIC version 16
(XEN) ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
(XEN) ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
(XEN) ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
(XEN) IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) ACPI: IRQ0 used by override.
(XEN) ACPI: IRQ2 used by override.
(XEN) ACPI: IRQ9 used by override.
(XEN) Enabling APIC mode:  Flat.  Using 1 I/O APICs
(XEN) ACPI: HPET id: 0x10b9a201 base: 0xfed00000
(XEN) PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
(XEN) PCI: MCFG area at e0000000 reserved in E820
(XEN) Using ACPI (MADT) for SMP configuration information
(XEN) Using scheduler: SMP Credit Scheduler (credit)
(XEN) Detected 3013.856 MHz processor.
(XEN) Initing memory sharing.
(XEN) HVM: ASIDs enabled.
(XEN) HVM: SVM enabled
(XEN) HVM: Hardware Assisted Paging detected.
(XEN) AMD Fam10h machine check reporting enabled
(XEN) AMD-Vi: IOMMU not found!
(XEN) I/O virtualisation disabled
(XEN) Total of 4 processors activated.
(XEN) ENABLING IO-APIC IRQs
(XEN)  -> Using new ACK method
(XEN) ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) TSC is reliable, synchronization unnecessary
(XEN) Platform timer is 14.318MHz HPET
�(XEN) Allocated console ring of 32 KiB.
(XEN) do_IRQ: 1.231 No irq handler for vector (irq -1)
(XEN) Brought up 4 CPUs
(XEN) do_IRQ: 3.231 No irq handler for vector (irq -1)
(XEN) microcode.c:73:d32767 microcode: CPU1 resumed
(XEN) do_IRQ: 2.231 No irq handler for vector (irq -1)
(XEN) microcode.c:73:d32767 microcode: CPU2 resumed
(XEN) microcode.c:73:d32767 microcode: CPU3 resumed
(XEN) HPET: 4 timers in total, 3 timers will be used for broadcast
(XEN) ACPI sleep modes: S3
(XEN) MCA: Use hw thresholding to adjust polling frequency
(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 -> 0x1a76000
(XEN) PHYSICAL MEMORY ARRANGEMENT:
(XEN)  Dom0 alloc.:   0000000210000000->0000000220000000 (196608 pages to be allocated)
(XEN) VIRTUAL MEMORY ARRANGEMENT:
(XEN)  Loaded kernel: ffffffff81000000->ffffffff81a76000
(XEN)  Init. ramdisk: ffffffff81a76000->ffffffff8f7e5400
(XEN)  Phys-Mach map: ffffffff8f7e6000->ffffffff8f9e6000
(XEN)  Start info:    ffffffff8f9e6000->ffffffff8f9e64b4
(XEN)  Page tables:   ffffffff8f9e7000->ffffffff8fa68000
(XEN)  Boot stack:    ffffffff8fa68000->ffffffff8fa69000
(XEN)  TOTAL:         ffffffff80000000->ffffffff8fc00000
(XEN)  ENTRY ADDRESS: ffffffff8187d200
(XEN) Dom0 has maximum 4 VCPUs
(XEN) Scrubbing Free RAM: ..................................................................done.
(XEN) Xen trace buffers: disabled
(XEN) Std. Loglevel: All
(XEN) Guest Loglevel: All
(XEN) **********************************************
(XEN) ******* WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) ******* This option is intended to aid debugging of Xen by ensuring
(XEN) ******* that all output is synchronously delivered on the serial line.
(XEN) ******* However it can introduce SIGNIFICANT latencies and affect
(XEN) ******* timekeeping. It is NOT recommended for production use!
(XEN) **********************************************
(XEN) 3... 2... 1... 
(XEN) *** Serial input -> DOM0 (type 'CTRL-a' three times to switch input to Xen)
(XEN) Freed 164kB init memory.
mapping kernel into physical memory
Xen: setup ISA identity maps
about to get started...
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.12 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #2 SMP Thu May 0
[    0.000000] Command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen console=hvt
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000] RAMDISK: 01a76000 - 0f7e5400
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9e7000 - 000fa68000]   XEN PAGETABLES ==> [000f9e7000 - 000fa68000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a558e4]    TEXT DATA BSS ==> [0001000000 - 0001a558e4]
[    0.000000]   #4 [0001a76000 - 000f7e5400]          RAMDISK ==> [0001a76000 - 000f7e5400]
[    0.000000]   #5 [000f7e6000 - 000f9e7000]   XEN START INFO ==> [000f7e6000 - 000f9e7000]
[    0.000000]   #6 [0001a56000 - 0001a560fe]              BRK ==> [0001a56000 - 0001a560fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa9e000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen cont
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    0.000000] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c53000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014cb3000 size=32768
[    0.000000] Memory: 725620k/1048576k available (5532k kernel code, 408k absent, 322548k reserved, 3061k data, 800k i)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.32.12 (root@grp-01-23-02) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #2 SMP Thu May 0
[    0.000000] Command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen console=hvt
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] released 0 pages of unused memory
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  Xen: 0000000000000000 - 000000000009f800 (usable)
[    0.000000]  Xen: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  Xen: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  Xen: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  Xen: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  Xen: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  Xen: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  Xen: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] bootconsole [xenboot0] enabled
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x40000 max_arch_pfn = 0x400000000
[    0.000000] x86 PAT enabled: cpu 0, old 0x50100070406, new 0x7010600070106
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009f800 (usable)
[    0.000000]  modified: 000000000009f800 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 0000000040000000 (usable)
[    0.000000]  modified: 00000000afde0000 - 00000000afde3000 (ACPI NVS)
[    0.000000]  modified: 00000000afde3000 - 00000000afdf0000 (ACPI data)
[    0.000000]  modified: 00000000afdf0000 - 00000000afe00000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-0000000040000000
[    0.000000] RAMDISK: 01a76000 - 0f7e5400
[    0.000000] ACPI: RSDP 00000000000f75d0 00014 (v00 GBT   )
[    0.000000] ACPI: RSDT 00000000afde3000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: FACP 00000000afde3040 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: DSDT 00000000afde30c0 06E65 (v01 GBT    GBTUACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 00000000afde0000 00040
[    0.000000] ACPI: HPET 00000000afdea000 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
[    0.000000] ACPI: MCFG 00000000afdea040 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] ACPI: TAMG 00000000afdea080 0030A (v01 GBT    GBT   B0 5455312E BG?? 53450101)
[    0.000000] ACPI: APIC 00000000afde9f40 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000040000000
[    0.000000] Bootmem setup node 0 0000000000000000-0000000040000000
[    0.000000]   NODE_DATA [0000000000008000 - 000000000000cfff]
[    0.000000]   bootmap [000000000000d000 -  0000000000014fff] pages 8
[    0.000000] (8 early reservations) ==> bootmem [0000000000 - 0040000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [000f9e7000 - 000fa68000]   XEN PAGETABLES ==> [000f9e7000 - 000fa68000]
[    0.000000]   #2 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #3 [0001000000 - 0001a558e4]    TEXT DATA BSS ==> [0001000000 - 0001a558e4]
[    0.000000]   #4 [0001a76000 - 000f7e5400]          RAMDISK ==> [0001a76000 - 000f7e5400]
[    0.000000]   #5 [000f7e6000 - 000f9e7000]   XEN START INFO ==> [000f7e6000 - 000f9e7000]
[    0.000000]   #6 [0001a56000 - 0001a560fe]              BRK ==> [0001a56000 - 0001a560fe]
[    0.000000]   #7 [0000100000 - 000027e000]          PGTABLE ==> [0000100000 - 000027e000]
[    0.000000] found SMP MP-table at [ffff8800000f5c30] f5c30
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00100000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00040000
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-0
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 2
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ERROR: Unable to locate IOAPIC for GSI 9
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10b9a201 base: 0xfed00000
[    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:6fde0000)
[    0.000000] Booting paravirtualized kernel on Xen
[    0.000000] Xen version: 4.0.0-rc8 (preserve-AD) (dom0)
[    0.000000] NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 30 pages/cpu @ffff88000fa9e000 s91416 r8192 d23272 u122880
[    0.000000] pcpu-alloc: s91416 r8192 d23272 u122880 alloc=30*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Xen: using vcpu_info placement
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 258073
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: dummy=dummy root=/dev/mapper/vg--grp--01--23--02--2-LogVol00 ro earlyprintk=xen cont
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    0.000000] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    0.000000] xen_swiotlb_fixup: buf=ffff880010c53000 size=67108864
[    0.000000] xen_swiotlb_fixup: buf=ffff880014cb3000 size=32768
[    0.000000] Memory: 725620k/1048576k available (5532k kernel code, 408k absent, 322548k reserved, 3061k data, 800k i)
[    0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:4352 nr_irqs:1280
[    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 low level)
[    0.000000] xen: sci override: source_irq=9 global_irq=9 trigger=c polarity=3
[    0.000000] xen_allocate_pirq: returning irq 9 for gsi 9
[    0.000000] Already setup the GSI :9
[    0.000000] xen: acpi sci 9
[    0.000000] Console: colour VGA+ 80x50
[    0.000000] console [tty0] enabled, bootconsole disabled
[    0.000000] console [hvc0] enabled
[    0.000000] allocated 10485760 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] installing Xen timer for CPU 0
(XEN) traps.c:2309:d0 Domain attempted WRMSR 00000000c0010004 from 00000009:7a005ff8 to 00000000:00000000.
(XEN) traps.c:2309:d0 Domain attempted WRMSR 00000000c0010000 from 00000000:00030076 to 00000000:00430076.
[    0.000000] Detected 1226681.732 MHz processor.
[    0.010000] Calibrating delay loop (skipped), value calculated using timer frequency.. 6027.71 BogoMIPS (lpj=3013856)
[    0.010029] Security Framework initialized
[    0.014339] SELinux:  Disabled at boot.
[    0.018527] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.020034] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.027361] Mount-cache hash table entries: 256
[    0.030132] Initializing cgroup subsys ns
[    0.034336] Initializing cgroup subsys cpuacct
[    0.038989] Initializing cgroup subsys memory
[    0.040000] Initializing cgroup subsys devices
[    0.040000] Initializing cgroup subsys freezer
[    0.040000] Initializing cgroup subsys net_cls
[    0.040026] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.047409] CPU: L2 Cache: 512K (64 bytes/line)
[    0.050000] CPU 0/0x0 -> Node 0
[    0.050006] CPU: Physical Processor ID: 0
[    0.054220] CPU: Processor Core ID: 0
[    0.058047] mce: CPU supports 6 MCE banks
[    0.060014] Performance Events: AMD PMU driver.
[    0.064705] ------------[ cut here ]------------
[    0.069582] WARNING: at arch/x86/xen/enlighten.c:731 xen_apic_write+0x1a/0x20()
[    0.070000] Hardware name: GA-MA790GP-UD4H
[    0.070000] Modules linked in:
[    0.070000] Pid: 0, comm: swapper Not tainted 2.6.32.12 #2
[    0.070000] Call Trace:
[    0.070000]  [<ffffffff8106605b>] warn_slowpath_common+0x7b/0xc0
[    0.070000]  [<ffffffff810660b4>] warn_slowpath_null+0x14/0x20
[    0.070000]  [<ffffffff8100b70a>] xen_apic_write+0x1a/0x20
[    0.070000]  [<ffffffff81021c76>] perf_events_lapic_init+0x36/0x40
[    0.070000]  [<ffffffff81886553>] init_hw_perf_events+0x34f/0x3ec
[    0.070000]  [<ffffffff81886175>] identify_boot_cpu+0x3c/0x3e
[    0.070000]  [<ffffffff818861e0>] check_bugs+0x9/0x2d
[    0.070000]  [<ffffffff8187dd7e>] start_kernel+0x3e3/0x403
[    0.070000]  [<ffffffff8187d33a>] x86_64_start_reservations+0x125/0x129
[    0.070000]  [<ffffffff818812f7>] xen_start_kernel+0x6ab/0x6b2
[    0.070000] ---[ end trace a7919e7f17c0a725 ]---
[    0.070000] ... version:                0
[    0.070000] ... bit width:              48
[    0.070000] ... generic registers:      4
[    0.070000] ... value mask:             0000ffffffffffff
[    0.070000] ... max period:             00007fffffffffff
[    0.070000] ... fixed-purpose events:   0
[    0.070000] ... event mask:             000000000000000f
[    0.070000] SMP alternatives: switching to UP code
[    0.070000] ACPI: Core revision 20090903
[    0.080046] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.086060] ftrace: allocating 21787 entries in 86 pages
[    0.090080] cpu 0 spinlock event irq 1278
[    0.094471] installing Xen timer for CPU 1
[    0.099518] cpu 1 spinlock event irq 1272
[    0.100022] SMP alternatives: switching to SMP code
[    0.000016] Initializing CPU#1
[    0.000064] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000066] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000068] CPU 1/0x0 -> Node 0
[    0.000070] CPU: Physical Processor ID: 0
[    0.000071] CPU: Processor Core ID: 1
[    0.110199] installing Xen timer for CPU 2
[    0.120012] cpu 2 spinlock event irq 1266
[    0.000017] Initializing CPU#2
[    0.000062] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000065] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000067] CPU 2/0x0 -> Node 0
[    0.000069] CPU: Physical Processor ID: 0
[    0.000070] CPU: Processor Core ID: 2
[    0.124435] installing Xen timer for CPU 3
[    0.130012] cpu 3 spinlock event irq 1260
[    0.000014] Initializing CPU#3
[    0.000067] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
[    0.000069] CPU: L2 Cache: 512K (64 bytes/line)
[    0.000071] CPU 3/0x0 -> Node 0
[    0.000073] CPU: Physical Processor ID: 0
[    0.000074] CPU: Processor Core ID: 3
[    0.134400] Brought up 4 CPUs
[    0.140038] devtmpfs: initialized
[    0.144568] Grant table initialized
[    0.144568] regulator: core version 0.5
[    0.147706] Time: 21:15:26  Date: 05/07/10
[    0.150034] NET: Registered protocol family 16
[    0.154698] TOM: 00000000d0000000 aka 3328M
[    0.154698] TOM2: 0000000230000000 aka 8960M
[    0.160040] ACPI: bus type pci registered
[    0.164280] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.170000] PCI: MCFG area at e0000000 reserved in E820
[    0.199975] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.200000] PCI: Using configuration type 1 for base access
[    0.200593] bio: create slab <bio-0> at 0
[    0.204168] ERROR: Unable to locate IOAPIC for GSI 9
[    0.219565] ACPI: Interpreter enabled
[    0.220000] ACPI: (supports S0 S1 S4 S5)
[    0.220000] ACPI: Using IOAPIC for interrupt routing
[    0.224968] ACPI: No dock devices found.
[    0.229067] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.230000] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[    0.230000] pci 0000:00:0a.0: PME# disabled
[    0.230420] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.236666] pci 0000:00:12.2: PME# disabled
[    0.240000] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.240000] pci 0000:00:13.2: PME# disabled
[    0.240223] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.246572] pci 0000:00:14.2: PME# disabled
[    0.250531] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.257368] pci 0000:02:00.0: PME# disabled
[    0.260000] pci 0000:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.260000] pci 0000:03:0e.0: PME# disabled
[    0.260000] pci 0000:00:14.4: transparent bridge
(XEN) PCI add device 00:00.0
(XEN) PCI add device 00:01.0
(XEN) PCI add device 00:0a.0
(XEN) PCI add device 00:11.0
(XEN) PCI add device 00:12.0
(XEN) PCI add device 00:12.1
(XEN) PCI add device 00:12.2
(XEN) PCI add device 00:13.0
(XEN) PCI add device 00:13.1
(XEN) PCI add device 00:13.2
(XEN) PCI add device 00:14.0
(XEN) PCI add device 00:14.1
(XEN) PCI add device 00:14.2
(XEN) PCI add device 00:14.3
(XEN) PCI add device 00:14.4
(XEN) PCI add device 00:14.5
(XEN) PCI add device 00:18.0
(XEN) PCI add device 00:18.1
(XEN) PCI add device 00:18.2
(XEN) PCI add device 00:18.3
(XEN) PCI add device 00:18.4
(XEN) PCI add device 01:05.0
(XEN) PCI add device 01:05.1
(XEN) PCI add device 02:00.0
(XEN) PCI add device 03:0e.0
[    0.335434] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.340082] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.347852] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.350081] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.357680] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.360078] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.367880] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.370086] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 10 11) *0, disabled.
[    0.377858] xen_balloon: Initialising balloon driver with page order 0.
[    0.380068] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.388354] vgaarb: loaded
[    0.390097] SCSI subsystem initialized
[    0.394026] usbcore: registered new interface driver usbfs
[    0.395721] usbcore: registered new interface driver hub
[    0.400025] usbcore: registered new device driver usb
[    0.405207] ACPI: WMI: Mapper loaded
[    0.405207] PCI: Using ACPI for IRQ routing
[    0.408122] pci 0000:00:00.0: BAR 3: address space collision on of device [0xe0000000-0xffffffff]
[    0.410000] pci 0000:00:00.0: BAR 3: can't allocate resource
[    0.410073] NetLabel: Initializing
[    0.413597] NetLabel:  domain hash size = 128
[    0.418157] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.420000] NetLabel:  unlabeled traffic allowed by default
[    0.420058] Switching to clocksource xen
[    0.424161] pnp: PnP ACPI init
[    0.424687] ACPI: bus type pnp registered
[    0.429817] xen_allocate_pirq: returning irq 8 for gsi 8
[    0.435317] Already setup the GSI :8
[    0.439229] xen_allocate_pirq: returning irq 13 for gsi 13
[    0.444891] Already setup the GSI :13
[    0.449297] xen_allocate_pirq: returning irq 4 for gsi 4
[    0.454751] Already setup the GSI :4
[    0.458569] xen_allocate_pirq: returning irq 12 for gsi 12
[    0.464249] Already setup the GSI :12
[    0.468194] xen_allocate_pirq: returning irq 1 for gsi 1
[    0.473646] Already setup the GSI :1
[    0.477806] pnp 00:0c: mem resource (0xd1c00-0xd3fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483642] pnp 00:0c: mem resource (0xf0000-0xf7fff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483642] pnp 00:0c: mem resource (0xf8000-0xfbfff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483642] pnp 00:0c: mem resource (0xfc000-0xfffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483642] pnp 00:0c: mem resource (0x0-0x9ffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.483642] pnp 00:0c: mem resource (0x100000-0xafddffff) overlaps 0000:00:00.0 BAR 3 (0x0-0x1fffffff), disabling
[    0.539753] pnp: PnP ACPI: found 13 devices
[    0.544106] ACPI: ACPI bus type pnp unregistered
[    0.549000] system 00:01: ioport range 0x4d0-0x4d1 has been reserved
[    0.555581] system 00:01: ioport range 0x220-0x225 has been reserved
[    0.558989] system 00:01: ioport range 0x290-0x294 has been reserved
[    0.568976] system 00:02: ioport range 0x4100-0x411f has been reserved
[    0.575845] system 00:02: ioport range 0x228-0x22f has been reserved
[    0.578971] system 00:02: ioport range 0x40b-0x40b has been reserved
[    0.578971] system 00:02: ioport range 0x4d6-0x4d6 has been reserved
[    0.578971] system 00:02: ioport range 0xc00-0xc01 has been reserved
[    0.578971] system 00:02: ioport range 0xc14-0xc14 has been reserved
[    0.578971] system 00:02: ioport range 0xc50-0xc52 has been reserved
[    0.578971] system 00:02: ioport range 0xc6c-0xc6d has been reserved
[    0.578971] system 00:02: ioport range 0xc6f-0xc6f has been reserved
[    0.578971] system 00:02: ioport range 0xcd0-0xcd1 has been reserved
[    0.578971] system 00:02: ioport range 0xcd2-0xcd3 has been reserved
[    0.578971] system 00:02: ioport range 0xcd4-0xcdf has been reserved
[    0.578971] system 00:02: ioport range 0x4000-0x40fe has been reserved
[    0.578971] system 00:02: ioport range 0x4210-0x4217 has been reserved
[    0.578971] system 00:02: ioport range 0xb00-0xb0f has been reserved
[    0.578971] system 00:02: ioport range 0xb10-0xb1f has been reserved
[    0.675615] system 00:02: ioport range 0xb20-0xb3f has been reserved
[    0.682209] system 00:0b: iomem range 0xe0000000-0xefffffff has been reserved
[    0.689649] system 00:0c: iomem range 0xafde0000-0xafdfffff could not be reserved
[    0.692202] system 00:0c: iomem range 0xffff0000-0xffffffff has been reserved
[    0.692202] system 00:0c: iomem range 0xafef0000-0xcfeeffff has been reserved
[    0.692202] system 00:0c: iomem range 0xfec00000-0xfec00fff could not be reserved
[    0.692202] system 00:0c: iomem range 0xfee00000-0xfee00fff has been reserved
[    0.692202] system 00:0c: iomem range 0xfff80000-0xfffeffff has been reserved
[    0.738327] PM-Timer failed consistency check  (0x0xffffff) - aborting.
[    0.745088] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.745934] pci 0000:00:01.0:   IO window: 0xe000-0xefff
[    0.745934] pci 0000:00:01.0:   MEM window: 0xfde00000-0xfdffffff
[    0.745934] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.745934] pci 0000:00:0a.0: PCI bridge, secondary bus 0000:02
[    0.745934] pci 0000:00:0a.0:   IO window: 0xd000-0xdfff
[    0.745934] pci 0000:00:0a.0:   MEM window: 0xfdd00000-0xfddfffff
[    0.745934] pci 0000:00:0a.0:   PREFETCH window: 0x000000fda00000-0x000000fdafffff
[    0.745934] pci 0000:00:14.4: PCI bridge, secondary bus 0000:03
[    0.745934] pci 0000:00:14.4:   IO window: 0xc000-0xcfff
[    0.745934] pci 0000:00:14.4:   MEM window: 0xfdc00000-0xfdcfffff
[    0.745934] pci 0000:00:14.4:   PREFETCH window: 0xfdb00000-0xfdbfffff
[    0.822892] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.829781] NET: Registered protocol family 2
[    0.834393] IP route cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.842263] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
[    0.850637] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.857871] TCP: Hash tables configured (established 131072 bind 65536)
[    0.860005] TCP reno registered
[    0.860005] NET: Registered protocol family 1
[    1.020209] Trying to unpack rootfs image as initramfs...
[    1.228293] Freeing initrd memory: 226749k freed
[    1.326486] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.330012] DMA: Placing 64MB software IO TLB between ffff880010c53000 - ffff880014c53000
[    1.330012] DMA: software IO TLB at phys 0x10c53000 - 0x14c53000
[    1.348327] Scanning for low memory corruption every 60 seconds
[    1.354569] audit: initializing netlink socket (disabled)
[    1.360151] type=2000 audit(1273266927.991:1): initialized
[    1.371932] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.379646] VFS: Disk quotas dquot_6.5.2
[    1.383816] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.391087] fuse init (API version 7.13)
[    1.395183] msgmni has been set to 1860
[    1.399561] alg: No test for stdrng (krng)
[    1.403902] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    1.411496] io scheduler noop registered
[    1.413833] io scheduler anticipatory registered
[    1.413833] io scheduler deadline registered (default)
[    1.426011] io scheduler cfq registered
[    1.430446] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.436206] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.443197] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.451838] ACPI: Power Button [PWRB]
[    1.455774] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.463414] ACPI: Power Button [PWRF]
[    1.469464] Event-channel device installed.
[    1.477606] blktap_device_init: blktap device major 253
[    1.483041] blktap_ring_init: blktap ring major: 252
[    1.488986] registering netback
[    1.492326] xen-platform-pcifailed backend handshake: unrecognised magic value
[    1.501079] hpet_acpi_add: no address or irqs in _CRS
[    1.506297] Linux agpgart interface v0.103
[    1.510530] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.518081] brd: module loaded
[    1.521553] loop: module loaded
[    1.524848] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    1.533142] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.541027] Fixed MDIO Bus: probed
[    1.544568] PPP generic driver version 2.4.2
[    1.549091] tun: Universal TUN/TAP device driver, 1.6
[    1.550804] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.560902] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.567631] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    1.574943] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    1.580471] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.588186] ehci_hcd 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    1.590463] ehci_hcd 0000:00:12.2: debug port 1
[    1.590463] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe02c000
[    1.630041] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.636030] usb usb1: configuration #1 chosen from 1 choice
[    1.641888] hub 1-0:1.0: USB hub found
[    1.645772] hub 1-0:1.0: 6 ports detected
[    1.650180] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.657509] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    1.660142] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.660142] ehci_hcd 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    1.660142] ehci_hcd 0000:00:13.2: debug port 1
[    1.660142] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe029000
[    1.689088] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.695196] usb usb2: configuration #1 chosen from 1 choice
[    1.701032] hub 2-0:1.0: USB hub found
[    1.705007] hub 2-0:1.0: 6 ports detected
[    1.709250] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.715676] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.721369] Already setup the GSI :16
[    1.725240] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.732614] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    1.738118] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.745832] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe02e000
[    1.804145] usb usb3: configuration #1 chosen from 1 choice
[    1.809821] hub 3-0:1.0: USB hub found
[    1.813809] hub 3-0:1.0: 3 ports detected
[    1.818101] xen_allocate_pirq: returning irq 16 for gsi 16
[    1.823751] Already setup the GSI :16
[    1.827630] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    1.833748] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    1.840611] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    1.848295] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe02d000
[    1.904115] usb usb4: configuration #1 chosen from 1 choice
[    1.909952] hub 4-0:1.0: USB hub found
[    1.913940] hub 4-0:1.0: 3 ports detected
[    1.918321] xen_allocate_pirq: returning irq 18 for gsi 18
[    1.924045] Already setup the GSI :18
[    1.927849] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    1.934040] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    1.940897] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    1.948609] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe02b000
[    2.004123] usb usb5: configuration #1 chosen from 1 choice
[    2.009887] hub 5-0:1.0: USB hub found
[    2.013792] hub 5-0:1.0: 3 ports detected
[    2.018174] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.023900] Already setup the GSI :18
[    2.027689] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.033897] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    2.033897] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    2.033897] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe02a000
[    2.084109] usb usb6: configuration #1 chosen from 1 choice
[    2.089884] hub 6-0:1.0: USB hub found
[    2.093881] hub 6-0:1.0: 3 ports detected
[    2.098257] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.103893] Already setup the GSI :18
[    2.107769] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.113890] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    2.120644] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    2.128427] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe028000
[    2.184109] usb usb7: configuration #1 chosen from 1 choice
[    2.189923] hub 7-0:1.0: USB hub found
[    2.193910] hub 7-0:1.0: 2 ports detected
[    2.198106] uhci_hcd: USB Universal Host Controller Interface driver
[    2.204787] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.213057] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.218208] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.223623] mice: PS/2 mouse device common for all mice
[    2.229152] rtc_cmos 00:05: RTC can wake from S4
[    2.233553] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.240422] rtc0: alarms up to one month, 242 bytes nvram
[    2.246172] device-mapper: uevent: version 1.0.3
[    2.251091] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.260114] device-mapper: multipath: version 1.1.0 loaded
[    2.265785] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.272932] cpuidle: using governor ladder
[    2.277172] cpuidle: using governor menu
[    2.282422] TCP cubic registered
[    2.285839] NET: Registered protocol family 10
[    2.290929] lo: Disabled Privacy Extensions
[    2.295481] NET: Registered protocol family 17
[    2.300154] powernow-k8: Found 1 AMD Phenom(tm) II X4 940 Processor processors (4 cpu cores) (version 2.20.00)
[    2.310093] [Firmware Bug]: powernow-k8: No compatible ACPI _PSS objects found.
[    2.310093] [Firmware Bug]: powernow-k8: Try again with latest BIOS.
[    2.324925] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.324957] registered taskstats version 1
[    2.325528]   Magic number: 10:466:297
[    2.342162] rtc_cmos 00:05: setting system clock to 2010-05-07 21:15:29 UTC (1273266929)
[    2.350001] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.350001] EDD information not available.
[    2.361353] Freeing unused kernel memory: 800k freed
[    2.366735] Write protecting the kernel read-only data: 7812k
[    2.408521] udev: starting version 151
[    2.424728] md: linear personality registered for level -1
[    2.488805] md: multipath personality registered for level -4
[    2.503011] scsi0 : pata_atiixp
[    2.506576] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.510008] xen_allocate_pirq: returning irq 18 for gsi 18
[    2.518096] Already setup the GSI :18
[    2.521838] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    2.529801] eth0: RTL8168c/8111c at 0xffffc900001ea000, 00:24:1d:19:05:df, XID 1c4000c0 IRQ 1250
[    2.542676] scsi1 : pata_atiixp
[    2.547201] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xfa00 irq 14
[    2.554508] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xfa08 irq 15
[    2.562949] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    2.570117] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.577287] md: raid0 personality registered for level 0
[    2.580006] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    2.593852] scsi2 : ahci
[    2.596557] scsi3 : ahci
[    2.599246] scsi4 : ahci
[    2.601930] scsi5 : ahci
[    2.604665] scsi6 : ahci
[    2.607379] scsi7 : ahci
[    2.610207] ata3: SATA max UDMA/133 irq_stat 0x00400000, PHY RDY changed irq 22
[    2.617761] ata4: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f180 irq 22
[    2.620026] ata5: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f200 irq 22
[    2.620026] ata6: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f280 irq 22
[    2.620026] ata7: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f300 irq 22
[    2.620026] ata8: SATA max UDMA/133 abar m1024@0xfe02f000 port 0xfe02f380 irq 22
[    2.760511] ata1.01: ATAPI: HL-DT-STDVD-ROM GDR8164B, 0L06, max UDMA/33
[    2.800455] ata1.01: configured for UDMA/33
[    2.808960] scsi 0:0:1:0: CD-ROM            HL-DT-ST DVD-ROM GDR8164B 0L06 PQ: 0 ANSI: 5
[    2.825512] sr0: scsi3-mmc drive: 52x/52x cd/rw xa/form2 cdda tray
[    2.831715] Uniform CD-ROM driver Revision: 3.20
[    2.836591] sr 0:0:1:0: Attached scsi generic sg0 type 5
[    3.180040] ata5: softreset failed (device not ready)
[    3.185277] ata5: applying SB600 PMP SRST workaround and retrying
[    3.191598] ata6: softreset failed (device not ready)
[    3.191628] ata4: softreset failed (device not ready)
[    3.191632] ata4: applying SB600 PMP SRST workaround and retrying
[    3.191661] ata7: softreset failed (device not ready)
[    3.191665] ata7: applying SB600 PMP SRST workaround and retrying
[    3.191696] ata8: softreset failed (device not ready)
[    3.191699] ata8: applying SB600 PMP SRST workaround and retrying
[    3.201590] ata6: applying SB600 PMP SRST workaround and retrying
[    3.390068] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.396397] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.400058] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.400098] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.415839] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.422547] ata5.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.429657] ata5.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.437302] ata7.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.444493] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.451855] ata6.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.451864] ata8.00: ATA-8: Hitachi HDP725050GLA360, GM4OA5CA, max UDMA/133
[    3.451866] ata8.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.461822] ata6.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.481315] ata4.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.488528] ata4.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.495911] ata5.00: configured for UDMA/133
[    3.500617] ata6.00: configured for UDMA/133
[    3.500619] ata7.00: configured for UDMA/133
[    3.500623] ata8.00: configured for UDMA/133
[    3.514415] ata4.00: configured for UDMA/133
[    3.570051] ata3: softreset failed (device not ready)
[    3.575273] ata3: applying SB600 PMP SRST workaround and retrying
[    3.750047] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.778336] ata3.00: ATA-8: Hitachi HDT721025SLA380, STBOA31B, max UDMA/133
[    3.785544] ata3.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    3.794057] ata3.00: configured for UDMA/133
[    3.810147] scsi 2:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.818665] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    3.818680] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.818724] sd 2:0:0:0: [sda] Write Protect is off
[    3.818748] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.818885]  sda: sda1 sda2 sda3
[    3.849930] scsi 3:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.849992] sd 2:0:0:0: [sda] Attached SCSI disk
[    3.863295] sd 3:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.863307] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    3.863435] scsi 4:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.863563] sd 4:0:0:0: [sdc] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.863588] sd 4:0:0:0: Attached scsi generic sg3 type 0
[    3.863615] sd 4:0:0:0: [sdc] Write Protect is off
[    3.863648] sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.863765]  sdc:
[    3.863834] scsi 5:0:0:0: Direct-Access     ATA      Hitachi HDT72102 STBO PQ: 0 ANSI: 5
[    3.863939] sd 5:0:0:0: [sdd] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    3.863961] sd 5:0:0:0: Attached scsi generic sg4 type 0
[    3.863982] sd 5:0:0:0: [sdd] Write Protect is off
[    3.864009] sd 5:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.864121]  sdd:
[    3.864182] scsi 6:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.864286] sd 6:0:0:0: [sde] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.864299] sd 6:0:0:0: Attached scsi generic sg5 type 0
[    3.864337] sd 6:0:0:0: [sde] Write Protect is off
[    3.864366] sd 6:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.864388] scsi 7:0:0:0: Direct-Access     ATA      Hitachi HDP72505 GM4O PQ: 0 ANSI: 5
[    3.864484]  sde:
[    3.864503] sd 7:0:0:0: Attached scsi generic sg6 type 0
[    3.864522] sd 7:0:0:0: [sdf] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    3.864572] sd 7:0:0:0: [sdf] Write Protect is off
[    3.864599] sd 7:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.864708]  sdf: sdc1
[    4.024704]  sdf1
[    4.024941] sd 4:0:0:0: [sdc] Attached SCSI disk
[    4.030117] sd 3:0:0:0: [sdb] Write Protect is off
[    4.030141] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.032501]  sdf2 sdf3
[    4.049540]  sdd1
[    4.051579]  sde1 sde2 sde3
[    4.054669] sd 6:0:0:0: [sde] Attached SCSI disk
[    4.054765] sd 7:0:0:0: [sdf] Attached SCSI disk
[    4.054841] sd 5:0:0:0: [sdd] Attached SCSI disk
[    4.054890]  sdb: sdb1 sdb2 sdb3
[    4.081421] sd 3:0:0:0: [sdb] Attached SCSI disk
[    4.092001] xen_allocate_pirq: returning irq 22 for gsi 22
[    4.097792] Already setup the GSI :22
[    4.101690] ohci1394 0000:03:0e.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    4.107355] md: raid1 personality registered for level 1
[    4.119331] async_tx: api initialized (async)
[    4.125875] xor: automatically using best checksumming function: generic_sse
[    4.170015]    generic_sse:  4960.800 MB/sec
[    4.170081] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[22]  MMIO=[fdcff000-fdcff7ff]  Max Packet=[2048]  IR/IT co]
[    4.174441] xor: using function: generic_sse (4960.800 MB/sec)
[    4.244058] md: bind<sdc1>
[    4.253090] md: bind<sdd1>
[    4.258337] raid1: raid set md3 active with 2 out of 2 mirrors
[    4.264332] md3: detected capacity change from 0 to 250056605696
[    4.272506] md: bind<sda1>
[    4.276783]  md3: unknown partition table
[    4.281759] md: bind<sda2>
[    4.281961] md: bind<sda3>
[    4.289294] md: bind<sdb1>
[    4.296688] raid1: raid set md0 active with 2 out of 2 mirrors
[    4.302151] md0: detected capacity change from 0 to 526319616
[    4.309803] md: bind<sdb2>
[    4.315239]  md0:
[    4.317158] raid1: raid set md1 active with 2 out of 2 mirrors
[    4.317175] md1: detected capacity change from 0 to 19329318912
[    4.331316] md: bind<sdf1>
[    4.331448]  md1:
[    4.336806] md: bind<sdb3>
[    4.336939]  unknown partition table
[    4.344108] md: bind<sdf3>
[    4.347205] md: bind<sdf2>
[    4.353287] raid1: raid set md2 active with 2 out of 2 mirrors
[    4.359390] md2: detected capacity change from 0 to 230200836096
[    4.360014] raid6: int64x1   2476 MB/s
[    4.370436] md: bind<sde3>
[    4.373525] md: bind<sde2>
[    4.377538]  md2: unknown partition table
[    4.382436] raid1: raid set md5 active with 2 out of 2 mirrors
[    4.388427] md5: detected capacity change from 0 to 15998058496
[    4.395167] raid1: raid set md6 active with 2 out of 2 mirrors
[    4.401180] md6: detected capacity change from 0 to 483605217280
[    4.409596]  md5: unknown partition table
[    4.415124]  md6: unknown partition table
[    4.515979] md: bind<sde1>
[    4.530017] raid6: int64x2   3476 MB/s
[    4.700016] raid6: int64x4   2687 MB/s
[    4.870028] raid6: int64x8   2356 MB/s
[    5.040023] raid6: sse2x1    3255 MB/s
[    5.210020] raid6: sse2x2    4915 MB/s
[    5.380019] raid6: sse2x4    4678 MB/s
[    5.383751] raid6: using algorithm sse2x2 (4915 MB/s)
[    5.389059] raid1: raid set md4 active with 2 out of 2 mirrors
[    5.395158] md4: detected capacity change from 0 to 501612544
[    5.402516] md: raid6 personality registered for level 6
[    5.404314]  md4: unknown partition table
[    5.411259] md: raid5 personality registered for level 5
[    5.412359] md: raid4 personality registered for level 4
[    5.434980] md: raid10 personality registered for level 10
[    5.704544] EXT4-fs (dm-0): INFO: recovery required on readonly filesystem
[    5.711718] EXT4-fs (dm-0): write access will be enabled during recovery
[    7.489601] EXT4-fs (dm-0): recovery complete
[    7.502002] EXT4-fs (dm-0): mounted filesystem with ordered data mode
[   14.611832] ACPI: I/O resource piix4_smbus [0xb00-0xb07] conflicts with ACPI region SOR1 [0xb00-0xb0f]
[   14.943151] shpchp 0000:00:01.0: Cannot reserve MMIO region
init: procps main process (569) terminated with status 255
fsck from util-linux-ng 2.17.2
fsck from util-linux-ng 2.17.2
init: eucalyptus-network (lo) main process (1009) killed by TERM signal
init: eucalyptus-network (eth0) main process (1156) killed by TERM signal
/dev/mapper/vg--grp--01--23--02--2-LogVol00: clean, 511649/29523968 files, 16463685/118067200 blocks
/dev/md4: clean, 224/122880 files, 280736/489856 blocks
Loading the saved-state of the serial devices... 
/dev/ttyS0 at 0x03f8 (irq = 4) is a 16550A
[ OK ]ting sensors limits        

** (process:1463): WARNING **: Could not parse config file: Could not open config file /etc/nbd-server/config.
** Message: Nothing to do! Bye!
 nbd-server.
[ OK ]rting internet superserver inetd        
[ OK ]rting Postfix Mail Transport Agent postfix        
 * Speech-dispatcher configured for user sessions
[   18.965993] XENBUS: Unable to read cpu state
[   18.974998] XENBUS: Unable to read cpu state
[   18.979648] XENBUS: Unable to read cpu state
[   18.984235] XENBUS: Unable to read cpu state

GR: now login prompt shows up immediately:

Ubuntu lucid (development branch) grp-01-23-02 hvc0

grp-01-23-02 login: 


[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07 21:53                               ` Gerry Reno
@ 2010-05-08  7:20                                 ` Boris Derzhavets
  2010-05-10 14:10                                 ` Konrad Rzeszutek Wilk
  1 sibling, 0 replies; 64+ messages in thread
From: Boris Derzhavets @ 2010-05-08  7:20 UTC (permalink / raw)
  To: xen-devel, Gerry Reno


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

> 'No compatible ACPI _PSS objects found.'

ACPI for 2.6.32.12 is written different from *31* .
I don't know exactly what except acpi_processor has been changed by Yu Ke.
ACPI stuff is his responsibility. 

> unable to locate IOAPIC for xxx', call trace from
enlighten.c, 'd0 domain attempted 
> wrmsr',

IOAPIC i believe was also reworked by Xiantao Zang
for 2.6.32.X. It works OK on the recent Intel Boards.

Address issues directly.

Boris.

--- On Fri, 5/7/10, Gerry Reno <greno@verizon.net> wrote:

From: Gerry Reno <greno@verizon.net>
Subject: Re: [Xen-devel] AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
To: xen-devel@lists.xensource.com
Date: Friday, May 7, 2010, 5:53 PM





  
On 05/07/2010 12:44 PM, Gerry Reno wrote:


  
On 05/07/2010 02:21 AM, Boris Derzhavets wrote:
  
    
      
        
          

>> /etc/xen/scripts/network-bridge: line 240: "sigerr" command
not found.

          

apt-get install bridge-utils ( has been done ?)

If yes, you could try remove br0 declaration from
/etc/network/interfaces

and edit properly /etc/xen/xend-config.sxp . Xen should bring up bridge

with no pain after reboot. Just service xend restart might not help.

I got this error this error as reaction on any mistake in Xen network
config

on Lucid.

          

Boris.

P.S. you could keep br0 declaration and commented out network bridging
setup

in /etc/xen/xend-config.sxp. It works as well.

 

          

          

--- On Fri, 5/7/10, Pasi Kärkkäinen <pasik@iki.fi>
wrote:

          

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

Subject: Re: [Xen-devel] AMD Phenom II 940: mm/vmalloc.c:110
vmap_page_range_noflush

To: "Gerry Reno" <greno@verizon.net>

Cc: xen-devel@lists.xensource.com,
"Konrad Rzeszutek Wilk"
            <konrad.wilk@oracle.com>

Date: Friday, May 7, 2010, 2:05 AM

            

            On Thu, May 06, 2010 at 10:22:03PM
-0400, Gerry Reno wrote:

> On 05/06/2010 08:21 PM, Gerry Reno wrote:

>> Ok, I tested with the new 2.6.32.12:  (.config same)

>>

>> Case 1:  Xen 4.0.0-rc8 / pv_ops dom0 kernel 2.6.32.12

>>

>> Still pv_ops dom0 is not working properly.

>> There are still call trace and other errors.  The kernel does
boot up  

>> but it takes again a long time to get the login prompt (about
3 mins).  

>> This is far longer than when I used 2.6.31.6 pv_ops dom0. 
Networking 

>> does not start properly (only see 'lo' and 'virbr0'), so I
have to 

>> restart it manually and then I see my bridge 'br0' and 'eth0'.

>> Can't find device "br0"

>> /etc/xen/scripts/network-bridge: line 240: "sigerr" command
not found.

>> And it is trying unsuccessfully to start some laptop feature
like  

>> S99powernap (unknown job) and also S28-libvirt-bin fails
(maybe  

>> network related?).

>>

>>

>> Case 2:  pv_ops domU kernel 2.6.32.12  (no xen dom0):

>>

>> Now the straight linux kernel (no xen dom0) boots right up and
goes to  

>> login prompt in normal timeframe.  Networking starts
correctly.   

>> Things look pretty normal.

>>

>>

>> Observation:

>> I'm getting slightly different output on console and serial
console.   

>> Some errors show on one but not the other.  Shouldn't these be
            

>> identical?

>>

>>

>> I'm attaching both serial console outputs.

>>

>> menu.lst is same as before (just .12 instead of .10)

>>

>> -Gerry

>>

>>

> And I'm attaching the syslog from Case 1 (pv_ops dom0).

>

            

You should be posting two things:

            

1) xm dmesg

2) dmesg

            

Aka the full boot log, from both Xen hypervisor and dom0 Linux kernel.

            

-- Pasi

            

            

            
          
          
        
      
    
  
Pasi, I am attaching 'xm dmesg' and 'dmesg'.

  

Boris, bridge-utils is installed and latest.  I will try some of these
other things you suggested.

  

-Gerry




Ok, I tried to adjust bridge parameters and found that I can finally
get pv_ops dom0 to boot in normal timeframe if I comment out all bridge
related statements in /etc/xen/xend-config.sxp.  Before with 2.6.31.6 I
had (network-script network-bridge) and also tried (network-script
'network-bridge bridge=br0') but these do not work with 2.6.32.12.



However, there are still errors in the pv_ops dom0 2.6.32.12 console
output so I'm attaching the output so someone could see if they are
serious or if there are workarounds to improve things.  I'm seeing
things like 'unable to locate IOAPIC for xxx', call trace from
enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
processor.'(a 1.2 TeraHz processor??? - the processor is actually a 3.1
GHz processor), 'No compatible ACPI _PSS objects found.'. 



Plus, why do I see slightly different outputs on the consoles?  Some
errors only show on one of the consoles but not the other.





-Gerry



 

-----Inline Attachment Follows-----

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



      

[-- Attachment #1.2: Type: text/html, Size: 7634 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

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

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-07 21:53                               ` Gerry Reno
  2010-05-08  7:20                                 ` Boris Derzhavets
@ 2010-05-10 14:10                                 ` Konrad Rzeszutek Wilk
  2010-05-10 16:03                                   ` Gerry Reno
  1 sibling, 1 reply; 64+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-05-10 14:10 UTC (permalink / raw)
  To: Gerry Reno; +Cc: xen-devel

> Ok, I tried to adjust bridge parameters and found that I can finally get  
> pv_ops dom0 to boot in normal timeframe if I comment out all bridge  
> related statements in /etc/xen/xend-config.sxp.  Before with 2.6.31.6 I  
> had (network-script network-bridge) and also tried (network-script  
> 'network-bridge bridge=br0') but these do not work with 2.6.32.12.

I had this problem when I forgot to have 'CONFIG_BRIDGE' enabled in my
.config, and also CONFIG_TAP (but I think that was only used during
guest startup) but I don't think that is your problem. It could be related to
this:

"init: eucalyptus-network (eth0) main process (1156) killed by TERM signal"

which might have mangled the eth0? Why is it being killed?

>
> However, there are still errors in the pv_ops dom0 2.6.32.12 console  
> output so I'm attaching the output so someone could see if they are  
> serious or if there are workarounds to improve things.  I'm seeing  
> things like 'unable to locate IOAPIC for xxx', call trace from  

Don't worry about that. These are used to setup the GSI and there is a
second code path that does that.

> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz  
> processor.'(a 1.2 TeraHz processor??? - the processor is actually a 3.1  
> GHz processor), 'No compatible ACPI _PSS objects found.'.

Interesting. My AMD prototype board shows the same data (or sometimes
even higher number)- completly bogus.
>
> Plus, why do I see slightly different outputs on the consoles?  Some  
> errors only show on one of the consoles but not the other.

That is b/c the Xen console (all prefixed with XEN) shouldn't by default
be in the Linux domain, unless requested.
.. snip..
> (XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_rin1
                                                                                                                         ^'g'

or unless you use console_to_ring at which point all of the output
should be synced together. Except that you have '1' at the end instead
of 'g'.

.. snip..
> GR: now login prompt shows up immediately:

Hurrayy!
> 
> Ubuntu lucid (development branch) grp-01-23-02 hvc0
> 
> grp-01-23-02 login: 

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

* Re: AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush
  2010-05-10 14:10                                 ` Konrad Rzeszutek Wilk
@ 2010-05-10 16:03                                   ` Gerry Reno
  2010-05-10 16:17                                     ` AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz! Konrad Rzeszutek Wilk
  0 siblings, 1 reply; 64+ messages in thread
From: Gerry Reno @ 2010-05-10 16:03 UTC (permalink / raw)
  To: xen-devel

On 05/10/2010 10:10 AM, Konrad Rzeszutek Wilk wrote:
>> Ok, I tried to adjust bridge parameters and found that I can finally get
>> pv_ops dom0 to boot in normal timeframe if I comment out all bridge
>> related statements in /etc/xen/xend-config.sxp.  Before with 2.6.31.6 I
>> had (network-script network-bridge) and also tried (network-script
>> 'network-bridge bridge=br0') but these do not work with 2.6.32.12.
>>      
> I had this problem when I forgot to have 'CONFIG_BRIDGE' enabled in my
> .config, and also CONFIG_TAP (but I think that was only used during
> guest startup) but I don't think that is your problem. It could be related to
> this:
>
> "init: eucalyptus-network (eth0) main process (1156) killed by TERM signal"
>
> which might have mangled the eth0? Why is it being killed?
>    

I'm going to investigate this but I suspect it dies because eth0 isn't 
there.  The euca network works fine after I restart networking.


>    
>> However, there are still errors in the pv_ops dom0 2.6.32.12 console
>> output so I'm attaching the output so someone could see if they are
>> serious or if there are workarounds to improve things.  I'm seeing
>> things like 'unable to locate IOAPIC for xxx', call trace from
>>      
> Don't worry about that. These are used to setup the GSI and there is a
> second code path that does that.
>    
Ok.  But then why bother writing these scary messages that just confuse 
things?


>    
>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a 3.1
>> GHz processor), 'No compatible ACPI _PSS objects found.'.
>>      
> Interesting. My AMD prototype board shows the same data (or sometimes
> even higher number)- completly bogus.
>    
I'm wondering if this bothers delay loop timings, etc. ???


>> Plus, why do I see slightly different outputs on the consoles?  Some
>> errors only show on one of the consoles but not the other.
>>      
> That is b/c the Xen console (all prefixed with XEN) shouldn't by default
> be in the Linux domain, unless requested.
> .. snip..
>    
>> (XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_rin1
>>      
>                                                                                                                           ^'g'
>
> or unless you use console_to_ring at which point all of the output
> should be synced together. Except that you have '1' at the end instead
> of 'g'.
>    
The '1' is an artifact due to the command line actually being 
truncated.  It's actually the last character on the line.



> .. snip..
>    
>> GR: now login prompt shows up immediately:
>>      
> Hurrayy!
>    

Yeah, no kidding!  :-)

Thanks for the help and looking at this.

-Gerry

>> Ubuntu lucid (development branch) grp-01-23-02 hvc0
>>
>> grp-01-23-02 login:
>>      
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>    

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

* AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz!
  2010-05-10 16:03                                   ` Gerry Reno
@ 2010-05-10 16:17                                     ` Konrad Rzeszutek Wilk
  2010-05-10 16:40                                       ` Dan Magenheimer
  0 siblings, 1 reply; 64+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-05-10 16:17 UTC (permalink / raw)
  To: Gerry Reno, dan.magenheimer; +Cc: xen-devel

On Mon, May 10, 2010 at 12:03:09PM -0400, Gerry Reno wrote:
> On 05/10/2010 10:10 AM, Konrad Rzeszutek Wilk wrote:
>>> Ok, I tried to adjust bridge parameters and found that I can finally get
>>> pv_ops dom0 to boot in normal timeframe if I comment out all bridge
>>> related statements in /etc/xen/xend-config.sxp.  Before with 2.6.31.6 I
>>> had (network-script network-bridge) and also tried (network-script
>>> 'network-bridge bridge=br0') but these do not work with 2.6.32.12.
>>>      
>> I had this problem when I forgot to have 'CONFIG_BRIDGE' enabled in my
>> .config, and also CONFIG_TAP (but I think that was only used during
>> guest startup) but I don't think that is your problem. It could be related to
>> this:
>>
>> "init: eucalyptus-network (eth0) main process (1156) killed by TERM signal"
>>
>> which might have mangled the eth0? Why is it being killed?
>>    
>
> I'm going to investigate this but I suspect it dies because eth0 isn't  
> there.  The euca network works fine after I restart networking.

Uh, why isn't eth0 there? The kernel log looks to have 'eth0' setup. Did
it get renamed?
>
>
>>    
>>> However, there are still errors in the pv_ops dom0 2.6.32.12 console
>>> output so I'm attaching the output so someone could see if they are
>>> serious or if there are workarounds to improve things.  I'm seeing
>>> things like 'unable to locate IOAPIC for xxx', call trace from
>>>      
>> Don't worry about that. These are used to setup the GSI and there is a
>> second code path that does that.
>>    
> Ok.  But then why bother writing these scary messages that just confuse  
> things?

Well, you know.. job security and such :-)

But in all seriousness - I was thinking about doing something about
those pesky messages, but haven't yet come up with a good way of doing
it.

>
>
>>    
>>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
>>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a 3.1

Maybe you should look in a lead case. You know at that speeds your
CPU might be producing X-rays that could be harmful to you.

>>> GHz processor), 'No compatible ACPI _PSS objects found.'.
>>>      
>> Interesting. My AMD prototype board shows the same data (or sometimes
>> even higher number)- completly bogus.
>>    
> I'm wondering if this bothers delay loop timings, etc. ???

Dan, thoughts?

>
>
>>> Plus, why do I see slightly different outputs on the consoles?  Some
>>> errors only show on one of the consoles but not the other.
>>>      
>> That is b/c the Xen console (all prefixed with XEN) shouldn't by default
>> be in the Linux domain, unless requested.
>> .. snip..
>>    
>>> (XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50  loglvl=all guest_loglvl=all sync_console console_to_rin1
>>>      
>>                                                                                                                           ^'g'
>>
>> or unless you use console_to_ring at which point all of the output
>> should be synced together. Except that you have '1' at the end instead
>> of 'g'.
>>    
> The '1' is an artifact due to the command line actually being truncated.  
> It's actually the last character on the line.

Ah, OK.
>
>
>
>> .. snip..
>>    
>>> GR: now login prompt shows up immediately:
>>>      
>> Hurrayy!
>>    
>
> Yeah, no kidding!  :-)
>
> Thanks for the help and looking at this.

Of course.

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

* RE: AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz!
  2010-05-10 16:17                                     ` AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz! Konrad Rzeszutek Wilk
@ 2010-05-10 16:40                                       ` Dan Magenheimer
  2010-05-10 17:40                                         ` Gerry Reno
  2010-05-10 17:56                                         ` Jeremy Fitzhardinge
  0 siblings, 2 replies; 64+ messages in thread
From: Dan Magenheimer @ 2010-05-10 16:40 UTC (permalink / raw)
  To: konrad.wilk, Gerry Reno; +Cc: xen-devel

> >>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
> >>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a
> 3.1
> > I'm wondering if this bothers delay loop timings, etc. ???
> 
> Dan, thoughts? 

This info is obtained from Xen via the shared_info struct, so
I'd bet the shared_info struct is getting trashed.

Or, for awhile, Jeremy had some code that made it possible
for pvclock to use multiple shared_info structs to detect
TSC skew.  I think that got pulled for 4.0, but not sure
I remember why (or the symptoms)... and I'm not sure what
Xen bits you are testing with.

> -----Original Message-----
> From: Konrad Wilk
> Sent: Monday, May 10, 2010 10:17 AM
> To: Gerry Reno; Dan Magenheimer
> Cc: xen-devel@lists.xensource.com
> Subject: AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades
> CPU from 3.1Ghz to 1.2Thz!
> 
> On Mon, May 10, 2010 at 12:03:09PM -0400, Gerry Reno wrote:
> > On 05/10/2010 10:10 AM, Konrad Rzeszutek Wilk wrote:
> >>> Ok, I tried to adjust bridge parameters and found that I can
> finally get
> >>> pv_ops dom0 to boot in normal timeframe if I comment out all bridge
> >>> related statements in /etc/xen/xend-config.sxp.  Before with
> 2.6.31.6 I
> >>> had (network-script network-bridge) and also tried (network-script
> >>> 'network-bridge bridge=br0') but these do not work with 2.6.32.12.
> >>>
> >> I had this problem when I forgot to have 'CONFIG_BRIDGE' enabled in
> my
> >> .config, and also CONFIG_TAP (but I think that was only used during
> >> guest startup) but I don't think that is your problem. It could be
> related to
> >> this:
> >>
> >> "init: eucalyptus-network (eth0) main process (1156) killed by TERM
> signal"
> >>
> >> which might have mangled the eth0? Why is it being killed?
> >>
> >
> > I'm going to investigate this but I suspect it dies because eth0
> isn't
> > there.  The euca network works fine after I restart networking.
> 
> Uh, why isn't eth0 there? The kernel log looks to have 'eth0' setup.
> Did
> it get renamed?
> >
> >
> >>
> >>> However, there are still errors in the pv_ops dom0 2.6.32.12
> console
> >>> output so I'm attaching the output so someone could see if they are
> >>> serious or if there are workarounds to improve things.  I'm seeing
> >>> things like 'unable to locate IOAPIC for xxx', call trace from
> >>>
> >> Don't worry about that. These are used to setup the GSI and there is
> a
> >> second code path that does that.
> >>
> > Ok.  But then why bother writing these scary messages that just
> confuse
> > things?
> 
> Well, you know.. job security and such :-)
> 
> But in all seriousness - I was thinking about doing something about
> those pesky messages, but haven't yet come up with a good way of doing
> it.
> 
> >
> >
> >>
> >>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
> >>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a
> 3.1
> 
> Maybe you should look in a lead case. You know at that speeds your
> CPU might be producing X-rays that could be harmful to you.
> 
> >>> GHz processor), 'No compatible ACPI _PSS objects found.'.
> >>>
> >> Interesting. My AMD prototype board shows the same data (or
> sometimes
> >> even higher number)- completly bogus.
> >>
> > I'm wondering if this bothers delay loop timings, etc. ???
> 
> Dan, thoughts?
> 
> >
> >
> >>> Plus, why do I see slightly different outputs on the consoles?
> Some
> >>> errors only show on one of the consoles but not the other.
> >>>
> >> That is b/c the Xen console (all prefixed with XEN) shouldn't by
> default
> >> be in the Linux domain, unless requested.
> >> .. snip..
> >>
> >>> (XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50
> loglvl=all guest_loglvl=all sync_console console_to_rin1
> >>>
> >>
> ^'g'
> >>
> >> or unless you use console_to_ring at which point all of the output
> >> should be synced together. Except that you have '1' at the end
> instead
> >> of 'g'.
> >>
> > The '1' is an artifact due to the command line actually being
> truncated.
> > It's actually the last character on the line.
> 
> Ah, OK.
> >
> >
> >
> >> .. snip..
> >>
> >>> GR: now login prompt shows up immediately:
> >>>
> >> Hurrayy!
> >>
> >
> > Yeah, no kidding!  :-)
> >
> > Thanks for the help and looking at this.
> 
> Of course.

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

* Re: RE: AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz!
  2010-05-10 16:40                                       ` Dan Magenheimer
@ 2010-05-10 17:40                                         ` Gerry Reno
  2010-05-10 17:56                                         ` Jeremy Fitzhardinge
  1 sibling, 0 replies; 64+ messages in thread
From: Gerry Reno @ 2010-05-10 17:40 UTC (permalink / raw)
  To: Dan Magenheimer; +Cc: xen-devel, konrad.wilk

"...and I'm not sure what Xen bits you are testing with."

I'm using Xen 4.0.0-rc8.  Kernel is 2.6.32.12.

-Gerry



On 05/10/2010 12:40 PM, Dan Magenheimer wrote:
>>>>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
>>>>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a
>>>>>            
>> 3.1
>>      
>>> I'm wondering if this bothers delay loop timings, etc. ???
>>>        
>> Dan, thoughts?
>>      
> This info is obtained from Xen via the shared_info struct, so
> I'd bet the shared_info struct is getting trashed.
>
> Or, for awhile, Jeremy had some code that made it possible
> for pvclock to use multiple shared_info structs to detect
> TSC skew.  I think that got pulled for 4.0, but not sure
> I remember why (or the symptoms)... and I'm not sure what
> Xen bits you are testing with.
>
>    
>> -----Original Message-----
>> From: Konrad Wilk
>> Sent: Monday, May 10, 2010 10:17 AM
>> To: Gerry Reno; Dan Magenheimer
>> Cc: xen-devel@lists.xensource.com
>> Subject: AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades
>> CPU from 3.1Ghz to 1.2Thz!
>>
>> On Mon, May 10, 2010 at 12:03:09PM -0400, Gerry Reno wrote:
>>      
>>> On 05/10/2010 10:10 AM, Konrad Rzeszutek Wilk wrote:
>>>        
>>>>> Ok, I tried to adjust bridge parameters and found that I can
>>>>>            
>> finally get
>>      
>>>>> pv_ops dom0 to boot in normal timeframe if I comment out all bridge
>>>>> related statements in /etc/xen/xend-config.sxp.  Before with
>>>>>            
>> 2.6.31.6 I
>>      
>>>>> had (network-script network-bridge) and also tried (network-script
>>>>> 'network-bridge bridge=br0') but these do not work with 2.6.32.12.
>>>>>
>>>>>            
>>>> I had this problem when I forgot to have 'CONFIG_BRIDGE' enabled in
>>>>          
>> my
>>      
>>>> .config, and also CONFIG_TAP (but I think that was only used during
>>>> guest startup) but I don't think that is your problem. It could be
>>>>          
>> related to
>>      
>>>> this:
>>>>
>>>> "init: eucalyptus-network (eth0) main process (1156) killed by TERM
>>>>          
>> signal"
>>      
>>>> which might have mangled the eth0? Why is it being killed?
>>>>
>>>>          
>>> I'm going to investigate this but I suspect it dies because eth0
>>>        
>> isn't
>>      
>>> there.  The euca network works fine after I restart networking.
>>>        
>> Uh, why isn't eth0 there? The kernel log looks to have 'eth0' setup.
>> Did
>> it get renamed?
>>      
>>>
>>>        
>>>>          
>>>>> However, there are still errors in the pv_ops dom0 2.6.32.12
>>>>>            
>> console
>>      
>>>>> output so I'm attaching the output so someone could see if they are
>>>>> serious or if there are workarounds to improve things.  I'm seeing
>>>>> things like 'unable to locate IOAPIC for xxx', call trace from
>>>>>
>>>>>            
>>>> Don't worry about that. These are used to setup the GSI and there is
>>>>          
>> a
>>      
>>>> second code path that does that.
>>>>
>>>>          
>>> Ok.  But then why bother writing these scary messages that just
>>>        
>> confuse
>>      
>>> things?
>>>        
>> Well, you know.. job security and such :-)
>>
>> But in all seriousness - I was thinking about doing something about
>> those pesky messages, but haven't yet come up with a good way of doing
>> it.
>>
>>      
>>>
>>>        
>>>>          
>>>>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
>>>>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a
>>>>>            
>> 3.1
>>
>> Maybe you should look in a lead case. You know at that speeds your
>> CPU might be producing X-rays that could be harmful to you.
>>
>>      
>>>>> GHz processor), 'No compatible ACPI _PSS objects found.'.
>>>>>
>>>>>            
>>>> Interesting. My AMD prototype board shows the same data (or
>>>>          
>> sometimes
>>      
>>>> even higher number)- completly bogus.
>>>>
>>>>          
>>> I'm wondering if this bothers delay loop timings, etc. ???
>>>        
>> Dan, thoughts?
>>
>>      
>>>
>>>        
>>>>> Plus, why do I see slightly different outputs on the consoles?
>>>>>            
>> Some
>>      
>>>>> errors only show on one of the consoles but not the other.
>>>>>
>>>>>            
>>>> That is b/c the Xen console (all prefixed with XEN) shouldn't by
>>>>          
>> default
>>      
>>>> be in the Linux domain, unless requested.
>>>> .. snip..
>>>>
>>>>          
>>>>> (XEN) Command line: dummy=dummy dom0_mem=1024M  vga=text-80x50
>>>>>            
>> loglvl=all guest_loglvl=all sync_console console_to_rin1
>>      
>>>>>            
>>>>          
>> ^'g'
>>      
>>>> or unless you use console_to_ring at which point all of the output
>>>> should be synced together. Except that you have '1' at the end
>>>>          
>> instead
>>      
>>>> of 'g'.
>>>>
>>>>          
>>> The '1' is an artifact due to the command line actually being
>>>        
>> truncated.
>>      
>>> It's actually the last character on the line.
>>>        
>> Ah, OK.
>>      
>>>
>>>
>>>        
>>>> .. snip..
>>>>
>>>>          
>>>>> GR: now login prompt shows up immediately:
>>>>>
>>>>>            
>>>> Hurrayy!
>>>>
>>>>          
>>> Yeah, no kidding!  :-)
>>>
>>> Thanks for the help and looking at this.
>>>        
>> Of course.
>>      
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
>    

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

* Re: RE: AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz!
  2010-05-10 16:40                                       ` Dan Magenheimer
  2010-05-10 17:40                                         ` Gerry Reno
@ 2010-05-10 17:56                                         ` Jeremy Fitzhardinge
  1 sibling, 0 replies; 64+ messages in thread
From: Jeremy Fitzhardinge @ 2010-05-10 17:56 UTC (permalink / raw)
  To: Dan Magenheimer; +Cc: Gerry Reno, xen-devel, konrad.wilk

On 05/10/2010 09:40 AM, Dan Magenheimer wrote:
>>>>> enlighten.c, 'd0 domain attempted wrmsr', 'Detected 1226681.732 MHz
>>>>> processor.'(a 1.2 TeraHz processor??? - the processor is actually a
>>>>>           
>> 3.1
>>     
>>> I'm wondering if this bothers delay loop timings, etc. ???
>>>       
>> Dan, thoughts? 
>>     
> This info is obtained from Xen via the shared_info struct, so
> I'd bet the shared_info struct is getting trashed.
>
> Or, for awhile, Jeremy had some code that made it possible
> for pvclock to use multiple shared_info structs to detect
> TSC skew.

I had a patch for multiple pvclock structures so that they could be
exported to userspace, but I screwed up the Xen side so that it was
trashing memory on context switch.   But the use of pvclock in usermode
is fairly iffy anyway, since there are concerns about how to attain the
monotonicity guarantees required by clock_gettime, etc.   So at the
moment, neither Xen nor the .32+ kernels have support for that.

    J

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

end of thread, other threads:[~2010-05-10 17:56 UTC | newest]

Thread overview: 64+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-23 17:50 Cannot load latest 2.6.32.10 kernel on AMD quad-core Gerry Reno
2010-04-23 18:27 ` Boris Derzhavets
2010-04-23 18:55   ` Boris Derzhavets
2010-04-23 20:38     ` Gerry Reno
2010-04-23 21:31       ` Boris Derzhavets
2010-04-24  6:12         ` Gerry Reno
2010-04-24  6:32           ` Gerry Reno
2010-04-24  7:34             ` Boris Derzhavets
2010-04-24 16:41               ` Gerry Reno
2010-04-24 17:30                 ` Boris Derzhavets
2010-04-24 17:37                 ` Boris Derzhavets
2010-04-24 17:41                 ` Boris Derzhavets
2010-04-24 18:07                   ` Gerry Reno
2010-04-24 18:18                     ` Boris Derzhavets
2010-04-24 22:24                       ` Gerry Reno
2010-04-25  6:44                         ` Pasi Kärkkäinen
2010-04-25 11:16                           ` Boris Derzhavets
2010-04-25 15:37                             ` Gerry Reno
2010-04-25 16:10                               ` Boris Derzhavets
2010-04-25 23:18                                 ` Mike Viau
2010-04-26  0:49                                   ` Gerry Reno
2010-04-26  2:10                                     ` Mike Viau
2010-04-26  2:18                                       ` Gerry Reno
2010-04-25 22:15                               ` Gerry Reno
2010-04-26  2:10                                 ` Gerry Reno
2010-04-26  4:12                                   ` Gerry Reno
2010-04-26 20:04                                     ` Pasi Kärkkäinen
2010-04-26 21:26                                       ` Gerry Reno
2010-04-26 21:52                                         ` Pasi Kärkkäinen
2010-04-26 23:36                                           ` Gerry Reno
2010-04-27  0:00                                             ` Gerry Reno
2010-04-27  2:48                                               ` Gerry Reno
2010-04-27  9:15                                                 ` Pasi Kärkkäinen
2010-04-27 17:35                                                   ` Gerry Reno
2010-04-29 13:54                                                     ` Gerry Reno
2010-04-29 14:41                                                       ` Mike Viau
2010-04-29 14:46                                                         ` Gerry Reno
2010-04-29 15:11                                                           ` Mike Viau
2010-04-29 16:50                                                             ` Gerry Reno
2010-04-25  6:53                         ` Gerry Reno
2010-04-25 10:22                           ` Pasi Kärkkäinen
2010-05-03 16:18 ` Konrad Rzeszutek Wilk
2010-05-03 17:18   ` Gerry Reno
2010-05-03 20:36     ` Konrad Rzeszutek Wilk
2010-05-03 21:23       ` Gerry Reno
2010-05-05  0:42         ` Gerry Reno
2010-05-05 17:54           ` AMD Phenom II 940: mm/vmalloc.c:110 vmap_page_range_noflush Konrad Rzeszutek Wilk
2010-05-06  3:18             ` Gerry Reno
2010-05-06  5:52               ` Pasi Kärkkäinen
2010-05-06 17:57                 ` Jeremy Fitzhardinge
2010-05-06 19:39                   ` Gerry Reno
2010-05-07  0:21                     ` Gerry Reno
2010-05-07  2:22                       ` Gerry Reno
2010-05-07  6:05                         ` Pasi Kärkkäinen
2010-05-07  6:21                           ` Boris Derzhavets
2010-05-07 16:44                             ` Gerry Reno
2010-05-07 21:53                               ` Gerry Reno
2010-05-08  7:20                                 ` Boris Derzhavets
2010-05-10 14:10                                 ` Konrad Rzeszutek Wilk
2010-05-10 16:03                                   ` Gerry Reno
2010-05-10 16:17                                     ` AMD Phenom II 940: Upgrade to 2.6.32.12 fixes it and upgrades CPU from 3.1Ghz to 1.2Thz! Konrad Rzeszutek Wilk
2010-05-10 16:40                                       ` Dan Magenheimer
2010-05-10 17:40                                         ` Gerry Reno
2010-05-10 17:56                                         ` Jeremy Fitzhardinge

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.