linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* ioatdma(Intel(R) I/OAT DMA Engine init failed)
@ 2016-05-16 10:08 Gavin Guo
  2016-05-17 10:06 ` Vinod Koul
  0 siblings, 1 reply; 10+ messages in thread
From: Gavin Guo @ 2016-05-16 10:08 UTC (permalink / raw)
  To: dmaengine, linux-kernel; +Cc: vinod.koul, dan.j.williams, dave.jiang

The following error messages can be observed on the Intel Haswell-E
chipset with v3.13 kernel. After the analysis, I found there is no
difference in the logic of these error messages in the current
upstream kernel. I also searched the git log and can't find any commit
which is fix to the error(correct me if I am wrong). The following is
the detail, and I'll really appreciate if there is any comment. :)

ioatdma 0000:00:04.0: channel error register unreachable
ioatdma 0000:00:04.0: channel enumeration error
ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
ioatdma 0000:00:04.1: channel error register unreachable
ioatdma 0000:00:04.1: channel enumeration error
ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
...
ioatdma 0000:00:04.7: channel error register unreachable
ioatdma 0000:00:04.7: channel enumeration error
ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
mei_me 0000:00:16.0: initialization failed.

There are 8 I/OAT DMA controllers on the Haswell-E chipset:
8086:2f20 ~ 8086:2f27
80:04.0 System peripheral: Intel Corporation Haswell-E DMA Channel 0 (rev 02)
80:04.1 System peripheral: Intel Corporation Haswell-E DMA Channel 1 (rev 02)
80:04.2 System peripheral: Intel Corporation Haswell-E DMA Channel 2 (rev 02)
80:04.3 System peripheral: Intel Corporation Haswell-E DMA Channel 3 (rev 02)
80:04.4 System peripheral: Intel Corporation Haswell-E DMA Channel 4 (rev 02)
80:04.5 System peripheral: Intel Corporation Haswell-E DMA Channel 5 (rev 02)
80:04.6 System peripheral: Intel Corporation Haswell-E DMA Channel 6 (rev 02)
80:04.7 System peripheral: Intel Corporation Haswell-E DMA Channel 7 (rev 02)

Analysis:
The bug happens when the driver is resetting DMA controller, this is
the sequence: The function, ioat_pci_probe, is called when the DMA
controller is detected by the PCI bus. Then,
ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
ioat3_reset_hw. The following code can be found in the ioat3_reset_hw:

drivers/dma/ioat/dma_v3.c:
        chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
        writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
...
        err = pci_read_config_dword(pdev,
IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
if (err) {
dev_err(&pdev->dev,
"channel error register unreachable\n");
return err;
}

Obviously, there are something wrong in the channel error register
reset process. Then all the way back to ioat_probe(). Because the
error happens, the dma->chancnt will be set to 0:

drivers/dma/ioat/dma.c:
        if (!dma->chancnt) {
                dev_err(dev, "channel enumeration error\n");
                goto err_setup_interrupts;
        }

Finally back to ioat_pci_probe:

drivers/dma/ioat/pci.c:
                err = ioat3_dma_probe(device, ioat_dca_enabled);
        else
                return -ENODEV;

        if (err) {
                dev_err(dev, "Intel(R) I/OAT DMA Engine init
failed\n");
                return -ENODEV;

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-16 10:08 ioatdma(Intel(R) I/OAT DMA Engine init failed) Gavin Guo
@ 2016-05-17 10:06 ` Vinod Koul
  2016-05-18 13:27   ` Gavin Guo
  0 siblings, 1 reply; 10+ messages in thread
From: Vinod Koul @ 2016-05-17 10:06 UTC (permalink / raw)
  To: Gavin Guo; +Cc: dmaengine, linux-kernel, dan.j.williams, dave.jiang

On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
> The following error messages can be observed on the Intel Haswell-E
> chipset with v3.13 kernel. After the analysis, I found there is no
> difference in the logic of these error messages in the current
> upstream kernel. I also searched the git log and can't find any commit
> which is fix to the error(correct me if I am wrong). The following is
> the detail, and I'll really appreciate if there is any comment. :)

3.13 is ancient, can you check this on latest kernel

> 
> ioatdma 0000:00:04.0: channel error register unreachable
> ioatdma 0000:00:04.0: channel enumeration error
> ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
> ioatdma 0000:00:04.1: channel error register unreachable
> ioatdma 0000:00:04.1: channel enumeration error
> ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
> ...
> ioatdma 0000:00:04.7: channel error register unreachable
> ioatdma 0000:00:04.7: channel enumeration error
> ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
> mei_me 0000:00:16.0: initialization failed.
> 
> There are 8 I/OAT DMA controllers on the Haswell-E chipset:
> 8086:2f20 ~ 8086:2f27
> 80:04.0 System peripheral: Intel Corporation Haswell-E DMA Channel 0 (rev 02)
> 80:04.1 System peripheral: Intel Corporation Haswell-E DMA Channel 1 (rev 02)
> 80:04.2 System peripheral: Intel Corporation Haswell-E DMA Channel 2 (rev 02)
> 80:04.3 System peripheral: Intel Corporation Haswell-E DMA Channel 3 (rev 02)
> 80:04.4 System peripheral: Intel Corporation Haswell-E DMA Channel 4 (rev 02)
> 80:04.5 System peripheral: Intel Corporation Haswell-E DMA Channel 5 (rev 02)
> 80:04.6 System peripheral: Intel Corporation Haswell-E DMA Channel 6 (rev 02)
> 80:04.7 System peripheral: Intel Corporation Haswell-E DMA Channel 7 (rev 02)
> 
> Analysis:
> The bug happens when the driver is resetting DMA controller, this is
> the sequence: The function, ioat_pci_probe, is called when the DMA
> controller is detected by the PCI bus. Then,
> ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
> ioat3_reset_hw. The following code can be found in the ioat3_reset_hw:
> 
> drivers/dma/ioat/dma_v3.c:
>         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
>         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
> ...
>         err = pci_read_config_dword(pdev,
> IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
> if (err) {
> dev_err(&pdev->dev,
> "channel error register unreachable\n");
> return err;
> }
> 
> Obviously, there are something wrong in the channel error register
> reset process. Then all the way back to ioat_probe(). Because the
> error happens, the dma->chancnt will be set to 0:
> 
> drivers/dma/ioat/dma.c:
>         if (!dma->chancnt) {
>                 dev_err(dev, "channel enumeration error\n");
>                 goto err_setup_interrupts;
>         }
> 
> Finally back to ioat_pci_probe:
> 
> drivers/dma/ioat/pci.c:
>                 err = ioat3_dma_probe(device, ioat_dca_enabled);
>         else
>                 return -ENODEV;
> 
>         if (err) {
>                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
> failed\n");
>                 return -ENODEV;

-- 
~Vinod

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-17 10:06 ` Vinod Koul
@ 2016-05-18 13:27   ` Gavin Guo
  2016-05-18 16:49     ` Jiang, Dave
  0 siblings, 1 reply; 10+ messages in thread
From: Gavin Guo @ 2016-05-18 13:27 UTC (permalink / raw)
  To: Vinod Koul; +Cc: dmaengine, linux-kernel, dan.j.williams, dave.jiang

On Tue, May 17, 2016 at 6:06 PM, Vinod Koul <vinod.koul@intel.com> wrote:
> On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
>> The following error messages can be observed on the Intel Haswell-E
>> chipset with v3.13 kernel. After the analysis, I found there is no
>> difference in the logic of these error messages in the current
>> upstream kernel. I also searched the git log and can't find any commit
>> which is fix to the error(correct me if I am wrong). The following is
>> the detail, and I'll really appreciate if there is any comment. :)
>
> 3.13 is ancient, can you check this on latest kernel

Thank you for the comment. It's running on the production system. However,
I'll try to figure out if it's possible to test the latest kernel.

>
>>
>> ioatdma 0000:00:04.0: channel error register unreachable
>> ioatdma 0000:00:04.0: channel enumeration error
>> ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
>> ioatdma 0000:00:04.1: channel error register unreachable
>> ioatdma 0000:00:04.1: channel enumeration error
>> ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
>> ...
>> ioatdma 0000:00:04.7: channel error register unreachable
>> ioatdma 0000:00:04.7: channel enumeration error
>> ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
>> mei_me 0000:00:16.0: initialization failed.
>>
>> There are 8 I/OAT DMA controllers on the Haswell-E chipset:
>> 8086:2f20 ~ 8086:2f27
>> 80:04.0 System peripheral: Intel Corporation Haswell-E DMA Channel 0 (rev 02)
>> 80:04.1 System peripheral: Intel Corporation Haswell-E DMA Channel 1 (rev 02)
>> 80:04.2 System peripheral: Intel Corporation Haswell-E DMA Channel 2 (rev 02)
>> 80:04.3 System peripheral: Intel Corporation Haswell-E DMA Channel 3 (rev 02)
>> 80:04.4 System peripheral: Intel Corporation Haswell-E DMA Channel 4 (rev 02)
>> 80:04.5 System peripheral: Intel Corporation Haswell-E DMA Channel 5 (rev 02)
>> 80:04.6 System peripheral: Intel Corporation Haswell-E DMA Channel 6 (rev 02)
>> 80:04.7 System peripheral: Intel Corporation Haswell-E DMA Channel 7 (rev 02)
>>
>> Analysis:
>> The bug happens when the driver is resetting DMA controller, this is
>> the sequence: The function, ioat_pci_probe, is called when the DMA
>> controller is detected by the PCI bus. Then,
>> ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
>> ioat3_reset_hw. The following code can be found in the ioat3_reset_hw:
>>
>> drivers/dma/ioat/dma_v3.c:
>>         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
>>         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
>> ...
>>         err = pci_read_config_dword(pdev,
>> IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
>> if (err) {
>> dev_err(&pdev->dev,
>> "channel error register unreachable\n");
>> return err;
>> }
>>
>> Obviously, there are something wrong in the channel error register
>> reset process. Then all the way back to ioat_probe(). Because the
>> error happens, the dma->chancnt will be set to 0:
>>
>> drivers/dma/ioat/dma.c:
>>         if (!dma->chancnt) {
>>                 dev_err(dev, "channel enumeration error\n");
>>                 goto err_setup_interrupts;
>>         }
>>
>> Finally back to ioat_pci_probe:
>>
>> drivers/dma/ioat/pci.c:
>>                 err = ioat3_dma_probe(device, ioat_dca_enabled);
>>         else
>>                 return -ENODEV;
>>
>>         if (err) {
>>                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
>> failed\n");
>>                 return -ENODEV;
>
> --
> ~Vinod

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-18 13:27   ` Gavin Guo
@ 2016-05-18 16:49     ` Jiang, Dave
  2016-05-19  3:18       ` Gavin Guo
  0 siblings, 1 reply; 10+ messages in thread
From: Jiang, Dave @ 2016-05-18 16:49 UTC (permalink / raw)
  To: Koul, Vinod, gavin.guo; +Cc: dmaengine, linux-kernel, Williams, Dan J

On Wed, 2016-05-18 at 13:27 +0000, Gavin Guo wrote:
> On Tue, May 17, 2016 at 6:06 PM, Vinod Koul <vinod.koul@intel.com>
> wrote:
> > 
> > On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
> > > 
> > > The following error messages can be observed on the Intel
> > > Haswell-E
> > > chipset with v3.13 kernel. After the analysis, I found there is
> > > no
> > > difference in the logic of these error messages in the current
> > > upstream kernel. I also searched the git log and can't find any
> > > commit
> > > which is fix to the error(correct me if I am wrong). The
> > > following is
> > > the detail, and I'll really appreciate if there is any comment.
> > > :)
> > 3.13 is ancient, can you check this on latest kernel
> Thank you for the comment. It's running on the production system.
> However,
> I'll try to figure out if it's possible to test the latest kernel.

I wonder if you don't have the extended PCI config space access enabled
in your kernel config. 

> 
> > 
> > 
> > > 
> > > 
> > > ioatdma 0000:00:04.0: channel error register unreachable
> > > ioatdma 0000:00:04.0: channel enumeration error
> > > ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
> > > ioatdma 0000:00:04.1: channel error register unreachable
> > > ioatdma 0000:00:04.1: channel enumeration error
> > > ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
> > > ...
> > > ioatdma 0000:00:04.7: channel error register unreachable
> > > ioatdma 0000:00:04.7: channel enumeration error
> > > ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
> > > mei_me 0000:00:16.0: initialization failed.
> > > 
> > > There are 8 I/OAT DMA controllers on the Haswell-E chipset:
> > > 8086:2f20 ~ 8086:2f27
> > > 80:04.0 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 0 (rev 02)
> > > 80:04.1 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 1 (rev 02)
> > > 80:04.2 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 2 (rev 02)
> > > 80:04.3 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 3 (rev 02)
> > > 80:04.4 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 4 (rev 02)
> > > 80:04.5 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 5 (rev 02)
> > > 80:04.6 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 6 (rev 02)
> > > 80:04.7 System peripheral: Intel Corporation Haswell-E DMA
> > > Channel 7 (rev 02)
> > > 
> > > Analysis:
> > > The bug happens when the driver is resetting DMA controller, this
> > > is
> > > the sequence: The function, ioat_pci_probe, is called when the
> > > DMA
> > > controller is detected by the PCI bus. Then,
> > > ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
> > > ioat3_reset_hw. The following code can be found in the
> > > ioat3_reset_hw:
> > > 
> > > drivers/dma/ioat/dma_v3.c:
> > >         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
> > >         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
> > > ...
> > >         err = pci_read_config_dword(pdev,
> > > IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
> > > if (err) {
> > > dev_err(&pdev->dev,
> > > "channel error register unreachable\n");
> > > return err;
> > > }
> > > 
> > > Obviously, there are something wrong in the channel error
> > > register
> > > reset process. Then all the way back to ioat_probe(). Because the
> > > error happens, the dma->chancnt will be set to 0:
> > > 
> > > drivers/dma/ioat/dma.c:
> > >         if (!dma->chancnt) {
> > >                 dev_err(dev, "channel enumeration error\n");
> > >                 goto err_setup_interrupts;
> > >         }
> > > 
> > > Finally back to ioat_pci_probe:
> > > 
> > > drivers/dma/ioat/pci.c:
> > >                 err = ioat3_dma_probe(device, ioat_dca_enabled);
> > >         else
> > >                 return -ENODEV;
> > > 
> > >         if (err) {
> > >                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
> > > failed\n");
> > >                 return -ENODEV;
> > --
> > ~Vinod

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-18 16:49     ` Jiang, Dave
@ 2016-05-19  3:18       ` Gavin Guo
  2016-05-19 14:49         ` Jiang, Dave
  0 siblings, 1 reply; 10+ messages in thread
From: Gavin Guo @ 2016-05-19  3:18 UTC (permalink / raw)
  To: Jiang, Dave; +Cc: Koul, Vinod, dmaengine, linux-kernel, Williams, Dan J

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

On Thu, May 19, 2016 at 12:49 AM, Jiang, Dave <dave.jiang@intel.com> wrote:
> On Wed, 2016-05-18 at 13:27 +0000, Gavin Guo wrote:
>> On Tue, May 17, 2016 at 6:06 PM, Vinod Koul <vinod.koul@intel.com>
>> wrote:
>> >
>> > On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
>> > >
>> > > The following error messages can be observed on the Intel
>> > > Haswell-E
>> > > chipset with v3.13 kernel. After the analysis, I found there is
>> > > no
>> > > difference in the logic of these error messages in the current
>> > > upstream kernel. I also searched the git log and can't find any
>> > > commit
>> > > which is fix to the error(correct me if I am wrong). The
>> > > following is
>> > > the detail, and I'll really appreciate if there is any comment.
>> > > :)
>> > 3.13 is ancient, can you check this on latest kernel
>> Thank you for the comment. It's running on the production system.
>> However,
>> I'll try to figure out if it's possible to test the latest kernel.
>
> I wonder if you don't have the extended PCI config space access enabled
> in your kernel config.

Really thanks for your advice. :)

I searched the internet about the extended PCI config space and found
the link:

[Patch v2] Make PCI extended config space (MMCONFIG) a driver opt-in
http://lwn.net/Articles/263288/

And I checked the config and found the CONFIG_PCI_MMCONFIG=y. The
following string also can be observed in the dmesg:

