public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [Bugfix]
@ 2015-07-30 16:44 Jiang Liu
  2015-07-30 16:46 ` [Bugfix] Jiang Liu
  2015-07-30 18:34 ` [Bugfix] Alex Deucher
  0 siblings, 2 replies; 3+ messages in thread
From: Jiang Liu @ 2015-07-30 16:44 UTC (permalink / raw)
  To: Thomas Gleixner, Alexander Holler, Mark Rustad, Alex Deucher,
	Joerg Roedel
  Cc: Jiang Liu, Tony Luck, Tejun Heo, linux-kernel, x86, iommu

Hi Alexander, Mark, Alex,
	Could you please help to apply the debug patch and send me back
the dmesg? Please also help to turn kernel paramemter "apic=debug".

Hi Mark,
	It seems that this regression is caused by support of multiple-MSI,
but I have no PCI card supportting multiple-MSI at hand. So may I remotely
access your system from Intel internal network?  That will definitely speed
up fix.
Thanks!
Gerry

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
---
 drivers/iommu/amd_iommu.c           |   15 +++++++++++++--
 drivers/iommu/intel_irq_remapping.c |    4 ++++
 2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
index a57e9b749895..c039ed9333a4 100644
--- a/drivers/iommu/amd_iommu.c
+++ b/drivers/iommu/amd_iommu.c
@@ -3916,8 +3916,8 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
 	union irte *irte = &data->irte_entry;
 	struct IO_APIC_route_entry *entry;
 
-	data->irq_2_irte.devid = devid;
-	data->irq_2_irte.index = index + sub_handle;
+	irte_info->devid = devid;
+	irte_info->index = index + sub_handle;
 
 	/* Setup IRTE for IOMMU */
 	irte->val = 0;
@@ -3926,6 +3926,10 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
 	irte->fields.destination = irq_cfg->dest_apicid;
 	irte->fields.dm          = apic->irq_dest_mode;
 	irte->fields.valid       = 1;
+	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
+		pr_warn("irqdomain: IRTE%d vector %d APICID%d data%p cfg%p\n",
+			irte_info->index, irte->fields.vector,
+			irte->fields.destination, data, irq_cfg);
 
 	switch (info->type) {
 	case X86_IRQ_ALLOC_TYPE_IOAPIC:
@@ -3972,6 +3976,9 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
 	    info->type != X86_IRQ_ALLOC_TYPE_MSIX)
 		return -EINVAL;
 
