linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* console issue since 3.6, console=ttyS1 hangs
@ 2016-10-17 14:49 Nathan Zimmer
  2016-10-17 15:19 ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-17 14:49 UTC (permalink / raw)
  To: linux-kernel, linux-serial, sean, gregkh, alan

A cluster client recently tried to update from Sles11 to Sles12 and found in
some cases the boxes would hang in early boot.  It came down to console=ttyS1
on the command line.  After a bisection I found it happended in here:

commit 835d844d1a28efba81d5aca7385e24c29d3a6db2
Author: Sean Young <sean@mess.org>
Date:   Fri Sep 7 19:06:23 2012 +0100

    8250_pnp: do pnp probe before legacy probe


I found I can revert the part of the patch in 8250.c (now 8250_core.c) and
the hangs do not happen.

Bios of the offending box ( I don't know if there a bios update )
Version 2.15.1234. Copyright (C) 2012 American Megatrends, Inc.
BIOS Date: 02/05/2014 13:45:09
Ver: ma2e2054.16I

I don't have much more info but will collect anything that is asked.
Any help would be appeciated.

Nate

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-17 14:49 console issue since 3.6, console=ttyS1 hangs Nathan Zimmer
@ 2016-10-17 15:19 ` Sean Young
  2016-10-17 16:41   ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-17 15:19 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan

On Mon, Oct 17, 2016 at 09:49:51AM -0500, Nathan Zimmer wrote:
> A cluster client recently tried to update from Sles11 to Sles12 and found in
> some cases the boxes would hang in early boot.  It came down to console=ttyS1
> on the command line.  After a bisection I found it happended in here:
> 
> commit 835d844d1a28efba81d5aca7385e24c29d3a6db2
> Author: Sean Young <sean@mess.org>
> Date:   Fri Sep 7 19:06:23 2012 +0100
> 
>     8250_pnp: do pnp probe before legacy probe
> 
> 
> I found I can revert the part of the patch in 8250.c (now 8250_core.c) and
> the hangs do not happen.
> 
> Bios of the offending box ( I don't know if there a bios update )
> Version 2.15.1234. Copyright (C) 2012 American Megatrends, Inc.
> BIOS Date: 02/05/2014 13:45:09
> Ver: ma2e2054.16I
> 
> I don't have much more info but will collect anything that is asked.
> Any help would be appeciated.

The console output would be helpful (both before 3.6 and with 3.6). It 
could be that what the bios provides in pnp does not match the actual
config.

The output of:

cat /sys/bus/pnp/drivers/serial/*/resources

Would be helpful, thanks.


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-17 15:19 ` Sean Young
@ 2016-10-17 16:41   ` Nathan Zimmer
  2016-10-18 16:40     ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-17 16:41 UTC (permalink / raw)
  To: Sean Young; +Cc: Nathan Zimmer, linux-kernel, linux-serial, gregkh, alan

Ok I'll get that sometime tomorrow.  Right now they pulled it down maintenance...

On Mon, Oct 17, 2016 at 04:19:07PM +0100, Sean Young wrote:
> On Mon, Oct 17, 2016 at 09:49:51AM -0500, Nathan Zimmer wrote:
> > A cluster client recently tried to update from Sles11 to Sles12 and found in
> > some cases the boxes would hang in early boot.  It came down to console=ttyS1
> > on the command line.  After a bisection I found it happended in here:
> > 
> > commit 835d844d1a28efba81d5aca7385e24c29d3a6db2
> > Author: Sean Young <sean@mess.org>
> > Date:   Fri Sep 7 19:06:23 2012 +0100
> > 
> >     8250_pnp: do pnp probe before legacy probe
> > 
> > 
> > I found I can revert the part of the patch in 8250.c (now 8250_core.c) and
> > the hangs do not happen.
> > 
> > Bios of the offending box ( I don't know if there a bios update )
> > Version 2.15.1234. Copyright (C) 2012 American Megatrends, Inc.
> > BIOS Date: 02/05/2014 13:45:09
> > Ver: ma2e2054.16I
> > 
> > I don't have much more info but will collect anything that is asked.
> > Any help would be appeciated.
> 
> The console output would be helpful (both before 3.6 and with 3.6). It 
> could be that what the bios provides in pnp does not match the actual
> config.
> 
> The output of:
> 
> cat /sys/bus/pnp/drivers/serial/*/resources
> 
> Would be helpful, thanks.
> 
> 
> Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-17 16:41   ` Nathan Zimmer
@ 2016-10-18 16:40     ` Nathan Zimmer
  2016-10-18 18:05       ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-18 16:40 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: Sean Young, linux-kernel, linux-serial, gregkh, alan

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

3.7.0
cat /sys/bus/pnp/drivers/serial/*/resources
state = active
io 0x2f8-0x2ff
irq 12
dma disabled

3.6.0
:~ # cat /sys/bus/pnp/drivers/serial/*/resources
cat: /sys/bus/pnp/drivers/serial/*/resources: No such file or directory

Which is intresting.
So I thought tacking on "tail /sys/devices/pnp0/*/resources" might be helpful.



On Mon, Oct 17, 2016 at 11:41:40AM -0500, Nathan Zimmer wrote:
> Ok I'll get that sometime tomorrow.  Right now they pulled it down maintenance...
> 
> On Mon, Oct 17, 2016 at 04:19:07PM +0100, Sean Young wrote:
> > On Mon, Oct 17, 2016 at 09:49:51AM -0500, Nathan Zimmer wrote:
> > > A cluster client recently tried to update from Sles11 to Sles12 and found in
> > > some cases the boxes would hang in early boot.  It came down to console=ttyS1
> > > on the command line.  After a bisection I found it happended in here:
> > > 
> > > commit 835d844d1a28efba81d5aca7385e24c29d3a6db2
> > > Author: Sean Young <sean@mess.org>
> > > Date:   Fri Sep 7 19:06:23 2012 +0100
> > > 
> > >     8250_pnp: do pnp probe before legacy probe
> > > 
> > > 
> > > I found I can revert the part of the patch in 8250.c (now 8250_core.c) and
> > > the hangs do not happen.
> > > 
> > > Bios of the offending box ( I don't know if there a bios update )
> > > Version 2.15.1234. Copyright (C) 2012 American Megatrends, Inc.
> > > BIOS Date: 02/05/2014 13:45:09
> > > Ver: ma2e2054.16I
> > > 
> > > I don't have much more info but will collect anything that is asked.
> > > Any help would be appeciated.
> > 
> > The console output would be helpful (both before 3.6 and with 3.6). It 
> > could be that what the bios provides in pnp does not match the actual
> > config.
> > 
> > The output of:
> > 
> > cat /sys/bus/pnp/drivers/serial/*/resources
> > 
> > Would be helpful, thanks.
> > 
> > 
> > Sean

[-- Attachment #2: info_3.6.0 --]
[-- Type: text/plain, Size: 2433 bytes --]

==> /sys/devices/pnp0/00:00/resources <==
bus 0x0-0x7e
io 0xcf8-0xcff
io 0x0-0x3af window
io 0x3e0-0xcf7 window
io 0x3b0-0x3df window
io 0xd00-0x9fff window
mem 0xa0000-0xbffff window
mem 0xc0000-0xdffff window
mem 0x90000000-0xe7ffffff window
mem 0x380000000000-0x380fffffffff window

==> /sys/devices/pnp0/00:01/resources <==
state = active
mem 0xfc000000-0xfcffffff
mem 0xfd000000-0xfdffffff
mem 0xfe000000-0xfeafffff
mem 0xfeb00000-0xfebfffff
mem 0xfed00400-0xfed3ffff
mem 0xfed45000-0xfedfffff

==> /sys/devices/pnp0/00:02/resources <==
state = active
mem 0xe7ffc000-0xe7ffdfff

==> /sys/devices/pnp0/00:03/resources <==
state = active
io disabled
io 0xa00-0xa1f

==> /sys/devices/pnp0/00:04/resources <==
state = disabled

==> /sys/devices/pnp0/00:05/resources <==
state = active
dma 4
io 0x0-0xf
io 0x81-0x83
io 0x87-0x87
io 0x89-0x8b
io 0x8f-0x8f
io 0xc0-0xdf

==> /sys/devices/pnp0/00:06/resources <==
state = active
io 0x70-0x71
irq 8

==> /sys/devices/pnp0/00:07/resources <==
state = active
io 0x61-0x61

==> /sys/devices/pnp0/00:08/resources <==
io 0x65-0x6f
io 0x72-0x7f
io 0x80-0x80
io 0x84-0x86
io 0x88-0x88
io 0x8c-0x8e
io 0x90-0x9f
io 0xa2-0xbf
io 0xe0-0xef
io 0x4d0-0x4d1

==> /sys/devices/pnp0/00:09/resources <==
state = active
io 0xf0-0xff
irq 13

==> /sys/devices/pnp0/00:0a/resources <==
state = active
io 0xca2-0xca2
io 0xca3-0xca3

==> /sys/devices/pnp0/00:0b/resources <==
state = active
io 0x400-0x453
io 0x458-0x47f
io 0x1180-0x119f
io 0x500-0x57f
mem 0xfed1c000-0xfed1ffff
mem 0xfec00000-0xfecfffff
mem 0xfed08000-0xfed08fff
mem 0xff000000-0xffffffff

==> /sys/devices/pnp0/00:0c/resources <==
state = active
io 0x454-0x457

==> /sys/devices/pnp0/00:0d/resources <==
state = active
mem 0xfed00000-0xfed003ff

==> /sys/devices/pnp0/00:0e/resources <==
state = active
bus 0x7f-0x7f

==> /sys/devices/pnp0/00:0f/resources <==
state = active
bus 0x80-0xfe
io 0x0-0x0 window
io 0xa000-0xffff window
mem 0x0-0x0 window
mem 0xe8000000-0xfbffffff window
mem 0x381000000000-0x381fffffffff window

==> /sys/devices/pnp0/00:10/resources <==
state = active

==> /sys/devices/pnp0/00:11/resources <==
state = active
mem 0xfbffe000-0xfbffffff

==> /sys/devices/pnp0/00:12/resources <==
state = active
bus 0xff-0xff

setserial
/dev/ttyS0, UART: unknown, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 3
/dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: 4
/dev/ttyS3, UART: unknown, Port: 0x02e8, IRQ: 3

[-- Attachment #3: info_3.7.0 --]
[-- Type: text/plain, Size: 2466 bytes --]

==> /sys/devices/pnp0/00:00/resources <==
bus 0x0-0x7e
io 0xcf8-0xcff
io 0x0-0x3af window
io 0x3e0-0xcf7 window
io 0x3b0-0x3df window
io 0xd00-0x9fff window
mem 0xa0000-0xbffff window
mem 0xc0000-0xdffff window
mem 0x90000000-0xe7ffffff window
mem 0x380000000000-0x380fffffffff window

==> /sys/devices/pnp0/00:01/resources <==
state = active
mem 0xfc000000-0xfcffffff
mem 0xfd000000-0xfdffffff
mem 0xfe000000-0xfeafffff
mem 0xfeb00000-0xfebfffff
mem 0xfed00400-0xfed3ffff
mem 0xfed45000-0xfedfffff

==> /sys/devices/pnp0/00:02/resources <==
state = active
mem 0xe7ffc000-0xe7ffdfff

==> /sys/devices/pnp0/00:03/resources <==
state = active
io disabled
io 0xa00-0xa1f

==> /sys/devices/pnp0/00:04/resources <==
state = active
io 0x2f8-0x2ff
irq 12
dma disabled

==> /sys/devices/pnp0/00:05/resources <==
state = active
dma 4
io 0x0-0xf
io 0x81-0x83
io 0x87-0x87
io 0x89-0x8b
io 0x8f-0x8f
io 0xc0-0xdf

==> /sys/devices/pnp0/00:06/resources <==
state = active
io 0x70-0x71
irq 8

==> /sys/devices/pnp0/00:07/resources <==
state = active
io 0x61-0x61

==> /sys/devices/pnp0/00:08/resources <==
io 0x65-0x6f
io 0x72-0x7f
io 0x80-0x80
io 0x84-0x86
io 0x88-0x88
io 0x8c-0x8e
io 0x90-0x9f
io 0xa2-0xbf
io 0xe0-0xef
io 0x4d0-0x4d1

==> /sys/devices/pnp0/00:09/resources <==
state = active
io 0xf0-0xff
irq 13

==> /sys/devices/pnp0/00:0a/resources <==
state = active
io 0xca2-0xca2
io 0xca3-0xca3

==> /sys/devices/pnp0/00:0b/resources <==
state = active
io 0x400-0x453
io 0x458-0x47f
io 0x1180-0x119f
io 0x500-0x57f
mem 0xfed1c000-0xfed1ffff
mem 0xfec00000-0xfecfffff
mem 0xfed08000-0xfed08fff
mem 0xff000000-0xffffffff

==> /sys/devices/pnp0/00:0c/resources <==
state = active
io 0x454-0x457

==> /sys/devices/pnp0/00:0d/resources <==
state = active
mem 0xfed00000-0xfed003ff

==> /sys/devices/pnp0/00:0e/resources <==
state = active
bus 0x7f-0x7f

==> /sys/devices/pnp0/00:0f/resources <==
state = active
bus 0x80-0xfe
io 0x0-0x0 window
io 0xa000-0xffff window
mem 0x0-0x0 window
mem 0xe8000000-0xfbffffff window
mem 0x381000000000-0x381fffffffff window

==> /sys/devices/pnp0/00:10/resources <==
state = active

==> /sys/devices/pnp0/00:11/resources <==
state = active
mem 0xfbffe000-0xfbffffff

==> /sys/devices/pnp0/00:12/resources <==
state = active
bus 0xff-0xff
setserial
/dev/ttyS0, UART: unknown, Port: 0x03f8, IRQ: 4
/dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 12
/dev/ttyS2, UART: unknown, Port: 0x03e8, IRQ: 4
/dev/ttyS3, UART: unknown, Port: 0x02e8, IRQ: 3

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-18 16:40     ` Nathan Zimmer
@ 2016-10-18 18:05       ` Sean Young
  2016-10-18 19:29         ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-18 18:05 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan

On Tue, Oct 18, 2016 at 11:40:04AM -0500, Nathan Zimmer wrote:
> 3.7.0
> cat /sys/bus/pnp/drivers/serial/*/resources
> state = active
> io 0x2f8-0x2ff
> irq 12
> dma disabled
> 
> 3.6.0
> :~ # cat /sys/bus/pnp/drivers/serial/*/resources
> cat: /sys/bus/pnp/drivers/serial/*/resources: No such file or directory

irq 12 for ttyS1? That should be irq 3. The bios is putting bogus information
in pnp. Maybe there is rubbish in the bios setup or maybe it's fixed in a 
newer bios update.

So before this change, the kernel would assume irq 3. After this change,
the kernel first uses the information in pnp to see where the serial
port is. It gets told that it's irq 12 and presumably it runs into all
sorts of problems then. If memory serves that's the irq for the ps/2 mouse.

The interesting bit is in 3.6.0:

setserial
/dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 3

becomes in 3.7.0:

setserial
/dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 12

You should be able to set the right irq with setserial, but obviously
that doesn't help you if it fails in early boot. It's not immediately
obvious to me what can be done in the kernel for this. Maybe the dmesg
output could inspire, thanks.


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-18 18:05       ` Sean Young
@ 2016-10-18 19:29         ` Nathan Zimmer
  2016-10-19  9:07           ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-18 19:29 UTC (permalink / raw)
  To: Sean Young; +Cc: Nathan Zimmer, linux-kernel, linux-serial, gregkh, alan

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

On Tue, Oct 18, 2016 at 07:05:18PM +0100, Sean Young wrote:
> On Tue, Oct 18, 2016 at 11:40:04AM -0500, Nathan Zimmer wrote:
> > 3.7.0
> > cat /sys/bus/pnp/drivers/serial/*/resources
> > state = active
> > io 0x2f8-0x2ff
> > irq 12
> > dma disabled
> > 
> > 3.6.0
> > :~ # cat /sys/bus/pnp/drivers/serial/*/resources
> > cat: /sys/bus/pnp/drivers/serial/*/resources: No such file or directory
> 
> irq 12 for ttyS1? That should be irq 3. The bios is putting bogus information
> in pnp. Maybe there is rubbish in the bios setup or maybe it's fixed in a 
> newer bios update.
> 
> So before this change, the kernel would assume irq 3. After this change,
> the kernel first uses the information in pnp to see where the serial
> port is. It gets told that it's irq 12 and presumably it runs into all
> sorts of problems then. If memory serves that's the irq for the ps/2 mouse.
> 
> The interesting bit is in 3.6.0:
> 
> setserial
> /dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 3
> 
> becomes in 3.7.0:
> 
> setserial
> /dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 12
> 
> You should be able to set the right irq with setserial, but obviously
> that doesn't help you if it fails in early boot. It's not immediately
> obvious to me what can be done in the kernel for this. Maybe the dmesg
> output could inspire, thanks.
> 
> 
> Sean

Yea the changing irq seemed weird to me too but I couldn't manage a guess to why.

Here are the dmesgs.

Nate


[-- Attachment #2: dmesg_3.6.0 --]
[-- Type: text/plain, Size: 99632 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.6.0 (root@r1i2n0) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #3 SMP Mon Oct 17 20:43:34 EDT 2016
[    0.000000] Command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M loglevel=8
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008df5dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000008df5e000-0x000000008df8dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008df8e000-0x000000008e0a3fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008e0a4000-0x000000008e2c9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008e2ca000-0x000000008f336fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008f337000-0x000000008f7fffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000090000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000106fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: SGI.COM ICE-XIP119/S0751-Medina, BIOS ma2e2054 02/05/2014
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x1070000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FF000000000 write-back
[    0.000000]   1 base 001000000000 mask 3FFF80000000 write-back
[    0.000000]   2 base 000090000000 mask 3FFFF0000000 uncachable
[    0.000000]   3 base 0000A0000000 mask 3FFFE0000000 uncachable
[    0.000000]   4 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   5 base 001070000000 mask 3FFFF0000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0x90000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x8df5e max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fdba0-0x000fdbaf] mapped at [ffff8800000fdba0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000088000] 88000 size 28672
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x8df5dfff]
[    0.000000]  [mem 0x00000000-0x7fffffff] page 1G
[    0.000000]  [mem 0x80000000-0x8ddfffff] page 2M
[    0.000000]  [mem 0x8de00000-0x8df5dfff] page 4k
[    0.000000] kernel direct mapping tables up to 0x8df5dfff @ [mem 0x1fbfd000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x106fffffff]
[    0.000000]  [mem 0x100000000-0x103fffffff] page 1G
[    0.000000]  [mem 0x1040000000-0x106fffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x106fffffff @ [mem 0x8df5c000-0x8df5dfff]
[    0.000000] RAMDISK: [mem 0x36bc4000-0x37feffff]
[    0.000000] Reserving 128MB of memory at 736MB for crashkernel (System RAM: 65502MB)
[    0.000000] ACPI: RSDP 00000000000f04a0 00024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 000000008dfc5090 0009C (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 000000008dfd1cd0 0010C (v05 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 000000008dfc51b8 0CB14 (v02 ALASKA    A M I 00000201 INTL 20051117)
[    0.000000] ACPI: FACS 000000008e2c1080 00040
[    0.000000] ACPI: APIC 000000008dfd1de0 00224 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 000000008dfd2008 00044 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 000000008dfd2050 0003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: SRAT 000000008dfd2090 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.000000] ACPI: SLIT 000000008dfd2540 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.000000] ACPI: HPET 000000008dfd2570 00038 (v01 ALASKA    A M I 01072009 AMI. 00000005)
[    0.000000] ACPI: PRAD 000000008dfd25a8 000BE (v02 PRADID  PRADTID 00000001 MSFT 03000001)
[    0.000000] ACPI: SPMI 000000008dfd2668 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
[    0.000000] ACPI: SSDT 000000008dfd26a8 D0CB0 (v02  INTEL    CpuPm 00004000 INTL 20051117)
[    0.000000] ACPI: EINJ 000000008e0a3358 00130 (v01    AMI AMI EINJ 00000000      00000000)
[    0.000000] ACPI: ERST 000000008e0a3488 00230 (v01  AMIER AMI ERST 00000000      00000000)
[    0.000000] ACPI: HEST 000000008e0a36b8 00068 (v01    AMI AMI HEST 00000000      00000000)
[    0.000000] ACPI: BERT 000000008e0a3720 00030 (v01    AMI AMI BERT 00000000      00000000)
[    0.000000] ACPI: DMAR 000000008e0a3750 00150 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x86fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x870000000-0x106fffffff]
[    0.000000] NUMA: Initialized distance table, cnt=2
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x86fffffff] -> [mem 0x00000000-0x86fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x86fffffff]
[    0.000000]   NODE_DATA [mem 0x86ffda000-0x86fffffff]
[    0.000000] Initmem setup node 1 [mem 0x870000000-0x106fffffff]
[    0.000000]   NODE_DATA [mem 0x106ffd9000-0x106fffefff]
[    0.000000] [ffffea001d880000-ffffea001d9fffff] potential offnode page_structs
[    0.000000]  [ffffea0000000000-ffffea001d9fffff] PMD -> [ffff88084fe00000-ffff88086bffffff] on node 0
[    0.000000]  [ffffea001da00000-ffffea00399fffff] PMD -> [ffff88104f600000-ffff88106b5fffff] on node 1
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x106fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0008efff]
[    0.000000]   node   0: [mem 0x00100000-0x8df5dfff]
[    0.000000]   node   0: [mem 0x100000000-0x86fffffff]
[    0.000000]   node   1: [mem 0x870000000-0x106fffffff]
[    0.000000] On node 0 totalpages: 8380125
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 7 pages reserved
[    0.000000]   DMA zone: 3904 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 563094 pages, LIFO batch:31
[    0.000000]   Normal zone: 106624 pages used for memmap
[    0.000000]   Normal zone: 7692160 pages, LIFO batch:31
[    0.000000] On node 1 totalpages: 8388608
[    0.000000]   Normal zone: 114688 pages used for memmap
[    0.000000]   Normal zone: 8273920 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x10] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x12] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x14] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x16] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x32] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x34] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x36] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x38] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x33] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x35] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x37] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x39] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 88
[    0.000000] PM: Registered nosave memory: 000000000008f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000008df5e000 - 000000008df8e000
[    0.000000] PM: Registered nosave memory: 000000008df8e000 - 000000008e0a4000
[    0.000000] PM: Registered nosave memory: 000000008e0a4000 - 000000008e2ca000
[    0.000000] PM: Registered nosave memory: 000000008e2ca000 - 000000008f337000
[    0.000000] PM: Registered nosave memory: 000000008f337000 - 000000008f800000
[    0.000000] PM: Registered nosave memory: 000000008f800000 - 0000000090000000
[    0.000000] PM: Registered nosave memory: 0000000090000000 - 00000000a0000000
[    0.000000] PM: Registered nosave memory: 00000000a0000000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
[    0.000000] PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
[    0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[    0.000000] e820: [mem 0xa0000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88086fc00000 s79232 r8192 d23168 u131072
[    0.000000] pcpu-alloc: s79232 r8192 d23168 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 16 17 18 19 20 21 22 23 
[    0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 24 25 26 27 28 29 30 31 
[    0.000000] Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 16533078
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M loglevel=8
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 65919052k/68943872k available (4436k kernel code, 1868940k absent, 1155880k reserved, 6577k data, 1344k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=4096 to nr_cpu_ids=32.
[    0.000000] NR_IRQS:262400 nr_irqs:1752 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 2299.857 MHz processor
[    0.000011] Calibrating delay loop (skipped), value calculated using timer frequency.. 4599.71 BogoMIPS (lpj=9199428)
[    0.000339] pid_max: default: 32768 minimum: 301
[    0.000545] Security Framework initialized
[    0.000715] AppArmor: AppArmor initialized
[    0.005031] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.019266] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.025411] Mount-cache hash table entries: 256
[    0.025840] Initializing cgroup subsys cpuacct
[    0.026001] Initializing cgroup subsys devices
[    0.026161] Initializing cgroup subsys freezer
[    0.026320] Initializing cgroup subsys net_cls
[    0.026479] Initializing cgroup subsys blkio
[    0.026638] Initializing cgroup subsys perf_event
[    0.026837] CPU: Physical Processor ID: 0
[    0.026993] CPU: Processor Core ID: 1
[    0.028026] mce: CPU supports 27 MCE banks
[    0.028234] CPU0: Thermal monitoring enabled (TM1)
[    0.028425] process: using mwait in idle threads
[    0.028588] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.028588] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.028588] tlb_flushall_shift is 0x6
[    0.029960] ACPI: Core revision 20120711
[    0.070278] Switched APIC routing to physical flat.
[    0.071354] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.111478] smpboot: CPU0: Genuine Intel(R) CPU  @ 2.80GHz stepping 02
[    0.220005] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
[    0.221078] ... version:                3
[    0.221535] ... bit width:              48
[    0.221993] ... generic registers:      4
[    0.222447] ... value mask:             0000ffffffffffff
[    0.222906] ... max period:             000000007fffffff
[    0.223365] ... fixed-purpose events:   3
[    0.223821] ... event mask:             000000070000000f
[    0.225279] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.226534] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.330125] smpboot: Booting Node   1, Processors  #8 #9 #10 #11 #12 #13 #14 #15 OK
[    0.546502] smpboot: Booting Node   0, Processors  #16 #17 #18 #19 #20 #21 #22 #23 OK
[    0.661767] smpboot: Booting Node   1, Processors  #24 #25 #26 #27 #28 #29 #30 #31 OK
[    0.782760] Brought up 32 CPUs
[    0.783220] smpboot: Total of 32 processors activated (147194.08 BogoMIPS)
[    0.862906] devtmpfs: initialized
[    0.871448] PM: Registering ACPI NVS region [mem 0x8e0a4000-0x8e2c9fff] (2252800 bytes)
[    0.872352] PM: Registering ACPI NVS region [mem 0x8f337000-0x8f7fffff] (5017600 bytes)
[    0.873449] dummy: 
[    0.873939] RTC time: 15:37:15, date: 10/18/16
[    0.874546] NET: Registered protocol family 16
[    0.875215] ACPI: bus type pci registered
[    0.875750] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x90000000-0x9fffffff] (base 0x90000000)
[    0.876590] PCI: MMCONFIG at [mem 0x90000000-0x9fffffff] reserved in E820
[    0.898105] PCI: Using configuration type 1 for base access
[    0.900753] bio: create slab <bio-0> at 0
[    0.901473] ACPI: Added _OSI(Module Device)
[    0.901929] ACPI: Added _OSI(Processor Device)
[    0.902385] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.902842] ACPI: Added _OSI(Processor Aggregator Device)
[    0.914672] ACPI: EC: Look up EC in DSDT
[    0.915587] \_SB_:_OSC invalid UUID
[    0.916047] _OSC request data:1 1f 
[    0.927451] ACPI: Executed 1 blocks of module-level executable AML code
[    1.195534] ACPI: Dynamic OEM Table Load:
[    1.196146] ACPI: PRAD           (null) 000BE (v02 PRADID  PRADTID 00000001 MSFT 03000001)
[    1.203530] ACPI: Interpreter enabled
[    1.203989] ACPI: (supports S0 S4 S5)
[    1.204686] ACPI: Using IOAPIC for interrupt routing
[    1.227481] ACPI: No dock devices found.
[    1.227953] HEST: Table parsing has been initialized.
[    1.228413] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.229655] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    1.230577] PCI host bridge to bus 0000:00
[    1.231036] pci_bus 0000:00: busn_res: [bus 00-7e] is inserted under domain [bus 00-ff]
[    1.231875] pci_bus 0000:00: root bus resource [bus 00-7e]
[    1.232337] pci_bus 0000:00: root bus resource [io  0x0000-0x03af]
[    1.232798] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
[    1.233258] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
[    1.233719] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff]
[    1.234180] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    1.234643] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
[    1.235106] pci_bus 0000:00: root bus resource [mem 0x90000000-0xe7ffffff]
[    1.235576] pci_bus 0000:00: root bus resource [mem 0x380000000000-0x380fffffffff]
[    1.236420] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    1.236936] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.237421] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    1.237945] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.238429] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    1.238953] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.239446] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    1.239973] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.240457] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    1.240980] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.241469] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    1.241993] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.242480] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    1.243014] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    1.243550] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    1.244018] pci 0000:00:05.4: reg 10: [mem 0xe7f06000-0xe7f06fff]
[    1.244557] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    1.245103] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    1.245655] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    1.246150] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    1.246630] pci 0000:00:16.0: reg 10: [mem 0xe7f05000-0xe7f0500f 64bit]
[    1.247163] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    1.247646] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    1.248127] pci 0000:00:16.1: reg 10: [mem 0xe7f04000-0xe7f0400f 64bit]
[    1.248659] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    1.249152] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    1.249631] pci 0000:00:1a.0: reg 10: [mem 0xe7f02000-0xe7f023ff]
[    1.250180] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.250664] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    1.251203] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.251693] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    1.252231] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.252723] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    1.253202] pci 0000:00:1d.0: reg 10: [mem 0xe7f01000-0xe7f013ff]
[    1.253750] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.254233] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    1.254757] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    1.255341] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    1.255820] pci 0000:00:1f.2: reg 10: [io  0x9070-0x9077]
[    1.256286] pci 0000:00:1f.2: reg 14: [io  0x9060-0x9063]
[    1.256751] pci 0000:00:1f.2: reg 18: [io  0x9050-0x9057]
[    1.257217] pci 0000:00:1f.2: reg 1c: [io  0x9040-0x9043]
[    1.257682] pci 0000:00:1f.2: reg 20: [io  0x9020-0x903f]
[    1.258146] pci 0000:00:1f.2: reg 24: [mem 0xe7f00000-0xe7f007ff]
[    1.258652] pci 0000:00:1f.2: PME# supported from D3hot
[    1.259128] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[    1.259604] pci 0000:00:1f.3: reg 10: [mem 0x380ffff01000-0x380ffff010ff 64bit]
[    1.260457] pci 0000:00:1f.3: reg 20: [io  0x9000-0x901f]
[    1.260949] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000
[    1.261429] pci 0000:00:1f.6: reg 10: [mem 0x380ffff00000-0x380ffff00fff 64bit]
[    1.262368] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-7e]
[    1.262833] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.263335] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-7e]
[    1.263800] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.264303] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-7e]
[    1.264991] pci 0000:03:00.0: [15b3:1003] type 00 class 0x028000
[    1.265703] pci 0000:03:00.0: reg 10: [mem 0xe7e00000-0xe7efffff 64bit]
[    1.266368] pci 0000:03:00.0: reg 18: [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.268788] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.269250] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    1.269716] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.270591] pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-7e]
[    1.271056] pci 0000:00:02.2: PCI bridge to [bus 04]
[    1.271560] pci_bus 0000:05: busn_res: [bus 05] is inserted under [bus 00-7e]
[    1.272031] pci 0000:05:00.0: [8086:2250] type 00 class 0x0b4000
[    1.272500] pci 0000:05:00.0: reg 10: [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.273350] pci 0000:05:00.0: reg 20: [mem 0xe7d00000-0xe7d1ffff 64bit]
[    1.273842] pci 0000:05:00.0: PME# supported from D0
[    1.279465] pci 0000:00:03.0: PCI bridge to [bus 05]
[    1.279942] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    1.280408] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.281294] pci_bus 0000:06: busn_res: [bus 06] is inserted under [bus 00-7e]
[    1.281771] pci 0000:06:00.0: [8086:1d69] type 00 class 0x010700
[    1.282248] pci 0000:06:00.0: reg 10: [mem 0x380e00c7c000-0x380e00c7ffff 64bit pref]
[    1.283097] pci 0000:06:00.0: reg 18: [mem 0x380e00800000-0x380e00bfffff 64bit pref]
[    1.283943] pci 0000:06:00.0: reg 20: [io  0x8000-0x80ff]
[    1.284504] pci 0000:06:00.0: reg 164: [mem 0x380e00c00000-0x380e00c03fff 64bit pref]
[    1.285397] pci 0000:00:11.0: PCI bridge to [bus 06]
[    1.285858] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    1.286322] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    1.286789] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.287671] pci_bus 0000:07: busn_res: [bus 07-08] is inserted under [bus 00-7e]
[    1.288532] pci 0000:07:00.0: [8086:1523] type 00 class 0x020000
[    1.289010] pci 0000:07:00.0: reg 10: [mem 0xe7b00000-0xe7b1ffff]
[    1.289494] pci 0000:07:00.0: reg 18: [io  0x7000-0x701f]
[    1.289965] pci 0000:07:00.0: reg 1c: [mem 0xe7b20000-0xe7b23fff]
[    1.290532] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    1.291053] pci 0000:07:00.0: reg 184: [mem 0x380e00e20000-0x380e00e23fff 64bit pref]
[    1.291918] pci 0000:07:00.0: reg 190: [mem 0x380e00e00000-0x380e00e03fff 64bit pref]
[    1.299456] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    1.299931] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    1.300394] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    1.300861] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.301738] pci_bus 0000:09: busn_res: [bus 09-0a] is inserted under [bus 00-7e]
[    1.302601] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400
[    1.303207] pci 0000:09:00.0: supports D1 D2
[    1.303666] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.311447] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    1.311922] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    1.312383] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.312847] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.313760] pci_bus 0000:0a: busn_res: [bus 0a] is inserted under [bus 09-0a]
[    1.314241] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000
[    1.314731] pci 0000:0a:00.0: reg 10: [mem 0xe7000000-0xe77fffff pref]
[    1.315205] pci 0000:0a:00.0: reg 14: [mem 0xe7a00000-0xe7a1ffff]
[    1.315683] pci 0000:0a:00.0: reg 18: [io  0x6000-0x607f]
[    1.316260] pci 0000:0a:00.0: supports D1 D2
[    1.316714] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.317263] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    1.317725] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    1.318187] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.318654] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.319518] pci_bus 0000:0b: busn_res: [bus 0b] is inserted under [bus 00-7e]
[    1.320016] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    1.320485] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    1.321316] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    1.322146] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    1.322976] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff] (subtractive decode)
[    1.323810] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    1.324642] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    1.325474] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xe7ffffff] (subtractive decode)
[    1.326305] pci 0000:00:1e.0:   bridge window [mem 0x380000000000-0x380fffffffff] (subtractive decode)
[    1.327173] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[    1.327633] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.328259] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[    1.328789] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PA._PRT]
[    1.329272] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
[    1.329768] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE2._PRT]
[    1.330257] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
[    1.330752] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE5._PRT]
[    1.331248] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
[    1.331864]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    1.332513]  pci0000:00: ACPI _OSC control (0x1d) granted
[    1.342252] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    1.342773] PCI host bridge to bus 0000:7f
[    1.343228] pci_bus 0000:7f: busn_res: [bus 7f] is inserted under domain [bus 00-ff]
[    1.354083] pci_bus 0000:7f: root bus resource [bus 7f]
[    1.354547] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[    1.355040] pci 0000:7f:08.3: [8086:0e83] type 00 class 0x088000
[    1.355542] pci 0000:7f:08.4: [8086:0e84] type 00 class 0x088000
[    1.356047] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[    1.356538] pci 0000:7f:09.3: [8086:0e93] type 00 class 0x088000
[    1.357042] pci 0000:7f:09.4: [8086:0e94] type 00 class 0x088000
[    1.357545] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.358028] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.358513] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.358998] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.359490] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.359976] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.360463] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.360949] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.361436] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.361922] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.362407] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.362894] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.363380] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.363868] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.364354] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.364841] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.365329] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.365820] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[    1.366317] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.366815] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[    1.367314] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.367815] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[    1.368315] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[    1.368814] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[    1.369314] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[    1.369814] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[    1.370313] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[    1.370810] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[    1.371310] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[    1.371811] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[    1.372312] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000
[    1.372810] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[    1.373312] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[    1.373796] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[    1.374284] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[    1.374775] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[    1.375267] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[    1.375755] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[    1.376242] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[    1.376737] pci_bus 0000:7f: on NUMA node 0 (pxm 0)
[    1.377207]  pci0000:7f: Requesting ACPI _OSC control (0x1d)
[    1.377687]  pci0000:7f: ACPI _OSC control (0x1d) granted
[    1.379210] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    1.380081] PCI host bridge to bus 0000:80
[    1.380536] pci_bus 0000:80: busn_res: [bus 80-fe] is inserted under domain [bus 00-ff]
[    1.381367] pci_bus 0000:80: root bus resource [bus 80-fe]
[    1.381825] pci_bus 0000:80: root bus resource [io  0xa000-0xffff]
[    1.382284] pci_bus 0000:80: root bus resource [mem 0xe8000000-0xfbffffff]
[    1.382744] pci_bus 0000:80: root bus resource [mem 0x381000000000-0x381fffffffff]
[    1.383593] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400
[    1.384121] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    1.384610] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400
[    1.385136] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    1.385623] pci 0000:80:01.1: [8086:0e03] type 01 class 0x060400
[    1.386149] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    1.386643] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400
[    1.387170] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    1.387657] pci 0000:80:02.2: [8086:0e06] type 01 class 0x060400
[    1.388185] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[    1.388675] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400
[    1.389203] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    1.389689] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000
[    1.390230] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000
[    1.390770] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020
[    1.391235] pci 0000:80:05.4: reg 10: [mem 0xfbf00000-0xfbf00fff]
[    1.391781] pci 0000:80:07.0: [8086:0e18] type 00 class 0x088000
[    1.392370] pci_bus 0000:81: busn_res: [bus 81] is inserted under [bus 80-fe]
[    1.392832] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.393335] pci_bus 0000:82: busn_res: [bus 82] is inserted under [bus 80-fe]
[    1.393795] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.394299] pci_bus 0000:83: busn_res: [bus 83] is inserted under [bus 80-fe]
[    1.394761] pci 0000:80:01.1: PCI bridge to [bus 83]
[    1.395265] pci_bus 0000:84: busn_res: [bus 84] is inserted under [bus 80-fe]
[    1.395728] pci 0000:80:02.0: PCI bridge to [bus 84]
[    1.396232] pci_bus 0000:85: busn_res: [bus 85] is inserted under [bus 80-fe]
[    1.396694] pci 0000:80:02.2: PCI bridge to [bus 85]
[    1.397196] pci_bus 0000:86: busn_res: [bus 86] is inserted under [bus 80-fe]
[    1.397663] pci 0000:86:00.0: [8086:2250] type 00 class 0x0b4000
[    1.398131] pci 0000:86:00.0: reg 10: [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.398978] pci 0000:86:00.0: reg 20: [mem 0xfbe00000-0xfbe1ffff 64bit]
[    1.399473] pci 0000:86:00.0: PME# supported from D0
[    1.400052] pci 0000:80:03.0: PCI bridge to [bus 86]
[    1.400512] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.400975] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.401830] pci_bus 0000:80: on NUMA node 1 (pxm 1)
[    1.402286] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT]
[    1.402981]  pci0000:80: Requesting ACPI _OSC control (0x1d)
[    1.403632]  pci0000:80: ACPI _OSC control (0x1d) granted
[    1.405854] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    1.406375] PCI host bridge to bus 0000:ff
[    1.406831] pci_bus 0000:ff: busn_res: [bus ff] is inserted under domain [bus 00-ff]
[    1.407665] pci_bus 0000:ff: root bus resource [bus ff]
[    1.408131] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    1.408631] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    1.409142] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    1.409654] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    1.410152] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    1.410661] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    1.411175] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.411671] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.412164] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.412657] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.413153] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.413643] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.414135] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.414625] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.415117] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.415610] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.416106] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.416598] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.417090] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.417582] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.418072] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.418563] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.419057] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.419560] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    1.420069] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.420579] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    1.421089] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.421597] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    1.422106] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    1.422615] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    1.423124] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    1.423636] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    1.424145] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    1.424655] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    1.425162] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    1.425673] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    1.426181] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    1.426691] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    1.427198] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    1.427690] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    1.428183] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    1.428678] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    1.429175] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    1.429666] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    1.430157] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    1.430658] pci_bus 0000:ff: on NUMA node 1 (pxm 1)
[    1.431130]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
[    1.431611]  pci0000:ff: ACPI _OSC control (0x1d) granted
[    1.432887] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.434304] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.435717] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
[    1.437051] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    1.438383] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.440240] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.442092] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.443947] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    1.445462] vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.446329] vgaarb: loaded
[    1.446780] vgaarb: bridge control possible 0000:0a:00.0
[    1.447359] PCI: Using ACPI for IRQ routing
[    1.452371] PCI: pci_cache_line_size set to 64 bytes
[    1.453132] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    1.453590] e820: reserve RAM buffer [mem 0x8df5e000-0x8fffffff]
[    1.454147] NetLabel: Initializing
[    1.454599] NetLabel:  domain hash size = 128
[    1.455053] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.455522] NetLabel:  unlabeled traffic allowed by default
[    1.455994] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.457131] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.459645] Switching to clocksource hpet
[    1.462039] AppArmor: AppArmor Filesystem Enabled
[    1.462539] pnp: PnP ACPI init
[    1.473070] ACPI: bus type pnp registered
[    1.473804] pnp 00:00: [bus 00-7e]
[    1.474259] pnp 00:00: [io  0x0cf8-0x0cff]
[    1.474714] pnp 00:00: [io  0x0000-0x03af window]
[    1.475170] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    1.475627] pnp 00:00: [io  0x03b0-0x03df window]
[    1.476090] pnp 00:00: [io  0x0d00-0x9fff window]
[    1.476546] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    1.477006] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    1.477464] pnp 00:00: [mem 0x90000000-0xe7ffffff window]
[    1.477924] pnp 00:00: [mem 0x380000000000-0x380fffffffff window]
[    1.478450] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.479287] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[    1.479744] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[    1.480208] pnp 00:01: [mem 0xfe000000-0xfeafffff]
[    1.480665] pnp 00:01: [mem 0xfeb00000-0xfebfffff]
[    1.481123] pnp 00:01: [mem 0xfed00400-0xfed3ffff]
[    1.481579] pnp 00:01: [mem 0xfed45000-0xfedfffff]
[    1.482124] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.482586] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.483046] system 00:01: [mem 0xfe000000-0xfeafffff] has been reserved
[    1.483507] system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
[    1.483966] system 00:01: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    1.484429] system 00:01: [mem 0xfed45000-0xfedfffff] has been reserved
[    1.484889] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.485409] pnp 00:02: [mem 0xe7ffc000-0xe7ffdfff]
[    1.485944] system 00:02: [mem 0xe7ffc000-0xe7ffdfff] has been reserved
[    1.486405] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.486942] pnp 00:03: [io  0x0000-0xffffffffffffffff disabled]
[    1.487401] pnp 00:03: [io  0x0a00-0x0a1f]
[    1.487931] system 00:03: [io  0x0a00-0x0a1f] has been reserved
[    1.488395] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.489055] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (disabled)
[    1.489529] pnp 00:05: [dma 4]
[    1.489980] pnp 00:05: [io  0x0000-0x000f]
[    1.490433] pnp 00:05: [io  0x0081-0x0083]
[    1.490885] pnp 00:05: [io  0x0087]
[    1.491337] pnp 00:05: [io  0x0089-0x008b]
[    1.491789] pnp 00:05: [io  0x008f]
[    1.492252] pnp 00:05: [io  0x00c0-0x00df]
[    1.492724] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.493193] pnp 00:06: [io  0x0070-0x0071]
[    1.493653] pnp 00:06: [irq 8]
[    1.494125] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.494593] pnp 00:07: [io  0x0061]
[    1.495065] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
[    1.495555] pnp 00:08: [io  0x0010-0x001f]
[    1.496010] pnp 00:08: [io  0x0022-0x003f]
[    1.496469] pnp 00:08: [io  0x0044-0x005f]
[    1.496924] pnp 00:08: [io  0x0062-0x0063]
[    1.497377] pnp 00:08: [io  0x0065-0x006f]
[    1.497833] pnp 00:08: [io  0x0072-0x007f]
[    1.498287] pnp 00:08: [io  0x0080]
[    1.498742] pnp 00:08: [io  0x0084-0x0086]
[    1.499195] pnp 00:08: [io  0x0088]
[    1.499650] pnp 00:08: [io  0x008c-0x008e]
[    1.500109] pnp 00:08: [io  0x0090-0x009f]
[    1.500563] pnp 00:08: [io  0x00a2-0x00bf]
[    1.501018] pnp 00:08: [io  0x00e0-0x00ef]
[    1.501475] pnp 00:08: [io  0x04d0-0x04d1]
[    1.502014] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    1.502470] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.502939] pnp 00:09: [io  0x00f0-0x00ff]
[    1.503396] pnp 00:09: [irq 13]
[    1.503870] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.504439] pnp 00:0a: [io  0x0ca2]
[    1.504893] pnp 00:0a: [io  0x0ca3]
[    1.505367] pnp 00:0a: Plug and Play ACPI device, IDs IPI0001 (active)
[    1.506037] pnp 00:0b: [io  0x0400-0x0453]
[    1.506490] pnp 00:0b: [io  0x0458-0x047f]
[    1.506943] pnp 00:0b: [io  0x1180-0x119f]
[    1.507397] pnp 00:0b: [io  0x0500-0x057f]
[    1.507855] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff]
[    1.508315] pnp 00:0b: [mem 0xfec00000-0xfecfffff]
[    1.508771] pnp 00:0b: [mem 0xfed08000-0xfed08fff]
[    1.509223] pnp 00:0b: [mem 0xff000000-0xffffffff]
[    1.509766] system 00:0b: [io  0x0400-0x0453] has been reserved
[    1.510226] system 00:0b: [io  0x0458-0x047f] has been reserved
[    1.510685] system 00:0b: [io  0x1180-0x119f] has been reserved
[    1.511142] system 00:0b: [io  0x0500-0x057f] has been reserved
[    1.511601] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.512067] system 00:0b: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.512529] system 00:0b: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.512990] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
[    1.513451] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.513961] pnp 00:0c: [io  0x0454-0x0457]
[    1.514499] system 00:0c: [io  0x0454-0x0457] has been reserved
[    1.514956] system 00:0c: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.515954] pnp 00:0d: [mem 0xfed00000-0xfed003ff]
[    1.516454] pnp 00:0d: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.516970] pnp 00:0e: [bus 7f]
[    1.517474] pnp 00:0e: Plug and Play ACPI device, IDs PNP0a03 (active)
[    1.518158] pnp 00:0f: [bus 80-fe]
[    1.518611] pnp 00:0f: [io  0x0000 window]
[    1.519063] pnp 00:0f: [io  0xa000-0xffff window]
[    1.519518] pnp 00:0f: [mem 0x00000000 window]
[    1.519975] pnp 00:0f: [mem 0xe8000000-0xfbffffff window]
[    1.520439] pnp 00:0f: [mem 0x381000000000-0x381fffffffff window]
[    1.520951] pnp 00:0f: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.521879] system 00:10: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.522393] pnp 00:11: [mem 0xfbffe000-0xfbffffff]
[    1.522945] system 00:11: [mem 0xfbffe000-0xfbffffff] has been reserved
[    1.523407] system 00:11: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.523936] pnp 00:12: [bus ff]
[    1.524449] pnp 00:12: Plug and Play ACPI device, IDs PNP0a03 (active)
[    1.525339] pnp: PnP ACPI: found 19 devices
[    1.525795] ACPI: ACPI bus type pnp unregistered
[    1.533705] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.534168] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.534630] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.535088] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    1.535552] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.536392] pci 0000:00:02.2: PCI bridge to [bus 04]
[    1.536854] pci 0000:00:03.0: PCI bridge to [bus 05]
[    1.537310] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    1.537771] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.538607] pci 0000:00:11.0: PCI bridge to [bus 06]
[    1.539064] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    1.539523] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    1.539988] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.540828] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    1.541284] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    1.541747] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    1.542209] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.543047] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    1.543504] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    1.543968] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.544436] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.545273] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    1.545729] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    1.546193] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.546655] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.547490] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    1.547955] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.548424] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.548889] pci 0000:80:01.1: PCI bridge to [bus 83]
[    1.549352] pci 0000:80:02.0: PCI bridge to [bus 84]
[    1.549817] pci 0000:80:02.2: PCI bridge to [bus 85]
[    1.550281] pci 0000:80:03.0: PCI bridge to [bus 86]
[    1.550738] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.551199] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.552112] pci 0000:00:1e.0: setting latency timer to 64
[    1.552629] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    1.553086] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    1.553546] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    1.554004] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff]
[    1.554461] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
[    1.554919] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
[    1.555378] pci_bus 0000:00: resource 10 [mem 0x90000000-0xe7ffffff]
[    1.555837] pci_bus 0000:00: resource 11 [mem 0x380000000000-0x380fffffffff]
[    1.556303] pci_bus 0000:03: resource 1 [mem 0xe7e00000-0xe7efffff]
[    1.556761] pci_bus 0000:03: resource 2 [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.557590] pci_bus 0000:05: resource 1 [mem 0xe7d00000-0xe7dfffff]
[    1.558051] pci_bus 0000:05: resource 2 [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.558881] pci_bus 0000:06: resource 0 [io  0x8000-0x8fff]
[    1.559337] pci_bus 0000:06: resource 1 [mem 0xe7c00000-0xe7cfffff]
[    1.559797] pci_bus 0000:06: resource 2 [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.560631] pci_bus 0000:07: resource 0 [io  0x7000-0x7fff]
[    1.561090] pci_bus 0000:07: resource 1 [mem 0xe7b00000-0xe7bfffff]
[    1.561548] pci_bus 0000:07: resource 2 [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.562377] pci_bus 0000:09: resource 0 [io  0x6000-0x6fff]
[    1.562832] pci_bus 0000:09: resource 1 [mem 0xe7a00000-0xe7afffff]
[    1.563290] pci_bus 0000:09: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.564127] pci_bus 0000:0a: resource 0 [io  0x6000-0x6fff]
[    1.564584] pci_bus 0000:0a: resource 1 [mem 0xe7a00000-0xe7afffff]
[    1.575070] pci_bus 0000:0a: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.575900] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af]
[    1.576362] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7]
[    1.576819] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df]
[    1.577278] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff]
[    1.577735] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000bffff]
[    1.578195] pci_bus 0000:0b: resource 9 [mem 0x000c0000-0x000dffff]
[    1.578656] pci_bus 0000:0b: resource 10 [mem 0x90000000-0xe7ffffff]
[    1.579114] pci_bus 0000:0b: resource 11 [mem 0x380000000000-0x380fffffffff]
[    1.579578] pci_bus 0000:80: resource 4 [io  0xa000-0xffff]
[    1.580038] pci_bus 0000:80: resource 5 [mem 0xe8000000-0xfbffffff]
[    1.580496] pci_bus 0000:80: resource 6 [mem 0x381000000000-0x381fffffffff]
[    1.580955] pci_bus 0000:86: resource 1 [mem 0xfbe00000-0xfbefffff]
[    1.581414] pci_bus 0000:86: resource 2 [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.582551] NET: Registered protocol family 2
[    1.584029] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    1.586323] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.586968] TCP: Hash tables configured (established 524288 bind 65536)
[    1.587471] TCP: reno registered
[    1.587992] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[    1.588697] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[    1.589608] NET: Registered protocol family 1
[    1.628089] pci 0000:0a:00.0: Boot video device
[    1.628695] PCI: CLS 64 bytes, default 64
[    1.629201] Unpacking initramfs...
[    2.001127] Freeing initrd memory: 20656k freed
[    2.006804] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.007267] software IO TLB [mem 0x89f5c000-0x8df5bfff] (64MB) mapped at [ffff880089f5c000-ffff88008df5bfff]
[    2.010896] audit: initializing netlink socket (disabled)
[    2.011370] type=2000 audit(1476805035.764:1): initialized
[    2.034256] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.040783] VFS: Disk quotas dquot_6.5.2
[    2.041322] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.042002] msgmni has been set to 32768
[    2.042785] alg: No test for stdrng (krng)
[    2.043357] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.044241] io scheduler noop registered
[    2.044695] io scheduler deadline registered
[    2.045236] io scheduler cfq registered (default)
[    2.046127] pcieport 0000:00:01.0: irq 88 for MSI/MSI-X
[    2.046712] pcieport 0000:00:01.1: irq 89 for MSI/MSI-X
[    2.047286] pcieport 0000:00:02.0: irq 90 for MSI/MSI-X
[    2.047875] pcieport 0000:00:02.2: irq 91 for MSI/MSI-X
[    2.048446] pcieport 0000:00:03.0: irq 92 for MSI/MSI-X
[    2.049048] pcieport 0000:00:11.0: irq 93 for MSI/MSI-X
[    2.049633] pcieport 0000:00:1c.0: irq 94 for MSI/MSI-X
[    2.050205] pcieport 0000:00:1c.4: irq 95 for MSI/MSI-X
[    2.050909] pcieport 0000:80:00.0: irq 96 for MSI/MSI-X
[    2.051541] pcieport 0000:80:01.0: irq 97 for MSI/MSI-X
[    2.052177] pcieport 0000:80:01.1: irq 98 for MSI/MSI-X
[    2.052781] pcieport 0000:80:02.0: irq 99 for MSI/MSI-X
[    2.053387] pcieport 0000:80:02.2: irq 100 for MSI/MSI-X
[    2.054004] pcieport 0000:80:03.0: irq 101 for MSI/MSI-X
[    2.054636] aer 0000:00:01.0:pcie02: service driver aer loaded
[    2.055129] aer 0000:00:01.1:pcie02: service driver aer loaded
[    2.055616] aer 0000:00:02.0:pcie02: service driver aer loaded
[    2.056115] aer 0000:00:02.2:pcie02: service driver aer loaded
[    2.056600] aer 0000:00:03.0:pcie02: service driver aer loaded
[    2.057090] aer 0000:00:11.0:pcie02: service driver aer loaded
[    2.057580] aer 0000:80:00.0:pcie02: service driver aer loaded
[    2.058071] aer 0000:80:01.0:pcie02: service driver aer loaded
[    2.058558] aer 0000:80:01.1:pcie02: service driver aer loaded
[    2.059048] aer 0000:80:02.0:pcie02: service driver aer loaded
[    2.059535] aer 0000:80:02.2:pcie02: service driver aer loaded
[    2.060039] aer 0000:80:03.0:pcie02: service driver aer loaded
[    2.060515] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    2.060978] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    2.061447] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    2.061912] pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
[    2.062379] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.062839] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    2.063298] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    2.063767] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    2.064236] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    2.064706] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    2.065168] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    2.065630] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    2.066101] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    2.066563] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    2.067027] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    2.067507] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    2.067973] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[    2.068437] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    2.068915] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    2.069379] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    2.069838] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    2.070301] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    2.070771] pcieport 0000:80:00.0: Signaling PME through PCIe PME interrupt
[    2.071235] pcie_pme 0000:80:00.0:pcie01: service driver pcie_pme loaded
[    2.071701] pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
[    2.072169] pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
[    2.072636] pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
[    2.073099] pcie_pme 0000:80:01.1:pcie01: service driver pcie_pme loaded
[    2.073569] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[    2.074032] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
[    2.074500] pcieport 0000:80:02.2: Signaling PME through PCIe PME interrupt
[    2.074961] pcie_pme 0000:80:02.2:pcie01: service driver pcie_pme loaded
[    2.075429] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[    2.075895] pci 0000:86:00.0: Signaling PME through PCIe PME interrupt
[    2.076357] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
[    2.076843] ioapic: probe of 0000:00:05.4 failed with error -22
[    2.077331] ioapic: probe of 0000:80:05.4 failed with error -22
[    2.077889] intel_idle: does not run on family 6 model 62
[    2.078424] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.079437] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.079980] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    2.100887] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    2.101715] serial 00:04: unable to assign resources
[    2.102174] serial: probe of 00:04 failed with error -16
[    2.103036] Non-volatile memory driver v1.3
[    2.103493] Linux agpgart interface v0.103
[    2.104148] libphy: Fixed MDIO Bus: probed
[    2.104656] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.105972] i8042: No controller found
[    2.106505] mousedev: PS/2 mouse device common for all mice
[    2.107027] cpuidle: using governor ladder
[    2.107483] cpuidle: using governor menu
[    2.107944] EFI Variables Facility v0.08 2004-May-17
[    2.108638] TCP: cubic registered
[    2.109105] Key type dns_resolver registered
[    2.110480] PM: Checking hibernation image partition /dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
[    2.111322] PM: Hibernation image not present or could not be loaded.
[    2.111800] registered taskstats version 1
[    2.115976]   Magic number: 4:549:639
[    2.118751] Freeing unused kernel memory: 1344k freed
[    2.119568] Write protecting the kernel read-only data: 10240k
[    2.124335] Freeing unused kernel memory: 1696k freed
[    2.130306] Freeing unused kernel memory: 1976k freed
[    2.175870] SCSI subsystem initialized
[    2.178669] ACPI: bus type scsi registered
[    2.179185] libata version 3.00 loaded.
[    2.180974] ahci 0000:00:1f.2: version 3.0
[    2.181490] ahci 0000:00:1f.2: irq 102 for MSI/MSI-X
[    2.181963] ahci 0000:00:1f.2: forcing PORTS_IMPL to 0x3f
[    2.182471] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    2.183304] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    2.184171] ahci 0000:00:1f.2: setting latency timer to 64
[    2.185110] scsi0 : ahci
[    2.185728] scsi1 : ahci
[    2.186234] scsi2 : ahci
[    2.186740] scsi3 : ahci
[    2.187245] scsi4 : ahci
[    2.187800] scsi5 : ahci
[    2.188277] ata1: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00100 irq 102
[    2.189109] ata2: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00180 irq 102
[    2.189944] ata3: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00200 irq 102
[    2.190774] ata4: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00280 irq 102
[    2.191603] ata5: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00300 irq 102
[    2.192466] ata6: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00380 irq 102
[    3.007360] tsc: Refined TSC clocksource calibration: 2299.999 MHz
[    3.007821] Switching to clocksource tsc
[    3.219230] ata4: failed to resume link (SControl 0)
[    3.219725] ata4: SATA link down (SStatus 0 SControl 0)
[    3.220204] ata6: failed to resume link (SControl 0)
[    3.220682] ata6: SATA link down (SStatus 0 SControl 0)
[    3.221161] ata1: failed to resume link (SControl 0)
[    3.221643] ata1: SATA link down (SStatus 0 SControl 0)
[    3.222122] ata2: failed to resume link (SControl 0)
[    3.222620] ata2: SATA link down (SStatus 0 SControl 0)
[    3.223101] ata3: failed to resume link (SControl 0)
[    3.223619] ata3: SATA link down (SStatus 0 SControl 0)
[    3.224097] ata5: failed to resume link (SControl 0)
[    3.224596] ata5: SATA link down (SStatus 0 SControl 0)
[    3.230768] emc: device handler registered
[    3.246084] alua: device handler registered
[    3.251133] hp_sw: device handler registered
[    3.256164] rdac: device handler registered
[    3.260394] udev: starting version 147
[    3.280028] ACPI: Requesting acpi_cpufreq
[    3.282749] Monitor-Mwait will be used to enter C-1 state
[    3.283237] Monitor-Mwait will be used to enter C-2 state
[    3.283702] ACPI: acpi_idle registered with cpuidle
[    3.289196] ACPI: bus type usb registered
[    3.289702] usbcore: registered new interface driver usbfs
[    3.290183] usbcore: registered new interface driver hub
[    3.290714] usbcore: registered new device driver usb
[    3.292717] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.293243] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.293705] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.294167] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.295096] isci: Intel(R) C600 SAS Controller Driver - version 1.1.0
[    3.298910] ehci_hcd 0000:00:1a.0: debug port 2
[    3.299376] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.299857] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xe7f02000
[    3.300393] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    3.300859] isci 0000:06:00.0: OEM parameter table found in OROM
[    3.301319] isci 0000:06:00.0: OEM SAS parameters (version: 1.0) loaded (platform)
[    3.302643] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    3.305906] scsi6 : isci
[    3.306711] isci 0000:06:00.0: irq 103 for MSI/MSI-X
[    3.307178] isci 0000:06:00.0: irq 104 for MSI/MSI-X
[    3.311198] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.311681] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.312142] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.312974] usb usb1: Product: EHCI Host Controller
[    3.313431] usb usb1: Manufacturer: Linux 3.6.0 ehci_hcd
[    3.313888] usb usb1: SerialNumber: 0000:00:1a.0
[    3.315066] hub 1-0:1.0: USB hub found
[    3.315547] hub 1-0:1.0: 2 ports detected
[    3.316262] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.316731] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.317192] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.321927] ehci_hcd 0000:00:1d.0: debug port 2
[    3.322388] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.322861] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xe7f01000
[    3.335195] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.335697] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.336159] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.336989] usb usb2: Product: EHCI Host Controller
[    3.337443] usb usb2: Manufacturer: Linux 3.6.0 ehci_hcd
[    3.337900] usb usb2: SerialNumber: 0000:00:1d.0
[    3.339176] hub 2-0:1.0: USB hub found
[    3.339634] hub 2-0:1.0: 2 ports detected
[    3.631100] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    3.763388] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.763850] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.764522] hub 1-1:1.0: USB hub found
[    3.765123] hub 1-1:1.0: 6 ports detected
[    3.874958] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    4.007264] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    4.007726] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.008403] hub 2-1:1.0: USB hub found
[    4.009004] hub 2-1:1.0: 8 ports detected
[    4.278886] usb 2-1.3: new high-speed USB device number 3 using ehci_hcd
[    4.314787] sas: phy-6:0 added to port-6:0, phy_mask:0x1 (ffffffffffffffff)
[    4.315268] sas: DOING DISCOVERY on port 0, pid:254
[    4.315750] sas: DONE DISCOVERY on port 0, pid:254, result:0
[    4.316265] sas: Enter sas_scsi_recover_host busy: 0 failed: 0
[    4.316819] sas: ata7: end_device-6:0: dev error handler
[    4.479249] ata7.00: ATA-8: WDC WD5000BHTZ-04JCPV1, 04.06A01, max UDMA/133
[    4.479710] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    4.480729] ata7.00: configured for UDMA/133
[    4.481244] sas: --- Exit sas_scsi_recover_host: busy: 0 failed: 0 tries: 1
[    4.494944] scsi 6:0:0:0: Direct-Access     ATA      WDC WD5000BHTZ-0 04.0 PQ: 0 ANSI: 5
[    4.499003] sd 6:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    4.499837] sd 6:0:0:0: [sda] 4096-byte physical blocks
[    4.500503] sd 6:0:0:0: [sda] Write Protect is off
[    4.500963] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.501481] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.511121]  sda: sda1 sda2
[    4.512177] sd 6:0:0:0: [sda] Attached SCSI disk
[    4.584233] usb 2-1.3: New USB device found, idVendor=046b, idProduct=ff01
[    4.584721] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.585562] usb 2-1.3: Product: Virtual Hub
[    4.586031] usb 2-1.3: Manufacturer: American Megatrends Inc.
[    4.586501] usb 2-1.3: SerialNumber: serial
[    4.587489] hub 2-1.3:1.0: USB hub found
[    4.588096] hub 2-1.3:1.0: 5 ports detected
[    4.664155] [drm] Initialized drm 1.1.0 20060810
[    4.669007] [drm] AST 2300 detected
[    4.669484] [drm] dram 1632000000 1 32 04000000
[    4.670020] [TTM] Zone  kernel: Available graphics memory: 32972362 kiB
[    4.670480] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.670943] [TTM] Initializing pool allocator
[    4.671401] [TTM] Initializing DMA pool allocator
[    4.671867] mtrr: type mismatch for e7000000,800000 old: write-back new: write-combining
[   14.821540] [sched_delayed] sched: RT throttling activated
[   45.255159] fbcon: astdrmfb (fb0) is primary device
[   45.477001] Console: switching to colour frame buffer device 128x48
[   45.587978] fb0: astdrmfb frame buffer device
[   45.588793] drm: registered panic notifier
[   45.589569] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[   45.615963] PM: Marking nosave pages: [mem 0x0008f000-0x000fffff]
[   45.615967] PM: Marking nosave pages: [mem 0x8df5e000-0xffffffff]
[   45.617077] PM: Basic memory bitmaps created
[   45.814462] usb 2-1.3.1: new low-speed USB device number 4 using ehci_hcd
[   45.849007] PM: Basic memory bitmaps freed
[   45.856797] PM: Starting manual resume from disk
[   45.857641] PM: Hibernation image partition 8:1 present
[   45.857642] PM: Looking for hibernation image.
[   45.857814] PM: Image not found (code -22)
[   45.857815] PM: Hibernation image not present or could not be loaded.
[   45.975756] usb 2-1.3.1: New USB device found, idVendor=046b, idProduct=ff10
[   45.977056] usb 2-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   45.978467] usb 2-1.3.1: Product: Virtual Keyboard and Mouse
[   45.979526] usb 2-1.3.1: Manufacturer: American Megatrends Inc.
[   46.036016] usbcore: registered new interface driver usbhid
[   46.037029] usbhid: USB HID core driver
[   46.105687] kjournald starting.  Commit interval 5 seconds
[   46.106270] EXT3-fs (sda2): using internal journal
[   46.106271] EXT3-fs (sda2): mounted filesystem with ordered data mode
[   46.138650] usb 2-1.3.2: new high-speed USB device number 5 using ehci_hcd
[   46.313838] usb 2-1.3.2: New USB device found, idVendor=046b, idProduct=ff20
[   46.313839] usb 2-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   46.313841] usb 2-1.3.2: Product: Virtual Cdrom Device
[   46.313842] usb 2-1.3.2: Manufacturer: American Megatrends Inc.
[   46.313843] usb 2-1.3.2: SerialNumber: AAAABBBBCCCC1
[   46.446629] usb 2-1.3.3: new high-speed USB device number 6 using ehci_hcd
[   46.621528] usb 2-1.3.3: New USB device found, idVendor=046b, idProduct=ff40
[   46.621529] usb 2-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   46.621531] usb 2-1.3.3: Product: Virtual Floppy Device
[   46.621532] usb 2-1.3.3: Manufacturer: American Megatrends Inc.
[   46.621533] usb 2-1.3.3: SerialNumber: AAAABBBBCCCC2
[   46.754473] usb 2-1.3.4: new high-speed USB device number 7 using ehci_hcd
[   46.929627] usb 2-1.3.4: New USB device found, idVendor=046b, idProduct=ff31
[   46.929628] usb 2-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   46.929629] usb 2-1.3.4: Product: Virtual HardDisk Device
[   46.929630] usb 2-1.3.4: Manufacturer: American Megatrends Inc.
[   46.929631] usb 2-1.3.4: SerialNumber: AAAABBBBCCCC3
[   48.429505] udev: starting version 147
[   48.553280] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[   48.648467] ACPI: Power Button [PWRB]
[   48.695992] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   48.744436] ACPI: Power Button [PWRF]
[   48.793547] wmi: Mapper loaded
[   48.840062] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
[   48.935982] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   48.985894] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GINV 1 (20120711/utaddress-251)
[   49.086955] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   49.139454] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   49.205550] iTCO_vendor_support: vendor-support=0
[   49.268542] mei 0000:00:16.0: Device doesn't have valid ME Interface
[   49.321069] mei 0000:00:16.0: initialization failed.
[   49.440374] microcode: CPU0 sig=0x306e2, pf=0x1, revision=0x20d
[   49.538223] Initializing USB Mass Storage driver...
[   49.590708] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[   49.590748] scsi7 : usb-storage 2-1.3.2:1.0
[   49.590756] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   49.590852] usb-storage 2-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[   49.590885] scsi8 : usb-storage 2-1.3.3:1.0
[   49.590986] scsi9 : usb-storage 2-1.3.4:1.0
[   49.591044] usbcore: registered new interface driver usb-storage
[   49.591044] USB Mass Storage support registered.
[   50.010159] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[   50.030535] microcode: CPU1 sig=0x306e2, pf=0x1, revision=0x20d
[   50.034479] microcode: CPU2 sig=0x306e2, pf=0x1, revision=0x20d
[   50.038369] microcode: CPU3 sig=0x306e2, pf=0x1, revision=0x20d
[   50.042031] microcode: CPU4 sig=0x306e2, pf=0x1, revision=0x20d
[   50.045836] microcode: CPU5 sig=0x306e2, pf=0x1, revision=0x20d
[   50.049624] microcode: CPU6 sig=0x306e2, pf=0x1, revision=0x20d
[   50.053250] microcode: CPU7 sig=0x306e2, pf=0x1, revision=0x20d
[   50.057031] microcode: CPU8 sig=0x306e2, pf=0x1, revision=0x20d
[   50.060666] microcode: CPU9 sig=0x306e2, pf=0x1, revision=0x20d
[   50.064382] microcode: CPU10 sig=0x306e2, pf=0x1, revision=0x20d
[   50.551600] microcode: CPU11 sig=0x306e2, pf=0x1, revision=0x20d
[   50.590775] scsi 8:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[   50.592011] scsi 9:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   50.592636] scsi 7:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   50.599938] sd 9:0:0:0: [sdc] Attached SCSI removable disk
[   50.600631] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[   50.819758] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   50.823199] microcode: CPU12 sig=0x306e2, pf=0x1, revision=0x20d
[   50.826780] microcode: CPU13 sig=0x306e2, pf=0x1, revision=0x20d
[   50.830446] microcode: CPU14 sig=0x306e2, pf=0x1, revision=0x20d
[   50.834110] microcode: CPU15 sig=0x306e2, pf=0x1, revision=0x20d
[   50.837669] microcode: CPU16 sig=0x306e2, pf=0x1, revision=0x20d
[   50.841278] microcode: CPU17 sig=0x306e2, pf=0x1, revision=0x20d
[   50.844847] microcode: CPU18 sig=0x306e2, pf=0x1, revision=0x20d
[   50.848429] microcode: CPU19 sig=0x306e2, pf=0x1, revision=0x20d
[   50.851949] microcode: CPU20 sig=0x306e2, pf=0x1, revision=0x20d
[   50.855509] microcode: CPU21 sig=0x306e2, pf=0x1, revision=0x20d
[   50.859015] microcode: CPU22 sig=0x306e2, pf=0x1, revision=0x20d
[   50.862586] microcode: CPU23 sig=0x306e2, pf=0x1, revision=0x20d
[   50.866179] microcode: CPU24 sig=0x306e2, pf=0x1, revision=0x20d
[   50.869736] microcode: CPU25 sig=0x306e2, pf=0x1, revision=0x20d
[   50.873267] microcode: CPU26 sig=0x306e2, pf=0x1, revision=0x20d
[   50.876789] microcode: CPU27 sig=0x306e2, pf=0x1, revision=0x20d
[   50.880337] microcode: CPU28 sig=0x306e2, pf=0x1, revision=0x20d
[   50.883895] microcode: CPU29 sig=0x306e2, pf=0x1, revision=0x20d
[   50.887425] microcode: CPU30 sig=0x306e2, pf=0x1, revision=0x20d
[   50.890864] microcode: CPU31 sig=0x306e2, pf=0x1, revision=0x20d
[   50.894436] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   51.524444] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.0/input/input3
[   51.570389] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input0
[   51.620427] NET: Registered protocol family 10
[   51.620476] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.1/input/input4
[   51.620559] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input1
[   51.861328] rtc_cmos 00:06: RTC can wake from S4
[   51.879717] sr0: scsi-1 drive
[   51.879718] cdrom: Uniform CD-ROM driver Revision: 3.20
[   51.879841] sr 7:0:0:0: Attached scsi CD-ROM sr0
[   51.982683] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[   52.015035] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   52.048644] sd 6:0:0:0: Attached scsi generic sg0 type 0
[   52.082734] sd 8:0:0:0: Attached scsi generic sg1 type 0
[   52.116849] sd 9:0:0:0: Attached scsi generic sg2 type 0
[   52.150972] sr 7:0:0:0: Attached scsi generic sg3 type 5
[   52.151671] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   52.317503] mlx4_core: Mellanox ConnectX core driver v1.1 (Dec, 2011)
[   52.351919] mlx4_core: Initializing 0000:03:00.0
[   52.390761] dca service started, version 1.12.1
[   52.458333] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[   52.564544] igb: Intel(R) Gigabit Ethernet Network Driver - version 4.0.1-k
[   52.600793] igb: Copyright (c) 2007-2012 Intel Corporation.
[   52.636754] igb 0000:07:00.0: irq 105 for MSI/MSI-X
[   52.671904] igb 0000:07:00.0: irq 106 for MSI/MSI-X
[   52.707089] igb 0000:07:00.0: irq 107 for MSI/MSI-X
[   52.742288] igb 0000:07:00.0: irq 108 for MSI/MSI-X
[   52.777484] igb 0000:07:00.0: irq 109 for MSI/MSI-X
[   52.812679] igb 0000:07:00.0: irq 110 for MSI/MSI-X
[   52.847903] igb 0000:07:00.0: irq 111 for MSI/MSI-X
[   52.883152] igb 0000:07:00.0: irq 112 for MSI/MSI-X
[   52.918410] igb 0000:07:00.0: irq 113 for MSI/MSI-X
[   53.011815] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[   53.048144] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) d4:3d:7e:72:26:b5
[   53.085373] igb 0000:07:00.0: eth0: PBA No: 106100-000
[   53.122740] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[   53.269587] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.269617] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.269620] Pid: 1087, comm: modprobe Not tainted 3.6.0 #3
[   53.269621] Call Trace:
[   53.269626] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.269628] Pid: 1090, comm: modprobe Not tainted 3.6.0 #3
[   53.269636]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.269638] Call Trace:
[   53.269641] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.269649]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.269652] Pid: 1079, comm: modprobe Not tainted 3.6.0 #3
[   53.269657]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.269659] Call Trace:
[   53.269663]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.269666]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.269671]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.269679]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.269685]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.269688]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.269693]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.269700]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.269706]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.269709]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.269714]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.269717]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.269721]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.269726]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.269732]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.269738]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.269741]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.269745]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.269753]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.269757]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.269760]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.269765]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.269769]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.269771]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.269774] kvm: Could not allocate 304 bytes percpu data
[   53.269779]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.269782]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.269788]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.269790]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.269793]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.269795] kvm: Could not allocate 304 bytes percpu data
[   53.269798]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.269800] kvm: Could not allocate 304 bytes percpu data
[   53.270504] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.270506] Pid: 1083, comm: modprobe Not tainted 3.6.0 #3
[   53.270506] Call Trace:
[   53.270510]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.270513]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.270515]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.270518]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.270520]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.270522]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.270524]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.270527]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.270530]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.270532]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.270534]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.270536] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.270537] kvm: Could not allocate 304 bytes percpu data
[   53.270539] Pid: 1105, comm: modprobe Not tainted 3.6.0 #3
[   53.270539] Call Trace:
[   53.270544]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.270546] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.270549]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.270552] Pid: 1119, comm: modprobe Not tainted 3.6.0 #3
[   53.270554] Call Trace:
[   53.270556]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.270562]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.270564]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.270568]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.270571]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.270573] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.270577] Pid: 1111, comm: modprobe Not tainted 3.6.0 #3
[   53.270579]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.270582]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.270583] Call Trace:
[   53.270587]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.270589]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.270593]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.270597]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.270600]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.270603]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.270607]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.270609]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.270612]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.270616]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.270618]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.270621]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.270624]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.270627]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.270629]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.270631] kvm: Could not allocate 304 bytes percpu data
[   53.270634]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.270636]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   53.270638]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.270640]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.270642]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.270644]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.270645] kvm: Could not allocate 304 bytes percpu data
[   53.270648]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.270650]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.270652]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   53.270654] kvm: Could not allocate 304 bytes percpu data
[   57.074201] Pid: 1092, comm: modprobe Not tainted 3.6.0 #3
[   57.110346] Call Trace:
[   57.145443]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   57.180648]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   57.215728]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   57.251000]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   57.286180]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   57.320647]  [<ffffffff8144d2ac>] ? do_page_fault+0x23c/0x490
[   57.354580]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   57.388205]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   57.421773]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   57.454807]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   57.487840]  [<ffffffff81451779>] system_call_fastpath+0x16/0x1b
[   57.520900] kvm: Could not allocate 304 bytes percpu data
[   62.265920] mlx4_core 0000:03:00.0: irq 114 for MSI/MSI-X
[   62.299554] mlx4_core 0000:03:00.0: irq 115 for MSI/MSI-X
[   62.332089] mlx4_core 0000:03:00.0: irq 116 for MSI/MSI-X
[   62.363530] mlx4_core 0000:03:00.0: irq 117 for MSI/MSI-X
[   62.394190] mlx4_core 0000:03:00.0: irq 118 for MSI/MSI-X
[   62.424302] mlx4_core 0000:03:00.0: irq 119 for MSI/MSI-X
[   62.453734] mlx4_core 0000:03:00.0: irq 120 for MSI/MSI-X
[   62.482412] mlx4_core 0000:03:00.0: irq 121 for MSI/MSI-X
[   62.510630] mlx4_core 0000:03:00.0: irq 122 for MSI/MSI-X
[   62.538462] mlx4_core 0000:03:00.0: irq 123 for MSI/MSI-X
[   62.565940] mlx4_core 0000:03:00.0: irq 124 for MSI/MSI-X
[   62.592935] mlx4_core 0000:03:00.0: irq 125 for MSI/MSI-X
[   62.619495] mlx4_core 0000:03:00.0: irq 126 for MSI/MSI-X
[   62.645649] mlx4_core 0000:03:00.0: irq 127 for MSI/MSI-X
[   62.671373] mlx4_core 0000:03:00.0: irq 128 for MSI/MSI-X
[   62.696591] mlx4_core 0000:03:00.0: irq 129 for MSI/MSI-X
[   62.721323] mlx4_core 0000:03:00.0: irq 130 for MSI/MSI-X
[   62.745738] mlx4_core 0000:03:00.0: irq 131 for MSI/MSI-X
[   62.769711] mlx4_core 0000:03:00.0: irq 132 for MSI/MSI-X
[   62.793184] mlx4_core 0000:03:00.0: irq 133 for MSI/MSI-X
[   62.816139] mlx4_core 0000:03:00.0: irq 134 for MSI/MSI-X
[   62.838644] mlx4_core 0000:03:00.0: irq 135 for MSI/MSI-X
[   63.019390] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k 
[   63.517881] device-mapper: uevent: version 1.0.3
[   63.542104] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[   63.866850] loop: module loaded
[   64.891921] fuse init (API version 7.20)
[   66.459944] netlink: 20 bytes leftover after parsing attributes.
[   66.459946] netlink: 20 bytes leftover after parsing attributes.
[   66.459999] netlink: 20 bytes leftover after parsing attributes.
[   66.466971] netlink: 20 bytes leftover after parsing attributes.
[   66.466972] netlink: 20 bytes leftover after parsing attributes.
[   66.467005] netlink: 20 bytes leftover after parsing attributes.
[   66.468213] netlink: 20 bytes leftover after parsing attributes.
[   66.468215] netlink: 20 bytes leftover after parsing attributes.
[   66.468247] netlink: 20 bytes leftover after parsing attributes.
[   66.474876] netlink: 20 bytes leftover after parsing attributes.
[   66.474878] netlink: 20 bytes leftover after parsing attributes.
[   66.474924] netlink: 20 bytes leftover after parsing attributes.
[   66.476193] netlink: 20 bytes leftover after parsing attributes.
[   66.476194] netlink: 20 bytes leftover after parsing attributes.
[   66.476226] netlink: 20 bytes leftover after parsing attributes.
[   66.490698] netlink: 20 bytes leftover after parsing attributes.
[   66.490699] netlink: 20 bytes leftover after parsing attributes.
[   66.490734] netlink: 20 bytes leftover after parsing attributes.
[   66.493534] netlink: 20 bytes leftover after parsing attributes.
[   66.493535] netlink: 20 bytes leftover after parsing attributes.
[   66.493567] netlink: 20 bytes leftover after parsing attributes.
[   66.537183] netlink: 20 bytes leftover after parsing attributes.
[   66.537185] netlink: 20 bytes leftover after parsing attributes.
[   66.537220] netlink: 20 bytes leftover after parsing attributes.
[   66.539661] netlink: 20 bytes leftover after parsing attributes.
[   70.275550] netlink: 20 bytes leftover after parsing attributes.
[   70.275562] netlink: 20 bytes leftover after parsing attributes.
[   70.275652] netlink: 20 bytes leftover after parsing attributes.
[   70.277949] netlink: 20 bytes leftover after parsing attributes.
[   70.277959] netlink: 20 bytes leftover after parsing attributes.
[   70.278048] netlink: 20 bytes leftover after parsing attributes.
[   70.308040] netlink: 20 bytes leftover after parsing attributes.
[   70.308050] netlink: 20 bytes leftover after parsing attributes.
[   70.308115] netlink: 20 bytes leftover after parsing attributes.
[   70.316310] netlink: 20 bytes leftover after parsing attributes.
[   70.316320] netlink: 20 bytes leftover after parsing attributes.
[   70.316387] netlink: 20 bytes leftover after parsing attributes.
[   70.321047] netlink: 20 bytes leftover after parsing attributes.
[   70.321056] netlink: 20 bytes leftover after parsing attributes.
[   70.321122] netlink: 20 bytes leftover after parsing attributes.
[   70.332268] netlink: 20 bytes leftover after parsing attributes.
[   70.332278] netlink: 20 bytes leftover after parsing attributes.
[   70.332343] netlink: 20 bytes leftover after parsing attributes.
[   70.336414] netlink: 20 bytes leftover after parsing attributes.
[   70.336424] netlink: 20 bytes leftover after parsing attributes.
[   70.336490] netlink: 20 bytes leftover after parsing attributes.
[   70.341121] netlink: 20 bytes leftover after parsing attributes.
[   70.393163] netlink: 20 bytes leftover after parsing attributes.
[   70.393176] netlink: 20 bytes leftover after parsing attributes.
[   70.393239] netlink: 20 bytes leftover after parsing attributes.
[   70.558492] netlink: 20 bytes leftover after parsing attributes.
[   70.558505] netlink: 20 bytes leftover after parsing attributes.
[   70.558568] netlink: 20 bytes leftover after parsing attributes.
[   70.569811] netlink: 20 bytes leftover after parsing attributes.
[   70.569814] netlink: 20 bytes leftover after parsing attributes.
[   70.569875] netlink: 20 bytes leftover after parsing attributes.
[   70.576020] netlink: 20 bytes leftover after parsing attributes.
[   70.576023] netlink: 20 bytes leftover after parsing attributes.
[   70.576086] netlink: 20 bytes leftover after parsing attributes.
[   70.587044] netlink: 20 bytes leftover after parsing attributes.
[   70.587047] netlink: 20 bytes leftover after parsing attributes.
[   70.587109] netlink: 20 bytes leftover after parsing attributes.
[   70.589207] netlink: 20 bytes leftover after parsing attributes.
[   70.589210] netlink: 20 bytes leftover after parsing attributes.
[   70.589274] netlink: 20 bytes leftover after parsing attributes.
[   70.607460] netlink: 20 bytes leftover after parsing attributes.
[   70.607463] netlink: 20 bytes leftover after parsing attributes.
[   70.607519] netlink: 20 bytes leftover after parsing attributes.
[   70.611904] netlink: 20 bytes leftover after parsing attributes.
[   70.611907] netlink: 20 bytes leftover after parsing attributes.
[   70.611971] netlink: 20 bytes leftover after parsing attributes.
[   70.622668] netlink: 20 bytes leftover after parsing attributes.
[   70.622671] netlink: 20 bytes leftover after parsing attributes.
[   70.622735] netlink: 20 bytes leftover after parsing attributes.
[   70.626441] netlink: 20 bytes leftover after parsing attributes.
[   71.404539] NET: Registered protocol family 17
[   71.406985] netlink: 20 bytes leftover after parsing attributes.
[   71.406996] netlink: 20 bytes leftover after parsing attributes.
[   71.407069] netlink: 20 bytes leftover after parsing attributes.
[   71.409229] netlink: 20 bytes leftover after parsing attributes.
[   71.409242] netlink: 20 bytes leftover after parsing attributes.
[   71.409319] netlink: 20 bytes leftover after parsing attributes.
[   71.495751] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   71.495792] igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   71.495934] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   73.204541] netlink: 20 bytes leftover after parsing attributes.
[   73.204555] netlink: 20 bytes leftover after parsing attributes.
[   73.204757] netlink: 20 bytes leftover after parsing attributes.
[   73.209761] netlink: 20 bytes leftover after parsing attributes.
[   73.209775] netlink: 20 bytes leftover after parsing attributes.
[   73.209984] netlink: 20 bytes leftover after parsing attributes.
[   73.212579] netlink: 20 bytes leftover after parsing attributes.
[   73.212590] netlink: 20 bytes leftover after parsing attributes.
[   73.212774] netlink: 20 bytes leftover after parsing attributes.
[   73.223114] netlink: 20 bytes leftover after parsing attributes.
[   73.223124] netlink: 20 bytes leftover after parsing attributes.
[   73.223308] netlink: 20 bytes leftover after parsing attributes.
[   73.627453] netlink: 20 bytes leftover after parsing attributes.
[   73.627457] netlink: 20 bytes leftover after parsing attributes.
[   73.627609] netlink: 20 bytes leftover after parsing attributes.
[   73.632206] netlink: 20 bytes leftover after parsing attributes.
[   73.632212] netlink: 20 bytes leftover after parsing attributes.
[   73.632401] netlink: 20 bytes leftover after parsing attributes.
[   73.634982] netlink: 20 bytes leftover after parsing attributes.
[   73.634988] netlink: 20 bytes leftover after parsing attributes.
[   73.635164] netlink: 20 bytes leftover after parsing attributes.
[   73.645188] netlink: 20 bytes leftover after parsing attributes.
[   73.645194] netlink: 20 bytes leftover after parsing attributes.
[   73.645373] netlink: 20 bytes leftover after parsing attributes.
[   74.771687] netlink: 20 bytes leftover after parsing attributes.
[   74.771693] netlink: 20 bytes leftover after parsing attributes.
[   74.771881] netlink: 20 bytes leftover after parsing attributes.
[   74.791796] netlink: 20 bytes leftover after parsing attributes.
[   74.791799] netlink: 20 bytes leftover after parsing attributes.
[   74.791949] netlink: 20 bytes leftover after parsing attributes.
[   74.796609] netlink: 20 bytes leftover after parsing attributes.
[   74.796615] netlink: 20 bytes leftover after parsing attributes.
[   74.796798] netlink: 20 bytes leftover after parsing attributes.
[   74.799405] netlink: 20 bytes leftover after parsing attributes.
[   74.799411] netlink: 20 bytes leftover after parsing attributes.
[   74.799593] netlink: 20 bytes leftover after parsing attributes.
[   74.809080] netlink: 20 bytes leftover after parsing attributes.
[   74.809087] netlink: 20 bytes leftover after parsing attributes.
[   74.809267] netlink: 20 bytes leftover after parsing attributes.
[   74.813195] netlink: 20 bytes leftover after parsing attributes.
[   77.104893] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
[   78.050685] netlink: 20 bytes leftover after parsing attributes.
[   78.050692] netlink: 20 bytes leftover after parsing attributes.
[   78.050891] netlink: 20 bytes leftover after parsing attributes.
[   78.053225] netlink: 20 bytes leftover after parsing attributes.
[   78.053231] netlink: 20 bytes leftover after parsing attributes.
[   78.053430] netlink: 20 bytes leftover after parsing attributes.
[   78.074216] netlink: 20 bytes leftover after parsing attributes.
[   78.074222] netlink: 20 bytes leftover after parsing attributes.
[   78.074400] netlink: 20 bytes leftover after parsing attributes.
[   78.081843] netlink: 20 bytes leftover after parsing attributes.
[   78.081849] netlink: 20 bytes leftover after parsing attributes.
[   78.082031] netlink: 20 bytes leftover after parsing attributes.
[   78.086487] netlink: 20 bytes leftover after parsing attributes.
[   78.086493] netlink: 20 bytes leftover after parsing attributes.
[   78.086702] netlink: 20 bytes leftover after parsing attributes.
[   78.097323] netlink: 20 bytes leftover after parsing attributes.
[   78.097329] netlink: 20 bytes leftover after parsing attributes.
[   78.097519] netlink: 20 bytes leftover after parsing attributes.
[   78.100731] netlink: 20 bytes leftover after parsing attributes.
[   78.100737] netlink: 20 bytes leftover after parsing attributes.
[   78.100914] netlink: 20 bytes leftover after parsing attributes.
[   78.105839] netlink: 20 bytes leftover after parsing attributes.
[   78.149611] netlink: 20 bytes leftover after parsing attributes.
[   78.149615] netlink: 20 bytes leftover after parsing attributes.
[   78.149770] netlink: 20 bytes leftover after parsing attributes.

[-- Attachment #3: dmesg_3.7.0 --]
[-- Type: text/plain, Size: 97322 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.7.0 (root@r1i2n0) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #4 SMP Mon Oct 17 20:58:17 EDT 2016
[    0.000000] Command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M loglevel=8
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008df5dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000008df5e000-0x000000008df8dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008df8e000-0x000000008e0a3fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008e0a4000-0x000000008e2c9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008e2ca000-0x000000008f336fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008f337000-0x000000008f7fffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000090000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000106fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: SGI.COM ICE-XIP119/S0751-Medina, BIOS ma2e2054 02/05/2014
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x1070000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FF000000000 write-back
[    0.000000]   1 base 001000000000 mask 3FFF80000000 write-back
[    0.000000]   2 base 000090000000 mask 3FFFF0000000 uncachable
[    0.000000]   3 base 0000A0000000 mask 3FFFE0000000 uncachable
[    0.000000]   4 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   5 base 001070000000 mask 3FFFF0000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0x90000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x8df5e max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fdba0-0x000fdbaf] mapped at [ffff8800000fdba0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000088000] 88000 size 28672
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x8df5dfff]
[    0.000000]  [mem 0x00000000-0x7fffffff] page 1G
[    0.000000]  [mem 0x80000000-0x8ddfffff] page 2M
[    0.000000]  [mem 0x8de00000-0x8df5dfff] page 4k
[    0.000000] kernel direct mapping tables up to 0x8df5dfff @ [mem 0x1fffd000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x106fffffff]
[    0.000000]  [mem 0x100000000-0x103fffffff] page 1G
[    0.000000]  [mem 0x1040000000-0x106fffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x106fffffff @ [mem 0x8df5c000-0x8df5dfff]
[    0.000000] RAMDISK: [mem 0x36ba6000-0x37feffff]
[    0.000000] Reserving 128MB of memory at 736MB for crashkernel (System RAM: 65502MB)
[    0.000000] ACPI: RSDP 00000000000f04a0 00024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 000000008dfc5090 0009C (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 000000008dfd1cd0 0010C (v05 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 000000008dfc51b8 0CB14 (v02 ALASKA    A M I 00000201 INTL 20051117)
[    0.000000] ACPI: FACS 000000008e2c1080 00040
[    0.000000] ACPI: APIC 000000008dfd1de0 00224 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 000000008dfd2008 00044 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 000000008dfd2050 0003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: SRAT 000000008dfd2090 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.000000] ACPI: SLIT 000000008dfd2540 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.000000] ACPI: HPET 000000008dfd2570 00038 (v01 ALASKA    A M I 01072009 AMI. 00000005)
[    0.000000] ACPI: PRAD 000000008dfd25a8 000BE (v02 PRADID  PRADTID 00000001 MSFT 03000001)
[    0.000000] ACPI: SPMI 000000008dfd2668 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
[    0.000000] ACPI: SSDT 000000008dfd26a8 D0CB0 (v02  INTEL    CpuPm 00004000 INTL 20051117)
[    0.000000] ACPI: EINJ 000000008e0a3358 00130 (v01    AMI AMI EINJ 00000000      00000000)
[    0.000000] ACPI: ERST 000000008e0a3488 00230 (v01  AMIER AMI ERST 00000000      00000000)
[    0.000000] ACPI: HEST 000000008e0a36b8 00068 (v01    AMI AMI HEST 00000000      00000000)
[    0.000000] ACPI: BERT 000000008e0a3720 00030 (v01    AMI AMI BERT 00000000      00000000)
[    0.000000] ACPI: DMAR 000000008e0a3750 00150 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x86fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x870000000-0x106fffffff]
[    0.000000] NUMA: Initialized distance table, cnt=2
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x86fffffff] -> [mem 0x00000000-0x86fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x86fffffff]
[    0.000000]   NODE_DATA [mem 0x86ffd9000-0x86fffffff]
[    0.000000] Initmem setup node 1 [mem 0x870000000-0x106fffffff]
[    0.000000]   NODE_DATA [mem 0x106ffd8000-0x106fffefff]
[    0.000000] [ffffea001d880000-ffffea001d9fffff] potential offnode page_structs
[    0.000000]  [ffffea0000000000-ffffea001d9fffff] PMD -> [ffff88084fe00000-ffff88086bffffff] on node 0
[    0.000000]  [ffffea001da00000-ffffea00399fffff] PMD -> [ffff88104f600000-ffff88106b5fffff] on node 1
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x106fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0008efff]
[    0.000000]   node   0: [mem 0x00100000-0x8df5dfff]
[    0.000000]   node   0: [mem 0x100000000-0x86fffffff]
[    0.000000]   node   1: [mem 0x870000000-0x106fffffff]
[    0.000000] On node 0 totalpages: 8380125
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 7 pages reserved
[    0.000000]   DMA zone: 3904 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 563094 pages, LIFO batch:31
[    0.000000]   Normal zone: 106624 pages used for memmap
[    0.000000]   Normal zone: 7692160 pages, LIFO batch:31
[    0.000000] On node 1 totalpages: 8388608
[    0.000000]   Normal zone: 114688 pages used for memmap
[    0.000000]   Normal zone: 8273920 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x10] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x12] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x14] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x16] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x32] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x34] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x36] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x38] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x33] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x35] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x37] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x39] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 88
[    0.000000] PM: Registered nosave memory: 000000000008f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000008df5e000 - 000000008df8e000
[    0.000000] PM: Registered nosave memory: 000000008df8e000 - 000000008e0a4000
[    0.000000] PM: Registered nosave memory: 000000008e0a4000 - 000000008e2ca000
[    0.000000] PM: Registered nosave memory: 000000008e2ca000 - 000000008f337000
[    0.000000] PM: Registered nosave memory: 000000008f337000 - 000000008f800000
[    0.000000] PM: Registered nosave memory: 000000008f800000 - 0000000090000000
[    0.000000] PM: Registered nosave memory: 0000000090000000 - 00000000a0000000
[    0.000000] PM: Registered nosave memory: 00000000a0000000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
[    0.000000] PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
[    0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[    0.000000] e820: [mem 0xa0000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88086fc00000 s79232 r8192 d23168 u131072
[    0.000000] pcpu-alloc: s79232 r8192 d23168 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 16 17 18 19 20 21 22 23 
[    0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 24 25 26 27 28 29 30 31 
[    0.000000] Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 16533078
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M loglevel=8
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 65918884k/68943872k available (4497k kernel code, 1868940k absent, 1156048k reserved, 6523k data, 1372k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=4096 to nr_cpu_ids=32.
[    0.000000] NR_IRQS:262400 nr_irqs:1752 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 2299.843 MHz processor
[    0.000013] Calibrating delay loop (skipped), value calculated using timer frequency.. 4599.68 BogoMIPS (lpj=9199372)
[    0.000338] pid_max: default: 32768 minimum: 301
[    0.000548] Security Framework initialized
[    0.000716] AppArmor: AppArmor initialized
[    0.005023] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.019283] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.025428] Mount-cache hash table entries: 256
[    0.025857] Initializing cgroup subsys cpuacct
[    0.026016] Initializing cgroup subsys devices
[    0.026176] Initializing cgroup subsys freezer
[    0.026336] Initializing cgroup subsys net_cls
[    0.026494] Initializing cgroup subsys blkio
[    0.026653] Initializing cgroup subsys perf_event
[    0.026850] CPU: Physical Processor ID: 0
[    0.027006] CPU: Processor Core ID: 1
[    0.028038] mce: CPU supports 27 MCE banks
[    0.028245] CPU0: Thermal monitoring enabled (TM1)
[    0.028435] process: using mwait in idle threads
[    0.028597] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.028597] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.028597] tlb_flushall_shift: 6
[    0.029046] Freeing SMP alternatives: 16k freed
[    0.030505] ACPI: Core revision 20120913
[    0.071116] Switched APIC routing to physical flat.
[    0.072187] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.112313] smpboot: CPU0: Genuine Intel(R) CPU  @ 2.80GHz (fam: 06, model: 3e, stepping: 02)
[    0.220007] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
[    0.221073] ... version:                3
[    0.221527] ... bit width:              48
[    0.221981] ... generic registers:      4
[    0.222435] ... value mask:             0000ffffffffffff
[    0.222891] ... max period:             000000007fffffff
[    0.223347] ... fixed-purpose events:   3
[    0.223800] ... event mask:             000000070000000f
[    0.225078] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.328700] smpboot: Booting Node   1, Processors  #8 #9 #10 #11 #12 #13 #14 #15 OK
[    0.546099] smpboot: Booting Node   0, Processors  #16 #17 #18 #19 #20 #21 #22 #23 OK
[    0.661667] smpboot: Booting Node   1, Processors  #24 #25 #26 #27 #28 #29 #30 #31 OK
[    0.782378] Brought up 32 CPUs
[    0.782846] smpboot: Total of 32 processors activated (147193.62 BogoMIPS)
[    0.861516] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.863857] devtmpfs: initialized
[    0.872729] PM: Registering ACPI NVS region [mem 0x8e0a4000-0x8e2c9fff] (2252800 bytes)
[    0.873630] PM: Registering ACPI NVS region [mem 0x8f337000-0x8f7fffff] (5017600 bytes)
[    0.874755] regulator-dummy: no parameters
[    0.875243] RTC time: 15:57:41, date: 10/18/16
[    0.875864] NET: Registered protocol family 16
[    0.876548] ACPI: bus type pci registered
[    0.877079] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x90000000-0x9fffffff] (base 0x90000000)
[    0.877914] PCI: MMCONFIG at [mem 0x90000000-0x9fffffff] reserved in E820
[    0.898864] PCI: Using configuration type 1 for base access
[    0.901567] bio: create slab <bio-0> at 0
[    0.902287] ACPI: Added _OSI(Module Device)
[    0.902741] ACPI: Added _OSI(Processor Device)
[    0.903195] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.903654] ACPI: Added _OSI(Processor Aggregator Device)
[    0.915249] ACPI: EC: Look up EC in DSDT
[    0.926793] ACPI: Executed 1 blocks of module-level executable AML code
[    1.194065] \_SB_:_OSC invalid UUID
[    1.194520] _OSC request data:1 1f 
[    1.201434] ACPI: Interpreter enabled
[    1.201889] ACPI: (supports S0 S4 S5)
[    1.202581] ACPI: Using IOAPIC for interrupt routing
[    1.215332] ACPI: No dock devices found.
[    1.225791] HEST: Table parsing has been initialized.
[    1.226249] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.227492] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    1.228418] PCI host bridge to bus 0000:00
[    1.228874] pci_bus 0000:00: root bus resource [bus 00-7e]
[    1.229332] pci_bus 0000:00: root bus resource [io  0x0000-0x03af]
[    1.229791] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
[    1.230249] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
[    1.230710] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff]
[    1.231168] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    1.231631] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
[    1.232093] pci_bus 0000:00: root bus resource [mem 0x90000000-0xe7ffffff]
[    1.232553] pci_bus 0000:00: root bus resource [mem 0x380000000000-0x380fffffffff]
[    1.233394] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    1.233908] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.234390] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    1.234910] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.235392] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    1.235914] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.236405] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    1.236924] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.237408] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    1.237928] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.238416] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    1.238935] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.239419] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    1.239954] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    1.240486] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    1.240952] pci 0000:00:05.4: reg 10: [mem 0xe7f06000-0xe7f06fff]
[    1.241487] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    1.242031] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    1.242581] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    1.243074] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    1.243557] pci 0000:00:16.0: reg 10: [mem 0xe7f05000-0xe7f0500f 64bit]
[    1.244087] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    1.244566] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    1.245043] pci 0000:00:16.1: reg 10: [mem 0xe7f04000-0xe7f0400f 64bit]
[    1.245574] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    1.246064] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    1.246543] pci 0000:00:1a.0: reg 10: [mem 0xe7f02000-0xe7f023ff]
[    1.247091] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.247576] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    1.248112] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.248597] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    1.249133] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.249622] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    1.250100] pci 0000:00:1d.0: reg 10: [mem 0xe7f01000-0xe7f013ff]
[    1.250647] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.251125] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    1.251647] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    1.252229] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    1.252705] pci 0000:00:1f.2: reg 10: [io  0x9070-0x9077]
[    1.253168] pci 0000:00:1f.2: reg 14: [io  0x9060-0x9063]
[    1.253631] pci 0000:00:1f.2: reg 18: [io  0x9050-0x9057]
[    1.254094] pci 0000:00:1f.2: reg 1c: [io  0x9040-0x9043]
[    1.254557] pci 0000:00:1f.2: reg 20: [io  0x9020-0x903f]
[    1.255021] pci 0000:00:1f.2: reg 24: [mem 0xe7f00000-0xe7f007ff]
[    1.255525] pci 0000:00:1f.2: PME# supported from D3hot
[    1.255998] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[    1.256469] pci 0000:00:1f.3: reg 10: [mem 0x380ffff01000-0x380ffff010ff 64bit]
[    1.257318] pci 0000:00:1f.3: reg 20: [io  0x9000-0x901f]
[    1.257808] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000
[    1.258286] pci 0000:00:1f.6: reg 10: [mem 0x380ffff00000-0x380ffff00fff 64bit]
[    1.259223] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.259727] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.260454] pci 0000:03:00.0: [15b3:1003] type 00 class 0x028000
[    1.261159] pci 0000:03:00.0: reg 10: [mem 0xe7e00000-0xe7efffff 64bit]
[    1.261824] pci 0000:03:00.0: reg 18: [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.264242] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.264702] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    1.265165] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.266035] pci 0000:00:02.2: PCI bridge to [bus 04]
[    1.266541] pci 0000:05:00.0: [8086:2250] type 00 class 0x0b4000
[    1.267008] pci 0000:05:00.0: reg 10: [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.267855] pci 0000:05:00.0: reg 20: [mem 0xe7d00000-0xe7d1ffff 64bit]
[    1.268344] pci 0000:05:00.0: PME# supported from D0
[    1.275467] pci 0000:00:03.0: PCI bridge to [bus 05]
[    1.275942] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    1.276405] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.277299] pci 0000:06:00.0: [8086:1d69] type 00 class 0x010700
[    1.277775] pci 0000:06:00.0: reg 10: [mem 0x380e00c7c000-0x380e00c7ffff 64bit pref]
[    1.278620] pci 0000:06:00.0: reg 18: [mem 0x380e00800000-0x380e00bfffff 64bit pref]
[    1.279462] pci 0000:06:00.0: reg 20: [io  0x8000-0x80ff]
[    1.280018] pci 0000:06:00.0: reg 164: [mem 0x380e00c00000-0x380e00c03fff 64bit pref]
[    1.280903] pci 0000:00:11.0: PCI bridge to [bus 06]
[    1.281361] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    1.281823] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    1.282289] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.283191] pci 0000:07:00.0: [8086:1523] type 00 class 0x020000
[    1.283670] pci 0000:07:00.0: reg 10: [mem 0xe7b00000-0xe7b1ffff]
[    1.284153] pci 0000:07:00.0: reg 18: [io  0x7000-0x701f]
[    1.284622] pci 0000:07:00.0: reg 1c: [mem 0xe7b20000-0xe7b23fff]
[    1.285187] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    1.285703] pci 0000:07:00.0: reg 184: [mem 0x380e00e20000-0x380e00e23fff 64bit pref]
[    1.286561] pci 0000:07:00.0: reg 190: [mem 0x380e00e00000-0x380e00e03fff 64bit pref]
[    1.291463] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    1.291936] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    1.292398] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    1.292861] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.293760] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400
[    1.294361] pci 0000:09:00.0: supports D1 D2
[    1.294816] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.299450] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    1.299926] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    1.300388] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.300855] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.301788] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000
[    1.302279] pci 0000:0a:00.0: reg 10: [mem 0xe7000000-0xe77fffff pref]
[    1.302756] pci 0000:0a:00.0: reg 14: [mem 0xe7a00000-0xe7a1ffff]
[    1.303233] pci 0000:0a:00.0: reg 18: [io  0x6000-0x607f]
[    1.303815] pci 0000:0a:00.0: supports D1 D2
[    1.304272] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.304824] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    1.305289] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    1.305754] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.306223] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.307125] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    1.307596] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    1.308431] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    1.309264] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    1.310099] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff] (subtractive decode)
[    1.310934] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    1.311772] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    1.312609] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xe7ffffff] (subtractive decode)
[    1.313445] pci 0000:00:1e.0:   bridge window [mem 0x380000000000-0x380fffffffff] (subtractive decode)
[    1.314318] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[    1.314778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.315413] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[    1.315952] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PA._PRT]
[    1.316440] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
[    1.316941] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE2._PRT]
[    1.317433] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
[    1.317932] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE5._PRT]
[    1.318427] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
[    1.319045]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    1.319698]  pci0000:00: ACPI _OSC control (0x1d) granted
[    1.329506] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    1.330025] PCI host bridge to bus 0000:7f
[    1.330481] pci_bus 0000:7f: root bus resource [bus 7f]
[    1.330947] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[    1.331445] pci 0000:7f:08.3: [8086:0e83] type 00 class 0x088000
[    1.331946] pci 0000:7f:08.4: [8086:0e84] type 00 class 0x088000
[    1.332452] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[    1.332944] pci 0000:7f:09.3: [8086:0e93] type 00 class 0x088000
[    1.333446] pci 0000:7f:09.4: [8086:0e94] type 00 class 0x088000
[    1.333950] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.334436] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.334924] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.335411] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.335901] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.336392] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.336882] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.337369] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.337858] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.338348] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.348846] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.349335] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.349822] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.350311] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.350798] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.351285] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.351778] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.352272] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[    1.352769] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.353270] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[    1.353770] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.354270] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[    1.354770] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[    1.355269] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[    1.355774] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[    1.356275] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[    1.356777] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[    1.357278] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[    1.357781] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[    1.358281] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[    1.358782] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000
[    1.359283] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[    1.359787] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[    1.360277] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[    1.360767] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[    1.361257] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[    1.361748] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[    1.362236] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[    1.362725] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[    1.363220] pci_bus 0000:7f: on NUMA node 0 (pxm 0)
[    1.363696]  pci0000:7f: Requesting ACPI _OSC control (0x1d)
[    1.364177]  pci0000:7f: ACPI _OSC control (0x1d) granted
[    1.365691] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    1.366554] PCI host bridge to bus 0000:80
[    1.367010] pci_bus 0000:80: root bus resource [bus 80-fe]
[    1.367474] pci_bus 0000:80: root bus resource [io  0xa000-0xffff]
[    1.367935] pci_bus 0000:80: root bus resource [mem 0xe8000000-0xfbffffff]
[    1.368398] pci_bus 0000:80: root bus resource [mem 0x381000000000-0x381fffffffff]
[    1.369247] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400
[    1.369777] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    1.370268] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400
[    1.370797] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    1.371284] pci 0000:80:01.1: [8086:0e03] type 01 class 0x060400
[    1.371815] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    1.372310] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400
[    1.372839] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    1.373326] pci 0000:80:02.2: [8086:0e06] type 01 class 0x060400
[    1.373855] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[    1.374345] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400
[    1.374874] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    1.375363] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000
[    1.375907] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000
[    1.376449] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020
[    1.376918] pci 0000:80:05.4: reg 10: [mem 0xfbf00000-0xfbf00fff]
[    1.377465] pci 0000:80:07.0: [8086:0e18] type 00 class 0x088000
[    1.378056] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.378563] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.379070] pci 0000:80:01.1: PCI bridge to [bus 83]
[    1.379581] pci 0000:80:02.0: PCI bridge to [bus 84]
[    1.380090] pci 0000:80:02.2: PCI bridge to [bus 85]
[    1.380604] pci 0000:86:00.0: [8086:2250] type 00 class 0x0b4000
[    1.381075] pci 0000:86:00.0: reg 10: [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.381925] pci 0000:86:00.0: reg 20: [mem 0xfbe00000-0xfbe1ffff 64bit]
[    1.382420] pci 0000:86:00.0: PME# supported from D0
[    1.382995] pci 0000:80:03.0: PCI bridge to [bus 86]
[    1.383459] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.383925] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.384785] pci_bus 0000:80: on NUMA node 1 (pxm 1)
[    1.385244] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT]
[    1.385942]  pci0000:80: Requesting ACPI _OSC control (0x1d)
[    1.386590]  pci0000:80: ACPI _OSC control (0x1d) granted
[    1.388811] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    1.389336] PCI host bridge to bus 0000:ff
[    1.389793] pci_bus 0000:ff: root bus resource [bus ff]
[    1.390259] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    1.390760] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    1.391268] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    1.391788] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    1.392289] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    1.392800] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    1.393315] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.393810] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.394304] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.394798] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.395294] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.395788] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.396282] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.396775] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.397268] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.397762] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.398255] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.398749] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.399242] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.399738] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.400233] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.400726] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.401222] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.401726] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    1.402235] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.402747] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    1.403259] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.403773] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    1.404284] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    1.404797] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    1.405308] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    1.405821] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    1.406332] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    1.406845] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    1.407356] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    1.407871] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    1.408381] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    1.408893] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    1.409403] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    1.409896] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    1.410392] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    1.410888] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    1.411388] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    1.411883] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    1.412376] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    1.412879] pci_bus 0000:ff: on NUMA node 1 (pxm 1)
[    1.413351]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
[    1.413830]  pci0000:ff: ACPI _OSC control (0x1d) granted
[    1.415086] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    1.416509] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    1.417922] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
[    1.419259] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    1.420601] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.422460] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.424324] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    1.426180] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    1.427654] vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=io+mem,locks=none
[    1.428500] vgaarb: loaded
[    1.428952] vgaarb: bridge control possible 0000:0a:00.0
[    1.429535] PCI: Using ACPI for IRQ routing
[    1.434545] PCI: pci_cache_line_size set to 64 bytes
[    1.435243] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    1.435708] e820: reserve RAM buffer [mem 0x8df5e000-0x8fffffff]
[    1.436263] NetLabel: Initializing
[    1.436716] NetLabel:  domain hash size = 128
[    1.437172] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.437640] NetLabel:  unlabeled traffic allowed by default
[    1.438112] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.439252] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.441737] Switching to clocksource hpet
[    1.444151] AppArmor: AppArmor Filesystem Enabled
[    1.444702] pnp: PnP ACPI init
[    1.445226] ACPI: bus type pnp registered
[    1.446072] pnp 00:00: [bus 00-7e]
[    1.446578] pnp 00:00: [io  0x0cf8-0x0cff]
[    1.447067] pnp 00:00: [io  0x0000-0x03af window]
[    1.447541] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    1.448014] pnp 00:00: [io  0x03b0-0x03df window]
[    1.448487] pnp 00:00: [io  0x0d00-0x9fff window]
[    1.448962] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    1.449435] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    1.449910] pnp 00:00: [mem 0x90000000-0xe7ffffff window]
[    1.450391] pnp 00:00: [mem 0x380000000000-0x380fffffffff window]
[    1.450946] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.451815] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[    1.452287] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[    1.452758] pnp 00:01: [mem 0xfe000000-0xfeafffff]
[    1.453230] pnp 00:01: [mem 0xfeb00000-0xfebfffff]
[    1.453705] pnp 00:01: [mem 0xfed00400-0xfed3ffff]
[    1.454178] pnp 00:01: [mem 0xfed45000-0xfedfffff]
[    1.454769] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.455245] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.455723] system 00:01: [mem 0xfe000000-0xfeafffff] has been reserved
[    1.456200] system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
[    1.456679] system 00:01: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    1.457158] system 00:01: [mem 0xfed45000-0xfedfffff] has been reserved
[    1.457637] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.458179] pnp 00:02: [mem 0xe7ffc000-0xe7ffdfff]
[    1.468977] system 00:02: [mem 0xe7ffc000-0xe7ffdfff] has been reserved
[    1.469464] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.470027] pnp 00:03: [io  0x0000-0xffffffffffffffff disabled]
[    1.470511] pnp 00:03: [io  0x0a00-0x0a1f]
[    1.471045] system 00:03: [io  0x0a00-0x0a1f] has been reserved
[    1.471520] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.472212] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (disabled)
[    1.472701] pnp 00:05: [dma 4]
[    1.473170] pnp 00:05: [io  0x0000-0x000f]
[    1.473643] pnp 00:05: [io  0x0081-0x0083]
[    1.474117] pnp 00:05: [io  0x0087]
[    1.474594] pnp 00:05: [io  0x0089-0x008b]
[    1.475083] pnp 00:05: [io  0x008f]
[    1.475554] pnp 00:05: [io  0x00c0-0x00df]
[    1.476043] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.476530] pnp 00:06: [io  0x0070-0x0071]
[    1.477016] pnp 00:06: [irq 8]
[    1.477506] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.477990] pnp 00:07: [io  0x0061]
[    1.478482] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
[    1.479009] pnp 00:08: [io  0x0010-0x001f]
[    1.479480] pnp 00:08: [io  0x0022-0x003f]
[    1.479951] pnp 00:08: [io  0x0044-0x005f]
[    1.480424] pnp 00:08: [io  0x0062-0x0063]
[    1.480896] pnp 00:08: [io  0x0065-0x006f]
[    1.481366] pnp 00:08: [io  0x0072-0x007f]
[    1.481837] pnp 00:08: [io  0x0080]
[    1.482312] pnp 00:08: [io  0x0084-0x0086]
[    1.482799] pnp 00:08: [io  0x0088]
[    1.483269] pnp 00:08: [io  0x008c-0x008e]
[    1.483741] pnp 00:08: [io  0x0090-0x009f]
[    1.484212] pnp 00:08: [io  0x00a2-0x00bf]
[    1.484684] pnp 00:08: [io  0x00e0-0x00ef]
[    1.485155] pnp 00:08: [io  0x04d0-0x04d1]
[    1.485672] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    1.486147] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.486641] pnp 00:09: [io  0x00f0-0x00ff]
[    1.487135] pnp 00:09: [irq 13]
[    1.487620] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.488209] pnp 00:0a: [io  0x0ca2]
[    1.488678] pnp 00:0a: [io  0x0ca3]
[    1.489165] pnp 00:0a: Plug and Play ACPI device, IDs IPI0001 (active)
[    1.489857] pnp 00:0b: [io  0x0400-0x0453]
[    1.490335] pnp 00:0b: [io  0x0458-0x047f]
[    1.490823] pnp 00:0b: [io  0x1180-0x119f]
[    1.491293] pnp 00:0b: [io  0x0500-0x057f]
[    1.491765] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff]
[    1.492240] pnp 00:0b: [mem 0xfec00000-0xfecfffff]
[    1.492713] pnp 00:0b: [mem 0xfed08000-0xfed08fff]
[    1.493186] pnp 00:0b: [mem 0xff000000-0xffffffff]
[    1.493709] system 00:0b: [io  0x0400-0x0453] has been reserved
[    1.494184] system 00:0b: [io  0x0458-0x047f] has been reserved
[    1.494666] system 00:0b: [io  0x1180-0x119f] has been reserved
[    1.495156] system 00:0b: [io  0x0500-0x057f] has been reserved
[    1.495631] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.496109] system 00:0b: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.496587] system 00:0b: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.497063] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
[    1.497539] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.498070] pnp 00:0c: [io  0x0454-0x0457]
[    1.498600] system 00:0c: [io  0x0454-0x0457] has been reserved
[    1.499084] system 00:0c: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.500139] pnp 00:0d: [mem 0xfed00000-0xfed003ff]
[    1.500640] pnp 00:0d: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.501170] pnp 00:0e: [bus 7f]
[    1.501664] pnp 00:0e: Plug and Play ACPI device, IDs PNP0a03 (active)
[    1.502398] pnp 00:0f: [bus 80-fe]
[    1.502869] pnp 00:0f: [io  0x0000 window]
[    1.503340] pnp 00:0f: [io  0xa000-0xffff window]
[    1.503812] pnp 00:0f: [mem 0x00000000 window]
[    1.504285] pnp 00:0f: [mem 0xe8000000-0xfbffffff window]
[    1.504761] pnp 00:0f: [mem 0x381000000000-0x381fffffffff window]
[    1.505259] pnp 00:0f: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    1.506173] system 00:10: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.506725] pnp 00:11: [mem 0xfbffe000-0xfbffffff]
[    1.507254] system 00:11: [mem 0xfbffe000-0xfbffffff] has been reserved
[    1.507731] system 00:11: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.508282] pnp 00:12: [bus ff]
[    1.508774] pnp 00:12: Plug and Play ACPI device, IDs PNP0a03 (active)
[    1.509787] pnp: PnP ACPI: found 19 devices
[    1.510265] ACPI: ACPI bus type pnp unregistered
[    1.517324] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.517807] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.518294] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.518787] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    1.519265] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.520131] pci 0000:00:02.2: PCI bridge to [bus 04]
[    1.520612] pci 0000:00:03.0: PCI bridge to [bus 05]
[    1.521086] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    1.521564] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.522434] pci 0000:00:11.0: PCI bridge to [bus 06]
[    1.522927] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    1.523406] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    1.523885] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.524753] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    1.525226] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    1.525705] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    1.526184] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.527056] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    1.527548] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    1.528027] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.528507] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.529374] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    1.529847] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    1.530331] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.530824] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.531688] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    1.532173] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.532653] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.533132] pci 0000:80:01.1: PCI bridge to [bus 83]
[    1.533612] pci 0000:80:02.0: PCI bridge to [bus 84]
[    1.534091] pci 0000:80:02.2: PCI bridge to [bus 85]
[    1.534576] pci 0000:80:03.0: PCI bridge to [bus 86]
[    1.535067] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.535545] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.536502] pci 0000:00:1e.0: setting latency timer to 64
[    1.537032] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    1.537506] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    1.537979] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    1.538459] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff]
[    1.538949] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
[    1.539424] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
[    1.539899] pci_bus 0000:00: resource 10 [mem 0x90000000-0xe7ffffff]
[    1.540375] pci_bus 0000:00: resource 11 [mem 0x380000000000-0x380fffffffff]
[    1.540853] pci_bus 0000:03: resource 1 [mem 0xe7e00000-0xe7efffff]
[    1.541327] pci_bus 0000:03: resource 2 [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.542187] pci_bus 0000:05: resource 1 [mem 0xe7d00000-0xe7dfffff]
[    1.542669] pci_bus 0000:05: resource 2 [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.543547] pci_bus 0000:06: resource 0 [io  0x8000-0x8fff]
[    1.544020] pci_bus 0000:06: resource 1 [mem 0xe7c00000-0xe7cfffff]
[    1.544494] pci_bus 0000:06: resource 2 [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.545354] pci_bus 0000:07: resource 0 [io  0x7000-0x7fff]
[    1.545827] pci_bus 0000:07: resource 1 [mem 0xe7b00000-0xe7bfffff]
[    1.546309] pci_bus 0000:07: resource 2 [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.547186] pci_bus 0000:09: resource 0 [io  0x6000-0x6fff]
[    1.547660] pci_bus 0000:09: resource 1 [mem 0xe7a00000-0xe7afffff]
[    1.548136] pci_bus 0000:09: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.548995] pci_bus 0000:0a: resource 0 [io  0x6000-0x6fff]
[    1.549468] pci_bus 0000:0a: resource 1 [mem 0xe7a00000-0xe7afffff]
[    1.549943] pci_bus 0000:0a: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.550808] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af]
[    1.551299] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7]
[    1.551772] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df]
[    1.552244] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff]
[    1.552717] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000bffff]
[    1.553192] pci_bus 0000:0b: resource 9 [mem 0x000c0000-0x000dffff]
[    1.553667] pci_bus 0000:0b: resource 10 [mem 0x90000000-0xe7ffffff]
[    1.554141] pci_bus 0000:0b: resource 11 [mem 0x380000000000-0x380fffffffff]
[    1.554626] pci_bus 0000:80: resource 4 [io  0xa000-0xffff]
[    1.555116] pci_bus 0000:80: resource 5 [mem 0xe8000000-0xfbffffff]
[    1.555591] pci_bus 0000:80: resource 6 [mem 0x381000000000-0x381fffffffff]
[    1.556067] pci_bus 0000:86: resource 1 [mem 0xfbe00000-0xfbefffff]
[    1.556542] pci_bus 0000:86: resource 2 [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    1.557711] NET: Registered protocol family 2
[    1.559284] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    1.561604] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.562277] TCP: Hash tables configured (established 524288 bind 65536)
[    1.562815] TCP: reno registered
[    1.563365] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[    1.564083] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[    1.565029] NET: Registered protocol family 1
[    1.606253] pci 0000:0a:00.0: Boot video device
[    1.606856] PCI: CLS 64 bytes, default 64
[    1.617638] Unpacking initramfs...
[    1.980793] Freeing initrd memory: 20776k freed
[    1.989413] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.989895] software IO TLB [mem 0x89f5c000-0x8df5bfff] (64MB) mapped at [ffff880089f5c000-ffff88008df5bfff]
[    1.993034] audit: initializing netlink socket (disabled)
[    1.993540] type=2000 audit(1476806261.740:1): initialized
[    2.016914] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.021268] VFS: Disk quotas dquot_6.5.2
[    2.021822] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.022521] msgmni has been set to 32768
[    2.023414] alg: No test for stdrng (krng)
[    2.023968] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.024920] io scheduler noop registered
[    2.025413] io scheduler deadline registered
[    2.026001] io scheduler cfq registered (default)
[    2.026960] pcieport 0000:00:01.0: irq 88 for MSI/MSI-X
[    2.027555] pcieport 0000:00:01.1: irq 89 for MSI/MSI-X
[    2.028138] pcieport 0000:00:02.0: irq 90 for MSI/MSI-X
[    2.028722] pcieport 0000:00:02.2: irq 91 for MSI/MSI-X
[    2.029303] pcieport 0000:00:03.0: irq 92 for MSI/MSI-X
[    2.029919] pcieport 0000:00:11.0: irq 93 for MSI/MSI-X
[    2.030540] pcieport 0000:00:1c.0: irq 94 for MSI/MSI-X
[    2.031124] pcieport 0000:00:1c.4: irq 95 for MSI/MSI-X
[    2.031876] pcieport 0000:80:00.0: irq 96 for MSI/MSI-X
[    2.032485] pcieport 0000:80:01.0: irq 97 for MSI/MSI-X
[    2.033069] pcieport 0000:80:01.1: irq 98 for MSI/MSI-X
[    2.033654] pcieport 0000:80:02.0: irq 99 for MSI/MSI-X
[    2.034264] pcieport 0000:80:02.2: irq 100 for MSI/MSI-X
[    2.034852] pcieport 0000:80:03.0: irq 101 for MSI/MSI-X
[    2.035441] aer 0000:00:01.0:pcie02: service driver aer loaded
[    2.035951] aer 0000:00:01.1:pcie02: service driver aer loaded
[    2.036458] aer 0000:00:02.0:pcie02: service driver aer loaded
[    2.036965] aer 0000:00:02.2:pcie02: service driver aer loaded
[    2.037472] aer 0000:00:03.0:pcie02: service driver aer loaded
[    2.037990] aer 0000:00:11.0:pcie02: service driver aer loaded
[    2.038494] aer 0000:80:00.0:pcie02: service driver aer loaded
[    2.038996] aer 0000:80:01.0:pcie02: service driver aer loaded
[    2.039501] aer 0000:80:01.1:pcie02: service driver aer loaded
[    2.040002] aer 0000:80:02.0:pcie02: service driver aer loaded
[    2.040502] aer 0000:80:02.2:pcie02: service driver aer loaded
[    2.041003] aer 0000:80:03.0:pcie02: service driver aer loaded
[    2.041494] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    2.041979] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    2.042484] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    2.042962] pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
[    2.043447] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.043924] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    2.044402] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    2.044887] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    2.045366] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    2.045851] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    2.046334] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    2.046830] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    2.047316] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    2.047792] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    2.048270] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    2.048763] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    2.049240] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[    2.049719] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    2.050222] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    2.050714] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    2.051193] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    2.051672] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    2.052159] pcieport 0000:80:00.0: Signaling PME through PCIe PME interrupt
[    2.052637] pcie_pme 0000:80:00.0:pcie01: service driver pcie_pme loaded
[    2.053123] pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
[    2.053603] pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
[    2.054092] pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
[    2.054587] pcie_pme 0000:80:01.1:pcie01: service driver pcie_pme loaded
[    2.055074] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[    2.055551] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
[    2.056037] pcieport 0000:80:02.2: Signaling PME through PCIe PME interrupt
[    2.056515] pcie_pme 0000:80:02.2:pcie01: service driver pcie_pme loaded
[    2.057000] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[    2.057476] pci 0000:86:00.0: Signaling PME through PCIe PME interrupt
[    2.057958] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
[    2.058483] ioapic: probe of 0000:00:05.4 failed with error -22
[    2.058998] ioapic: probe of 0000:80:05.4 failed with error -22
[    2.059567] intel_idle: MWAIT substates: 0x1120
[    2.060039] intel_idle: v0.4 model 0x3E
[    2.060508] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.061117] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.062174] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.062700] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    2.063250] serial 00:04: [io  0x02f8-0x02ff]
[    2.063875] serial 00:04: [irq 12]
[    2.064345] serial 00:04: [dma 18446744073709551615 disabled]
[    2.065540] serial 00:04: activated
[    2.086442] 00:04: ttyS1 at I/O 0x2f8 (irq = 12) is a 16550A
[    2.087594] Non-volatile memory driver v1.3
[    2.088066] Linux agpgart interface v0.103
[    2.088705] libphy: Fixed MDIO Bus: probed
[    2.089230] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.090574] i8042: No controller found
[    2.091121] mousedev: PS/2 mouse device common for all mice
[    2.092152] cpuidle: using governor ladder
[    2.093236] cpuidle: using governor menu
[    2.093707] EFI Variables Facility v0.08 2004-May-17
[    2.094413] TCP: cubic registered
[    2.094909] Key type dns_resolver registered
[    2.096259] PM: Checking hibernation image partition /dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
[    2.097128] PM: Hibernation image not present or could not be loaded.
[    2.097613] registered taskstats version 1
[    2.101976]   Magic number: 4:411:993
[    2.102473] machinecheck machinecheck6: hash matches
[    2.103133] memory memory36: hash matches
[    2.105795] Freeing unused kernel memory: 1372k freed
[    2.106863] Write protecting the kernel read-only data: 10240k
[    2.111652] Freeing unused kernel memory: 1636k freed
[    2.117685] Freeing unused kernel memory: 1940k freed
[    2.166442] SCSI subsystem initialized
[    2.169541] ACPI: bus type scsi registered
[    2.170111] libata version 3.00 loaded.
[    2.172273] ahci 0000:00:1f.2: version 3.0
[    2.172792] ahci 0000:00:1f.2: irq 102 for MSI/MSI-X
[    2.173266] ahci 0000:00:1f.2: forcing PORTS_IMPL to 0x3f
[    2.173774] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    2.174651] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    2.175492] ahci 0000:00:1f.2: setting latency timer to 64
[    2.176496] scsi0 : ahci
[    2.177192] scsi1 : ahci
[    2.177745] scsi2 : ahci
[    2.178373] scsi3 : ahci
[    2.178943] scsi4 : ahci
[    2.179512] scsi5 : ahci
[    2.179991] ata1: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00100 irq 102
[    2.180824] ata2: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00180 irq 102
[    2.181659] ata3: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00200 irq 102
[    2.182527] ata4: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00280 irq 102
[    2.183363] ata5: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00300 irq 102
[    2.184197] ata6: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00380 irq 102
[    2.989566] tsc: Refined TSC clocksource calibration: 2299.999 MHz
[    2.990046] Switching to clocksource tsc
[    3.209433] ata1: failed to resume link (SControl 0)
[    3.209944] ata1: SATA link down (SStatus 0 SControl 0)
[    3.210427] ata5: failed to resume link (SControl 0)
[    3.210923] ata5: SATA link down (SStatus 0 SControl 0)
[    3.211405] ata2: failed to resume link (SControl 0)
[    3.211902] ata2: SATA link down (SStatus 0 SControl 0)
[    3.212383] ata4: failed to resume link (SControl 0)
[    3.212885] ata4: SATA link down (SStatus 0 SControl 0)
[    3.213365] ata3: failed to resume link (SControl 0)
[    3.213861] ata3: SATA link down (SStatus 0 SControl 0)
[    3.214384] ata6: failed to resume link (SControl 0)
[    3.214880] ata6: SATA link down (SStatus 0 SControl 0)
[    3.221572] emc: device handler registered
[    3.227093] alua: device handler registered
[    3.232490] hp_sw: device handler registered
[    3.237773] rdac: device handler registered
[    3.242152] udev: starting version 147
[    3.261798] ACPI: Requesting acpi_cpufreq
[    3.273961] ACPI: bus type usb registered
[    3.274473] usbcore: registered new interface driver usbfs
[    3.274961] usbcore: registered new interface driver hub
[    3.275493] usbcore: registered new device driver usb
[    3.277046] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.277609] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.278079] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.278548] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.279400] isci: Intel(R) C600 SAS Controller Driver - version 1.1.0
[    3.283311] ehci_hcd 0000:00:1a.0: debug port 2
[    3.283776] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.284259] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xe7f02000
[    3.284790] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    3.285255] isci 0000:06:00.0: OEM parameter table found in OROM
[    3.295733] isci 0000:06:00.0: OEM SAS parameters (version: 1.0) loaded (platform)
[    3.297029] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.297524] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.297987] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.298822] usb usb1: Product: EHCI Host Controller
[    3.299279] usb usb1: Manufacturer: Linux 3.7.0 ehci_hcd
[    3.299737] usb usb1: SerialNumber: 0000:00:1a.0
[    3.300217] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    3.303517] scsi6 : isci
[    3.304179] hub 1-0:1.0: USB hub found
[    3.304637] hub 1-0:1.0: 2 ports detected
[    3.305383] isci 0000:06:00.0: irq 103 for MSI/MSI-X
[    3.305847] isci 0000:06:00.0: irq 104 for MSI/MSI-X
[    3.306708] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.307169] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.307631] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.312378] ehci_hcd 0000:00:1d.0: debug port 2
[    3.312840] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.313313] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xe7f01000
[    3.325367] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.325870] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.326333] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.327166] usb usb2: Product: EHCI Host Controller
[    3.327624] usb usb2: Manufacturer: Linux 3.7.0 ehci_hcd
[    3.328082] usb usb2: SerialNumber: 0000:00:1d.0
[    3.329773] hub 2-0:1.0: USB hub found
[    3.330233] hub 2-0:1.0: 2 ports detected
[    3.617301] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    3.753527] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.753991] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.754684] hub 1-1:1.0: USB hub found
[    3.755273] hub 1-1:1.0: 6 ports detected
[    3.865148] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    3.997408] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.997872] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.998563] hub 2-1:1.0: USB hub found
[    3.999154] hub 2-1:1.0: 8 ports detected
[    4.273026] usb 2-1.3: new high-speed USB device number 3 using ehci_hcd
[    4.312970] sas: phy-6:0 added to port-6:0, phy_mask:0x1 (ffffffffffffffff)
[    4.313463] sas: DOING DISCOVERY on port 0, pid:255
[    4.314048] sas: DONE DISCOVERY on port 0, pid:255, result:0
[    4.314568] sas: Enter sas_scsi_recover_host busy: 0 failed: 0
[    4.315130] sas: ata7: end_device-6:0: dev error handler
[    4.477339] ata7.00: ATA-8: WDC WD5000BHTZ-04JCPV1, 04.06A01, max UDMA/133
[    4.477805] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    4.478387] sas: sas_ata_task_done: SAS error 2
[    4.478846] ata7.00: failed to get Identify Device Data, Emask 0x1
[    4.479929] sas: sas_ata_task_done: SAS error 2
[    4.480393] ata7.00: failed to get Identify Device Data, Emask 0x1
[    4.480862] ata7.00: configured for UDMA/133
[    4.481385] sas: --- Exit sas_scsi_recover_host: busy: 0 failed: 0 tries: 1
[    4.497096] scsi 6:0:0:0: Direct-Access     ATA      WDC WD5000BHTZ-0 04.0 PQ: 0 ANSI: 5
[    4.501403] sd 6:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    4.502240] sd 6:0:0:0: [sda] 4096-byte physical blocks
[    4.502881] sd 6:0:0:0: [sda] Write Protect is off
[    4.503339] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.503880] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.516616]  sda: sda1 sda2
[    4.517693] sd 6:0:0:0: [sda] Attached SCSI disk
[    4.578498] usb 2-1.3: New USB device found, idVendor=046b, idProduct=ff01
[    4.578962] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.579804] usb 2-1.3: Product: Virtual Hub
[    4.580266] usb 2-1.3: Manufacturer: American Megatrends Inc.
[    4.580754] usb 2-1.3: SerialNumber: serial
[    4.581762] hub 2-1.3:1.0: USB hub found
[    4.582374] hub 2-1.3:1.0: 5 ports detected
[    4.646847] [drm] Initialized drm 1.1.0 20060810
[    4.651557] [drm] AST 2300 detected
[    4.652036] [drm] dram 1632000000 1 32 04000000
[    4.652540] [TTM] Zone  kernel: Available graphics memory: 32972312 kiB
[    4.653006] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.653468] [TTM] Initializing pool allocator
[    4.653928] [TTM] Initializing DMA pool allocator
[    4.654396] mtrr: type mismatch for e7000000,800000 old: write-back new: write-combining
[   14.835695] [sched_delayed] sched: RT throttling activated
[   45.366533] fbcon: astdrmfb (fb0) is primary device
[   45.588475] Console: switching to colour frame buffer device 128x48
[   45.699490] fb0: astdrmfb frame buffer device
[   45.700310] drm: registered panic notifier
[   45.701089] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[   45.727603] PM: Marking nosave pages: [mem 0x0008f000-0x000fffff]
[   45.727607] PM: Marking nosave pages: [mem 0x8df5e000-0xffffffff]
[   45.728722] PM: Basic memory bitmaps created
[   45.961344] PM: Basic memory bitmaps freed
[   45.968866] PM: Starting manual resume from disk
[   45.968868] PM: Hibernation image partition 8:1 present
[   45.968869] PM: Looking for hibernation image.
[   45.969212] PM: Image not found (code -22)
[   45.969212] PM: Hibernation image not present or could not be loaded.
[   46.084664] usb 2-1.3.1: new low-speed USB device number 4 using ehci_hcd
[   46.184381] kjournald starting.  Commit interval 5 seconds
[   46.184882] EXT3-fs (sda2): using internal journal
[   46.184883] EXT3-fs (sda2): mounted filesystem with ordered data mode
[   46.252731] usb 2-1.3.1: New USB device found, idVendor=046b, idProduct=ff10
[   46.252733] usb 2-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   46.252734] usb 2-1.3.1: Product: Virtual Keyboard and Mouse
[   46.252735] usb 2-1.3.1: Manufacturer: American Megatrends Inc.
[   46.384822] usb 2-1.3.2: new high-speed USB device number 5 using ehci_hcd
[   46.524283] usbcore: registered new interface driver usbhid
[   46.572831] usbhid: USB HID core driver
[   46.622208] usb 2-1.3.2: New USB device found, idVendor=046b, idProduct=ff20
[   46.672072] usb 2-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   46.722035] usb 2-1.3.2: Product: Virtual Cdrom Device
[   46.771641] usb 2-1.3.2: Manufacturer: American Megatrends Inc.
[   46.771643] usb 2-1.3.2: SerialNumber: AAAABBBBCCCC1
[   46.896202] usb 2-1.3.3: new high-speed USB device number 6 using ehci_hcd
[   47.103885] usb 2-1.3.3: New USB device found, idVendor=046b, idProduct=ff40
[   47.103886] usb 2-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   47.103887] usb 2-1.3.3: Product: Virtual Floppy Device
[   47.103889] usb 2-1.3.3: Manufacturer: American Megatrends Inc.
[   47.103890] usb 2-1.3.3: SerialNumber: AAAABBBBCCCC2
[   47.232435] usb 2-1.3.4: new high-speed USB device number 7 using ehci_hcd
[   47.399725] usb 2-1.3.4: New USB device found, idVendor=046b, idProduct=ff31
[   47.399726] usb 2-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   47.399727] usb 2-1.3.4: Product: Virtual HardDisk Device
[   47.399728] usb 2-1.3.4: Manufacturer: American Megatrends Inc.
[   47.399730] usb 2-1.3.4: SerialNumber: AAAABBBBCCCC3
[   48.363442] udev: starting version 147
[   48.460468] wmi: Mapper loaded
[   48.518337] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[   48.599341] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[   48.646690] ACPI: Power Button [PWRB]
[   48.693023] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   48.740362] rtc_cmos 00:06: RTC can wake from S4
[   48.740438] ACPI: Power Button [PWRF]
[   48.833389] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[   48.879778] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   48.926228] mei 0000:00:16.0: Device doesn't have valid ME Interface
[   48.926267] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   49.016681] mei 0000:00:16.0: initialization failed.
[   49.138265] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120913/utaddress-251)
[   49.231454] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   49.280155] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GINV 1 (20120913/utaddress-251)
[   49.378885] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   49.430398] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   49.509859] iTCO_vendor_support: vendor-support=0
[   49.563481] microcode: CPU0 sig=0x306e2, pf=0x1, revision=0x20d
[   49.687388] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   49.724531] microcode: CPU1 sig=0x306e2, pf=0x1, revision=0x20d
[   49.728870] microcode: CPU2 sig=0x306e2, pf=0x1, revision=0x20d
[   49.732847] microcode: CPU3 sig=0x306e2, pf=0x1, revision=0x20d
[   49.737031] microcode: CPU4 sig=0x306e2, pf=0x1, revision=0x20d
[   49.741044] microcode: CPU5 sig=0x306e2, pf=0x1, revision=0x20d
[   49.745210] microcode: CPU6 sig=0x306e2, pf=0x1, revision=0x20d
[   49.749114] microcode: CPU7 sig=0x306e2, pf=0x1, revision=0x20d
[   49.753091] microcode: CPU8 sig=0x306e2, pf=0x1, revision=0x20d
[   49.756934] microcode: CPU9 sig=0x306e2, pf=0x1, revision=0x20d
[   49.761040] microcode: CPU10 sig=0x306e2, pf=0x1, revision=0x20d
[   49.765080] microcode: CPU11 sig=0x306e2, pf=0x1, revision=0x20d
[   49.769039] microcode: CPU12 sig=0x306e2, pf=0x1, revision=0x20d
[   49.772948] microcode: CPU13 sig=0x306e2, pf=0x1, revision=0x20d
[   50.358119] microcode: CPU14 sig=0x306e2, pf=0x1, revision=0x20d
[   50.401634] Initializing USB Mass Storage driver...
[   50.401641] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[   50.401759] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   50.401947] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.0/input/input3
[   50.402602] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input0
[   50.402748] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.1/input/input4
[   50.402913] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input1
[   50.407472] microcode: CPU15 sig=0x306e2, pf=0x1, revision=0x20d
[   50.411671] microcode: CPU16 sig=0x306e2, pf=0x1, revision=0x20d
[   50.415608] microcode: CPU17 sig=0x306e2, pf=0x1, revision=0x20d
[   50.419572] microcode: CPU18 sig=0x306e2, pf=0x1, revision=0x20d
[   50.423552] microcode: CPU19 sig=0x306e2, pf=0x1, revision=0x20d
[   50.427536] microcode: CPU20 sig=0x306e2, pf=0x1, revision=0x20d
[   50.431485] microcode: CPU21 sig=0x306e2, pf=0x1, revision=0x20d
[   50.435528] microcode: CPU22 sig=0x306e2, pf=0x1, revision=0x20d
[   50.439572] microcode: CPU23 sig=0x306e2, pf=0x1, revision=0x20d
[   50.443541] microcode: CPU24 sig=0x306e2, pf=0x1, revision=0x20d
[   50.447543] microcode: CPU25 sig=0x306e2, pf=0x1, revision=0x20d
[   50.451565] microcode: CPU26 sig=0x306e2, pf=0x1, revision=0x20d
[   50.455556] microcode: CPU27 sig=0x306e2, pf=0x1, revision=0x20d
[   50.459541] microcode: CPU28 sig=0x306e2, pf=0x1, revision=0x20d
[   50.463549] microcode: CPU29 sig=0x306e2, pf=0x1, revision=0x20d
[   50.467542] microcode: CPU30 sig=0x306e2, pf=0x1, revision=0x20d
[   50.471546] microcode: CPU31 sig=0x306e2, pf=0x1, revision=0x20d
[   50.475619] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   51.687267] scsi7 : usb-storage 2-1.3.2:1.0
[   51.718815] usb-storage 2-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[   51.750952] scsi8 : usb-storage 2-1.3.3:1.0
[   51.782694] scsi9 : usb-storage 2-1.3.4:1.0
[   51.813459] usbcore: registered new interface driver usb-storage
[   51.844356] USB Mass Storage support registered.
[   51.875962] NET: Registered protocol family 10
[   51.907999] dca service started, version 1.12.1
[   52.029267] igb: Intel(R) Gigabit Ethernet Network Driver - version 4.0.1-k
[   52.063144] igb: Copyright (c) 2007-2012 Intel Corporation.
[   52.097938] igb 0000:07:00.0: irq 105 for MSI/MSI-X
[   52.133122] igb 0000:07:00.0: irq 106 for MSI/MSI-X
[   52.168241] igb 0000:07:00.0: irq 107 for MSI/MSI-X
[   52.203380] igb 0000:07:00.0: irq 108 for MSI/MSI-X
[   52.237939] igb 0000:07:00.0: irq 109 for MSI/MSI-X
[   52.272536] igb 0000:07:00.0: irq 110 for MSI/MSI-X
[   52.307187] igb 0000:07:00.0: irq 111 for MSI/MSI-X
[   52.341837] igb 0000:07:00.0: irq 112 for MSI/MSI-X
[   52.376439] igb 0000:07:00.0: irq 113 for MSI/MSI-X
[   52.452965] mlx4_core: Mellanox ConnectX core driver v1.1 (Dec, 2011)
[   52.487219] mlx4_core: Initializing 0000:03:00.0
[   52.530281] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[   52.563659] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) d4:3d:7e:72:26:b5
[   52.596025] igb 0000:07:00.0: eth0: PBA No: 106100-000
[   52.626723] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[   52.658613] sd 6:0:0:0: Attached scsi generic sg0 type 0
[   52.717947] scsi 7:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   52.746574] scsi 7:0:0:0: Attached scsi generic sg1 type 5
[   52.781796] scsi 8:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[   52.808583] sd 8:0:0:0: Attached scsi generic sg2 type 0
[   52.811690] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[   52.862052] scsi 9:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   52.890496] sd 9:0:0:0: Attached scsi generic sg3 type 0
[   52.894162] sd 9:0:0:0: [sdc] Attached SCSI removable disk
[   53.043122] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[   53.060182] sr0: scsi-1 drive
[   53.060184] cdrom: Uniform CD-ROM driver Revision: 3.20
[   53.060675] sr 7:0:0:0: Attached scsi CD-ROM sr0
[   53.286339] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.286343] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.286348] Pid: 1082, comm: modprobe Not tainted 3.7.0 #4
[   53.286349] Call Trace:
[   53.286362]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   53.286365] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.286367] Pid: 1085, comm: modprobe Not tainted 3.7.0 #4
[   53.286374]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   53.286374] Call Trace:
[   53.286378]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   53.286382]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   53.286386]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   53.286389]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   53.286393] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.286395]  [<ffffffff810a5751>] load_module+0x111/0x860
[   53.286397] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.286399] Pid: 1099, comm: modprobe Not tainted 3.7.0 #4
[   53.286402]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   53.286404] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.286406] Pid: 1084, comm: modprobe Not tainted 3.7.0 #4
[   53.286407] Call Trace:
[   53.286408] Pid: 1078, comm: modprobe Not tainted 3.7.0 #4
[   53.286413]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   53.286414] Call Trace:
[   53.286417]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   53.286418] Call Trace:
[   53.286423]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   53.286425]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   53.286428]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   53.286431]  [<ffffffff810a5751>] load_module+0x111/0x860
[   53.286435]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   53.286438]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   53.286443]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   53.286445]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   53.286449]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   53.286452]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   53.286455]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   53.286459]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   53.286462]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   53.286465]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   53.286468]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   53.286471]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   53.286473]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   53.286476]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   53.286480]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   53.286483]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   53.286485]  [<ffffffff810a5751>] load_module+0x111/0x860
[   53.286489]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   53.286492]  [<ffffffff810a5751>] load_module+0x111/0x860
[   53.286495]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   53.286496] kvm: Could not allocate 304 bytes percpu data
[   53.286499]  [<ffffffff810a5751>] load_module+0x111/0x860
[   53.286502]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   53.286504]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   53.286507]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   53.286509]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   53.286512]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   53.286514]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   53.286518]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   53.286520]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   53.286523]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   53.286524] kvm: Could not allocate 304 bytes percpu data
[   53.286526]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   53.286529]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   53.286531]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   53.286533]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   53.286536]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   53.286539]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   53.286541]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   53.286545]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   53.286548]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   53.286550]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   53.286552] kvm: Could not allocate 304 bytes percpu data
[   53.286555]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   53.286556] kvm: Could not allocate 304 bytes percpu data
[   53.286557] kvm: Could not allocate 304 bytes percpu data
[   53.288069] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   53.288071] Pid: 1104, comm: modprobe Not tainted 3.7.0 #4
[   53.288071] Call Trace:
[   53.288076]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   53.288079]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   53.288082]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   53.288084]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   53.288087]  [<ffffffff810a5751>] load_module+0x111/0x860
[   53.288089]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   53.288091]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   53.288094]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   53.288096]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   53.288098]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   53.288101]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   53.288102] kvm: Could not allocate 304 bytes percpu data
[   56.504278] Pid: 1110, comm: modprobe Not tainted 3.7.0 #4
[   56.532229] Call Trace:
[   56.559780]  [<ffffffff8111d92d>] pcpu_alloc+0x3fd/0x460
[   56.588111]  [<ffffffff810a28f5>] ? get_modinfo+0x45/0xc0
[   56.616437]  [<ffffffff8111d99e>] __alloc_reserved_percpu+0xe/0x10
[   56.645052]  [<ffffffff810a4a54>] layout_and_allocate+0xb4/0x170
[   56.673741]  [<ffffffff810a5751>] load_module+0x111/0x860
[   56.702116]  [<ffffffff8145c464>] ? __do_page_fault+0x2e4/0x4c0
[   56.730463]  [<ffffffff81118195>] ? vm_mmap_pgoff+0x85/0xa0
[   56.758778]  [<ffffffff8120dd4b>] ? apparmor_capable+0x1b/0x80
[   56.787718]  [<ffffffff811e7c33>] ? security_capable+0x13/0x20
[   56.816375]  [<ffffffff810a5ef8>] sys_init_module+0x58/0x220
[   56.845066]  [<ffffffff814609a9>] system_call_fastpath+0x16/0x1b
[   56.873855] kvm: Could not allocate 304 bytes percpu data
[   61.721474] mlx4_core 0000:03:00.0: irq 114 for MSI/MSI-X
[   61.751295] mlx4_core 0000:03:00.0: irq 115 for MSI/MSI-X
[   61.780640] mlx4_core 0000:03:00.0: irq 116 for MSI/MSI-X
[   61.809560] mlx4_core 0000:03:00.0: irq 117 for MSI/MSI-X
[   61.837761] mlx4_core 0000:03:00.0: irq 118 for MSI/MSI-X
[   61.865224] mlx4_core 0000:03:00.0: irq 119 for MSI/MSI-X
[   61.892765] mlx4_core 0000:03:00.0: irq 120 for MSI/MSI-X
[   61.920148] mlx4_core 0000:03:00.0: irq 121 for MSI/MSI-X
[   61.947628] mlx4_core 0000:03:00.0: irq 122 for MSI/MSI-X
[   61.975177] mlx4_core 0000:03:00.0: irq 123 for MSI/MSI-X
[   62.002263] mlx4_core 0000:03:00.0: irq 124 for MSI/MSI-X
[   62.029442] mlx4_core 0000:03:00.0: irq 125 for MSI/MSI-X
[   62.056710] mlx4_core 0000:03:00.0: irq 126 for MSI/MSI-X
[   62.083557] mlx4_core 0000:03:00.0: irq 127 for MSI/MSI-X
[   62.110460] mlx4_core 0000:03:00.0: irq 128 for MSI/MSI-X
[   62.136642] mlx4_core 0000:03:00.0: irq 129 for MSI/MSI-X
[   62.162044] mlx4_core 0000:03:00.0: irq 130 for MSI/MSI-X
[   62.186715] mlx4_core 0000:03:00.0: irq 131 for MSI/MSI-X
[   62.211449] mlx4_core 0000:03:00.0: irq 132 for MSI/MSI-X
[   62.235068] mlx4_core 0000:03:00.0: irq 133 for MSI/MSI-X
[   62.257547] mlx4_core 0000:03:00.0: irq 134 for MSI/MSI-X
[   62.279478] mlx4_core 0000:03:00.0: irq 135 for MSI/MSI-X
[   62.484922] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k 
[   62.885518] device-mapper: uevent: version 1.0.3
[   62.909224] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[   63.210915] loop: module loaded
[   64.159166] fuse init (API version 7.20)
[   65.403966] netlink: 20 bytes leftover after parsing attributes.
[   65.403968] netlink: 20 bytes leftover after parsing attributes.
[   65.404017] netlink: 20 bytes leftover after parsing attributes.
[   65.410889] netlink: 20 bytes leftover after parsing attributes.
[   65.410890] netlink: 20 bytes leftover after parsing attributes.
[   65.410924] netlink: 20 bytes leftover after parsing attributes.
[   65.412130] netlink: 20 bytes leftover after parsing attributes.
[   65.412131] netlink: 20 bytes leftover after parsing attributes.
[   65.412163] netlink: 20 bytes leftover after parsing attributes.
[   65.418659] netlink: 20 bytes leftover after parsing attributes.
[   65.418661] netlink: 20 bytes leftover after parsing attributes.
[   65.418709] netlink: 20 bytes leftover after parsing attributes.
[   65.419950] netlink: 20 bytes leftover after parsing attributes.
[   65.419952] netlink: 20 bytes leftover after parsing attributes.
[   65.419985] netlink: 20 bytes leftover after parsing attributes.
[   65.432479] netlink: 20 bytes leftover after parsing attributes.
[   65.432481] netlink: 20 bytes leftover after parsing attributes.
[   65.432512] netlink: 20 bytes leftover after parsing attributes.
[   65.435196] netlink: 20 bytes leftover after parsing attributes.
[   65.435198] netlink: 20 bytes leftover after parsing attributes.
[   65.435230] netlink: 20 bytes leftover after parsing attributes.
[   65.448152] netlink: 20 bytes leftover after parsing attributes.
[   65.448153] netlink: 20 bytes leftover after parsing attributes.
[   65.448188] netlink: 20 bytes leftover after parsing attributes.
[   65.450484] netlink: 20 bytes leftover after parsing attributes.
[   69.236978] netlink: 20 bytes leftover after parsing attributes.
[   69.236990] netlink: 20 bytes leftover after parsing attributes.
[   69.237076] netlink: 20 bytes leftover after parsing attributes.
[   69.239369] netlink: 20 bytes leftover after parsing attributes.
[   69.239381] netlink: 20 bytes leftover after parsing attributes.
[   69.239469] netlink: 20 bytes leftover after parsing attributes.
[   69.268274] netlink: 20 bytes leftover after parsing attributes.
[   69.268280] netlink: 20 bytes leftover after parsing attributes.
[   69.268313] netlink: 20 bytes leftover after parsing attributes.
[   69.276230] netlink: 20 bytes leftover after parsing attributes.
[   69.276239] netlink: 20 bytes leftover after parsing attributes.
[   69.276305] netlink: 20 bytes leftover after parsing attributes.
[   69.280934] netlink: 20 bytes leftover after parsing attributes.
[   69.280944] netlink: 20 bytes leftover after parsing attributes.
[   69.281011] netlink: 20 bytes leftover after parsing attributes.
[   69.292503] netlink: 20 bytes leftover after parsing attributes.
[   69.292513] netlink: 20 bytes leftover after parsing attributes.
[   69.292578] netlink: 20 bytes leftover after parsing attributes.
[   69.296892] netlink: 20 bytes leftover after parsing attributes.
[   69.296902] netlink: 20 bytes leftover after parsing attributes.
[   69.296968] netlink: 20 bytes leftover after parsing attributes.
[   69.301130] netlink: 20 bytes leftover after parsing attributes.
[   69.335476] netlink: 20 bytes leftover after parsing attributes.
[   69.335483] netlink: 20 bytes leftover after parsing attributes.
[   69.335516] netlink: 20 bytes leftover after parsing attributes.
[   69.495016] netlink: 20 bytes leftover after parsing attributes.
[   69.495027] netlink: 20 bytes leftover after parsing attributes.
[   69.495088] netlink: 20 bytes leftover after parsing attributes.
[   69.506876] netlink: 20 bytes leftover after parsing attributes.
[   69.506879] netlink: 20 bytes leftover after parsing attributes.
[   69.506944] netlink: 20 bytes leftover after parsing attributes.
[   69.509139] netlink: 20 bytes leftover after parsing attributes.
[   69.509140] netlink: 20 bytes leftover after parsing attributes.
[   69.509174] netlink: 20 bytes leftover after parsing attributes.
[   69.518774] netlink: 20 bytes leftover after parsing attributes.
[   69.518777] netlink: 20 bytes leftover after parsing attributes.
[   69.518844] netlink: 20 bytes leftover after parsing attributes.
[   69.520862] netlink: 20 bytes leftover after parsing attributes.
[   69.520865] netlink: 20 bytes leftover after parsing attributes.
[   69.520925] netlink: 20 bytes leftover after parsing attributes.
[   69.551713] netlink: 20 bytes leftover after parsing attributes.
[   69.551716] netlink: 20 bytes leftover after parsing attributes.
[   69.551772] netlink: 20 bytes leftover after parsing attributes.
[   69.556125] netlink: 20 bytes leftover after parsing attributes.
[   69.556130] netlink: 20 bytes leftover after parsing attributes.
[   69.556192] netlink: 20 bytes leftover after parsing attributes.
[   69.566510] netlink: 20 bytes leftover after parsing attributes.
[   69.566523] netlink: 20 bytes leftover after parsing attributes.
[   69.566591] netlink: 20 bytes leftover after parsing attributes.
[   69.570561] netlink: 20 bytes leftover after parsing attributes.
[   70.328536] NET: Registered protocol family 17
[   70.330678] netlink: 20 bytes leftover after parsing attributes.
[   70.330688] netlink: 20 bytes leftover after parsing attributes.
[   70.330760] netlink: 20 bytes leftover after parsing attributes.
[   70.332320] netlink: 20 bytes leftover after parsing attributes.
[   70.332327] netlink: 20 bytes leftover after parsing attributes.
[   70.332364] netlink: 20 bytes leftover after parsing attributes.
[   70.418271] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   70.418312] igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   70.418460] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   72.097551] netlink: 20 bytes leftover after parsing attributes.
[   72.097564] netlink: 20 bytes leftover after parsing attributes.
[   72.097760] netlink: 20 bytes leftover after parsing attributes.
[   72.102007] netlink: 20 bytes leftover after parsing attributes.
[   72.102018] netlink: 20 bytes leftover after parsing attributes.
[   72.102202] netlink: 20 bytes leftover after parsing attributes.
[   72.104688] netlink: 20 bytes leftover after parsing attributes.
[   72.104699] netlink: 20 bytes leftover after parsing attributes.
[   72.104882] netlink: 20 bytes leftover after parsing attributes.
[   72.115179] netlink: 20 bytes leftover after parsing attributes.
[   72.115190] netlink: 20 bytes leftover after parsing attributes.
[   72.115372] netlink: 20 bytes leftover after parsing attributes.
[   72.519131] netlink: 20 bytes leftover after parsing attributes.
[   72.519137] netlink: 20 bytes leftover after parsing attributes.
[   72.519317] netlink: 20 bytes leftover after parsing attributes.
[   72.523222] netlink: 20 bytes leftover after parsing attributes.
[   72.523225] netlink: 20 bytes leftover after parsing attributes.
[   72.523382] netlink: 20 bytes leftover after parsing attributes.
[   72.525425] netlink: 20 bytes leftover after parsing attributes.
[   72.525428] netlink: 20 bytes leftover after parsing attributes.
[   72.525570] netlink: 20 bytes leftover after parsing attributes.
[   72.534403] netlink: 20 bytes leftover after parsing attributes.
[   72.534409] netlink: 20 bytes leftover after parsing attributes.
[   72.534590] netlink: 20 bytes leftover after parsing attributes.
[   73.667040] netlink: 20 bytes leftover after parsing attributes.
[   73.667046] netlink: 20 bytes leftover after parsing attributes.
[   73.667235] netlink: 20 bytes leftover after parsing attributes.
[   73.684971] netlink: 20 bytes leftover after parsing attributes.
[   73.684974] netlink: 20 bytes leftover after parsing attributes.
[   73.685122] netlink: 20 bytes leftover after parsing attributes.
[   73.689745] netlink: 20 bytes leftover after parsing attributes.
[   73.689751] netlink: 20 bytes leftover after parsing attributes.
[   73.689932] netlink: 20 bytes leftover after parsing attributes.
[   73.692581] netlink: 20 bytes leftover after parsing attributes.
[   73.692587] netlink: 20 bytes leftover after parsing attributes.
[   73.692769] netlink: 20 bytes leftover after parsing attributes.
[   73.702680] netlink: 20 bytes leftover after parsing attributes.
[   73.702686] netlink: 20 bytes leftover after parsing attributes.
[   73.702868] netlink: 20 bytes leftover after parsing attributes.
[   73.706785] netlink: 20 bytes leftover after parsing attributes.
[   76.213113] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
[   77.168754] netlink: 20 bytes leftover after parsing attributes.
[   77.168761] netlink: 20 bytes leftover after parsing attributes.
[   77.168958] netlink: 20 bytes leftover after parsing attributes.
[   77.171147] netlink: 20 bytes leftover after parsing attributes.
[   77.171153] netlink: 20 bytes leftover after parsing attributes.
[   77.171331] netlink: 20 bytes leftover after parsing attributes.
[   77.193715] netlink: 20 bytes leftover after parsing attributes.
[   77.193721] netlink: 20 bytes leftover after parsing attributes.
[   77.193911] netlink: 20 bytes leftover after parsing attributes.
[   77.201951] netlink: 20 bytes leftover after parsing attributes.
[   77.201958] netlink: 20 bytes leftover after parsing attributes.
[   77.202136] netlink: 20 bytes leftover after parsing attributes.
[   77.206726] netlink: 20 bytes leftover after parsing attributes.
[   77.206732] netlink: 20 bytes leftover after parsing attributes.
[   77.206908] netlink: 20 bytes leftover after parsing attributes.
[   77.217619] netlink: 20 bytes leftover after parsing attributes.
[   77.217622] netlink: 20 bytes leftover after parsing attributes.
[   77.217769] netlink: 20 bytes leftover after parsing attributes.
[   77.222245] netlink: 20 bytes leftover after parsing attributes.
[   77.222250] netlink: 20 bytes leftover after parsing attributes.
[   77.222427] netlink: 20 bytes leftover after parsing attributes.
[   77.226529] netlink: 20 bytes leftover after parsing attributes.
[   77.265797] netlink: 20 bytes leftover after parsing attributes.
[   77.265800] netlink: 20 bytes leftover after parsing attributes.
[   77.265943] netlink: 20 bytes leftover after parsing attributes.

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-18 19:29         ` Nathan Zimmer
@ 2016-10-19  9:07           ` Sean Young
  2016-10-19 22:13             ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-19  9:07 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan

On Tue, Oct 18, 2016 at 02:29:30PM -0500, Nathan Zimmer wrote:
> On Tue, Oct 18, 2016 at 07:05:18PM +0100, Sean Young wrote:
> > On Tue, Oct 18, 2016 at 11:40:04AM -0500, Nathan Zimmer wrote:
> > > 3.7.0
> > > cat /sys/bus/pnp/drivers/serial/*/resources
> > > state = active
> > > io 0x2f8-0x2ff
> > > irq 12
> > > dma disabled
> > > 
> > > 3.6.0
> > > :~ # cat /sys/bus/pnp/drivers/serial/*/resources
> > > cat: /sys/bus/pnp/drivers/serial/*/resources: No such file or directory
> > 
> > irq 12 for ttyS1? That should be irq 3. The bios is putting bogus information
> > in pnp. Maybe there is rubbish in the bios setup or maybe it's fixed in a 
> > newer bios update.
> > 
> > So before this change, the kernel would assume irq 3. After this change,
> > the kernel first uses the information in pnp to see where the serial
> > port is. It gets told that it's irq 12 and presumably it runs into all
> > sorts of problems then. If memory serves that's the irq for the ps/2 mouse.
> > 
> > The interesting bit is in 3.6.0:
> > 
> > setserial
> > /dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 3
> > 
> > becomes in 3.7.0:
> > 
> > setserial
> > /dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 12
> > 
> > You should be able to set the right irq with setserial, but obviously
> > that doesn't help you if it fails in early boot. It's not immediately
> > obvious to me what can be done in the kernel for this. Maybe the dmesg
> > output could inspire, thanks.
> 
> Yea the changing irq seemed weird to me too but I couldn't manage a guess to why.
> 
> Here are the dmesgs.

So with 3.6.0:

> [    2.079980] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> [    2.100887] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> [    2.101715] serial 00:04: unable to assign resources
> [    2.102174] serial: probe of 00:04 failed with error -16

The pnp probe fails for some reason. I don't understand why.

With 3.7.0:

> [    2.062700] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> [    2.063250] serial 00:04: [io  0x02f8-0x02ff]
> [    2.063875] serial 00:04: [irq 12]
> [    2.064345] serial 00:04: [dma 18446744073709551615 disabled]
> [    2.065540] serial 00:04: activated
> [    2.086442] 00:04: ttyS1 at I/O 0x2f8 (irq = 12) is a 16550A

Now the pnp probe succeeds (with broken irq from pnp).

Can you please check if there is a wrong irq configured in the bios setup
or if there is a bios update available? I don't know why this worked in
the first place.


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-19  9:07           ` Sean Young
@ 2016-10-19 22:13             ` Nathan Zimmer
  2016-10-20 20:10               ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-19 22:13 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-kernel, linux-serial, gregkh, alan



On 10/19/2016 04:07 AM, Sean Young wrote:
> On Tue, Oct 18, 2016 at 02:29:30PM -0500, Nathan Zimmer wrote:
>> On Tue, Oct 18, 2016 at 07:05:18PM +0100, Sean Young wrote:
>>> On Tue, Oct 18, 2016 at 11:40:04AM -0500, Nathan Zimmer wrote:
>>>> 3.7.0
>>>> cat /sys/bus/pnp/drivers/serial/*/resources
>>>> state = active
>>>> io 0x2f8-0x2ff
>>>> irq 12
>>>> dma disabled
>>>>
>>>> 3.6.0
>>>> :~ # cat /sys/bus/pnp/drivers/serial/*/resources
>>>> cat: /sys/bus/pnp/drivers/serial/*/resources: No such file or directory
>>> irq 12 for ttyS1? That should be irq 3. The bios is putting bogus information
>>> in pnp. Maybe there is rubbish in the bios setup or maybe it's fixed in a
>>> newer bios update.
>>>
>>> So before this change, the kernel would assume irq 3. After this change,
>>> the kernel first uses the information in pnp to see where the serial
>>> port is. It gets told that it's irq 12 and presumably it runs into all
>>> sorts of problems then. If memory serves that's the irq for the ps/2 mouse.
>>>
>>> The interesting bit is in 3.6.0:
>>>
>>> setserial
>>> /dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 3
>>>
>>> becomes in 3.7.0:
>>>
>>> setserial
>>> /dev/ttyS1, UART: 16550A, Port: 0x02f8, IRQ: 12
>>>
>>> You should be able to set the right irq with setserial, but obviously
>>> that doesn't help you if it fails in early boot. It's not immediately
>>> obvious to me what can be done in the kernel for this. Maybe the dmesg
>>> output could inspire, thanks.
>> Yea the changing irq seemed weird to me too but I couldn't manage a guess to why.
>>
>> Here are the dmesgs.
> So with 3.6.0:
>
>> [    2.079980] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
>> [    2.100887] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>> [    2.101715] serial 00:04: unable to assign resources
>> [    2.102174] serial: probe of 00:04 failed with error -16
> The pnp probe fails for some reason. I don't understand why.
>
> With 3.7.0:
>
>> [    2.062700] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
>> [    2.063250] serial 00:04: [io  0x02f8-0x02ff]
>> [    2.063875] serial 00:04: [irq 12]
>> [    2.064345] serial 00:04: [dma 18446744073709551615 disabled]
>> [    2.065540] serial 00:04: activated
>> [    2.086442] 00:04: ttyS1 at I/O 0x2f8 (irq = 12) is a 16550A
> Now the pnp probe succeeds (with broken irq from pnp).
>
> Can you please check if there is a wrong irq configured in the bios setup
> or if there is a bios update available? I don't know why this worked in
> the first place.
>
>
> Sean

Apparently this is the latest bios available for these nodes.
Also in the bios setup screens I don't see anything for changing irq 
numbers for serial console.
But this is a cluster so sometimes thing get hidden to keep everything 
uniform as possible.

If you want to point me to the pnp probe code you would be suspicious of 
I can try to debug and see what is going there.

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-19 22:13             ` Nathan Zimmer
@ 2016-10-20 20:10               ` Sean Young
  2016-10-21 15:55                 ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-20 20:10 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan

On Wed, Oct 19, 2016 at 05:13:41PM -0500, Nathan Zimmer wrote:
> On 10/19/2016 04:07 AM, Sean Young wrote:
> >So with 3.6.0:
> >
> >>[    2.079980] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> >>[    2.100887] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> >>[    2.101715] serial 00:04: unable to assign resources
> >>[    2.102174] serial: probe of 00:04 failed with error -16
> >The pnp probe fails for some reason. I don't understand why.
> >
> >With 3.7.0:
> >
> >>[    2.062700] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> >>[    2.063250] serial 00:04: [io  0x02f8-0x02ff]
> >>[    2.063875] serial 00:04: [irq 12]
> >>[    2.064345] serial 00:04: [dma 18446744073709551615 disabled]
> >>[    2.065540] serial 00:04: activated
> >>[    2.086442] 00:04: ttyS1 at I/O 0x2f8 (irq = 12) is a 16550A
> >Now the pnp probe succeeds (with broken irq from pnp).
> >
> >Can you please check if there is a wrong irq configured in the bios setup
> >or if there is a bios update available? I don't know why this worked in
> >the first place.
> 
> Apparently this is the latest bios available for these nodes.
> Also in the bios setup screens I don't see anything for changing irq numbers
> for serial console.
> But this is a cluster so sometimes thing get hidden to keep everything
> uniform as possible.
> 
> If you want to point me to the pnp probe code you would be suspicious of I
> can try to debug and see what is going there.

That would be great, thanks. A good start would be to boot 3.6.0 with 
"loglevel=7 pnp.debug=1" and hopefully that will show why the probe
used to fail.

Also, does the issue still exist with a more contemporary kernel?


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-20 20:10               ` Sean Young
@ 2016-10-21 15:55                 ` Nathan Zimmer
  2016-10-24 13:52                   ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-21 15:55 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-kernel, linux-serial, gregkh, alan

It didn't seem to make a difference as far as output.
Did I miss a config option? or something else?

[    0.000000] Linux version 3.6.0 (root@r1i2n0) (gcc version 4.3.4 
[gcc-4_3-branch revision 152973] (SUSE Linux) ) #3 SMP Mon Oct 17 
20:43:34 EDT 2016
[    0.000000] Command line: 
root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 
resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 
crashkernel=256M-:128M loglevel=8 pnp.debug=1
...
[    2.076084] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    2.097001] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    2.097844] serial 00:04: unable to assign resources
[    2.098303] serial: probe of 00:04 failed with error -16


On 10/20/2016 03:10 PM, Sean Young wrote:
> On Wed, Oct 19, 2016 at 05:13:41PM -0500, Nathan Zimmer wrote:
>> On 10/19/2016 04:07 AM, Sean Young wrote:
>>> So with 3.6.0:
>>>
>>>> [    2.079980] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
>>>> [    2.100887] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>>>> [    2.101715] serial 00:04: unable to assign resources
>>>> [    2.102174] serial: probe of 00:04 failed with error -16
>>> The pnp probe fails for some reason. I don't understand why.
>>>
>>> With 3.7.0:
>>>
>>>> [    2.062700] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
>>>> [    2.063250] serial 00:04: [io  0x02f8-0x02ff]
>>>> [    2.063875] serial 00:04: [irq 12]
>>>> [    2.064345] serial 00:04: [dma 18446744073709551615 disabled]
>>>> [    2.065540] serial 00:04: activated
>>>> [    2.086442] 00:04: ttyS1 at I/O 0x2f8 (irq = 12) is a 16550A
>>> Now the pnp probe succeeds (with broken irq from pnp).
>>>
>>> Can you please check if there is a wrong irq configured in the bios setup
>>> or if there is a bios update available? I don't know why this worked in
>>> the first place.
>> Apparently this is the latest bios available for these nodes.
>> Also in the bios setup screens I don't see anything for changing irq numbers
>> for serial console.
>> But this is a cluster so sometimes thing get hidden to keep everything
>> uniform as possible.
>>
>> If you want to point me to the pnp probe code you would be suspicious of I
>> can try to debug and see what is going there.
> That would be great, thanks. A good start would be to boot 3.6.0 with
> "loglevel=7 pnp.debug=1" and hopefully that will show why the probe
> used to fail.
>
> Also, does the issue still exist with a more contemporary kernel?
>
>
> Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-21 15:55                 ` Nathan Zimmer
@ 2016-10-24 13:52                   ` Sean Young
  2016-10-24 21:49                     ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-24 13:52 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan

On Fri, Oct 21, 2016 at 10:55:40AM -0500, Nathan Zimmer wrote:
> It didn't seem to make a difference as far as output.
> Did I miss a config option? or something else?
> 
> [    0.000000] Linux version 3.6.0 (root@r1i2n0) (gcc version 4.3.4
> [gcc-4_3-branch revision 152973] (SUSE Linux) ) #3 SMP Mon Oct 17 20:43:34
> EDT 2016
> [    0.000000] Command line:
> root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2
> resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
> crashkernel=256M-:128M loglevel=8 pnp.debug=1
> ...
> [    2.076084] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> [    2.097001] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> [    2.097844] serial 00:04: unable to assign resources
> [    2.098303] serial: probe of 00:04 failed with error -16

Ehm is this kernel compiled with CONFIG_PNP_DEBUG_MESSAGES? Are you 
getting any debug messages? You could try ignore_loglevel. 


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-24 13:52                   ` Sean Young
@ 2016-10-24 21:49                     ` Nathan Zimmer
  2016-10-25 20:41                       ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-24 21:49 UTC (permalink / raw)
  To: Sean Young; +Cc: Nathan Zimmer, linux-kernel, linux-serial, gregkh, alan

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

On Mon, Oct 24, 2016 at 02:52:35PM +0100, Sean Young wrote:
> On Fri, Oct 21, 2016 at 10:55:40AM -0500, Nathan Zimmer wrote:
> > It didn't seem to make a difference as far as output.
> > Did I miss a config option? or something else?
> > 
> > [    0.000000] Linux version 3.6.0 (root@r1i2n0) (gcc version 4.3.4
> > [gcc-4_3-branch revision 152973] (SUSE Linux) ) #3 SMP Mon Oct 17 20:43:34
> > EDT 2016
> > [    0.000000] Command line:
> > root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2
> > resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
> > crashkernel=256M-:128M loglevel=8 pnp.debug=1
> > ...
> > [    2.076084] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> > [    2.097001] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> > [    2.097844] serial 00:04: unable to assign resources
> > [    2.098303] serial: probe of 00:04 failed with error -16
> 
> Ehm is this kernel compiled with CONFIG_PNP_DEBUG_MESSAGES? Are you 
> getting any debug messages? You could try ignore_loglevel. 
> 
> 
> Sean

In going back and forth for builds I had become confused about the status of
CONFIG_PNP_DEBUG_MESSAGES.

Here is a better dmesg.

Nate


[-- Attachment #2: dmegs_pnp_3.6.0 --]
[-- Type: text/plain, Size: 92709 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.6.0-ntz (root@r1i2n0) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #23 SMP Mon Oct 24 15:53:30 EDT 2016
[    0.000000] Command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M loglevel=8 vga=0x314 pnp.debug=1
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008df5dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000008df5e000-0x000000008df8dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008df8e000-0x000000008e0a3fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008e0a4000-0x000000008e2c9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008e2ca000-0x000000008f336fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008f337000-0x000000008f7fffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000090000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000106fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: SGI.COM ICE-XIP119/S0751-Medina, BIOS ma2e2054 02/05/2014
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x1070000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FF000000000 write-back
[    0.000000]   1 base 001000000000 mask 3FFF80000000 write-back
[    0.000000]   2 base 000090000000 mask 3FFFF0000000 uncachable
[    0.000000]   3 base 0000A0000000 mask 3FFFE0000000 uncachable
[    0.000000]   4 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   5 base 001070000000 mask 3FFFF0000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: update [mem 0x90000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x8df5e max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fdba0-0x000fdbaf] mapped at [ffff8800000fdba0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000088000] 88000 size 28672
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x8df5dfff]
[    0.000000]  [mem 0x00000000-0x7fffffff] page 1G
[    0.000000]  [mem 0x80000000-0x8ddfffff] page 2M
[    0.000000]  [mem 0x8de00000-0x8df5dfff] page 4k
[    0.000000] kernel direct mapping tables up to 0x8df5dfff @ [mem 0x1fbfd000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x106fffffff]
[    0.000000]  [mem 0x100000000-0x103fffffff] page 1G
[    0.000000]  [mem 0x1040000000-0x106fffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x106fffffff @ [mem 0x8df5c000-0x8df5dfff]
[    0.000000] RAMDISK: [mem 0x36bb4000-0x37feffff]
[    0.000000] Reserving 128MB of memory at 736MB for crashkernel (System RAM: 65502MB)
[    0.000000] ACPI: RSDP 00000000000f04a0 00024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 000000008dfc5090 0009C (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 000000008dfd1cd0 0010C (v05 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 000000008dfc51b8 0CB14 (v02 ALASKA    A M I 00000201 INTL 20051117)
[    0.000000] ACPI: FACS 000000008e2c1080 00040
[    0.000000] ACPI: APIC 000000008dfd1de0 00224 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 000000008dfd2008 00044 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 000000008dfd2050 0003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: SRAT 000000008dfd2090 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.000000] ACPI: SLIT 000000008dfd2540 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.000000] ACPI: HPET 000000008dfd2570 00038 (v01 ALASKA    A M I 01072009 AMI. 00000005)
[    0.000000] ACPI: PRAD 000000008dfd25a8 000BE (v02 PRADID  PRADTID 00000001 MSFT 03000001)
[    0.000000] ACPI: SPMI 000000008dfd2668 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
[    0.000000] ACPI: SSDT 000000008dfd26a8 D0CB0 (v02  INTEL    CpuPm 00004000 INTL 20051117)
[    0.000000] ACPI: EINJ 000000008e0a3358 00130 (v01    AMI AMI EINJ 00000000      00000000)
[    0.000000] ACPI: ERST 000000008e0a3488 00230 (v01  AMIER AMI ERST 00000000      00000000)
[    0.000000] ACPI: HEST 000000008e0a36b8 00068 (v01    AMI AMI HEST 00000000      00000000)
[    0.000000] ACPI: BERT 000000008e0a3720 00030 (v01    AMI AMI BERT 00000000      00000000)
[    0.000000] ACPI: DMAR 000000008e0a3750 00150 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x86fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x870000000-0x106fffffff]
[    0.000000] NUMA: Initialized distance table, cnt=2
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x86fffffff] -> [mem 0x00000000-0x86fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x86fffffff]
[    0.000000]   NODE_DATA [mem 0x86ffda000-0x86fffffff]
[    0.000000] Initmem setup node 1 [mem 0x870000000-0x106fffffff]
[    0.000000]   NODE_DATA [mem 0x106ffd9000-0x106fffefff]
[    0.000000] [ffffea001d880000-ffffea001d9fffff] potential offnode page_structs
[    0.000000]  [ffffea0000000000-ffffea001d9fffff] PMD -> [ffff88084fe00000-ffff88086bffffff] on node 0
[    0.000000]  [ffffea001da00000-ffffea00399fffff] PMD -> [ffff88104f600000-ffff88106b5fffff] on node 1
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x106fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x0008efff]
[    0.000000]   node   0: [mem 0x00100000-0x8df5dfff]
[    0.000000]   node   0: [mem 0x100000000-0x86fffffff]
[    0.000000]   node   1: [mem 0x870000000-0x106fffffff]
[    0.000000] On node 0 totalpages: 8380125
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 7 pages reserved
[    0.000000]   DMA zone: 3904 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 563094 pages, LIFO batch:31
[    0.000000]   Normal zone: 106624 pages used for memmap
[    0.000000]   Normal zone: 7692160 pages, LIFO batch:31
[    0.000000] On node 1 totalpages: 8388608
[    0.000000]   Normal zone: 114688 pages used for memmap
[    0.000000]   Normal zone: 8273920 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x10] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x12] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x14] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x16] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x32] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x34] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x36] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x38] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x33] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x35] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x37] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x39] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 88
[    0.000000] PM: Registered nosave memory: 000000000008f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000008df5e000 - 000000008df8e000
[    0.000000] PM: Registered nosave memory: 000000008df8e000 - 000000008e0a4000
[    0.000000] PM: Registered nosave memory: 000000008e0a4000 - 000000008e2ca000
[    0.000000] PM: Registered nosave memory: 000000008e2ca000 - 000000008f337000
[    0.000000] PM: Registered nosave memory: 000000008f337000 - 000000008f800000
[    0.000000] PM: Registered nosave memory: 000000008f800000 - 0000000090000000
[    0.000000] PM: Registered nosave memory: 0000000090000000 - 00000000a0000000
[    0.000000] PM: Registered nosave memory: 00000000a0000000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
[    0.000000] PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
[    0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[    0.000000] e820: [mem 0xa0000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88086fc00000 s79232 r8192 d23168 u131072
[    0.000000] pcpu-alloc: s79232 r8192 d23168 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 16 17 18 19 20 21 22 23 
[    0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 24 25 26 27 28 29 30 31 
[    0.000000] Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 16533078
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M loglevel=8 vga=0x314 pnp.debug=1
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 65918988k/68943872k available (4439k kernel code, 1868940k absent, 1155944k reserved, 6575k data, 1344k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=4096 to nr_cpu_ids=32.
[    0.000000] NR_IRQS:262400 nr_irqs:1752 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 2300.189 MHz processor
[    0.000013] Calibrating delay loop (skipped), value calculated using timer frequency.. 4600.37 BogoMIPS (lpj=9200756)
[    0.000018] pid_max: default: 32768 minimum: 301
[    0.000069] Security Framework initialized
[    0.000086] AppArmor: AppArmor initialized
[    0.004266] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.018341] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.024241] Mount-cache hash table entries: 256
[    0.024510] Initializing cgroup subsys cpuacct
[    0.024514] Initializing cgroup subsys devices
[    0.024516] Initializing cgroup subsys freezer
[    0.024519] Initializing cgroup subsys net_cls
[    0.024521] Initializing cgroup subsys blkio
[    0.024524] Initializing cgroup subsys perf_event
[    0.024576] CPU: Physical Processor ID: 0
[    0.024579] CPU: Processor Core ID: 1
[    0.025459] mce: CPU supports 27 MCE banks
[    0.025501] CPU0: Thermal monitoring enabled (TM1)
[    0.025535] process: using mwait in idle threads
[    0.025540] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.025540] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.025540] tlb_flushall_shift is 0x6
[    0.026584] ACPI: Core revision 20120711
[    0.066448] Switched APIC routing to physical flat.
[    0.067070] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.106739] smpboot: CPU0: Genuine Intel(R) CPU  @ 2.80GHz stepping 02
[    0.212471] Performance Events: PEBS fmt1+, generic architected perfmon, Intel PMU driver.
[    0.212478] ... version:                3
[    0.212480] ... bit width:              48
[    0.212481] ... generic registers:      4
[    0.212483] ... value mask:             0000ffffffffffff
[    0.212485] ... max period:             000000007fffffff
[    0.212487] ... fixed-purpose events:   3
[    0.212489] ... event mask:             000000070000000f
[    0.213483] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.213905] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.316609] smpboot: Booting Node   1, Processors  #8
[    0.428405] TSC synchronization [CPU#0 -> CPU#8]:
[    0.428408] Measured 912261 cycles TSC warp between CPUs, turning off TSC clock.
[    0.008000] tsc: Marking TSC unstable due to check_tsc_sync_source failed
[    0.312245]  #9 #10 #11 #12 #13 #14 #15 OK
[    0.403267] smpboot: Booting Node   0, Processors  #16 #17 #18 #19 #20 #21 #22 #23 OK
[    0.501392] smpboot: Booting Node   1, Processors  #24 #25 #26 #27 #28 #29 #30 #31 OK
[    0.605442] Brought up 32 CPUs
[    0.605442] smpboot: Total of 32 processors activated (147204.84 BogoMIPS)
[    0.612173] devtmpfs: initialized
[    0.620360] PM: Registering ACPI NVS region [mem 0x8e0a4000-0x8e2c9fff] (2252800 bytes)
[    0.620360] PM: Registering ACPI NVS region [mem 0x8f337000-0x8f7fffff] (5017600 bytes)
[    0.620441] dummy: 
[    0.620481] RTC time: 20:07:00, date: 10/24/16
[    0.620645] NET: Registered protocol family 16
[    0.620885] ACPI: bus type pci registered
[    0.620972] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x90000000-0x9fffffff] (base 0x90000000)
[    0.620977] PCI: MMCONFIG at [mem 0x90000000-0x9fffffff] reserved in E820
[    0.642409] PCI: Using configuration type 1 for base access
[    0.644377] bio: create slab <bio-0> at 0
[    0.644465] ACPI: Added _OSI(Module Device)
[    0.644465] ACPI: Added _OSI(Processor Device)
[    0.644465] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.644465] ACPI: Added _OSI(Processor Aggregator Device)
[    0.657415] ACPI: EC: Look up EC in DSDT
[    0.657895] \_SB_:_OSC invalid UUID
[    0.657898] _OSC request data:1 1f 
[    0.668665] ACPI: Executed 1 blocks of module-level executable AML code
[    0.898797] ACPI: Dynamic OEM Table Load:
[    0.898802] ACPI: PRAD           (null) 000BE (v02 PRADID  PRADTID 00000001 MSFT 03000001)
[    0.905455] ACPI: Interpreter enabled
[    0.905460] ACPI: (supports S0 S4 S5)
[    0.905481] ACPI: Using IOAPIC for interrupt routing
[    0.918123] ACPI: No dock devices found.
[    0.918144] HEST: Table parsing has been initialized.
[    0.918148] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.918552] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    0.919015] PCI host bridge to bus 0000:00
[    0.919020] pci_bus 0000:00: busn_res: [bus 00-7e] is inserted under domain [bus 00-ff]
[    0.919023] pci_bus 0000:00: root bus resource [bus 00-7e]
[    0.919026] pci_bus 0000:00: root bus resource [io  0x0000-0x03af]
[    0.919029] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
[    0.919032] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
[    0.919035] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff]
[    0.919039] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.919043] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
[    0.919046] pci_bus 0000:00: root bus resource [mem 0x90000000-0xe7ffffff]
[    0.919049] pci_bus 0000:00: root bus resource [mem 0x380000000000-0x380fffffffff]
[    0.919063] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    0.919127] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.919153] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    0.919221] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.919248] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    0.919313] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.919346] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    0.919412] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.919440] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    0.919505] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.919536] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    0.919602] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.919630] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    0.919707] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    0.919783] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    0.919794] pci 0000:00:05.4: reg 10: [mem 0xe7f06000-0xe7f06fff]
[    0.919875] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    0.919963] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    0.920066] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    0.920103] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    0.920126] pci 0000:00:16.0: reg 10: [mem 0xe7f05000-0xe7f0500f 64bit]
[    0.920198] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.920222] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    0.920245] pci 0000:00:16.1: reg 10: [mem 0xe7f04000-0xe7f0400f 64bit]
[    0.920317] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    0.920354] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    0.920376] pci 0000:00:1a.0: reg 10: [mem 0xe7f02000-0xe7f023ff]
[    0.920467] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.920494] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    0.920576] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.920605] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    0.920687] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.920723] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    0.920744] pci 0000:00:1d.0: reg 10: [mem 0xe7f01000-0xe7f013ff]
[    0.920836] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.920859] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.920925] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    0.921053] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    0.921072] pci 0000:00:1f.2: reg 10: [io  0x9070-0x9077]
[    0.921081] pci 0000:00:1f.2: reg 14: [io  0x9060-0x9063]
[    0.921090] pci 0000:00:1f.2: reg 18: [io  0x9050-0x9057]
[    0.921098] pci 0000:00:1f.2: reg 1c: [io  0x9040-0x9043]
[    0.921107] pci 0000:00:1f.2: reg 20: [io  0x9020-0x903f]
[    0.921116] pci 0000:00:1f.2: reg 24: [mem 0xe7f00000-0xe7f007ff]
[    0.921162] pci 0000:00:1f.2: PME# supported from D3hot
[    0.921181] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[    0.921197] pci 0000:00:1f.3: reg 10: [mem 0x380ffff01000-0x380ffff010ff 64bit]
[    0.921219] pci 0000:00:1f.3: reg 20: [io  0x9000-0x901f]
[    0.921255] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000
[    0.921277] pci 0000:00:1f.6: reg 10: [mem 0x380ffff00000-0x380ffff00fff 64bit]
[    0.921387] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-7e]
[    0.921390] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.921437] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-7e]
[    0.921441] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.921487] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-7e]
[    0.921716] pci 0000:03:00.0: [15b3:1003] type 00 class 0x028000
[    0.921968] pci 0000:03:00.0: reg 10: [mem 0xe7e00000-0xe7efffff 64bit]
[    0.922172] pci 0000:03:00.0: reg 18: [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    0.923765] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.923771] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    0.923778] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    0.923818] pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-7e]
[    0.923822] pci 0000:00:02.2: PCI bridge to [bus 04]
[    0.923869] pci_bus 0000:05: busn_res: [bus 05] is inserted under [bus 00-7e]
[    0.923880] pci 0000:05:00.0: [8086:2250] type 00 class 0x0b4000
[    0.923891] pci 0000:05:00.0: reg 10: [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    0.923909] pci 0000:05:00.0: reg 20: [mem 0xe7d00000-0xe7d1ffff 64bit]
[    0.923941] pci 0000:05:00.0: PME# supported from D0
[    0.928075] pci 0000:00:03.0: PCI bridge to [bus 05]
[    0.928098] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    0.928105] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    0.928157] pci_bus 0000:06: busn_res: [bus 06] is inserted under [bus 00-7e]
[    0.928178] pci 0000:06:00.0: [8086:1d69] type 00 class 0x010700
[    0.928198] pci 0000:06:00.0: reg 10: [mem 0x380e00c7c000-0x380e00c7ffff 64bit pref]
[    0.928214] pci 0000:06:00.0: reg 18: [mem 0x380e00800000-0x380e00bfffff 64bit pref]
[    0.928226] pci 0000:06:00.0: reg 20: [io  0x8000-0x80ff]
[    0.928330] pci 0000:06:00.0: reg 164: [mem 0x380e00c00000-0x380e00c03fff 64bit pref]
[    0.928390] pci 0000:00:11.0: PCI bridge to [bus 06]
[    0.928395] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    0.928401] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    0.928409] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    0.928455] pci_bus 0000:07: busn_res: [bus 07-08] is inserted under [bus 00-7e]
[    0.928484] pci 0000:07:00.0: [8086:1523] type 00 class 0x020000
[    0.928504] pci 0000:07:00.0: reg 10: [mem 0xe7b00000-0xe7b1ffff]
[    0.928530] pci 0000:07:00.0: reg 18: [io  0x7000-0x701f]
[    0.928544] pci 0000:07:00.0: reg 1c: [mem 0xe7b20000-0xe7b23fff]
[    0.928653] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    0.928715] pci 0000:07:00.0: reg 184: [mem 0x380e00e20000-0x380e00e23fff 64bit pref]
[    0.928746] pci 0000:07:00.0: reg 190: [mem 0x380e00e00000-0x380e00e03fff 64bit pref]
[    0.936078] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    0.936098] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    0.936103] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    0.936110] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    0.936157] pci_bus 0000:09: busn_res: [bus 09-0a] is inserted under [bus 00-7e]
[    0.936188] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400
[    0.936335] pci 0000:09:00.0: supports D1 D2
[    0.936337] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.944076] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    0.944098] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    0.944103] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    0.944110] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    0.944197] pci_bus 0000:0a: busn_res: [bus 0a] is inserted under [bus 09-0a]
[    0.944222] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000
[    0.944256] pci 0000:0a:00.0: reg 10: [mem 0xe7000000-0xe77fffff pref]
[    0.944277] pci 0000:0a:00.0: reg 14: [mem 0xe7a00000-0xe7a1ffff]
[    0.944296] pci 0000:0a:00.0: reg 18: [io  0x6000-0x607f]
[    0.944421] pci 0000:0a:00.0: supports D1 D2
[    0.944423] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.944516] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    0.944526] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    0.944533] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    0.944543] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    0.944577] pci_bus 0000:0b: busn_res: [bus 0b] is inserted under [bus 00-7e]
[    0.944619] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    0.944629] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    0.944632] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    0.944636] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    0.944639] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff] (subtractive decode)
[    0.944642] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.944645] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    0.944649] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xe7ffffff] (subtractive decode)
[    0.944652] pci 0000:00:1e.0:   bridge window [mem 0x380000000000-0x380fffffffff] (subtractive decode)
[    0.944691] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[    0.944696] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.944869] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[    0.944944] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PA._PRT]
[    0.944971] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
[    0.945012] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE2._PRT]
[    0.945046] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
[    0.945084] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE5._PRT]
[    0.945123] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
[    0.945281]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    0.945472]  pci0000:00: ACPI _OSC control (0x1d) granted
[    0.954750] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    0.954812] PCI host bridge to bus 0000:7f
[    0.954816] pci_bus 0000:7f: busn_res: [bus 7f] is inserted under domain [bus 00-ff]
[    0.954819] pci_bus 0000:7f: root bus resource [bus 7f]
[    0.954829] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[    0.954866] pci 0000:7f:08.3: [8086:0e83] type 00 class 0x088000
[    0.954909] pci 0000:7f:08.4: [8086:0e84] type 00 class 0x088000
[    0.954957] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[    0.954992] pci 0000:7f:09.3: [8086:0e93] type 00 class 0x088000
[    0.955036] pci 0000:7f:09.4: [8086:0e94] type 00 class 0x088000
[    0.955084] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[    0.955113] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[    0.955146] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[    0.955179] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[    0.955214] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[    0.955243] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[    0.955275] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[    0.955305] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[    0.955335] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[    0.955367] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[    0.955396] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[    0.955428] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[    0.955458] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[    0.955487] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[    0.955517] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[    0.955547] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[    0.955579] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[    0.955614] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[    0.955654] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[    0.955698] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[    0.955744] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[    0.955787] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[    0.955832] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[    0.955875] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[    0.955921] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[    0.955964] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[    0.956009] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[    0.956052] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[    0.956103] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[    0.956147] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[    0.956192] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000
[    0.956236] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[    0.956280] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[    0.956314] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[    0.956346] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[    0.956377] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[    0.956412] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[    0.956442] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[    0.956472] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[    0.956510] pci_bus 0000:7f: on NUMA node 0 (pxm 0)
[    0.956528]  pci0000:7f: Requesting ACPI _OSC control (0x1d)
[    0.956552]  pci0000:7f: ACPI _OSC control (0x1d) granted
[    0.957609] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    0.958016] PCI host bridge to bus 0000:80
[    0.958020] pci_bus 0000:80: busn_res: [bus 80-fe] is inserted under domain [bus 00-ff]
[    0.958024] pci_bus 0000:80: root bus resource [bus 80-fe]
[    0.958027] pci_bus 0000:80: root bus resource [io  0xa000-0xffff]
[    0.958030] pci_bus 0000:80: root bus resource [mem 0xe8000000-0xfbffffff]
[    0.958033] pci_bus 0000:80: root bus resource [mem 0x381000000000-0x381fffffffff]
[    0.958049] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400
[    0.958122] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    0.958155] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400
[    0.958227] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    0.958257] pci 0000:80:01.1: [8086:0e03] type 01 class 0x060400
[    0.958328] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    0.958365] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400
[    0.958437] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    0.958467] pci 0000:80:02.2: [8086:0e06] type 01 class 0x060400
[    0.958538] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[    0.958572] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400
[    0.958644] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    0.958676] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000
[    0.958759] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000
[    0.958842] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020
[    0.958854] pci 0000:80:05.4: reg 10: [mem 0xfbf00000-0xfbf00fff]
[    0.958943] pci 0000:80:07.0: [8086:0e18] type 00 class 0x088000
[    0.959076] pci_bus 0000:81: busn_res: [bus 81] is inserted under [bus 80-fe]
[    0.959080] pci 0000:80:00.0: PCI bridge to [bus 81]
[    0.959131] pci_bus 0000:82: busn_res: [bus 82] is inserted under [bus 80-fe]
[    0.959134] pci 0000:80:01.0: PCI bridge to [bus 82]
[    0.959185] pci_bus 0000:83: busn_res: [bus 83] is inserted under [bus 80-fe]
[    0.959188] pci 0000:80:01.1: PCI bridge to [bus 83]
[    0.959239] pci_bus 0000:84: busn_res: [bus 84] is inserted under [bus 80-fe]
[    0.959242] pci 0000:80:02.0: PCI bridge to [bus 84]
[    0.959292] pci_bus 0000:85: busn_res: [bus 85] is inserted under [bus 80-fe]
[    0.959296] pci 0000:80:02.2: PCI bridge to [bus 85]
[    0.959346] pci_bus 0000:86: busn_res: [bus 86] is inserted under [bus 80-fe]
[    0.959357] pci 0000:86:00.0: [8086:2250] type 00 class 0x0b4000
[    0.959369] pci 0000:86:00.0: reg 10: [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    0.959389] pci 0000:86:00.0: reg 20: [mem 0xfbe00000-0xfbe1ffff 64bit]
[    0.959424] pci 0000:86:00.0: PME# supported from D0
[    0.959549] pci 0000:80:03.0: PCI bridge to [bus 86]
[    0.959556] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    0.959562] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    0.959599] pci_bus 0000:80: on NUMA node 1 (pxm 1)
[    0.959603] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT]
[    0.959839]  pci0000:80: Requesting ACPI _OSC control (0x1d)
[    0.960028]  pci0000:80: ACPI _OSC control (0x1d) granted
[    0.961785] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    0.961850] PCI host bridge to bus 0000:ff
[    0.961854] pci_bus 0000:ff: busn_res: [bus ff] is inserted under domain [bus 00-ff]
[    0.961857] pci_bus 0000:ff: root bus resource [bus ff]
[    0.961868] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    0.961913] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    0.961967] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    0.962025] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    0.962067] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    0.962121] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    0.962178] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    0.962215] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    0.962252] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    0.962289] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    0.962328] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    0.962363] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    0.962400] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    0.962435] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    0.962471] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    0.962507] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    0.962545] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    0.962583] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    0.962619] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    0.962655] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    0.962691] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    0.962727] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    0.962764] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    0.962810] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    0.962861] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    0.962916] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    0.962968] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    0.963022] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    0.963075] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    0.963128] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    0.963182] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    0.963237] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    0.963290] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    0.963343] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    0.963396] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    0.963453] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    0.963506] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    0.963560] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    0.963612] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    0.963648] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    0.963685] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    0.963724] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    0.963765] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    0.963802] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    0.963838] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    0.963884] pci_bus 0000:ff: on NUMA node 1 (pxm 1)
[    0.963901]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
[    0.963924]  pci0000:ff: ACPI _OSC control (0x1d) granted
[    0.964738] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.964797] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.964850] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.964903] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    0.964953] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.965006] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.965058] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.965109] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.965170] vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.965170] vgaarb: loaded
[    0.965170] vgaarb: bridge control possible 0000:0a:00.0
[    0.965170] PCI: Using ACPI for IRQ routing
[    0.969951] PCI: pci_cache_line_size set to 64 bytes
[    0.970259] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    0.970262] e820: reserve RAM buffer [mem 0x8df5e000-0x8fffffff]
[    0.970366] NetLabel: Initializing
[    0.970368] NetLabel:  domain hash size = 128
[    0.970370] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.970382] NetLabel:  unlabeled traffic allowed by default
[    0.970400] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.970407] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.972114] Switching to clocksource hpet
[    0.974013] AppArmor: AppArmor Filesystem Enabled
[    0.974036] pnp: PnP ACPI init
[    0.974049] ACPI: bus type pnp registered
[    0.974081] pnp 00:00: parse allocated resources
[    0.974324] pnp 00:00: [bus 00-7e]
[    0.974327] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.974330] pnp 00:00: [io  0x0000-0x03af window]
[    0.974333] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    0.974335] pnp 00:00: [io  0x03b0-0x03df window]
[    0.974338] pnp 00:00: [io  0x0d00-0x9fff window]
[    0.974341] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.974343] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    0.974346] pnp 00:00: [mem 0x90000000-0xe7ffffff window]
[    0.974349] pnp 00:00: [mem 0x380000000000-0x380fffffffff window]
[    0.974411] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.974420] pnp 00:01: parse allocated resources
[    0.974427] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[    0.974430] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[    0.974433] pnp 00:01: [mem 0xfe000000-0xfeafffff]
[    0.974435] pnp 00:01: [mem 0xfeb00000-0xfebfffff]
[    0.974438] pnp 00:01: [mem 0xfed00400-0xfed3ffff]
[    0.974440] pnp 00:01: [mem 0xfed45000-0xfedfffff]
[    0.974448] pnp 00:01: PNP0c01: calling quirk_system_pci_resources+0x0/0x1a0
[    0.974512] pnp 00:01: PNP0c01: calling quirk_amd_mmconfig_area+0x0/0xd0
[    0.974536] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[    0.974540] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[    0.974543] system 00:01: [mem 0xfe000000-0xfeafffff] has been reserved
[    0.974546] system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
[    0.974549] system 00:01: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    0.974552] system 00:01: [mem 0xfed45000-0xfedfffff] has been reserved
[    0.974556] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.974582] pnp 00:02: parse allocated resources
[    0.974618] pnp 00:02: [mem 0xe7ffc000-0xe7ffdfff]
[    0.974623] pnp 00:02: PNP0c02: calling quirk_system_pci_resources+0x0/0x1a0
[    0.974701] system 00:02: [mem 0xe7ffc000-0xe7ffdfff] has been reserved
[    0.974706] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.974716] pnp 00:03: parse allocated resources
[    0.974785] pnp 00:03: [io  0x0000-0xffffffffffffffff disabled]
[    0.974789] pnp 00:03: [io  0x0a00-0x0a1f]
[    0.974793] pnp 00:03: PNP0c02: calling quirk_system_pci_resources+0x0/0x1a0
[    0.974869] system 00:03: [io  0x0a00-0x0a1f] has been reserved
[    0.974874] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.975038] pnp 00:04: parse resource options
[    0.975048] pnp 00:04:   dependent set 0 (acceptable) io  min 0x2f8 max 0x2f8 align 1 size 8 flags 0x1
[    0.975056] pnp 00:04:   dependent set 0 (acceptable) irq 3 4 5 6 7 10 11 12 flags 0x1
[    0.975060] pnp 00:04:   dependent set 0 (acceptable) dma <none> (bitmask 0x0) flags 0x0
[    0.975081] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (disabled)
[    0.975091] pnp 00:05: parse allocated resources
[    0.975098] pnp 00:05: [dma 4]
[    0.975101] pnp 00:05: [io  0x0000-0x000f]
[    0.975103] pnp 00:05: [io  0x0081-0x0083]
[    0.975106] pnp 00:05: [io  0x0087]
[    0.975109] pnp 00:05: [io  0x0089-0x008b]
[    0.975111] pnp 00:05: [io  0x008f]
[    0.975113] pnp 00:05: [io  0x00c0-0x00df]
[    0.975132] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.975141] pnp 00:06: parse allocated resources
[    0.975147] pnp 00:06: [io  0x0070-0x0071]
[    0.975156] pnp 00:06: [irq 8]
[    0.975178] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.975185] pnp 00:07: parse allocated resources
[    0.975190] pnp 00:07: [io  0x0061]
[    0.975209] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.975215] pnp 00:08: parse allocated resources
[    0.975243] pnp 00:08: [io  0x0010-0x001f]
[    0.975246] pnp 00:08: [io  0x0022-0x003f]
[    0.975248] pnp 00:08: [io  0x0044-0x005f]
[    0.975251] pnp 00:08: [io  0x0062-0x0063]
[    0.975253] pnp 00:08: [io  0x0065-0x006f]
[    0.975256] pnp 00:08: [io  0x0072-0x007f]
[    0.975259] pnp 00:08: [io  0x0080]
[    0.975261] pnp 00:08: [io  0x0084-0x0086]
[    0.975264] pnp 00:08: [io  0x0088]
[    0.975266] pnp 00:08: [io  0x008c-0x008e]
[    0.975268] pnp 00:08: [io  0x0090-0x009f]
[    0.975270] pnp 00:08: [io  0x00a2-0x00bf]
[    0.975273] pnp 00:08: [io  0x00e0-0x00ef]
[    0.975273] pnp 00:08: [io  0x04d0-0x04d1]
[    0.975273] pnp 00:08: PNP0c02: calling quirk_system_pci_resources+0x0/0x1a0
[    0.975346] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.975350] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.975358] pnp 00:09: parse allocated resources
[    0.975364] pnp 00:09: [io  0x00f0-0x00ff]
[    0.975373] pnp 00:09: [irq 13]
[    0.975394] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.975423] pnp 00:0a: parse allocated resources
[    0.975502] pnp 00:0a: [io  0x0ca2]
[    0.975505] pnp 00:0a: [io  0x0ca3]
[    0.975527] pnp 00:0a: Plug and Play ACPI device, IDs IPI0001 (active)
[    0.975537] pnp 00:0b: parse allocated resources
[    0.975752] pnp 00:0b: [io  0x0400-0x0453]
[    0.975755] pnp 00:0b: [io  0x0458-0x047f]
[    0.975765] pnp 00:0b: [io  0x1180-0x119f]
[    0.975769] pnp 00:0b: [io  0x0500-0x057f]
[    0.975772] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff]
[    0.975775] pnp 00:0b: [mem 0xfec00000-0xfecfffff]
[    0.975777] pnp 00:0b: [mem 0xfed08000-0xfed08fff]
[    0.975780] pnp 00:0b: [mem 0xff000000-0xffffffff]
[    0.975785] pnp 00:0b: PNP0c01: calling quirk_system_pci_resources+0x0/0x1a0
[    0.975848] pnp 00:0b: PNP0c01: calling quirk_amd_mmconfig_area+0x0/0xd0
[    0.975881] system 00:0b: [io  0x0400-0x0453] has been reserved
[    0.975884] system 00:0b: [io  0x0458-0x047f] has been reserved
[    0.975887] system 00:0b: [io  0x1180-0x119f] has been reserved
[    0.975890] system 00:0b: [io  0x0500-0x057f] has been reserved
[    0.975894] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.975897] system 00:0b: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.975900] system 00:0b: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.975903] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
[    0.975907] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.975923] pnp 00:0c: parse allocated resources
[    0.975960] pnp 00:0c: [io  0x0454-0x0457]
[    0.975966] pnp 00:0c: PNP0c02: calling quirk_system_pci_resources+0x0/0x1a0
[    0.976075] system 00:0c: [io  0x0454-0x0457] has been reserved
[    0.976082] system 00:0c: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.976237] pnp 00:0d: parse allocated resources
[    0.976266] pnp 00:0d: [mem 0xfed00000-0xfed003ff]
[    0.976309] pnp 00:0d: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.976326] pnp 00:0e: parse allocated resources
[    0.976365] pnp 00:0e: [bus 7f]
[    0.976418] pnp 00:0e: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.976452] pnp 00:0f: parse allocated resources
[    0.976644] pnp 00:0f: [bus 80-fe]
[    0.976647] pnp 00:0f: [io  0x0000 window]
[    0.976650] pnp 00:0f: [io  0xa000-0xffff window]
[    0.976653] pnp 00:0f: [mem 0x00000000 window]
[    0.976656] pnp 00:0f: [mem 0xe8000000-0xfbffffff window]
[    0.976659] pnp 00:0f: [mem 0x381000000000-0x381fffffffff window]
[    0.976714] pnp 00:0f: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.976722] pnp 00:10: parse allocated resources
[    0.976730] pnp 00:10: PNP0c01: calling quirk_system_pci_resources+0x0/0x1a0
[    0.976787] pnp 00:10: PNP0c01: calling quirk_amd_mmconfig_area+0x0/0xd0
[    0.976832] system 00:10: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.976857] pnp 00:11: parse allocated resources
[    0.976892] pnp 00:11: [mem 0xfbffe000-0xfbffffff]
[    0.976897] pnp 00:11: PNP0c02: calling quirk_system_pci_resources+0x0/0x1a0
[    0.976995] system 00:11: [mem 0xfbffe000-0xfbffffff] has been reserved
[    0.976999] system 00:11: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.977035] pnp 00:12: parse allocated resources
[    0.977072] pnp 00:12: [bus ff]
[    0.977126] pnp 00:12: Plug and Play ACPI device, IDs PNP0a03 (active)
[    0.977545] pnp: PnP ACPI: found 19 devices
[    0.977548] ACPI: ACPI bus type pnp unregistered
[    0.985567] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.985579] pci 0000:00:01.1: PCI bridge to [bus 02]
[    0.985589] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.985595] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    0.985599] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    0.985606] pci 0000:00:02.2: PCI bridge to [bus 04]
[    0.985616] pci 0000:00:03.0: PCI bridge to [bus 05]
[    0.985621] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    0.985626] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    0.985633] pci 0000:00:11.0: PCI bridge to [bus 06]
[    0.985637] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    0.985643] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    0.985648] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    0.985657] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    0.985660] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    0.985666] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    0.985671] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    0.985678] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    0.985683] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    0.985691] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    0.985698] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    0.985709] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    0.985712] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    0.985718] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    0.985723] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    0.985730] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    0.985746] pci 0000:80:00.0: PCI bridge to [bus 81]
[    0.985757] pci 0000:80:01.0: PCI bridge to [bus 82]
[    0.985767] pci 0000:80:01.1: PCI bridge to [bus 83]
[    0.985778] pci 0000:80:02.0: PCI bridge to [bus 84]
[    0.985789] pci 0000:80:02.2: PCI bridge to [bus 85]
[    0.985800] pci 0000:80:03.0: PCI bridge to [bus 86]
[    0.985805] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    0.985809] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    0.985891] pci 0000:00:1e.0: setting latency timer to 64
[    0.985952] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    0.985955] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    0.985957] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    0.985960] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff]
[    0.985963] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
[    0.985965] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
[    0.985968] pci_bus 0000:00: resource 10 [mem 0x90000000-0xe7ffffff]
[    0.985971] pci_bus 0000:00: resource 11 [mem 0x380000000000-0x380fffffffff]
[    0.985974] pci_bus 0000:03: resource 1 [mem 0xe7e00000-0xe7efffff]
[    0.985977] pci_bus 0000:03: resource 2 [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    0.985981] pci_bus 0000:05: resource 1 [mem 0xe7d00000-0xe7dfffff]
[    0.985983] pci_bus 0000:05: resource 2 [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    0.985987] pci_bus 0000:06: resource 0 [io  0x8000-0x8fff]
[    0.985989] pci_bus 0000:06: resource 1 [mem 0xe7c00000-0xe7cfffff]
[    0.985992] pci_bus 0000:06: resource 2 [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    0.985995] pci_bus 0000:07: resource 0 [io  0x7000-0x7fff]
[    0.985998] pci_bus 0000:07: resource 1 [mem 0xe7b00000-0xe7bfffff]
[    0.986001] pci_bus 0000:07: resource 2 [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    0.986004] pci_bus 0000:09: resource 0 [io  0x6000-0x6fff]
[    0.986007] pci_bus 0000:09: resource 1 [mem 0xe7a00000-0xe7afffff]
[    0.986009] pci_bus 0000:09: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    0.986012] pci_bus 0000:0a: resource 0 [io  0x6000-0x6fff]
[    0.986015] pci_bus 0000:0a: resource 1 [mem 0xe7a00000-0xe7afffff]
[    0.986018] pci_bus 0000:0a: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    0.986021] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af]
[    0.986024] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7]
[    0.986026] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df]
[    0.986029] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff]
[    0.986031] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000bffff]
[    0.986034] pci_bus 0000:0b: resource 9 [mem 0x000c0000-0x000dffff]
[    0.986037] pci_bus 0000:0b: resource 10 [mem 0x90000000-0xe7ffffff]
[    0.986040] pci_bus 0000:0b: resource 11 [mem 0x380000000000-0x380fffffffff]
[    0.986044] pci_bus 0000:80: resource 4 [io  0xa000-0xffff]
[    0.986046] pci_bus 0000:80: resource 5 [mem 0xe8000000-0xfbffffff]
[    0.986049] pci_bus 0000:80: resource 6 [mem 0x381000000000-0x381fffffffff]
[    0.986052] pci_bus 0000:86: resource 1 [mem 0xfbe00000-0xfbefffff]
[    0.986055] pci_bus 0000:86: resource 2 [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    0.986464] NET: Registered protocol family 2
[    0.987645] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.989120] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.989302] TCP: Hash tables configured (established 524288 bind 65536)
[    0.989349] TCP: reno registered
[    0.989423] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.989666] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.990199] NET: Registered protocol family 1
[    1.028110] pci 0000:0a:00.0: Boot video device
[    1.028263] PCI: CLS 64 bytes, default 64
[    1.028317] Unpacking initramfs...
[    1.400513] Freeing initrd memory: 20720k freed
[    1.405774] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.405779] software IO TLB [mem 0x89f5c000-0x8df5bfff] (64MB) mapped at [ffff880089f5c000-ffff88008df5bfff]
[    1.408869] audit: initializing netlink socket (disabled)
[    1.408891] type=2000 audit(1477339620.404:1): initialized
[    1.431231] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.437463] VFS: Disk quotas dquot_6.5.2
[    1.437575] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.437831] msgmni has been set to 32768
[    1.438293] alg: No test for stdrng (krng)
[    1.438441] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.438487] io scheduler noop registered
[    1.438489] io scheduler deadline registered
[    1.438609] io scheduler cfq registered (default)
[    1.439017] pcieport 0000:00:01.0: irq 88 for MSI/MSI-X
[    1.439145] pcieport 0000:00:01.1: irq 89 for MSI/MSI-X
[    1.439264] pcieport 0000:00:02.0: irq 90 for MSI/MSI-X
[    1.439383] pcieport 0000:00:02.2: irq 91 for MSI/MSI-X
[    1.439500] pcieport 0000:00:03.0: irq 92 for MSI/MSI-X
[    1.439644] pcieport 0000:00:11.0: irq 93 for MSI/MSI-X
[    1.439775] pcieport 0000:00:1c.0: irq 94 for MSI/MSI-X
[    1.439895] pcieport 0000:00:1c.4: irq 95 for MSI/MSI-X
[    1.440165] pcieport 0000:80:00.0: irq 96 for MSI/MSI-X
[    1.440334] pcieport 0000:80:01.0: irq 97 for MSI/MSI-X
[    1.440477] pcieport 0000:80:01.1: irq 98 for MSI/MSI-X
[    1.440618] pcieport 0000:80:02.0: irq 99 for MSI/MSI-X
[    1.440759] pcieport 0000:80:02.2: irq 100 for MSI/MSI-X
[    1.440903] pcieport 0000:80:03.0: irq 101 for MSI/MSI-X
[    1.441078] aer 0000:00:01.0:pcie02: service driver aer loaded
[    1.441111] aer 0000:00:01.1:pcie02: service driver aer loaded
[    1.441142] aer 0000:00:02.0:pcie02: service driver aer loaded
[    1.441172] aer 0000:00:02.2:pcie02: service driver aer loaded
[    1.441203] aer 0000:00:03.0:pcie02: service driver aer loaded
[    1.441237] aer 0000:00:11.0:pcie02: service driver aer loaded
[    1.441271] aer 0000:80:00.0:pcie02: service driver aer loaded
[    1.441303] aer 0000:80:01.0:pcie02: service driver aer loaded
[    1.441336] aer 0000:80:01.1:pcie02: service driver aer loaded
[    1.441368] aer 0000:80:02.0:pcie02: service driver aer loaded
[    1.441400] aer 0000:80:02.2:pcie02: service driver aer loaded
[    1.441433] aer 0000:80:03.0:pcie02: service driver aer loaded
[    1.441453] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    1.441458] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    1.441469] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    1.441474] pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
[    1.441484] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    1.441487] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    1.441491] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    1.441501] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    1.441506] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    1.441515] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    1.441518] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    1.441522] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    1.441533] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    1.441536] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    1.441541] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    1.441559] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    1.441562] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[    1.441567] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    1.441586] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    1.441589] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    1.441592] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    1.441596] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    1.441607] pcieport 0000:80:00.0: Signaling PME through PCIe PME interrupt
[    1.441612] pcie_pme 0000:80:00.0:pcie01: service driver pcie_pme loaded
[    1.441623] pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
[    1.441628] pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
[    1.441637] pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
[    1.441642] pcie_pme 0000:80:01.1:pcie01: service driver pcie_pme loaded
[    1.441653] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[    1.441658] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
[    1.441667] pcieport 0000:80:02.2: Signaling PME through PCIe PME interrupt
[    1.441672] pcie_pme 0000:80:02.2:pcie01: service driver pcie_pme loaded
[    1.441682] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[    1.441685] pci 0000:86:00.0: Signaling PME through PCIe PME interrupt
[    1.441689] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
[    1.441713] ioapic: probe of 0000:00:05.4 failed with error -22
[    1.441746] ioapic: probe of 0000:80:05.4 failed with error -22
[    1.441834] vesafb: mode is 800x600x16, linelength=1600, pages=7
[    1.441836] vesafb: scrolling: redraw
[    1.441839] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[    1.442050] vesafb: framebuffer at 0xe7000000, mapped to 0xffffc90016d00000, using 1875k, total 8192k
[    1.490669] Console: switching to colour frame buffer device 100x37
[    1.539814] fb0: VESA VGA frame buffer device
[    1.540489] intel_idle: does not run on family 6 model 62
[    1.541356] ERST: Error Record Serialization Table (ERST) support is initialized.
[    1.542644] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    1.543636] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
[    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
[    1.568366] serial 00:04: pnp_assign_resources failed (-16)
[    1.569188] serial 00:04: unable to assign resources
[    1.569924] serial: probe of 00:04 failed with error -16
[    1.571134] Non-volatile memory driver v1.3
[    1.594109] Linux agpgart interface v0.103
[    1.617003] libphy: Fixed MDIO Bus: probed
[    1.640157] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.664637] i8042: No controller found
[    1.688019] mousedev: PS/2 mouse device common for all mice
[    1.711699] cpuidle: using governor ladder
[    1.735096] cpuidle: using governor menu
[    1.758064] EFI Variables Facility v0.08 2004-May-17
[    1.781468] TCP: cubic registered
[    1.804360] Key type dns_resolver registered
[    1.828230] PM: Checking hibernation image partition /dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
[    1.876145] PM: Hibernation image not present or could not be loaded.
[    1.900903] registered taskstats version 1
[    1.929641]   Magic number: 4:17:145
[    1.953950] pcie_pme 0000:00:02.2:pcie01: hash matches
[    1.978488] acpi device:16: hash matches
[    2.002670] memory memory282: hash matches
[    2.029504] Freeing unused kernel memory: 1344k freed
[    2.054728] Write protecting the kernel read-only data: 10240k
[    2.084088] Freeing unused kernel memory: 1696k freed
[    2.114760] Freeing unused kernel memory: 1976k freed
[    2.206167] SCSI subsystem initialized
[    2.232146] ACPI: bus type scsi registered
[    2.255360] libata version 3.00 loaded.
[    2.279860] ahci 0000:00:1f.2: version 3.0
[    2.302357] ahci 0000:00:1f.2: irq 102 for MSI/MSI-X
[    2.324337] ahci 0000:00:1f.2: forcing PORTS_IMPL to 0x3f
[    2.346023] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    2.368081] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    2.390242] ahci 0000:00:1f.2: setting latency timer to 64
[    2.412740] scsi0 : ahci
[    2.434418] scsi1 : ahci
[    2.455603] scsi2 : ahci
[    2.476375] scsi3 : ahci
[    2.496637] scsi4 : ahci
[    2.516532] scsi5 : ahci
[    2.536079] ata1: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00100 irq 102
[    2.556344] ata2: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00180 irq 102
[    2.575986] ata3: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00200 irq 102
[    2.595139] ata4: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00280 irq 102
[    2.613790] ata5: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00300 irq 102
[    2.632426] ata6: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00380 irq 102
[    3.676051] ata2: failed to resume link (SControl 0)
[    3.694188] ata2: SATA link down (SStatus 0 SControl 0)
[    3.712448] ata6: failed to resume link (SControl 0)
[    3.730125] ata6: SATA link down (SStatus 0 SControl 0)
[    3.747126] ata5: failed to resume link (SControl 0)
[    3.763750] ata5: SATA link down (SStatus 0 SControl 0)
[    3.780199] ata4: failed to resume link (SControl 0)
[    3.796696] ata4: SATA link down (SStatus 0 SControl 0)
[    3.813157] ata3: failed to resume link (SControl 0)
[    3.829552] ata3: SATA link down (SStatus 0 SControl 0)
[    3.846027] ata1: failed to resume link (SControl 0)
[    3.862396] ata1: SATA link down (SStatus 0 SControl 0)
[    3.885033] emc: device handler registered
[    3.909052] alua: device handler registered
[    3.930283] hp_sw: device handler registered
[    3.951484] rdac: device handler registered
[    3.987273] udev: starting version 147
[    4.011934] ACPI: Requesting acpi_cpufreq
[    4.031497] Monitor-Mwait will be used to enter C-1 state
[    4.048685] Monitor-Mwait will be used to enter C-2 state
[    4.065504] ACPI: acpi_idle registered with cpuidle
[    4.082432] isci: Intel(R) C600 SAS Controller Driver - version 1.1.0
[    4.082436] ACPI: bus type usb registered
[    4.082465] usbcore: registered new interface driver usbfs
[    4.082472] usbcore: registered new interface driver hub
[    4.082553] usbcore: registered new device driver usb
[    4.165537] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    4.183200] isci 0000:06:00.0: OEM parameter table found in OROM
[    4.201363] isci 0000:06:00.0: OEM SAS parameters (version: 1.0) loaded (platform)
[    4.220448] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.220934] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    4.223467] scsi6 : isci
[    4.224462] isci 0000:06:00.0: irq 103 for MSI/MSI-X
[    4.224480] isci 0000:06:00.0: irq 104 for MSI/MSI-X
[    4.320486] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    4.341800] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    4.362498] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    4.387503] ehci_hcd 0000:00:1a.0: debug port 2
[    4.408250] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    4.429252] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xe7f02000
[    4.460199] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    4.480852] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.501944] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.523208] usb usb1: Product: EHCI Host Controller
[    4.544371] usb usb1: Manufacturer: Linux 3.6.0-ntz ehci_hcd
[    4.565652] usb usb1: SerialNumber: 0000:00:1a.0
[    4.586915] hub 1-0:1.0: USB hub found
[    4.607833] hub 1-0:1.0: 2 ports detected
[    4.628696] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    4.649721] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    4.670489] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    4.695593] ehci_hcd 0000:00:1d.0: debug port 2
[    4.716395] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    4.737483] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xe7f01000
[    4.772124] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    4.792848] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    4.814395] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.836025] usb usb2: Product: EHCI Host Controller
[    4.857322] usb usb2: Manufacturer: Linux 3.6.0-ntz ehci_hcd
[    4.878589] usb usb2: SerialNumber: 0000:00:1d.0
[    4.899789] hub 2-0:1.0: USB hub found
[    4.921090] hub 2-0:1.0: 2 ports detected
[    5.008101] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    5.160466] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    5.182262] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.204358] hub 1-1:1.0: USB hub found
[    5.225706] hub 1-1:1.0: 6 ports detected
[    5.232217] sas: phy-6:0 added to port-6:0, phy_mask:0x1 (ffffffffffffffff)
[    5.232231] sas: DOING DISCOVERY on port 0, pid:258
[    5.287766] sas: DONE DISCOVERY on port 0, pid:258, result:0
[    5.309334] sas: Enter sas_scsi_recover_host busy: 0 failed: 0
[    5.330843] sas: ata7: end_device-6:0: dev error handler
[    5.400091] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    5.516654] ata7.00: ATA-8: WDC WD5000BHTZ-04JCPV1, 04.06A01, max UDMA/133
[    5.538948] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    5.562045] ata7.00: configured for UDMA/133
[    5.584379] sas: --- Exit sas_scsi_recover_host: busy: 0 failed: 0 tries: 1
[    5.584756] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    5.584762] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.585316] hub 2-1:1.0: USB hub found
[    5.585519] hub 2-1:1.0: 8 ports detected
[    5.712424] scsi 6:0:0:0: Direct-Access     ATA      WDC WD5000BHTZ-0 04.0 PQ: 0 ANSI: 5
[    5.740148] sd 6:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    5.763734] sd 6:0:0:0: [sda] 4096-byte physical blocks
[    5.787604] sd 6:0:0:0: [sda] Write Protect is off
[    5.810998] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.834473] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.882213] usb 2-1.3: new high-speed USB device number 3 using ehci_hcd
[    5.907056]  sda: sda1 sda2
[    5.931947] sd 6:0:0:0: [sda] Attached SCSI disk
[    6.156592] [drm] Initialized drm 1.1.0 20060810
[    6.162864] usb 2-1.3: New USB device found, idVendor=046b, idProduct=ff01
[    6.162866] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.162867] usb 2-1.3: Product: Virtual Hub
[    6.162868] usb 2-1.3: Manufacturer: American Megatrends Inc.
[    6.162869] usb 2-1.3: SerialNumber: serial
[    6.163504] hub 2-1.3:1.0: USB hub found
[    6.163623] hub 2-1.3:1.0: 5 ports detected
[    6.291013] [drm] AST 2300 detected
[    6.291091] [drm] dram 1632000000 1 32 04000000
[    6.291273] [TTM] Zone  kernel: Available graphics memory: 32972362 kiB
[    6.291273] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    6.291274] [TTM] Initializing pool allocator
[    6.291277] [TTM] Initializing DMA pool allocator
[    6.291292] mtrr: type mismatch for e7000000,800000 old: write-back new: write-combining
[   16.968031] [sched_delayed] sched: RT throttling activated
[   48.494674] checking generic (e7000000 800000) vs hw (e7000000 800000)
[   48.519141] fb: conflicting fb hw usage astdrmfb vs VESA VGA - removing generic driver
[   48.544243] Console: switching to colour dummy device 80x25
[   48.544392] fbcon: astdrmfb (fb0) is primary device
[   48.564213] Console: switching to colour frame buffer device 128x48
[   48.592207] fb0: astdrmfb frame buffer device
[   48.592354] drm: registered panic notifier
[   48.592496] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[   48.616516] PM: Marking nosave pages: [mem 0x0008f000-0x000fffff]
[   48.616520] PM: Marking nosave pages: [mem 0x8df5e000-0xffffffff]
[   48.617630] PM: Basic memory bitmaps created
[   48.672103] usb 2-1.3.1: new low-speed USB device number 4 using ehci_hcd
[   48.837229] usb 2-1.3.1: New USB device found, idVendor=046b, idProduct=ff10
[   48.837232] usb 2-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   48.837233] usb 2-1.3.1: Product: Virtual Keyboard and Mouse
[   48.837235] usb 2-1.3.1: Manufacturer: American Megatrends Inc.
[   48.850003] PM: Basic memory bitmaps freed
[   48.892577] usbcore: registered new interface driver usbhid
[   48.892770] usbhid: USB HID core driver
[   48.960283] usb 2-1.3.2: new high-speed USB device number 5 using ehci_hcd
[   49.007197] PM: Starting manual resume from disk
[   49.007199] PM: Hibernation image partition 8:1 present
[   49.007200] PM: Looking for hibernation image.
[   49.007448] PM: Image not found (code -22)
[   49.007449] PM: Hibernation image not present or could not be loaded.
[   49.117100] usb 2-1.3.2: New USB device found, idVendor=046b, idProduct=ff20
[   49.117347] usb 2-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   49.117605] usb 2-1.3.2: Product: Virtual Cdrom Device
[   49.117782] usb 2-1.3.2: Manufacturer: American Megatrends Inc.
[   49.126117] usb 2-1.3.2: SerialNumber: AAAABBBBCCCC1
[   49.237635] kjournald starting.  Commit interval 5 seconds
[   49.238019] EXT3-fs (sda2): using internal journal
[   49.238020] EXT3-fs (sda2): mounted filesystem with ordered data mode
[   49.264396] usb 2-1.3.3: new high-speed USB device number 6 using ehci_hcd
[   49.424976] usb 2-1.3.3: New USB device found, idVendor=046b, idProduct=ff40
[   49.433790] usb 2-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   49.442701] usb 2-1.3.3: Product: Virtual Floppy Device
[   49.451593] usb 2-1.3.3: Manufacturer: American Megatrends Inc.
[   49.460529] usb 2-1.3.3: SerialNumber: AAAABBBBCCCC2
[   49.592105] usb 2-1.3.4: new high-speed USB device number 7 using ehci_hcd
[   49.756974] usb 2-1.3.4: New USB device found, idVendor=046b, idProduct=ff31
[   49.766059] usb 2-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[   49.775194] usb 2-1.3.4: Product: Virtual HardDisk Device
[   49.784241] usb 2-1.3.4: Manufacturer: American Megatrends Inc.
[   49.793227] usb 2-1.3.4: SerialNumber: AAAABBBBCCCC3
[   50.430211] udev: starting version 147
[   50.467341] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[   50.485351] ACPI: Power Button [PWRB]
[   50.494371] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[   50.503493] ACPI: Power Button [PWRF]
[   50.503501] wmi: Mapper loaded
[   50.766295] rtc_cmos 00:06: RTC can wake from S4
[   50.775524] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[   50.784691] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[   50.803550] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
[   50.822315] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   50.831688] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GINV 1 (20120711/utaddress-251)
[   50.850267] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   50.859820] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   50.876860] input: PC Speaker as /devices/platform/pcspkr/input/input2
[   50.962954] mei 0000:00:16.0: Device doesn't have valid ME Interface
[   50.972748] mei 0000:00:16.0: initialization failed.
[   50.985440] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[   51.000163] iTCO_vendor_support: vendor-support=0
[   51.066016] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[   51.075455] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[   51.088286] microcode: CPU0 sig=0x306e2, pf=0x1, revision=0x20d
[   51.101935] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   51.227424] mlx4_core: Mellanox ConnectX core driver v1.1 (Dec, 2011)
[   51.236788] mlx4_core: Initializing 0000:03:00.0
[   51.288266] microcode: CPU1 sig=0x306e2, pf=0x1, revision=0x20d
[   51.298042] dca service started, version 1.12.1
[   51.302280] microcode: CPU2 sig=0x306e2, pf=0x1, revision=0x20d
[   51.307233] microcode: CPU3 sig=0x306e2, pf=0x1, revision=0x20d
[   51.313054] microcode: CPU4 sig=0x306e2, pf=0x1, revision=0x20d
[   51.318021] microcode: CPU5 sig=0x306e2, pf=0x1, revision=0x20d
[   51.323058] microcode: CPU6 sig=0x306e2, pf=0x1, revision=0x20d
[   51.327950] microcode: CPU7 sig=0x306e2, pf=0x1, revision=0x20d
[   51.333310] microcode: CPU8 sig=0x306e2, pf=0x1, revision=0x20d
[   51.338240] microcode: CPU9 sig=0x306e2, pf=0x1, revision=0x20d
[   51.343239] microcode: CPU10 sig=0x306e2, pf=0x1, revision=0x20d
[   51.348777] microcode: CPU11 sig=0x306e2, pf=0x1, revision=0x20d
[   51.353680] microcode: CPU12 sig=0x306e2, pf=0x1, revision=0x20d
[   51.358577] microcode: CPU13 sig=0x306e2, pf=0x1, revision=0x20d
[   51.363515] microcode: CPU14 sig=0x306e2, pf=0x1, revision=0x20d
[   51.368877] microcode: CPU15 sig=0x306e2, pf=0x1, revision=0x20d
[   51.373904] microcode: CPU16 sig=0x306e2, pf=0x1, revision=0x20d
[   51.378805] microcode: CPU17 sig=0x306e2, pf=0x1, revision=0x20d
[   51.383717] microcode: CPU18 sig=0x306e2, pf=0x1, revision=0x20d
[   51.389096] microcode: CPU19 sig=0x306e2, pf=0x1, revision=0x20d
[   51.393902] microcode: CPU20 sig=0x306e2, pf=0x1, revision=0x20d
[   51.398915] microcode: CPU21 sig=0x306e2, pf=0x1, revision=0x20d
[   51.403913] microcode: CPU22 sig=0x306e2, pf=0x1, revision=0x20d
[   51.409211] microcode: CPU23 sig=0x306e2, pf=0x1, revision=0x20d
[   51.414079] microcode: CPU24 sig=0x306e2, pf=0x1, revision=0x20d
[   51.419020] microcode: CPU25 sig=0x306e2, pf=0x1, revision=0x20d
[   51.300197] microcode: CPU26 sig=0x306e2, pf=0x1, revision=0x20d
[   51.505668] microcode: CPU27 sig=0x306e2, pf=0x1, revision=0x20d
[   51.515634] microcode: CPU28 sig=0x306e2, pf=0x1, revision=0x20d
[   51.525423] microcode: CPU29 sig=0x306e2, pf=0x1, revision=0x20d
[   51.534799] microcode: CPU30 sig=0x306e2, pf=0x1, revision=0x20d
[   51.543956] igb: Intel(R) Gigabit Ethernet Network Driver - version 4.0.1-k
[   51.544285] microcode: CPU31 sig=0x306e2, pf=0x1, revision=0x20d
[   51.549487] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   51.558446] igb: Copyright (c) 2007-2012 Intel Corporation.
[   51.563411] igb 0000:07:00.0: irq 105 for MSI/MSI-X
[   51.567883] igb 0000:07:00.0: irq 106 for MSI/MSI-X
[   51.572245] igb 0000:07:00.0: irq 107 for MSI/MSI-X
[   51.576386] igb 0000:07:00.0: irq 108 for MSI/MSI-X
[   51.580405] igb 0000:07:00.0: irq 109 for MSI/MSI-X
[   51.584315] igb 0000:07:00.0: irq 110 for MSI/MSI-X
[   51.588102] igb 0000:07:00.0: irq 111 for MSI/MSI-X
[   51.591731] igb 0000:07:00.0: irq 112 for MSI/MSI-X
[   51.595219] igb 0000:07:00.0: irq 113 for MSI/MSI-X
[   51.599095] Initializing USB Mass Storage driver...
[   51.602761] scsi7 : usb-storage 2-1.3.2:1.0
[   51.606107] usb-storage 2-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[   51.606131] sd 6:0:0:0: Attached scsi generic sg0 type 0
[   51.612769] scsi8 : usb-storage 2-1.3.3:1.0
[   51.616133] scsi9 : usb-storage 2-1.3.4:1.0
[   51.619226] usbcore: registered new interface driver usb-storage
[   51.622492] USB Mass Storage support registered.
[   51.646522] NET: Registered protocol family 10
[   51.657021] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[   51.660745] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) d4:3d:7e:72:26:b5
[   51.664772] igb 0000:07:00.0: eth0: PBA No: 106100-000
[   51.668797] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[   51.741571] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.0/input/input3
[   51.750805] hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input0
[   51.761358] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.1/input/input4
[   51.773161] hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input1
[   52.070081] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[   52.269362] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.269371] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.269375] Pid: 1174, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.269376] Call Trace:
[   52.269380] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.269382] Pid: 1220, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.269384] Call Trace:
[   52.269395]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.269400]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.269407]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.269411]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.269414]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.269417]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.269422]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.269425]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.269429]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.269433]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.269439]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.269450]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.269455]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.269475]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.269484]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.269513]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.269529]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.269539]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.269555]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.269585]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.269593] kvm: Could not allocate 304 bytes percpu data
[   52.269613]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.269630]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.269632] kvm: Could not allocate 304 bytes percpu data
[   52.269849] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.269851] Pid: 1226, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.269851] Call Trace:
[   52.269856]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.269858]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.269861]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.269863]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.269866]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.269868]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.269871]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.269873]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.269876]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.269878]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.269880]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.269882] kvm: Could not allocate 304 bytes percpu data
[   52.284230] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.284232] Pid: 1202, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.284233] Call Trace:
[   52.284269]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.284278]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.284291] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.284295] Pid: 1178, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.284296]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.284301] Call Trace:
[   52.284300]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.284315]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.284313] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.284316] Pid: 1182, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.284318]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.284327]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.284325] Call Trace:
[   52.284327] PERCPU: allocation failed, size=304 align=32, alloc from reserved chunk failed
[   52.284331] Pid: 1218, comm: modprobe Not tainted 3.6.0-ntz #23
[   52.284337]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.284337]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.284339]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.284341] Call Trace:
[   52.284350]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.284349]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.284350]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.284356]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   52.284363]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.284363]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.284365]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.284369]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   52.284379]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.284378]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.284380]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.284384]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   52.284392]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.284392]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.284393]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.284397]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   52.284407]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.284406]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.284407]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.284411]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   52.284413] kvm: Could not allocate 304 bytes percpu data
[   52.284422]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.284420]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.284422]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   52.284429]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.284429]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.284431]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   52.284438]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.284437]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.284439]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   52.284444] kvm: Could not allocate 304 bytes percpu data
[   52.284444]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.284446]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   52.284448]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.284451]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   52.284452] kvm: Could not allocate 304 bytes percpu data
[   52.284454]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   52.284455] kvm: Could not allocate 304 bytes percpu data
[   52.605342] scsi 7:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[   52.605606] scsi 7:0:0:0: Attached scsi generic sg1 type 5
[   52.613431] scsi 8:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[   52.613770] sd 8:0:0:0: Attached scsi generic sg2 type 0
[   52.615890] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[   52.617516] scsi 9:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   52.617812] sd 9:0:0:0: Attached scsi generic sg3 type 0
[   52.619823] sd 9:0:0:0: [sdc] Attached SCSI removable disk
[   53.056874] Pid: 1194, comm: modprobe Not tainted 3.6.0-ntz #23
[   53.063151] Call Trace:
[   53.069385]  [<ffffffff8111ac3d>] pcpu_alloc+0x40d/0x470
[   53.075719]  [<ffffffff810a0e35>] ? get_modinfo+0x45/0xc0
[   53.082090]  [<ffffffff8111acae>] __alloc_reserved_percpu+0xe/0x10
[   53.088556]  [<ffffffff810a2fa4>] layout_and_allocate+0xb4/0x170
[   53.094969]  [<ffffffff810a3b31>] load_module+0x111/0x830
[   53.101463]  [<ffffffff8144dbec>] ? do_page_fault+0x23c/0x490
[   53.107861]  [<ffffffff81115495>] ? vm_mmap_pgoff+0x85/0xa0
[   53.114360]  [<ffffffff8120742b>] ? apparmor_capable+0x1b/0x80
[   53.120841]  [<ffffffff811e1283>] ? security_capable+0x13/0x20
[   53.127224]  [<ffffffff810a42aa>] sys_init_module+0x5a/0x220
[   53.133659]  [<ffffffff814520b9>] system_call_fastpath+0x16/0x1b
[   53.140118] kvm: Could not allocate 304 bytes percpu data
[   53.204181] sr0: scsi-1 drive
[   53.210540] cdrom: Uniform CD-ROM driver Revision: 3.20
[   53.217199] sr 7:0:0:0: Attached scsi CD-ROM sr0
[   57.425406] mlx4_core 0000:03:00.0: irq 114 for MSI/MSI-X
[   57.431907] mlx4_core 0000:03:00.0: irq 115 for MSI/MSI-X
[   57.438311] mlx4_core 0000:03:00.0: irq 116 for MSI/MSI-X
[   57.444638] mlx4_core 0000:03:00.0: irq 117 for MSI/MSI-X
[   57.450876] mlx4_core 0000:03:00.0: irq 118 for MSI/MSI-X
[   57.456986] mlx4_core 0000:03:00.0: irq 119 for MSI/MSI-X
[   57.462957] mlx4_core 0000:03:00.0: irq 120 for MSI/MSI-X
[   57.468853] mlx4_core 0000:03:00.0: irq 121 for MSI/MSI-X
[   57.474686] mlx4_core 0000:03:00.0: irq 122 for MSI/MSI-X
[   57.480457] mlx4_core 0000:03:00.0: irq 123 for MSI/MSI-X
[   57.486139] mlx4_core 0000:03:00.0: irq 124 for MSI/MSI-X
[   57.491741] mlx4_core 0000:03:00.0: irq 125 for MSI/MSI-X
[   57.497266] mlx4_core 0000:03:00.0: irq 126 for MSI/MSI-X
[   57.502699] mlx4_core 0000:03:00.0: irq 127 for MSI/MSI-X
[   57.508099] mlx4_core 0000:03:00.0: irq 128 for MSI/MSI-X
[   57.513374] mlx4_core 0000:03:00.0: irq 129 for MSI/MSI-X
[   57.518519] mlx4_core 0000:03:00.0: irq 130 for MSI/MSI-X
[   57.523586] mlx4_core 0000:03:00.0: irq 131 for MSI/MSI-X
[   57.528571] mlx4_core 0000:03:00.0: irq 132 for MSI/MSI-X
[   57.533469] mlx4_core 0000:03:00.0: irq 133 for MSI/MSI-X
[   57.538239] mlx4_core 0000:03:00.0: irq 134 for MSI/MSI-X
[   57.542874] mlx4_core 0000:03:00.0: irq 135 for MSI/MSI-X
[   57.707426] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k 
[   58.131148] device-mapper: uevent: version 1.0.3
[   58.135848] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[   58.422605] loop: module loaded
[   59.407900] fuse init (API version 7.20)

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-24 21:49                     ` Nathan Zimmer
@ 2016-10-25 20:41                       ` Sean Young
  2016-10-26 18:16                         ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-25 20:41 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan

On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
> [    0.974874] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
> [    0.975038] pnp 00:04: parse resource options
> [    0.975048] pnp 00:04:   dependent set 0 (acceptable) io  min 0x2f8 max 0x2f8 align 1 size 8 flags 0x1
> [    0.975056] pnp 00:04:   dependent set 0 (acceptable) irq 3 4 5 6 7 10 11 12 flags 0x1
> [    0.975060] pnp 00:04:   dependent set 0 (acceptable) dma <none> (bitmask 0x0) flags 0x0

So here the bios claims that the serial port can use any of 3 to 12 irqs.

> [    1.543636] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled

Why is this kernel compiled with irq sharing disabled?

> [    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A

The isa probe driver find the serial port.

> [    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
> [    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)

But then decides that the port is already in use (the existing serial driver).

> [    1.568366] serial 00:04: pnp_assign_resources failed (-16)
> [    1.569188] serial 00:04: unable to assign resources
> [    1.569924] serial: probe of 00:04 failed with error -16

Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
irq 3 and it will be happy again, but that is just a guess.

I think I have not fully understood what the failure is. Does the serial
port not work or does the boot hang? What are the symptoms?

We might be able to fix the problem with a pnp quirk but 3.7 is has not had
any releases for a long time. We will need a reproduction on a concurrent
kernel so a patch can be written for that.


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-25 20:41                       ` Sean Young
@ 2016-10-26 18:16                         ` Nathan Zimmer
  2016-10-27 20:19                           ` Sean Young
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-26 18:16 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-kernel, linux-serial, gregkh, alan



On 10/25/2016 03:41 PM, Sean Young wrote:
> On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
>> [    0.974874] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
>> [    0.975038] pnp 00:04: parse resource options
>> [    0.975048] pnp 00:04:   dependent set 0 (acceptable) io  min 0x2f8 max 0x2f8 align 1 size 8 flags 0x1
>> [    0.975056] pnp 00:04:   dependent set 0 (acceptable) irq 3 4 5 6 7 10 11 12 flags 0x1
>> [    0.975060] pnp 00:04:   dependent set 0 (acceptable) dma <none> (bitmask 0x0) flags 0x0
> So here the bios claims that the serial port can use any of 3 to 12 irqs.
>
>> [    1.543636] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
> Why is this kernel compiled with irq sharing disabled?
Because I first noticed the error on a sles kernel and that is how they 
have it set.
The error also occurs with sharing on.

<snip from a 4.8 dmesg with irq sharing enabled>
[    4.662336] Serial: 8250/16550 driver, 8 ports, IRQ sharing enabled
[    4.663316] serial 00:03: pnp_assign_resources, try dependent set 0
[    4.664249] serial 00:03: [io  0x02f8-0x02ff]
[    4.664913] serial 00:03:   device 0000:00:16.1 using irq 5
[    4.688879] serial 00:03:   device 0000:00:1f.3 using irq 10
[    4.712265] serial 00:03:   device 0000:00:16.0 using irq 11
[    4.735265] serial 00:03: [irq 12]
[    4.757538] serial 00:03:   dma 0 disabled
[    4.780153] serial 00:03: [dma 18446744073709551615 disabled]
[    4.802826] serial 00:03: pnp_assign_resources succeeded: current 
resources:
[    4.825758] serial 00:03: [io  0x02f8-0x02ff flags 0x40000101]
[    4.848625] serial 00:03: [irq 12 flags 0x40000401]
[    4.871224] serial 00:03: [dma 18446744073709551615 flags 0x50000800]
[    4.893988] serial 00:03: pnp_start_dev: current resources:
[    4.916634] serial 00:03: [io  0x02f8-0x02ff flags 0x40000101]
[    4.939280] serial 00:03: [irq 12 flags 0x40000401]
[    4.961646] serial 00:03: [dma 18446744073709551615 flags 0x50000800]
[    4.984180] serial 00:03: set resources
[    5.006654] serial 00:03: encode 3 resources
[    5.028545] serial 00:03:   encode io 0x2f8-0x2ff decode 0x1
[    5.050486] serial 00:03:   encode irq 12 edge high exclusive (2-byte 
descriptor)
[    5.072593] serial 00:03:   encode dma (disabled)
[    5.094644] serial 00:03: activated
[    5.136000] 00:03: ttyS1 at I/O 0x2f8 (irq = 12, base_baud = 115200) 
is a 16550A


>> [    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> The isa probe driver find the serial port.
>
>> [    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
>> [    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
> But then decides that the port is already in use (the existing serial driver).
>> [    1.568366] serial 00:04: pnp_assign_resources failed (-16)
>> [    1.569188] serial 00:04: unable to assign resources
>> [    1.569924] serial: probe of 00:04 failed with error -16
> Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
> irq 3 and it will be happy again, but that is just a guess.
>
> I think I have not fully understood what the failure is. Does the serial
> port not work or does the boot hang? What are the symptoms?
With console=ttyS1 the boot will "hang", sometimes it makes it all the 
way through but may take 30 minutes, instead of the 2-4 minutes this box

> We might be able to fix the problem with a pnp quirk but 3.7 is has not had
> any releases for a long time. We will need a reproduction on a concurrent
> kernel so a patch can be written for that.
Yes it still happens with 4.8+
I had only started dwelling on 3.6/3.7 since that is where it first 
appears and don't have any attachment to those.

>
> Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-26 18:16                         ` Nathan Zimmer
@ 2016-10-27 20:19                           ` Sean Young
  2016-10-28 19:42                             ` Nathan Zimmer
                                               ` (2 more replies)
  0 siblings, 3 replies; 29+ messages in thread
From: Sean Young @ 2016-10-27 20:19 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan, Rafael J. Wysocki

On Wed, Oct 26, 2016 at 01:16:16PM -0500, Nathan Zimmer wrote:
> On 10/25/2016 03:41 PM, Sean Young wrote:
> >On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
> >>[    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> >The isa probe driver find the serial port.
> >
> >>[    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
> >>[    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
> >But then decides that the port is already in use (the existing serial driver).
> >>[    1.568366] serial 00:04: pnp_assign_resources failed (-16)
> >>[    1.569188] serial 00:04: unable to assign resources
> >>[    1.569924] serial: probe of 00:04 failed with error -16
> >Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
> >irq 3 and it will be happy again, but that is just a guess.
> >
> >I think I have not fully understood what the failure is. Does the serial
> >port not work or does the boot hang? What are the symptoms?
> With console=ttyS1 the boot will "hang", sometimes it makes it all the way
> through but may take 30 minutes, instead of the 2-4 minutes this box

Where does it hang? Any error messages?

> >We might be able to fix the problem with a pnp quirk but 3.7 is has not had
> >any releases for a long time. We will need a reproduction on a concurrent
> >kernel so a patch can be written for that.
> Yes it still happens with 4.8+
> I had only started dwelling on 3.6/3.7 since that is where it first appears
> and don't have any attachment to those.

Ok. Please try to following patch. I'm not sure it is good enough to be
merged as-is, but should provide a start for testing. Output with
CONFIG_PNP_DEBUG_MESSAGES should show only irq 3 is available for the 
serial port now.

Sean

>From 3a1705a2e28f4385b778ad96d7c517b82ea860e2 Mon Sep 17 00:00:00 2001
From: Sean Young <sean@mess.org>
Date: Thu, 27 Oct 2016 20:13:50 +0100
Subject: [PATCH] PNP: Add quirk for BIOS advertising wrong irqs for serial
 port

Signed-off-by: Sean Young <sean@mess.org>
---
 drivers/pnp/quirks.c | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c
index d28e3ab..8712161 100644
--- a/drivers/pnp/quirks.c
+++ b/drivers/pnp/quirks.c
@@ -66,6 +66,48 @@ static void quirk_awe32_resources(struct pnp_dev *dev)
 	}
 }
 
+static void quirk_serial_port(struct pnp_dev *dev)
+{
+	struct pnp_option *option;
+	struct pnp_irq *irq;
+	struct pnp_port *port;
+
+	list_for_each_entry(option, &dev->options, list) {
+		if (!pnp_option_is_dependent(option))
+			continue;
+
+		if (option->type == IORESOURCE_IO) {
+			port = &option->u.port;
+
+			if (port->min != 0x2f8 || port->max != 0x2f8 ||
+				port->size != 8 || port->align != 1)
+				return;
+		} else if (option->type == IORESOURCE_IRQ) {
+			pnp_irq_mask_t map;
+
+			irq = &option->u.irq;
+
+			bitmap_zero(map.bits, PNP_IRQ_NR);
+			__set_bit(3, map.bits);
+			__set_bit(4, map.bits);
+			__set_bit(5, map.bits);
+			__set_bit(6, map.bits);
+			__set_bit(7, map.bits);
+			__set_bit(10, map.bits);
+			__set_bit(11, map.bits);
+			__set_bit(12, map.bits);
+
+			if (!bitmap_equal(map.bits, irq->map.bits, PNP_IRQ_NR))
+				return;
+		}
+	}
+
+	if (irq && port) {
+		bitmap_zero(irq->map.bits, PNP_IRQ_NR);
+		__set_bit(3, irq->map.bits);
+	}
+}
+
 static void quirk_cmi8330_resources(struct pnp_dev *dev)
 {
 	struct pnp_option *option;
@@ -448,6 +490,7 @@ static struct pnp_fixup pnp_fixups[] = {
 #ifdef CONFIG_PCI
 	{"PNP0c02", quirk_intel_mch},
 #endif
+	{"PNP0c02", quirk_serial_port},
 	{""}
 };
 
-- 
2.7.4

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-27 20:19                           ` Sean Young
@ 2016-10-28 19:42                             ` Nathan Zimmer
  2016-10-29 21:16                               ` Sean Young
  2016-10-28 19:55                             ` Nathan
  2016-10-30 15:33                             ` Nathan
  2 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-10-28 19:42 UTC (permalink / raw)
  To: Sean Young
  Cc: Nathan Zimmer, linux-kernel, linux-serial, gregkh, alan,
	Rafael J. Wysocki

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

On Thu, Oct 27, 2016 at 09:19:16PM +0100, Sean Young wrote:
> On Wed, Oct 26, 2016 at 01:16:16PM -0500, Nathan Zimmer wrote:
> > On 10/25/2016 03:41 PM, Sean Young wrote:
> > >On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
> > >>[    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> > >The isa probe driver find the serial port.
> > >
> > >>[    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
> > >>[    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
> > >But then decides that the port is already in use (the existing serial driver).
> > >>[    1.568366] serial 00:04: pnp_assign_resources failed (-16)
> > >>[    1.569188] serial 00:04: unable to assign resources
> > >>[    1.569924] serial: probe of 00:04 failed with error -16
> > >Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
> > >irq 3 and it will be happy again, but that is just a guess.
> > >
> > >I think I have not fully understood what the failure is. Does the serial
> > >port not work or does the boot hang? What are the symptoms?
> > With console=ttyS1 the boot will "hang", sometimes it makes it all the way
> > through but may take 30 minutes, instead of the 2-4 minutes this box
> 
> Where does it hang? Any error messages?
> 

Shortly after mounting the root.
After that I get no more output...

Here is a failure log from 4.8.

> > >We might be able to fix the problem with a pnp quirk but 3.7 is has not had
> > >any releases for a long time. We will need a reproduction on a concurrent
> > >kernel so a patch can be written for that.
> > Yes it still happens with 4.8+
> > I had only started dwelling on 3.6/3.7 since that is where it first appears
> > and don't have any attachment to those.
> 
> Ok. Please try to following patch. I'm not sure it is good enough to be
> merged as-is, but should provide a start for testing. Output with
> CONFIG_PNP_DEBUG_MESSAGES should show only irq 3 is available for the 
> serial port now.
> 
> Sean
> 
> From 3a1705a2e28f4385b778ad96d7c517b82ea860e2 Mon Sep 17 00:00:00 2001
> From: Sean Young <sean@mess.org>
> Date: Thu, 27 Oct 2016 20:13:50 +0100
> Subject: [PATCH] PNP: Add quirk for BIOS advertising wrong irqs for serial
>  port
> 
> Signed-off-by: Sean Young <sean@mess.org>
> ---
>  drivers/pnp/quirks.c | 43 +++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
> 
> diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c
> index d28e3ab..8712161 100644
> --- a/drivers/pnp/quirks.c
> +++ b/drivers/pnp/quirks.c
> @@ -66,6 +66,48 @@ static void quirk_awe32_resources(struct pnp_dev *dev)
>  	}
>  }
>  
> +static void quirk_serial_port(struct pnp_dev *dev)
> +{
> +	struct pnp_option *option;
> +	struct pnp_irq *irq;
> +	struct pnp_port *port;
> +
> +	list_for_each_entry(option, &dev->options, list) {
> +		if (!pnp_option_is_dependent(option))
> +			continue;
> +
> +		if (option->type == IORESOURCE_IO) {
> +			port = &option->u.port;
> +
> +			if (port->min != 0x2f8 || port->max != 0x2f8 ||
> +				port->size != 8 || port->align != 1)
> +				return;
> +		} else if (option->type == IORESOURCE_IRQ) {
> +			pnp_irq_mask_t map;
> +
> +			irq = &option->u.irq;
> +
> +			bitmap_zero(map.bits, PNP_IRQ_NR);
> +			__set_bit(3, map.bits);
> +			__set_bit(4, map.bits);
> +			__set_bit(5, map.bits);
> +			__set_bit(6, map.bits);
> +			__set_bit(7, map.bits);
> +			__set_bit(10, map.bits);
> +			__set_bit(11, map.bits);
> +			__set_bit(12, map.bits);
> +
> +			if (!bitmap_equal(map.bits, irq->map.bits, PNP_IRQ_NR))
> +				return;
> +		}
> +	}
> +
> +	if (irq && port) {
> +		bitmap_zero(irq->map.bits, PNP_IRQ_NR);
> +		__set_bit(3, irq->map.bits);
> +	}
> +}
> +
>  static void quirk_cmi8330_resources(struct pnp_dev *dev)
>  {
>  	struct pnp_option *option;
> @@ -448,6 +490,7 @@ static struct pnp_fixup pnp_fixups[] = {
>  #ifdef CONFIG_PCI
>  	{"PNP0c02", quirk_intel_mch},
>  #endif
> +	{"PNP0c02", quirk_serial_port},
>  	{""}
>  };
>  
> -- 
> 2.7.4
> 

[-- Attachment #2: con_log_4.8 --]
[-- Type: text/plain, Size: 64753 bytes --]


root (hd0,1)
 Filesystem type is ext2fs, partition type 0x83
kernel /boot/vmlinuz-4.8.0 root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-W
XA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54K
KR60-part1 crashkernel=256M-:128M showopts loglevel=8 pnp.debug=1 vga=0x314 con
sole=ttyS1                                                                      [    0.000000] Linux version 4.8.0 (root@r1i2n0) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #36 SMP Fri Oct 28 13:08:10 EDT 2016   *
[    0.000000] Command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M showopts loglevel=8 pnp.debug=1 vga=0x314 console=ttyS1                                                                  *
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'                                                                     *
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'*****
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.ore) the selected line, 'd' to remove the
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008df5dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000008df5e000-0x000000008df8dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008df8e000-0x000000008e0a3fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000008e0a4000-0x000000008e2c9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000008e2ca000-0x000000008f336fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000008f337000-0x000000008f7fffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000090000000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000106fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: SGI.COM ICE-XIP119/S0751-Medina, BIOS ma2e2054 02/05/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x1070000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FF000000000 write-back
[    0.000000]   1 base 001000000000 mask 3FFF80000000 write-back
[    0.000000]   2 base 000090000000 mask 3FFFF0000000 uncachable
[    0.000000]   3 base 0000A0000000 mask 3FFFE0000000 uncachable
[    0.000000]   4 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   5 base 001070000000 mask 3FFFF0000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT
[    0.000000] e820: update [mem 0x90000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x8df5e max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fdba0-0x000fdbaf] mapped at [ffff8800000fdba0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000088000] 88000 size 28672
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x01e70000, 0x01e70fff] PGTABLE
[    0.000000] BRK [0x01e71000, 0x01e71fff] PGTABLE
[    0.000000] BRK [0x01e72000, 0x01e72fff] PGTABLE
[    0.000000] BRK [0x01e73000, 0x01e73fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x36740000-0x37feffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x000000008DFC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x000000008DFD1CD0 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x000000008DFC51B8 00CB14 (v02 ALASKA A M I    00000201 INTL 20051117)
[    0.000000] ACPI: FACS 0x000000008E2C1080 000040
[    0.000000] ACPI: APIC 0x000000008DFD1DE0 000224 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x000000008DFD2008 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x000000008DFD2050 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: SRAT 0x000000008DFD2090 0004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.000000] ACPI: SLIT 0x000000008DFD2540 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.000000] ACPI: HPET 0x000000008DFD2570 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.000000] ACPI: PRAD 0x000000008DFD25A8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.000000] ACPI: SPMI 0x000000008DFD2668 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.000000] ACPI: SSDT 0x000000008DFD26A8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.000000] ACPI: EINJ 0x000000008E0A3358 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.000000] ACPI: ERST 0x000000008E0A3488 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.000000] ACPI: HEST 0x000000008E0A36B8 000068 (v01 AMI    AMI HEST 00000000      00000000)
[    0.000000] ACPI: BERT 0x000000008E0A3720 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.000000] ACPI: DMAR 0x000000008E0A3750 000150 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
[    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x86fffffff]
[    0.000000] ACPI: SRAT: Node 1 PXM 1 [mem 0x870000000-0x106fffffff]
[    0.000000] NUMA: Initialized distance table, cnt=2
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x86fffffff] -> [mem 0x00000000-0x86fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x86ffde000-0x86fffffff]
[    0.000000] NODE_DATA(1) allocated [mem 0x106ffdb000-0x106fffcfff]
[    0.000000] Reserving 128MB of memory at 736MB for crashkernel (System RAM: 65502MB)
[    0.000000] [ffffea001d880000-ffffea001d9fffff] potential offnode page_structs
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000106fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000008efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000008df5dfff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000086fffffff]
[    0.000000]   node   1: [mem 0x0000000870000000-0x000000106fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000086fffffff]
[    0.000000] On node 0 totalpages: 8380140
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 22 pages reserved
[    0.000000]   DMA zone: 3982 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7894 pages used for memmap
[    0.000000]   DMA32 zone: 577374 pages, LIFO batch:31
[    0.000000]   Normal zone: 106624 pages used for memmap
[    0.000000]   Normal zone: 7798784 pages, LIFO batch:31
[    0.000000] Initmem setup node 1 [mem 0x0000000870000000-0x000000106fffffff]
[    0.000000] On node 1 totalpages: 8388608
[    0.000000]   Normal zone: 114688 pages used for memmap
[    0.000000]   Normal zone: 8388608 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0008f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x8df5e000-0x8df8dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x8df8e000-0x8e0a3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x8e0a4000-0x8e2c9fff]
[    0.000000] PM: Registered nosave memory: [mem 0x8e2ca000-0x8f336fff]
[    0.000000] PM: Registered nosave memory: [mem 0x8f337000-0x8f7fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x8f800000-0x8fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x90000000-0x9fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xa0000000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xa0000000-0xfed1bfff] available for PCI devices
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[    0.000000] percpu: Embedded 33 pages/cpu @ffff88086fa00000 s96984 r8192 d29992 u262144
[    0.000000] pcpu-alloc: s96984 r8192 d29992 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 16 17 18 19 20 21 22 23
[    0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 [1] 24 25 26 27 28 29 30 31
[    0.000000] Built 2 zonelists in Node order, mobility grouping on.  Total pages: 16539464
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M showopts loglevel=8 pnp.debug=1 vga=0x314 console=ttyS1
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Memory: 65913268K/67074992K available (5676K kernel code, 1070K rwdata, 2624K rodata, 1716K init, 1720K bss, 1161724K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=32
[    0.000000] NR_IRQS:524544 nr_irqs:1496 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [ttyS1] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2299.884 MHz processor
[    0.000014] Calibrating delay loop (skipped), value calculated using timer frequency.. 4599.76 BogoMIPS (lpj=9199536)
[    0.001020] pid_max: default: 32768 minimum: 301
[    0.001466] ACPI: Core revision 20160422
[    0.102740] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.103363]
[    0.103631] Security Framework initialized
[    0.104009] AppArmor: AppArmor initialized
[    0.108116] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.123995] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.130596] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.131313] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.132650] CPU: Physical Processor ID: 0
[    0.133026] CPU: Processor Core ID: 1
[    0.133363] mce: CPU supports 27 MCE banks
[    0.133767] CPU0: Thermal monitoring enabled (TM1)
[    0.134288] process: using mwait in idle threads
[    0.134714] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.135219] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.136236] Freeing SMP alternatives memory: 24K (ffffffff81cba000 - ffffffff81cc0000)
[    0.140263] smpboot: APIC(2) Converting physical 0 to logical package 0
[    0.140903] smpboot: APIC(20) Converting physical 1 to logical package 1
[    0.141454] smpboot: Max logical packages: 4
[    0.141862] Switched APIC routing to physical flat.
[    0.142945] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.183213] TSC deadline timer enabled
[    0.183599] smpboot: CPU0: Genuine Intel(R) CPU  @ 2.80GHz (family: 0x6, model: 0x3e, stepping: 0x2)
[    0.184487] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.185585] ... version:                3
[    0.186011] ... bit width:              48
[    0.186465] ... generic registers:      4
[    0.189777] ... value mask:             0000ffffffffffff
[    0.190298] ... max period:             0000ffffffffffff
[    0.190817] ... fixed-purpose events:   3
[    0.191258] ... event mask:             000000070000000f
[    0.194015] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.194958] x86: Booting SMP configuration:
[    0.195371] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7
[    0.760369] .... node  #1, CPUs:    #8  #9 #10 #11 #12 #13 #14 #15
[    1.448756] .... node  #0, CPUs:   #16 #17 #18 #19 #20 #21 #22 #23
[    2.093415] .... node  #1, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31
[    2.765605] x86: Booted up 2 nodes, 32 CPUs
[    2.766049] smpboot: Total of 32 processors activated (147277.48 BogoMIPS)
[    2.872236] devtmpfs: initialized
[    2.872722] x86/mm: Memory block size: 2048MB
[    2.932231] PM: Registering ACPI NVS region [mem 0x8e0a4000-0x8e2c9fff] (2252800 bytes)
[    2.933072] PM: Registering ACPI NVS region [mem 0x8f337000-0x8f7fffff] (5017600 bytes)
[    2.934467] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.980395] RTC time: 19:19:33, date: 10/28/16
[    3.013411] NET: Registered protocol family 16
[    3.028228] cpuidle: using governor ladder
[    3.044241] cpuidle: using governor menu
[    3.044692] ACPI: bus type PCI registered
[    3.076380] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x90000000-0x9fffffff] (base 0x90000000)
[    3.077245] PCI: MMCONFIG at [mem 0x90000000-0x9fffffff] reserved in E820
[    3.078179] pmd_set_huge: Cannot satisfy [mem 0x90000000-0x90200000] with a huge-page mapping due to MTRR override.
[    3.079401] PCI: Using configuration type 1 for base access
[    3.080303] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    3.116693] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    3.117345] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.180515] ACPI: Added _OSI(Module Device)
[    3.180950] ACPI: Added _OSI(Processor Device)
[    3.181383] ACPI: Added _OSI(3.0 _SCP Extensions)
[    3.181782] ACPI: Added _OSI(Processor Aggregator Device)
[    3.182853] ACPI: Executed 1 blocks of module-level executable AML code
[    3.536651] ACPI: Interpreter enabled
[    3.537068] ACPI: (supports S0 S4 S5)
[    3.537428] ACPI: Using IOAPIC for interrupt routing
[    3.537915] HEST: Table parsing has been initialized.
[    3.538673] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    3.566911] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    3.567554] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.568641] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    3.569708] PCI host bridge to bus 0000:00
[    3.570127] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    3.570798] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    3.571348] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    3.571999] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    3.572670] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    3.573357] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    3.573995] pci_bus 0000:00: root bus resource [mem 0x90000000-0xe7ffffff window]
[    3.574680] pci_bus 0000:00: root bus resource [mem 0x380000000000-0x380fffffffff window]
[    3.575420] pci_bus 0000:00: root bus resource [bus 00-7e]
[    3.575922] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    3.576572] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    3.580182] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    3.580855] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    3.581538] pci 0000:00:01.0: System wakeup disabled by ACPI
[    3.582155] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    3.582827] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    3.583508] pci 0000:00:01.1: System wakeup disabled by ACPI
[    3.584134] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    3.584803] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    3.585482] pci 0000:00:02.0: System wakeup disabled by ACPI
[    3.586095] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    3.589973] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    3.590659] pci 0000:00:02.2: System wakeup disabled by ACPI
[    3.591268] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    3.591933] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    3.592631] pci 0000:00:03.0: System wakeup disabled by ACPI
[    3.593235] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    3.593980] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    3.594733] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    3.595341] pci 0000:00:05.4: reg 0x10: [mem 0xe7f06000-0xe7f06fff]
[    3.596120] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    3.600147] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    3.600853] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    3.601593] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    3.602209] pci 0000:00:16.0: reg 0x10: [mem 0xe7f05000-0xe7f0500f 64bit]
[    3.602998] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    3.603708] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    3.604329] pci 0000:00:16.1: reg 0x10: [mem 0xe7f04000-0xe7f0400f 64bit]
[    3.605091] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    3.605818] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    3.606493] pci 0000:00:1a.0: reg 0x10: [mem 0xe7f02000-0xe7f023ff]
[    3.610022] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    3.610746] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    3.611351] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    3.612014] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    3.612700] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    3.613310] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    3.613989] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    3.614661] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    3.615264] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    3.615869] pci 0000:00:1d.0: reg 0x10: [mem 0xe7f01000-0xe7f013ff]
[    3.621174] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    3.622551] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    3.623870] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    3.625299] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    3.625921] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    3.629933] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    3.630552] pci 0000:00:1f.2: reg 0x10: [io  0x9070-0x9077]
[    3.631101] pci 0000:00:1f.2: reg 0x14: [io  0x9060-0x9063]
[    3.631587] pci 0000:00:1f.2: reg 0x18: [io  0x9050-0x9057]
[    3.632100] pci 0000:00:1f.2: reg 0x1c: [io  0x9040-0x9043]
[    3.632617] pci 0000:00:1f.2: reg 0x20: [io  0x9020-0x903f]
[    3.633133] pci 0000:00:1f.2: reg 0x24: [mem 0xe7f00000-0xe7f007ff]
[    3.633736] pci 0000:00:1f.2: PME# supported from D3hot
[    3.634278] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[    3.634879] pci 0000:00:1f.3: reg 0x10: [mem 0x380ffff01000-0x380ffff010ff 64bit]
[    3.635621] pci 0000:00:1f.3: reg 0x20: [io  0x9000-0x901f]
[    3.636149] pci 0000:00:1f.6: [8086:1d24] type 00 class 0x118000
[    3.639771] pci 0000:00:1f.6: reg 0x10: [mem 0x380ffff00000-0x380ffff00fff 64bit]
[    3.640701] pci 0000:00:01.0: PCI bridge to [bus 01]
[    3.641262] pci 0000:00:01.1: PCI bridge to [bus 02]
[    3.641976] pci 0000:03:00.0: [15b3:1003] type 00 class 0x028000
[    3.642853] pci 0000:03:00.0: reg 0x10: [mem 0xe7e00000-0xe7efffff 64bit]
[    3.643729] pci 0000:03:00.0: reg 0x18: [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    3.646418] pci 0000:00:02.0: PCI bridge to [bus 03]
[    3.646940] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    3.650496] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    3.651332] pci 0000:00:02.2: PCI bridge to [bus 04]
[    3.651831] pci 0000:05:00.0: [8086:2250] type 00 class 0x0b4000
[    3.652431] pci 0000:05:00.0: reg 0x10: [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    3.653354] pci 0000:05:00.0: reg 0x20: [mem 0xe7d00000-0xe7d1ffff 64bit]
[    3.654073] pci 0000:05:00.0: PME# supported from D0
[    3.666575] pci 0000:00:03.0: PCI bridge to [bus 05]
[    3.667115] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    3.671366] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    3.672650] pci 0000:06:00.0: [8086:1d69] type 00 class 0x010700
[    3.673652] pci 0000:06:00.0: reg 0x10: [mem 0x380e00c7c000-0x380e00c7ffff 64bit pref]
[    3.675817] pci 0000:06:00.0: reg 0x18: [mem 0x380e00800000-0x380e00bfffff 64bit pref]
[    3.680079] pci 0000:06:00.0: reg 0x20: [io  0x8000-0x80ff]
[    3.680753] pci 0000:06:00.0: reg 0x164: [mem 0x380e00c00000-0x380e00c03fff 64bit pref]
[    3.681533] pci 0000:06:00.0: VF(n) BAR0 space: [mem 0x380e00c00000-0x380e00c7bfff 64bit pref] (contains BAR0 for 31 VFs)
[    3.682750] pci 0000:00:11.0: PCI bridge to [bus 06]
[    3.683267] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    3.683782] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    3.684398] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    3.685236] pci 0000:07:00.0: [8086:1523] type 00 class 0x020000
[    3.685842] pci 0000:07:00.0: reg 0x10: [mem 0xe7b00000-0xe7b1ffff]
[    3.689491] pci 0000:07:00.0: reg 0x18: [io  0x7000-0x701f]
[    3.690090] pci 0000:07:00.0: reg 0x1c: [mem 0xe7b20000-0xe7b23fff]
[    3.690870] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    3.691538] pci 0000:07:00.0: reg 0x184: [mem 0x380e00e20000-0x380e00e23fff 64bit pref]
[    3.692292] pci 0000:07:00.0: VF(n) BAR0 space: [mem 0x380e00e20000-0x380e00e3ffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.693315] pci 0000:07:00.0: reg 0x190: [mem 0x380e00e00000-0x380e00e03fff 64bit pref]
[    3.694008] pci 0000:07:00.0: VF(n) BAR3 space: [mem 0x380e00e00000-0x380e00e1ffff 64bit pref] (contains BAR3 for 8 VFs)
[    3.710055] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    3.710604] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    3.711190] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    3.711833] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    3.712706] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400
[    3.713450] pci 0000:09:00.0: supports D1 D2
[    3.713882] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.726472] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    3.727027] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    3.730201] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    3.730862] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    3.731673] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000
[    3.732318] pci 0000:0a:00.0: reg 0x10: [mem 0xe7000000-0xe77fffff pref]
[    3.732973] pci 0000:0a:00.0: reg 0x14: [mem 0xe7a00000-0xe7a1ffff]
[    3.733593] pci 0000:0a:00.0: reg 0x18: [io  0x6000-0x607f]
[    3.734259] pci 0000:0a:00.0: supports D1 D2
[    3.734703] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.735431] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    3.735936] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    3.736602] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    3.740253] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    3.741054] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    3.741703] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    3.742474] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    3.743268] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    3.744035] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    3.744818] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    3.745619] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    3.746473] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xe7ffffff window] (subtractive decode)
[    3.750286] pci 0000:00:1e.0:   bridge window [mem 0x380000000000-0x380fffffffff window] (subtractive decode)
[    3.751225] pci_bus 0000:00: on NUMA node 0
[    3.752470] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    3.753066] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.753823] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    3.754632] PCI host bridge to bus 0000:7f
[    3.755036] pci_bus 0000:7f: root bus resource [bus 7f]
[    3.755551] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[    3.756143] pci 0000:7f:08.3: [8086:0e83] type 00 class 0x088000
[    3.756886] pci 0000:7f:08.4: [8086:0e84] type 00 class 0x088000
[    3.760569] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[    3.761222] pci 0000:7f:09.3: [8086:0e93] type 00 class 0x088000
[    3.761889] pci 0000:7f:09.4: [8086:0e94] type 00 class 0x088000
[    3.762567] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[    3.763219] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[    3.763866] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[    3.764519] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[    3.765170] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[    3.765818] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[    3.766538] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[    3.770106] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[    3.770630] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[    3.771135] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[    3.771709] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[    3.772374] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[    3.773020] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[    3.773662] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[    3.774312] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[    3.774961] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[    3.775611] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[    3.776268] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[    3.779890] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[    3.780555] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[    3.781234] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[    3.781900] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[    3.782579] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[    3.783247] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[    3.783930] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[    3.784611] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[    3.785290] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[    3.785960] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[    3.786698] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[    3.790137] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[    3.790803] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000
[    3.791494] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[    3.792157] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[    3.792806] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[    3.793457] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[    3.794105] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[    3.794763] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[    3.795409] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[    3.796075] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[    3.799871] pci_bus 0000:7f: on NUMA node 0
[    3.800613] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    3.801237] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.802311] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    3.803458] PCI host bridge to bus 0000:80
[    3.803880] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    3.804535] pci_bus 0000:80: root bus resource [mem 0xe8000000-0xfbffffff window]
[    3.805216] pci_bus 0000:80: root bus resource [mem 0x381000000000-0x381fffffffff window]
[    3.805987] pci_bus 0000:80: root bus resource [bus 80-fe]
[    3.809527] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400
[    3.810167] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    3.810871] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400
[    3.811536] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    3.812227] pci 0000:80:01.1: [8086:0e03] type 01 class 0x060400
[    3.812897] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    3.813602] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400
[    3.814269] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    3.814959] pci 0000:80:02.2: [8086:0e06] type 01 class 0x060400
[    3.815624] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[    3.816314] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400
[    3.819951] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    3.820649] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000
[    3.821372] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000
[    3.822091] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020
[    3.822695] pci 0000:80:05.4: reg 0x10: [mem 0xfbf00000-0xfbf00fff]
[    3.823436] pci 0000:80:07.0: [8086:0e18] type 00 class 0x088000
[    3.824207] pci 0000:80:00.0: PCI bridge to [bus 81]
[    3.824754] pci 0000:80:01.0: PCI bridge to [bus 82]
[    3.825287] pci 0000:80:01.1: PCI bridge to [bus 83]
[    3.825821] pci 0000:80:02.0: PCI bridge to [bus 84]
[    3.826410] pci 0000:80:02.2: PCI bridge to [bus 85]
[    3.829956] pci 0000:86:00.0: [8086:2250] type 00 class 0x0b4000
[    3.830553] pci 0000:86:00.0: reg 0x10: [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    3.831218] pci 0000:86:00.0: reg 0x20: [mem 0xfbe00000-0xfbe1ffff 64bit]
[    3.831886] pci 0000:86:00.0: PME# supported from D0
[    3.832552] pci 0000:80:03.0: PCI bridge to [bus 86]
[    3.833058] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    3.833626] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    3.834460] pci_bus 0000:80: on NUMA node 1
[    3.834991] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    3.835579] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    3.836368] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    3.840127] PCI host bridge to bus 0000:ff
[    3.840532] pci_bus 0000:ff: root bus resource [bus ff]
[    3.840967] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    3.841577] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    3.842231] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    3.842922] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    3.843568] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    3.844228] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    3.844887] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    3.845528] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    3.846171] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    3.849831] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    3.850480] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    3.851129] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    3.851770] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    3.852412] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    3.853053] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    3.853694] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    3.854340] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    3.854989] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    3.855629] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    3.856270] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    3.860077] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    3.860721] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    3.861370] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    3.862015] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    3.862670] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    3.863322] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    3.863973] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    3.864630] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    3.865300] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    3.865952] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    3.866670] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    3.870041] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    3.870560] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    3.871067] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    3.871656] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    3.872316] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    3.872968] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    3.873622] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    3.874280] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    3.874929] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    3.875578] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    3.876224] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    3.879865] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    3.880513] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    3.881157] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    3.881809] pci_bus 0000:ff: on NUMA node 1
[    3.882353] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    3.883245] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    3.884120] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
[    3.884946] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    3.885779] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    3.886729] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    3.890745] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    3.891631] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    3.897137] ACPI: Enabled 4 GPEs in block 00 to 3F
[    3.897898] vgaarb: setting as boot device: PCI:0000:0a:00.0
[    3.900150] vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=io+mem,locks=none
[    3.900974] vgaarb: loaded
[    3.901233] vgaarb: bridge control possible 0000:0a:00.0
[    3.902032] PCI: Using ACPI for IRQ routing
[    3.907034] PCI: pci_cache_line_size set to 64 bytes
[    3.907798] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
[    3.910259] e820: reserve RAM buffer [mem 0x8df5e000-0x8fffffff]
[    3.910960] NetLabel: Initializing
[    3.911316] NetLabel:  domain hash size = 128
[    3.911724] NetLabel:  protocols = UNLABELED CIPSOv4
[    3.912141] NetLabel:  unlabeled traffic allowed by default
[    3.912774] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    3.913430] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    3.916114] clocksource: Switched to clocksource hpet
[    3.920724] VFS: Disk quotas dquot_6.6.0
[    3.960129] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.992187] AppArmor: AppArmor Filesystem Enabled
[    3.992759] pnp: PnP ACPI init
[    3.993118] pnp 00:00: parse allocated resources
[    3.993591] pnp 00:00: PNP0c01: calling quirk_system_pci_resources+0x0/0x180
[    3.994362] pnp 00:00: PNP0c01: calling quirk_amd_mmconfig_area+0x0/0xc0
[    3.995054] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    3.995733] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    3.999472] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    4.000127] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    4.000753] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    4.001370] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    4.001940] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.002610] pnp 00:01: parse allocated resources
[    4.003110] pnp 00:01: PNP0c02: calling quirk_system_pci_resources+0x0/0x180
[    4.003821] pnp 00:01: PNP0c02: calling quirk_intel_mch+0x0/0x1a0
[    4.004480] system 00:01: [mem 0xe7ffc000-0xe7ffdfff] has been reserved
[    4.005125] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.005792] pnp 00:02: parse allocated resources
[    4.006407] pnp 00:02: PNP0c02: calling quirk_system_pci_resources+0x0/0x180
[    4.010170] pnp 00:02: PNP0c02: calling quirk_intel_mch+0x0/0x1a0
[    4.010778] system 00:02: [io  0x0a00-0x0a1f] has been reserved
[    4.011277] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.012071] pnp 00:03: parse resource options
[    4.012535] pnp 00:03:   dependent set 0 (acceptable) io  min 0x2f8 max 0x2f8 align 1 size 8 flags 0x1
[    4.013429] pnp 00:03:   dependent set 0 (acceptable) irq 3 4 5 6 7 10 11 12 flags 0x1
[    4.014139] pnp 00:03:   dependent set 0 (acceptable) dma <none> (bitmask 0x0) flags 0x0
[    4.014913] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (disabled)
[    4.015548] pnp 00:04: parse allocated resources
[    4.016058] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    4.019886] pnp 00:05: parse allocated resources
[    4.020436] pnp 00:05: PNP0c02: calling quirk_system_pci_resources+0x0/0x180
[    4.021146] pnp 00:05: PNP0c02: calling quirk_intel_mch+0x0/0x1a0
[    4.021781] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    4.022361] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.022994] pnp 00:06: parse allocated resources
[    4.023716] pnp 00:06: PNP0c01: calling quirk_system_pci_resources+0x0/0x180
[    4.024453] pnp 00:06: PNP0c01: calling quirk_amd_mmconfig_area+0x0/0xc0
[    4.025154] system 00:06: [io  0x0400-0x0453] has been reserved
[    4.025734] system 00:06: [io  0x0458-0x047f] has been reserved
[    4.026383] system 00:06: [io  0x1180-0x119f] has been reserved
[    4.029936] system 00:06: [io  0x0500-0x057f] has been reserved
[    4.030530] system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    4.031161] system 00:06: [mem 0xfec00000-0xfecfffff] could not be reserved
[    4.031783] system 00:06: [mem 0xfed08000-0xfed08fff] has been reserved
[    4.032351] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    4.032981] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.033671] pnp 00:07: parse allocated resources
[    4.034203] pnp 00:07: PNP0c02: calling quirk_system_pci_resources+0x0/0x180
[    4.034909] pnp 00:07: PNP0c02: calling quirk_intel_mch+0x0/0x1a0
[    4.035550] system 00:07: [io  0x0454-0x0457] has been reserved
[    4.036186] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    4.040227] pnp 00:08: parse allocated resources
[    4.040705] pnp 00:08: PNP0c01: calling quirk_system_pci_resources+0x0/0x180
[    4.041411] pnp 00:08: PNP0c01: calling quirk_amd_mmconfig_area+0x0/0xc0
[    4.041973] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    4.042630] pnp 00:09: parse allocated resources
[    4.043125] pnp 00:09: PNP0c02: calling quirk_system_pci_resources+0x0/0x180
[    4.043833] pnp 00:09: PNP0c02: calling quirk_intel_mch+0x0/0x1a0
[    4.044468] system 00:09: [mem 0xfbffe000-0xfbffffff] has been reserved
[    4.045108] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    4.046263] pnp: PnP ACPI: found 10 devices
[    4.053666] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    4.054683] pci 0000:00:01.0: PCI bridge to [bus 01]
[    4.055165] pci 0000:00:01.1: PCI bridge to [bus 02]
[    4.055644] pci 0000:00:02.0: PCI bridge to [bus 03]
[    4.056132] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    4.059841] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    4.060582] pci 0000:00:02.2: PCI bridge to [bus 04]
[    4.061002] pci 0000:00:03.0: PCI bridge to [bus 05]
[    4.061441] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    4.062021] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    4.062769] pci 0000:00:11.0: PCI bridge to [bus 06]
[    4.063265] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    4.063859] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    4.064487] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    4.065280] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    4.065842] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    4.069672] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    4.070351] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    4.071112] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    4.071564] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    4.072118] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    4.072693] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    4.073400] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    4.073925] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    4.074534] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    4.075170] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    4.075848] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    4.076340] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    4.079806] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    4.080349] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    4.080957] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    4.081603] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    4.082278] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    4.082922] pci_bus 0000:00: resource 10 [mem 0x90000000-0xe7ffffff window]
[    4.083539] pci_bus 0000:00: resource 11 [mem 0x380000000000-0x380fffffffff window]
[    4.084263] pci_bus 0000:03: resource 1 [mem 0xe7e00000-0xe7efffff]
[    4.084895] pci_bus 0000:03: resource 2 [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    4.085618] pci_bus 0000:05: resource 1 [mem 0xe7d00000-0xe7dfffff]
[    4.086179] pci_bus 0000:05: resource 2 [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    4.089989] pci_bus 0000:06: resource 0 [io  0x8000-0x8fff]
[    4.090581] pci_bus 0000:06: resource 1 [mem 0xe7c00000-0xe7cfffff]
[    4.091215] pci_bus 0000:06: resource 2 [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    4.091947] pci_bus 0000:07: resource 0 [io  0x7000-0x7fff]
[    4.092470] pci_bus 0000:07: resource 1 [mem 0xe7b00000-0xe7bfffff]
[    4.093032] pci_bus 0000:07: resource 2 [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    4.093770] pci_bus 0000:09: resource 0 [io  0x6000-0x6fff]
[    4.094355] pci_bus 0000:09: resource 1 [mem 0xe7a00000-0xe7afffff]
[    4.094993] pci_bus 0000:09: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    4.095680] pci_bus 0000:0a: resource 0 [io  0x6000-0x6fff]
[    4.096218] pci_bus 0000:0a: resource 1 [mem 0xe7a00000-0xe7afffff]
[    4.099982] pci_bus 0000:0a: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    4.100633] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    4.101160] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    4.101762] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    4.102406] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    4.103032] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000bffff window]
[    4.103692] pci_bus 0000:0b: resource 9 [mem 0x000c0000-0x000dffff window]
[    4.104320] pci_bus 0000:0b: resource 10 [mem 0x90000000-0xe7ffffff window]
[    4.104925] pci_bus 0000:0b: resource 11 [mem 0x380000000000-0x380fffffffff window]
[    4.105672] pci 0000:80:00.0: PCI bridge to [bus 81]
[    4.106159] pci 0000:80:01.0: PCI bridge to [bus 82]
[    4.109665] pci 0000:80:01.1: PCI bridge to [bus 83]
[    4.110141] pci 0000:80:02.0: PCI bridge to [bus 84]
[    4.110566] pci 0000:80:02.2: PCI bridge to [bus 85]
[    4.111035] pci 0000:80:03.0: PCI bridge to [bus 86]
[    4.111508] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    4.112128] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    4.112908] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    4.113520] pci_bus 0000:80: resource 5 [mem 0xe8000000-0xfbffffff window]
[    4.114170] pci_bus 0000:80: resource 6 [mem 0x381000000000-0x381fffffffff window]
[    4.114833] pci_bus 0000:86: resource 1 [mem 0xfbe00000-0xfbefffff]
[    4.115361] pci_bus 0000:86: resource 2 [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    4.276110] NET: Registered protocol family 2
[    4.308504] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    4.310929] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    4.311766] TCP: Hash tables configured (established 524288 bind 65536)
[    4.312515] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[    4.313338] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[    4.314307] NET: Registered protocol family 1
[    4.360289] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    4.390531] PCI: CLS 64 bytes, default 64
[    4.391376] Unpacking initramfs...
[    4.846346] Freeing initrd memory: 25280K (ffff880036740000 - ffff880037ff0000)
[    4.850129] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    4.850783] software IO TLB [mem 0x89f5e000-0x8df5e000] (64MB) mapped at [ffff880089f5e000-ffff88008df5dfff]
[    4.852246] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    4.853075] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    4.853690] RAPL PMU: hw unit of domain package 2^-16 Joules
[    4.854300] RAPL PMU: hw unit of domain dram 2^-16 Joules
[    4.858628] Scanning for low memory corruption every 60 seconds
[    4.904827] futex hash table entries: 8192 (order: 7, 524288 bytes)
[    4.936151] audit: initializing netlink subsys (disabled)
[    4.936810] audit: type=2000 audit(1477682374.796:1): initialized
[    4.940922] Initialise system trusted keyrings
[    4.941744] workingset: timestamp_bits=52 max_order=24 bucket_order=0
[    5.079836] Key type asymmetric registered
[    5.080288] Asymmetric key parser 'x509' registered
[    5.120184] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    5.121057] io scheduler noop registered
[    5.121458] io scheduler deadline registered
[    5.122209] io scheduler cfq registered (default)
[    5.126113] aer 0000:00:01.0:pcie002: service driver aer loaded
[    5.129416] aer 0000:00:01.1:pcie002: service driver aer loaded
[    5.130046] aer 0000:00:02.0:pcie002: service driver aer loaded
[    5.130660] aer 0000:00:02.2:pcie002: service driver aer loaded
[    5.131330] aer 0000:00:03.0:pcie002: service driver aer loaded
[    5.131944] aer 0000:00:11.0:pcie002: service driver aer loaded
[    5.132561] aer 0000:80:00.0:pcie002: service driver aer loaded
[    5.133180] aer 0000:80:01.0:pcie002: service driver aer loaded
[    5.133830] aer 0000:80:01.1:pcie002: service driver aer loaded
[    5.134436] aer 0000:80:02.0:pcie002: service driver aer loaded
[    5.135043] aer 0000:80:02.2:pcie002: service driver aer loaded
[    5.135649] aer 0000:80:03.0:pcie002: service driver aer loaded
[    5.136237] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    5.139693] pcie_pme 0000:00:01.0:pcie001: service driver pcie_pme loaded
[    5.140345] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    5.140939] pcie_pme 0000:00:01.1:pcie001: service driver pcie_pme loaded
[    5.141598] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    5.142279] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    5.142906] pcie_pme 0000:00:02.0:pcie001: service driver pcie_pme loaded
[    5.143531] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    5.144120] pcie_pme 0000:00:02.2:pcie001: service driver pcie_pme loaded
[    5.144782] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    5.145440] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    5.146064] pcie_pme 0000:00:03.0:pcie001: service driver pcie_pme loaded
[    5.149907] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    5.150505] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    5.151141] pcie_pme 0000:00:11.0:pcie001: service driver pcie_pme loaded
[    5.151845] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    5.152485] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[    5.153080] pcie_pme 0000:00:1c.0:pcie001: service driver pcie_pme loaded
[    5.153696] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    5.154327] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    5.155161] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    5.155876] pcie_pme 0000:00:1c.4:pcie001: service driver pcie_pme loaded
[    5.156574] pcieport 0000:80:00.0: Signaling PME through PCIe PME interrupt
[    5.161404] pcie_pme 0000:80:00.0:pcie001: service driver pcie_pme loaded
[    5.162088] pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
[    5.162773] pcie_pme 0000:80:01.0:pcie001: service driver pcie_pme loaded
[    5.163432] pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
[    5.164060] pcie_pme 0000:80:01.1:pcie001: service driver pcie_pme loaded
[    5.164662] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[    5.165307] pcie_pme 0000:80:02.0:pcie001: service driver pcie_pme loaded
[    5.165985] pcieport 0000:80:02.2: Signaling PME through PCIe PME interrupt
[    5.170636] pcie_pme 0000:80:02.2:pcie001: service driver pcie_pme loaded
[    5.171750] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[    5.172439] pci 0000:86:00.0: Signaling PME through PCIe PME interrupt
[    5.173562] pcie_pme 0000:80:03.0:pcie001: service driver pcie_pme loaded
[    5.174708] vesafb: mode is 800x600x16, linelength=1600, pages=7
[    5.176029] vesafb: scrolling: redraw
[    5.179960] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[    5.180592] vesafb: framebuffer at 0xe7000000, mapped to 0xffffc90006c00000, using 1875k, total 8192k
[    5.229694] Console: switching to colour frame buffer device 100x37
[    5.279951] fb0: VESA VGA frame buffer device
[    5.280398] intel_idle: MWAIT substates: 0x1120
[    5.280777] intel_idle: v0.4.1 model 0x3E
[    5.282481] intel_idle: lapic_timer_reliable_states 0xffffffff
[    5.283134] ERST: Error Record Serialization Table (ERST) support is initialized.
[    5.283840] pstore: using zlib compression
[    5.284196] pstore: Registered erst as persistent store backend
[    5.284919] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    5.285578] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    5.286266] serial 00:03: pnp_assign_resources, try dependent set 0
[    5.289851] serial 00:03: [io  0x02f8-0x02ff]
[    5.290278] serial 00:03:   device 0000:00:16.1 using irq 5
[    5.290743] serial 00:03:   device 0000:00:1f.3 using irq 10
[    5.291212] serial 00:03:   device 0000:00:16.0 using irq 11
[    5.291822] serial 00:03: [irq 12]
[    5.292159] serial 00:03:   dma 0 disabled
[    5.292546] serial 00:03: [dma 18446744073709551615 disabled]
[    5.292972] serial 00:03: pnp_assign_resources succeeded: current resources:
[    5.293635] serial 00:03: [io  0x02f8-0x02ff flags 0x40000101]
[    5.294229] serial 00:03: [irq 12 flags 0x40000401]
[    5.294757] serial 00:03: [dma 18446744073709551615 flags 0x50000800]
[    5.295408] serial 00:03: pnp_start_dev: current resources:
[    5.295980] serial 00:03: [io  0x02f8-0x02ff flags 0x40000101]
[    5.299790] serial 00:03: [irq 12 flags 0x40000401]
[    5.300332] serial 00:03: [dma 18446744073709551615 flags 0x50000800]
[    5.300986] serial 00:03: set resources
[    5.301703] serial 00:03: encode 3 resources
[    5.302128] serial 00:03:   encode io 0x2f8-0x2ff decode 0x1
[    5.302669] serial 00:03:   encode irq 12 edge high exclusive (2-byte descriptor)
[    5.303360] serial 00:03:   encode dma (disabled)
[    5.304268] serial 00:03: activated
[    5.325005] 00:03: ttyS1 at I/O 0x2f8 (irq = 12, base_baud = 115200) is a 16550A
[    5.326526] Non-volatile memory driver v1.3
[    5.326983] Linux agpgart interface v0.103
[    5.333260] libphy: Fixed MDIO Bus: probed
[    5.333718] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    5.860194] tsc: Refined TSC clocksource calibration: 2299.999 MHz
[    5.860865] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2127345424d, max_idle_ns: 440795318347 ns
[    6.361962] i8042: No controller found
[    6.362470] mousedev: PS/2 mouse device common for all mice
[    6.363237] Key type dns_resolver registered
[    6.365159] microcode: sig=0x306e2, pf=0x1, revision=0x20d
[    6.366581] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.370062] registered taskstats version 1
[    6.370475] Loading compiled-in X.509 certificates
[    6.373289] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    6.374869] Loaded X.509 cert 'Build time autogenerated kernel key: f8cff5ba05d4eb45c1db76af1201728efd559897'
[    6.375827] AppArmor: AppArmor sha1 policy hashing enabled
[    6.377290] BERT: Can't request iomem region <000000008e2c9c98-000000008e2c9cab>.
[    6.380377]   Magic number: 4:417:345
[    6.380793] tty tty62: hash matches
[    6.381300] PM: Checking hibernation image partition /dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
[    6.382283] PM: Hibernation image not present or could not be loaded.
[    6.384534] Freeing unused kernel memory: 1716K (ffffffff81b0d000 - ffffffff81cba000)
[    6.385278] Write protecting the kernel read-only data: 10240k
[    6.386173] Freeing unused kernel memory: 448K (ffff880001590000 - ffff880001600000)
[    6.391182] Freeing unused kernel memory: 1472K (ffff880001890000 - ffff880001a00000)
[    6.439852] scsi_mod: module verification failed: signature and/or required key missing - tainting kernel
[    6.496278] SCSI subsystem initialized
[    6.499142] libata version 3.00 loaded.
[    6.501050] ahci 0000:00:1f.2: version 3.0
[    6.501703] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x0 impl SATA mode
[    6.502544] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
[    6.503841] scsi host0: ahci
[    6.504273] scsi host1: ahci
[    6.504663] scsi host2: ahci
[    6.505068] scsi host3: ahci
[    6.505452] scsi host4: ahci
[    6.505831] scsi host5: ahci
[    6.506204] ata1: DUMMY
[    6.506535] ata2: DUMMY
[    6.506786] ata3: DUMMY
[    6.510635] ata4: DUMMY
[    6.510869] ata5: DUMMY
[    6.511100] ata6: DUMMY
[    6.514698] udev: starting version 147
[    6.562443] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    6.563200] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    6.563851] isci 0000:06:00.0: OEM parameter table found in OROM
[    6.564679] isci 0000:06:00.0: OEM SAS parameters (version: 1.0) loaded (platform)
[    6.566851] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    6.569969] scsi host6: isci
[    6.884432] clocksource: Switched to clocksource tsc
[    7.588399] sas: phy-6:0 added to port-6:0, phy_mask:0x1 (ffffffffffffffff)
[    7.589112] sas: DOING DISCOVERY on port 0, pid:270
[    7.589631] sas: DONE DISCOVERY on port 0, pid:270, result:0
[    7.590346] sas: Enter sas_scsi_recover_host busy: 0 failed: 0
[    7.590938] sas: ata7: end_device-6:0: dev error handler
[    7.756885] ata7.00: ATA-8: WDC WD5000BHTZ-04JCPV1, 04.06A01, max UDMA/133
[    7.757557] ata7.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    7.758838] ata7.00: configured for UDMA/133
[    7.759309] sas: --- Exit sas_scsi_recover_host: busy: 0 failed: 0 tries: 1
[    7.769975] scsi 6:0:0:0: Direct-Access     ATA      WDC WD5000BHTZ-0 6A01 PQ: 0 ANSI: 5
[    7.803329] sd 6:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    7.804087] sd 6:0:0:0: [sda] 4096-byte physical blocks
[    7.804835] sd 6:0:0:0: [sda] Write Protect is off
[    7.805325] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    7.805835] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    7.821720]  sda: sda1 sda2
[    7.822370] sd 6:0:0:0: [sda] Attached SCSI disk
[    7.897827] random: fast init done
[    7.930745] [drm] Initialized drm 1.1.0 20060810
[    7.936136] [drm] AST 2300 detected
[    7.936545] [drm] Analog VGA only
[    7.936881] [drm] dram 1632000000 1 16 00800000
[    7.937576] [TTM] Zone  kernel: Available graphics memory: 32971104 kiB
[    7.938142] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    7.938718] [TTM] Initializing pool allocator
[    7.939133] [TTM] Initializing DMA pool allocator
[    7.947410] checking generic (e7000000 800000) vs hw (e7000000 800000)
[    7.950234] fb: switching to astdrmfb from VESA VGA
[    7.950818] Console: switching to colour dummy device 80x25
[    7.951442] fbcon: astdrmfb (fb0) is primary device
[    7.968848] Console: switching to colour frame buffer device 128x48
[    7.998082] ast 0000:0a:00.0: fb0: astdrmfb frame buffer device
[    8.012293] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[    8.041703] PM: Starting manual resume from disk
[    8.042177] PM: Hibernation image partition 8:1 present
[    8.042666] PM: Looking for hibernation image.
[    8.043452] PM: Image not found (code -22)
[    8.043849] PM: Hibernation image not present or could not be loaded.
[    8.573073] EXT4-fs (sda2): mounting ext3 file system using the ext4 subsystem
[    8.664935] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: acl,user_xattr
[    8.722520] EXT4-fs (sda2): re-mounted. Opts: acl,user_xattr



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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-27 20:19                           ` Sean Young
  2016-10-28 19:42                             ` Nathan Zimmer
@ 2016-10-28 19:55                             ` Nathan
  2016-10-30 15:33                             ` Nathan
  2 siblings, 0 replies; 29+ messages in thread
From: Nathan @ 2016-10-28 19:55 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-kernel, linux-serial, gregkh, alan, Rafael J. Wysocki

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

Unfortunately the quirk crashed...

[    3.985834] pnp 00:01: parse allocated resources
[    3.986342] pnp 00:01: PNP0c02: calling 
quirk_system_pci_resources+0x0/0x180
[    3.987055] pnp 00:01: PNP0c02: calling quirk_intel_mch+0x0/0x1a0
[    3.987613] pnp 00:01: PNP0c02: calling quirk_serial_port+0x0/0x140
[    3.988246] BUG: unable to handle kernel NULL pointer dereference at 
0000000000000001
[    3.989044] IP: [<ffffffff813b52af>] quirk_serial_port+0xdf/0x140
[    3.989600] PGD 0
[    3.989798] Oops: 0002 [#1] SMP
[    3.990089] Modules linked in:
[    3.990476] CPU: 5 PID: 1 Comm: swapper/0 Not tainted 
4.8.0-00001-ge41e11b #37
[    3.991176] Hardware name: SGI.COM ICE-XIP119/S0751-Medina, BIOS 
ma2e2054 02/05/2014
[    3.994913] task: ffff88086c2b4040 task.stack: ffff88086c2b8000
[    3.995461] RIP: 0010:[<ffffffff813b52af>] [<ffffffff813b52af>] 
quirk_serial_port+0xdf/0x140
[    3.996352] RSP: 0000:ffff88086c2bb998  EFLAGS: 00010282
[    3.996909] RAX: 0000000000000037 RBX: ffff88106f108360 RCX: 
0000000000000001
[    3.997596] RDX: 0000000000000001 RSI: 0000000000000292 RDI: 
ffff88106f108000
[    3.998240] RBP: ffff88086c2bb9e8 R08: 0000000000000000 R09: 
0000000000000000
[    3.998852] R10: 000000000000000a R11: 0000000000000000 R12: 
ffff88106f108000
[    3.999506] R13: ffff88106f108360 R14: 00000000ffffffea R15: 
ffff88084f2d3f40
[    4.000181] FS:  0000000000000000(0000) GS:ffff88086fb40000(0000) 
knlGS:0000000000000000
[    4.000880] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    4.001363] CR2: 0000000000000001 CR3: 0000000001a06000 CR4: 
00000000001406e0
[    4.005050] Stack:
[    4.005249]  ffff88086c2bb9b8 0000000000000000 ffffffff81810846 
ffff88086c2bb988
[    4.006061]  00000000fbe1ffff ffffffff81aaf740 ffff88106f108000 
ffff88106f108000
[    4.006838]  00000000ffffffea ffff88084f2d3f40 ffff88086c2bba08 
ffffffff813b48f2
[    4.007586] Call Trace:
[    4.007821]  [<ffffffff813b48f2>] pnp_fixup_device+0x22/0x70
[    4.008272]  [<ffffffff813b0073>] __pnp_add_device+0x13/0xf0
[    4.008758]  [<ffffffff813a1c9d>] ? acpi_walk_resources+0xe3/0x114
[    4.009272]  [<ffffffff813b6550>] ? 
pnpacpi_parse_allocated_resource+0xa0/0xa0
[    4.009920]  [<ffffffff813b01a0>] pnp_add_device+0x50/0xf0
[    4.010481]  [<ffffffff813a1bab>] ? acpi_walk_resource_buffer+0x10d/0x11c
[    4.011127]  [<ffffffff813b6550>] ? 
pnpacpi_parse_allocated_resource+0xa0/0xa0
[    4.011823]  [<ffffffff813a1cbd>] ? acpi_walk_resources+0x103/0x114
[    4.015512]  [<ffffffff81b687ff>] pnpacpi_add_device+0x1ce/0x254
[    4.016040]  [<ffffffff81b688bb>] pnpacpi_add_device_handler+0x36/0x3a
[    4.016678]  [<ffffffff8139b2c5>] acpi_ns_get_device_callback+0x134/0x156
[    4.017356]  [<ffffffff8139ad78>] acpi_ns_walk_namespace+0x10a/0x251
[    4.017977]  [<ffffffff8139b191>] ? acpi_get_devices+0x10b/0x10b
[    4.018556]  [<ffffffff81b685bb>] ? ispnpidacpi+0x7b/0x7b
[    4.019089]  [<ffffffff8139b156>] acpi_get_devices+0xd0/0x10b
[    4.019649]  [<ffffffff81b68885>] ? pnpacpi_add_device+0x254/0x254
[    4.020236]  [<ffffffff81b68611>] pnpacpi_init+0x56/0x76
[    4.020753]  [<ffffffff81000380>] do_one_initcall+0xc0/0x1d0
[    4.021299]  [<ffffffff812e7444>] ? ida_pre_get+0x54/0xe0
[    4.024877]  [<ffffffff812398da>] ? proc_alloc_inum+0x4a/0xd0
[    4.025453]  [<ffffffff81b25d25>] ? repair_env_string+0x17/0x58
[    4.026030]  [<ffffffff810849e7>] ? parse_one+0xd7/0x180
[    4.026557]  [<ffffffff81084b7c>] ? parse_args+0xec/0x300
[    4.027094]  [<ffffffff81b25d0e>] ? kernel_init_freeable+0x2a3/0x2a3
[    4.027703]  [<ffffffff810a6c3e>] ? __wake_up+0x4e/0x70
[    4.028222]  [<ffffffff81b25a45>] do_basic_setup+0xb2/0xd8
[    4.028765]  [<ffffffff81b25d0e>] ? kernel_init_freeable+0x2a3/0x2a3
[    4.029370]  [<ffffffff81b25c85>] kernel_init_freeable+0x21a/0x2a3
[    4.029945]  [<ffffffff8157a939>] kernel_init+0x9/0x100
[    4.030443]  [<ffffffff81586ecf>] ret_from_fork+0x1f/0x40
[    4.030961]  [<ffffffff8157a930>] ? rest_init+0x80/0x80
[    4.031476] Code: 01 00 00 4c 89 e7 4c 89 f6 e8 5e 08 f4 ff 85 c0 74 
3c 48 8b 1b 4c 89 f2 4c 39 eb 0f 85 65 ff ff ff 48 85 d2 74 28 4d 85 ff 
74 23 <48> c7 02 00 00 00 00 48 c7 42 08 00 00 00 00 48 c7 42 10 00 00
[    4.036680] RIP  [<ffffffff813b52af>] quirk_serial_port+0xdf/0x140
[    4.037267]  RSP <ffff88086c2bb998>
[    4.037615] CR2: 0000000000000001
[    4.037938] ---[ end trace 5bc20b620cbcf8e2 ]---
[    4.038360] Kernel panic - not syncing: Attempted to kill init! 
exitcode=0x00000009
[    4.038360]
[    4.039210] ---[ end Kernel panic - not syncing: Attempted to kill 
init! exitcode=0x00000009
[    4.039210]

The other thing I did as a diagnostic exercise was to look at the commit 
I bisected too.

After some experimentation I found only I could revert a small part to 
"fix" the issue.

This probably doesn't illuminate much but...

On 10/27/2016 03:19 PM, Sean Young wrote:
> On Wed, Oct 26, 2016 at 01:16:16PM -0500, Nathan Zimmer wrote:
>> On 10/25/2016 03:41 PM, Sean Young wrote:
>>> On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
>>>> [    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>>> The isa probe driver find the serial port.
>>>
>>>> [    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
>>>> [    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
>>> But then decides that the port is already in use (the existing serial driver).
>>>> [    1.568366] serial 00:04: pnp_assign_resources failed (-16)
>>>> [    1.569188] serial 00:04: unable to assign resources
>>>> [    1.569924] serial: probe of 00:04 failed with error -16
>>> Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
>>> irq 3 and it will be happy again, but that is just a guess.
>>>
>>> I think I have not fully understood what the failure is. Does the serial
>>> port not work or does the boot hang? What are the symptoms?
>> With console=ttyS1 the boot will "hang", sometimes it makes it all the way
>> through but may take 30 minutes, instead of the 2-4 minutes this box
> Where does it hang? Any error messages?
>
>>> We might be able to fix the problem with a pnp quirk but 3.7 is has not had
>>> any releases for a long time. We will need a reproduction on a concurrent
>>> kernel so a patch can be written for that.
>> Yes it still happens with 4.8+
>> I had only started dwelling on 3.6/3.7 since that is where it first appears
>> and don't have any attachment to those.
> Ok. Please try to following patch. I'm not sure it is good enough to be
> merged as-is, but should provide a start for testing. Output with
> CONFIG_PNP_DEBUG_MESSAGES should show only irq 3 is available for the
> serial port now.
>
> Sean
>
>  From 3a1705a2e28f4385b778ad96d7c517b82ea860e2 Mon Sep 17 00:00:00 2001
> From: Sean Young <sean@mess.org>
> Date: Thu, 27 Oct 2016 20:13:50 +0100
> Subject: [PATCH] PNP: Add quirk for BIOS advertising wrong irqs for serial
>   port
>
> Signed-off-by: Sean Young <sean@mess.org>
> ---
>   drivers/pnp/quirks.c | 43 +++++++++++++++++++++++++++++++++++++++++++
>   1 file changed, 43 insertions(+)
>
> diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c
> index d28e3ab..8712161 100644
> --- a/drivers/pnp/quirks.c
> +++ b/drivers/pnp/quirks.c
> @@ -66,6 +66,48 @@ static void quirk_awe32_resources(struct pnp_dev *dev)
>   	}
>   }
>   
> +static void quirk_serial_port(struct pnp_dev *dev)
> +{
> +	struct pnp_option *option;
> +	struct pnp_irq *irq;
> +	struct pnp_port *port;
> +
> +	list_for_each_entry(option, &dev->options, list) {
> +		if (!pnp_option_is_dependent(option))
> +			continue;
> +
> +		if (option->type == IORESOURCE_IO) {
> +			port = &option->u.port;
> +
> +			if (port->min != 0x2f8 || port->max != 0x2f8 ||
> +				port->size != 8 || port->align != 1)
> +				return;
> +		} else if (option->type == IORESOURCE_IRQ) {
> +			pnp_irq_mask_t map;
> +
> +			irq = &option->u.irq;
> +
> +			bitmap_zero(map.bits, PNP_IRQ_NR);
> +			__set_bit(3, map.bits);
> +			__set_bit(4, map.bits);
> +			__set_bit(5, map.bits);
> +			__set_bit(6, map.bits);
> +			__set_bit(7, map.bits);
> +			__set_bit(10, map.bits);
> +			__set_bit(11, map.bits);
> +			__set_bit(12, map.bits);
> +
> +			if (!bitmap_equal(map.bits, irq->map.bits, PNP_IRQ_NR))
> +				return;
> +		}
> +	}
> +
> +	if (irq && port) {
> +		bitmap_zero(irq->map.bits, PNP_IRQ_NR);
> +		__set_bit(3, irq->map.bits);
> +	}
> +}
> +
>   static void quirk_cmi8330_resources(struct pnp_dev *dev)
>   {
>   	struct pnp_option *option;
> @@ -448,6 +490,7 @@ static struct pnp_fixup pnp_fixups[] = {
>   #ifdef CONFIG_PCI
>   	{"PNP0c02", quirk_intel_mch},
>   #endif
> +	{"PNP0c02", quirk_serial_port},
>   	{""}
>   };
>   


[-- Attachment #2: hack.patch --]
[-- Type: text/x-patch, Size: 1477 bytes --]

---
 drivers/tty/serial/8250/8250_core.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/tty/serial/8250/8250_core.c b/drivers/tty/serial/8250/8250_core.c
index dcf43f6..aef2d2a 100644
--- a/drivers/tty/serial/8250/8250_core.c
+++ b/drivers/tty/serial/8250/8250_core.c
@@ -1123,15 +1123,11 @@ static int __init serial8250_init(void)
        if (ret)
                goto out;
 
-       ret = serial8250_pnp_init();
-       if (ret)
-               goto unreg_uart_drv;
-
        serial8250_isa_devs = platform_device_alloc("serial8250",
                                                    PLAT8250_DEV_LEGACY);
        if (!serial8250_isa_devs) {
                ret = -ENOMEM;
-               goto unreg_pnp;
+               goto unreg_uart_drv;
        }
 
        ret = platform_device_add(serial8250_isa_devs);
@@ -1147,8 +1143,6 @@ static int __init serial8250_init(void)
        platform_device_del(serial8250_isa_devs);
 put_dev:
        platform_device_put(serial8250_isa_devs);
-unreg_pnp:
-       serial8250_pnp_exit();
 unreg_uart_drv:
 #ifdef CONFIG_SPARC
        sunserial_unregister_minors(&serial8250_reg, UART_NR);
@@ -1173,8 +1167,6 @@ static void __exit serial8250_exit(void)
        platform_driver_unregister(&serial8250_isa_driver);
        platform_device_unregister(isa_dev);
 
-       serial8250_pnp_exit();
-
 #ifdef CONFIG_SPARC
        sunserial_unregister_minors(&serial8250_reg, UART_NR);
 #else
-- 
1.7.12.4


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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-28 19:42                             ` Nathan Zimmer
@ 2016-10-29 21:16                               ` Sean Young
  2016-10-30 16:01                                 ` Nathan
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-29 21:16 UTC (permalink / raw)
  To: Nathan Zimmer; +Cc: linux-kernel, linux-serial, gregkh, alan, Rafael J. Wysocki

On Fri, Oct 28, 2016 at 02:42:25PM -0500, Nathan Zimmer wrote:
> On Thu, Oct 27, 2016 at 09:19:16PM +0100, Sean Young wrote:
> > On Wed, Oct 26, 2016 at 01:16:16PM -0500, Nathan Zimmer wrote:
> > > On 10/25/2016 03:41 PM, Sean Young wrote:
> > > >On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
> > > >>[    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
> > > >The isa probe driver find the serial port.
> > > >
> > > >>[    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
> > > >>[    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
> > > >But then decides that the port is already in use (the existing serial driver).
> > > >>[    1.568366] serial 00:04: pnp_assign_resources failed (-16)
> > > >>[    1.569188] serial 00:04: unable to assign resources
> > > >>[    1.569924] serial: probe of 00:04 failed with error -16
> > > >Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
> > > >irq 3 and it will be happy again, but that is just a guess.
> > > >
> > > >I think I have not fully understood what the failure is. Does the serial
> > > >port not work or does the boot hang? What are the symptoms?
> > > With console=ttyS1 the boot will "hang", sometimes it makes it all the way
> > > through but may take 30 minutes, instead of the 2-4 minutes this box
> > 
> > Where does it hang? Any error messages?
> > 
> 
> Shortly after mounting the root.
> After that I get no more output...
> 
> Here is a failure log from 4.8.

So does the console on the serial port work on 4.8? Also what does 
"cat /proc/interrupts" say with and without my change of ordering the
serial pnp probe before the isa probe?

It could be that the serial driver picking a different irq caused another
driver to be forced to pick another irq which does not work.


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-27 20:19                           ` Sean Young
  2016-10-28 19:42                             ` Nathan Zimmer
  2016-10-28 19:55                             ` Nathan
@ 2016-10-30 15:33                             ` Nathan
  2016-10-31 20:27                               ` Sean Young
  2 siblings, 1 reply; 29+ messages in thread
From: Nathan @ 2016-10-30 15:33 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-kernel, linux-serial, gregkh, alan, Rafael J. Wysocki



On 10/27/2016 03:19 PM, Sean Young wrote:
> On Wed, Oct 26, 2016 at 01:16:16PM -0500, Nathan Zimmer wrote:
>> On 10/25/2016 03:41 PM, Sean Young wrote:
>>> On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
>>>> [    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>>> The isa probe driver find the serial port.
>>>
>>>> [    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
>>>> [    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
>>> But then decides that the port is already in use (the existing serial driver).
>>>> [    1.568366] serial 00:04: pnp_assign_resources failed (-16)
>>>> [    1.569188] serial 00:04: unable to assign resources
>>>> [    1.569924] serial: probe of 00:04 failed with error -16
>>> Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
>>> irq 3 and it will be happy again, but that is just a guess.
>>>
>>> I think I have not fully understood what the failure is. Does the serial
>>> port not work or does the boot hang? What are the symptoms?
>> With console=ttyS1 the boot will "hang", sometimes it makes it all the way
>> through but may take 30 minutes, instead of the 2-4 minutes this box
> Where does it hang? Any error messages?
>
>>> We might be able to fix the problem with a pnp quirk but 3.7 is has not had
>>> any releases for a long time. We will need a reproduction on a concurrent
>>> kernel so a patch can be written for that.
>> Yes it still happens with 4.8+
>> I had only started dwelling on 3.6/3.7 since that is where it first appears
>> and don't have any attachment to those.
> Ok. Please try to following patch. I'm not sure it is good enough to be
> merged as-is, but should provide a start for testing. Output with
> CONFIG_PNP_DEBUG_MESSAGES should show only irq 3 is available for the
> serial port now.
>
> Sean
>
>  From 3a1705a2e28f4385b778ad96d7c517b82ea860e2 Mon Sep 17 00:00:00 2001
> From: Sean Young <sean@mess.org>
> Date: Thu, 27 Oct 2016 20:13:50 +0100
> Subject: [PATCH] PNP: Add quirk for BIOS advertising wrong irqs for serial
>   port
>
> Signed-off-by: Sean Young <sean@mess.org>
> ---
>   drivers/pnp/quirks.c | 43 +++++++++++++++++++++++++++++++++++++++++++
>   1 file changed, 43 insertions(+)
>
> diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c
> index d28e3ab..8712161 100644
> --- a/drivers/pnp/quirks.c
> +++ b/drivers/pnp/quirks.c
> @@ -66,6 +66,48 @@ static void quirk_awe32_resources(struct pnp_dev *dev)
>   	}
>   }
>   
> +static void quirk_serial_port(struct pnp_dev *dev)
> +{
> +	struct pnp_option *option;
> +	struct pnp_irq *irq;
> +	struct pnp_port *port;
> +
> +	list_for_each_entry(option, &dev->options, list) {
> +		if (!pnp_option_is_dependent(option))
> +			continue;
> +
> +		if (option->type == IORESOURCE_IO) {
> +			port = &option->u.port;
> +
> +			if (port->min != 0x2f8 || port->max != 0x2f8 ||
> +				port->size != 8 || port->align != 1)
> +				return;
> +		} else if (option->type == IORESOURCE_IRQ) {
> +			pnp_irq_mask_t map;
> +
> +			irq = &option->u.irq;
> +
> +			bitmap_zero(map.bits, PNP_IRQ_NR);
> +			__set_bit(3, map.bits);
> +			__set_bit(4, map.bits);
> +			__set_bit(5, map.bits);
> +			__set_bit(6, map.bits);
> +			__set_bit(7, map.bits);
> +			__set_bit(10, map.bits);
> +			__set_bit(11, map.bits);
> +			__set_bit(12, map.bits);
> +
> +			if (!bitmap_equal(map.bits, irq->map.bits, PNP_IRQ_NR))
> +				return;
> +		}
> +	}
> +
> +	if (irq && port) {
> +		bitmap_zero(irq->map.bits, PNP_IRQ_NR);
> +		__set_bit(3, irq->map.bits);
> +	}
> +}
> +
>   static void quirk_cmi8330_resources(struct pnp_dev *dev)
>   {
>   	struct pnp_option *option;
> @@ -448,6 +490,7 @@ static struct pnp_fixup pnp_fixups[] = {
>   #ifdef CONFIG_PCI
>   	{"PNP0c02", quirk_intel_mch},
>   #endif
> +	{"PNP0c02", quirk_serial_port},
>   	{""}
>   };
>   

I think this should be PNP0501 instead of PNP0c02.
Once I alter that then when I boot the serial comes up on irq 3. However 
it still hangs.
I'll keep digging.

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-29 21:16                               ` Sean Young
@ 2016-10-30 16:01                                 ` Nathan
  0 siblings, 0 replies; 29+ messages in thread
From: Nathan @ 2016-10-30 16:01 UTC (permalink / raw)
  To: Sean Young; +Cc: linux-kernel, linux-serial, gregkh, alan, Rafael J. Wysocki



On 10/29/2016 04:16 PM, Sean Young wrote:
> On Fri, Oct 28, 2016 at 02:42:25PM -0500, Nathan Zimmer wrote:
>> On Thu, Oct 27, 2016 at 09:19:16PM +0100, Sean Young wrote:
>>> On Wed, Oct 26, 2016 at 01:16:16PM -0500, Nathan Zimmer wrote:
>>>> On 10/25/2016 03:41 PM, Sean Young wrote:
>>>>> On Mon, Oct 24, 2016 at 04:49:25PM -0500, Nathan Zimmer wrote:
>>>>>> [    1.565062] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
>>>>> The isa probe driver find the serial port.
>>>>>
>>>>>> [    1.566453] serial 00:04: pnp_assign_resources, try dependent set 0
>>>>>> [    1.567383] serial 00:04:   couldn't assign io 0 (min 0x2f8 max 0x2f8)
>>>>> But then decides that the port is already in use (the existing serial driver).
>>>>>> [    1.568366] serial 00:04: pnp_assign_resources failed (-16)
>>>>>> [    1.569188] serial 00:04: unable to assign resources
>>>>>> [    1.569924] serial: probe of 00:04 failed with error -16
>>>>> Please try and boot 3.7.0 with "8250.share_irqs=1", maybe it will pick
>>>>> irq 3 and it will be happy again, but that is just a guess.
>>>>>
>>>>> I think I have not fully understood what the failure is. Does the serial
>>>>> port not work or does the boot hang? What are the symptoms?
>>>> With console=ttyS1 the boot will "hang", sometimes it makes it all the way
>>>> through but may take 30 minutes, instead of the 2-4 minutes this box
>>> Where does it hang? Any error messages?
>>>
>> Shortly after mounting the root.
>> After that I get no more output...
>>
>> Here is a failure log from 4.8.
> So does the console on the serial port work on 4.8? Also what does
> "cat /proc/interrupts" say with and without my change of ordering the
> serial pnp probe before the isa probe?
>
> It could be that the serial driver picking a different irq caused another
> driver to be forced to pick another irq which does not work.
>
>
> Sean

Works is a strong word.  It produces output until it hangs in boot.

It certainly could be another driver but I don't see another irq12 in 
the dmesg log.

I'll grab some data once I back in the office tomorrow.


Nate

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-30 15:33                             ` Nathan
@ 2016-10-31 20:27                               ` Sean Young
  2016-11-01  2:55                                 ` Peter Hurley
  0 siblings, 1 reply; 29+ messages in thread
From: Sean Young @ 2016-10-31 20:27 UTC (permalink / raw)
  To: Nathan; +Cc: linux-kernel, linux-serial, gregkh, alan, Rafael J. Wysocki

On Sun, Oct 30, 2016 at 10:33:02AM -0500, Nathan wrote:
> I think this should be PNP0501 instead of PNP0c02.
> Once I alter that then when I boot the serial comes up on irq 3. However it
> still hangs.
> I'll keep digging.

Well that's that theory out of the window. I'm not sure where to look now,
I would start by enabling as many as possible of the "kernel hacking" config
options and see if anything gets caught.

Looking at your earlier messages, you have a collection of percpu allocation
failures. That might be worth resolving before anything else.


Sean

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-10-31 20:27                               ` Sean Young
@ 2016-11-01  2:55                                 ` Peter Hurley
  2016-11-02 15:29                                   ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Peter Hurley @ 2016-11-01  2:55 UTC (permalink / raw)
  To: Sean Young
  Cc: Nathan, Linux kernel mailing list, linux-serial,
	Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki

On Mon, Oct 31, 2016 at 2:27 PM, Sean Young <sean@mess.org> wrote:
> On Sun, Oct 30, 2016 at 10:33:02AM -0500, Nathan wrote:
>> I think this should be PNP0501 instead of PNP0c02.
>> Once I alter that then when I boot the serial comes up on irq 3. However it
>> still hangs.
>> I'll keep digging.
>
> Well that's that theory out of the window. I'm not sure where to look now,
> I would start by enabling as many as possible of the "kernel hacking" config
> options and see if anything gets caught.
>
> Looking at your earlier messages, you have a collection of percpu allocation
> failures. That might be worth resolving before anything else.

Hi Nathan,

Couple of questions:
1. Was login over serial console setup and working on SLES 11?  or was
the 'console=ttyS1' only for debug output?
I ask because console output doesn't use IRQs; iow, maybe the serial
port w/ driver never actually worked.
2. Can you post dmesg for the SLES 11 setup?  That would show if there
were probe errors even on that.

An alternative that should be equivalent to your previous setup is to
build w/ CONFIG_SERIAL_8250_PNP=n
Seems like your ACPI BIOS is buggy, but also that something else is using IRQ 3?

Regards,
Peter Hurley

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-01  2:55                                 ` Peter Hurley
@ 2016-11-02 15:29                                   ` Nathan Zimmer
  2016-11-04  0:25                                     ` Peter Hurley
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-11-02 15:29 UTC (permalink / raw)
  To: Peter Hurley
  Cc: Sean Young, Nathan, Linux kernel mailing list, linux-serial,
	Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki

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

On Mon, Oct 31, 2016 at 08:55:49PM -0600, Peter Hurley wrote:
> On Mon, Oct 31, 2016 at 2:27 PM, Sean Young <sean@mess.org> wrote:
> > On Sun, Oct 30, 2016 at 10:33:02AM -0500, Nathan wrote:
> >> I think this should be PNP0501 instead of PNP0c02.
> >> Once I alter that then when I boot the serial comes up on irq 3. However it
> >> still hangs.
> >> I'll keep digging.
> >
> > Well that's that theory out of the window. I'm not sure where to look now,
> > I would start by enabling as many as possible of the "kernel hacking" config
> > options and see if anything gets caught.
> >
> > Looking at your earlier messages, you have a collection of percpu allocation
> > failures. That might be worth resolving before anything else.
> 
> Hi Nathan,
> 
> Couple of questions:
> 1. Was login over serial console setup and working on SLES 11?  or was
> the 'console=ttyS1' only for debug output?
> I ask because console output doesn't use IRQs; iow, maybe the serial
> port w/ driver never actually worked.
> 2. Can you post dmesg for the SLES 11 setup?  That would show if there
> were probe errors even on that.
> 
> An alternative that should be equivalent to your previous setup is to
> build w/ CONFIG_SERIAL_8250_PNP=n
> Seems like your ACPI BIOS is buggy, but also that something else is using IRQ 3?
> 
> Regards,
> Peter Hurley



1) Yes I can confirm I used it to login sometimes.

I built with CONFIG_SERIAL_8250_PNP=n and that seemed to work better, in that the system did not hang.
However I couldn't login on the serial and got these error messages, I suspect I broke something while trying different permutations.

gdm[5206]: WARNING: GdmDisplay: display lasted 0.136636 seconds
gdm[5206]: WARNING: GdmDisplay: display lasted 0.180955 seconds
gdm[5206]: WARNING: GdmDisplay: display lasted 0.161415 seconds
gdm[5206]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors

It did boot all the way though.

2) attached log



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

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.0.101-63-default (geeko@buildhost) (gcc version 4.3.4 [gcc-4_3-branch revision 152973] (SUSE Linux) ) #1 SMP Tue Jun 23 16:02:31 UTC 2015 (4b89d0c)
[    0.000000] Command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M showopts loglevel=8 pnp.debug=1 console=ttyS1,115200n8 
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
[    0.000000]  BIOS-e820: 000000000008f000 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000008df5e000 (usable)
[    0.000000]  BIOS-e820: 000000008df5e000 - 000000008df8e000 (reserved)
[    0.000000]  BIOS-e820: 000000008df8e000 - 000000008e0a4000 (ACPI data)
[    0.000000]  BIOS-e820: 000000008e0a4000 - 000000008e2ca000 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000008e2ca000 - 000000008f337000 (reserved)
[    0.000000]  BIOS-e820: 000000008f337000 - 000000008f800000 (ACPI NVS)
[    0.000000]  BIOS-e820: 0000000090000000 - 00000000a0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed40000 (reserved)
[    0.000000]  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000001070000000 (usable)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: SGI.COM ICE-XIP119/S0751-Medina, BIOS ma2e2054 02/05/2014
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x1070000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FF000000000 write-back
[    0.000000]   1 base 001000000000 mask 3FFF80000000 write-back
[    0.000000]   2 base 000090000000 mask 3FFFF0000000 uncachable
[    0.000000]   3 base 0000A0000000 mask 3FFFE0000000 uncachable
[    0.000000]   4 base 0000C0000000 mask 3FFFC0000000 uncachable
[    0.000000]   5 base 001070000000 mask 3FFFF0000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820 update range: 0000000090000000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0x8df5e max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [ffff8800000fdba0] fdba0
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] Base memory trampoline at [ffff88000008a000] 8a000 size 20480
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: 0000000000000000-000000008df5e000
[    0.000000]  0000000000 - 0080000000 page 1G
[    0.000000]  0080000000 - 008de00000 page 2M
[    0.000000]  008de00000 - 008df5e000 page 4k
[    0.000000] kernel direct mapping tables up to 0x8df5dfff @ [mem 0x1fffd000-0x1fffffff]
[    0.000000] init_memory_mapping: 0000000100000000-0000001070000000
[    0.000000]  0100000000 - 1040000000 page 1G
[    0.000000]  1040000000 - 1070000000 page 2M
[    0.000000] kernel direct mapping tables up to 0x106fffffff @ [mem 0x8df5c000-0x8df5dfff]
[    0.000000] nmi ring buffer: 262144
[    0.000000] RAMDISK: 377da000 - 37ff0000
[    0.000000] Reserving 128MB of memory at 752MB for crashkernel (System RAM: 67328MB)
[    0.000000] ACPI: RSDP 00000000000f04a0 00024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 000000008dfc5090 0009C (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 000000008dfd1cd0 0010C (v05 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI Warning: FADT (revision 5) is longer than ACPI 2.0 version, truncating length 268 to 244 (20110413/tbfadt-288)
[    0.000000] ACPI: DSDT 000000008dfc51b8 0CB14 (v02 ALASKA    A M I 00000201 INTL 20051117)
[    0.000000] ACPI: FACS 000000008e2c1080 00040
[    0.000000] ACPI: APIC 000000008dfd1de0 00224 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 000000008dfd2008 00044 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 000000008dfd2050 0003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.000000] ACPI: SRAT 000000008dfd2090 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.000000] ACPI: SLIT 000000008dfd2540 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.000000] ACPI: HPET 000000008dfd2570 00038 (v01 ALASKA    A M I 01072009 AMI. 00000005)
[    0.000000] ACPI: PRAD 000000008dfd25a8 000BE (v02 PRADID  PRADTID 00000001 MSFT 03000001)
[    0.000000] ACPI: SPMI 000000008dfd2668 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
[    0.000000] ACPI: SSDT 000000008dfd26a8 D0CB0 (v02  INTEL    CpuPm 00004000 INTL 20051117)
[    0.000000] ACPI: EINJ 000000008e0a3358 00130 (v01    AMI AMI EINJ 00000000      00000000)
[    0.000000] ACPI: ERST 000000008e0a3488 00230 (v01  AMIER AMI ERST 00000000      00000000)
[    0.000000] ACPI: HEST 000000008e0a36b8 00068 (v01    AMI AMI HEST 00000000      00000000)
[    0.000000] ACPI: BERT 000000008e0a3720 00030 (v01    AMI AMI BERT 00000000      00000000)
[    0.000000] ACPI: DMAR 000000008e0a3750 00150 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.000000] SRAT: Node 0 PXM 0 0-90000000
[    0.000000] SRAT: Node 0 PXM 0 100000000-870000000
[    0.000000] SRAT: Node 1 PXM 1 870000000-1070000000
[    0.000000] NUMA: Initialized distance table, cnt=2
[    0.000000] NUMA: Node 0 [0,90000000) + [100000000,870000000) -> [0,870000000)
[    0.000000] Initmem setup node 0 0000000000000000-0000000870000000
[    0.000000]   NODE_DATA [000000086ffd9000 - 000000086fffffff]
[    0.000000] Initmem setup node 1 0000000870000000-0000001070000000
[    0.000000]   NODE_DATA [000000106ff98080 - 000000106ffbf07f]
[    0.000000] [ffffea001d880000-ffffea001d9fffff] potential offnode page_structs
[    0.000000]  [ffffea0000000000-ffffea001d9fffff] PMD -> [ffff88084fe00000-ffff88086bffffff] on node 0
[    0.000000]  [ffffea001da00000-ffffea00399fffff] PMD -> [ffff88104f600000-ffff88106b5fffff] on node 1
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x01070000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000008f
[    0.000000]     0: 0x00000100 -> 0x0008df5e
[    0.000000]     0: 0x00100000 -> 0x00870000
[    0.000000]     1: 0x00870000 -> 0x01070000
[    0.000000] On node 0 totalpages: 8380125
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 5 pages reserved
[    0.000000]   DMA zone: 3906 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 563094 pages, LIFO batch:31
[    0.000000]   Normal zone: 106624 pages used for memmap
[    0.000000]   Normal zone: 7692160 pages, LIFO batch:31
[    0.000000] On node 1 totalpages: 8388608
[    0.000000]   Normal zone: 114688 pages used for memmap
[    0.000000]   Normal zone: 8273920 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x10] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x12] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x14] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x16] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x32] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x34] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x36] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x38] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x11] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x13] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x15] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x17] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x33] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x35] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x37] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x39] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] SMP: Allowing 32 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 88
[    0.000000] PM: Registered nosave memory: 000000000008f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 000000008df5e000 - 000000008df8e000
[    0.000000] PM: Registered nosave memory: 000000008df8e000 - 000000008e0a4000
[    0.000000] PM: Registered nosave memory: 000000008e0a4000 - 000000008e2ca000
[    0.000000] PM: Registered nosave memory: 000000008e2ca000 - 000000008f337000
[    0.000000] PM: Registered nosave memory: 000000008f337000 - 000000008f800000
[    0.000000] PM: Registered nosave memory: 000000008f800000 - 0000000090000000
[    0.000000] PM: Registered nosave memory: 0000000090000000 - 00000000a0000000
[    0.000000] PM: Registered nosave memory: 00000000a0000000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
[    0.000000] PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
[    0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at a0000000 (gap: a0000000:5ed1c000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[    0.000000] PERCPU: Embedded 25 pages/cpu @ffff88086fc00000 s71680 r8192 d22528 u131072
[    0.000000] pcpu-alloc: s71680 r8192 d22528 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 16 17 18 19 20 21 22 23 
[    0.000000] pcpu-alloc: [1] 08 09 10 11 12 13 14 15 24 25 26 27 28 29 30 31 
[    0.000000] Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 16533080
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part2 resume=/dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1 crashkernel=256M-:128M showopts loglevel=8 pnp.debug=1 console=ttyS1,115200n8 
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.000000] Memory: 65929500k/68943872k available (4556k kernel code, 1868940k absent, 1145432k reserved, 7590k data, 1360k init)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:262400 nr_irqs:1752 16
[    0.000000] Extended CMOS year: 2000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS1] enabled
[    0.000000] allocated 536870912 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.004000] Detected 2300.102 MHz processor.
[    0.000014] Calibrating delay loop (skipped), value calculated using timer frequency.. 4600.20 BogoMIPS (lpj=9200408)
[    0.003919] pid_max: default: 32768 minimum: 301
[    0.004591] kdb version 4.4 by Keith Owens, Scott Lurndal. Copyright SGI, All Rights Reserved
[    0.007746] Security Framework initialized
[    0.008138] AppArmor: AppArmor initialized
[    0.012752] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.027402] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.034036] Mount-cache hash table entries: 256
[    0.034690] Initializing cgroup subsys cpuacct
[    0.035110] Initializing cgroup subsys memory
[    0.035539] Initializing cgroup subsys devices
[    0.035884] Initializing cgroup subsys freezer
[    0.036335] Initializing cgroup subsys net_cls
[    0.036806] Initializing cgroup subsys blkio
[    0.037206] Initializing cgroup subsys perf_event
[    0.037680] CPU: Physical Processor ID: 0
[    0.038045] CPU: Processor Core ID: 1
[    0.039282] mce: CPU supports 27 MCE banks
[    0.039696] CPU0: Thermal monitoring enabled (TM1)
[    0.040184] using mwait in idle threads.
[    0.044094] ACPI: Core revision 20110413
[    0.082207] DMAR: Host address width 46
[    0.082598] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    0.083628] IOMMU 0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.084286] DMAR: DRHD base: 0x000000e7ffc000 flags: 0x1
[    0.084751] IOMMU 1: reg_base_addr e7ffc000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.085446] DMAR: RMRR base: 0x0000008f212000 end: 0x0000008f220fff
[    0.086066] DMAR: ATSR flags: 0x0
[    0.086382] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    0.086975] DMAR: RHSA base: 0x000000e7ffc000 proximity domain: 0x0
[    0.087769] IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    0.088312] IOAPIC id 0 under DRHD base  0xe7ffc000 IOMMU 1
[    0.088819] IOAPIC id 2 under DRHD base  0xe7ffc000 IOMMU 1
[    0.089360] HPET id 0 under DRHD base 0xe7ffc000
[    0.090515] Enabled IRQ remapping in x2apic mode
[    0.093582] Enabling x2apic
[    0.093850] Enabled x2apic
[    0.094195] Switched APIC routing to cluster x2apic.
[    0.095353] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.135601] CPU0: Genuine Intel(R) CPU  @ 2.80GHz stepping 02
[    0.243045] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.243911] ... version:                3
[    0.244212] ... bit width:              48
[    0.244638] ... generic registers:      4
[    0.245092] ... value mask:             0000ffffffffffff
[    0.245590] ... max period:             000000007fffffff
[    0.246017] ... fixed-purpose events:   3
[    0.246389] ... event mask:             000000070000000f
[    0.247691] NMI watchdog enabled, takes one hw-pmu counter.
[    0.248394] Booting Node   0, Processors  #1
[    0.283932] NMI watchdog enabled, takes one hw-pmu counter.
[    0.284696]  #2
[    0.316824] NMI watchdog enabled, takes one hw-pmu counter.
[    0.317582]  #3
[    0.349802] NMI watchdog enabled, takes one hw-pmu counter.
[    0.353379]  #4
[    0.385504] NMI watchdog enabled, takes one hw-pmu counter.
[    0.386264]  #5
[    0.418390] NMI watchdog enabled, takes one hw-pmu counter.
[    0.419150]  #6
[    0.451267] NMI watchdog enabled, takes one hw-pmu counter.
[    0.453542]  #7
[    0.485660] NMI watchdog enabled, takes one hw-pmu counter.
[    0.486791]  Ok.
[    0.487006] Booting Node   1, Processors  #8
[    0.598944] NMI watchdog enabled, takes one hw-pmu counter.
[    0.599716]  #9
[    0.632598] NMI watchdog enabled, takes one hw-pmu counter.
[    0.633460]  #10
[    0.666359] NMI watchdog enabled, takes one hw-pmu counter.
[    0.667129]  #11
[    0.700020] NMI watchdog enabled, takes one hw-pmu counter.
[    0.700771]  #12
[    0.733567] NMI watchdog enabled, takes one hw-pmu counter.
[    0.734335]  #13
[    0.767155] NMI watchdog enabled, takes one hw-pmu counter.
[    0.767905]  #14
[    0.800808] NMI watchdog enabled, takes one hw-pmu counter.
[    0.801560]  #15
[    0.834457] NMI watchdog enabled, takes one hw-pmu counter.
[    0.835176]  Ok.
[    0.835376] Booting Node   0, Processors  #16
[    0.867883] NMI watchdog enabled, takes one hw-pmu counter.
[    0.868633]  #17
[    0.900755] NMI watchdog enabled, takes one hw-pmu counter.
[    0.901505]  #18
[    0.933640] NMI watchdog enabled, takes one hw-pmu counter.
[    0.934398]  #19
[    0.966636] NMI watchdog enabled, takes one hw-pmu counter.
[    0.967521]  #20
[    0.999650] NMI watchdog enabled, takes one hw-pmu counter.
[    1.000401]  #21
[    1.032534] NMI watchdog enabled, takes one hw-pmu counter.
[    1.033280]  #22
[    1.065405] NMI watchdog enabled, takes one hw-pmu counter.
[    1.066151]  #23
[    1.098270] NMI watchdog enabled, takes one hw-pmu counter.
[    1.099082]  Ok.
[    1.099282] Booting Node   1, Processors  #24
[    1.134983] NMI watchdog enabled, takes one hw-pmu counter.
[    1.135712]  #25
[    1.168511] NMI watchdog enabled, takes one hw-pmu counter.
[    1.169243]  #26
[    1.202186] NMI watchdog enabled, takes one hw-pmu counter.
[    1.202929]  #27
[    1.235820] NMI watchdog enabled, takes one hw-pmu counter.
[    1.236559]  #28
[    1.269452] NMI watchdog enabled, takes one hw-pmu counter.
[    1.270194]  #29
[    1.302986] NMI watchdog enabled, takes one hw-pmu counter.
[    1.303723]  #30
[    1.336519] NMI watchdog enabled, takes one hw-pmu counter.
[    1.337257]  #31 Ok.
[    1.370225] NMI watchdog enabled, takes one hw-pmu counter.
[    1.370816] Brought up 32 CPUs
[    1.371111] Total of 32 processors activated (147203.36 BogoMIPS).
[    1.417965] devtmpfs: initialized
[    1.424876] PM: Registering ACPI NVS region at 8e0a4000 (2252800 bytes)
[    1.425589] PM: Registering ACPI NVS region at 8f337000 (5017600 bytes)
[    1.426871] print_constraints: dummy: 
[    1.427278] Time: 14:38:54  Date: 11/02/16
[    1.427836] NET: Registered protocol family 16
[    1.428430] ACPI: bus type pci registered
[    1.428902] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x90000000-0x9fffffff] (base 0x90000000)
[    1.432362] PCI: MMCONFIG at [mem 0x90000000-0x9fffffff] reserved in E820
[    1.450148] PCI: Using configuration type 1 for base access
[    1.453494] bio: create slab <bio-0> at 0
[    1.464099] ACPI: EC: Look up EC in DSDT
[    1.473917] ACPI: Executed 1 blocks of module-level executable AML code
[    1.732720] \_SB_:_OSC invalid UUID
[    1.733080] _OSC request data:1 17 
[    1.739477] ACPI: Interpreter enabled
[    1.739889] ACPI: (supports S0 S4 S5)
[    1.740359] ACPI: Using IOAPIC for interrupt routing
[    1.753083] ACPI: No dock devices found.
[    1.753524] HEST: Table parsing has been initialized.
[    1.753963] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.755409] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    1.756576] pci_root PNP0A08:00: host bridge window [io  0x0000-0x03af]
[    1.757317] pci_root PNP0A08:00: host bridge window [io  0x03e0-0x0cf7]
[    1.757991] pci_root PNP0A08:00: host bridge window [io  0x03b0-0x03df]
[    1.758628] pci_root PNP0A08:00: host bridge window [io  0x0d00-0x9fff]
[    1.759281] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[    1.763330] pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
[    1.764019] pci_root PNP0A08:00: host bridge window [mem 0x90000000-0xe7ffffff]
[    1.764699] pci_root PNP0A08:00: host bridge window [mem 0x380000000000-0x380fffffffff]
[    1.765400] pci 0000:00:00.0: [8086:0e00] type 0 class 0x000600
[    1.766024] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.766608] pci 0000:00:00.0: PME# disabled
[    1.766966] pci 0000:00:01.0: [8086:0e02] type 1 class 0x000604
[    1.767562] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.768136] pci 0000:00:01.0: PME# disabled
[    1.768518] pci 0000:00:01.1: [8086:0e03] type 1 class 0x000604
[    1.769144] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.773905] pci 0000:00:01.1: PME# disabled
[    1.774363] pci 0000:00:02.0: [8086:0e04] type 1 class 0x000604
[    1.774957] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.775540] pci 0000:00:02.0: PME# disabled
[    1.775933] pci 0000:00:02.2: [8086:0e06] type 1 class 0x000604
[    1.776524] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.777099] pci 0000:00:02.2: PME# disabled
[    1.777504] pci 0000:00:03.0: [8086:0e08] type 1 class 0x000604
[    1.778092] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.778671] pci 0000:00:03.0: PME# disabled
[    1.779128] pci 0000:00:05.0: [8086:0e28] type 0 class 0x000880
[    1.783377] pci 0000:00:05.2: [8086:0e2a] type 0 class 0x000880
[    1.784012] pci 0000:00:05.4: [8086:0e2c] type 0 class 0x000800
[    1.784619] pci 0000:00:05.4: reg 10: [mem 0xe7f06000-0xe7f06fff]
[    1.785319] pci 0000:00:07.0: [8086:0e18] type 0 class 0x000880
[    1.785967] pci 0000:00:11.0: [8086:1d3e] type 1 class 0x000604
[    1.786643] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    1.787231] pci 0000:00:11.0: PME# disabled
[    1.787602] pci 0000:00:16.0: [8086:1d3a] type 0 class 0x000780
[    1.788144] pci 0000:00:16.0: reg 10: [mem 0xe7f05000-0xe7f0500f 64bit]
[    1.788789] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    1.789429] pci 0000:00:16.0: PME# disabled
[    1.792692] pci 0000:00:16.1: [8086:1d3b] type 0 class 0x000780
[    1.793239] pci 0000:00:16.1: reg 10: [mem 0xe7f04000-0xe7f0400f 64bit]
[    1.793866] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    1.794322] pci 0000:00:16.1: PME# disabled
[    1.794728] pci 0000:00:1a.0: [8086:1d2d] type 0 class 0x000c03
[    1.795249] pci 0000:00:1a.0: reg 10: [mem 0xe7f02000-0xe7f023ff]
[    1.795851] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.796478] pci 0000:00:1a.0: PME# disabled
[    1.796893] pci 0000:00:1c.0: [8086:1d10] type 1 class 0x000604
[    1.797434] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.798113] pci 0000:00:1c.0: PME# disabled
[    1.798547] pci 0000:00:1c.4: [8086:1d18] type 1 class 0x000604
[    1.799070] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.806339] pci 0000:00:1c.4: PME# disabled
[    1.806765] pci 0000:00:1d.0: [8086:1d26] type 0 class 0x000c03
[    1.807291] pci 0000:00:1d.0: reg 10: [mem 0xe7f01000-0xe7f013ff]
[    1.807904] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.808543] pci 0000:00:1d.0: PME# disabled
[    1.808965] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[    1.813439] pci 0000:00:1f.0: [8086:1d41] type 0 class 0x000601
[    1.814013] pci 0000:00:1f.2: [8086:1d02] type 0 class 0x000106
[    1.814627] pci 0000:00:1f.2: reg 10: [io  0x9070-0x9077]
[    1.815152] pci 0000:00:1f.2: reg 14: [io  0x9060-0x9063]
[    1.815561] pci 0000:00:1f.2: reg 18: [io  0x9050-0x9057]
[    1.816018] pci 0000:00:1f.2: reg 1c: [io  0x9040-0x9043]
[    1.816478] pci 0000:00:1f.2: reg 20: [io  0x9020-0x903f]
[    1.816947] pci 0000:00:1f.2: reg 24: [mem 0xe7f00000-0xe7f007ff]
[    1.817508] pci 0000:00:1f.2: PME# supported from D3hot
[    1.817919] pci 0000:00:1f.2: PME# disabled
[    1.818338] pci 0000:00:1f.3: [8086:1d22] type 0 class 0x000c05
[    1.818878] pci 0000:00:1f.3: reg 10: [mem 0x380ffff01000-0x380ffff010ff 64bit]
[    1.822661] pci 0000:00:1f.3: reg 20: [io  0x9000-0x901f]
[    1.823158] pci 0000:00:1f.6: [8086:1d24] type 0 class 0x001180
[    1.823664] pci 0000:00:1f.6: reg 10: [mem 0x380ffff00000-0x380ffff00fff 64bit]
[    1.824434] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    1.824939] pci 0000:00:01.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.825609] pci 0000:00:01.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.826293] pci 0000:00:01.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.827048] pci 0000:00:01.1: PCI bridge to [bus 02-02]
[    1.827482] pci 0000:00:01.1:   bridge window [io  0xf000-0x0000] (disabled)
[    1.828082] pci 0000:00:01.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.828783] pci 0000:00:01.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.832767] pci 0000:03:00.0: [15b3:1003] type 0 class 0x000280
[    1.833601] pci 0000:03:00.0: reg 10: [mem 0xe7e00000-0xe7efffff 64bit]
[    1.834457] pci 0000:03:00.0: reg 18: [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.836786] pci 0000:00:02.0: PCI bridge to [bus 03-03]
[    1.837308] pci 0000:00:02.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.837858] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    1.838437] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    1.839242] pci 0000:00:02.2: PCI bridge to [bus 04-04]
[    1.842916] pci 0000:00:02.2:   bridge window [io  0xf000-0x0000] (disabled)
[    1.843575] pci 0000:00:02.2:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.844324] pci 0000:00:02.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.845142] pci 0000:05:00.0: [8086:2250] type 0 class 0x000b40
[    1.845660] pci 0000:05:00.0: reg 10: [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.846348] pci 0000:05:00.0: reg 20: [mem 0xe7d00000-0xe7d1ffff 64bit]
[    1.846997] pci 0000:05:00.0: PME# supported from D0
[    1.847472] pci 0000:05:00.0: PME# disabled
[    1.854211] pci 0000:00:03.0: PCI bridge to [bus 05-05]
[    1.854744] pci 0000:00:03.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.855397] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    1.856020] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    1.856866] pci 0000:06:00.0: [8086:1d69] type 0 class 0x000107
[    1.857443] pci 0000:06:00.0: reg 10: [mem 0x380e00c7c000-0x380e00c7ffff 64bit pref]
[    1.858104] pci 0000:06:00.0: reg 18: [mem 0x380e00800000-0x380e00bfffff 64bit pref]
[    1.858822] pci 0000:06:00.0: reg 20: [io  0x8000-0x80ff]
[    1.862711] pci 0000:06:00.0: reg 164: [mem 0x380e00c00000-0x380e00c03fff 64bit pref]
[    1.863510] pci 0000:00:11.0: PCI bridge to [bus 06-06]
[    1.863893] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    1.864418] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    1.865068] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    1.865908] pci 0000:07:00.0: [8086:1523] type 0 class 0x000200
[    1.866488] pci 0000:07:00.0: reg 10: [mem 0xe7b00000-0xe7b1ffff]
[    1.866978] pci 0000:07:00.0: reg 18: [io  0x7000-0x701f]
[    1.867428] pci 0000:07:00.0: reg 1c: [mem 0xe7b20000-0xe7b23fff]
[    1.868035] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    1.868649] pci 0000:07:00.0: PME# disabled
[    1.869165] pci 0000:07:00.0: reg 184: [mem 0x380e00e20000-0x380e00e23fff 64bit pref]
[    1.872934] pci 0000:07:00.0: reg 190: [mem 0x380e00e00000-0x380e00e03fff 64bit pref]
[    1.878201] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    1.878738] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    1.882537] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    1.883158] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    1.884006] pci 0000:09:00.0: [1a03:1150] type 1 class 0x000604
[    1.884707] pci 0000:09:00.0: supports D1 D2
[    1.885134] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.885739] pci 0000:09:00.0: PME# disabled
[    1.894192] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    1.894743] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    1.895338] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.895985] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.896756] pci 0000:0a:00.0: [1a03:2000] type 0 class 0x000300
[    1.897390] pci 0000:0a:00.0: reg 10: [mem 0xe7000000-0xe77fffff pref]
[    1.898033] pci 0000:0a:00.0: reg 14: [mem 0xe7a00000-0xe7a1ffff]
[    1.898643] pci 0000:0a:00.0: reg 18: [io  0x6000-0x607f]
[    1.902759] pci 0000:0a:00.0: supports D1 D2
[    1.903169] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.903709] pci 0000:0a:00.0: PME# disabled
[    1.904213] pci 0000:09:00.0: PCI bridge to [bus 0a-0a]
[    1.904713] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    1.905159] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    1.905786] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    1.906564] pci 0000:00:1e.0: PCI bridge to [bus 0b-0b] (subtractive decode)
[    1.907275] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
[    1.907959] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    1.908655] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    1.912395] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af] (subtractive decode)
[    1.913142] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7] (subtractive decode)
[    1.913826] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df] (subtractive decode)
[    1.914543] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff] (subtractive decode)
[    1.915242] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    1.916024] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[    1.916780] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xe7ffffff] (subtractive decode)
[    1.917556] pci 0000:00:1e.0:   bridge window [mem 0x380000000000-0x380fffffffff] (subtractive decode)
[    1.918391] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[    1.918778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    1.922777] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P9._PRT]
[    1.923448] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PA._PRT]
[    1.924061] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
[    1.924708] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE2._PRT]
[    1.925322] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
[    1.925966] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE5._PRT]
[    1.926559] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
[    1.927235]  pci0000:00: Requesting ACPI _OSC control (0x1d)
[    1.927964]  pci0000:00: ACPI _OSC control (0x1d) granted
[    1.937299] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    1.937972] pci 0000:7f:08.0: [8086:0e80] type 0 class 0x000880
[    1.938612] pci 0000:7f:08.3: [8086:0e83] type 0 class 0x000880
[    1.942486] pci 0000:7f:08.4: [8086:0e84] type 0 class 0x000880
[    1.943119] pci 0000:7f:09.0: [8086:0e90] type 0 class 0x000880
[    1.943711] pci 0000:7f:09.3: [8086:0e93] type 0 class 0x000880
[    1.944319] pci 0000:7f:09.4: [8086:0e94] type 0 class 0x000880
[    1.944916] pci 0000:7f:0a.0: [8086:0ec0] type 0 class 0x000880
[    1.945477] pci 0000:7f:0a.1: [8086:0ec1] type 0 class 0x000880
[    1.946058] pci 0000:7f:0a.2: [8086:0ec2] type 0 class 0x000880
[    1.946635] pci 0000:7f:0a.3: [8086:0ec3] type 0 class 0x000880
[    1.947196] pci 0000:7f:0b.0: [8086:0e1e] type 0 class 0x000880
[    1.947753] pci 0000:7f:0b.3: [8086:0e1f] type 0 class 0x000880
[    1.948305] pci 0000:7f:0c.0: [8086:0ee0] type 0 class 0x000880
[    1.948852] pci 0000:7f:0c.1: [8086:0ee2] type 0 class 0x000880
[    1.952383] pci 0000:7f:0c.2: [8086:0ee4] type 0 class 0x000880
[    1.952933] pci 0000:7f:0c.3: [8086:0ee6] type 0 class 0x000880
[    1.953464] pci 0000:7f:0c.4: [8086:0ee8] type 0 class 0x000880
[    1.953987] pci 0000:7f:0d.0: [8086:0ee1] type 0 class 0x000880
[    1.954504] pci 0000:7f:0d.1: [8086:0ee3] type 0 class 0x000880
[    1.955013] pci 0000:7f:0d.2: [8086:0ee5] type 0 class 0x000880
[    1.955518] pci 0000:7f:0d.3: [8086:0ee7] type 0 class 0x000880
[    1.956010] pci 0000:7f:0d.4: [8086:0ee9] type 0 class 0x000880
[    1.956588] pci 0000:7f:0e.0: [8086:0ea0] type 0 class 0x000880
[    1.957216] pci 0000:7f:0e.1: [8086:0e30] type 0 class 0x001101
[    1.957833] pci 0000:7f:0f.0: [8086:0ea8] type 0 class 0x000880
[    1.958444] pci 0000:7f:0f.1: [8086:0e71] type 0 class 0x000880
[    1.959091] pci 0000:7f:0f.2: [8086:0eaa] type 0 class 0x000880
[    1.963067] pci 0000:7f:0f.3: [8086:0eab] type 0 class 0x000880
[    1.963676] pci 0000:7f:0f.4: [8086:0eac] type 0 class 0x000880
[    1.964266] pci 0000:7f:0f.5: [8086:0ead] type 0 class 0x000880
[    1.964847] pci 0000:7f:10.0: [8086:0eb0] type 0 class 0x000880
[    1.965417] pci 0000:7f:10.1: [8086:0eb1] type 0 class 0x000880
[    1.965985] pci 0000:7f:10.2: [8086:0eb2] type 0 class 0x000880
[    1.966545] pci 0000:7f:10.3: [8086:0eb3] type 0 class 0x000880
[    1.967093] pci 0000:7f:10.4: [8086:0eb4] type 0 class 0x000880
[    1.967684] pci 0000:7f:10.5: [8086:0eb5] type 0 class 0x000880
[    1.968391] pci 0000:7f:10.6: [8086:0eb6] type 0 class 0x000880
[    1.969018] pci 0000:7f:10.7: [8086:0eb7] type 0 class 0x000880
[    1.973686] pci 0000:7f:13.0: [8086:0e1d] type 0 class 0x000880
[    1.974206] pci 0000:7f:13.1: [8086:0e34] type 0 class 0x001101
[    1.974724] pci 0000:7f:13.4: [8086:0e81] type 0 class 0x000880
[    1.975232] pci 0000:7f:13.5: [8086:0e36] type 0 class 0x001101
[    1.975743] pci 0000:7f:16.0: [8086:0ec8] type 0 class 0x000880
[    1.976234] pci 0000:7f:16.1: [8086:0ec9] type 0 class 0x000880
[    1.976812] pci 0000:7f:16.2: [8086:0eca] type 0 class 0x000880
[    1.977440] pci_bus 0000:7f: on NUMA node 0 (pxm 0)
[    1.977912]  pci0000:7f: Requesting ACPI _OSC control (0x1d)
[    1.978346]  pci0000:7f: ACPI _OSC control (0x1d) granted
[    1.979936] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    1.985805] pci_root PNP0A08:01: host bridge window [io  0xa000-0xffff]
[    1.987422] pci_root PNP0A08:01: host bridge window [mem 0xe8000000-0xfbffffff]
[    1.992408] pci_root PNP0A08:01: host bridge window [mem 0x381000000000-0x381fffffffff]
[    1.993566] pci 0000:80:00.0: [8086:0e01] type 1 class 0x000604
[    1.994230] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    1.995448] pci 0000:80:00.0: PME# disabled
[    1.995879] pci 0000:80:01.0: [8086:0e02] type 1 class 0x000604
[    1.996657] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    1.997125] pci 0000:80:01.0: PME# disabled
[    1.997550] pci 0000:80:01.1: [8086:0e03] type 1 class 0x000604
[    1.998131] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    1.998641] pci 0000:80:01.1: PME# disabled
[    1.999126] pci 0000:80:02.0: [8086:0e04] type 1 class 0x000604
[    2.002633] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.003213] pci 0000:80:02.0: PME# disabled
[    2.003625] pci 0000:80:02.2: [8086:0e06] type 1 class 0x000604
[    2.004224] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[    2.004802] pci 0000:80:02.2: PME# disabled
[    2.005188] pci 0000:80:03.0: [8086:0e08] type 1 class 0x000604
[    2.005770] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.006350] pci 0000:80:03.0: PME# disabled
[    2.006739] pci 0000:80:05.0: [8086:0e28] type 0 class 0x000880
[    2.007330] pci 0000:80:05.2: [8086:0e2a] type 0 class 0x000880
[    2.008020] pci 0000:80:05.4: [8086:0e2c] type 0 class 0x000800
[    2.008585] pci 0000:80:05.4: reg 10: [mem 0xfbf00000-0xfbf00fff]
[    2.009239] pci 0000:80:07.0: [8086:0e18] type 0 class 0x000880
[    2.012789] pci 0000:80:00.0: PCI bridge to [bus 81-81]
[    2.013289] pci 0000:80:00.0:   bridge window [io  0xf000-0x0000] (disabled)
[    2.013892] pci 0000:80:00.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    2.014637] pci 0000:80:00.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    2.015439] pci 0000:80:01.0: PCI bridge to [bus 82-82]
[    2.015912] pci 0000:80:01.0:   bridge window [io  0xf000-0x0000] (disabled)
[    2.016550] pci 0000:80:01.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    2.017292] pci 0000:80:01.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    2.018096] pci 0000:80:01.1: PCI bridge to [bus 83-83]
[    2.018575] pci 0000:80:01.1:   bridge window [io  0xf000-0x0000] (disabled)
[    2.022602] pci 0000:80:01.1:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    2.023276] pci 0000:80:01.1:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    2.024032] pci 0000:80:02.0: PCI bridge to [bus 84-84]
[    2.024516] pci 0000:80:02.0:   bridge window [io  0xf000-0x0000] (disabled)
[    2.025162] pci 0000:80:02.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    2.025821] pci 0000:80:02.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    2.026582] pci 0000:80:02.2: PCI bridge to [bus 85-85]
[    2.027056] pci 0000:80:02.2:   bridge window [io  0xf000-0x0000] (disabled)
[    2.027705] pci 0000:80:02.2:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
[    2.028366] pci 0000:80:02.2:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    2.032101] pci 0000:86:00.0: [8086:2250] type 0 class 0x000b40
[    2.032632] pci 0000:86:00.0: reg 10: [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    2.033324] pci 0000:86:00.0: reg 20: [mem 0xfbe00000-0xfbe1ffff 64bit]
[    2.033899] pci 0000:86:00.0: PME# supported from D0
[    2.034285] pci 0000:86:00.0: PME# disabled
[    2.034791] pci 0000:80:03.0: PCI bridge to [bus 86-86]
[    2.035288] pci 0000:80:03.0:   bridge window [io  0xf000-0x0000] (disabled)
[    2.035868] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    2.036446] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    2.037215] pci_bus 0000:80: on NUMA node 1 (pxm 1)
[    2.037689] ACPI: PCI Interrupt Routing Table [\_SB_.PCI1._PRT]
[    2.038492]  pci0000:80: Requesting ACPI _OSC control (0x1d)
[    2.039289]  pci0000:80: ACPI _OSC control (0x1d) granted
[    2.044213] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.044869] pci 0000:ff:08.0: [8086:0e80] type 0 class 0x000880
[    2.045468] pci 0000:ff:08.3: [8086:0e83] type 0 class 0x000880
[    2.046072] pci 0000:ff:08.4: [8086:0e84] type 0 class 0x000880
[    2.046746] pci 0000:ff:09.0: [8086:0e90] type 0 class 0x000880
[    2.047343] pci 0000:ff:09.3: [8086:0e93] type 0 class 0x000880
[    2.047998] pci 0000:ff:09.4: [8086:0e94] type 0 class 0x000880
[    2.048610] pci 0000:ff:0a.0: [8086:0ec0] type 0 class 0x000880
[    2.049279] pci 0000:ff:0a.1: [8086:0ec1] type 0 class 0x000880
[    2.052865] pci 0000:ff:0a.2: [8086:0ec2] type 0 class 0x000880
[    2.053488] pci 0000:ff:0a.3: [8086:0ec3] type 0 class 0x000880
[    2.054105] pci 0000:ff:0b.0: [8086:0e1e] type 0 class 0x000880
[    2.054703] pci 0000:ff:0b.3: [8086:0e1f] type 0 class 0x000880
[    2.055304] pci 0000:ff:0c.0: [8086:0ee0] type 0 class 0x000880
[    2.055895] pci 0000:ff:0c.1: [8086:0ee2] type 0 class 0x000880
[    2.056482] pci 0000:ff:0c.2: [8086:0ee4] type 0 class 0x000880
[    2.057059] pci 0000:ff:0c.3: [8086:0ee6] type 0 class 0x000880
[    2.057632] pci 0000:ff:0c.4: [8086:0ee8] type 0 class 0x000880
[    2.058204] pci 0000:ff:0d.0: [8086:0ee1] type 0 class 0x000880
[    2.058754] pci 0000:ff:0d.1: [8086:0ee3] type 0 class 0x000880
[    2.062251] pci 0000:ff:0d.2: [8086:0ee5] type 0 class 0x000880
[    2.062816] pci 0000:ff:0d.3: [8086:0ee7] type 0 class 0x000880
[    2.063365] pci 0000:ff:0d.4: [8086:0ee9] type 0 class 0x000880
[    2.063906] pci 0000:ff:0e.0: [8086:0ea0] type 0 class 0x000880
[    2.064446] pci 0000:ff:0e.1: [8086:0e30] type 0 class 0x001101
[    2.064975] pci 0000:ff:0f.0: [8086:0ea8] type 0 class 0x000880
[    2.065494] pci 0000:ff:0f.1: [8086:0e71] type 0 class 0x000880
[    2.066003] pci 0000:ff:0f.2: [8086:0eaa] type 0 class 0x000880
[    2.066508] pci 0000:ff:0f.3: [8086:0eab] type 0 class 0x000880
[    2.067002] pci 0000:ff:0f.4: [8086:0eac] type 0 class 0x000880
[    2.067493] pci 0000:ff:0f.5: [8086:0ead] type 0 class 0x000880
[    2.068056] pci 0000:ff:10.0: [8086:0eb0] type 0 class 0x000880
[    2.068661] pci 0000:ff:10.1: [8086:0eb1] type 0 class 0x000880
[    2.072294] pci 0000:ff:10.2: [8086:0eb2] type 0 class 0x000880
[    2.072904] pci 0000:ff:10.3: [8086:0eb3] type 0 class 0x000880
[    2.073512] pci 0000:ff:10.4: [8086:0eb4] type 0 class 0x000880
[    2.074175] pci 0000:ff:10.5: [8086:0eb5] type 0 class 0x000880
[    2.074781] pci 0000:ff:10.6: [8086:0eb6] type 0 class 0x000880
[    2.075426] pci 0000:ff:10.7: [8086:0eb7] type 0 class 0x000880
[    2.076029] pci 0000:ff:13.0: [8086:0e1d] type 0 class 0x000880
[    2.076616] pci 0000:ff:13.1: [8086:0e34] type 0 class 0x001101
[    2.077266] pci 0000:ff:13.4: [8086:0e81] type 0 class 0x000880
[    2.077882] pci 0000:ff:13.5: [8086:0e36] type 0 class 0x001101
[    2.078501] pci 0000:ff:16.0: [8086:0ec8] type 0 class 0x000880
[    2.082244] pci 0000:ff:16.1: [8086:0ec9] type 0 class 0x000880
[    2.082859] pci 0000:ff:16.2: [8086:0eca] type 0 class 0x000880
[    2.083466] pci_bus 0000:ff: on NUMA node 1 (pxm 1)
[    2.083955]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
[    2.084548]  pci0000:ff: ACPI _OSC control (0x1d) granted
[    2.086004] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    2.086828] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    2.087636] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15)
[    2.088411] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 *4 5 6 10 11 12 14 15)
[    2.089231] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    2.092793] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    2.093601] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    2.094420] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    2.095253] vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=io+mem,locks=none
[    2.096067] vgaarb: loaded
[    2.096382] PCI: Using ACPI for IRQ routing
[    2.101311] PCI: pci_cache_line_size set to 64 bytes
[    2.102125] reserve RAM buffer: 000000000008f000 - 000000000008ffff 
[    2.102768] reserve RAM buffer: 000000008df5e000 - 000000008fffffff 
[    2.103509] NetLabel: Initializing
[    2.103855] NetLabel:  domain hash size = 128
[    2.104254] NetLabel:  protocols = UNLABELED CIPSOv4
[    2.104804] NetLabel:  unlabeled traffic allowed by default
[    2.105399] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.106067] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.109692] Switching to clocksource hpet
[    2.111885] AppArmor: AppArmor Filesystem Enabled
[    2.112936] pnp: PnP ACPI init
[    2.113272] ACPI: bus type pnp registered
[    2.114027] pnp 00:00: [bus 00-7e]
[    2.114409] pnp 00:00: [io  0x0cf8-0x0cff]
[    2.114811] pnp 00:00: [io  0x0000-0x03af window]
[    2.115218] pnp 00:00: [io  0x03e0-0x0cf7 window]
[    2.115717] pnp 00:00: [io  0x03b0-0x03df window]
[    2.116219] pnp 00:00: [io  0x0d00-0x9fff window]
[    2.116679] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    2.117105] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[    2.117574] pnp 00:00: [mem 0x90000000-0xe7ffffff window]
[    2.118047] pnp 00:00: [mem 0x380000000000-0x380fffffffff window]
[    2.118694] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    2.122295] pnp 00:01: [mem 0xfc000000-0xfcffffff]
[    2.122825] pnp 00:01: [mem 0xfd000000-0xfdffffff]
[    2.123296] pnp 00:01: [mem 0xfe000000-0xfeafffff]
[    2.123688] pnp 00:01: [mem 0xfeb00000-0xfebfffff]
[    2.124125] pnp 00:01: [mem 0xfed00400-0xfed3ffff]
[    2.124585] pnp 00:01: [mem 0xfed45000-0xfedfffff]
[    2.125203] system 00:01: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.125865] system 00:01: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.126369] system 00:01: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.127007] system 00:01: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.127671] system 00:01: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.128323] system 00:01: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.128970] system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
[    2.132558] pnp 00:02: [mem 0xe7ffc000-0xe7ffdfff]
[    2.133019] system 00:02: [mem 0xe7ffc000-0xe7ffdfff] has been reserved
[    2.133689] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.134427] pnp 00:03: [io  0x0000-0xffffffffffffffff disabled]
[    2.135014] pnp 00:03: [io  0x0a00-0x0a1f]
[    2.135497] system 00:03: [io  0x0a00-0x0a1f] has been reserved
[    2.136085] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.136899] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (disabled)
[    2.137581] pnp 00:05: [dma 4]
[    2.137882] pnp 00:05: [io  0x0000-0x000f]
[    2.138323] pnp 00:05: [io  0x0081-0x0083]
[    2.138725] pnp 00:05: [io  0x0087]
[    2.142190] pnp 00:05: [io  0x0089-0x008b]
[    2.142651] pnp 00:05: [io  0x008f]
[    2.142996] pnp 00:05: [io  0x00c0-0x00df]
[    2.143397] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
[    2.143990] pnp 00:06: [io  0x0070-0x0071]
[    2.144415] pnp 00:06: [irq 8]
[    2.144734] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.145310] pnp 00:07: [io  0x0061]
[    2.145677] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
[    2.146340] pnp 00:08: [io  0x0010-0x001f]
[    2.146645] pnp 00:08: [io  0x0022-0x003f]
[    2.147062] pnp 00:08: [io  0x0044-0x005f]
[    2.147522] pnp 00:08: [io  0x0062-0x0063]
[    2.147931] pnp 00:08: [io  0x0065-0x006f]
[    2.148283] pnp 00:08: [io  0x0072-0x007f]
[    2.148715] pnp 00:08: [io  0x0080]
[    2.149129] pnp 00:08: [io  0x0084-0x0086]
[    2.152577] pnp 00:08: [io  0x0088]
[    2.152969] pnp 00:08: [io  0x008c-0x008e]
[    2.153373] pnp 00:08: [io  0x0090-0x009f]
[    2.153719] pnp 00:08: [io  0x00a2-0x00bf]
[    2.154139] pnp 00:08: [io  0x00e0-0x00ef]
[    2.154592] pnp 00:08: [io  0x04d0-0x04d1]
[    2.155083] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    2.155668] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.156337] pnp 00:09: [io  0x00f0-0x00ff]
[    2.156705] pnp 00:09: [irq 13]
[    2.157099] pnp 00:09: Plug and Play ACPI device, IDs PNP0c04 (active)
[    2.157847] pnp 00:0a: [io  0x0ca2]
[    2.158209] pnp 00:0a: [io  0x0ca3]
[    2.158576] pnp 00:0a: Plug and Play ACPI device, IDs IPI0001 (active)
[    2.159490] pnp 00:0b: [io  0x0400-0x0453]
[    2.162520] pnp 00:0b: [io  0x0458-0x047f]
[    2.162960] pnp 00:0b: [io  0x1180-0x119f]
[    2.163432] pnp 00:0b: [io  0x0500-0x057f]
[    2.163836] pnp 00:0b: [mem 0xfed1c000-0xfed1ffff]
[    2.164250] pnp 00:0b: [mem 0xfec00000-0xfecfffff]
[    2.164718] pnp 00:0b: [mem 0xfed08000-0xfed08fff]
[    2.165210] pnp 00:0b: [mem 0xff000000-0xffffffff]
[    2.165808] system 00:0b: [io  0x0400-0x0453] has been reserved
[    2.166387] system 00:0b: [io  0x0458-0x047f] has been reserved
[    2.166967] system 00:0b: [io  0x1180-0x119f] has been reserved
[    2.167452] system 00:0b: [io  0x0500-0x057f] has been reserved
[    2.167975] system 00:0b: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.168523] system 00:0b: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.172316] system 00:0b: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.172975] system 00:0b: [mem 0xff000000-0xffffffff] has been reserved
[    2.173598] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    2.174256] pnp 00:0c: [io  0x0454-0x0457]
[    2.174685] system 00:0c: [io  0x0454-0x0457] has been reserved
[    2.175282] system 00:0c: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    2.176182] pnp 00:0d: [mem 0xfed00000-0xfed003ff]
[    2.176704] pnp 00:0d: Plug and Play ACPI device, IDs PNP0103 (active)
[    2.177404] pnp 00:0e: [bus 7f]
[    2.177760] pnp 00:0e: Plug and Play ACPI device, IDs PNP0a03 (active)
[    2.178620] pnp 00:0f: [bus 80-fe]
[    2.179024] pnp 00:0f: [io  0x0000 window]
[    2.179429] pnp 00:0f: [io  0xa000-0xffff window]
[    2.182621] pnp 00:0f: [mem 0x00000000 window]
[    2.183064] pnp 00:0f: [mem 0xe8000000-0xfbffffff window]
[    2.183602] pnp 00:0f: [mem 0x381000000000-0x381fffffffff window]
[    2.184235] pnp 00:0f: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    2.185039] system 00:10: Plug and Play ACPI device, IDs PNP0c01 (active)
[    2.185757] pnp 00:11: [mem 0xfbffe000-0xfbffffff]
[    2.186320] system 00:11: [mem 0xfbffe000-0xfbffffff] has been reserved
[    2.186985] system 00:11: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.187548] pnp 00:12: [bus ff]
[    2.187835] pnp 00:12: Plug and Play ACPI device, IDs PNP0a03 (active)
[    2.188979] pnp: PnP ACPI: found 19 devices
[    2.189422] ACPI: ACPI bus type pnp unregistered
[    2.198375] PCI: max bus depth: 2 pci_try_num: 3
[    2.199017] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[    2.202451] pci 0000:00:01.0:   bridge window [io  disabled]
[    2.203022] pci 0000:00:01.0:   bridge window [mem disabled]
[    2.203592] pci 0000:00:01.0:   bridge window [mem pref disabled]
[    2.204176] pci 0000:00:01.1: PCI bridge to [bus 02-02]
[    2.204693] pci 0000:00:01.1:   bridge window [io  disabled]
[    2.205254] pci 0000:00:01.1:   bridge window [mem disabled]
[    2.205811] pci 0000:00:01.1:   bridge window [mem pref disabled]
[    2.206400] pci 0000:00:02.0: PCI bridge to [bus 03-03]
[    2.206913] pci 0000:00:02.0:   bridge window [io  disabled]
[    2.207474] pci 0000:00:02.0:   bridge window [mem 0xe7e00000-0xe7efffff]
[    2.208112] pci 0000:00:02.0:   bridge window [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    2.211875] pci 0000:00:02.2: PCI bridge to [bus 04-04]
[    2.212398] pci 0000:00:02.2:   bridge window [io  disabled]
[    2.212818] pci 0000:00:02.2:   bridge window [mem disabled]
[    2.213293] pci 0000:00:02.2:   bridge window [mem pref disabled]
[    2.213885] pci 0000:00:03.0: PCI bridge to [bus 05-05]
[    2.214394] pci 0000:00:03.0:   bridge window [io  disabled]
[    2.214826] pci 0000:00:03.0:   bridge window [mem 0xe7d00000-0xe7dfffff]
[    2.215460] pci 0000:00:03.0:   bridge window [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    2.216231] pci 0000:00:11.0: PCI bridge to [bus 06-06]
[    2.216703] pci 0000:00:11.0:   bridge window [io  0x8000-0x8fff]
[    2.217259] pci 0000:00:11.0:   bridge window [mem 0xe7c00000-0xe7cfffff]
[    2.217843] pci 0000:00:11.0:   bridge window [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    2.218598] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.222123] pci 0000:00:1c.0:   bridge window [io  0x7000-0x7fff]
[    2.222732] pci 0000:00:1c.0:   bridge window [mem 0xe7b00000-0xe7bfffff]
[    2.223368] pci 0000:00:1c.0:   bridge window [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    2.224179] pci 0000:09:00.0: PCI bridge to [bus 0a-0a]
[    2.224690] pci 0000:09:00.0:   bridge window [io  0x6000-0x6fff]
[    2.225231] pci 0000:09:00.0:   bridge window [mem 0xe7a00000-0xe7afffff]
[    2.225905] pci 0000:09:00.0:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    2.226618] pci 0000:00:1c.4: PCI bridge to [bus 09-0a]
[    2.227100] pci 0000:00:1c.4:   bridge window [io  0x6000-0x6fff]
[    2.227667] pci 0000:00:1c.4:   bridge window [mem 0xe7a00000-0xe7afffff]
[    2.228247] pci 0000:00:1c.4:   bridge window [mem 0xe7000000-0xe77fffff 64bit pref]
[    2.232124] pci 0000:00:1e.0: PCI bridge to [bus 0b-0b]
[    2.232683] pci 0000:00:1e.0:   bridge window [io  disabled]
[    2.233281] pci 0000:00:1e.0:   bridge window [mem disabled]
[    2.233879] pci 0000:00:1e.0:   bridge window [mem pref disabled]
[    2.234509] pci 0000:80:00.0: PCI bridge to [bus 81-81]
[    2.235057] pci 0000:80:00.0:   bridge window [io  disabled]
[    2.235659] pci 0000:80:00.0:   bridge window [mem disabled]
[    2.236243] pci 0000:80:00.0:   bridge window [mem pref disabled]
[    2.236866] pci 0000:80:01.0: PCI bridge to [bus 82-82]
[    2.237413] pci 0000:80:01.0:   bridge window [io  disabled]
[    2.238008] pci 0000:80:01.0:   bridge window [mem disabled]
[    2.238598] pci 0000:80:01.0:   bridge window [mem pref disabled]
[    2.242141] pci 0000:80:01.1: PCI bridge to [bus 83-83]
[    2.242699] pci 0000:80:01.1:   bridge window [io  disabled]
[    2.243300] pci 0000:80:01.1:   bridge window [mem disabled]
[    2.243903] pci 0000:80:01.1:   bridge window [mem pref disabled]
[    2.244520] pci 0000:80:02.0: PCI bridge to [bus 84-84]
[    2.245071] pci 0000:80:02.0:   bridge window [io  disabled]
[    2.245665] pci 0000:80:02.0:   bridge window [mem disabled]
[    2.246257] pci 0000:80:02.0:   bridge window [mem pref disabled]
[    2.246879] pci 0000:80:02.2: PCI bridge to [bus 85-85]
[    2.247429] pci 0000:80:02.2:   bridge window [io  disabled]
[    2.248034] pci 0000:80:02.2:   bridge window [mem disabled]
[    2.248618] pci 0000:80:02.2:   bridge window [mem pref disabled]
[    2.252217] pci 0000:80:03.0: PCI bridge to [bus 86-86]
[    2.252774] pci 0000:80:03.0:   bridge window [io  disabled]
[    2.253374] pci 0000:80:03.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    2.254041] pci 0000:80:03.0:   bridge window [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    2.254814] pci 0000:00:01.0: PCI INT A -> GSI 26 (level, low) -> IRQ 26
[    2.255355] pci 0000:00:01.0: setting latency timer to 64
[    2.255803] pci 0000:00:01.1: PCI INT A -> GSI 26 (level, low) -> IRQ 26
[    2.256422] pci 0000:00:01.1: setting latency timer to 64
[    2.257010] pci 0000:00:02.0: PCI INT A -> GSI 32 (level, low) -> IRQ 32
[    2.257655] pci 0000:00:02.0: setting latency timer to 64
[    2.258211] pci 0000:00:02.2: PCI INT A -> GSI 32 (level, low) -> IRQ 32
[    2.258900] pci 0000:00:02.2: setting latency timer to 64
[    2.262526] pci 0000:00:03.0: PCI INT A -> GSI 47 (level, low) -> IRQ 47
[    2.263150] pci 0000:00:03.0: setting latency timer to 64
[    2.263693] pci 0000:00:11.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.264287] pci 0000:00:11.0: setting latency timer to 64
[    2.264793] pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    2.265371] pci 0000:00:1c.0: setting latency timer to 64
[    2.265848] pci 0000:00:1c.4: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    2.266413] pci 0000:00:1c.4: setting latency timer to 64
[    2.266872] pci 0000:09:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    2.267499] pci 0000:09:00.0: setting latency timer to 64
[    2.268083] pci 0000:00:1e.0: setting latency timer to 64
[    2.268665] pci 0000:80:00.0: PCI INT A -> GSI 48 (level, low) -> IRQ 48
[    2.272244] pci 0000:80:00.0: setting latency timer to 64
[    2.272830] pci 0000:80:01.0: PCI INT A -> GSI 50 (level, low) -> IRQ 50
[    2.273476] pci 0000:80:01.0: setting latency timer to 64
[    2.274021] pci 0000:80:01.1: PCI INT A -> GSI 50 (level, low) -> IRQ 50
[    2.274658] pci 0000:80:01.1: setting latency timer to 64
[    2.275199] pci 0000:80:02.0: PCI INT A -> GSI 56 (level, low) -> IRQ 56
[    2.275814] pci 0000:80:02.0: setting latency timer to 64
[    2.276311] pci 0000:80:02.2: PCI INT A -> GSI 56 (level, low) -> IRQ 56
[    2.276909] pci 0000:80:02.2: setting latency timer to 64
[    2.277403] pci 0000:80:03.0: PCI INT A -> GSI 64 (level, low) -> IRQ 64
[    2.277971] pci 0000:80:03.0: setting latency timer to 64
[    2.278437] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    2.278960] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    2.282605] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    2.283107] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff]
[    2.283603] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
[    2.284138] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
[    2.284662] pci_bus 0000:00: resource 10 [mem 0x90000000-0xe7ffffff]
[    2.285252] pci_bus 0000:00: resource 11 [mem 0x380000000000-0x380fffffffff]
[    2.285934] pci_bus 0000:03: resource 1 [mem 0xe7e00000-0xe7efffff]
[    2.286529] pci_bus 0000:03: resource 2 [mem 0x380e00000000-0x380e007fffff 64bit pref]
[    2.287217] pci_bus 0000:05: resource 1 [mem 0xe7d00000-0xe7dfffff]
[    2.287749] pci_bus 0000:05: resource 2 [mem 0x380c00000000-0x380dffffffff 64bit pref]
[    2.288593] pci_bus 0000:06: resource 0 [io  0x8000-0x8fff]
[    2.292302] pci_bus 0000:06: resource 1 [mem 0xe7c00000-0xe7cfffff]
[    2.292911] pci_bus 0000:06: resource 2 [mem 0x380e00800000-0x380e00cfffff 64bit pref]
[    2.293604] pci_bus 0000:07: resource 0 [io  0x7000-0x7fff]
[    2.294087] pci_bus 0000:07: resource 1 [mem 0xe7b00000-0xe7bfffff]
[    2.294613] pci_bus 0000:07: resource 2 [mem 0x380e00e00000-0x380e00efffff 64bit pref]
[    2.295322] pci_bus 0000:09: resource 0 [io  0x6000-0x6fff]
[    2.295879] pci_bus 0000:09: resource 1 [mem 0xe7a00000-0xe7afffff]
[    2.296467] pci_bus 0000:09: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    2.297111] pci_bus 0000:0a: resource 0 [io  0x6000-0x6fff]
[    2.297610] pci_bus 0000:0a: resource 1 [mem 0xe7a00000-0xe7afffff]
[    2.298155] pci_bus 0000:0a: resource 2 [mem 0xe7000000-0xe77fffff 64bit pref]
[    2.301766] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af]
[    2.302369] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7]
[    2.302964] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df]
[    2.303571] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff]
[    2.304158] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000bffff]
[    2.304805] pci_bus 0000:0b: resource 9 [mem 0x000c0000-0x000dffff]
[    2.305433] pci_bus 0000:0b: resource 10 [mem 0x90000000-0xe7ffffff]
[    2.306054] pci_bus 0000:0b: resource 11 [mem 0x380000000000-0x380fffffffff]
[    2.306699] pci_bus 0000:80: resource 4 [io  0xa000-0xffff]
[    2.307214] pci_bus 0000:80: resource 5 [mem 0xe8000000-0xfbffffff]
[    2.307783] pci_bus 0000:80: resource 6 [mem 0x381000000000-0x381fffffffff]
[    2.308364] pci_bus 0000:86: resource 1 [mem 0xfbe00000-0xfbefffff]
[    2.311980] pci_bus 0000:86: resource 2 [mem 0x381e00000000-0x381fffffffff 64bit pref]
[    2.313131] NET: Registered protocol family 2
[    2.314114] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    2.316930] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    2.319110] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    2.322732] TCP: Hash tables configured (established 524288 bind 65536)
[    2.323398] TCP reno registered
[    2.323770] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[    2.324620] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[    2.326012] NET: Registered protocol family 1
[    2.326502] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.345994] pci 0000:00:1a.0: PCI INT A disabled
[    2.346504] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    2.367543] pci 0000:00:1d.0: PCI INT A disabled
[    2.393463] pci 0000:0a:00.0: Boot video device
[    2.394713] PCI: CLS 64 bytes, default 64
[    2.395157] Unpacking initramfs...
[    2.528157] Freeing initrd memory: 8280k freed
[    2.529962] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.532134] Placing 64MB software IO TLB between ffff880089f5c000 - ffff88008df5c000
[    2.532847] software IO TLB at phys 0x89f5c000 - 0x8df5c000
[    2.536552] futex hash table entries: 8192 (order: 8, 1048576 bytes)
[    2.537349] Initialise module verification
[    2.538030] audit: initializing netlink socket (disabled)
[    2.538581] type=2000 audit(1478097533.852:1): initialized
[    2.564603] bounce pool size: 64 pages
[    2.565023] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.572271] VFS: Disk quotas dquot_6.5.2
[    2.572804] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.573696] msgmni has been set to 32196
[    2.574506] alg: No test for stdrng (krng)
[    2.574928] Asymmetric key parser 'x509' registered
[    2.575478] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.576292] io scheduler noop registered
[    2.576703] io scheduler deadline registered
[    2.577244] io scheduler cfq registered (default)
[    2.578154] pcieport 0000:00:01.0: setting latency timer to 64
[    2.578838] pcieport 0000:00:01.0: irq 90 for MSI/MSI-X
[    2.582245] pcieport 0000:00:01.1: setting latency timer to 64
[    2.582878] pcieport 0000:00:01.1: irq 91 for MSI/MSI-X
[    2.583475] pcieport 0000:00:02.0: setting latency timer to 64
[    2.584084] pcieport 0000:00:02.0: irq 92 for MSI/MSI-X
[    2.584679] pcieport 0000:00:02.2: setting latency timer to 64
[    2.585271] pcieport 0000:00:02.2: irq 93 for MSI/MSI-X
[    2.585863] pcieport 0000:00:03.0: setting latency timer to 64
[    2.586451] pcieport 0000:00:03.0: irq 94 for MSI/MSI-X
[    2.587042] pcieport 0000:00:11.0: setting latency timer to 64
[    2.587659] pcieport 0000:00:11.0: irq 95 for MSI/MSI-X
[    2.588265] pcieport 0000:00:1c.0: setting latency timer to 64
[    2.588928] pcieport 0000:00:1c.0: irq 96 for MSI/MSI-X
[    2.592327] pcieport 0000:00:1c.4: setting latency timer to 64
[    2.592945] pcieport 0000:00:1c.4: irq 97 for MSI/MSI-X
[    2.593583] pcieport 0000:80:00.0: setting latency timer to 64
[    2.594225] pcieport 0000:80:00.0: irq 98 for MSI/MSI-X
[    2.594837] pcieport 0000:80:01.0: setting latency timer to 64
[    2.595453] pcieport 0000:80:01.0: irq 99 for MSI/MSI-X
[    2.596050] pcieport 0000:80:01.1: setting latency timer to 64
[    2.596661] pcieport 0000:80:01.1: irq 100 for MSI/MSI-X
[    2.597262] pcieport 0000:80:02.0: setting latency timer to 64
[    2.597871] pcieport 0000:80:02.0: irq 101 for MSI/MSI-X
[    2.598478] pcieport 0000:80:02.2: setting latency timer to 64
[    2.599152] pcieport 0000:80:02.2: irq 102 for MSI/MSI-X
[    2.602659] pcieport 0000:80:03.0: setting latency timer to 64
[    2.603329] pcieport 0000:80:03.0: irq 103 for MSI/MSI-X
[    2.603971] aer 0000:00:01.0:pcie02: service driver aer loaded
[    2.604592] aer 0000:00:01.1:pcie02: service driver aer loaded
[    2.605195] aer 0000:00:02.0:pcie02: service driver aer loaded
[    2.605661] aer 0000:00:02.2:pcie02: service driver aer loaded
[    2.606148] aer 0000:00:03.0:pcie02: service driver aer loaded
[    2.606728] aer 0000:00:11.0:pcie02: service driver aer loaded
[    2.607332] aer 0000:80:00.0:pcie02: service driver aer loaded
[    2.607965] aer 0000:80:01.0:pcie02: service driver aer loaded
[    2.608577] aer 0000:80:01.1:pcie02: service driver aer loaded
[    2.612144] aer 0000:80:02.0:pcie02: service driver aer loaded
[    2.612762] aer 0000:80:02.2:pcie02: service driver aer loaded
[    2.613367] aer 0000:80:03.0:pcie02: service driver aer loaded
[    2.613956] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    2.614603] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    2.615222] pcieport 0000:00:01.1: Signaling PME through PCIe PME interrupt
[    2.615819] pcie_pme 0000:00:01.1:pcie01: service driver pcie_pme loaded
[    2.616462] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    2.617143] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    2.617767] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    2.618388] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    2.622807] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    2.623514] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    2.624273] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    2.625048] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    2.625687] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    2.626292] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    2.626846] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    2.627471] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    2.628120] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[    2.628775] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    2.632761] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    2.633348] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    2.633971] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    2.634628] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    2.635269] pcieport 0000:80:00.0: Signaling PME through PCIe PME interrupt
[    2.635893] pcie_pme 0000:80:00.0:pcie01: service driver pcie_pme loaded
[    2.636477] pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
[    2.637124] pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
[    2.637791] pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
[    2.638436] pcie_pme 0000:80:01.1:pcie01: service driver pcie_pme loaded
[    2.644404] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[    2.645001] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
[    2.645649] pcieport 0000:80:02.2: Signaling PME through PCIe PME interrupt
[    2.646319] pcie_pme 0000:80:02.2:pcie01: service driver pcie_pme loaded
[    2.646958] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[    2.647583] pci 0000:86:00.0: Signaling PME through PCIe PME interrupt
[    2.648139] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
[    2.651894] intel_idle: MWAIT substates: 0x1120
[    2.652363] intel_idle: v0.4 model 0x3E
[    2.652738] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.653521] ERST pstore disabled, enforce via pstore.backend=erst
[    2.654116] ERST: Could not register with persistent store
[    2.654681] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.655538] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.656224] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    2.690577] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[    2.998416] serial 00:04: unable to assign resources
[    2.999020] serial: probe of 00:04 failed with error -16
[    3.003072] Non-volatile memory driver v1.3
[    3.003505] Linux agpgart interface v0.103
[    3.004090] Fixed MDIO Bus: probed
[    3.004507] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    3.557369] Refined TSC clocksource calibration: 2299.999 MHz.
[    3.557994] Switching to clocksource tsc
[    4.033466] i8042: No controller found
[    4.033942] mousedev: PS/2 mouse device common for all mice
[    4.035302] cpuidle: using governor ladder
[    4.036745] cpuidle: using governor menu
[    4.037147] EFI Variables Facility v0.08 2004-May-17
[    4.037915] TCP cubic registered
[    4.038295] Registering the dns_resolver key type
[    4.041321] Loading module verification certificates
[    4.041848] MODSIGN: Loaded cert 'SUSE Linux Enterprise Secure Boot Signkey: 3fb077b6cebc6ff2522e1c148c57c777c788e3e7'
[    4.042796] MODSIGN: Loaded cert 'SUSE Linux Enterprise Secure Boot Signkey: 3fb077b6cebc6ff2522e1c148c57c777c788e3e7'
[    4.043684] PM: Checking hibernation image partition /dev/disk/by-id/ata-WDC_WD5000BHTZ-04JCPV1_WD-WXA1E54KKR60-part1
[    4.044595] PM: Hibernation image not present or could not be loaded.
[    4.045170] registered taskstats version 1
[    4.049447]   Magic number: 8:246:636
[    4.052400] Freeing unused kernel memory: 1360k freed
[    4.053515] Write protecting the kernel read-only data: 10240k
[    4.058096] Freeing unused kernel memory: 1568k freed
[    4.061622] Freeing unused kernel memory: 916k freed
[    4.110560] SCSI subsystem initialized
[    4.112493] libata version 3.00 loaded.
[    4.113645] ahci 0000:00:1f.2: version 3.0
[    4.114066] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    4.114990] ahci 0000:00:1f.2: irq 104 for MSI/MSI-X
[    4.115468] ahci 0000:00:1f.2: forcing PORTS_IMPL to 0x3f
[    4.116059] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    4.116870] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    4.117615] ahci 0000:00:1f.2: setting latency timer to 64
[    4.121441] scsi0 : ahci
[    4.121863] scsi1 : ahci
[    4.122177] scsi2 : ahci
[    4.122506] scsi3 : ahci
[    4.122835] scsi4 : ahci
[    4.123181] scsi5 : ahci
[    4.123564] ata2: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00100 irq 104
[    4.124279] ata3: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00180 irq 104
[    4.124918] ata4: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00200 irq 104
[    4.125612] ata5: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00280 irq 104
[    4.126248] ata6: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00300 irq 104
[    4.126929] ata7: SATA max UDMA/133 abar m2048@0xe7f00000 port 0xe7f00380 irq 104
[    5.152640] ata4: failed to resume link (SControl 0)
[    5.153177] ata4: SATA link down (SStatus 0 SControl 0)
[    5.153710] ata2: failed to resume link (SControl 0)
[    5.154117] ata2: SATA link down (SStatus 0 SControl 0)
[    5.154946] ata7: failed to resume link (SControl 0)
[    5.155464] ata7: SATA link down (SStatus 0 SControl 0)
[    5.156000] ata5: failed to resume link (SControl 0)
[    5.156528] ata5: SATA link down (SStatus 0 SControl 0)
[    5.157091] ata6: failed to resume link (SControl 0)
[    5.157678] ata6: SATA link down (SStatus 0 SControl 0)
[    5.160844] ata3: failed to resume link (SControl 0)
[    5.161437] ata3: SATA link down (SStatus 0 SControl 0)
[    5.167686] emc: device handler registered
[    5.176120] alua: device handler registered
[    5.181133] hp_sw: device handler registered
[    5.186060] rdac: device handler registered
[    5.189754] udev: starting version 147
[    5.204927] ACPI: acpi_idle yielding to intel_idle
[    5.215271] usbcore: registered new interface driver usbfs
[    5.215868] usbcore: registered new interface driver hub
[    5.216403] isci: Intel(R) C600 SAS Controller Driver - version 1.1.0
[    5.216438] usbcore: registered new device driver usb
[    5.220684] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    5.221502] isci 0000:06:00.0: OEM parameter table found in OROM
[    5.222042] isci 0000:06:00.0: OEM SAS parameters (version: 1.0) loaded (platform)
[    5.222768] isci 0000:06:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.223471] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.223843] isci 0000:06:00.0: setting latency timer to 64
[    5.223923] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    5.226430] scsi6 : isci
[    5.227058] isci 0000:06:00.0: irq 105 for MSI/MSI-X
[    5.227608] isci 0000:06:00.0: irq 106 for MSI/MSI-X
[    5.230737] ehci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    5.231499] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    5.232098] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    5.232621] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    5.233268] ehci_hcd 0000:00:1a.0: debug port 2
[    5.237608] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    5.240872] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xe7f02000
[    5.256579] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    5.257191] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    5.260699] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.261360] usb usb1: Product: EHCI Host Controller
[    5.261811] usb usb1: Manufacturer: Linux 3.0.101-63-default ehci_hcd
[    5.262378] usb usb1: SerialNumber: 0000:00:1a.0
[    5.262898] hub 1-0:1.0: USB hub found
[    5.263258] hub 1-0:1.0: 2 ports detected
[    5.263774] ehci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    5.264526] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    5.265130] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    5.265628] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    5.266295] ehci_hcd 0000:00:1d.0: debug port 2
[    5.270641] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    5.271331] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xe7f01000
[    5.284610] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    5.285211] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    5.285790] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.286433] usb usb2: Product: EHCI Host Controller
[    5.286876] usb usb2: Manufacturer: Linux 3.0.101-63-default ehci_hcd
[    5.287494] usb usb2: SerialNumber: 0000:00:1d.0
[    5.290927] hub 2-0:1.0: USB hub found
[    5.291290] hub 2-0:1.0: 2 ports detected
[    5.572434] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    5.704757] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    5.705417] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.706546] hub 1-1:1.0: USB hub found
[    5.707030] hub 1-1:1.0: 6 ports detected
[    5.820350] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    5.956635] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    5.957340] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    5.958182] hub 2-1:1.0: USB hub found
[    5.958784] hub 2-1:1.0: 8 ports detected
[    6.232315] usb 2-1.3: new high-speed USB device number 3 using ehci_hcd
[    6.335600] sas: phy-6:0 added to port-6:0, phy_mask:0x1 (ffffffffffffffff)
[    6.336315] sas: DOING DISCOVERY on port 0, pid:242
[    6.336962] sas: DONE DISCOVERY on port 0, pid:242, result:0
[    6.337865] sas: Enter sas_scsi_recover_host busy: 0 failed: 0
[    6.338364] sas: ata8: end_device-6:0: dev error handler
[    6.500517] ata8.00: ATA-8: WDC WD5000BHTZ-04JCPV1, 04.06A01, max UDMA/133
[    6.537399] ata8.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[    6.538529] ata8.00: configured for UDMA/133
[    6.538999] sas: --- Exit sas_scsi_recover_host: busy: 0 failed: 0 tries: 1
[    6.539102] usb 2-1.3: New USB device found, idVendor=046b, idProduct=ff01
[    6.539104] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    6.539105] usb 2-1.3: Product: Virtual Hub
[    6.539107] usb 2-1.3: Manufacturer: American Megatrends Inc.
[    6.539108] usb 2-1.3: SerialNumber: serial
[    6.539494] hub 2-1.3:1.0: USB hub found
[    6.539601] hub 2-1.3:1.0: 5 ports detected
[    6.552214] scsi 6:0:0:0: Direct-Access     ATA      WDC WD5000BHTZ-0 04.0 PQ: 0 ANSI: 5
[    6.555806] sd 6:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    6.556549] sd 6:0:0:0: [sda] 4096-byte physical blocks
[    6.560060] sd 6:0:0:0: [sda] Write Protect is off
[    6.560523] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    6.561026] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    6.573015]  sda: sda1 sda2
[    6.573564] sd 6:0:0:0: [sda] Attached SCSI disk
[    6.731729] [drm] Initialized drm 1.1.0 20060810
[    6.734054] This driver is only used in secure boot mode as default
[    6.797294] PM: Marking nosave pages: 000000000008f000 - 0000000000100000
[    6.797299] PM: Marking nosave pages: 000000008df5e000 - 0000000100000000
[    6.799032] PM: Basic memory bitmaps created
[    6.799991] PM: Basic memory bitmaps freed
[    6.809425] PM: Starting manual resume from disk
[    6.809906] PM: Hibernation image partition 8:1 present
[    6.810454] PM: Looking for hibernation image.
[    6.810997] PM: Image not found (code -22)
[    6.811480] PM: Hibernation image not present or could not be loaded.
[    6.871946] usb 2-1.3.1: new low-speed USB device number 4 using ehci_hcd
[    7.005505] kjournald starting.  Commit interval 15 seconds
[    7.005744] EXT3-fs (sda2): using internal journal
[    7.005749] EXT3-fs (sda2): mounted filesystem with ordered data mode
[    7.036869] usb 2-1.3.1: New USB device found, idVendor=046b, idProduct=ff10
[    7.040049] usb 2-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.040761] usb 2-1.3.1: Product: Virtual Keyboard and Mouse
[    7.041589] usb 2-1.3.1: Manufacturer: American Megatrends Inc.
[    7.097168] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.0/input/input0
[    7.100970] generic-usb 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input0
[    7.102942] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.1/input/input1
[    7.104238] generic-usb 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1d.0-1.3.1/input1
[    7.105445] usbcore: registered new interface driver usbhid
[    7.105965] usbhid: USB HID core driver
[    7.171828] usb 2-1.3.2: new high-speed USB device number 5 using ehci_hcd
[    7.336470] usb 2-1.3.2: New USB device found, idVendor=046b, idProduct=ff20
[    7.337436] usb 2-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.338153] usb 2-1.3.2: Product: Virtual Cdrom Device
[    7.338991] usb 2-1.3.2: Manufacturer: American Megatrends Inc.
[    7.339570] usb 2-1.3.2: SerialNumber: AAAABBBBCCCC1
[    7.463683] usb 2-1.3.3: new high-speed USB device number 6 using ehci_hcd
[    7.628318] usb 2-1.3.3: New USB device found, idVendor=046b, idProduct=ff40
[    7.629014] usb 2-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.629680] usb 2-1.3.3: Product: Virtual Floppy Device
[    7.630493] usb 2-1.3.3: Manufacturer: American Megatrends Inc.
[    7.631035] usb 2-1.3.3: SerialNumber: AAAABBBBCCCC2
[    7.759537] usb 2-1.3.4: new high-speed USB device number 7 using ehci_hcd
[    7.916428] usb 2-1.3.4: New USB device found, idVendor=046b, idProduct=ff31
[    7.917128] usb 2-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.917772] usb 2-1.3.4: Product: Virtual HardDisk Device
[    7.918573] usb 2-1.3.4: Manufacturer: American Megatrends Inc.
[    7.919094] usb 2-1.3.4: SerialNumber: AAAABBBBCCCC3
[    8.326335] udev: starting version 147
[    8.351488] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    8.353093] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    8.381809] iTCO_vendor_support: vendor-support=0
[    8.387380] wmi: Mapper loaded
[    8.388194] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
[    8.388814] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    8.390393] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    8.391287] ACPI: Power Button [PWRB]
[    8.391683] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    8.392419] ACPI: Power Button [PWRF]
[    8.393485] pps_core: LinuxPPS API ver. 1 registered
[    8.393965] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    8.395508] PTP clock support registered
[    8.400644] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    8.414053] rtc_cmos 00:06: RTC can wake from S4
[    8.414669] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    8.415317] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    8.433765] mei 0000:00:16.0: Device doesn't have valid ME Interface
[    8.434404] mei 0000:00:16.0: initialization failed.
[    8.436375] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    8.444020] dca service started, version 1.12.1
[    8.463197] sd 6:0:0:0: Attached scsi generic sg0 type 0
[    8.463824] Initializing USB Mass Storage driver...
[    8.464505] scsi7 : usb-storage 2-1.3.2:1.0
[    8.465001] usb-storage 2-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    8.465656] scsi8 : usb-storage 2-1.3.3:1.0
[    8.466179] scsi9 : usb-storage 2-1.3.4:1.0
[    8.469412] usbcore: registered new interface driver usb-storage
[    8.469997] USB Mass Storage support registered.
[    8.475917] ipmi message handler version 39.2
[    8.484874] IPMI System Interface driver.
[    8.485318] ipmi_si: probing via ACPI
[    8.485704] ipmi_si 00:0a: [io  0x0ca2] regsize 1 spacing 1 irq 0
[    8.491942] ipmi_si: Adding ACPI-specified kcs state machine
[    8.493003] ipmi_si: probing via SMBIOS
[    8.493863] ipmi_si: SMBIOS: mem 0x0 regsize 1 spacing 1 irq 0
[    8.495251] ipmi_si: Adding SMBIOS-specified kcs state machine
[    8.498946] ipmi_si: probing via SPMI
[    8.499292] ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
[    8.499774] ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
[    8.500529] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
[    8.501410] mlx4_core: Mellanox ConnectX core driver v2.2-1 (Feb, 2014)
[    8.501986] mlx4_core: Initializing 0000:03:00.0
[    8.502405] mlx4_core 0000:03:00.0: PCI INT A -> GSI 32 (level, low) -> IRQ 32
[    8.503141] mlx4_core 0000:03:00.0: setting latency timer to 64
[    8.503963] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.2.15-k
[    8.504655] igb: Copyright (c) 2007-2014 Intel Corporation.
[    8.505150] igb 0000:07:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    8.505653] igb 0000:07:00.0: setting latency timer to 64
[    8.528455] NET: Registered protocol family 10
[    8.699094] ipmi_si 00:0a: Found new BMC (man_id: 0x002383, prod_id: 0x0751, dev_id: 0x20)
[    8.701314] ipmi_si 00:0a: IPMI kcs interface initialized
[    8.814935] igb 0000:07:00.0: irq 107 for MSI/MSI-X
[    8.815448] igb 0000:07:00.0: irq 108 for MSI/MSI-X
[    8.816294] igb 0000:07:00.0: irq 109 for MSI/MSI-X
[    8.816784] igb 0000:07:00.0: irq 110 for MSI/MSI-X
[    8.817462] igb 0000:07:00.0: irq 111 for MSI/MSI-X
[    8.817969] igb 0000:07:00.0: irq 112 for MSI/MSI-X
[    8.818487] igb 0000:07:00.0: irq 113 for MSI/MSI-X
[    8.819027] igb 0000:07:00.0: irq 114 for MSI/MSI-X
[    8.819491] igb 0000:07:00.0: irq 115 for MSI/MSI-X
[    8.856015] igb 0000:07:00.0: added PHC on eth0
[    8.856470] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    8.857156] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) d4:3d:7e:72:26:b5
[    8.857937] igb 0000:07:00.0: eth0: PBA No: 106100-000
[    8.858419] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    9.494587] scsi 7:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[    9.496254] scsi 7:0:0:0: Attached scsi generic sg1 type 5
[    9.497172] scsi 8:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[    9.498145] sd 8:0:0:0: Attached scsi generic sg2 type 0
[    9.498780] scsi 9:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[    9.499669] sd 9:0:0:0: Attached scsi generic sg3 type 0
[    9.502285] sd 8:0:0:0: [sdb] Attached SCSI removable disk
[    9.503414] sd 9:0:0:0: [sdc] Attached SCSI removable disk
[    9.645767] sr0: scsi-1 drive
[    9.646147] cdrom: Uniform CD-ROM driver Revision: 3.20
[    9.646745] sr 7:0:0:0: Attached scsi CD-ROM sr0
[   13.867461] mlx4_core 0000:03:00.0: 64B EQEs/CQEs supported by the device but not enabled
[   13.868263] mlx4_core 0000:03:00.0: Disabling EQE/CQE stride per user request
[   14.445570] mlx4_core 0000:03:00.0: PCIe link speed is 8.0GT/s, device supports 8.0GT/s
[   14.446349] mlx4_core 0000:03:00.0: PCIe link width is x8, device supports x8
[   14.447468] mlx4_core 0000:03:00.0: irq 116 for MSI/MSI-X
[   14.448016] mlx4_core 0000:03:00.0: irq 117 for MSI/MSI-X
[   14.448531] mlx4_core 0000:03:00.0: irq 118 for MSI/MSI-X
[   14.449074] mlx4_core 0000:03:00.0: irq 119 for MSI/MSI-X
[   14.449620] mlx4_core 0000:03:00.0: irq 120 for MSI/MSI-X
[   14.450173] mlx4_core 0000:03:00.0: irq 121 for MSI/MSI-X
[   14.450731] mlx4_core 0000:03:00.0: irq 122 for MSI/MSI-X
[   14.451298] mlx4_core 0000:03:00.0: irq 123 for MSI/MSI-X
[   14.451867] mlx4_core 0000:03:00.0: irq 124 for MSI/MSI-X
[   14.452446] mlx4_core 0000:03:00.0: irq 125 for MSI/MSI-X
[   14.453017] mlx4_core 0000:03:00.0: irq 126 for MSI/MSI-X
[   14.456243] mlx4_core 0000:03:00.0: irq 127 for MSI/MSI-X
[   14.456710] mlx4_core 0000:03:00.0: irq 128 for MSI/MSI-X
[   14.457180] mlx4_core 0000:03:00.0: irq 129 for MSI/MSI-X
[   14.457652] mlx4_core 0000:03:00.0: irq 130 for MSI/MSI-X
[   14.458132] mlx4_core 0000:03:00.0: irq 131 for MSI/MSI-X
[   14.458616] mlx4_core 0000:03:00.0: irq 132 for MSI/MSI-X
[   14.459107] mlx4_core 0000:03:00.0: irq 133 for MSI/MSI-X
[   14.459608] mlx4_core 0000:03:00.0: irq 134 for MSI/MSI-X
[   14.460115] mlx4_core 0000:03:00.0: irq 135 for MSI/MSI-X
[   14.460618] mlx4_core 0000:03:00.0: irq 136 for MSI/MSI-X
[   14.461133] mlx4_core 0000:03:00.0: irq 137 for MSI/MSI-X
[   14.461653] mlx4_core 0000:03:00.0: irq 138 for MSI/MSI-X
[   14.462178] mlx4_core 0000:03:00.0: irq 139 for MSI/MSI-X
[   14.462714] mlx4_core 0000:03:00.0: irq 140 for MSI/MSI-X
[   14.466253] mlx4_core 0000:03:00.0: irq 141 for MSI/MSI-X
[   14.466820] mlx4_core 0000:03:00.0: irq 142 for MSI/MSI-X
[   14.467385] mlx4_core 0000:03:00.0: irq 143 for MSI/MSI-X
[   14.467954] mlx4_core 0000:03:00.0: irq 144 for MSI/MSI-X
[   14.468530] mlx4_core 0000:03:00.0: irq 145 for MSI/MSI-X
[   14.469107] mlx4_core 0000:03:00.0: irq 146 for MSI/MSI-X
[   14.469693] mlx4_core 0000:03:00.0: irq 147 for MSI/MSI-X
[   14.470218] mlx4_core 0000:03:00.0: irq 148 for MSI/MSI-X
[   14.470640] mlx4_core 0000:03:00.0: irq 149 for MSI/MSI-X
[   14.471104] mlx4_core 0000:03:00.0: irq 150 for MSI/MSI-X
[   14.471572] mlx4_core 0000:03:00.0: irq 151 for MSI/MSI-X
[   14.472063] mlx4_core 0000:03:00.0: irq 152 for MSI/MSI-X
[   14.472537] mlx4_core 0000:03:00.0: irq 153 for MSI/MSI-X
[   14.642750] <mlx4_ib> mlx4_ib_add: mlx4_ib: Mellanox ConnectX InfiniBand driver v2.2-1 (Feb 2014)
[   14.670069] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k 
[   15.370954] device-mapper: uevent: version 1.0.3
[   15.371530] device-mapper: ioctl: 4.25.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[   15.629070] loop: module loaded
[   16.550221] fuse init (API version 7.16)
[   17.829787] type=1400 audit(1478097549.149:2): apparmor="STATUS" operation="profile_load" name="/bin/ping" pid=1601 comm="apparmor_parser"
[   17.853283] type=1400 audit(1478097549.173:3): apparmor="STATUS" operation="profile_load" name="/sbin/klogd" pid=1606 comm="apparmor_parser"
[   17.905494] type=1400 audit(1478097549.225:4): apparmor="STATUS" operation="profile_load" name="/sbin/syslog-ng" pid=1610 comm="apparmor_parser"
[   17.954340] type=1400 audit(1478097549.277:5): apparmor="STATUS" operation="profile_load" name="/sbin/syslogd" pid=1614 comm="apparmor_parser"
[   17.974542] type=1400 audit(1478097549.297:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/PolicyKit/polkit-explicit-grant-helper" pid=1619 comm="apparmor_parser"
[   18.024742] type=1400 audit(1478097549.345:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/PolicyKit/polkit-grant-helper" pid=1623 comm="apparmor_parser"
[   18.073219] type=1400 audit(1478097549.393:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/PolicyKit/polkit-grant-helper-pam" pid=1627 comm="apparmor_parser"
[   18.122351] type=1400 audit(1478097549.445:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/PolicyKit/polkit-read-auth-helper" pid=1631 comm="apparmor_parser"
[   18.141772] type=1400 audit(1478097549.461:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/PolicyKit/polkit-resolve-exe-helper" pid=1635 comm="apparmor_parser"
[   18.167329] type=1400 audit(1478097549.489:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/PolicyKit/polkit-revoke-helper" pid=1639 comm="apparmor_parser"
[   22.823498] NET: Registered protocol family 17
[   22.911086] igb 0000:07:00.0: eth0: igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   22.912391] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   22.913921] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.711382] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found
[   33.430767] eth0: no IPv6 routers present

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-02 15:29                                   ` Nathan Zimmer
@ 2016-11-04  0:25                                     ` Peter Hurley
  2016-11-04 21:33                                       ` Nathan Zimmer
  0 siblings, 1 reply; 29+ messages in thread
From: Peter Hurley @ 2016-11-04  0:25 UTC (permalink / raw)
  To: Nathan Zimmer
  Cc: Sean Young, Linux kernel mailing list, linux-serial,
	Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki

On Wed, Nov 2, 2016 at 9:29 AM, Nathan Zimmer <nzimmer@sgi.com> wrote:
> On Mon, Oct 31, 2016 at 08:55:49PM -0600, Peter Hurley wrote:
>> On Mon, Oct 31, 2016 at 2:27 PM, Sean Young <sean@mess.org> wrote:
>> > On Sun, Oct 30, 2016 at 10:33:02AM -0500, Nathan wrote:
>> >> I think this should be PNP0501 instead of PNP0c02.
>> >> Once I alter that then when I boot the serial comes up on irq 3. However it
>> >> still hangs.
>> >> I'll keep digging.
>> >
>> > Well that's that theory out of the window. I'm not sure where to look now,
>> > I would start by enabling as many as possible of the "kernel hacking" config
>> > options and see if anything gets caught.
>> >
>> > Looking at your earlier messages, you have a collection of percpu allocation
>> > failures. That might be worth resolving before anything else.
>>
>> Hi Nathan,
>>
>> Couple of questions:
>> 1. Was login over serial console setup and working on SLES 11?  or was
>> the 'console=ttyS1' only for debug output?
>> I ask because console output doesn't use IRQs; iow, maybe the serial
>> port w/ driver never actually worked.
>> 2. Can you post dmesg for the SLES 11 setup?  That would show if there
>> were probe errors even on that.
>>
>> An alternative that should be equivalent to your previous setup is to
>> build w/ CONFIG_SERIAL_8250_PNP=n
>> Seems like your ACPI BIOS is buggy, but also that something else is using IRQ 3?
>>
>> Regards,
>> Peter Hurley
>
>
>
> 1) Yes I can confirm I used it to login sometimes.
>
> I built with CONFIG_SERIAL_8250_PNP=n and that seemed to work better, in that the system did not hang.
> However I couldn't login on the serial and got these error messages, I suspect I broke something while trying different permutations.
>
> gdm[5206]: WARNING: GdmDisplay: display lasted 0.136636 seconds
> gdm[5206]: WARNING: GdmDisplay: display lasted 0.180955 seconds
> gdm[5206]: WARNING: GdmDisplay: display lasted 0.161415 seconds
> gdm[5206]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors
>
> It did boot all the way though.
>
> 2) attached log

So I'm confused where this leaves us.

In your OP, you claim to have gotten it working with a partial revert
of commit 835d844d1a28 (but you didn't attach the partial revert so no
one knows what you did); however, my suggestion should have been
equivalent.

Note that you have the serial port disabled in BIOS; that's why you're
getting the probe error for PNP.

Regards,
Peter Hurley

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-04  0:25                                     ` Peter Hurley
@ 2016-11-04 21:33                                       ` Nathan Zimmer
  2016-11-04 22:18                                         ` Peter Hurley
  0 siblings, 1 reply; 29+ messages in thread
From: Nathan Zimmer @ 2016-11-04 21:33 UTC (permalink / raw)
  To: Peter Hurley
  Cc: Nathan Zimmer, Sean Young, Linux kernel mailing list,
	linux-serial, Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki

On Thu, Nov 03, 2016 at 06:25:46PM -0600, Peter Hurley wrote:
> On Wed, Nov 2, 2016 at 9:29 AM, Nathan Zimmer <nzimmer@sgi.com> wrote:
> > On Mon, Oct 31, 2016 at 08:55:49PM -0600, Peter Hurley wrote:
> >> On Mon, Oct 31, 2016 at 2:27 PM, Sean Young <sean@mess.org> wrote:
> >> > On Sun, Oct 30, 2016 at 10:33:02AM -0500, Nathan wrote:
> >> >> I think this should be PNP0501 instead of PNP0c02.
> >> >> Once I alter that then when I boot the serial comes up on irq 3. However it
> >> >> still hangs.
> >> >> I'll keep digging.
> >> >
> >> > Well that's that theory out of the window. I'm not sure where to look now,
> >> > I would start by enabling as many as possible of the "kernel hacking" config
> >> > options and see if anything gets caught.
> >> >
> >> > Looking at your earlier messages, you have a collection of percpu allocation
> >> > failures. That might be worth resolving before anything else.
> >>
> >> Hi Nathan,
> >>
> >> Couple of questions:
> >> 1. Was login over serial console setup and working on SLES 11?  or was
> >> the 'console=ttyS1' only for debug output?
> >> I ask because console output doesn't use IRQs; iow, maybe the serial
> >> port w/ driver never actually worked.
> >> 2. Can you post dmesg for the SLES 11 setup?  That would show if there
> >> were probe errors even on that.
> >>
> >> An alternative that should be equivalent to your previous setup is to
> >> build w/ CONFIG_SERIAL_8250_PNP=n
> >> Seems like your ACPI BIOS is buggy, but also that something else is using IRQ 3?
> >>
> >> Regards,
> >> Peter Hurley
> >
> >
> >
> > 1) Yes I can confirm I used it to login sometimes.
> >
> > I built with CONFIG_SERIAL_8250_PNP=n and that seemed to work better, in that the system did not hang.
> > However I couldn't login on the serial and got these error messages, I suspect I broke something while trying different permutations.
> >
> > gdm[5206]: WARNING: GdmDisplay: display lasted 0.136636 seconds
> > gdm[5206]: WARNING: GdmDisplay: display lasted 0.180955 seconds
> > gdm[5206]: WARNING: GdmDisplay: display lasted 0.161415 seconds
> > gdm[5206]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors
> >
> > It did boot all the way though.
> >
> > 2) attached log
> 
> So I'm confused where this leaves us.
> 
> In your OP, you claim to have gotten it working with a partial revert
> of commit 835d844d1a28 (but you didn't attach the partial revert so no
> one knows what you did); however, my suggestion should have been
> equivalent.

I apologize, if I was unclear.  Your suggestion of CONFIG_SERIAL_8250_PNP=n did successfully boot and provide messages
across the console, and yes is basically equivelent to the revert.
Those warnings I just noticed in the dmesg and they weren't there before.

> 
> Note that you have the serial port disabled in BIOS; that's why you're
> getting the probe error for PNP.
> 
> Regards,
> Peter Hurley


Now when you say its diabled in bios, how can I be sure and double check that?
These bios screens do not have any mention of PNP settings.
I am getting output over the console (via ipmi) until the boot hangs.

Nate

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-04 21:33                                       ` Nathan Zimmer
@ 2016-11-04 22:18                                         ` Peter Hurley
  2016-11-05 23:44                                           ` Maciej W. Rozycki
  0 siblings, 1 reply; 29+ messages in thread
From: Peter Hurley @ 2016-11-04 22:18 UTC (permalink / raw)
  To: Nathan Zimmer
  Cc: Sean Young, Linux kernel mailing list, linux-serial,
	Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki

On Fri, Nov 4, 2016 at 3:33 PM, Nathan Zimmer <nzimmer@sgi.com> wrote:
> On Thu, Nov 03, 2016 at 06:25:46PM -0600, Peter Hurley wrote:
>> On Wed, Nov 2, 2016 at 9:29 AM, Nathan Zimmer <nzimmer@sgi.com> wrote:
>> > On Mon, Oct 31, 2016 at 08:55:49PM -0600, Peter Hurley wrote:
>> >> On Mon, Oct 31, 2016 at 2:27 PM, Sean Young <sean@mess.org> wrote:
>> >> > On Sun, Oct 30, 2016 at 10:33:02AM -0500, Nathan wrote:
>> >> >> I think this should be PNP0501 instead of PNP0c02.
>> >> >> Once I alter that then when I boot the serial comes up on irq 3. However it
>> >> >> still hangs.
>> >> >> I'll keep digging.
>> >> >
>> >> > Well that's that theory out of the window. I'm not sure where to look now,
>> >> > I would start by enabling as many as possible of the "kernel hacking" config
>> >> > options and see if anything gets caught.
>> >> >
>> >> > Looking at your earlier messages, you have a collection of percpu allocation
>> >> > failures. That might be worth resolving before anything else.
>> >>
>> >> Hi Nathan,
>> >>
>> >> Couple of questions:
>> >> 1. Was login over serial console setup and working on SLES 11?  or was
>> >> the 'console=ttyS1' only for debug output?
>> >> I ask because console output doesn't use IRQs; iow, maybe the serial
>> >> port w/ driver never actually worked.
>> >> 2. Can you post dmesg for the SLES 11 setup?  That would show if there
>> >> were probe errors even on that.
>> >>
>> >> An alternative that should be equivalent to your previous setup is to
>> >> build w/ CONFIG_SERIAL_8250_PNP=n
>> >> Seems like your ACPI BIOS is buggy, but also that something else is using IRQ 3?
>> >>
>> >> Regards,
>> >> Peter Hurley
>> >
>> >
>> >
>> > 1) Yes I can confirm I used it to login sometimes.
>> >
>> > I built with CONFIG_SERIAL_8250_PNP=n and that seemed to work better, in that the system did not hang.
>> > However I couldn't login on the serial and got these error messages, I suspect I broke something while trying different permutations.
>> >
>> > gdm[5206]: WARNING: GdmDisplay: display lasted 0.136636 seconds
>> > gdm[5206]: WARNING: GdmDisplay: display lasted 0.180955 seconds
>> > gdm[5206]: WARNING: GdmDisplay: display lasted 0.161415 seconds
>> > gdm[5206]: WARNING: GdmLocalDisplayFactory: maximum number of X display failures reached: check X server log for errors
>> >
>> > It did boot all the way though.
>> >
>> > 2) attached log
>>
>> So I'm confused where this leaves us.
>>
>> In your OP, you claim to have gotten it working with a partial revert
>> of commit 835d844d1a28 (but you didn't attach the partial revert so no
>> one knows what you did); however, my suggestion should have been
>> equivalent.
>
> I apologize, if I was unclear.  Your suggestion of CONFIG_SERIAL_8250_PNP=n did successfully boot and provide messages
> across the console, and yes is basically equivelent to the revert.

Ok, so the partial revert didn't get the login working then?

> Those warnings I just noticed in the dmesg and they weren't there before.
>
>>
>> Note that you have the serial port disabled in BIOS; that's why you're
>> getting the probe error for PNP.
>
> Now when you say its diabled in bios, how can I be sure and double check that?

Well, the ACPI BIOS is reporting it as disabled. Even the SLES11 log says:

[    2.136899] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (disabled)


> These bios screens do not have any mention of PNP settings.
> I am getting output over the console (via ipmi) until the boot hangs.

Yeah, probably the device actually decodes io address access anyway,
but in the disabled state probably has not routed IRQ.

I have no idea how to help you with the bios, sorry.

Regards,
Peter Hurley

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-04 22:18                                         ` Peter Hurley
@ 2016-11-05 23:44                                           ` Maciej W. Rozycki
  2016-11-07 15:40                                             ` Nathan Zimmer
  2016-11-22 15:30                                             ` Nathan Zimmer
  0 siblings, 2 replies; 29+ messages in thread
From: Maciej W. Rozycki @ 2016-11-05 23:44 UTC (permalink / raw)
  To: Peter Hurley
  Cc: Nathan Zimmer, Sean Young, Linux kernel mailing list,
	linux-serial, Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki

On Fri, 4 Nov 2016, Peter Hurley wrote:

> > These bios screens do not have any mention of PNP settings.
> > I am getting output over the console (via ipmi) until the boot hangs.
> 
> Yeah, probably the device actually decodes io address access anyway,
> but in the disabled state probably has not routed IRQ.
> 
> I have no idea how to help you with the bios, sorry.

 I'd look out for serial port, Super-I/O or COM1 port (which is how PC-DOS 
named the device some 35 years ago) settings rather than anything to do 
with PNP.  Typically you'd be able to choose from a few classic combined 
I/O space address and IRQ assignments in addition to a `Disabled' setting.

 There might be a genuine BIOS bug there as well of course as serial ports 
seem to be less used these days and the issue may have escaped validation.

  Maciej

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-05 23:44                                           ` Maciej W. Rozycki
@ 2016-11-07 15:40                                             ` Nathan Zimmer
  2016-11-22 15:30                                             ` Nathan Zimmer
  1 sibling, 0 replies; 29+ messages in thread
From: Nathan Zimmer @ 2016-11-07 15:40 UTC (permalink / raw)
  To: Maciej W. Rozycki, Peter Hurley
  Cc: Sean Young, Linux kernel mailing list, linux-serial,
	Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki



On 11/05/2016 06:44 PM, Maciej W. Rozycki wrote:
> On Fri, 4 Nov 2016, Peter Hurley wrote:
>
>>> These bios screens do not have any mention of PNP settings.
>>> I am getting output over the console (via ipmi) until the boot hangs.
>> Yeah, probably the device actually decodes io address access anyway,
>> but in the disabled state probably has not routed IRQ.
>>
>> I have no idea how to help you with the bios, sorry.
>   I'd look out for serial port, Super-I/O or COM1 port (which is how PC-DOS
> named the device some 35 years ago) settings rather than anything to do
> with PNP.  Typically you'd be able to choose from a few classic combined
> I/O space address and IRQ assignments in addition to a `Disabled' setting.
>
>   There might be a genuine BIOS bug there as well of course as serial ports
> seem to be less used these days and the issue may have escaped validation.
>
>    Maciej

Given they hid some of the setting in the bios to keep these boxes 
uniform I will have to talk with the bios guys more about that.
Last time they were certain it wasn't a big deal.

Thanks,
Nate

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

* Re: console issue since 3.6, console=ttyS1 hangs
  2016-11-05 23:44                                           ` Maciej W. Rozycki
  2016-11-07 15:40                                             ` Nathan Zimmer
@ 2016-11-22 15:30                                             ` Nathan Zimmer
  1 sibling, 0 replies; 29+ messages in thread
From: Nathan Zimmer @ 2016-11-22 15:30 UTC (permalink / raw)
  To: Maciej W. Rozycki, Peter Hurley
  Cc: Sean Young, Linux kernel mailing list, linux-serial,
	Greg Kroah-Hartman, Alan Cox, Rafael J. Wysocki



On 11/05/2016 06:44 PM, Maciej W. Rozycki wrote:
> On Fri, 4 Nov 2016, Peter Hurley wrote:
>
>>> These bios screens do not have any mention of PNP settings.
>>> I am getting output over the console (via ipmi) until the boot hangs.
>> Yeah, probably the device actually decodes io address access anyway,
>> but in the disabled state probably has not routed IRQ.
>>
>> I have no idea how to help you with the bios, sorry.
>   I'd look out for serial port, Super-I/O or COM1 port (which is how PC-DOS
> named the device some 35 years ago) settings rather than anything to do
> with PNP.  Typically you'd be able to choose from a few classic combined
> I/O space address and IRQ assignments in addition to a `Disabled' setting.
>
>   There might be a genuine BIOS bug there as well of course as serial ports
> seem to be less used these days and the issue may have escaped validation.
>
>    Maciej

After getting back to this after some other hot issues came up I am sure 
there is a bios bug, comparing acpidump of this box to other boxes 
really makes it obvious.

I found pnpacpi=off allows me to boot fine and get console traffic.
However I was hoping to find something that cast a little narrower net.


Nate

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

end of thread, other threads:[~2016-11-22 15:31 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-17 14:49 console issue since 3.6, console=ttyS1 hangs Nathan Zimmer
2016-10-17 15:19 ` Sean Young
2016-10-17 16:41   ` Nathan Zimmer
2016-10-18 16:40     ` Nathan Zimmer
2016-10-18 18:05       ` Sean Young
2016-10-18 19:29         ` Nathan Zimmer
2016-10-19  9:07           ` Sean Young
2016-10-19 22:13             ` Nathan Zimmer
2016-10-20 20:10               ` Sean Young
2016-10-21 15:55                 ` Nathan Zimmer
2016-10-24 13:52                   ` Sean Young
2016-10-24 21:49                     ` Nathan Zimmer
2016-10-25 20:41                       ` Sean Young
2016-10-26 18:16                         ` Nathan Zimmer
2016-10-27 20:19                           ` Sean Young
2016-10-28 19:42                             ` Nathan Zimmer
2016-10-29 21:16                               ` Sean Young
2016-10-30 16:01                                 ` Nathan
2016-10-28 19:55                             ` Nathan
2016-10-30 15:33                             ` Nathan
2016-10-31 20:27                               ` Sean Young
2016-11-01  2:55                                 ` Peter Hurley
2016-11-02 15:29                                   ` Nathan Zimmer
2016-11-04  0:25                                     ` Peter Hurley
2016-11-04 21:33                                       ` Nathan Zimmer
2016-11-04 22:18                                         ` Peter Hurley
2016-11-05 23:44                                           ` Maciej W. Rozycki
2016-11-07 15:40                                             ` Nathan Zimmer
2016-11-22 15:30                                             ` Nathan Zimmer

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