[    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at
[mem0x80000000-0x8fffffff] (base 0x80000000)
[    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820

It seems the extended PCI config space is enabled. If there is
anything missed?

>
>>
>> >
>> >
>> > >
>> > >
>> > > ioatdma 0000:00:04.0: channel error register unreachable
>> > > ioatdma 0000:00:04.0: channel enumeration error
>> > > ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
>> > > ioatdma 0000:00:04.1: channel error register unreachable
>> > > ioatdma 0000:00:04.1: channel enumeration error
>> > > ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
>> > > ...
>> > > ioatdma 0000:00:04.7: channel error register unreachable
>> > > ioatdma 0000:00:04.7: channel enumeration error
>> > > ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
>> > > mei_me 0000:00:16.0: initialization failed.
>> > >
>> > > There are 8 I/OAT DMA controllers on the Haswell-E chipset:
>> > > 8086:2f20 ~ 8086:2f27
>> > > 80:04.0 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 0 (rev 02)
>> > > 80:04.1 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 1 (rev 02)
>> > > 80:04.2 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 2 (rev 02)
>> > > 80:04.3 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 3 (rev 02)
>> > > 80:04.4 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 4 (rev 02)
>> > > 80:04.5 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 5 (rev 02)
>> > > 80:04.6 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 6 (rev 02)
>> > > 80:04.7 System peripheral: Intel Corporation Haswell-E DMA
>> > > Channel 7 (rev 02)
>> > >
>> > > Analysis:
>> > > The bug happens when the driver is resetting DMA controller, this
>> > > is
>> > > the sequence: The function, ioat_pci_probe, is called when the
>> > > DMA
>> > > controller is detected by the PCI bus. Then,
>> > > ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
>> > > ioat3_reset_hw. The following code can be found in the
>> > > ioat3_reset_hw:
>> > >
>> > > drivers/dma/ioat/dma_v3.c:
>> > >         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
>> > >         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
>> > > ...
>> > >         err = pci_read_config_dword(pdev,
>> > > IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
>> > > if (err) {
>> > > dev_err(&pdev->dev,
>> > > "channel error register unreachable\n");
>> > > return err;
>> > > }
>> > >
>> > > Obviously, there are something wrong in the channel error
>> > > register
>> > > reset process. Then all the way back to ioat_probe(). Because the
>> > > error happens, the dma->chancnt will be set to 0:
>> > >
>> > > drivers/dma/ioat/dma.c:
>> > >         if (!dma->chancnt) {
>> > >                 dev_err(dev, "channel enumeration error\n");
>> > >                 goto err_setup_interrupts;
>> > >         }
>> > >
>> > > Finally back to ioat_pci_probe:
>> > >
>> > > drivers/dma/ioat/pci.c:
>> > >                 err = ioat3_dma_probe(device, ioat_dca_enabled);
>> > >         else
>> > >                 return -ENODEV;
>> > >
>> > >         if (err) {
>> > >                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
>> > > failed\n");
>> > >                 return -ENODEV;
>> > --
>> > ~Vinod

[-- Attachment #2: ioatdma_dmesg --]
[-- Type: application/octet-stream, Size: 116418 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-53-generic (buildd@akateko) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #88-Ubuntu SMP Wed May 13 18:10:29 UTC 2015 (Ubuntu 3.13.0-53.88-generic 3.13.11-ckt19)
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.13.0-53-generic root=UUID=ad445c1b-b189-4e0d-8a17-90e9404975ad ro quiet crashkernel=384M-:384M
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000003efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000003f000-0x000000000003ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000040000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007acebfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007acec000-0x000000007b2b3fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007b2b4000-0x000000007b2ddfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007b2de000-0x000000007b8d0fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007b8d1000-0x000000007bd09fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007bd0a000-0x000000007bd5cfff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007bd5d000-0x000000007bd5dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007bd5e000-0x000000007bde3fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007bde4000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000607fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by American Megatrends
[    0.000000] efi:  ACPI=0x7b2bc000  ACPI 2.0=0x7b2bc000  SMBIOS=0x7bcb2e18 
[    0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x000000000003f000) (0MB)
[    0.000000] efi: mem01: type=6, attr=0x800000000000000f, range=[0x000000000003f000-0x0000000000040000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000040000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem03: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001504000) (20MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000001504000-0x0000000002000000) (10MB)
[    0.000000] efi: mem05: type=2, attr=0xf, range=[0x0000000002000000-0x0000000003404000) (20MB)
[    0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000003404000-0x0000000035b0a000) (807MB)
[    0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000035b0a000-0x0000000036d7d000) (18MB)
[    0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000036d7d000-0x000000004a867000) (314MB)
[    0.000000] efi: mem09: type=2, attr=0xf, range=[0x000000004a867000-0x0000000067a9b000) (466MB)
[    0.000000] efi: mem10: type=4, attr=0xf, range=[0x0000000067a9b000-0x0000000067b1b000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000067b1b000-0x0000000074882000) (205MB)
[    0.000000] efi: mem12: type=1, attr=0xf, range=[0x0000000074882000-0x000000007496c000) (0MB)
[    0.000000] efi: mem13: type=4, attr=0xf, range=[0x000000007496c000-0x000000007a3f8000) (90MB)
[    0.000000] efi: mem14: type=7, attr=0xf, range=[0x000000007a3f8000-0x000000007a5c4000) (1MB)
[    0.000000] efi: mem15: type=2, attr=0xf, range=[0x000000007a5c4000-0x000000007a5ce000) (0MB)
[    0.000000] efi: mem16: type=3, attr=0xf, range=[0x000000007a5ce000-0x000000007acec000) (7MB)
[    0.000000] efi: mem17: type=0, attr=0xf, range=[0x000000007acec000-0x000000007b2b4000) (5MB)
[    0.000000] efi: mem18: type=9, attr=0xf, range=[0x000000007b2b4000-0x000000007b2de000) (0MB)
[    0.000000] efi: mem19: type=10, attr=0xf, range=[0x000000007b2de000-0x000000007b8d1000) (5MB)
[    0.000000] efi: mem20: type=6, attr=0x800000000000000f, range=[0x000000007b8d1000-0x000000007bd0a000) (4MB)
[    0.000000] efi: mem21: type=5, attr=0x800000000000000f, range=[0x000000007bd0a000-0x000000007bd5d000) (0MB)
[    0.000000] efi: mem22: type=4, attr=0xf, range=[0x000000007bd5d000-0x000000007bd5e000) (0MB)
[    0.000000] efi: mem23: type=6, attr=0x800000000000000f, range=[0x000000007bd5e000-0x000000007bde4000) (0MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x000000007bde4000-0x000000007c000000) (2MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x0000000100000000-0x0000006080000000) (391168MB)
[    0.000000] efi: mem26: type=11, attr=0x8000000000000001, range=[0x0000000080000000-0x0000000090000000) (256MB)
[    0.000000] efi: mem27: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem28: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: NEC Express5800/R120f-1M [N8100-2206Y]/MS-S0901, BIOS 5.0.4016 12/17/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x6080000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-protect
[    0.000000]   E0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000080000000 mask 3FFF80000000 uncachable
[    0.000000]   1 base 380000000000 mask 3F8000000000 uncachable
[    0.000000]   2 base 0000C5000000 mask 3FFFFF000000 write-through
[    0.000000]   3 base 0000C6000000 mask 3FFFFF800000 write-through
[    0.000000]   4 base 0000C6800000 mask 3FFFFFF00000 write-through
[    0.000000]   5 base 0000FB400000 mask 3FFFFFC00000 write-through
[    0.000000]   6 base 0000FB800000 mask 3FFFFFF00000 write-through
[    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] x2apic enabled by BIOS, switching to x2apic ops
[    0.000000] e820: last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x02fe2000, 0x02fe2fff] PGTABLE
[    0.000000] BRK [0x02fe3000, 0x02fe3fff] PGTABLE
[    0.000000] BRK [0x02fe4000, 0x02fe4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x607fe00000-0x607fffffff]
[    0.000000]  [mem 0x607fe00000-0x607fffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x607c000000-0x607fdfffff]
[    0.000000]  [mem 0x607c000000-0x607fdfffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x6000000000-0x607bffffff]
[    0.000000]  [mem 0x6000000000-0x607bffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x5000000000-0x5fffffffff]
[    0.000000]  [mem 0x5000000000-0x5fffffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x00100000-0x7acebfff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x7abfffff] page 2M
[    0.000000]  [mem 0x7ac00000-0x7acebfff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7bd5d000-0x7bd5dfff]
[    0.000000]  [mem 0x7bd5d000-0x7bd5dfff] page 4k
[    0.000000] BRK [0x02fe5000, 0x02fe5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x7bde4000-0x7bffffff]
[    0.000000]  [mem 0x7bde4000-0x7bdfffff] page 4k
[    0.000000]  [mem 0x7be00000-0x7bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x4fffffffff]
[    0.000000]  [mem 0x100000000-0x4fffffffff] page 1G
[    0.000000] RAMDISK: [mem 0x35b0a000-0x36d7cfff]
[    0.000000] ACPI: RSDP 000000007b2bc000 000024 (v02 AMI   )
[    0.000000] ACPI: XSDT 000000007b2bc088 00008C (v01 AMI    0680     01072009 AMI  00010013)
[    0.000000] ACPI: FACP 000000007b2d3250 00010C (v05 AMI    0680     01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 000000007b2bc1a0 0170A9 (v02 AMI    0680     01072009 INTL 20091013)
[    0.000000] ACPI: FACS 000000007b8cef80 000040
[    0.000000] ACPI: APIC 000000007b2d3360 000374 (v03 AMI    0680     01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 000000007b2d36d8 00009C (v01 AMI    0680     01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 000000007b2d3778 00003C (v01 AMI    0680     01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 000000007b2d37b8 000038 (v01 AMI    0680     00000001 INTL 20091013)
[    0.000000] ACPI: SLIT 000000007b2d37f0 000030 (v01 AMI    0680     00000001 INTL 20091013)
[    0.000000] ACPI: SRAT 000000007b2d3820 000E58 (v03 AMI    0680     00000001 INTL 20091013)
[    0.000000] ACPI: SSDT 000000007b2d4678 007D1F (v01 AMI       PmMgt 00000001 INTL 20120913)
[    0.000000] ACPI: BGRT 000000007b2dc398 000038 (v01 AMI    0680     01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 000000007b2dc3d0 0018E2 (v02 AMI    SpsNm    00000002 INTL 20120913)
[    0.000000] ACPI: SSDT 000000007b2ddcb8 000064 (v02 AMI    SpsNvs   00000002 INTL 20120913)
[    0.000000] ACPI: DMAR 000000007b2ddd20 000178 (v01 AMI    0680     00000001 INTL 20091013)
[    0.000000] ACPI: BERT 000000007b2dde98 000030 (v01 AMI    0680     00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Setting APIC routing to cluster x2apic.
[    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2c -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[    0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[    0.000000] SRAT: PXM 0 -> APIC 0x1d -> Node 0
[    0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x2d -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x3b -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x3d -> Node 1
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x307fffffff]
[    0.000000] SRAT: Node 1 PXM 1 [mem 0x3080000000-0x607fffffff]
[    0.000000] NUMA: Initialized distance table, cnt=2
[    0.000000] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x307fffffff] -> [mem 0x00000000-0x307fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x307fffffff]
[    0.000000]   NODE_DATA [mem 0x307fffb000-0x307fffffff]
[    0.000000] Initmem setup node 1 [mem 0x3080000000-0x607fffffff]
[    0.000000]   NODE_DATA [mem 0x607fff8000-0x607fffcfff]
[    0.000000] Reserving 384MB of memory at 464MB for crashkernel (System RAM: 393134MB)
[    0.000000]  [ffffea0000000000-ffffea00c1ffffff] PMD -> [ffff882fbfe00000-ffff88307fdfffff] on node 0
[    0.000000]  [ffffea00c2000000-ffffea0181ffffff] PMD -> [ffff885fbf600000-ffff88607f5fffff] on node 1
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x607fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0003efff]
[    0.000000]   node   0: [mem 0x00040000-0x0009ffff]
[    0.000000]   node   0: [mem 0x00100000-0x7acebfff]
[    0.000000]   node   0: [mem 0x7bd5d000-0x7bd5dfff]
[    0.000000]   node   0: [mem 0x7bde4000-0x7bffffff]
[    0.000000]   node   0: [mem 0x100000000-0x307fffffff]
[    0.000000]   node   1: [mem 0x3080000000-0x607fffffff]
[    0.000000] On node 0 totalpages: 50310823
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 23 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7805 pages used for memmap
[    0.000000]   DMA32 zone: 499465 pages, LIFO batch:31
[    0.000000]   Normal zone: 778240 pages used for memmap
[    0.000000]   Normal zone: 49807360 pages, LIFO batch:31
[    0.000000] On node 1 totalpages: 50331648
[    0.000000]   Normal zone: 786432 pages used for memmap
[    0.000000]   Normal zone: 50331648 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[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x10] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x12] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x14] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x16] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x18] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x1a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x1c] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x20] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x22] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x24] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x26] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x28] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x2a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x2c] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0x30] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0x32] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0x34] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0x36] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0x38] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x3a] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x3c] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x11] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x13] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x15] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x17] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x19] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x1b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x1d] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x21] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x23] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x25] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x27] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x29] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x2b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x2d] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0x31] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0x33] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0x35] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0x37] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0x39] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x3b] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x3d] 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[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[0x20] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3c] 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[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[0x21] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: IOAPIC (id[0x09] address[0xfec01000] gsi_base[24])
[    0.000000] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-47
[    0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec40000] gsi_base[48])
[    0.000000] IOAPIC[2]: apic_id 10, 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 56 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 88
[    0.000000] PM: Registered nosave memory: [mem 0x0003f000-0x0003ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7acec000-0x7b2b3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7b2b4000-0x7b2ddfff]
[    0.000000] PM: Registered nosave memory: [mem 0x7b2de000-0x7b8d0fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7b8d1000-0x7bd09fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bd0a000-0x7bd5cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bd5e000-0x7bde3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:56 nr_node_ids:2
[    0.000000] PERCPU: Embedded 27 pages/cpu @ffff882fbfa00000 s81536 r8192 d20864 u131072
[    0.000000] pcpu-alloc: s81536 r8192 d20864 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 28 29 
[    0.000000] pcpu-alloc: [0] 30 31 32 33 34 35 36 37 38 39 40 41 -- -- -- -- 
[    0.000000] pcpu-alloc: [1] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 42 43 
[    0.000000] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 52 53 54 55 -- -- -- -- 
[    0.000000] Built 2 zonelists in Zone order, mobility grouping on.  Total pages: 99069907
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.13.0-53-generic root=UUID=ad445c1b-b189-4e0d-8a17-90e9404975ad ro quiet crashkernel=384M-:384M
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 395674548K/402569884K available (7391K kernel code, 1146K rwdata, 3408K rodata, 1336K init, 1448K bss, 6895336K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=56, Nodes=2
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=56.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-55.
[    0.000000] NR_IRQS:16640 nr_irqs:1944 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 1610612736 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 2600.001 MHz processor
[    0.000020] Calibrating delay loop (skipped), value calculated using timer frequency.. 5200.00 BogoMIPS (lpj=10400004)
[    0.000022] pid_max: default: 57344 minimum: 448
[    0.000660] Security Framework initialized
[    0.000716] AppArmor: AppArmor initialized
[    0.000717] Yama: becoming mindful.
[    0.030784] Dentry cache hash table entries: 67108864 (order: 17, 536870912 bytes)
[    0.135951] Inode-cache hash table entries: 33554432 (order: 16, 268435456 bytes)
[    0.181533] Mount-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.182045] Mountpoint-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.185132] Initializing cgroup subsys memory
[    0.185151] Initializing cgroup subsys devices
[    0.185153] Initializing cgroup subsys freezer
[    0.185154] Initializing cgroup subsys blkio
[    0.185155] Initializing cgroup subsys perf_event
[    0.185167] Initializing cgroup subsys hugetlb
[    0.185203] CPU: Physical Processor ID: 0
[    0.185203] CPU: Processor Core ID: 0
[    0.186080] mce: CPU supports 22 MCE banks
[    0.186127] CPU0: Thermal monitoring enabled (TM1)
[    0.186161] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.186161] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
[    0.186161] tlb_flushall_shift: 6
[    0.186282] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
[    0.187265] ACPI: Core revision 20131115
[    0.197200] ACPI: All ACPI Tables successfully acquired
[    0.210581] ftrace: allocating 28577 entries in 112 pages
[    0.222848] dmar: Host address width 46
[    0.222850] dmar: DRHD base: 0x000000fbffc000 flags: 0x0
[    0.222858] dmar: IOMMU 0: reg_base_addr fbffc000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.222859] dmar: DRHD base: 0x000000c7ffc000 flags: 0x1
[    0.222863] dmar: IOMMU 1: reg_base_addr c7ffc000 ver 1:0 cap d2078c106f0466 ecap f020de
[    0.222865] dmar: RMRR base: 0x0000007bcc1000 end: 0x0000007bcd0fff
[    0.222866] dmar: ATSR flags: 0x0
[    0.222867] dmar: RHSA base: 0x000000c7ffc000 proximity domain: 0x0
[    0.222868] dmar: RHSA base: 0x000000fbffc000 proximity domain: 0x1
[    0.222994] IOAPIC id 10 under DRHD base  0xfbffc000 IOMMU 0
[    0.222995] IOAPIC id 8 under DRHD base  0xc7ffc000 IOMMU 1
[    0.222996] IOAPIC id 9 under DRHD base  0xc7ffc000 IOMMU 1
[    0.222997] HPET id 0 under DRHD base 0xc7ffc000
[    0.223587] Enabled IRQ remapping in x2apic mode
[    0.224292] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.263991] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v3 @ 2.60GHz (fam: 06, model: 3f, stepping: 02)
[    0.264000] TSC deadline timer enabled
[    0.264019] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
[    0.264025] ... version:                3
[    0.264026] ... bit width:              48
[    0.264027] ... generic registers:      4
[    0.264027] ... value mask:             0000ffffffffffff
[    0.264028] ... max period:             0000ffffffffffff
[    0.264029] ... fixed-purpose events:   3
[    0.264030] ... event mask:             000000070000000f
[    0.267049] x86: Booting SMP configuration:
[    0.282783] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.267050] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13
[    0.457679] .... node  #1, CPUs:   #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27
[    0.761971] .... node  #0, CPUs:   #28 #29 #30 #31 #32 #33 #34 #35 #36 #37 #38 #39 #40 #41
[    0.965995] .... node  #1, CPUs:   #42 #43 #44 #45 #46 #47 #48 #49 #50 #51 #52 #53 #54 #55
[    1.187650] x86: Booted up 2 nodes, 56 CPUs
[    1.187654] smpboot: Total of 56 processors activated (291464.40 BogoMIPS)
[    1.395933] devtmpfs: initialized
[    1.418325] EVM: security.selinux
[    1.418327] EVM: security.SMACK64
[    1.418328] EVM: security.ima
[    1.418329] EVM: security.capability
[    1.418395] PM: Registering ACPI NVS region [mem 0x7b2de000-0x7b8d0fff] (6238208 bytes)
[    1.419466] pinctrl core: initialized pinctrl subsystem
[    1.419535] regulator-dummy: no parameters
[    1.419569] RTC time: 13:24:11, date: 05/11/16
[    1.419641] NET: Registered protocol family 16
[    1.419735] cpuidle: using governor ladder
[    1.419736] cpuidle: using governor menu
[    1.419773] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    1.419774] ACPI: bus type PCI registered
[    1.419776] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
[    1.439925] PCI: Using configuration type 1 for base access
[    1.445057] bio: create slab <bio-0> at 0
[    1.445708] ACPI: Added _OSI(Module Device)
[    1.445710] ACPI: Added _OSI(Processor Device)
[    1.445711] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.445712] ACPI: Added _OSI(Processor Aggregator Device)
[    1.456165] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    1.463478] ACPI: Interpreter enabled
[    1.463484] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    1.463488] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    1.463490] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131115/hwxface-580)
[    1.463498] ACPI: (supports S0 S4 S5)
[    1.463499] ACPI: Using IOAPIC for interrupt routing
[    1.463530] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.463851] ACPI: No dock devices found.
[    1.477547] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    1.477552] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.477569] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    1.477570] acpi PNP0A03:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.477596] PCI host bridge to bus 0000:ff
[    1.477598] pci_bus 0000:ff: root bus resource [bus ff]
[    1.477608] pci 0000:ff:08.0: [8086:2f80] type 00 class 0x088000
[    1.477654] pci 0000:ff:08.2: [8086:2f32] type 00 class 0x110100
[    1.477692] pci 0000:ff:08.3: [8086:2f83] type 00 class 0x088000
[    1.477731] pci 0000:ff:09.0: [8086:2f90] type 00 class 0x088000
[    1.477768] pci 0000:ff:09.2: [8086:2f33] type 00 class 0x110100
[    1.477805] pci 0000:ff:09.3: [8086:2f93] type 00 class 0x088000
[    1.477846] pci 0000:ff:0b.0: [8086:2f81] type 00 class 0x088000
[    1.477880] pci 0000:ff:0b.1: [8086:2f36] type 00 class 0x110100
[    1.477914] pci 0000:ff:0b.2: [8086:2f37] type 00 class 0x110100
[    1.477951] pci 0000:ff:0c.0: [8086:2fe0] type 00 class 0x088000
[    1.477986] pci 0000:ff:0c.1: [8086:2fe1] type 00 class 0x088000
[    1.478020] pci 0000:ff:0c.2: [8086:2fe2] type 00 class 0x088000
[    1.478055] pci 0000:ff:0c.3: [8086:2fe3] type 00 class 0x088000
[    1.478089] pci 0000:ff:0c.4: [8086:2fe4] type 00 class 0x088000
[    1.478121] pci 0000:ff:0c.5: [8086:2fe5] type 00 class 0x088000
[    1.478155] pci 0000:ff:0c.6: [8086:2fe6] type 00 class 0x088000
[    1.478188] pci 0000:ff:0c.7: [8086:2fe7] type 00 class 0x088000
[    1.478223] pci 0000:ff:0d.0: [8086:2fe8] type 00 class 0x088000
[    1.478257] pci 0000:ff:0d.1: [8086:2fe9] type 00 class 0x088000
[    1.478292] pci 0000:ff:0d.2: [8086:2fea] type 00 class 0x088000
[    1.478329] pci 0000:ff:0d.3: [8086:2feb] type 00 class 0x088000
[    1.478361] pci 0000:ff:0d.4: [8086:2fec] type 00 class 0x088000
[    1.478394] pci 0000:ff:0d.5: [8086:2fed] type 00 class 0x088000
[    1.478430] pci 0000:ff:0f.0: [8086:2ff8] type 00 class 0x088000
[    1.478462] pci 0000:ff:0f.1: [8086:2ff9] type 00 class 0x088000
[    1.478507] pci 0000:ff:0f.2: [8086:2ffa] type 00 class 0x088000
[    1.478540] pci 0000:ff:0f.3: [8086:2ffb] type 00 class 0x088000
[    1.478574] pci 0000:ff:0f.4: [8086:2ffc] type 00 class 0x088000
[    1.478610] pci 0000:ff:0f.5: [8086:2ffd] type 00 class 0x088000
[    1.478644] pci 0000:ff:0f.6: [8086:2ffe] type 00 class 0x088000
[    1.478679] pci 0000:ff:10.0: [8086:2f1d] type 00 class 0x088000
[    1.478713] pci 0000:ff:10.1: [8086:2f34] type 00 class 0x110100
[    1.478752] pci 0000:ff:10.5: [8086:2f1e] type 00 class 0x088000
[    1.478788] pci 0000:ff:10.6: [8086:2f7d] type 00 class 0x110100
[    1.478825] pci 0000:ff:10.7: [8086:2f1f] type 00 class 0x088000
[    1.478860] pci 0000:ff:12.0: [8086:2fa0] type 00 class 0x088000
[    1.478900] pci 0000:ff:12.1: [8086:2f30] type 00 class 0x110100
[    1.478942] pci 0000:ff:12.4: [8086:2f60] type 00 class 0x088000
[    1.478992] pci 0000:ff:12.5: [8086:2f38] type 00 class 0x110100
[    1.479037] pci 0000:ff:13.0: [8086:2fa8] type 00 class 0x088000
[    1.479079] pci 0000:ff:13.1: [8086:2f71] type 00 class 0x088000
[    1.479120] pci 0000:ff:13.2: [8086:2faa] type 00 class 0x088000
[    1.479162] pci 0000:ff:13.3: [8086:2fab] type 00 class 0x088000
[    1.479205] pci 0000:ff:13.6: [8086:2fae] type 00 class 0x088000
[    1.479246] pci 0000:ff:13.7: [8086:2faf] type 00 class 0x088000
[    1.479282] pci 0000:ff:14.0: [8086:2fb0] type 00 class 0x088000
[    1.479325] pci 0000:ff:14.1: [8086:2fb1] type 00 class 0x088000
[    1.479367] pci 0000:ff:14.2: [8086:2fb2] type 00 class 0x088000
[    1.479410] pci 0000:ff:14.3: [8086:2fb3] type 00 class 0x088000
[    1.479451] pci 0000:ff:14.4: [8086:2fbc] type 00 class 0x088000
[    1.479491] pci 0000:ff:14.5: [8086:2fbd] type 00 class 0x088000
[    1.479530] pci 0000:ff:14.6: [8086:2fbe] type 00 class 0x088000
[    1.479574] pci 0000:ff:14.7: [8086:2fbf] type 00 class 0x088000
[    1.479615] pci 0000:ff:16.0: [8086:2f68] type 00 class 0x088000
[    1.479658] pci 0000:ff:16.1: [8086:2f79] type 00 class 0x088000
[    1.479702] pci 0000:ff:16.2: [8086:2f6a] type 00 class 0x088000
[    1.479745] pci 0000:ff:16.3: [8086:2f6b] type 00 class 0x088000
[    1.479786] pci 0000:ff:16.6: [8086:2f6e] type 00 class 0x088000
[    1.479825] pci 0000:ff:16.7: [8086:2f6f] type 00 class 0x088000
[    1.479865] pci 0000:ff:17.0: [8086:2fd0] type 00 class 0x088000
[    1.479913] pci 0000:ff:17.1: [8086:2fd1] type 00 class 0x088000
[    1.479956] pci 0000:ff:17.2: [8086:2fd2] type 00 class 0x088000
[    1.480000] pci 0000:ff:17.3: [8086:2fd3] type 00 class 0x088000
[    1.480044] pci 0000:ff:17.4: [8086:2fb8] type 00 class 0x088000
[    1.480084] pci 0000:ff:17.5: [8086:2fb9] type 00 class 0x088000
[    1.480124] pci 0000:ff:17.6: [8086:2fba] type 00 class 0x088000
[    1.480163] pci 0000:ff:17.7: [8086:2fbb] type 00 class 0x088000
[    1.480211] pci 0000:ff:1e.0: [8086:2f98] type 00 class 0x088000
[    1.480253] pci 0000:ff:1e.1: [8086:2f99] type 00 class 0x088000
[    1.480287] pci 0000:ff:1e.2: [8086:2f9a] type 00 class 0x088000
[    1.480327] pci 0000:ff:1e.3: [8086:2fc0] type 00 class 0x088000
[    1.480364] pci 0000:ff:1e.4: [8086:2f9c] type 00 class 0x088000
[    1.480408] pci 0000:ff:1f.0: [8086:2f88] type 00 class 0x088000
[    1.480447] pci 0000:ff:1f.2: [8086:2f8a] type 00 class 0x088000
[    1.480540] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    1.480543] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.480558] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    1.480559] acpi PNP0A03:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.480582] PCI host bridge to bus 0000:7f
[    1.480583] pci_bus 0000:7f: root bus resource [bus 7f]
[    1.480589] pci 0000:7f:08.0: [8086:2f80] type 00 class 0x088000
[    1.480624] pci 0000:7f:08.2: [8086:2f32] type 00 class 0x110100
[    1.480658] pci 0000:7f:08.3: [8086:2f83] type 00 class 0x088000
[    1.480692] pci 0000:7f:09.0: [8086:2f90] type 00 class 0x088000
[    1.480731] pci 0000:7f:09.2: [8086:2f33] type 00 class 0x110100
[    1.480763] pci 0000:7f:09.3: [8086:2f93] type 00 class 0x088000
[    1.480796] pci 0000:7f:0b.0: [8086:2f81] type 00 class 0x088000
[    1.480825] pci 0000:7f:0b.1: [8086:2f36] type 00 class 0x110100
[    1.480854] pci 0000:7f:0b.2: [8086:2f37] type 00 class 0x110100
[    1.480887] pci 0000:7f:0c.0: [8086:2fe0] type 00 class 0x088000
[    1.480921] pci 0000:7f:0c.1: [8086:2fe1] type 00 class 0x088000
[    1.480950] pci 0000:7f:0c.2: [8086:2fe2] type 00 class 0x088000
[    1.480979] pci 0000:7f:0c.3: [8086:2fe3] type 00 class 0x088000
[    1.481009] pci 0000:7f:0c.4: [8086:2fe4] type 00 class 0x088000
[    1.481039] pci 0000:7f:0c.5: [8086:2fe5] type 00 class 0x088000
[    1.481070] pci 0000:7f:0c.6: [8086:2fe6] type 00 class 0x088000
[    1.481100] pci 0000:7f:0c.7: [8086:2fe7] type 00 class 0x088000
[    1.481129] pci 0000:7f:0d.0: [8086:2fe8] type 00 class 0x088000
[    1.481159] pci 0000:7f:0d.1: [8086:2fe9] type 00 class 0x088000
[    1.481188] pci 0000:7f:0d.2: [8086:2fea] type 00 class 0x088000
[    1.481217] pci 0000:7f:0d.3: [8086:2feb] type 00 class 0x088000
[    1.481247] pci 0000:7f:0d.4: [8086:2fec] type 00 class 0x088000
[    1.481279] pci 0000:7f:0d.5: [8086:2fed] type 00 class 0x088000
[    1.481310] pci 0000:7f:0f.0: [8086:2ff8] type 00 class 0x088000
[    1.481341] pci 0000:7f:0f.1: [8086:2ff9] type 00 class 0x088000
[    1.481372] pci 0000:7f:0f.2: [8086:2ffa] type 00 class 0x088000
[    1.481404] pci 0000:7f:0f.3: [8086:2ffb] type 00 class 0x088000
[    1.481434] pci 0000:7f:0f.4: [8086:2ffc] type 00 class 0x088000
[    1.481464] pci 0000:7f:0f.5: [8086:2ffd] type 00 class 0x088000
[    1.481494] pci 0000:7f:0f.6: [8086:2ffe] type 00 class 0x088000
[    1.481523] pci 0000:7f:10.0: [8086:2f1d] type 00 class 0x088000
[    1.481555] pci 0000:7f:10.1: [8086:2f34] type 00 class 0x110100
[    1.481586] pci 0000:7f:10.5: [8086:2f1e] type 00 class 0x088000
[    1.481615] pci 0000:7f:10.6: [8086:2f7d] type 00 class 0x110100
[    1.481647] pci 0000:7f:10.7: [8086:2f1f] type 00 class 0x088000
[    1.481680] pci 0000:7f:12.0: [8086:2fa0] type 00 class 0x088000
[    1.481715] pci 0000:7f:12.1: [8086:2f30] type 00 class 0x110100
[    1.481750] pci 0000:7f:12.4: [8086:2f60] type 00 class 0x088000
[    1.481785] pci 0000:7f:12.5: [8086:2f38] type 00 class 0x110100
[    1.481821] pci 0000:7f:13.0: [8086:2fa8] type 00 class 0x088000
[    1.481855] pci 0000:7f:13.1: [8086:2f71] type 00 class 0x088000
[    1.481889] pci 0000:7f:13.2: [8086:2faa] type 00 class 0x088000
[    1.481923] pci 0000:7f:13.3: [8086:2fab] type 00 class 0x088000
[    1.481961] pci 0000:7f:13.6: [8086:2fae] type 00 class 0x088000
[    1.481994] pci 0000:7f:13.7: [8086:2faf] type 00 class 0x088000
[    1.482032] pci 0000:7f:14.0: [8086:2fb0] type 00 class 0x088000
[    1.482075] pci 0000:7f:14.1: [8086:2fb1] type 00 class 0x088000
[    1.482111] pci 0000:7f:14.2: [8086:2fb2] type 00 class 0x088000
[    1.482147] pci 0000:7f:14.3: [8086:2fb3] type 00 class 0x088000
[    1.482183] pci 0000:7f:14.4: [8086:2fbc] type 00 class 0x088000
[    1.482219] pci 0000:7f:14.5: [8086:2fbd] type 00 class 0x088000
[    1.482256] pci 0000:7f:14.6: [8086:2fbe] type 00 class 0x088000
[    1.482291] pci 0000:7f:14.7: [8086:2fbf] type 00 class 0x088000
[    1.482326] pci 0000:7f:16.0: [8086:2f68] type 00 class 0x088000
[    1.482360] pci 0000:7f:16.1: [8086:2f79] type 00 class 0x088000
[    1.482398] pci 0000:7f:16.2: [8086:2f6a] type 00 class 0x088000
[    1.482434] pci 0000:7f:16.3: [8086:2f6b] type 00 class 0x088000
[    1.482473] pci 0000:7f:16.6: [8086:2f6e] type 00 class 0x088000
[    1.482509] pci 0000:7f:16.7: [8086:2f6f] type 00 class 0x088000
[    1.482546] pci 0000:7f:17.0: [8086:2fd0] type 00 class 0x088000
[    1.482583] pci 0000:7f:17.1: [8086:2fd1] type 00 class 0x088000
[    1.482621] pci 0000:7f:17.2: [8086:2fd2] type 00 class 0x088000
[    1.482658] pci 0000:7f:17.3: [8086:2fd3] type 00 class 0x088000
[    1.482695] pci 0000:7f:17.4: [8086:2fb8] type 00 class 0x088000
[    1.482730] pci 0000:7f:17.5: [8086:2fb9] type 00 class 0x088000
[    1.482770] pci 0000:7f:17.6: [8086:2fba] type 00 class 0x088000
[    1.482804] pci 0000:7f:17.7: [8086:2fbb] type 00 class 0x088000
[    1.482847] pci 0000:7f:1e.0: [8086:2f98] type 00 class 0x088000
[    1.482881] pci 0000:7f:1e.1: [8086:2f99] type 00 class 0x088000
[    1.482914] pci 0000:7f:1e.2: [8086:2f9a] type 00 class 0x088000
[    1.482948] pci 0000:7f:1e.3: [8086:2fc0] type 00 class 0x088000
[    1.482982] pci 0000:7f:1e.4: [8086:2f9c] type 00 class 0x088000
[    1.483022] pci 0000:7f:1f.0: [8086:2f88] type 00 class 0x088000
[    1.483057] pci 0000:7f:1f.2: [8086:2f8a] type 00 class 0x088000
[    1.484242] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    1.484245] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.484693] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    1.484695] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.485354] PCI host bridge to bus 0000:00
[    1.485356] pci_bus 0000:00: root bus resource [bus 00-7e]
[    1.485357] pci_bus 0000:00: root bus resource [io  0x0000-0x03af]
[    1.485359] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
[    1.485360] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
[    1.485361] pci_bus 0000:00: root bus resource [io  0x1000-0x7fff]
[    1.485362] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    1.485363] pci_bus 0000:00: root bus resource [mem 0x90000000-0xc7ffbfff]
[    1.485370] pci 0000:00:00.0: [8086:2f00] type 00 class 0x060000
[    1.485469] pci 0000:00:01.0: [8086:2f02] type 01 class 0x060400
[    1.485505] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.485556] pci 0000:00:01.0: System wakeup disabled by ACPI
[    1.485579] pci 0000:00:02.0: [8086:2f04] type 01 class 0x060400
[    1.485614] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.485663] pci 0000:00:02.0: System wakeup disabled by ACPI
[    1.485685] pci 0000:00:02.2: [8086:2f06] type 01 class 0x060400
[    1.485720] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.485768] pci 0000:00:02.2: System wakeup disabled by ACPI
[    1.485792] pci 0000:00:03.0: [8086:2f08] type 01 class 0x060400
[    1.485827] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.485877] pci 0000:00:03.0: System wakeup disabled by ACPI
[    1.485898] pci 0000:00:03.2: [8086:2f0a] type 01 class 0x060400
[    1.485932] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    1.485981] pci 0000:00:03.2: System wakeup disabled by ACPI
[    1.486004] pci 0000:00:04.0: [8086:2f20] type 00 class 0x088000
[    1.486012] pci 0000:00:04.0: reg 0x10: [mem 0xc7e2c000-0xc7e2ffff 64bit]
[    1.486106] pci 0000:00:04.1: [8086:2f21] type 00 class 0x088000
[    1.486113] pci 0000:00:04.1: reg 0x10: [mem 0xc7e28000-0xc7e2bfff 64bit]
[    1.486208] pci 0000:00:04.2: [8086:2f22] type 00 class 0x088000
[    1.486216] pci 0000:00:04.2: reg 0x10: [mem 0xc7e24000-0xc7e27fff 64bit]
[    1.486309] pci 0000:00:04.3: [8086:2f23] type 00 class 0x088000
[    1.486316] pci 0000:00:04.3: reg 0x10: [mem 0xc7e20000-0xc7e23fff 64bit]
[    1.486409] pci 0000:00:04.4: [8086:2f24] type 00 class 0x088000
[    1.486417] pci 0000:00:04.4: reg 0x10: [mem 0xc7e1c000-0xc7e1ffff 64bit]
[    1.486509] pci 0000:00:04.5: [8086:2f25] type 00 class 0x088000
[    1.486517] pci 0000:00:04.5: reg 0x10: [mem 0xc7e18000-0xc7e1bfff 64bit]
[    1.486614] pci 0000:00:04.6: [8086:2f26] type 00 class 0x088000
[    1.486621] pci 0000:00:04.6: reg 0x10: [mem 0xc7e14000-0xc7e17fff 64bit]
[    1.486714] pci 0000:00:04.7: [8086:2f27] type 00 class 0x088000
[    1.486721] pci 0000:00:04.7: reg 0x10: [mem 0xc7e10000-0xc7e13fff 64bit]
[    1.486819] pci 0000:00:05.0: [8086:2f28] type 00 class 0x088000
[    1.486904] pci 0000:00:05.1: [8086:2f29] type 00 class 0x088000
[    1.486998] pci 0000:00:05.2: [8086:2f2a] type 00 class 0x088000
[    1.487082] pci 0000:00:05.4: [8086:2f2c] type 00 class 0x080020
[    1.487088] pci 0000:00:05.4: reg 0x10: [mem 0xc7e38000-0xc7e38fff]
[    1.487187] pci 0000:00:11.0: [8086:8d7c] type 00 class 0xff0000
[    1.487327] pci 0000:00:14.0: [8086:8d31] type 00 class 0x0c0330
[    1.487343] pci 0000:00:14.0: reg 0x10: [mem 0xc7e00000-0xc7e0ffff 64bit]
[    1.487392] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    1.487463] pci 0000:00:16.0: [8086:8d3a] type 00 class 0x078000
[    1.487481] pci 0000:00:16.0: reg 0x10: [mem 0xc7e37000-0xc7e3700f 64bit]
[    1.487538] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    1.487607] pci 0000:00:16.1: [8086:8d3b] type 00 class 0x078000
[    1.487625] pci 0000:00:16.1: reg 0x10: [mem 0xc7e36000-0xc7e3600f 64bit]
[    1.487682] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    1.487766] pci 0000:00:1a.0: [8086:8d2d] type 00 class 0x0c0320
[    1.487784] pci 0000:00:1a.0: reg 0x10: [mem 0xc7e34000-0xc7e343ff]
[    1.487867] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.487940] pci 0000:00:1c.0: [8086:8d10] type 01 class 0x060400
[    1.488000] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.488052] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    1.488082] pci 0000:00:1c.3: [8086:8d16] type 01 class 0x060400
[    1.488143] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    1.488195] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    1.488227] pci 0000:00:1d.0: [8086:8d26] type 00 class 0x0c0320
[    1.488246] pci 0000:00:1d.0: reg 0x10: [mem 0xc7e33000-0xc7e333ff]
[    1.488328] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.488406] pci 0000:00:1f.0: [8086:8d44] type 00 class 0x060100
[    1.488568] pci 0000:00:1f.2: [8086:8d02] type 00 class 0x010601
[    1.488582] pci 0000:00:1f.2: reg 0x10: [io  0x7050-0x7057]
[    1.488589] pci 0000:00:1f.2: reg 0x14: [io  0x7040-0x7043]
[    1.488595] pci 0000:00:1f.2: reg 0x18: [io  0x7030-0x7037]
[    1.488602] pci 0000:00:1f.2: reg 0x1c: [io  0x7020-0x7023]
[    1.488608] pci 0000:00:1f.2: reg 0x20: [io  0x7000-0x701f]
[    1.488615] pci 0000:00:1f.2: reg 0x24: [mem 0xc7e32000-0xc7e327ff]
[    1.488649] pci 0000:00:1f.2: PME# supported from D3hot
[    1.488715] pci 0000:00:1f.3: [8086:8d22] type 00 class 0x0c0500
[    1.488726] pci 0000:00:1f.3: reg 0x10: [mem 0xc7e31000-0xc7e310ff 64bit]
[    1.488740] pci 0000:00:1f.3: reg 0x20: [io  0x0580-0x059f]
[    1.488950] pci 0000:01:00.0: [1000:005d] type 00 class 0x010400
[    1.488957] pci 0000:01:00.0: reg 0x10: [io  0x6000-0x60ff]
[    1.488964] pci 0000:01:00.0: reg 0x14: [mem 0xc7c00000-0xc7c0ffff 64bit]
[    1.488971] pci 0000:01:00.0: reg 0x1c: [mem 0xc7b00000-0xc7bfffff 64bit]
[    1.488980] pci 0000:01:00.0: reg 0x30: [mem 0xc7a00000-0xc7afffff pref]
[    1.489014] pci 0000:01:00.0: supports D1 D2
[    1.494791] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.494796] pci 0000:00:01.0:   bridge window [io  0x6000-0x6fff]
[    1.494800] pci 0000:00:01.0:   bridge window [mem 0xc7a00000-0xc7cfffff]
[    1.495037] pci 0000:05:00.0: [8086:1528] type 00 class 0x020000
[    1.495049] pci 0000:05:00.0: reg 0x10: [mem 0xc6200000-0xc63fffff 64bit pref]
[    1.495068] pci 0000:05:00.0: reg 0x20: [mem 0xc6804000-0xc6807fff 64bit pref]
[    1.495075] pci 0000:05:00.0: reg 0x30: [mem 0xc7d80000-0xc7dfffff pref]
[    1.495107] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[    1.495132] pci 0000:05:00.0: reg 0x184: [mem 0xc6700000-0xc6703fff 64bit pref]
[    1.495143] pci 0000:05:00.0: reg 0x190: [mem 0xc6600000-0xc6603fff 64bit pref]
[    1.495200] pci 0000:05:00.1: [8086:1528] type 00 class 0x020000
[    1.495210] pci 0000:05:00.1: reg 0x10: [mem 0xc6000000-0xc61fffff 64bit pref]
[    1.495225] pci 0000:05:00.1: reg 0x20: [mem 0xc6800000-0xc6803fff 64bit pref]
[    1.495230] pci 0000:05:00.1: reg 0x30: [mem 0xc7d00000-0xc7d7ffff pref]
[    1.495261] pci 0000:05:00.1: PME# supported from D0 D3hot D3cold
[    1.495282] pci 0000:05:00.1: reg 0x184: [mem 0xc6500000-0xc6503fff 64bit pref]
[    1.495292] pci 0000:05:00.1: reg 0x190: [mem 0xc6400000-0xc6403fff 64bit pref]
[    1.502813] pci 0000:00:02.0: PCI bridge to [bus 05-06]
[    1.502816] pci 0000:00:02.0:   bridge window [mem 0xc7d00000-0xc7dfffff]
[    1.502819] pci 0000:00:02.0:   bridge window [mem 0xc6000000-0xc68fffff 64bit pref]
[    1.502954] pci 0000:00:02.2: PCI bridge to [bus 0c]
[    1.503076] pci 0000:00:03.0: PCI bridge to [bus 40]
[    1.503197] pci 0000:00:03.2: PCI bridge to [bus 41]
[    1.503240] pci 0000:00:1c.0: PCI bridge to [bus 42]
[    1.503316] pci 0000:7d:00.0: [102b:0522] type 00 class 0x030000
[    1.503338] pci 0000:7d:00.0: reg 0x10: [mem 0xc5000000-0xc5ffffff pref]
[    1.503352] pci 0000:7d:00.0: reg 0x14: [mem 0xc7910000-0xc7913fff]
[    1.503366] pci 0000:7d:00.0: reg 0x18: [mem 0xc7000000-0xc77fffff]
[    1.503419] pci 0000:7d:00.0: reg 0x30: [mem 0xc7900000-0xc790ffff pref]
[    1.510813] pci 0000:00:1c.3: PCI bridge to [bus 7d]
[    1.510821] pci 0000:00:1c.3:   bridge window [mem 0xc7000000-0xc79fffff]
[    1.510828] pci 0000:00:1c.3:   bridge window [mem 0xc5000000-0xc5ffffff 64bit pref]
[    1.510866] pci_bus 0000:00: on NUMA node 0 (pxm 0)
[    1.511664] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    1.511668] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    1.511851] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    1.511852] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.511988] PCI host bridge to bus 0000:80
[    1.511991] pci_bus 0000:80: root bus resource [bus 80-fe]
[    1.511992] pci_bus 0000:80: root bus resource [io  0x8000-0xffff]
[    1.511993] pci_bus 0000:80: root bus resource [mem 0xc8000000-0xfbffbfff]
[    1.512002] pci 0000:80:00.0: [8086:2f01] type 01 class 0x060400
[    1.512045] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    1.512079] pci 0000:80:00.0: System wakeup disabled by ACPI
[    1.512107] pci 0000:80:01.0: [8086:2f02] type 01 class 0x060400
[    1.512149] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    1.512180] pci 0000:80:01.0: System wakeup disabled by ACPI
[    1.512208] pci 0000:80:02.0: [8086:2f04] type 01 class 0x060400
[    1.512249] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    1.512281] pci 0000:80:02.0: System wakeup disabled by ACPI
[    1.512306] pci 0000:80:03.0: [8086:2f08] type 01 class 0x060400
[    1.512347] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    1.512382] pci 0000:80:03.0: System wakeup disabled by ACPI
[    1.512406] pci 0000:80:04.0: [8086:2f20] type 00 class 0x088000
[    1.512415] pci 0000:80:04.0: reg 0x10: [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    1.512500] pci 0000:80:04.1: [8086:2f21] type 00 class 0x088000
[    1.512508] pci 0000:80:04.1: reg 0x10: [mem 0xfbf18000-0xfbf1bfff 64bit]
[    1.512592] pci 0000:80:04.2: [8086:2f22] type 00 class 0x088000
[    1.512601] pci 0000:80:04.2: reg 0x10: [mem 0xfbf14000-0xfbf17fff 64bit]
[    1.512687] pci 0000:80:04.3: [8086:2f23] type 00 class 0x088000
[    1.512695] pci 0000:80:04.3: reg 0x10: [mem 0xfbf10000-0xfbf13fff 64bit]
[    1.512783] pci 0000:80:04.4: [8086:2f24] type 00 class 0x088000
[    1.512792] pci 0000:80:04.4: reg 0x10: [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    1.512884] pci 0000:80:04.5: [8086:2f25] type 00 class 0x088000
[    1.512893] pci 0000:80:04.5: reg 0x10: [mem 0xfbf08000-0xfbf0bfff 64bit]
[    1.512976] pci 0000:80:04.6: [8086:2f26] type 00 class 0x088000
[    1.512985] pci 0000:80:04.6: reg 0x10: [mem 0xfbf04000-0xfbf07fff 64bit]
[    1.513065] pci 0000:80:04.7: [8086:2f27] type 00 class 0x088000
[    1.513074] pci 0000:80:04.7: reg 0x10: [mem 0xfbf00000-0xfbf03fff 64bit]
[    1.513152] pci 0000:80:05.0: [8086:2f28] type 00 class 0x088000
[    1.513228] pci 0000:80:05.1: [8086:2f29] type 00 class 0x088000
[    1.513309] pci 0000:80:05.2: [8086:2f2a] type 00 class 0x088000
[    1.513385] pci 0000:80:05.4: [8086:2f2c] type 00 class 0x080020
[    1.513392] pci 0000:80:05.4: reg 0x10: [mem 0xfbf20000-0xfbf20fff]
[    1.513614] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.513734] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.513891] pci 0000:83:00.0: [8086:1528] type 00 class 0x020000
[    1.513902] pci 0000:83:00.0: reg 0x10: [mem 0xfb600000-0xfb7fffff 64bit pref]
[    1.513908] pci 0000:83:00.0: reg 0x18: [io  0xf020-0xf03f]
[    1.513920] pci 0000:83:00.0: reg 0x20: [mem 0xfb804000-0xfb807fff 64bit pref]
[    1.513926] pci 0000:83:00.0: reg 0x30: [mem 0xfba80000-0xfbafffff pref]
[    1.513960] pci 0000:83:00.0: PME# supported from D0 D3hot D3cold
[    1.513986] pci 0000:83:00.0: reg 0x184: [mem 0xfbe00000-0xfbe03fff 64bit]
[    1.513996] pci 0000:83:00.0: reg 0x190: [mem 0xfbd00000-0xfbd03fff 64bit]
[    1.514044] pci 0000:83:00.1: [8086:1528] type 00 class 0x020000
[    1.514055] pci 0000:83:00.1: reg 0x10: [mem 0xfb400000-0xfb5fffff 64bit pref]
[    1.514060] pci 0000:83:00.1: reg 0x18: [io  0xf000-0xf01f]
[    1.514072] pci 0000:83:00.1: reg 0x20: [mem 0xfb800000-0xfb803fff 64bit pref]
[    1.514077] pci 0000:83:00.1: reg 0x30: [mem 0xfba00000-0xfba7ffff pref]
[    1.514112] pci 0000:83:00.1: PME# supported from D0 D3hot D3cold
[    1.514134] pci 0000:83:00.1: reg 0x184: [mem 0xfbc00000-0xfbc03fff 64bit]
[    1.514144] pci 0000:83:00.1: reg 0x190: [mem 0xfbb00000-0xfbb03fff 64bit]
[    1.518814] pci 0000:80:02.0: PCI bridge to [bus 83-84]
[    1.518817] pci 0000:80:02.0:   bridge window [io  0xf000-0xffff]
[    1.518819] pci 0000:80:02.0:   bridge window [mem 0xfba00000-0xfbefffff]
[    1.518823] pci 0000:80:02.0:   bridge window [mem 0xfb400000-0xfb8fffff 64bit pref]
[    1.518957] pci 0000:80:03.0: PCI bridge to [bus c0]
[    1.518976] pci_bus 0000:80: on NUMA node 1 (pxm 1)
[    1.519334] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.519373] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.519410] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.519447] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.519483] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.519520] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.519557] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.519593] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.519736] ACPI: Enabled 1 GPEs in block 00 to 3F
[    1.519740] ACPI: \_SB_.UNC1: notify handler is installed
[    1.519742] ACPI: \_SB_.UNC0: notify handler is installed
[    1.519754] ACPI: \_SB_.PCI0: notify handler is installed
[    1.519822] ACPI: \_SB_.PCI1: notify handler is installed
[    1.519867] Found 4 acpi root devices
[    1.519997] vgaarb: device added: PCI:0000:7d:00.0,decodes=io+mem,owns=none,locks=none
[    1.520000] vgaarb: loaded
[    1.520001] vgaarb: setting as boot device: PCI:0000:7d:00.0
[    1.520002] vgaarb: bridge control possible 0000:7d:00.0
[    1.520153] SCSI subsystem initialized
[    1.520327] libata version 3.00 loaded.
[    1.520347] ACPI: bus type USB registered
[    1.520363] usbcore: registered new interface driver usbfs
[    1.520368] usbcore: registered new interface driver hub
[    1.520403] usbcore: registered new device driver usb
[    1.520764] PCI: Using ACPI for IRQ routing
[    1.524897] PCI: pci_cache_line_size set to 64 bytes
[    1.525096] e820: reserve RAM buffer [mem 0x0003f000-0x0003ffff]
[    1.525097] e820: reserve RAM buffer [mem 0x7acec000-0x7bffffff]
[    1.525099] e820: reserve RAM buffer [mem 0x7bd5e000-0x7bffffff]
[    1.525204] NetLabel: Initializing
[    1.525205] NetLabel:  domain hash size = 128
[    1.525205] NetLabel:  protocols = UNLABELED CIPSOv4
[    1.525217] NetLabel:  unlabeled traffic allowed by default
[    1.525274] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.525278] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    1.527479] Switched to clocksource hpet
[    1.533540] AppArmor: AppArmor Filesystem Enabled
[    1.533590] pnp: PnP ACPI init
[    1.533603] ACPI: bus type PNP registered
[    1.533767] pnp 00:00: Plug and Play ACPI device, IDs PNP0003 (active)
[    1.533781] pnp 00:01: [dma 4]
[    1.533799] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    1.533836] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.533862] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    1.533885] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[    1.533931] pnp 00:05: Plug and Play ACPI device, IDs PNP0103 (active)
[    1.534091] system 00:06: [io  0x0500-0x057f] has been reserved
[    1.534093] system 00:06: [io  0x0400-0x047f] could not be reserved
[    1.534095] system 00:06: [io  0x0580-0x059f] has been reserved
[    1.534096] system 00:06: [io  0x0600-0x061f] has been reserved
[    1.534097] system 00:06: [io  0x0880-0x0883] has been reserved
[    1.534099] system 00:06: [io  0x0800-0x081f] has been reserved
[    1.534102] system 00:06: [mem 0xfed1c000-0xfed3ffff] could not be reserved
[    1.534104] system 00:06: [mem 0xfed45000-0xfed8bfff] has been reserved
[    1.534105] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    1.534107] system 00:06: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.534108] system 00:06: [mem 0xfed12000-0xfed1200f] has been reserved
[    1.534109] system 00:06: [mem 0xfed12010-0xfed1201f] has been reserved
[    1.534111] system 00:06: [mem 0xfed1b000-0xfed1bfff] has been reserved
[    1.534113] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.534238] pnp 00:07: [dma 0 disabled]
[    1.534281] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[    1.534381] pnp 00:08: [dma 0 disabled]
[    1.534428] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    1.534453] pnp 00:09: Plug and Play ACPI device, IDs IPI0001 (active)
[    1.534663] pnp 00:0a: disabling [mem 0xc7800000-0xc78fffff] because it overlaps 0000:00:1c.3 BAR 14 [mem 0xc7000000-0xc79fffff]
[    1.534665] pnp 00:0a: disabling [mem 0xc7914000-0xc7914fff] because it overlaps 0000:00:1c.3 BAR 14 [mem 0xc7000000-0xc79fffff]
[    1.534707] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.535110] pnp: PnP ACPI: found 11 devices
[    1.535112] ACPI: bus type PNP unregistered
[    1.541480] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.541483] pci 0000:00:01.0:   bridge window [io  0x6000-0x6fff]
[    1.541486] pci 0000:00:01.0:   bridge window [mem 0xc7a00000-0xc7cfffff]
[    1.541491] pci 0000:00:02.0: PCI bridge to [bus 05-06]
[    1.541494] pci 0000:00:02.0:   bridge window [mem 0xc7d00000-0xc7dfffff]
[    1.541496] pci 0000:00:02.0:   bridge window [mem 0xc6000000-0xc68fffff 64bit pref]
[    1.541500] pci 0000:00:02.2: PCI bridge to [bus 0c]
[    1.541506] pci 0000:00:03.0: PCI bridge to [bus 40]
[    1.541512] pci 0000:00:03.2: PCI bridge to [bus 41]
[    1.541519] pci 0000:00:1c.0: PCI bridge to [bus 42]
[    1.541529] pci 0000:00:1c.3: PCI bridge to [bus 7d]
[    1.541532] pci 0000:00:1c.3:   bridge window [mem 0xc7000000-0xc79fffff]
[    1.541536] pci 0000:00:1c.3:   bridge window [mem 0xc5000000-0xc5ffffff 64bit pref]
[    1.541541] pci_bus 0000:00: resource 4 [io  0x0000-0x03af]
[    1.541543] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
[    1.541544] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
[    1.541545] pci_bus 0000:00: resource 7 [io  0x1000-0x7fff]
[    1.541546] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
[    1.541548] pci_bus 0000:00: resource 9 [mem 0x90000000-0xc7ffbfff]
[    1.541549] pci_bus 0000:01: resource 0 [io  0x6000-0x6fff]
[    1.541550] pci_bus 0000:01: resource 1 [mem 0xc7a00000-0xc7cfffff]
[    1.541552] pci_bus 0000:05: resource 1 [mem 0xc7d00000-0xc7dfffff]
[    1.541553] pci_bus 0000:05: resource 2 [mem 0xc6000000-0xc68fffff 64bit pref]
[    1.541555] pci_bus 0000:7d: resource 1 [mem 0xc7000000-0xc79fffff]
[    1.541556] pci_bus 0000:7d: resource 2 [mem 0xc5000000-0xc5ffffff 64bit pref]
[    1.541573] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.541579] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.541585] pci 0000:80:02.0: PCI bridge to [bus 83-84]
[    1.541587] pci 0000:80:02.0:   bridge window [io  0xf000-0xffff]
[    1.541589] pci 0000:80:02.0:   bridge window [mem 0xfba00000-0xfbefffff]
[    1.541592] pci 0000:80:02.0:   bridge window [mem 0xfb400000-0xfb8fffff 64bit pref]
[    1.541595] pci 0000:80:03.0: PCI bridge to [bus c0]
[    1.541601] pci_bus 0000:80: resource 4 [io  0x8000-0xffff]
[    1.541602] pci_bus 0000:80: resource 5 [mem 0xc8000000-0xfbffbfff]
[    1.541603] pci_bus 0000:83: resource 0 [io  0xf000-0xffff]
[    1.541604] pci_bus 0000:83: resource 1 [mem 0xfba00000-0xfbefffff]
[    1.541606] pci_bus 0000:83: resource 2 [mem 0xfb400000-0xfb8fffff 64bit pref]
[    1.541671] NET: Registered protocol family 2
[    1.542281] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    1.543080] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.543267] TCP: Hash tables configured (established 524288 bind 65536)
[    1.543312] TCP: reno registered
[    1.543461] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[    1.543950] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[    1.544556] NET: Registered protocol family 1
[    1.545227] PCI: CLS 64 bytes, default 64
[    1.545286] Trying to unpack rootfs image as initramfs...
[    1.817006] Freeing initrd memory: 18892K (ffff880035b0a000 - ffff880036d7d000)
[    1.817045] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.817048] software IO TLB [mem 0x7096c000-0x7496c000] (64MB) mapped at [ffff88007096c000-ffff88007496bfff]
[    1.818554] microcode: CPU0 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818566] microcode: CPU1 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818579] microcode: CPU2 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818591] microcode: CPU3 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818603] microcode: CPU4 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818619] microcode: CPU5 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818631] microcode: CPU6 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818643] microcode: CPU7 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818655] microcode: CPU8 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818667] microcode: CPU9 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818679] microcode: CPU10 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818692] microcode: CPU11 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818704] microcode: CPU12 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818717] microcode: CPU13 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818727] microcode: CPU14 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818734] microcode: CPU15 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818741] microcode: CPU16 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818750] microcode: CPU17 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818756] microcode: CPU18 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818763] microcode: CPU19 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818770] microcode: CPU20 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818774] microcode: CPU21 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818780] microcode: CPU22 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818786] microcode: CPU23 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818793] microcode: CPU24 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818800] microcode: CPU25 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818806] microcode: CPU26 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818813] microcode: CPU27 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818822] microcode: CPU28 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818835] microcode: CPU29 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818846] microcode: CPU30 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818856] microcode: CPU31 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818866] microcode: CPU32 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818876] microcode: CPU33 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818901] microcode: CPU34 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818909] microcode: CPU35 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818916] microcode: CPU36 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818922] microcode: CPU37 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818929] microcode: CPU38 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818936] microcode: CPU39 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818943] microcode: CPU40 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818954] microcode: CPU41 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818961] microcode: CPU42 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818966] microcode: CPU43 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818972] microcode: CPU44 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818977] microcode: CPU45 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818983] microcode: CPU46 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818988] microcode: CPU47 sig=0x306f2, pf=0x1, revision=0x2b
[    1.818995] microcode: CPU48 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819002] microcode: CPU49 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819008] microcode: CPU50 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819013] microcode: CPU51 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819019] microcode: CPU52 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819027] microcode: CPU53 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819033] microcode: CPU54 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819039] microcode: CPU55 sig=0x306f2, pf=0x1, revision=0x2b
[    1.819088] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.819090] Scanning for low memory corruption every 60 seconds
[    1.819764] Initialise system trusted keyring
[    1.819847] audit: initializing netlink socket (disabled)
[    1.819860] type=2000 audit(1462973050.564:1): initialized
[    1.853702] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.865615] zbud: loaded
[    1.865824] VFS: Disk quotas dquot_6.5.2
[    1.865894] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.866451] fuse init (API version 7.22)
[    1.866527] msgmni has been set to 32768
[    1.866599] Key type big_key registered
[    1.867310] Key type asymmetric registered
[    1.867312] Asymmetric key parser 'x509' registered
[    1.867352] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.867544] io scheduler noop registered
[    1.867545] io scheduler deadline registered (default)
[    1.867577] io scheduler cfq registered
[    1.868064] pcieport 0000:00:01.0: irq 90 for MSI/MSI-X
[    1.868238] pcieport 0000:00:02.0: irq 91 for MSI/MSI-X
[    1.868381] pcieport 0000:00:02.2: irq 92 for MSI/MSI-X
[    1.868533] pcieport 0000:00:03.0: irq 93 for MSI/MSI-X
[    1.868673] pcieport 0000:00:03.2: irq 94 for MSI/MSI-X
[    1.868823] pcieport 0000:00:1c.0: irq 95 for MSI/MSI-X
[    1.868979] pcieport 0000:00:1c.3: irq 96 for MSI/MSI-X
[    1.869128] pcieport 0000:80:00.0: irq 97 for MSI/MSI-X
[    1.869299] pcieport 0000:80:01.0: irq 98 for MSI/MSI-X
[    1.869397] pcieport 0000:80:02.0: irq 99 for MSI/MSI-X
[    1.869497] pcieport 0000:80:03.0: irq 100 for MSI/MSI-X
[    1.869576] aer 0000:00:01.0:pcie02: service driver aer loaded
[    1.869599] aer 0000:00:02.0:pcie02: service driver aer loaded
[    1.869621] aer 0000:00:02.2:pcie02: service driver aer loaded
[    1.869647] aer 0000:00:03.0:pcie02: service driver aer loaded
[    1.869667] aer 0000:00:03.2:pcie02: service driver aer loaded
[    1.869685] aer 0000:80:00.0:pcie02: service driver aer loaded
[    1.869703] aer 0000:80:01.0:pcie02: service driver aer loaded
[    1.869720] aer 0000:80:02.0:pcie02: service driver aer loaded
[    1.869738] aer 0000:80:03.0:pcie02: service driver aer loaded
[    1.869749] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    1.869751] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    1.869753] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    1.869760] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    1.869761] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    1.869762] pci 0000:05:00.1: Signaling PME through PCIe PME interrupt
[    1.869765] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    1.869771] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    1.869773] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    1.869784] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    1.869786] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    1.869792] pcieport 0000:00:03.2: Signaling PME through PCIe PME interrupt
[    1.869794] pcie_pme 0000:00:03.2:pcie01: service driver pcie_pme loaded
[    1.869819] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    1.869822] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    1.869843] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[    1.869844] pci 0000:7d:00.0: Signaling PME through PCIe PME interrupt
[    1.869847] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
[    1.869852] pcieport 0000:80:00.0: Signaling PME through PCIe PME interrupt
[    1.869854] pcie_pme 0000:80:00.0:pcie01: service driver pcie_pme loaded
[    1.869860] pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
[    1.869862] pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
[    1.869867] pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
[    1.869869] pci 0000:83:00.0: Signaling PME through PCIe PME interrupt
[    1.869870] pci 0000:83:00.1: Signaling PME through PCIe PME interrupt
[    1.869872] pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
[    1.869877] pcieport 0000:80:03.0: Signaling PME through PCIe PME interrupt
[    1.869879] pcie_pme 0000:80:03.0:pcie01: service driver pcie_pme loaded
[    1.869917] ioapic: probe of 0000:00:05.4 failed with error -22
[    1.869924] ioapic: probe of 0000:80:05.4 failed with error -22
[    1.869929] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.869940] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.869993] efifb: probing for efifb
[    1.870221] efifb: framebuffer at 0xc5000000, mapped to 0xffffc90041b80000, using 1920k, total 1920k
[    1.870222] efifb: mode is 800x600x32, linelength=3200, pages=1
[    1.870222] efifb: scrolling: redraw
[    1.870224] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.884601] Console: switching to colour frame buffer device 100x37
[    1.898279] fb0: EFI VGA frame buffer device
[    1.898290] intel_idle: MWAIT substates: 0x2120
[    1.898291] intel_idle: v0.4 model 0x3F
[    1.898291] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.899197] ipmi message handler version 39.2
[    1.899314] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    1.899318] ACPI: Power Button [PWRB]
[    1.899345] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.899347] ACPI: Power Button [PWRF]
[    1.920089] GHES: HEST is not enabled!
[    1.920194] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.940767] 00:07: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.961323] 00:08: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    1.962468] Linux agpgart interface v0.103
[    1.964173] brd: module loaded
[    1.965206] loop: module loaded
[    1.965704] libphy: Fixed MDIO Bus: probed
[    1.965778] tun: Universal TUN/TAP device driver, 1.6
[    1.965778] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.965820] PPP generic driver version 2.4.2
[    1.965860] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.965863] ehci-pci: EHCI PCI platform driver
[    1.966064] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.966072] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.966085] ehci-pci 0000:00:1a.0: debug port 2
[    1.970012] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.970035] ehci-pci 0000:00:1a.0: irq 18, io mem 0xc7e34000
[    1.979630] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.979684] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.979685] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.979686] usb usb1: Product: EHCI Host Controller
[    1.979688] usb usb1: Manufacturer: Linux 3.13.0-53-generic ehci_hcd
[    1.979689] usb usb1: SerialNumber: 0000:00:1a.0
[    1.979789] hub 1-0:1.0: USB hub found
[    1.979795] hub 1-0:1.0: 2 ports detected
[    1.980050] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.980055] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.980067] ehci-pci 0000:00:1d.0: debug port 2
[    1.983991] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.984000] ehci-pci 0000:00:1d.0: irq 18, io mem 0xc7e33000
[    1.995636] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.995681] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.995682] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.995683] usb usb2: Product: EHCI Host Controller
[    1.995685] usb usb2: Manufacturer: Linux 3.13.0-53-generic ehci_hcd
[    1.995686] usb usb2: SerialNumber: 0000:00:1d.0
[    1.995773] hub 2-0:1.0: USB hub found
[    1.995778] hub 2-0:1.0: 2 ports detected
[    1.995906] ehci-platform: EHCI generic platform driver
[    1.995912] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.995914] ohci-pci: OHCI PCI platform driver
[    1.995950] ohci-platform: OHCI generic platform driver
[    1.995954] uhci_hcd: USB Universal Host Controller Interface driver
[    1.996082] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.996093] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.996210] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.996270] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.996272] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.996273] usb usb3: Product: xHCI Host Controller
[    1.996274] usb usb3: Manufacturer: Linux 3.13.0-53-generic xhci_hcd
[    1.996275] usb usb3: SerialNumber: 0000:00:14.0
[    1.996364] hub 3-0:1.0: USB hub found
[    1.996383] hub 3-0:1.0: 15 ports detected
[    1.997067] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.997070] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    1.997107] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.997108] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.997109] usb usb4: Product: xHCI Host Controller
[    1.997111] usb usb4: Manufacturer: Linux 3.13.0-53-generic xhci_hcd
[    1.997112] usb usb4: SerialNumber: 0000:00:14.0
[    1.997189] hub 4-0:1.0: USB hub found
[    1.997201] hub 4-0:1.0: 6 ports detected
[    2.003720] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    2.291774] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.424130] usb 1-1: New USB device found, idVendor=8087, idProduct=800a
[    2.424132] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.424286] hub 1-1:1.0: USB hub found
[    2.424378] hub 1-1:1.0: 6 ports detected
[    2.535866] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.668225] usb 2-1: New USB device found, idVendor=8087, idProduct=8002
[    2.668228] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.668380] hub 2-1:1.0: USB hub found
[    2.668473] hub 2-1:1.0: 8 ports detected
[    2.815977] tsc: Refined TSC clocksource calibration: 2599.997 MHz
[    2.835974] usb 3-6: new full-speed USB device number 2 using xhci_hcd
[    2.856473] usb 3-6: New USB device found, idVendor=0430, idProduct=0424
[    2.856475] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.856477] usb 3-6: Product: KVM SWITCH
[    2.856478] usb 3-6: Manufacturer: FUJITSU COMPONENT
[    2.856538] usb 3-6: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    2.856544] usb 3-6: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
[    3.024071] usb 3-7: new full-speed USB device number 3 using xhci_hcd
[    3.034714] i8042: No controller found
[    3.034783] mousedev: PS/2 mouse device common for all mice
[    3.034874] rtc_cmos 00:02: RTC can wake from S4
[    3.034991] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    3.035024] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    3.035094] device-mapper: uevent: version 1.0.3
[    3.035159] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    3.035194] ledtrig-cpu: registered to indicate activity on CPUs
[    3.035196] EFI Variables Facility v0.08 2004-May-17
[    3.038726] TCP: cubic registered
[    3.038825] NET: Registered protocol family 10
[    3.039113] NET: Registered protocol family 17
[    3.039121] Key type dns_resolver registered
[    3.040007] Loading compiled-in X.509 certificates
[    3.040717] Loaded X.509 cert 'Magrathea: Glacier signing key: e7b71b6b5511e9468c3a258a2c99fc7ed7449bb3'
[    3.040726] registered taskstats version 1
[    3.053388] Key type trusted registered
[    3.055962] Key type encrypted registered
[    3.055965] AppArmor: AppArmor sha1 policy hashing enabled
[    3.055967] IMA: No TPM chip found, activating TPM-bypass!
[    3.057150] regulator-dummy: disabling
[    3.057206]   Magic number: 0:572:432
[    3.057231] thermal cooling_device24: hash matches
[    3.057432] memory memory2773: hash matches
[    3.057545] memory memory1937: hash matches
[    3.057990] rtc_cmos 00:02: setting system clock to 2016-05-11 13:24:12 UTC (1462973052)
[    3.058169] usb 3-7: New USB device found, idVendor=046b, idProduct=ff10
[    3.058172] usb 3-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.058173] usb 3-7: Product: Virtual Keyboard and Mouse
[    3.058174] usb 3-7: Manufacturer: American Megatrends Inc.
[    3.062787] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.062788] EDD information not available.
[    3.062822] PM: Hibernation image not present or could not be loaded.
[    3.064047] Freeing unused kernel memory: 1336K (ffffffff81d20000 - ffffffff81e6e000)
[    3.064048] Write protecting the kernel read-only data: 12288k
[    3.066284] Freeing unused kernel memory: 788K (ffff88000273b000 - ffff880002800000)
[    3.067948] Freeing unused kernel memory: 688K (ffff880002b54000 - ffff880002c00000)
[    3.082150] systemd-udevd[491]: starting version 204
[    3.142024] megasas: 06.700.06.00-rc1 Sat. Aug. 31 17:00:00 PDT 2013
[    3.142109] megasas: 0x1000:0x005d:0x1000:0x9364: bus 1:slot 0:func 0
[    3.142259] megasas: FW now in Ready state
[    3.142302] megaraid_sas 0000:01:00.0: irq 101 for MSI/MSI-X
[    3.142310] megaraid_sas 0000:01:00.0: irq 102 for MSI/MSI-X
[    3.142317] megaraid_sas 0000:01:00.0: irq 103 for MSI/MSI-X
[    3.142325] megaraid_sas 0000:01:00.0: irq 104 for MSI/MSI-X
[    3.142332] megaraid_sas 0000:01:00.0: irq 105 for MSI/MSI-X
[    3.142339] megaraid_sas 0000:01:00.0: irq 106 for MSI/MSI-X
[    3.142346] megaraid_sas 0000:01:00.0: irq 107 for MSI/MSI-X
[    3.142352] megaraid_sas 0000:01:00.0: irq 108 for MSI/MSI-X
[    3.142359] megaraid_sas 0000:01:00.0: irq 109 for MSI/MSI-X
[    3.142366] megaraid_sas 0000:01:00.0: irq 110 for MSI/MSI-X
[    3.142373] megaraid_sas 0000:01:00.0: irq 111 for MSI/MSI-X
[    3.142388] megaraid_sas 0000:01:00.0: irq 112 for MSI/MSI-X
[    3.142396] megaraid_sas 0000:01:00.0: irq 113 for MSI/MSI-X
[    3.142403] megaraid_sas 0000:01:00.0: irq 114 for MSI/MSI-X
[    3.142410] megaraid_sas 0000:01:00.0: irq 115 for MSI/MSI-X
[    3.142418] megaraid_sas 0000:01:00.0: irq 116 for MSI/MSI-X
[    3.142425] megaraid_sas 0000:01:00.0: irq 117 for MSI/MSI-X
[    3.142432] megaraid_sas 0000:01:00.0: irq 118 for MSI/MSI-X
[    3.142439] megaraid_sas 0000:01:00.0: irq 119 for MSI/MSI-X
[    3.142446] megaraid_sas 0000:01:00.0: irq 120 for MSI/MSI-X
[    3.142460] megaraid_sas 0000:01:00.0: irq 121 for MSI/MSI-X
[    3.142468] megaraid_sas 0000:01:00.0: irq 122 for MSI/MSI-X
[    3.142475] megaraid_sas 0000:01:00.0: irq 123 for MSI/MSI-X
[    3.142482] megaraid_sas 0000:01:00.0: irq 124 for MSI/MSI-X
[    3.142489] megaraid_sas 0000:01:00.0: irq 125 for MSI/MSI-X
[    3.142496] megaraid_sas 0000:01:00.0: irq 126 for MSI/MSI-X
[    3.142504] megaraid_sas 0000:01:00.0: irq 127 for MSI/MSI-X
[    3.142513] megaraid_sas 0000:01:00.0: irq 128 for MSI/MSI-X
[    3.142521] megaraid_sas 0000:01:00.0: irq 129 for MSI/MSI-X
[    3.142531] megaraid_sas 0000:01:00.0: irq 130 for MSI/MSI-X
[    3.142539] megaraid_sas 0000:01:00.0: irq 131 for MSI/MSI-X
[    3.142546] megaraid_sas 0000:01:00.0: irq 132 for MSI/MSI-X
[    3.142552] megaraid_sas 0000:01:00.0: irq 133 for MSI/MSI-X
[    3.142559] megaraid_sas 0000:01:00.0: irq 134 for MSI/MSI-X
[    3.142566] megaraid_sas 0000:01:00.0: irq 135 for MSI/MSI-X
[    3.142573] megaraid_sas 0000:01:00.0: irq 136 for MSI/MSI-X
[    3.142579] megaraid_sas 0000:01:00.0: irq 137 for MSI/MSI-X
[    3.142586] megaraid_sas 0000:01:00.0: irq 138 for MSI/MSI-X
[    3.142593] megaraid_sas 0000:01:00.0: irq 139 for MSI/MSI-X
[    3.142599] megaraid_sas 0000:01:00.0: irq 140 for MSI/MSI-X
[    3.142605] megaraid_sas 0000:01:00.0: irq 141 for MSI/MSI-X
[    3.142612] megaraid_sas 0000:01:00.0: irq 142 for MSI/MSI-X
[    3.142618] megaraid_sas 0000:01:00.0: irq 143 for MSI/MSI-X
[    3.142632] megaraid_sas 0000:01:00.0: irq 144 for MSI/MSI-X
[    3.142639] megaraid_sas 0000:01:00.0: irq 145 for MSI/MSI-X
[    3.142646] megaraid_sas 0000:01:00.0: irq 146 for MSI/MSI-X
[    3.142653] megaraid_sas 0000:01:00.0: irq 147 for MSI/MSI-X
[    3.142660] megaraid_sas 0000:01:00.0: irq 148 for MSI/MSI-X
[    3.142666] megaraid_sas 0000:01:00.0: irq 149 for MSI/MSI-X
[    3.142673] megaraid_sas 0000:01:00.0: irq 150 for MSI/MSI-X
[    3.142680] megaraid_sas 0000:01:00.0: irq 151 for MSI/MSI-X
[    3.142687] megaraid_sas 0000:01:00.0: irq 152 for MSI/MSI-X
[    3.142702] megaraid_sas 0000:01:00.0: irq 153 for MSI/MSI-X
[    3.142709] megaraid_sas 0000:01:00.0: irq 154 for MSI/MSI-X
[    3.142717] megaraid_sas 0000:01:00.0: irq 155 for MSI/MSI-X
[    3.142724] megaraid_sas 0000:01:00.0: irq 156 for MSI/MSI-X
[    3.143035] megaraid_sas 0000:01:00.0: [scsi0]: FW supports<96> MSIX vector,Online CPUs: <56>,Current MSIX <56>
[    3.143488] pps_core: LinuxPPS API ver. 1 registered
[    3.143490] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.146437] PTP clock support registered
[    3.146740] hidraw: raw HID events driver (C) Jiri Kosina
[    3.146866] ahci 0000:00:1f.2: version 3.0
[    3.147068] ahci 0000:00:1f.2: irq 157 for MSI/MSI-X
[    3.147124] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    3.147163] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    3.147165] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.148181] dca service started, version 1.12.1
[    3.152151] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.15.1-k
[    3.152153] ixgbe: Copyright (c) 1999-2013 Intel Corporation.
[    3.153722] usbcore: registered new interface driver usbhid
[    3.153724] usbhid: USB HID core driver
[    3.168146] megasas:IOC Init cmd success
[    3.185277] scsi1 : ahci
[    3.185413] scsi2 : ahci
[    3.185546] scsi3 : ahci
[    3.185657] scsi4 : ahci
[    3.185775] scsi5 : ahci
[    3.185883] scsi6 : ahci
[    3.185943] ata1: SATA max UDMA/133 abar m2048@0xc7e32000 port 0xc7e32100 irq 157
[    3.185945] ata2: SATA max UDMA/133 abar m2048@0xc7e32000 port 0xc7e32180 irq 157
[    3.185946] ata3: SATA max UDMA/133 abar m2048@0xc7e32000 port 0xc7e32200 irq 157
[    3.185948] ata4: SATA max UDMA/133 abar m2048@0xc7e32000 port 0xc7e32280 irq 157
[    3.185949] ata5: SATA max UDMA/133 abar m2048@0xc7e32000 port 0xc7e32300 irq 157
[    3.185951] ata6: SATA max UDMA/133 abar m2048@0xc7e32000 port 0xc7e32380 irq 157
[    3.216120] megasas: INIT adapter done
[    3.251829] input: FUJITSU COMPONENT KVM SWITCH as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.0/input/input2
[    3.251930] hid-generic 0003:0430:0424.0001: input,hidraw0: USB HID v1.10 Keyboard [FUJITSU COMPONENT KVM SWITCH] on usb-0000:00:14.0-6/input0
[    3.252041] input: FUJITSU COMPONENT KVM SWITCH as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.1/input/input3
[    3.252131] hid-generic 0003:0430:0424.0002: input,hidraw1: USB HID v1.10 Mouse [FUJITSU COMPONENT KVM SWITCH] on usb-0000:00:14.0-6/input1
[    3.252245] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.0/input/input4
[    3.252333] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:14.0-7/input0
[    3.252424] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.1/input/input5
[    3.252505] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:14.0-7/input1
[    3.288146] megaraid_sas 0000:01:00.0: Controller type: MR,Memory size is: 2048MB
[    3.288746] scsi0 : LSI SAS based MegaRAID driver
[    3.290705] scsi 0:0:0:0: Direct-Access     LSI      MR9362-8i        4.22 PQ: 0 ANSI: 5
[    3.301046] scsi 0:2:0:0: Direct-Access     LSI      MR9362-8i        4.22 PQ: 0 ANSI: 5
[    3.306125] sd 0:2:0:0: Attached scsi generic sg0 type 0
[    3.306127] sd 0:2:0:0: [sda] 2342649856 512-byte logical blocks: (1.19 TB/1.09 TiB)
[    3.306204] sd 0:2:0:0: [sda] Write Protect is off
[    3.306206] sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08
[    3.306238] sd 0:2:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.315597]  sda: sda1 sda2 sda3 sda4 sda5
[    3.315912] sd 0:2:0:0: [sda] Attached SCSI disk
[    3.447850] EXT4-fs (sda4): INFO: recovery required on readonly filesystem
[    3.447853] EXT4-fs (sda4): write access will be enabled during recovery
[    3.468837] EXT4-fs (sda4): recovery complete
[    3.468893] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[    3.504237] ata1: SATA link down (SStatus 0 SControl 300)
[    3.567371] ixgbe 0000:05:00.0: irq 158 for MSI/MSI-X
[    3.567380] ixgbe 0000:05:00.0: irq 159 for MSI/MSI-X
[    3.567387] ixgbe 0000:05:00.0: irq 160 for MSI/MSI-X
[    3.567394] ixgbe 0000:05:00.0: irq 161 for MSI/MSI-X
[    3.567402] ixgbe 0000:05:00.0: irq 162 for MSI/MSI-X
[    3.567409] ixgbe 0000:05:00.0: irq 163 for MSI/MSI-X
[    3.567416] ixgbe 0000:05:00.0: irq 164 for MSI/MSI-X
[    3.567423] ixgbe 0000:05:00.0: irq 165 for MSI/MSI-X
[    3.567430] ixgbe 0000:05:00.0: irq 166 for MSI/MSI-X
[    3.567437] ixgbe 0000:05:00.0: irq 167 for MSI/MSI-X
[    3.567443] ixgbe 0000:05:00.0: irq 168 for MSI/MSI-X
[    3.567450] ixgbe 0000:05:00.0: irq 169 for MSI/MSI-X
[    3.567457] ixgbe 0000:05:00.0: irq 170 for MSI/MSI-X
[    3.567464] ixgbe 0000:05:00.0: irq 171 for MSI/MSI-X
[    3.567471] ixgbe 0000:05:00.0: irq 172 for MSI/MSI-X
[    3.567478] ixgbe 0000:05:00.0: irq 173 for MSI/MSI-X
[    3.567485] ixgbe 0000:05:00.0: irq 174 for MSI/MSI-X
[    3.567492] ixgbe 0000:05:00.0: irq 175 for MSI/MSI-X
[    3.567499] ixgbe 0000:05:00.0: irq 176 for MSI/MSI-X
[    3.567507] ixgbe 0000:05:00.0: irq 177 for MSI/MSI-X
[    3.567514] ixgbe 0000:05:00.0: irq 178 for MSI/MSI-X
[    3.567521] ixgbe 0000:05:00.0: irq 179 for MSI/MSI-X
[    3.567528] ixgbe 0000:05:00.0: irq 180 for MSI/MSI-X
[    3.567534] ixgbe 0000:05:00.0: irq 181 for MSI/MSI-X
[    3.567540] ixgbe 0000:05:00.0: irq 182 for MSI/MSI-X
[    3.567547] ixgbe 0000:05:00.0: irq 183 for MSI/MSI-X
[    3.567554] ixgbe 0000:05:00.0: irq 184 for MSI/MSI-X
[    3.567560] ixgbe 0000:05:00.0: irq 185 for MSI/MSI-X
[    3.567567] ixgbe 0000:05:00.0: irq 186 for MSI/MSI-X
[    3.567573] ixgbe 0000:05:00.0: irq 187 for MSI/MSI-X
[    3.567583] ixgbe 0000:05:00.0: irq 188 for MSI/MSI-X
[    3.567590] ixgbe 0000:05:00.0: irq 189 for MSI/MSI-X
[    3.567596] ixgbe 0000:05:00.0: irq 190 for MSI/MSI-X
[    3.567602] ixgbe 0000:05:00.0: irq 191 for MSI/MSI-X
[    3.567609] ixgbe 0000:05:00.0: irq 192 for MSI/MSI-X
[    3.567615] ixgbe 0000:05:00.0: irq 193 for MSI/MSI-X
[    3.567623] ixgbe 0000:05:00.0: irq 194 for MSI/MSI-X
[    3.567630] ixgbe 0000:05:00.0: irq 195 for MSI/MSI-X
[    3.567637] ixgbe 0000:05:00.0: irq 196 for MSI/MSI-X
[    3.567643] ixgbe 0000:05:00.0: irq 197 for MSI/MSI-X
[    3.567650] ixgbe 0000:05:00.0: irq 198 for MSI/MSI-X
[    3.567656] ixgbe 0000:05:00.0: irq 199 for MSI/MSI-X
[    3.567663] ixgbe 0000:05:00.0: irq 200 for MSI/MSI-X
[    3.567669] ixgbe 0000:05:00.0: irq 201 for MSI/MSI-X
[    3.567676] ixgbe 0000:05:00.0: irq 202 for MSI/MSI-X
[    3.567683] ixgbe 0000:05:00.0: irq 203 for MSI/MSI-X
[    3.567690] ixgbe 0000:05:00.0: irq 204 for MSI/MSI-X
[    3.567696] ixgbe 0000:05:00.0: irq 205 for MSI/MSI-X
[    3.567703] ixgbe 0000:05:00.0: irq 206 for MSI/MSI-X
[    3.567709] ixgbe 0000:05:00.0: irq 207 for MSI/MSI-X
[    3.567716] ixgbe 0000:05:00.0: irq 208 for MSI/MSI-X
[    3.567722] ixgbe 0000:05:00.0: irq 209 for MSI/MSI-X
[    3.567730] ixgbe 0000:05:00.0: irq 210 for MSI/MSI-X
[    3.567736] ixgbe 0000:05:00.0: irq 211 for MSI/MSI-X
[    3.567743] ixgbe 0000:05:00.0: irq 212 for MSI/MSI-X
[    3.567749] ixgbe 0000:05:00.0: irq 213 for MSI/MSI-X
[    3.567756] ixgbe 0000:05:00.0: irq 214 for MSI/MSI-X
[    3.567877] ixgbe 0000:05:00.0: Multiqueue Enabled: Rx Queue count = 56, Tx Queue count = 56
[    3.628010] ixgbe 0000:05:00.0: PCI Express bandwidth of 32GT/s available
[    3.628013] ixgbe 0000:05:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[    3.668095] ixgbe 0000:05:00.0: MAC: 3, PHY: 3, PBA No: 000000-000
[    3.668098] ixgbe 0000:05:00.0: 44:8a:5b:f4:5b:35
[    3.811399] ixgbe 0000:05:00.0: Intel(R) 10 Gigabit Network Connection
[    3.811501] ixgbe 0000:05:00.1: enabling device (0140 -> 0142)
[    3.816688] Switched to clocksource tsc
[    3.824391] ata2: SATA link down (SStatus 0 SControl 300)
[    4.144535] ata3: SATA link down (SStatus 0 SControl 300)
[    4.242904] ixgbe 0000:05:00.1: irq 215 for MSI/MSI-X
[    4.242923] ixgbe 0000:05:00.1: irq 216 for MSI/MSI-X
[    4.242942] ixgbe 0000:05:00.1: irq 217 for MSI/MSI-X
[    4.242956] ixgbe 0000:05:00.1: irq 218 for MSI/MSI-X
[    4.242970] ixgbe 0000:05:00.1: irq 219 for MSI/MSI-X
[    4.242983] ixgbe 0000:05:00.1: irq 220 for MSI/MSI-X
[    4.242997] ixgbe 0000:05:00.1: irq 221 for MSI/MSI-X
[    4.243010] ixgbe 0000:05:00.1: irq 222 for MSI/MSI-X
[    4.243024] ixgbe 0000:05:00.1: irq 223 for MSI/MSI-X
[    4.243038] ixgbe 0000:05:00.1: irq 224 for MSI/MSI-X
[    4.243052] ixgbe 0000:05:00.1: irq 225 for MSI/MSI-X
[    4.243066] ixgbe 0000:05:00.1: irq 226 for MSI/MSI-X
[    4.243080] ixgbe 0000:05:00.1: irq 227 for MSI/MSI-X
[    4.243093] ixgbe 0000:05:00.1: irq 228 for MSI/MSI-X
[    4.243106] ixgbe 0000:05:00.1: irq 229 for MSI/MSI-X
[    4.243120] ixgbe 0000:05:00.1: irq 230 for MSI/MSI-X
[    4.243133] ixgbe 0000:05:00.1: irq 231 for MSI/MSI-X
[    4.243147] ixgbe 0000:05:00.1: irq 232 for MSI/MSI-X
[    4.243168] ixgbe 0000:05:00.1: irq 233 for MSI/MSI-X
[    4.243175] ixgbe 0000:05:00.1: irq 234 for MSI/MSI-X
[    4.243181] ixgbe 0000:05:00.1: irq 235 for MSI/MSI-X
[    4.243189] ixgbe 0000:05:00.1: irq 236 for MSI/MSI-X
[    4.243196] ixgbe 0000:05:00.1: irq 237 for MSI/MSI-X
[    4.243203] ixgbe 0000:05:00.1: irq 238 for MSI/MSI-X
[    4.243210] ixgbe 0000:05:00.1: irq 239 for MSI/MSI-X
[    4.243217] ixgbe 0000:05:00.1: irq 240 for MSI/MSI-X
[    4.243224] ixgbe 0000:05:00.1: irq 241 for MSI/MSI-X
[    4.243231] ixgbe 0000:05:00.1: irq 242 for MSI/MSI-X
[    4.243238] ixgbe 0000:05:00.1: irq 243 for MSI/MSI-X
[    4.243244] ixgbe 0000:05:00.1: irq 244 for MSI/MSI-X
[    4.243251] ixgbe 0000:05:00.1: irq 245 for MSI/MSI-X
[    4.243258] ixgbe 0000:05:00.1: irq 246 for MSI/MSI-X
[    4.243264] ixgbe 0000:05:00.1: irq 247 for MSI/MSI-X
[    4.243273] ixgbe 0000:05:00.1: irq 248 for MSI/MSI-X
[    4.243284] ixgbe 0000:05:00.1: irq 249 for MSI/MSI-X
[    4.243291] ixgbe 0000:05:00.1: irq 250 for MSI/MSI-X
[    4.243298] ixgbe 0000:05:00.1: irq 251 for MSI/MSI-X
[    4.243305] ixgbe 0000:05:00.1: irq 252 for MSI/MSI-X
[    4.243312] ixgbe 0000:05:00.1: irq 253 for MSI/MSI-X
[    4.243319] ixgbe 0000:05:00.1: irq 254 for MSI/MSI-X
[    4.243328] ixgbe 0000:05:00.1: irq 255 for MSI/MSI-X
[    4.243336] ixgbe 0000:05:00.1: irq 256 for MSI/MSI-X
[    4.243343] ixgbe 0000:05:00.1: irq 257 for MSI/MSI-X
[    4.243350] ixgbe 0000:05:00.1: irq 258 for MSI/MSI-X
[    4.243357] ixgbe 0000:05:00.1: irq 259 for MSI/MSI-X
[    4.243365] ixgbe 0000:05:00.1: irq 260 for MSI/MSI-X
[    4.243371] ixgbe 0000:05:00.1: irq 261 for MSI/MSI-X
[    4.243379] ixgbe 0000:05:00.1: irq 262 for MSI/MSI-X
[    4.243386] ixgbe 0000:05:00.1: irq 263 for MSI/MSI-X
[    4.243393] ixgbe 0000:05:00.1: irq 264 for MSI/MSI-X
[    4.243400] ixgbe 0000:05:00.1: irq 265 for MSI/MSI-X
[    4.243407] ixgbe 0000:05:00.1: irq 266 for MSI/MSI-X
[    4.243414] ixgbe 0000:05:00.1: irq 267 for MSI/MSI-X
[    4.243421] ixgbe 0000:05:00.1: irq 268 for MSI/MSI-X
[    4.243433] ixgbe 0000:05:00.1: irq 269 for MSI/MSI-X
[    4.243445] ixgbe 0000:05:00.1: irq 270 for MSI/MSI-X
[    4.243457] ixgbe 0000:05:00.1: irq 271 for MSI/MSI-X
[    4.243585] ixgbe 0000:05:00.1: Multiqueue Enabled: Rx Queue count = 56, Tx Queue count = 56
[    4.303982] ixgbe 0000:05:00.1: PCI Express bandwidth of 32GT/s available
[    4.303988] ixgbe 0000:05:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[    4.344234] ixgbe 0000:05:00.1: MAC: 3, PHY: 3, PBA No: 000000-000
[    4.344237] ixgbe 0000:05:00.1: 44:8a:5b:f4:5b:36
[    4.464661] ata4: SATA link down (SStatus 0 SControl 300)
[    4.488811] ixgbe 0000:05:00.1: Intel(R) 10 Gigabit Network Connection
[    4.488882] ixgbe 0000:83:00.0: enabling device (0140 -> 0142)
[    4.784779] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.786309] ata5.00: ATAPI: MATSHITADVD-ROM UJ8E2, 1.00, max UDMA/133
[    4.787658] ata5.00: configured for UDMA/133
[    4.788947] scsi 5:0:0:0: CD-ROM            MATSHITA DVD-ROM UJ8E2    1.00 PQ: 0 ANSI: 5
[    4.791267] sr0: scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
[    4.791272] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.791451] sr 5:0:0:0: Attached scsi CD-ROM sr0
[    4.791497] sr 5:0:0:0: Attached scsi generic sg1 type 5
[    4.919327] ixgbe 0000:83:00.0: irq 272 for MSI/MSI-X
[    4.919341] ixgbe 0000:83:00.0: irq 273 for MSI/MSI-X
[    4.919353] ixgbe 0000:83:00.0: irq 274 for MSI/MSI-X
[    4.919364] ixgbe 0000:83:00.0: irq 275 for MSI/MSI-X
[    4.919376] ixgbe 0000:83:00.0: irq 276 for MSI/MSI-X
[    4.919387] ixgbe 0000:83:00.0: irq 277 for MSI/MSI-X
[    4.919399] ixgbe 0000:83:00.0: irq 278 for MSI/MSI-X
[    4.919411] ixgbe 0000:83:00.0: irq 279 for MSI/MSI-X
[    4.919422] ixgbe 0000:83:00.0: irq 280 for MSI/MSI-X
[    4.919434] ixgbe 0000:83:00.0: irq 281 for MSI/MSI-X
[    4.919446] ixgbe 0000:83:00.0: irq 282 for MSI/MSI-X
[    4.919457] ixgbe 0000:83:00.0: irq 283 for MSI/MSI-X
[    4.919469] ixgbe 0000:83:00.0: irq 284 for MSI/MSI-X
[    4.919481] ixgbe 0000:83:00.0: irq 285 for MSI/MSI-X
[    4.919493] ixgbe 0000:83:00.0: irq 286 for MSI/MSI-X
[    4.919504] ixgbe 0000:83:00.0: irq 287 for MSI/MSI-X
[    4.919524] ixgbe 0000:83:00.0: irq 288 for MSI/MSI-X
[    4.919536] ixgbe 0000:83:00.0: irq 289 for MSI/MSI-X
[    4.919547] ixgbe 0000:83:00.0: irq 290 for MSI/MSI-X
[    4.919558] ixgbe 0000:83:00.0: irq 291 for MSI/MSI-X
[    4.919569] ixgbe 0000:83:00.0: irq 292 for MSI/MSI-X
[    4.919580] ixgbe 0000:83:00.0: irq 293 for MSI/MSI-X
[    4.919592] ixgbe 0000:83:00.0: irq 294 for MSI/MSI-X
[    4.919603] ixgbe 0000:83:00.0: irq 295 for MSI/MSI-X
[    4.919615] ixgbe 0000:83:00.0: irq 296 for MSI/MSI-X
[    4.919626] ixgbe 0000:83:00.0: irq 297 for MSI/MSI-X
[    4.919638] ixgbe 0000:83:00.0: irq 298 for MSI/MSI-X
[    4.919649] ixgbe 0000:83:00.0: irq 299 for MSI/MSI-X
[    4.919660] ixgbe 0000:83:00.0: irq 300 for MSI/MSI-X
[    4.919671] ixgbe 0000:83:00.0: irq 301 for MSI/MSI-X
[    4.919683] ixgbe 0000:83:00.0: irq 302 for MSI/MSI-X
[    4.919694] ixgbe 0000:83:00.0: irq 303 for MSI/MSI-X
[    4.919714] ixgbe 0000:83:00.0: irq 304 for MSI/MSI-X
[    4.919725] ixgbe 0000:83:00.0: irq 305 for MSI/MSI-X
[    4.919737] ixgbe 0000:83:00.0: irq 306 for MSI/MSI-X
[    4.919748] ixgbe 0000:83:00.0: irq 307 for MSI/MSI-X
[    4.919759] ixgbe 0000:83:00.0: irq 308 for MSI/MSI-X
[    4.919770] ixgbe 0000:83:00.0: irq 309 for MSI/MSI-X
[    4.919781] ixgbe 0000:83:00.0: irq 310 for MSI/MSI-X
[    4.919793] ixgbe 0000:83:00.0: irq 311 for MSI/MSI-X
[    4.919805] ixgbe 0000:83:00.0: irq 312 for MSI/MSI-X
[    4.919816] ixgbe 0000:83:00.0: irq 313 for MSI/MSI-X
[    4.919827] ixgbe 0000:83:00.0: irq 314 for MSI/MSI-X
[    4.919838] ixgbe 0000:83:00.0: irq 315 for MSI/MSI-X
[    4.919849] ixgbe 0000:83:00.0: irq 316 for MSI/MSI-X
[    4.919860] ixgbe 0000:83:00.0: irq 317 for MSI/MSI-X
[    4.919872] ixgbe 0000:83:00.0: irq 318 for MSI/MSI-X
[    4.919883] ixgbe 0000:83:00.0: irq 319 for MSI/MSI-X
[    4.919900] ixgbe 0000:83:00.0: irq 320 for MSI/MSI-X
[    4.919911] ixgbe 0000:83:00.0: irq 321 for MSI/MSI-X
[    4.919923] ixgbe 0000:83:00.0: irq 322 for MSI/MSI-X
[    4.919934] ixgbe 0000:83:00.0: irq 323 for MSI/MSI-X
[    4.919946] ixgbe 0000:83:00.0: irq 324 for MSI/MSI-X
[    4.919957] ixgbe 0000:83:00.0: irq 325 for MSI/MSI-X
[    4.919968] ixgbe 0000:83:00.0: irq 326 for MSI/MSI-X
[    4.919980] ixgbe 0000:83:00.0: irq 327 for MSI/MSI-X
[    4.919991] ixgbe 0000:83:00.0: irq 328 for MSI/MSI-X
[    4.920121] ixgbe 0000:83:00.0: Multiqueue Enabled: Rx Queue count = 56, Tx Queue count = 56
[    4.980498] ixgbe 0000:83:00.0: PCI Express bandwidth of 32GT/s available
[    4.980504] ixgbe 0000:83:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[    5.020766] ixgbe 0000:83:00.0: MAC: 3, PHY: 3, PBA No: 000000-000
[    5.020772] ixgbe 0000:83:00.0: 00:e0:ed:29:a4:f0
[    5.108917] ata6: SATA link down (SStatus 0 SControl 300)
[    5.165439] ixgbe 0000:83:00.0: Intel(R) 10 Gigabit Network Connection
[    5.165475] ixgbe 0000:83:00.1: enabling device (0140 -> 0142)
[    5.595280] ixgbe 0000:83:00.1: irq 329 for MSI/MSI-X
[    5.595311] ixgbe 0000:83:00.1: irq 330 for MSI/MSI-X
[    5.595339] ixgbe 0000:83:00.1: irq 331 for MSI/MSI-X
[    5.595366] ixgbe 0000:83:00.1: irq 332 for MSI/MSI-X
[    5.595393] ixgbe 0000:83:00.1: irq 333 for MSI/MSI-X
[    5.595421] ixgbe 0000:83:00.1: irq 334 for MSI/MSI-X
[    5.595449] ixgbe 0000:83:00.1: irq 335 for MSI/MSI-X
[    5.595476] ixgbe 0000:83:00.1: irq 336 for MSI/MSI-X
[    5.595504] ixgbe 0000:83:00.1: irq 337 for MSI/MSI-X
[    5.595531] ixgbe 0000:83:00.1: irq 338 for MSI/MSI-X
[    5.595558] ixgbe 0000:83:00.1: irq 339 for MSI/MSI-X
[    5.595585] ixgbe 0000:83:00.1: irq 340 for MSI/MSI-X
[    5.595613] ixgbe 0000:83:00.1: irq 341 for MSI/MSI-X
[    5.595649] ixgbe 0000:83:00.1: irq 342 for MSI/MSI-X
[    5.595661] ixgbe 0000:83:00.1: irq 343 for MSI/MSI-X
[    5.595673] ixgbe 0000:83:00.1: irq 344 for MSI/MSI-X
[    5.595685] ixgbe 0000:83:00.1: irq 345 for MSI/MSI-X
[    5.595697] ixgbe 0000:83:00.1: irq 346 for MSI/MSI-X
[    5.595710] ixgbe 0000:83:00.1: irq 347 for MSI/MSI-X
[    5.595723] ixgbe 0000:83:00.1: irq 348 for MSI/MSI-X
[    5.595735] ixgbe 0000:83:00.1: irq 349 for MSI/MSI-X
[    5.595747] ixgbe 0000:83:00.1: irq 350 for MSI/MSI-X
[    5.595760] ixgbe 0000:83:00.1: irq 351 for MSI/MSI-X
[    5.595772] ixgbe 0000:83:00.1: irq 352 for MSI/MSI-X
[    5.595784] ixgbe 0000:83:00.1: irq 353 for MSI/MSI-X
[    5.595796] ixgbe 0000:83:00.1: irq 354 for MSI/MSI-X
[    5.595808] ixgbe 0000:83:00.1: irq 355 for MSI/MSI-X
[    5.595819] ixgbe 0000:83:00.1: irq 356 for MSI/MSI-X
[    5.595831] ixgbe 0000:83:00.1: irq 357 for MSI/MSI-X
[    5.595851] ixgbe 0000:83:00.1: irq 358 for MSI/MSI-X
[    5.595863] ixgbe 0000:83:00.1: irq 359 for MSI/MSI-X
[    5.595875] ixgbe 0000:83:00.1: irq 360 for MSI/MSI-X
[    5.595893] ixgbe 0000:83:00.1: irq 361 for MSI/MSI-X
[    5.595904] ixgbe 0000:83:00.1: irq 362 for MSI/MSI-X
[    5.595916] ixgbe 0000:83:00.1: irq 363 for MSI/MSI-X
[    5.595927] ixgbe 0000:83:00.1: irq 364 for MSI/MSI-X
[    5.595939] ixgbe 0000:83:00.1: irq 365 for MSI/MSI-X
[    5.595951] ixgbe 0000:83:00.1: irq 366 for MSI/MSI-X
[    5.595963] ixgbe 0000:83:00.1: irq 367 for MSI/MSI-X
[    5.595975] ixgbe 0000:83:00.1: irq 368 for MSI/MSI-X
[    5.595987] ixgbe 0000:83:00.1: irq 369 for MSI/MSI-X
[    5.595999] ixgbe 0000:83:00.1: irq 370 for MSI/MSI-X
[    5.596010] ixgbe 0000:83:00.1: irq 371 for MSI/MSI-X
[    5.596021] ixgbe 0000:83:00.1: irq 372 for MSI/MSI-X
[    5.596033] ixgbe 0000:83:00.1: irq 373 for MSI/MSI-X
[    5.596048] ixgbe 0000:83:00.1: irq 374 for MSI/MSI-X
[    5.596059] ixgbe 0000:83:00.1: irq 375 for MSI/MSI-X
[    5.596071] ixgbe 0000:83:00.1: irq 376 for MSI/MSI-X
[    5.596082] ixgbe 0000:83:00.1: irq 377 for MSI/MSI-X
[    5.596094] ixgbe 0000:83:00.1: irq 378 for MSI/MSI-X
[    5.596106] ixgbe 0000:83:00.1: irq 379 for MSI/MSI-X
[    5.596117] ixgbe 0000:83:00.1: irq 380 for MSI/MSI-X
[    5.596129] ixgbe 0000:83:00.1: irq 381 for MSI/MSI-X
[    5.596140] ixgbe 0000:83:00.1: irq 382 for MSI/MSI-X
[    5.596151] ixgbe 0000:83:00.1: irq 383 for MSI/MSI-X
[    5.596163] ixgbe 0000:83:00.1: irq 384 for MSI/MSI-X
[    5.596174] ixgbe 0000:83:00.1: irq 385 for MSI/MSI-X
[    5.596291] ixgbe 0000:83:00.1: Multiqueue Enabled: Rx Queue count = 56, Tx Queue count = 56
[    5.656676] ixgbe 0000:83:00.1: PCI Express bandwidth of 32GT/s available
[    5.656681] ixgbe 0000:83:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[    5.696921] ixgbe 0000:83:00.1: MAC: 3, PHY: 3, PBA No: 000000-000
[    5.696927] ixgbe 0000:83:00.1: 00:e0:ed:29:a4:f1
[    5.840835] ixgbe 0000:83:00.1: Intel(R) 10 Gigabit Network Connection
[    6.311392] random: init urandom read with 68 bits of entropy available
[    6.490657] init: plymouth-upstart-bridge main process (611) terminated with status 1
[    6.490665] init: plymouth-upstart-bridge main process ended, respawning
[    6.493785] init: plymouth-upstart-bridge main process (622) terminated with status 1
[    6.493793] init: plymouth-upstart-bridge main process ended, respawning
[    6.495907] init: plymouth-upstart-bridge main process (624) terminated with status 1
[    6.495914] init: plymouth-upstart-bridge main process ended, respawning
[    6.498819] init: plymouth-upstart-bridge main process (625) terminated with status 1
[    6.498826] init: plymouth-upstart-bridge main process ended, respawning
[    6.501112] init: plymouth-upstart-bridge main process (627) terminated with status 1
[    6.501119] init: plymouth-upstart-bridge main process ended, respawning
[    6.504449] init: plymouth-upstart-bridge main process (628) terminated with status 1
[    6.504456] init: plymouth-upstart-bridge main process ended, respawning
[    6.506374] init: plymouth-upstart-bridge main process (630) terminated with status 1
[    6.506380] init: plymouth-upstart-bridge main process ended, respawning
[    6.509144] init: plymouth-upstart-bridge main process (631) terminated with status 1
[    6.509151] init: plymouth-upstart-bridge main process ended, respawning
[    6.511141] init: plymouth-upstart-bridge main process (633) terminated with status 1
[    6.511149] init: plymouth-upstart-bridge main process ended, respawning
[    6.513736] init: plymouth-upstart-bridge main process (634) terminated with status 1
[    6.513743] init: plymouth-upstart-bridge main process ended, respawning
[    6.515464] init: plymouth-upstart-bridge main process (636) terminated with status 1
[    6.515471] init: plymouth-upstart-bridge respawning too fast, stopped
[    7.790795] random: nonblocking pool is initialized
[    7.965742] Adding 15998972k swap on /dev/sda5.  Priority:-1 extents:1 across:15998972k FS
[    8.136508] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    8.136514] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[    8.136519] IPv6: ADDRCONF(NETDEV_UP): eth2: link is not ready
[    8.136523] IPv6: ADDRCONF(NETDEV_UP): eth3: link is not ready
[    8.178224] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro
[    8.195088] systemd-udevd[797]: starting version 204
[    8.229591] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[    8.236235] lp: driver loaded but no devices found
[    8.368781] 8021q: 802.1Q VLAN Support v1.8
[    8.381475] IPMI System Interface driver.
[    8.381590] ipmi_si: probing via ACPI
[    8.381606] ipmi_si 00:09: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[    8.381608] ipmi_si: Adding ACPI-specified kcs state machine
[    8.381634] ipmi_si: probing via SMBIOS
[    8.381635] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[    8.381636] ipmi_si: Adding SMBIOS-specified kcs state machine duplicate interface
[    8.381639] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
[    8.387527] bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
[    8.401706] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    8.405600] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \GPE0 1 (20131115/utaddress-251)
[    8.405605] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.405608] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.GPL2 1 (20131115/utaddress-251)
[    8.405610] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.405704] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    8.417601] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[    8.417603] mei_me 0000:00:16.0: initialization failed.
[    8.426542] device-mapper: multipath: version 1.6.0 loaded
[    8.452630] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    8.452981] ioatdma 0000:00:04.0: irq 386 for MSI/MSI-X
[    8.453991] ioatdma 0000:00:04.1: irq 387 for MSI/MSI-X
[    8.454788] ioatdma 0000:00:04.2: irq 388 for MSI/MSI-X
[    8.455426] ioatdma 0000:00:04.3: irq 389 for MSI/MSI-X
[    8.456105] ioatdma 0000:00:04.4: irq 390 for MSI/MSI-X
[    8.456695] ioatdma 0000:00:04.5: irq 391 for MSI/MSI-X
[    8.457491] ioatdma 0000:00:04.6: irq 392 for MSI/MSI-X
[    8.458049] ioatdma 0000:00:04.7: irq 393 for MSI/MSI-X
[    8.458790] ioatdma 0000:80:04.0: irq 394 for MSI/MSI-X
[    8.459772] ioatdma 0000:80:04.1: irq 395 for MSI/MSI-X
[    8.460286] ioatdma 0000:80:04.2: irq 396 for MSI/MSI-X
[    8.460832] ioatdma 0000:80:04.3: irq 397 for MSI/MSI-X
[    8.461373] ioatdma 0000:80:04.4: irq 398 for MSI/MSI-X
[    8.461869] ioatdma 0000:80:04.5: irq 399 for MSI/MSI-X
[    8.462480] ioatdma 0000:80:04.6: irq 400 for MSI/MSI-X
[    8.463084] ioatdma 0000:80:04.7: irq 401 for MSI/MSI-X
[    8.478333] power_meter ACPI000D:00: Found ACPI power meter.
[    8.478423] power_meter ACPI000D:00: Ignoring unsafe software power cap!
[    8.479138] wmi: Mapper loaded
[    8.592436] ipmi_si 00:09: Found new BMC (man_id: 0x000077, prod_id: 0x0680, dev_id: 0x88)
[    8.592442] ipmi_si 00:09: IPMI kcs interface initialized
[    8.766422] systemd-udevd[918]: renamed network interface eth3 to p28p2
[    8.802433] systemd-udevd[895]: renamed network interface eth0 to p27p1
[    8.818399] systemd-udevd[901]: renamed network interface eth1 to p27p2
[    8.827389] type=1400 audit(1462940658.264:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1372 comm="apparmor_parser"
[    8.827393] type=1400 audit(1462940658.264:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1372 comm="apparmor_parser"
[    8.827395] type=1400 audit(1462940658.264:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1372 comm="apparmor_parser"
[    8.827402] type=1400 audit(1462940658.264:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=1371 comm="apparmor_parser"
[    8.827407] type=1400 audit(1462940658.264:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1371 comm="apparmor_parser"
[    8.827411] type=1400 audit(1462940658.264:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1371 comm="apparmor_parser"
[    8.827648] type=1400 audit(1462940658.264:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1372 comm="apparmor_parser"
[    8.827651] type=1400 audit(1462940658.264:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1372 comm="apparmor_parser"
[    8.827665] type=1400 audit(1462940658.264:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1371 comm="apparmor_parser"
[    8.827669] type=1400 audit(1462940658.264:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1371 comm="apparmor_parser"
[    8.842421] systemd-udevd[911]: renamed network interface eth2 to p28p1
[    8.853660] IPv6: ADDRCONF(NETDEV_UP): bond0: link is not ready
[    8.853662] 8021q: adding VLAN 0 to HW filter on device bond0
[    8.854062] 8021q: VLANs not supported on bond0
[    8.859049] bonding: bond1 is being created...
[    8.859955] 8021q: VLANs not supported on bond0
[    8.864960] 8021q: VLANs not supported on bond0
[    8.867193] ixgbe 0000:05:00.1 p27p2: changing MTU from 1500 to 9216
[    8.867690] ixgbe 0000:83:00.0 p28p1: changing MTU from 1500 to 9216
[    8.884493] bonding: bond0: Setting MII monitoring interval to 100.
[    8.884514] bonding: bond0: Setting down delay to 200.
[    8.884530] bonding: bond0: Setting up delay to 200.
[    8.886769] bonding: bond0: setting mode to active-backup (1).
[    8.887161] IPv6: ADDRCONF(NETDEV_UP): bond0: link is not ready
[    8.887163] 8021q: adding VLAN 0 to HW filter on device bond0
[    8.898527] bonding: bond1: Setting MII monitoring interval to 100.
[    8.898546] bonding: bond1: Setting down delay to 200.
[    8.898557] bonding: bond1: Setting up delay to 200.
[    8.901245] bonding: bond1: setting mode to active-backup (1).
[    8.901603] IPv6: ADDRCONF(NETDEV_UP): bond1: link is not ready
[    8.901605] 8021q: adding VLAN 0 to HW filter on device bond1
[    8.941781] bonding: bond0: Adding slave p27p1.
[    9.176127] pps pps0: new PPS source ptp0
[    9.176130] ixgbe 0000:05:00.0: registered PHC device on p27p1
[    9.577795] IPv6: ADDRCONF(NETDEV_UP): p27p1: link is not ready
[    9.577797] 8021q: adding VLAN 0 to HW filter on device p27p1
[    9.597928] bonding: bond0: enslaving p27p1 as a backup interface with a down link.
[    9.598134] bonding: bond0: Adding slave p28p2.
[    9.599529] gre: GRE over IPv4 demultiplexor driver
[    9.607494] openvswitch: Open vSwitch switching datapath
[    9.833735] pps pps1: new PPS source ptp1
[    9.833738] ixgbe 0000:83:00.1: registered PHC device on p28p2
[   10.235722] IPv6: ADDRCONF(NETDEV_UP): p28p2: link is not ready
[   10.235725] 8021q: adding VLAN 0 to HW filter on device p28p2
[   10.255857] bonding: bond0: enslaving p28p2 as a backup interface with a down link.
[   10.256042] bonding: bond0: Setting p27p1 as primary slave.
[   10.256588] bonding: bond1: Adding slave p27p2.
[   10.494236] pps pps2: new PPS source ptp2
[   10.494239] ixgbe 0000:05:00.1: registered PHC device on p27p2
[   10.897515] IPv6: ADDRCONF(NETDEV_UP): p27p2: link is not ready
[   10.897518] 8021q: adding VLAN 0 to HW filter on device p27p2
[   10.917707] bonding: bond1: enslaving p27p2 as a backup interface with a down link.
[   10.917712] bonding: bond1: Adding slave p28p1.
[   11.155489] pps pps3: new PPS source ptp3
[   11.155492] ixgbe 0000:83:00.0: registered PHC device on p28p1
[   11.558694] IPv6: ADDRCONF(NETDEV_UP): p28p1: link is not ready
[   11.558696] 8021q: adding VLAN 0 to HW filter on device p28p1
[   11.578881] bonding: bond1: enslaving p28p1 as a backup interface with a down link.
[   11.579596] bonding: bond1: Setting p27p2 as primary slave.
[   11.637027] IPv6: ADDRCONF(NETDEV_UP): bond0.201: link is not ready
[   11.638758] IPv6: ADDRCONF(NETDEV_UP): bond0.202: link is not ready
[   11.645082] IPv6: ADDRCONF(NETDEV_UP): bond0.203: link is not ready
[   11.671236] init: failsafe main process (1567) killed by TERM signal
[   11.764362] Loading iSCSI transport class v2.0-870.
[   11.778716] iscsi: registered transport (tcp)
[   11.818344] iscsi: registered transport (iser)

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

* RE: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-19  3:18       ` Gavin Guo
@ 2016-05-19 14:49         ` Jiang, Dave
  2016-05-19 17:22           ` Vinod Koul
  0 siblings, 1 reply; 10+ messages in thread
From: Jiang, Dave @ 2016-05-19 14:49 UTC (permalink / raw)
  To: Gavin Guo; +Cc: Koul, Vinod, dmaengine, linux-kernel, Williams, Dan J

> -----Original Message-----
> From: Gavin Guo [mailto:gavin.guo@canonical.com]
> Sent: Wednesday, May 18, 2016 8:19 PM
> To: Jiang, Dave <dave.jiang@intel.com>
> Cc: Koul, Vinod <vinod.koul@intel.com>; dmaengine@vger.kernel.org; linux-kernel@vger.kernel.org; Williams, Dan J
> <dan.j.williams@intel.com>
> Subject: Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
> 
> On Thu, May 19, 2016 at 12:49 AM, Jiang, Dave <dave.jiang@intel.com> wrote:
> > On Wed, 2016-05-18 at 13:27 +0000, Gavin Guo wrote:
> >> On Tue, May 17, 2016 at 6:06 PM, Vinod Koul <vinod.koul@intel.com>
> >> wrote:
> >> >
> >> > On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
> >> > >
> >> > > The following error messages can be observed on the Intel
> >> > > Haswell-E
> >> > > chipset with v3.13 kernel. After the analysis, I found there is
> >> > > no
> >> > > difference in the logic of these error messages in the current
> >> > > upstream kernel. I also searched the git log and can't find any
> >> > > commit
> >> > > which is fix to the error(correct me if I am wrong). The
> >> > > following is
> >> > > the detail, and I'll really appreciate if there is any comment.
> >> > > :)
> >> > 3.13 is ancient, can you check this on latest kernel
> >> Thank you for the comment. It's running on the production system.
> >> However,
> >> I'll try to figure out if it's possible to test the latest kernel.
> >
> > I wonder if you don't have the extended PCI config space access enabled
> > in your kernel config.
> 
> Really thanks for your advice. :)
> 
> I searched the internet about the extended PCI config space and found
> the link:
> 
> [Patch v2] Make PCI extended config space (MMCONFIG) a driver opt-in
> http://lwn.net/Articles/263288/

Can you try calling pci_enable_ext_config() in the PCI probe for your kernel? I just haven't seen this issue in the latest kernel. 

> 
> And I checked the config and found the CONFIG_PCI_MMCONFIG=y. The
> following string also can be observed in the dmesg:
> 
> [    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at
> [mem0x80000000-0x8fffffff] (base 0x80000000)
> [    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
> 
> It seems the extended PCI config space is enabled. If there is
> anything missed?
> 
> >
> >>
> >> >
> >> >
> >> > >
> >> > >
> >> > > ioatdma 0000:00:04.0: channel error register unreachable
> >> > > ioatdma 0000:00:04.0: channel enumeration error
> >> > > ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
> >> > > ioatdma 0000:00:04.1: channel error register unreachable
> >> > > ioatdma 0000:00:04.1: channel enumeration error
> >> > > ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
> >> > > ...
> >> > > ioatdma 0000:00:04.7: channel error register unreachable
> >> > > ioatdma 0000:00:04.7: channel enumeration error
> >> > > ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
> >> > > mei_me 0000:00:16.0: initialization failed.
> >> > >
> >> > > There are 8 I/OAT DMA controllers on the Haswell-E chipset:
> >> > > 8086:2f20 ~ 8086:2f27
> >> > > 80:04.0 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 0 (rev 02)
> >> > > 80:04.1 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 1 (rev 02)
> >> > > 80:04.2 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 2 (rev 02)
> >> > > 80:04.3 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 3 (rev 02)
> >> > > 80:04.4 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 4 (rev 02)
> >> > > 80:04.5 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 5 (rev 02)
> >> > > 80:04.6 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 6 (rev 02)
> >> > > 80:04.7 System peripheral: Intel Corporation Haswell-E DMA
> >> > > Channel 7 (rev 02)
> >> > >
> >> > > Analysis:
> >> > > The bug happens when the driver is resetting DMA controller, this
> >> > > is
> >> > > the sequence: The function, ioat_pci_probe, is called when the
> >> > > DMA
> >> > > controller is detected by the PCI bus. Then,
> >> > > ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
> >> > > ioat3_reset_hw. The following code can be found in the
> >> > > ioat3_reset_hw:
> >> > >
> >> > > drivers/dma/ioat/dma_v3.c:
> >> > >         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
> >> > >         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
> >> > > ...
> >> > >         err = pci_read_config_dword(pdev,
> >> > > IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
> >> > > if (err) {
> >> > > dev_err(&pdev->dev,
> >> > > "channel error register unreachable\n");
> >> > > return err;
> >> > > }
> >> > >
> >> > > Obviously, there are something wrong in the channel error
> >> > > register
> >> > > reset process. Then all the way back to ioat_probe(). Because the
> >> > > error happens, the dma->chancnt will be set to 0:
> >> > >
> >> > > drivers/dma/ioat/dma.c:
> >> > >         if (!dma->chancnt) {
> >> > >                 dev_err(dev, "channel enumeration error\n");
> >> > >                 goto err_setup_interrupts;
> >> > >         }
> >> > >
> >> > > Finally back to ioat_pci_probe:
> >> > >
> >> > > drivers/dma/ioat/pci.c:
> >> > >                 err = ioat3_dma_probe(device, ioat_dca_enabled);
> >> > >         else
> >> > >                 return -ENODEV;
> >> > >
> >> > >         if (err) {
> >> > >                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
> >> > > failed\n");
> >> > >                 return -ENODEV;
> >> > --
> >> > ~Vinod

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-19 14:49         ` Jiang, Dave
@ 2016-05-19 17:22           ` Vinod Koul
  2016-05-19 20:17             ` Jiang, Dave
  0 siblings, 1 reply; 10+ messages in thread
From: Vinod Koul @ 2016-05-19 17:22 UTC (permalink / raw)
  To: Jiang, Dave; +Cc: Gavin Guo, dmaengine, linux-kernel, Williams, Dan J

On Thu, May 19, 2016 at 08:19:30PM +0530, Jiang, Dave wrote:
> > -----Original Message-----
> > From: Gavin Guo [mailto:gavin.guo@canonical.com]
> > Sent: Wednesday, May 18, 2016 8:19 PM
> > To: Jiang, Dave <dave.jiang@intel.com>
> > Cc: Koul, Vinod <vinod.koul@intel.com>; dmaengine@vger.kernel.org; linux-kernel@vger.kernel.org; Williams, Dan J
> > <dan.j.williams@intel.com>
> > Subject: Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
> > 
> > On Thu, May 19, 2016 at 12:49 AM, Jiang, Dave <dave.jiang@intel.com> wrote:
> > > On Wed, 2016-05-18 at 13:27 +0000, Gavin Guo wrote:
> > >> On Tue, May 17, 2016 at 6:06 PM, Vinod Koul <vinod.koul@intel.com>
> > >> wrote:
> > >> >
> > >> > On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
> > >> > >
> > >> > > The following error messages can be observed on the Intel
> > >> > > Haswell-E
> > >> > > chipset with v3.13 kernel. After the analysis, I found there is
> > >> > > no
> > >> > > difference in the logic of these error messages in the current
> > >> > > upstream kernel. I also searched the git log and can't find any
> > >> > > commit
> > >> > > which is fix to the error(correct me if I am wrong). The
> > >> > > following is
> > >> > > the detail, and I'll really appreciate if there is any comment.
> > >> > > :)
> > >> > 3.13 is ancient, can you check this on latest kernel
> > >> Thank you for the comment. It's running on the production system.
> > >> However,
> > >> I'll try to figure out if it's possible to test the latest kernel.
> > >
> > > I wonder if you don't have the extended PCI config space access enabled
> > > in your kernel config.
> > 
> > Really thanks for your advice. :)
> > 
> > I searched the internet about the extended PCI config space and found
> > the link:
> > 
> > [Patch v2] Make PCI extended config space (MMCONFIG) a driver opt-in
> > http://lwn.net/Articles/263288/
> 
> Can you try calling pci_enable_ext_config() in the PCI probe for your kernel? I just haven't seen this issue in the latest kernel. 

Do we need that to be called explicitly by driver, should that not be enabled
by default?

> 
> > 
> > And I checked the config and found the CONFIG_PCI_MMCONFIG=y. The
> > following string also can be observed in the dmesg:
> > 
> > [    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at
> > [mem0x80000000-0x8fffffff] (base 0x80000000)
> > [    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
> > 
> > It seems the extended PCI config space is enabled. If there is
> > anything missed?
> > 
> > >
> > >>
> > >> >
> > >> >
> > >> > >
> > >> > >
> > >> > > ioatdma 0000:00:04.0: channel error register unreachable
> > >> > > ioatdma 0000:00:04.0: channel enumeration error
> > >> > > ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
> > >> > > ioatdma 0000:00:04.1: channel error register unreachable
> > >> > > ioatdma 0000:00:04.1: channel enumeration error
> > >> > > ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
> > >> > > ...
> > >> > > ioatdma 0000:00:04.7: channel error register unreachable
> > >> > > ioatdma 0000:00:04.7: channel enumeration error
> > >> > > ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
> > >> > > mei_me 0000:00:16.0: initialization failed.
> > >> > >
> > >> > > There are 8 I/OAT DMA controllers on the Haswell-E chipset:
> > >> > > 8086:2f20 ~ 8086:2f27
> > >> > > 80:04.0 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 0 (rev 02)
> > >> > > 80:04.1 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 1 (rev 02)
> > >> > > 80:04.2 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 2 (rev 02)
> > >> > > 80:04.3 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 3 (rev 02)
> > >> > > 80:04.4 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 4 (rev 02)
> > >> > > 80:04.5 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 5 (rev 02)
> > >> > > 80:04.6 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 6 (rev 02)
> > >> > > 80:04.7 System peripheral: Intel Corporation Haswell-E DMA
> > >> > > Channel 7 (rev 02)
> > >> > >
> > >> > > Analysis:
> > >> > > The bug happens when the driver is resetting DMA controller, this
> > >> > > is
> > >> > > the sequence: The function, ioat_pci_probe, is called when the
> > >> > > DMA
> > >> > > controller is detected by the PCI bus. Then,
> > >> > > ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
> > >> > > ioat3_reset_hw. The following code can be found in the
> > >> > > ioat3_reset_hw:
> > >> > >
> > >> > > drivers/dma/ioat/dma_v3.c:
> > >> > >         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
> > >> > >         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
> > >> > > ...
> > >> > >         err = pci_read_config_dword(pdev,
> > >> > > IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
> > >> > > if (err) {
> > >> > > dev_err(&pdev->dev,
> > >> > > "channel error register unreachable\n");
> > >> > > return err;
> > >> > > }
> > >> > >
> > >> > > Obviously, there are something wrong in the channel error
> > >> > > register
> > >> > > reset process. Then all the way back to ioat_probe(). Because the
> > >> > > error happens, the dma->chancnt will be set to 0:
> > >> > >
> > >> > > drivers/dma/ioat/dma.c:
> > >> > >         if (!dma->chancnt) {
> > >> > >                 dev_err(dev, "channel enumeration error\n");
> > >> > >                 goto err_setup_interrupts;
> > >> > >         }
> > >> > >
> > >> > > Finally back to ioat_pci_probe:
> > >> > >
> > >> > > drivers/dma/ioat/pci.c:
> > >> > >                 err = ioat3_dma_probe(device, ioat_dca_enabled);
> > >> > >         else
> > >> > >                 return -ENODEV;
> > >> > >
> > >> > >         if (err) {
> > >> > >                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
> > >> > > failed\n");
> > >> > >                 return -ENODEV;
> > >> > --
> > >> > ~Vinod

-- 
~Vinod

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

* RE: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-19 17:22           ` Vinod Koul
@ 2016-05-19 20:17             ` Jiang, Dave
  2016-05-19 22:17               ` Yinghai Lu
  0 siblings, 1 reply; 10+ messages in thread
From: Jiang, Dave @ 2016-05-19 20:17 UTC (permalink / raw)
  To: Koul, Vinod; +Cc: Gavin Guo, dmaengine, linux-kernel, Williams, Dan J



> -----Original Message-----
> From: Koul, Vinod
> Sent: Thursday, May 19, 2016 10:23 AM
> To: Jiang, Dave <dave.jiang@intel.com>
> Cc: Gavin Guo <gavin.guo@canonical.com>; dmaengine@vger.kernel.org; linux-kernel@vger.kernel.org; Williams, Dan J
> <dan.j.williams@intel.com>
> Subject: Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
> 
> On Thu, May 19, 2016 at 08:19:30PM +0530, Jiang, Dave wrote:
> > > -----Original Message-----
> > > From: Gavin Guo [mailto:gavin.guo@canonical.com]
> > > Sent: Wednesday, May 18, 2016 8:19 PM
> > > To: Jiang, Dave <dave.jiang@intel.com>
> > > Cc: Koul, Vinod <vinod.koul@intel.com>; dmaengine@vger.kernel.org; linux-kernel@vger.kernel.org; Williams, Dan J
> > > <dan.j.williams@intel.com>
> > > Subject: Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
> > >
> > > On Thu, May 19, 2016 at 12:49 AM, Jiang, Dave <dave.jiang@intel.com> wrote:
> > > > On Wed, 2016-05-18 at 13:27 +0000, Gavin Guo wrote:
> > > >> On Tue, May 17, 2016 at 6:06 PM, Vinod Koul <vinod.koul@intel.com>
> > > >> wrote:
> > > >> >
> > > >> > On Mon, May 16, 2016 at 06:08:20PM +0800, Gavin Guo wrote:
> > > >> > >
> > > >> > > The following error messages can be observed on the Intel
> > > >> > > Haswell-E
> > > >> > > chipset with v3.13 kernel. After the analysis, I found there is
> > > >> > > no
> > > >> > > difference in the logic of these error messages in the current
> > > >> > > upstream kernel. I also searched the git log and can't find any
> > > >> > > commit
> > > >> > > which is fix to the error(correct me if I am wrong). The
> > > >> > > following is
> > > >> > > the detail, and I'll really appreciate if there is any comment.
> > > >> > > :)
> > > >> > 3.13 is ancient, can you check this on latest kernel
> > > >> Thank you for the comment. It's running on the production system.
> > > >> However,
> > > >> I'll try to figure out if it's possible to test the latest kernel.
> > > >
> > > > I wonder if you don't have the extended PCI config space access enabled
> > > > in your kernel config.
> > >
> > > Really thanks for your advice. :)
> > >
> > > I searched the internet about the extended PCI config space and found
> > > the link:
> > >
> > > [Patch v2] Make PCI extended config space (MMCONFIG) a driver opt-in
> > > http://lwn.net/Articles/263288/
> >
> > Can you try calling pci_enable_ext_config() in the PCI probe for your kernel? I just haven't seen this issue in the latest kernel.
> 
> Do we need that to be called explicitly by driver, should that not be enabled
> by default?

It used to be but the patch seems to indicate it's an opt in thing. But what I don't get is I have never encountered this issue. 

> 
> >
> > >
> > > And I checked the config and found the CONFIG_PCI_MMCONFIG=y. The
> > > following string also can be observed in the dmesg:
> > >
> > > [    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at
> > > [mem0x80000000-0x8fffffff] (base 0x80000000)
> > > [    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
> > >
> > > It seems the extended PCI config space is enabled. If there is
> > > anything missed?
> > >
> > > >
> > > >>
> > > >> >
> > > >> >
> > > >> > >
> > > >> > >
> > > >> > > ioatdma 0000:00:04.0: channel error register unreachable
> > > >> > > ioatdma 0000:00:04.0: channel enumeration error
> > > >> > > ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
> > > >> > > ioatdma 0000:00:04.1: channel error register unreachable
> > > >> > > ioatdma 0000:00:04.1: channel enumeration error
> > > >> > > ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
> > > >> > > ...
> > > >> > > ioatdma 0000:00:04.7: channel error register unreachable
> > > >> > > ioatdma 0000:00:04.7: channel enumeration error
> > > >> > > ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
> > > >> > > mei_me 0000:00:16.0: initialization failed.
> > > >> > >
> > > >> > > There are 8 I/OAT DMA controllers on the Haswell-E chipset:
> > > >> > > 8086:2f20 ~ 8086:2f27
> > > >> > > 80:04.0 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 0 (rev 02)
> > > >> > > 80:04.1 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 1 (rev 02)
> > > >> > > 80:04.2 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 2 (rev 02)
> > > >> > > 80:04.3 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 3 (rev 02)
> > > >> > > 80:04.4 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 4 (rev 02)
> > > >> > > 80:04.5 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 5 (rev 02)
> > > >> > > 80:04.6 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 6 (rev 02)
> > > >> > > 80:04.7 System peripheral: Intel Corporation Haswell-E DMA
> > > >> > > Channel 7 (rev 02)
> > > >> > >
> > > >> > > Analysis:
> > > >> > > The bug happens when the driver is resetting DMA controller, this
> > > >> > > is
> > > >> > > the sequence: The function, ioat_pci_probe, is called when the
> > > >> > > DMA
> > > >> > > controller is detected by the PCI bus. Then,
> > > >> > > ioat3_dma_probe -> ioat_probe -> ioat2_enumerate_channels ->
> > > >> > > ioat3_reset_hw. The following code can be found in the
> > > >> > > ioat3_reset_hw:
> > > >> > >
> > > >> > > drivers/dma/ioat/dma_v3.c:
> > > >> > >         chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET);
> > > >> > >         writel(chanerr, chan->reg_base + IOAT_CHANERR_OFFSET);
> > > >> > > ...
> > > >> > >         err = pci_read_config_dword(pdev,
> > > >> > > IOAT_PCI_CHANERR_INT_OFFSET, &chanerr);
> > > >> > > if (err) {
> > > >> > > dev_err(&pdev->dev,
> > > >> > > "channel error register unreachable\n");
> > > >> > > return err;
> > > >> > > }
> > > >> > >
> > > >> > > Obviously, there are something wrong in the channel error
> > > >> > > register
> > > >> > > reset process. Then all the way back to ioat_probe(). Because the
> > > >> > > error happens, the dma->chancnt will be set to 0:
> > > >> > >
> > > >> > > drivers/dma/ioat/dma.c:
> > > >> > >         if (!dma->chancnt) {
> > > >> > >                 dev_err(dev, "channel enumeration error\n");
> > > >> > >                 goto err_setup_interrupts;
> > > >> > >         }
> > > >> > >
> > > >> > > Finally back to ioat_pci_probe:
> > > >> > >
> > > >> > > drivers/dma/ioat/pci.c:
> > > >> > >                 err = ioat3_dma_probe(device, ioat_dca_enabled);
> > > >> > >         else
> > > >> > >                 return -ENODEV;
> > > >> > >
> > > >> > >         if (err) {
> > > >> > >                 dev_err(dev, "Intel(R) I/OAT DMA Engine init
> > > >> > > failed\n");
> > > >> > >                 return -ENODEV;
> > > >> > --
> > > >> > ~Vinod
> 
> --
> ~Vinod

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-19 20:17             ` Jiang, Dave
@ 2016-05-19 22:17               ` Yinghai Lu
  2016-05-25  6:57                 ` Gavin Guo
  0 siblings, 1 reply; 10+ messages in thread
From: Yinghai Lu @ 2016-05-19 22:17 UTC (permalink / raw)
  To: Jiang, Dave
  Cc: Koul, Vinod, Gavin Guo, dmaengine, linux-kernel, Williams, Dan J

On Thu, May 19, 2016 at 1:17 PM, Jiang, Dave <dave.jiang@intel.com> wrote:
>> > > And I checked the config and found the CONFIG_PCI_MMCONFIG=y. The
>> > > following string also can be observed in the dmesg:
>> > >
>> > > [    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at
>> > > [mem0x80000000-0x8fffffff] (base 0x80000000)
>> > > [    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
>> > >
>> > > It seems the extended PCI config space is enabled. If there is
>> > > anything missed?

how about output for  "lspci -vvxxxx" ?

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

* Re: ioatdma(Intel(R) I/OAT DMA Engine init failed)
  2016-05-19 22:17               ` Yinghai Lu
@ 2016-05-25  6:57                 ` Gavin Guo
  0 siblings, 0 replies; 10+ messages in thread
From: Gavin Guo @ 2016-05-25  6:57 UTC (permalink / raw)
  To: Yinghai Lu
  Cc: Jiang, Dave, Koul, Vinod, dmaengine, linux-kernel, Williams, Dan J

On Fri, May 20, 2016 at 6:17 AM, Yinghai Lu <yinghai@kernel.org> wrote:
> On Thu, May 19, 2016 at 1:17 PM, Jiang, Dave <dave.jiang@intel.com> wrote:
>>> > > And I checked the config and found the CONFIG_PCI_MMCONFIG=y. The
>>> > > following string also can be observed in the dmesg:
>>> > >
>>> > > [    1.419853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at
>>> > > [mem0x80000000-0x8fffffff] (base 0x80000000)
>>> > > [    1.419855] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
>>> > >
>>> > > It seems the extended PCI config space is enabled. If there is
>>> > > anything missed?
>
> how about output for  "lspci -vvxxxx" ?

Sorry that my client is slow in response. I'll bring it up if I
receive any information.

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

end of thread, other threads:[~2016-05-25  6:57 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-16 10:08 ioatdma(Intel(R) I/OAT DMA Engine init failed) Gavin Guo
2016-05-17 10:06 ` Vinod Koul
2016-05-18 13:27   ` Gavin Guo
2016-05-18 16:49     ` Jiang, Dave
2016-05-19  3:18       ` Gavin Guo
2016-05-19 14:49         ` Jiang, Dave
2016-05-19 17:22           ` Vinod Koul
2016-05-19 20:17             ` Jiang, Dave
2016-05-19 22:17               ` Yinghai Lu
2016-05-25  6:57                 ` Gavin Guo

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).