+	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
+		pr_warn("irqdomain: allocate %d MSI IRQ, VIRQ%d\n", nr_irqs, virq);
+
 	/*
 	 * With IRQ remapping enabled, don't need contiguous CPU vectors
 	 * to support multiple MSI interrupts.
@@ -3986,6 +3993,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
 	ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
 	if (ret < 0)
 		return ret;
+	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
+		pr_warn("irqdomain: allocate parent returns %d\n", ret);
 
 	ret = -ENOMEM;
 	data = kzalloc(sizeof(*data), GFP_KERNEL);
@@ -4005,6 +4014,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
 		kfree(data);
 		goto out_free_parent;
 	}
+	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
+		pr_warn("irqdomain: allocate IRTE index %d\n", index);
 
 	for (i = 0; i < nr_irqs; i++) {
 		irq_data = irq_domain_get_irq_data(domain, virq + i);
diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index f15692a410c7..bb093bc6b334 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -1234,6 +1234,8 @@ static void intel_irq_remapping_prepare_irte(struct intel_ir_data *data,
 				  MSI_ADDR_IR_SHV |
 				  MSI_ADDR_IR_INDEX1(index) |
 				  MSI_ADDR_IR_INDEX2(index);
+		if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
+			pr_warn("irqdomain: allocate index%d, subhandle%d, irte%llx,%llx\n", index, sub_handle, irte->high, irte->low);
 		break;
 
 	default:
@@ -1305,6 +1307,8 @@ static int intel_irq_remapping_alloc(struct irq_domain *domain,
 		kfree(data);
 		goto out_free_parent;
 	}
+	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
+		pr_warn("irqdomain: allocate VIRQ%d, count%d, index%d\n", virq, nr_irqs, index);
 
 	for (i = 0; i < nr_irqs; i++) {
 		irq_data = irq_domain_get_irq_data(domain, virq + i);
-- 
1.7.10.4


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

* Re: [Bugfix]
  2015-07-30 16:44 [Bugfix] Jiang Liu
@ 2015-07-30 16:46 ` Jiang Liu
  2015-07-30 18:34 ` [Bugfix] Alex Deucher
  1 sibling, 0 replies; 3+ messages in thread
From: Jiang Liu @ 2015-07-30 16:46 UTC (permalink / raw)
  To: Thomas Gleixner, Alexander Holler, Mark Rustad, Alex Deucher,
	Joerg Roedel
  Cc: Tony Luck, Tejun Heo, linux-kernel, x86, iommu

Hi all,
	Sorry, send email too quick. Will resend with correct title.
Thanks!
Gerry

On 2015/7/31 0:44, Jiang Liu wrote:
> Hi Alexander, Mark, Alex,
> 	Could you please help to apply the debug patch and send me back
> the dmesg? Please also help to turn kernel paramemter "apic=debug".
> 
> Hi Mark,
> 	It seems that this regression is caused by support of multiple-MSI,
> but I have no PCI card supportting multiple-MSI at hand. So may I remotely
> access your system from Intel internal network?  That will definitely speed
> up fix.
> Thanks!
> Gerry
> 
> Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
> ---
>  drivers/iommu/amd_iommu.c           |   15 +++++++++++++--
>  drivers/iommu/intel_irq_remapping.c |    4 ++++
>  2 files changed, 17 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
> index a57e9b749895..c039ed9333a4 100644
> --- a/drivers/iommu/amd_iommu.c
> +++ b/drivers/iommu/amd_iommu.c
> @@ -3916,8 +3916,8 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
>  	union irte *irte = &data->irte_entry;
>  	struct IO_APIC_route_entry *entry;
>  
> -	data->irq_2_irte.devid = devid;
> -	data->irq_2_irte.index = index + sub_handle;
> +	irte_info->devid = devid;
> +	irte_info->index = index + sub_handle;
>  
>  	/* Setup IRTE for IOMMU */
>  	irte->val = 0;
> @@ -3926,6 +3926,10 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
>  	irte->fields.destination = irq_cfg->dest_apicid;
>  	irte->fields.dm          = apic->irq_dest_mode;
>  	irte->fields.valid       = 1;
> +	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +		pr_warn("irqdomain: IRTE%d vector %d APICID%d data%p cfg%p\n",
> +			irte_info->index, irte->fields.vector,
> +			irte->fields.destination, data, irq_cfg);
>  
>  	switch (info->type) {
>  	case X86_IRQ_ALLOC_TYPE_IOAPIC:
> @@ -3972,6 +3976,9 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
>  	    info->type != X86_IRQ_ALLOC_TYPE_MSIX)
>  		return -EINVAL;
>  
> +	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +		pr_warn("irqdomain: allocate %d MSI IRQ, VIRQ%d\n", nr_irqs, virq);
> +
>  	/*
>  	 * With IRQ remapping enabled, don't need contiguous CPU vectors
>  	 * to support multiple MSI interrupts.
> @@ -3986,6 +3993,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
>  	ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
>  	if (ret < 0)
>  		return ret;
> +	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +		pr_warn("irqdomain: allocate parent returns %d\n", ret);
>  
>  	ret = -ENOMEM;
>  	data = kzalloc(sizeof(*data), GFP_KERNEL);
> @@ -4005,6 +4014,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
>  		kfree(data);
>  		goto out_free_parent;
>  	}
> +	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +		pr_warn("irqdomain: allocate IRTE index %d\n", index);
>  
>  	for (i = 0; i < nr_irqs; i++) {
>  		irq_data = irq_domain_get_irq_data(domain, virq + i);
> diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
> index f15692a410c7..bb093bc6b334 100644
> --- a/drivers/iommu/intel_irq_remapping.c
> +++ b/drivers/iommu/intel_irq_remapping.c
> @@ -1234,6 +1234,8 @@ static void intel_irq_remapping_prepare_irte(struct intel_ir_data *data,
>  				  MSI_ADDR_IR_SHV |
>  				  MSI_ADDR_IR_INDEX1(index) |
>  				  MSI_ADDR_IR_INDEX2(index);
> +		if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +			pr_warn("irqdomain: allocate index%d, subhandle%d, irte%llx,%llx\n", index, sub_handle, irte->high, irte->low);
>  		break;
>  
>  	default:
> @@ -1305,6 +1307,8 @@ static int intel_irq_remapping_alloc(struct irq_domain *domain,
>  		kfree(data);
>  		goto out_free_parent;
>  	}
> +	if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +		pr_warn("irqdomain: allocate VIRQ%d, count%d, index%d\n", virq, nr_irqs, index);
>  
>  	for (i = 0; i < nr_irqs; i++) {
>  		irq_data = irq_domain_get_irq_data(domain, virq + i);
> 

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

* Re: [Bugfix]
  2015-07-30 16:44 [Bugfix] Jiang Liu
  2015-07-30 16:46 ` [Bugfix] Jiang Liu
@ 2015-07-30 18:34 ` Alex Deucher
  1 sibling, 0 replies; 3+ messages in thread
From: Alex Deucher @ 2015-07-30 18:34 UTC (permalink / raw)
  To: Jiang Liu
  Cc: Thomas Gleixner, Alexander Holler, Mark Rustad, Joerg Roedel,
	Tony Luck, Tejun Heo, LKML, x86, iommu

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

On Thu, Jul 30, 2015 at 12:44 PM, Jiang Liu <jiang.liu@linux.intel.com> wrote:
> Hi Alexander, Mark, Alex,
>         Could you please help to apply the debug patch and send me back
> the dmesg? Please also help to turn kernel paramemter "apic=debug".

See attached.

Thanks,

Alex

>
> Hi Mark,
>         It seems that this regression is caused by support of multiple-MSI,
> but I have no PCI card supportting multiple-MSI at hand. So may I remotely
> access your system from Intel internal network?  That will definitely speed
> up fix.
> Thanks!
> Gerry
>
> Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
> ---
>  drivers/iommu/amd_iommu.c           |   15 +++++++++++++--
>  drivers/iommu/intel_irq_remapping.c |    4 ++++
>  2 files changed, 17 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
> index a57e9b749895..c039ed9333a4 100644
> --- a/drivers/iommu/amd_iommu.c
> +++ b/drivers/iommu/amd_iommu.c
> @@ -3916,8 +3916,8 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
>         union irte *irte = &data->irte_entry;
>         struct IO_APIC_route_entry *entry;
>
> -       data->irq_2_irte.devid = devid;
> -       data->irq_2_irte.index = index + sub_handle;
> +       irte_info->devid = devid;
> +       irte_info->index = index + sub_handle;
>
>         /* Setup IRTE for IOMMU */
>         irte->val = 0;
> @@ -3926,6 +3926,10 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
>         irte->fields.destination = irq_cfg->dest_apicid;
>         irte->fields.dm          = apic->irq_dest_mode;
>         irte->fields.valid       = 1;
> +       if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +               pr_warn("irqdomain: IRTE%d vector %d APICID%d data%p cfg%p\n",
> +                       irte_info->index, irte->fields.vector,
> +                       irte->fields.destination, data, irq_cfg);
>
>         switch (info->type) {
>         case X86_IRQ_ALLOC_TYPE_IOAPIC:
> @@ -3972,6 +3976,9 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
>             info->type != X86_IRQ_ALLOC_TYPE_MSIX)
>                 return -EINVAL;
>
> +       if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +               pr_warn("irqdomain: allocate %d MSI IRQ, VIRQ%d\n", nr_irqs, virq);
> +
>         /*
>          * With IRQ remapping enabled, don't need contiguous CPU vectors
>          * to support multiple MSI interrupts.
> @@ -3986,6 +3993,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
>         ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
>         if (ret < 0)
>                 return ret;
> +       if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +               pr_warn("irqdomain: allocate parent returns %d\n", ret);
>
>         ret = -ENOMEM;
>         data = kzalloc(sizeof(*data), GFP_KERNEL);
> @@ -4005,6 +4014,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
>                 kfree(data);
>                 goto out_free_parent;
>         }
> +       if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +               pr_warn("irqdomain: allocate IRTE index %d\n", index);
>
>         for (i = 0; i < nr_irqs; i++) {
>                 irq_data = irq_domain_get_irq_data(domain, virq + i);
> diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
> index f15692a410c7..bb093bc6b334 100644
> --- a/drivers/iommu/intel_irq_remapping.c
> +++ b/drivers/iommu/intel_irq_remapping.c
> @@ -1234,6 +1234,8 @@ static void intel_irq_remapping_prepare_irte(struct intel_ir_data *data,
>                                   MSI_ADDR_IR_SHV |
>                                   MSI_ADDR_IR_INDEX1(index) |
>                                   MSI_ADDR_IR_INDEX2(index);
> +               if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +                       pr_warn("irqdomain: allocate index%d, subhandle%d, irte%llx,%llx\n", index, sub_handle, irte->high, irte->low);
>                 break;
>
>         default:
> @@ -1305,6 +1307,8 @@ static int intel_irq_remapping_alloc(struct irq_domain *domain,
>                 kfree(data);
>                 goto out_free_parent;
>         }
> +       if (info->type == X86_IRQ_ALLOC_TYPE_MSI)
> +               pr_warn("irqdomain: allocate VIRQ%d, count%d, index%d\n", virq, nr_irqs, index);
>
>         for (i = 0; i < nr_irqs; i++) {
>                 irq_data = irq_domain_get_irq_data(domain, virq + i);
> --
> 1.7.10.4
>

[-- Attachment #2: dmesg.apic-debug --]
[-- Type: application/octet-stream, Size: 74262 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.2.0-rc3+ (alex@cm) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #801 SMP Thu Jul 30 14:05:58 EDT 2015
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.2.0-rc3+ root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/swap rd.md=0 rd.dm=0 vconsole.keymap=us rd.luks=0 vconsole.font=latarcyrheb-sun16 rd.lvm.lv=fedora/root LANG=en_US.UTF-8 modprobe.blacklist=amdgpu,radeon apic=debug 3
[    0.000000] tseg: 007f800000
[    0.000000] x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
[    0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 0x340 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007bc3afff] usable
[    0.000000] BIOS-e820: [mem 0x000000007bc3b000-0x000000007bc6afff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007bc6b000-0x000000007bf29fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007bf2a000-0x000000007bfe5fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007bfe6000-0x000000007e10afff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007e10b000-0x000000007e10bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007e10c000-0x000000007e311fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007e312000-0x000000007e467fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007e468000-0x000000007f02efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007f02f000-0x000000007f071fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f072000-0x000000007f7f0fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007f7f1000-0x000000007f7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./FM2A88X Extreme6+, BIOS P2.70 01/15/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x43f000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF write-through
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 00007F800000 mask FFFFFF800000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 000000043f000000 aka 17392M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: update [mem 0x7f800000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x7f800 max_arch_pfn = 0x400000000
[    0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[    0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[    0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[    0.000000] found SMP MP-table at [mem 0x000fd8a0-0x000fd8af] mapped at [ffff8800000fd8a0]
[    0.000000]   mpc: fd560-fd824
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 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 [0x02019000, 0x02019fff] PGTABLE
[    0.000000] BRK [0x0201a000, 0x0201afff] PGTABLE
[    0.000000] BRK [0x0201b000, 0x0201bfff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x43ee00000-0x43effffff]
[    0.000000]  [mem 0x43ee00000-0x43effffff] page 2M
[    0.000000] BRK [0x0201c000, 0x0201cfff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x420000000-0x43edfffff]
[    0.000000]  [mem 0x420000000-0x43edfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x400000000-0x41fffffff]
[    0.000000]  [mem 0x400000000-0x41fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x7bc3afff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x7bbfffff] page 2M
[    0.000000]  [mem 0x7bc00000-0x7bc3afff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7bc6b000-0x7bf29fff]
[    0.000000]  [mem 0x7bc6b000-0x7bf29fff] page 4k
[    0.000000] BRK [0x0201d000, 0x0201dfff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x7e10b000-0x7e10bfff]
[    0.000000]  [mem 0x7e10b000-0x7e10bfff] page 4k
[    0.000000] BRK [0x0201e000, 0x0201efff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x7e312000-0x7e467fff]
[    0.000000]  [mem 0x7e312000-0x7e467fff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7f02f000-0x7f071fff]
[    0.000000]  [mem 0x7f02f000-0x7f071fff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7f7f1000-0x7f7fffff]
[    0.000000]  [mem 0x7f7f1000-0x7f7fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[    0.000000]  [mem 0x100000000-0x3ffffffff] page 1G
[    0.000000] RAMDISK: [mem 0x34dec000-0x366edfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F04A0 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x000000007BFAE080 00007C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x000000007BFB40E8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20150619/tbfadt-654)
[    0.000000] ACPI: DSDT 0x000000007BFAE190 005F58 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0x000000007BFDC080 000040
[    0.000000] ACPI: APIC 0x000000007BFB41F8 00007E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x000000007BFB4278 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x000000007BFB42C0 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: HPET 0x000000007BFB4300 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: AAFT 0x000000007BFB4338 0002F5 (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
[    0.000000] ACPI: IVRS 0x000000007BFB4630 000078 (v02 AMD    BANTRY   00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x000000007BFB46A8 000B9C (v01 AMD    BANTRY   00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x000000007BFB5248 00033B (v02 AMD    BANTRY   00000002 MSFT 04000000)
[    0.000000] ACPI: CRAT 0x000000007BFB5588 0005A0 (v01 AMD    BANTRY   00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x000000007BFB5B28 001115 (v01 AMD    CPMCMN   00000001 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to ffffffffff5fa000 (        fee00000)
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000043effffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x43efe6000-0x43eff9fff]
[    0.000000]  [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f600000-ffff88043e5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000043effffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000007bc3afff]
[    0.000000]   node   0: [mem 0x000000007bc6b000-0x000000007bf29fff]
[    0.000000]   node   0: [mem 0x000000007e10b000-0x000000007e10bfff]
[    0.000000]   node   0: [mem 0x000000007e312000-0x000000007e467fff]
[    0.000000]   node   0: [mem 0x000000007f02f000-0x000000007f071fff]
[    0.000000]   node   0: [mem 0x000000007f7f1000-0x000000007f7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000043effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000043effffff]
[    0.000000] On node 0 totalpages: 3911744
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7875 pages used for memmap
[    0.000000]   DMA32 zone: 503971 pages, LIFO batch:31
[    0.000000]   Normal zone: 53184 pages used for memmap
[    0.000000]   Normal zone: 3403776 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] mapped APIC to ffffffffff5fa000 (        fee00000)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 6, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 5, APIC INT 02
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] Int: type 0, pol 3, trig 3, bus 00, IRQ 09, APIC ID 5, APIC INT 09
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 5, APIC INT 01
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 5, APIC INT 03
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 5, APIC INT 04
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 5, APIC INT 05
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 5, APIC INT 06
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 5, APIC INT 07
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 5, APIC INT 08
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 5, APIC INT 0a
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 5, APIC INT 0b
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 5, APIC INT 0c
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 5, APIC INT 0d
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 5, APIC INT 0e
[    0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 5, APIC INT 0f
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228210 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] mapped IOAPIC to ffffffffff5f9000 (fec00000)
[    0.000000] mapped IOAPIC to ffffffffff5f8000 (fec01000)
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bc3b000-0x7bc6afff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bf2a000-0x7bfe5fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7bfe6000-0x7e10afff]
[    0.000000] PM: Registered nosave memory: [mem 0x7e10c000-0x7e311fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7e468000-0x7f02efff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f072000-0x7f7f0fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f800000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xff7fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
[    0.000000] e820: [mem 0x7f800000-0xfebfffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 33 pages/cpu @ffff88043ec00000 s95512 r8192 d31464 u524288
[    0.000000] pcpu-alloc: s95512 r8192 d31464 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 3850600
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.2.0-rc3+ root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/swap rd.md=0 rd.dm=0 vconsole.keymap=us rd.luks=0 vconsole.font=latarcyrheb-sun16 rd.lvm.lv=fedora/root LANG=en_US.UTF-8 modprobe.blacklist=amdgpu,radeon apic=debug 3
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Memory: 15292176K/15646976K available (7209K kernel code, 1204K rwdata, 3220K rodata, 1520K init, 1428K bss, 354800K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:8448 nr_irqs:1000 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: PIT calibration matches HPET. 1 loops
[    0.000000] tsc: Detected 3693.296 MHz processor
[    0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 7386.59 BogoMIPS (lpj=3693296)
[    0.000188] pid_max: default: 32768 minimum: 301
[    0.000274] ACPI: Core revision 20150619
[    0.003550] ACPI: All ACPI Tables successfully acquired
[    0.003697] Security Framework initialized
[    0.003778] SELinux:  Initializing.
[    0.003863] SELinux:  Starting in permissive mode
[    0.004842] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.009398] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.011476] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.011577] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.012003] Initializing cgroup subsys blkio
[    0.012089] Initializing cgroup subsys devices
[    0.012172] Initializing cgroup subsys freezer
[    0.012255] Initializing cgroup subsys net_cls
[    0.012338] Initializing cgroup subsys perf_event
[    0.012450] CPU: Physical Processor ID: 0
[    0.012531] CPU: Processor Core ID: 0
[    0.012613] mce: CPU supports 7 MCE banks
[    0.012699] LVT offset 1 assigned for vector 0xf9
[    0.012785] Last level iTLB entries: 4KB 512, 2MB 1024, 4MB 512
[    0.012868] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 512, 1GB 0
[    0.013050] Freeing SMP alternatives memory: 28K (ffffffff81eab000 - ffffffff81eb2000)
[    0.021644] ftrace: allocating 27833 entries in 109 pages
[    0.110488] enabled ExtINT on CPU#0
[    0.110799] ENABLING IO-APIC IRQs
[    0.110882] init IO_APIC IRQs
[    0.110883]  apic 5 pin 0 not connected
[    0.110895] IOAPIC[0]: Set routing entry (5-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[    0.110899] IOAPIC[0]: Set routing entry (5-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[    0.110903] IOAPIC[0]: Set routing entry (5-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[    0.110905] IOAPIC[0]: Set routing entry (5-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[    0.110908] IOAPIC[0]: Set routing entry (5-5 -> 0x35 -> IRQ 5 Mode:0 Active:0 Dest:1)
[    0.110911] IOAPIC[0]: Set routing entry (5-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[    0.110913] IOAPIC[0]: Set routing entry (5-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[    0.110916] IOAPIC[0]: Set routing entry (5-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[    0.110919] IOAPIC[0]: Set routing entry (5-9 -> 0x39 -> IRQ 9 Mode:1 Active:1 Dest:1)
[    0.110921] IOAPIC[0]: Set routing entry (5-10 -> 0x3a -> IRQ 10 Mode:0 Active:0 Dest:1)
[    0.110924] IOAPIC[0]: Set routing entry (5-11 -> 0x3b -> IRQ 11 Mode:0 Active:0 Dest:1)
[    0.110927] IOAPIC[0]: Set routing entry (5-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[    0.110929] IOAPIC[0]: Set routing entry (5-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[    0.110936] IOAPIC[0]: Set routing entry (5-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[    0.110940] IOAPIC[0]: Set routing entry (5-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[    0.110941]  apic 5 pin 16 not connected
[    0.110942]  apic 5 pin 17 not connected
[    0.110942]  apic 5 pin 18 not connected
[    0.110943]  apic 5 pin 19 not connected
[    0.110944]  apic 5 pin 20 not connected
[    0.110944]  apic 5 pin 21 not connected
[    0.110945]  apic 5 pin 22 not connected
[    0.110946]  apic 5 pin 23 not connected
[    0.110946]  apic 6 pin 0 not connected
[    0.110947]  apic 6 pin 1 not connected
[    0.110948]  apic 6 pin 2 not connected
[    0.110948]  apic 6 pin 3 not connected
[    0.110949]  apic 6 pin 4 not connected
[    0.110950]  apic 6 pin 5 not connected
[    0.110950]  apic 6 pin 6 not connected
[    0.110951]  apic 6 pin 7 not connected
[    0.110952]  apic 6 pin 8 not connected
[    0.110952]  apic 6 pin 9 not connected
[    0.110953]  apic 6 pin 10 not connected
[    0.110954]  apic 6 pin 11 not connected
[    0.110954]  apic 6 pin 12 not connected
[    0.110955]  apic 6 pin 13 not connected
[    0.110956]  apic 6 pin 14 not connected
[    0.110956]  apic 6 pin 15 not connected
[    0.110957]  apic 6 pin 16 not connected
[    0.110957]  apic 6 pin 17 not connected
[    0.110958]  apic 6 pin 18 not connected
[    0.110959]  apic 6 pin 19 not connected
[    0.110959]  apic 6 pin 20 not connected
[    0.110960]  apic 6 pin 21 not connected
[    0.110961]  apic 6 pin 22 not connected
[    0.110961]  apic 6 pin 23 not connected
[    0.110962]  apic 6 pin 24 not connected
[    0.110963]  apic 6 pin 25 not connected
[    0.110963]  apic 6 pin 26 not connected
[    0.110964]  apic 6 pin 27 not connected
[    0.110964]  apic 6 pin 28 not connected
[    0.110965]  apic 6 pin 29 not connected
[    0.110966]  apic 6 pin 30 not connected
[    0.110966]  apic 6 pin 31 not connected
[    0.111096] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.121173] Using local APIC timer interrupts.
calibrating APIC timer ...
[    0.223164] ... lapic delta = 623857
[    0.223245] ... PM-Timer delta = 357950
[    0.223326] ... PM-Timer result ok
[    0.223407] ..... delta 623857
[    0.223488] ..... mult: 26794454
[    0.223568] ..... calibration result: 99817
[    0.223650] ..... CPU clock speed is 3693.0231 MHz.
[    0.223732] ..... host bus clock speed is 99.0817 MHz.
[    0.223819] smpboot: CPU0: AMD A10-7850K APU with Radeon(TM) R7 Graphics (fam: 15, model: 30, stepping: 01)
[    0.224054] Performance Events: Fam15h core perfctr, AMD PMU driver.
[    0.224218] ... version:                0
[    0.224299] ... bit width:              48
[    0.224381] ... generic registers:      6
[    0.224462] ... value mask:             0000ffffffffffff
[    0.224544] ... max period:             00007fffffffffff
[    0.224626] ... fixed-purpose events:   0
[    0.224708] ... event mask:             000000000000003f
[    0.225326] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.225527] x86: Booting SMP configuration:
[    0.225610] .... node  #0, CPUs:      #1
[    0.226708] masked ExtINT on CPU#1
[    0.228903]  #2
[    0.230108] masked ExtINT on CPU#2
[    0.233357]  #3
[    0.233357] masked ExtINT on CPU#3
[    0.235465] x86: Booted up 1 node, 4 CPUs
[    0.235709] smpboot: Total of 4 processors activated (29546.36 BogoMIPS)
[    0.236502] devtmpfs: initialized
[    0.236815] PM: Registering ACPI NVS region [mem 0x7bf2a000-0x7bfe5fff] (770048 bytes)
[    0.236957] PM: Registering ACPI NVS region [mem 0x7e10c000-0x7e311fff] (2121728 bytes)
[    0.237172] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.237381] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.237462] pinctrl core: initialized pinctrl subsystem
[    0.237582] RTC time: 18:20:22, date: 07/30/15
[    0.237760] NET: Registered protocol family 16
[    0.241880] cpuidle: using governor ladder
[    0.245875] cpuidle: using governor menu
[    0.246081] ACPI: bus type PCI registered
[    0.246164] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.246327] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.246466] PCI: not using MMCONFIG
[    0.246547] PCI: Using configuration type 1 for base access
[    0.246629] PCI: Using configuration type 1 for extended access
[    0.251231] ACPI: Added _OSI(Module Device)
[    0.251317] ACPI: Added _OSI(Processor Device)
[    0.251399] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.251480] ACPI: Added _OSI(Processor Aggregator Device)
[    0.252856] ACPI: Executed 1 blocks of module-level executable AML code
[    0.255027] ACPI: Interpreter enabled
[    0.255115] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150619/hwxface-580)
[    0.255303] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)
[    0.255499] ACPI: (supports S0 S3 S4 S5)
[    0.255578] ACPI: Using IOAPIC for interrupt routing
[    0.255674] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.255839] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.255999] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.260206] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.260296] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.260582] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.260947] PCI host bridge to bus 0000:00
[    0.261039] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.261122] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.261212] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.261295] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.261378] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.261462] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.261600] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.261738] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
[    0.261883] pci 0000:00:00.0: [1022:1422] type 00 class 0x060000
[    0.261971] pci 0000:00:00.2: [1022:1423] type 00 class 0x080600
[    0.262057] pci 0000:00:01.0: [1002:130f] type 00 class 0x030000
[    0.262072] pci 0000:00:01.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.262078] pci 0000:00:01.0: reg 0x18: [mem 0xd0000000-0xd07fffff 64bit pref]
[    0.262082] pci 0000:00:01.0: reg 0x20: [io  0xf000-0xf0ff]
[    0.262086] pci 0000:00:01.0: reg 0x24: [mem 0xff700000-0xff73ffff]
[    0.262090] pci 0000:00:01.0: reg 0x30: [mem 0xff740000-0xff75ffff pref]
[    0.262105] pci 0000:00:01.0: supports D1 D2
[    0.262106] pci 0000:00:01.0: PME# supported from D1 D2 D3hot
[    0.262168] pci 0000:00:01.1: [1002:1308] type 00 class 0x040300
[    0.262188] pci 0000:00:01.1: reg 0x10: [mem 0xff764000-0xff767fff 64bit]
[    0.262213] pci 0000:00:01.1: supports D1 D2
[    0.262271] pci 0000:00:02.0: [1022:1424] type 00 class 0x060000
[    0.262339] pci 0000:00:03.0: [1022:1424] type 00 class 0x060000
[    0.262408] pci 0000:00:04.0: [1022:1424] type 00 class 0x060000
[    0.262496] pci 0000:00:10.0: [1022:7814] type 00 class 0x0c0330
[    0.262530] pci 0000:00:10.0: reg 0x10: [mem 0xff76a000-0xff76bfff 64bit]
[    0.262594] pci 0000:00:10.0: PME# supported from D0 D3hot D3cold
[    0.262632] pci 0000:00:10.0: System wakeup disabled by ACPI
[    0.262756] pci 0000:00:10.1: [1022:7814] type 00 class 0x0c0330
[    0.262793] pci 0000:00:10.1: reg 0x10: [mem 0xff768000-0xff769fff 64bit]
[    0.262857] pci 0000:00:10.1: PME# supported from D0 D3hot D3cold
[    0.262895] pci 0000:00:10.1: System wakeup disabled by ACPI
[    0.263023] pci 0000:00:11.0: [1022:7801] type 00 class 0x010601
[    0.263043] pci 0000:00:11.0: reg 0x10: [io  0xf190-0xf197]
[    0.263050] pci 0000:00:11.0: reg 0x14: [io  0xf180-0xf183]
[    0.263057] pci 0000:00:11.0: reg 0x18: [io  0xf170-0xf177]
[    0.263065] pci 0000:00:11.0: reg 0x1c: [io  0xf160-0xf163]
[    0.263072] pci 0000:00:11.0: reg 0x20: [io  0xf150-0xf15f]
[    0.263079] pci 0000:00:11.0: reg 0x24: [mem 0xff771000-0xff7717ff]
[    0.263152] pci 0000:00:12.0: [1022:7807] type 00 class 0x0c0310
[    0.263164] pci 0000:00:12.0: reg 0x10: [mem 0xff770000-0xff770fff]
[    0.263239] pci 0000:00:12.0: System wakeup disabled by ACPI
[    0.263356] pci 0000:00:12.2: [1022:7808] type 00 class 0x0c0320
[    0.263375] pci 0000:00:12.2: reg 0x10: [mem 0xff76f000-0xff76f0ff]
[    0.263426] pci 0000:00:12.2: supports D1 D2
[    0.263427] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.263458] pci 0000:00:12.2: System wakeup disabled by ACPI
[    0.263575] pci 0000:00:13.0: [1022:7807] type 00 class 0x0c0310
[    0.263587] pci 0000:00:13.0: reg 0x10: [mem 0xff76e000-0xff76efff]
[    0.263656] pci 0000:00:13.0: System wakeup disabled by ACPI
[    0.263777] pci 0000:00:13.2: [1022:7808] type 00 class 0x0c0320
[    0.263798] pci 0000:00:13.2: reg 0x10: [mem 0xff76d000-0xff76d0ff]
[    0.263849] pci 0000:00:13.2: supports D1 D2
[    0.263850] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.263881] pci 0000:00:13.2: System wakeup disabled by ACPI
[    0.264008] pci 0000:00:14.0: [1022:780b] type 00 class 0x0c0500
[    0.264103] pci 0000:00:14.1: [1022:780c] type 00 class 0x01018a
[    0.264115] pci 0000:00:14.1: reg 0x10: [io  0xf140-0xf147]
[    0.264122] pci 0000:00:14.1: reg 0x14: [io  0xf130-0xf133]
[    0.264129] pci 0000:00:14.1: reg 0x18: [io  0xf120-0xf127]
[    0.264136] pci 0000:00:14.1: reg 0x1c: [io  0xf110-0xf113]
[    0.264143] pci 0000:00:14.1: reg 0x20: [io  0xf100-0xf10f]
[    0.264159] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.264249] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.264333] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.264416] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.264555] pci 0000:00:14.2: [1022:780d] type 00 class 0x040300
[    0.264576] pci 0000:00:14.2: reg 0x10: [mem 0xff760000-0xff763fff 64bit]
[    0.264619] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.264649] pci 0000:00:14.2: System wakeup disabled by ACPI
[    0.264762] pci 0000:00:14.3: [1022:780e] type 00 class 0x060100
[    0.264878] pci 0000:00:14.4: [1022:780f] type 01 class 0x060401
[    0.264933] pci 0000:00:14.4: System wakeup disabled by ACPI
[    0.265051] pci 0000:00:14.5: [1022:7809] type 00 class 0x0c0310
[    0.265063] pci 0000:00:14.5: reg 0x10: [mem 0xff76c000-0xff76cfff]
[    0.265131] pci 0000:00:14.5: System wakeup disabled by ACPI
[    0.265260] pci 0000:00:15.0: [1022:43a0] type 01 class 0x060400
[    0.265309] pci 0000:00:15.0: supports D1 D2
[    0.265310] pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
[    0.265344] pci 0000:00:15.0: System wakeup disabled by ACPI
[    0.265461] pci 0000:00:15.2: [1022:43a2] type 01 class 0x060400
[    0.265509] pci 0000:00:15.2: supports D1 D2
[    0.265510] pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
[    0.265542] pci 0000:00:15.2: System wakeup disabled by ACPI
[    0.265659] pci 0000:00:15.3: [1022:43a3] type 01 class 0x060400
[    0.265707] pci 0000:00:15.3: supports D1 D2
[    0.265708] pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
[    0.265740] pci 0000:00:15.3: System wakeup disabled by ACPI
[    0.265863] pci 0000:00:18.0: [1022:141a] type 00 class 0x060000
[    0.265922] pci 0000:00:18.1: [1022:141b] type 00 class 0x060000
[    0.265981] pci 0000:00:18.2: [1022:141c] type 00 class 0x060000
[    0.266034] pci 0000:00:18.3: [1022:141d] type 00 class 0x060000
[    0.266087] pci 0000:00:18.4: [1022:141e] type 00 class 0x060000
[    0.266139] pci 0000:00:18.5: [1022:141f] type 00 class 0x060000
[    0.266281] pci 0000:00:14.4: PCI bridge to [bus 01] (subtractive decode)
[    0.266370] pci 0000:00:14.4:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    0.266372] pci 0000:00:14.4:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    0.266373] pci 0000:00:14.4:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    0.266375] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.266376] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.266378] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    0.266379] pci 0000:00:14.4:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
[    0.266418] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.266560] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[    0.266601] pci 0000:03:00.0: reg 0x10: [mem 0xff600000-0xff607fff 64bit]
[    0.266693] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.267862] pci 0000:00:15.2: PCI bridge to [bus 03]
[    0.267956] pci 0000:00:15.2:   bridge window [mem 0xff600000-0xff6fffff]
[    0.268044] pci 0000:04:00.0: [1969:10a1] type 00 class 0x020000
[    0.268090] pci 0000:04:00.0: reg 0x10: [mem 0xff500000-0xff53ffff 64bit]
[    0.268102] pci 0000:04:00.0: reg 0x18: [io  0xe000-0xe07f]
[    0.268183] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.269862] pci 0000:00:15.3: PCI bridge to [bus 04]
[    0.269952] pci 0000:00:15.3:   bridge window [io  0xe000-0xefff]
[    0.269956] pci 0000:00:15.3:   bridge window [mem 0xff500000-0xff5fffff]
[    0.270402] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 *11 14 15)
[    0.270769] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 *11 14 15)
[    0.271136] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 *10 11 14 15)
[    0.271501] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 *5 7 10 11 14 15)
[    0.271854] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.272239] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.272607] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.272984] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.273583] vgaarb: setting as boot device: PCI:0000:00:01.0
[    0.273664] vgaarb: device added: PCI:0000:00:01.0,decodes=io+mem,owns=io+mem,locks=none
[    0.273807] vgaarb: loaded
[    0.273887] vgaarb: bridge control possible 0000:00:01.0
[    0.274043] SCSI subsystem initialized
[    0.274216] libata version 3.00 loaded.
[    0.274257] ACPI: bus type USB registered
[    0.274354] usbcore: registered new interface driver usbfs
[    0.274442] usbcore: registered new interface driver hub
[    0.274533] usbcore: registered new device driver usb
[    0.274724] PCI: Using ACPI for IRQ routing
[    0.281308] PCI: pci_cache_line_size set to 64 bytes
[    0.281366] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[    0.281367] e820: reserve RAM buffer [mem 0x7bc3b000-0x7bffffff]
[    0.281368] e820: reserve RAM buffer [mem 0x7bf2a000-0x7bffffff]
[    0.281369] e820: reserve RAM buffer [mem 0x7e10c000-0x7fffffff]
[    0.281370] e820: reserve RAM buffer [mem 0x7e468000-0x7fffffff]
[    0.281372] e820: reserve RAM buffer [mem 0x7f072000-0x7fffffff]
[    0.281372] e820: reserve RAM buffer [mem 0x7f800000-0x7fffffff]
[    0.281374] e820: reserve RAM buffer [mem 0x43f000000-0x43fffffff]
[    0.281486] NetLabel: Initializing
[    0.281568] NetLabel:  domain hash size = 128
[    0.281649] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.281738] NetLabel:  unlabeled traffic allowed by default
[    0.281886] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.282080] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.284231] clocksource: Switched to clocksource hpet
[    0.291143] pnp: PnP ACPI init
[    0.291353] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    0.291435] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.291494] system 00:01: [mem 0x80000000-0xbfffffff] has been reserved
[    0.291576] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.291632] system 00:02: [mem 0xfeb80000-0xfebfffff] could not be reserved
[    0.291713] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.291808] system 00:03: [io  0x0290-0x029f] has been reserved
[    0.291889] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.291986] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.292010] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.292056] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.292137] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.292170] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.292314] pnp 00:08: [dma 0 disabled]
[    0.292350] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.292532] system 00:09: [io  0x04d0-0x04d1] has been reserved
[    0.292615] system 00:09: [io  0x040b] has been reserved
[    0.292698] system 00:09: [io  0x04d6] has been reserved
[    0.292782] system 00:09: [io  0x0c00-0x0c01] has been reserved
[    0.292864] system 00:09: [io  0x0c14] has been reserved
[    0.294741] system 00:09: [io  0x0c50-0x0c51] has been reserved
[    0.294824] system 00:09: [io  0x0c52] has been reserved
[    0.294907] system 00:09: [io  0x0c6c] has been reserved
[    0.294990] system 00:09: [io  0x0c6f] has been reserved
[    0.295072] system 00:09: [io  0x0cd0-0x0cd1] has been reserved
[    0.295155] system 00:09: [io  0x0cd2-0x0cd3] has been reserved
[    0.295242] system 00:09: [io  0x0cd4-0x0cd5] has been reserved
[    0.295326] system 00:09: [io  0x0cd6-0x0cd7] has been reserved
[    0.295409] system 00:09: [io  0x0cd8-0x0cdf] has been reserved
[    0.295493] system 00:09: [io  0x0800-0x089f] could not be reserved
[    0.295576] system 00:09: [io  0x0b20-0x0b3f] has been reserved
[    0.295660] system 00:09: [io  0x0900-0x090f] has been reserved
[    0.295742] system 00:09: [io  0x0910-0x091f] has been reserved
[    0.295825] system 00:09: [io  0xfe00-0xfefe] has been reserved
[    0.295908] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.295992] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.296075] system 00:09: [mem 0xfed80000-0xfed8ffff] has been reserved
[    0.296158] system 00:09: [mem 0xfed61000-0xfed70fff] has been reserved
[    0.296246] system 00:09: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.296329] system 00:09: [mem 0xfed00000-0xfed00fff] could not be reserved
[    0.296413] system 00:09: [mem 0xff800000-0xffffffff] has been reserved
[    0.296497] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.296633] pnp: PnP ACPI: found 10 devices
[    0.303201] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.303365] pci 0000:00:14.4: PCI bridge to [bus 01]
[    0.303454] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.303539] pci 0000:00:15.2: PCI bridge to [bus 03]
[    0.303621] pci 0000:00:15.2:   bridge window [mem 0xff600000-0xff6fffff]
[    0.303706] pci 0000:00:15.3: PCI bridge to [bus 04]
[    0.303786] pci 0000:00:15.3:   bridge window [io  0xe000-0xefff]
[    0.303869] pci 0000:00:15.3:   bridge window [mem 0xff500000-0xff5fffff]
[    0.303954] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.303956] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.303957] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.303958] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.303960] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.303961] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.303963] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff window]
[    0.303965] pci_bus 0000:01: resource 4 [io  0x0000-0x03af window]
[    0.303966] pci_bus 0000:01: resource 5 [io  0x03e0-0x0cf7 window]
[    0.303967] pci_bus 0000:01: resource 6 [io  0x03b0-0x03df window]
[    0.303968] pci_bus 0000:01: resource 7 [io  0x0d00-0xffff window]
[    0.303970] pci_bus 0000:01: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.303971] pci_bus 0000:01: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.303972] pci_bus 0000:01: resource 10 [mem 0xc0000000-0xffffffff window]
[    0.303974] pci_bus 0000:03: resource 1 [mem 0xff600000-0xff6fffff]
[    0.303975] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
[    0.303976] pci_bus 0000:04: resource 1 [mem 0xff500000-0xff5fffff]
[    0.304004] NET: Registered protocol family 2
[    0.304309] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.304729] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.305040] TCP: Hash tables configured (established 131072 bind 65536)
[    0.305169] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.305343] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.305547] NET: Registered protocol family 1
[    0.305644] pci 0000:00:01.0: Video device with shadowed ROM
[    0.305735] IOAPIC[0]: Set routing entry (5-18 -> 0x41 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    0.305854] IOAPIC[0]: Set routing entry (5-17 -> 0x51 -> IRQ 17 Mode:1 Active:1 Dest:15)
[    0.305961] IOAPIC[0]: Set routing entry (5-18 -> 0x61 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    0.378419] IOAPIC[0]: Set routing entry (5-17 -> 0x71 -> IRQ 17 Mode:1 Active:1 Dest:15)
[    0.389415] IOAPIC[0]: Set routing entry (5-18 -> 0x81 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    0.461346] IOAPIC[0]: Set routing entry (5-17 -> 0x91 -> IRQ 17 Mode:1 Active:1 Dest:15)
[    0.472346] IOAPIC[0]: Set routing entry (5-18 -> 0xa1 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    0.544279] IOAPIC[0]: Set routing entry (5-16 -> 0xb1 -> IRQ 16 Mode:1 Active:1 Dest:15)
[    0.544304] IOAPIC[0]: Set routing entry (5-18 -> 0xc1 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    0.544352] pci 0000:04:00.0: set MSI_INTX_DISABLE_BUG flag
[    0.544439] PCI: CLS 64 bytes, default 64
[    0.544503] Unpacking initramfs...
[    0.868084] Freeing initrd memory: 25608K (ffff880034dec000 - ffff8800366ee000)
[    0.868269] AMD-Vi: IOMMU performance counters supported
[    0.868472] ERROR: Unable to locate IOAPIC for GSI 56
[    0.868554] pci 0000:00:00.2: PCI INT A: failed to register GSI
[    0.869454] iommu: Adding device 0000:00:00.0 to group 0
[    0.869902] iommu: Adding device 0000:00:01.0 to group 1
[    0.869994] iommu: Using direct mapping for device 0000:00:01.0
[    0.870089] iommu: Adding device 0000:00:01.1 to group 1
[    0.870468] iommu: Adding device 0000:00:02.0 to group 2
[    0.870910] iommu: Adding device 0000:00:03.0 to group 3
[    0.871330] iommu: Adding device 0000:00:04.0 to group 4
[    0.871765] iommu: Adding device 0000:00:10.0 to group 5
[    0.871861] iommu: Adding device 0000:00:10.1 to group 5
[    0.872276] iommu: Adding device 0000:00:11.0 to group 6
[    0.872707] iommu: Adding device 0000:00:12.0 to group 7
[    0.872801] iommu: Adding device 0000:00:12.2 to group 7
[    0.873225] iommu: Adding device 0000:00:13.0 to group 8
[    0.873318] iommu: Adding device 0000:00:13.2 to group 8
[    0.873761] iommu: Adding device 0000:00:14.0 to group 9
[    0.873856] iommu: Adding device 0000:00:14.1 to group 9
[    0.873948] iommu: Adding device 0000:00:14.2 to group 9
[    0.874040] iommu: Adding device 0000:00:14.3 to group 9
[    0.874468] iommu: Adding device 0000:00:14.4 to group 10
[    0.874888] iommu: Adding device 0000:00:14.5 to group 11
[    0.875319] iommu: Adding device 0000:00:15.0 to group 12
[    0.875417] iommu: Adding device 0000:00:15.2 to group 12
[    0.875518] iommu: Adding device 0000:00:15.3 to group 12
[    0.875964] iommu: Adding device 0000:00:18.0 to group 13
[    0.876062] iommu: Adding device 0000:00:18.1 to group 13
[    0.876159] iommu: Adding device 0000:00:18.2 to group 13
[    0.876255] iommu: Adding device 0000:00:18.3 to group 13
[    0.876350] iommu: Adding device 0000:00:18.4 to group 13
[    0.876446] iommu: Adding device 0000:00:18.5 to group 13
[    0.876541] iommu: Adding device 0000:03:00.0 to group 12
[    0.876636] iommu: Adding device 0000:04:00.0 to group 12
[    0.876735] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    0.876827] AMD-Vi:  Extended features:  PPR GT IA PC
[    0.877041] AMD-Vi: Interrupt remapping enabled
[    0.877324] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.879466] perf: AMD NB counters detected
[    0.879570] perf: amd_iommu: Detected. (2 banks, 4 counters/bank)
[    0.879679] LVT offset 0 assigned for vector 0x400
[    0.879772] perf: AMD IBS detected (0x000001ff)
[    0.880408] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.880510] Initialise system trusted keyring
[    0.880608] audit: initializing netlink subsys (disabled)
[    0.880719] audit: type=2000 audit(1438280421.689:1): initialized
[    0.881099] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.882750] VFS: Disk quotas dquot_6.6.0
[    0.882859] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.883316] SELinux:  Registering netfilter hooks
[    0.886616] NET: Registered protocol family 38
[    0.886720] Key type asymmetric registered
[    0.886802] Asymmetric key parser 'x509' registered
[    0.886910] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.887096] io scheduler noop registered
[    0.887182] io scheduler deadline registered
[    0.887308] io scheduler cfq registered (default)
[    0.887583] irqdomain: allocate 1 MSI IRQ, VIRQ25
[    0.887683] irqdomain: allocate parent returns 0
[    0.887772] irqdomain: allocate IRTE index 0
[    0.887852] irqdomain: IRTE0 vector 225 APICID15 dataffff88042855a460 cfgffff8804285b0240
[    0.888044] irqdomain: allocate 1 MSI IRQ, VIRQ26
[    0.888124] irqdomain: allocate parent returns 0
[    0.888205] irqdomain: allocate IRTE index 0
[    0.888285] irqdomain: IRTE0 vector 34 APICID15 dataffff88042855a520 cfgffff8804285b0280
[    0.888509] irqdomain: allocate 1 MSI IRQ, VIRQ27
[    0.888589] irqdomain: allocate parent returns 0
[    0.888690] irqdomain: allocate IRTE index 0
[    0.888775] irqdomain: IRTE0 vector 66 APICID15 dataffff88042855a5e0 cfgffff8804285b02c0
[    0.888983] pcieport 0000:00:15.0: Signaling PME through PCIe PME interrupt
[    0.889065] pcie_pme 0000:00:15.0:pcie01: service driver pcie_pme loaded
[    0.889082] pcieport 0000:00:15.2: Signaling PME through PCIe PME interrupt
[    0.889163] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.889245] pcie_pme 0000:00:15.2:pcie01: service driver pcie_pme loaded
[    0.889262] pcieport 0000:00:15.3: Signaling PME through PCIe PME interrupt
[    0.889349] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
[    0.889430] pcie_pme 0000:00:15.3:pcie01: service driver pcie_pme loaded
[    0.889435] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.889519] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.889704] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.889843] ACPI: Power Button [PWRB]
[    0.889954] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.890088] ACPI: Power Button [PWRF]
[    0.890199] ACPI: acpi_idle registered with cpuidle
[    0.890658] GHES: HEST is not enabled!
[    0.890863] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.911466] 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.912139] Non-volatile memory driver v1.3
[    0.912248] Linux agpgart interface v0.103
[    0.913652] loop: module loaded
[    0.913839] ahci 0000:00:11.0: version 3.0
[    0.913914] IOAPIC[0]: Set routing entry (5-19 -> 0x52 -> IRQ 19 Mode:1 Active:1 Dest:15)
[    0.913954] irqdomain: allocate 4 MSI IRQ, VIRQ28
[    0.914038] irqdomain: allocate parent returns 0
[    0.914123] irqdomain: allocate IRTE index 0
[    0.914205] irqdomain: IRTE0 vector 98 APICID15 dataffff8804285ee780 cfgffff880076e2d2c0
[    0.914348] irqdomain: IRTE1 vector 114 APICID15 dataffff8804285ee7e0 cfgffff880076e2d300
[    0.914485] irqdomain: IRTE2 vector 130 APICID15 dataffff8804285ee800 cfgffff880076e2d340
[    0.914622] irqdomain: IRTE3 vector 146 APICID15 dataffff8804285ee820 cfgffff880076e2d380
[    0.914822] ahci 0000:00:11.0: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.914960] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio slum part sxs 
[    0.915472] scsi host0: ahci
[    0.915655] scsi host1: ahci
[    0.915772] ata1: SATA max UDMA/133 abar m2048@0xff771000 port 0xff771100 irq 28
[    0.915912] ata2: SATA max UDMA/133 abar m2048@0xff771000 port 0xff771180 irq 29
[    0.916124] libphy: Fixed MDIO Bus: probed
[    0.916308] IOAPIC[0]: Set routing entry (5-18 -> 0xa2 -> IRQ 18 Mode:1 Active:1 Dest:15)
[    0.916322] QUIRK: Enable AMD PLL fix
[    0.916330] xhci_hcd 0000:00:10.0: xHCI Host Controller
[    0.916448] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
[    0.916764] xhci_hcd 0000:00:10.0: hcc params 0x014040c3 hci version 0x100 quirks 0x00000418
[    0.917041] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.917125] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.917269] usb usb1: Product: xHCI Host Controller
[    0.917351] usb usb1: Manufacturer: Linux 4.2.0-rc3+ xhci-hcd
[    0.917433] usb usb1: SerialNumber: 0000:00:10.0
[    0.917604] hub 1-0:1.0: USB hub found
[    0.917708] hub 1-0:1.0: 2 ports detected
[    0.917870] xhci_hcd 0000:00:10.0: xHCI Host Controller
[    0.917984] xhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 2
[    0.920187] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    0.920272] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.920410] usb usb2: Product: xHCI Host Controller
[    0.920490] usb usb2: Manufacturer: Linux 4.2.0-rc3+ xhci-hcd
[    0.920570] usb usb2: SerialNumber: 0000:00:10.0
[    0.920728] hub 2-0:1.0: USB hub found
[    0.922446] hub 2-0:1.0: 2 ports detected
[    0.922641] IOAPIC[0]: Set routing entry (5-17 -> 0x43 -> IRQ 17 Mode:1 Active:1 Dest:15)
[    0.922660] xhci_hcd 0000:00:10.1: xHCI Host Controller
[    0.922779] xhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 3
[    0.923089] xhci_hcd 0000:00:10.1: hcc params 0x014040c3 hci version 0x100 quirks 0x00000418
[    0.923353] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.923434] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.923567] usb usb3: Product: xHCI Host Controller
[    0.923653] usb usb3: Manufacturer: Linux 4.2.0-rc3+ xhci-hcd
[    0.923733] usb usb3: SerialNumber: 0000:00:10.1
[    0.923891] hub 3-0:1.0: USB hub found
[    0.923974] hub 3-0:1.0: 2 ports detected
[    0.924115] xhci_hcd 0000:00:10.1: xHCI Host Controller
[    0.924226] xhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 4
[    0.926510] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.926593] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.926739] usb usb4: Product: xHCI Host Controller
[    0.926821] usb usb4: Manufacturer: Linux 4.2.0-rc3+ xhci-hcd
[    0.926903] usb usb4: SerialNumber: 0000:00:10.1
[    0.927056] hub 4-0:1.0: USB hub found
[    0.927144] hub 4-0:1.0: 2 ports detected
[    0.927320] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.927433] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 5
[    0.986845] xhci_hcd 0000:03:00.0: hcc params 0x0200f180 hci version 0x96 quirks 0x00080000
[    0.987106] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[    0.987189] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.987327] usb usb5: Product: xHCI Host Controller
[    0.987410] usb usb5: Manufacturer: Linux 4.2.0-rc3+ xhci-hcd
[    0.987492] usb usb5: SerialNumber: 0000:03:00.0
[    0.987672] hub 5-0:1.0: USB hub found
[    0.987762] hub 5-0:1.0: 2 ports detected
[    0.987907] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    0.988019] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 6
[    0.988189] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
[    0.988278] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.988415] usb usb6: Product: xHCI Host Controller
[    0.988497] usb usb6: Manufacturer: Linux 4.2.0-rc3+ xhci-hcd
[    0.988589] usb usb6: SerialNumber: 0000:03:00.0
[    0.988740] hub 6-0:1.0: USB hub found
[    0.988828] hub 6-0:1.0: 2 ports detected
[    0.988975] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.989060] ehci-pci: EHCI PCI platform driver
[    0.989201] ehci-pci 0000:00:12.2: EHCI Host Controller
[    0.989314] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 7
[    0.989453] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    0.989607] ehci-pci 0000:00:12.2: debug port 1
[    0.989718] ehci-pci 0000:00:12.2: irq 17, io mem 0xff76f000
[    0.995695] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.995845] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002
[    0.995928] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.996067] usb usb7: Product: EHCI Host Controller
[    0.996150] usb usb7: Manufacturer: Linux 4.2.0-rc3+ ehci_hcd
[    0.996231] usb usb7: SerialNumber: 0000:00:12.2
[    0.996448] hub 7-0:1.0: USB hub found
[    0.996535] hub 7-0:1.0: 5 ports detected
[    0.996874] ehci-pci 0000:00:13.2: EHCI Host Controller
[    0.997008] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 8
[    0.997148] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    0.997292] ehci-pci 0000:00:13.2: debug port 1
[    0.997401] ehci-pci 0000:00:13.2: irq 17, io mem 0xff76d000
[    1.002696] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.002840] usb usb8: New USB device found, idVendor=1d6b, idProduct=0002
[    1.002920] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.003054] usb usb8: Product: EHCI Host Controller
[    1.003134] usb usb8: Manufacturer: Linux 4.2.0-rc3+ ehci_hcd
[    1.003213] usb usb8: SerialNumber: 0000:00:13.2
[    1.003435] hub 8-0:1.0: USB hub found
[    1.003521] hub 8-0:1.0: 5 ports detected
[    1.003768] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.003854] ohci-pci: OHCI PCI platform driver
[    1.004048] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    1.004186] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 9
[    1.004354] ohci-pci 0000:00:12.0: irq 18, io mem 0xff770000
[    1.058693] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001
[    1.058781] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.058920] usb usb9: Product: OHCI PCI host controller
[    1.059002] usb usb9: Manufacturer: Linux 4.2.0-rc3+ ohci_hcd
[    1.059085] usb usb9: SerialNumber: 0000:00:12.0
[    1.059319] hub 9-0:1.0: USB hub found
[    1.059408] hub 9-0:1.0: 5 ports detected
[    1.059719] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    1.059864] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 10
[    1.060021] ohci-pci 0000:00:13.0: irq 18, io mem 0xff76e000
[    1.114648] usb usb10: New USB device found, idVendor=1d6b, idProduct=0001
[    1.114736] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.114875] usb usb10: Product: OHCI PCI host controller
[    1.114958] usb usb10: Manufacturer: Linux 4.2.0-rc3+ ohci_hcd
[    1.115041] usb usb10: SerialNumber: 0000:00:13.0
[    1.115278] hub 10-0:1.0: USB hub found
[    1.115367] hub 10-0:1.0: 5 ports detected
[    1.115673] ohci-pci 0000:00:14.5: OHCI PCI host controller
[    1.115817] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 11
[    1.115974] ohci-pci 0000:00:14.5: irq 18, io mem 0xff76c000
[    1.170597] usb usb11: New USB device found, idVendor=1d6b, idProduct=0001
[    1.170684] usb usb11: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.170822] usb usb11: Product: OHCI PCI host controller
[    1.170904] usb usb11: Manufacturer: Linux 4.2.0-rc3+ ohci_hcd
[    1.170987] usb usb11: SerialNumber: 0000:00:14.5
[    1.171307] hub 11-0:1.0: USB hub found
[    1.171408] hub 11-0:1.0: 2 ports detected
[    1.171606] uhci_hcd: USB Universal Host Controller Interface driver
[    1.171772] usbcore: registered new interface driver usbserial
[    1.171863] usbcore: registered new interface driver usbserial_generic
[    1.171953] usbserial: USB Serial support registered for generic
[    1.172068] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.172156] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.172789] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.172976] mousedev: PS/2 mouse device common for all mice
[    1.173221] rtc_cmos 00:05: RTC can wake from S4
[    1.173416] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    1.173520] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.173720] device-mapper: uevent: version 1.0.3
[    1.173865] device-mapper: ioctl: 4.32.0-ioctl (2015-6-26) initialised: dm-devel@redhat.com
[    1.174178] hidraw: raw HID events driver (C) Jiri Kosina
[    1.174365] usbcore: registered new interface driver usbhid
[    1.174461] usbhid: USB HID core driver
[    1.174567] drop_monitor: Initializing network drop monitor service
[    1.174708] ip_tables: (C) 2000-2006 Netfilter Core Team
[    1.174831] Initializing XFRM netlink socket
[    1.175006] NET: Registered protocol family 10
[    1.175262] mip6: Mobile IPv6
[    1.175347] NET: Registered protocol family 17
[    1.175776] ... APIC ID:      10000000 (10)
[    1.175864] ... APIC VERSION: 80050010
[    1.175947] 0000000000000000000000000000000000000000000000000000000000000000
[    1.176239] 0000000000000000000000000000000000000000000000000000000000000000
[    1.176533] 0000000000000000000000000000000000000000000000000000000000008000

[    1.176907] number of MP IRQ sources: 15.
[    1.176908] number of IO-APIC #5 registers: 24.
[    1.176909] number of IO-APIC #6 registers: 32.
[    1.176910] testing the IO APIC.......................
[    1.177002] IO APIC #5......
[    1.177003] .... register #00: 05000000
[    1.177004] .......    : physical APIC id: 05
[    1.177005] .......    : Delivery Type: 0
[    1.177005] .......    : LTS          : 0
[    1.177006] .... register #01: 00178021
[    1.177006] .......     : max redirection entries: 17
[    1.177007] .......     : PRQ implemented: 1
[    1.177008] .......     : IO APIC version: 21
[    1.177008] .... register #02: 05000000
[    1.177009] .......     : arbitration: 05
[    1.177010] .... register #03: 05018021
[    1.177010] .......     : Boot DT    : 1
[    1.177011] .... IRQ redirection table:
[    1.177012] IOAPIC 0:
[    1.177016]  pin00, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177019]  pin01, enabled , edge , high, V(01), IRR(0), S(0), physical, D(00), M(0)
[    1.177022]  pin02, enabled , edge , high, V(02), IRR(0), S(0), physical, D(00), M(0)
[    1.177025]  pin03, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177028]  pin04, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177031]  pin05, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177034]  pin06, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177037]  pin07, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177040]  pin08, enabled , edge , high, V(08), IRR(0), S(0), physical, D(00), M(0)
[    1.177043]  pin09, enabled , level, low , V(09), IRR(0), S(0), physical, D(00), M(0)
[    1.177046]  pin0a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177049]  pin0b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177052]  pin0c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177055]  pin0d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177058]  pin0e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177061]  pin0f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177065]  pin10, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177068]  pin11, enabled , level, low , V(11), IRR(0), S(0), physical, D(00), M(0)
[    1.177071]  pin12, enabled , level, low , V(12), IRR(0), S(0), physical, D(00), M(0)
[    1.177074]  pin13, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177077]  pin14, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177080]  pin15, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177083]  pin16, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177086]  pin17, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177088] IO APIC #6......
[    1.177088] .... register #00: 06000000
[    1.177089] .......    : physical APIC id: 06
[    1.177090] .......    : Delivery Type: 0
[    1.177090] .......    : LTS          : 0
[    1.177091] .... register #01: 001F8021
[    1.177092] .......     : max redirection entries: 1F
[    1.177092] .......     : PRQ implemented: 1
[    1.177093] .......     : IO APIC version: 21
[    1.177094] .... register #02: 00000000
[    1.177094] .......     : arbitration: 00
[    1.177095] .... IRQ redirection table:
[    1.177095] IOAPIC 1:
[    1.177097]  pin00, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177099]  pin01, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177101]  pin02, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177103]  pin03, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177105]  pin04, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177107]  pin05, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177109]  pin06, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177111]  pin07, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177113]  pin08, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177115]  pin09, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177117]  pin0a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177119]  pin0b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177121]  pin0c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177123]  pin0d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177125]  pin0e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177127]  pin0f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177129]  pin10, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177130]  pin11, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177132]  pin12, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177134]  pin13, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177136]  pin14, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177138]  pin15, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177140]  pin16, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177142]  pin17, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177144]  pin18, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177146]  pin19, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177148]  pin1a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177150]  pin1b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177152]  pin1c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177154]  pin1d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177156]  pin1e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177158]  pin1f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    1.177158] IRQ to pin mappings:
[    1.177160] IRQ0 -> 0:2
[    1.177162] IRQ1 -> 0:1
[    1.177163] IRQ3 -> 0:3
[    1.177164] IRQ4 -> 0:4
[    1.177165] IRQ5 -> 0:5
[    1.177166] IRQ6 -> 0:6
[    1.177167] IRQ7 -> 0:7
[    1.177168] IRQ8 -> 0:8
[    1.177169] IRQ9 -> 0:9
[    1.177170] IRQ10 -> 0:10
[    1.177171] IRQ11 -> 0:11
[    1.177172] IRQ12 -> 0:12
[    1.177173] IRQ13 -> 0:13
[    1.177174] IRQ14 -> 0:14
[    1.177175] IRQ15 -> 0:15
[    1.177176] IRQ16 -> 0:16
[    1.177177] IRQ17 -> 0:17
[    1.177179] IRQ18 -> 0:18
[    1.177180] IRQ19 -> 0:19
[    1.177182] .................................... done.
[    1.177276] AVX version of gcm_enc/dec engaged.
[    1.177359] AES CTR mode by8 optimization enabled
[    1.198817] Loading compiled-in X.509 certificates
[    1.199625] Loaded X.509 cert 'Magrathea: Glacier signing key: 4a92f06a48b93d0e272e9a2b615aff0f01e0bbba'
[    1.199777] registered taskstats version 1
[    1.200258]   Magic number: 7:442:343
[    1.200366] tty tty60: hash matches
[    1.200523] rtc_cmos 00:05: setting system clock to 2015-07-30 18:20:23 UTC (1438280423)
[    1.200736] PM: Hibernation image not present or could not be loaded.
[    1.204949] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.219487] usb 1-1: new low-speed USB device number 2 using xhci_hcd
[    1.368967] usb 1-1: New USB device found, idVendor=046d, idProduct=c030
[    1.369055] usb 1-1: New USB device strings: Mfr=4, Product=32, SerialNumber=0
[    1.369194] usb 1-1: Product: iFeel Mouse   
[    1.369288] usb 1-1: Manufacturer: Logitech Inc.
[    1.369578] usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    1.369721] usb 1-1: ep 0x1 - rounding interval to 64 microframes, ep desc says 80 microframes
[    1.375355] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.375468] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.386213] input: Logitech Inc. iFeel Mouse    as /devices/pci0000:00/0000:00:10.0/usb1/1-1/1-1:1.0/0003:046D:C030.0001/input/input3
[    1.388431] hid-generic 0003:046D:C030.0001: input,hidraw0: USB HID v1.00 Mouse [Logitech Inc. iFeel Mouse   ] on usb-0000:00:10.0-1/input0
[    1.424579] ata1.00: HPA detected: current 156299375, native 156301488
[    1.424670] ata1.00: ATA-7: ST380815AS, 4.AAB, max UDMA/133
[    1.424753] ata1.00: 156299375 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.482842] ata1.00: configured for UDMA/133
[    1.483252] scsi 0:0:0:0: Direct-Access     ATA      ST380815AS       B    PQ: 0 ANSI: 5
[    1.483579] sd 0:0:0:0: [sda] 156299375 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    1.483644] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.483913] sd 0:0:0:0: [sda] Write Protect is off
[    1.484001] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.484037] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.531191]  sda: sda1
[    1.531628] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.880860] tsc: Refined TSC clocksource calibration: 3693.283 MHz
[    1.880956] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6a7918f751d, max_idle_ns: 881590915016 ns
[    2.880167] clocksource: Switched to clocksource tsc
[    6.370643] ata2.00: qc timeout (cmd 0xec)
[    6.370735] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[    6.830227] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[   16.820846] ata2.00: qc timeout (cmd 0xec)
[   16.820939] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   16.821025] ata2: limiting SATA link speed to 3.0 Gbps
[   17.280411] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 320)
[   47.252262] ata2.00: qc timeout (cmd 0xec)
[   47.252354] ata2.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[   47.711835] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 320)
[   47.712397] Freeing unused kernel memory: 1520K (ffffffff81d2f000 - ffffffff81eab000)
[   47.712539] Write protecting the kernel read-only data: 12288k
[   47.713043] Freeing unused kernel memory: 972K (ffff88000170d000 - ffff880001800000)
[   47.713440] Freeing unused kernel memory: 876K (ffff880001b25000 - ffff880001c00000)
[   47.716237] systemd[1]: systemd 204 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[   47.716461] systemd[1]: Running in initial RAM disk.
[   47.716973] systemd[1]: Set hostname to <cm>.
[   47.717428] random: systemd urandom read with 18 bits of entropy available
[   47.721777] systemd[1]: Expecting device dev-mapper-fedora\x2dswap.device...
[   47.722072] systemd[1]: Expecting device dev-mapper-fedora\x2droot.device...
[   47.722342] systemd[1]: Starting Timers.
[   47.722664] systemd[1]: Reached target Timers.
[   47.722802] systemd[1]: Starting Journal Socket.
[   47.723161] systemd[1]: Listening on Journal Socket.
[   47.723368] systemd[1]: Starting dracut cmdline hook...
[   47.724073] systemd[1]: Starting Journal Service...
[   47.725132] systemd[1]: Started Journal Service.
[   47.725875] systemd[1]: Started Load Kernel Modules.
[   47.725990] systemd[1]: Starting udev Kernel Socket.
[   47.726361] systemd[1]: Listening on udev Kernel Socket.
[   47.726497] systemd[1]: Starting udev Control Socket.
[   47.726838] systemd[1]: Listening on udev Control Socket.
[   47.726938] systemd[1]: Starting Sockets.
[   47.727252] systemd[1]: Reached target Sockets.
[   47.727351] systemd[1]: Starting Swap.
[   47.727665] systemd[1]: Reached target Swap.
[   47.727767] systemd[1]: Starting Local File Systems.
[   47.728083] systemd[1]: Reached target Local File Systems.
[   47.818694] systemd-udevd[221]: starting version 204
[   47.854689] scsi host2: pata_atiixp
[   47.854856] scsi host3: pata_atiixp
[   47.854975] ata3: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf100 irq 14
[   47.855060] ata4: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf108 irq 15
[   48.734092] random: nonblocking pool is initialized
[   48.779483] EXT4-fs (dm-0): INFO: recovery required on readonly filesystem
[   48.779572] EXT4-fs (dm-0): write access will be enabled during recovery
[   49.366182] EXT4-fs (dm-0): recovery complete
[   49.382494] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[   49.555858] systemd-journald[134]: Received SIGTERM
[   50.433316] SELinux:  Disabled at runtime.
[   50.433417] SELinux:  Unregistering netfilter hooks
[   50.474243] audit: type=1404 audit(1438280472.819:2): selinux=0 auid=4294967295 ses=4294967295
[   51.244110] LVM: Logical Volume autoactivation enabled.
[   51.244114] LVM: Activation generator successfully completed.
[   54.048569] systemd-udevd[423]: starting version 204
[   54.118710] EXT4-fs (dm-0): re-mounted. Opts: (null)
[   54.810785] acpi-cpufreq: overriding BIOS provided _PSD data
[   54.996303] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   54.998414] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[   55.145860] microcode: CPU0: patch_level=0x06003104
[   55.414589] input: PC Speaker as /devices/platform/pcspkr/input/input4
[   55.498601] ACPI: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[   55.498838] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input5
[   55.547224] microcode: CPU1: patch_level=0x06003104
[   55.547364] microcode: CPU2: patch_level=0x06003104
[   55.547474] microcode: CPU3: patch_level=0x06003104
[   55.547671] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   56.279636] MCE: In-kernel MCE decoding enabled.
[   56.455101] EDAC MC: Ver: 3.0.0
[   56.659857] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   57.318718] AMD64 EDAC driver v3.4.0
[   57.318842] EDAC amd64: DRAM ECC disabled.
[   57.318930] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
 (Note that use of the override may cause unknown side effects.)
[   57.359450] Adding 16703484k swap on /dev/mapper/fedora-swap.  Priority:-1 extents:1 across:16703484k FS
[   57.825604] alx 0000:04:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [bc:5f:f4:f8:24:b7]
[   58.651684] alx 0000:04:00.0 em1: renamed from eth0
[   58.660655] systemd-udevd[432]: renamed network interface eth0 to em1
[   58.939827] kvm: Nested Virtualization enabled
[   58.939915] kvm: Nested Paging enabled
[   59.068071] IOAPIC[1]: Set routing entry (6-3 -> 0x24 -> IRQ 47 Mode:1 Active:1 Dest:15)
[   59.068086] snd_hda_intel 0000:00:01.1: Force to non-snoop mode
[   59.068218] irqdomain: allocate 1 MSI IRQ, VIRQ48
[   59.068309] irqdomain: allocate parent returns 0
[   59.068400] irqdomain: allocate IRTE index 0
[   59.068489] irqdomain: IRTE0 vector 68 APICID15 dataffff8804288fb320 cfgffff88007b526240
[   59.141808] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input6
[   59.142071] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/sound/card0/input7
[   59.142277] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/sound/card0/input8
[   59.144285] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/sound/card0/input9
[   59.222016] snd_hda_codec_realtek hdaudioC1D0: ALC1150: SKU not ready 0x00000000
[   59.222671] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1150: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[   59.222824] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   59.222986] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   59.223137] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   59.223229] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[   59.223320] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   59.223413] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[   59.223506] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[   59.223598] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[   59.240920] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[   59.241162] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
[   59.241349] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input12
[   59.241540] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input13
[   59.242849] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input14
[   59.243137] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input15
[   59.243431] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input16
[  142.431481] systemd-journald[398]: Received request to flush runtime journal from PID 1
[  171.700294] audit: type=1305 audit(1438280594.159:3): audit_pid=495 old=0 auid=4294967295 ses=4294967295 res=1

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

end of thread, other threads:[~2015-07-30 18:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-30 16:44 [Bugfix] Jiang Liu
2015-07-30 16:46 ` [Bugfix] Jiang Liu
2015-07-30 18:34 ` [Bugfix] Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox