[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#815125: Boot failure with Debian linux 4.4.2 package



>> The QWORD at address 0xaa948720 is 0 though on the running system.
>
> My first reaction was: weird, 0x0 is an invalid address, and that I'd
> always expect dereferencing that address would cause a page fault.
>
> But we're dealing with physical addresses, and 0 is a compeletely
> legitimate address, and in fact, contains Boot Services Code on your
> machine,
>
>
> [    0.000000] efi: mem00: [Boot Code          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
>
>
> Looking at the mapping for the first page between the working and
> non-working kernels shows,
>
>
>  ---[ User Space ]---
> [Good] 0x0000000000000000-0x0000000000001000           4K       RW                 GLB NX pte
> [Bad]  0x0000000000000000-0x0000000000001000           4K                                 pte
>
>
> Oops. The zero page isn't mapped at all with the new scheme, which
> explains why working kernels don't fault but the new one does.
>
> This probably used to work because trim_bios_range() inserts a mapping
> for the first page into the e820 map, which is used to construct the
> kernel page tables. It's that code path rather than the EFI mapping
> code that allowed this to work in the past (I'm guessing).
>
> Could you boot a working kernel with memblock=debug on the kernel
> command line and look out for,
>
>   memblock: Could not reserve boot range [0x0000000000-0x0000000fff]
>
> or similar. I'd like to confirm what's going on here. If
> memblock=debug results in too much output you could simply change the
> memblock_dbg() call in efi_reserve_boot_services() to a printk().
>
> Because if this analysis is true, this patch should fix things,
>
> ---
> diff --git a/arch/x86/platform/efi/quirks.c b/arch/x86/platform/efi/quirks.c
> index 2326bf51978f..7db49e975b11 100644
> --- a/arch/x86/platform/efi/quirks.c
> +++ b/arch/x86/platform/efi/quirks.c
> @@ -194,8 +194,6 @@ void __init efi_reserve_boot_services(void)
>                                 && start <= __pa_symbol(_end)) ||
>                         !e820_all_mapped(start, start+size, E820_RAM) ||
>                         memblock_is_region_reserved(start, size)) {
> -                       /* Could not reserve, skip it */
> -                       md->num_pages = 0;
>                         memblock_dbg("Could not reserve boot range [0x%010llx-0x%010llx]\n",
>                                      start, start+size-1);
>                 } else

Indeed I get the "Could not reserve range" message, and with a kernel
v4.3 the physical address 0x1 contains the value 1.
And this patch works and make a unmodified + this patch 4.4 debian
kernel boots, nice well found :)

However, now a bad page state is reported in dmesg (which doesn't seem
to affect the kernel to me as a user but might hide something buggy) :
[    0.030096] BUG: Bad page state in process swapper/0  pfn:00000
[    0.030100] page:ffffea0000000000 count:0 mapcount:1 mapping:
   (null) index:0x0
[    0.030102] flags: 0x0()

The efi_free_boot_services function seems to expect size == 0 to not
free non reserved memory according to commit 7d68dc3.
Not sure if this bad page state is related to this patch though, but I
don't get this with the 4.3 kernel.

In attachment, the dmesg output of the patched 4.4 kernel and
"efi=debug memblock=debug" command line.
[    0.000000] microcode: CPU0 microcode updated early to revision 0x1c, date = 2015-02-26
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.2-amubtdx-patch-quirks (root@Debian2) (gcc version 5.3.1 20160224 (Debian 5.3.1-10) ) #1 SMP Wed Mar 9 20:16:53 CET 2016
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.2-amubtdx-patch-quirks root=UUID=be5f2ba3-ec9a-4645-8db5-eb9a6ddfd226 ro quiet efi=debug memblock=debug
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    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 832 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-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000a4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a4db0000-0x00000000a61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a61b0000-0x00000000aa7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000aa7bf000-0x00000000aa8adfff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8ae000-0x00000000aa8aefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa8af000-0x00000000aa8bcfff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8bd000-0x00000000aa8bdfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa8be000-0x00000000aa8c4fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8c5000-0x00000000aa8c5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa8c6000-0x00000000aa8d5fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8d6000-0x00000000aa8d6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa8d7000-0x00000000aa8f4fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8f5000-0x00000000aa937fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa938000-0x00000000aa9befff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa9bf000-0x00000000aaebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aaebf000-0x00000000aafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000aafbf000-0x00000000aaffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000aafff000-0x00000000aaffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ab000000-0x00000000af9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffd00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000024f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xaaffe000  ACPI 2.0=0xaaffe014  SMBIOS=0xaaebef98 
[    0.000000] efi: mem00: [Boot Code          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000001000-0x000000000006f000) (0MB)
[    0.000000] efi: mem02: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem03: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem04: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: [Loader Data        |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000000100000-0x000000000118d000) (16MB)
[    0.000000] efi: mem06: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x000000000118d000-0x0000000001200000) (0MB)
[    0.000000] efi: mem07: [Loader Data        |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000001200000-0x000000000228d000) (16MB)
[    0.000000] efi: mem08: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x000000000228d000-0x0000000020000000) (477MB)
[    0.000000] efi: mem09: [Reserved           |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem10: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000020200000-0x0000000035ebe000) (348MB)
[    0.000000] efi: mem11: [Loader Data        |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000035ebe000-0x0000000036f57000) (16MB)
[    0.000000] efi: mem12: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000036f57000-0x0000000040004000) (144MB)
[    0.000000] efi: mem13: [Reserved           |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem14: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000040005000-0x0000000079cc9000) (924MB)
[    0.000000] efi: mem15: [Loader Data        |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000079cc9000-0x00000000a31c0000) (660MB)
[    0.000000] efi: mem16: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a31c0000-0x00000000a31e0000) (0MB)
[    0.000000] efi: mem17: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a31e0000-0x00000000a3f5c000) (13MB)
[    0.000000] efi: mem18: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a3f5c000-0x00000000a4db0000) (14MB)
[    0.000000] efi: mem19: [Reserved           |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a4db0000-0x00000000a61b0000) (20MB)
[    0.000000] efi: mem20: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a61b0000-0x00000000a63a1000) (1MB)
[    0.000000] efi: mem21: [Loader Code        |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a63a1000-0x00000000a63bf000) (0MB)
[    0.000000] efi: mem22: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a63bf000-0x00000000a777d000) (19MB)
[    0.000000] efi: mem23: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a777d000-0x00000000a84cf000) (13MB)
[    0.000000] efi: mem24: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a84cf000-0x00000000a84d7000) (0MB)
[    0.000000] efi: mem25: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a84d7000-0x00000000a84d9000) (0MB)
[    0.000000] efi: mem26: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a84d9000-0x00000000a84da000) (0MB)
[    0.000000] efi: mem27: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a84da000-0x00000000a8512000) (0MB)
[    0.000000] efi: mem28: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a8512000-0x00000000a8517000) (0MB)
[    0.000000] efi: mem29: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a8517000-0x00000000a851e000) (0MB)
[    0.000000] efi: mem30: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a851e000-0x00000000a851f000) (0MB)
[    0.000000] efi: mem31: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a851f000-0x00000000a8544000) (0MB)
[    0.000000] efi: mem32: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a8544000-0x00000000a8545000) (0MB)
[    0.000000] efi: mem33: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a8545000-0x00000000a866f000) (1MB)
[    0.000000] efi: mem34: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a866f000-0x00000000a8673000) (0MB)
[    0.000000] efi: mem35: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a8673000-0x00000000a868c000) (0MB)
[    0.000000] efi: mem36: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a868c000-0x00000000a868d000) (0MB)
[    0.000000] efi: mem37: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a868d000-0x00000000a86ab000) (0MB)
[    0.000000] efi: mem38: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a86ab000-0x00000000a86b6000) (0MB)
[    0.000000] efi: mem39: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000a86b6000-0x00000000aa3bf000) (29MB)
[    0.000000] efi: mem40: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa3bf000-0x00000000aa511000) (1MB)
[    0.000000] efi: mem41: [Loader Data        |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa511000-0x00000000aa51b000) (0MB)
[    0.000000] efi: mem42: [Boot Code          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa51b000-0x00000000aa7bf000) (2MB)
[    0.000000] efi: mem43: [Runtime Code       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa7bf000-0x00000000aa8ae000) (0MB)
[    0.000000] efi: mem44: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8ae000-0x00000000aa8af000) (0MB)
[    0.000000] efi: mem45: [Runtime Code       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8af000-0x00000000aa8bd000) (0MB)
[    0.000000] efi: mem46: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8bd000-0x00000000aa8be000) (0MB)
[    0.000000] efi: mem47: [Runtime Code       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8be000-0x00000000aa8c5000) (0MB)
[    0.000000] efi: mem48: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8c5000-0x00000000aa8c6000) (0MB)
[    0.000000] efi: mem49: [Runtime Code       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8c6000-0x00000000aa8d6000) (0MB)
[    0.000000] efi: mem50: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8d6000-0x00000000aa8d7000) (0MB)
[    0.000000] efi: mem51: [Runtime Code       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8d7000-0x00000000aa8f5000) (0MB)
[    0.000000] efi: mem52: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa8f5000-0x00000000aa938000) (0MB)
[    0.000000] efi: mem53: [Runtime Code       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa938000-0x00000000aa9bf000) (0MB)
[    0.000000] efi: mem54: [Runtime Data       |RUN|  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aa9bf000-0x00000000aaabf000) (1MB)
[    0.000000] efi: mem55: [Reserved           |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aaabf000-0x00000000aaebf000) (4MB)
[    0.000000] efi: mem56: [ACPI Memory NVS    |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aaebf000-0x00000000aafbf000) (1MB)
[    0.000000] efi: mem57: [ACPI Reclaim Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aafbf000-0x00000000aafff000) (0MB)
[    0.000000] efi: mem58: [Boot Data          |   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x00000000aafff000-0x00000000ab000000) (0MB)
[    0.000000] efi: mem59: [Conventional Memory|   |  |  |  |  |  |   |WB|WT|WC|UC] range=[0x0000000100000000-0x000000024f600000) (5366MB)
[    0.000000] efi: mem60: [Reserved           |   |  |  |  |  |  |   |  |  |  |  ] range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem61: [Reserved           |   |  |  |  |  |  |   |  |  |  |  ] range=[0x00000000ab000000-0x00000000afa00000) (74MB)
[    0.000000] efi: mem62: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |UC] range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem63: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |UC] range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem64: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |UC] range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem65: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |UC] range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem66: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |UC] range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem67: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |UC] range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem68: [Memory Mapped I/O  |RUN|  |  |  |  |  |   |  |  |  |  ] range=[0x00000000ffd00000-0x0000000100000000) (3MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Sony Corporation SVE1513Q1EB/VAIO, BIOS R0170D5 11/14/2012
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x24f600 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FE0000000 write-back
[    0.000000]   2 base 0A0000000 mask FF8000000 write-back
[    0.000000]   3 base 0A8000000 mask FFE000000 write-back
[    0.000000]   4 base 0AA000000 mask FFF000000 write-back
[    0.000000]   5 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   6 base 100000000 mask F00000000 write-back
[    0.000000]   7 base 200000000 mask F80000000 write-back
[    0.000000]   8 base 24F600000 mask FFFE00000 uncachable
[    0.000000]   9 base 24F800000 mask FFF800000 uncachable
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xab000 max_arch_pfn = 0x400000000
[    0.000000] memblock_reserve: [0x00000001f27000-0x00000001f2dfff] flags 0x0 setup_arch+0x632/0xcc6
[    0.000000] memblock_add: [0x00000000001000-0x00000000087fff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] memblock_add: [0x00000000100000-0x0000001fffffff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] memblock_add: [0x00000020200000-0x00000040003fff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] memblock_add: [0x00000040005000-0x000000a4daffff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] memblock_add: [0x000000a61b0000-0x000000aa7befff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] memblock_add: [0x000000aafff000-0x000000aaffffff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] memblock_add: [0x00000100000000-0x0000024f5fffff] flags 0x0 memblock_x86_fill+0x3e/0x5d
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x1f8746000 reserved size = 0x1e2a4f0
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x00000000001000-0x00000000087fff], 0x87000 bytes flags: 0x0
[    0.000000]  memory[0x1]	[0x00000000100000-0x0000001fffffff], 0x1ff00000 bytes flags: 0x0
[    0.000000]  memory[0x2]	[0x00000020200000-0x00000040003fff], 0x1fe04000 bytes flags: 0x0
[    0.000000]  memory[0x3]	[0x00000040005000-0x000000a4daffff], 0x64dab000 bytes flags: 0x0
[    0.000000]  memory[0x4]	[0x000000a61b0000-0x000000aa7befff], 0x460f000 bytes flags: 0x0
[    0.000000]  memory[0x5]	[0x000000aafff000-0x000000aaffffff], 0x1000 bytes flags: 0x0
[    0.000000]  memory[0x6]	[0x00000100000000-0x0000024f5fffff], 0x14f600000 bytes flags: 0x0
[    0.000000]  reserved.cnt  = 0x4
[    0.000000]  reserved[0x0]	[0x00000000084000-0x00000000084cef], 0xcf0 bytes flags: 0x0
[    0.000000]  reserved[0x1]	[0x0000000009d800-0x000000000fffff], 0x62800 bytes flags: 0x0
[    0.000000]  reserved[0x2]	[0x00000001200000-0x00000001f2dfff], 0xd2e000 bytes flags: 0x0
[    0.000000]  reserved[0x3]	[0x00000035ebe000-0x00000036f56fff], 0x1099000 bytes flags: 0x0
[    0.000000] Could not reserve boot range [0x0000000000-0x0000000fff]
[    0.000000] memblock_reserve: [0x0000000006f000-0x0000000006ffff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a31c0000-0x000000a31dffff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a3f5c000-0x000000a4daffff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a777d000-0x000000a84cefff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a84d7000-0x000000a84d8fff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a84da000-0x000000a8511fff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a8517000-0x000000a851dfff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a851f000-0x000000a8543fff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a8545000-0x000000a866efff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a8673000-0x000000a868bfff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a868d000-0x000000a86aafff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000a86b6000-0x000000aa3befff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000aa51b000-0x000000aa7befff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x000000aafff000-0x000000aaffffff] flags 0x0 efi_reserve_boot_services+0xaa/0xbf
[    0.000000] memblock_reserve: [0x0000000007e000-0x00000000083fff] flags 0x0 reserve_real_mode+0x59/0x79
[    0.000000] Base memory trampoline at [ffff88000007e000] 7e000 size 24576
[    0.000000] memblock_reserve: [0x00000000000000-0x0000000000ffff] flags 0x0 setup_arch+0x733/0xcc6
[    0.000000] BRK [0x01f28000, 0x01f28fff] PGTABLE
[    0.000000] BRK [0x01f29000, 0x01f29fff] PGTABLE
[    0.000000] BRK [0x01f2a000, 0x01f2afff] PGTABLE
[    0.000000] BRK [0x01f2b000, 0x01f2bfff] PGTABLE
[    0.000000] BRK [0x01f2c000, 0x01f2cfff] PGTABLE
[    0.000000] BRK [0x01f2d000, 0x01f2dfff] PGTABLE
[    0.000000] memblock_reserve: [0x0000024f5ff000-0x0000024f5fffff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5fe000-0x0000024f5fefff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5fd000-0x0000024f5fdfff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5fc000-0x0000024f5fcfff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5fb000-0x0000024f5fbfff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5fa000-0x0000024f5fafff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5f9000-0x0000024f5f9fff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5f8000-0x0000024f5f8fff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5f7000-0x0000024f5f7fff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] memblock_reserve: [0x0000024f5f6000-0x0000024f5f6fff] flags 0x0 alloc_low_pages+0xa2/0x140
[    0.000000] RAMDISK: [mem 0x35ebe000-0x36f56fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000AAFFE014 000024 (v02 Sony  )
[    0.000000] ACPI: XSDT 0x00000000AAFFE210 00009C (v01 Sony   VAIO     20121030      01000013)
[    0.000000] ACPI: FACP 0x00000000AAFFB000 00010C (v05 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: DSDT 0x00000000AAFEE000 009122 (v02 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: FACS 0x00000000AAFBB000 000040
[    0.000000] ACPI: UEFI 0x00000000AAFFD000 000236 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: ASF! 0x00000000AAFFC000 0000A5 (v32 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: HPET 0x00000000AAFFA000 000038 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: APIC 0x00000000AAFF9000 00008C (v03 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: MCFG 0x00000000AAFF8000 00003C (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: WDAT 0x00000000AAFEC000 000224 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: BOOT 0x00000000AAFEA000 000028 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: ASPT 0x00000000AAFE9000 000034 (v07 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: DBGP 0x00000000AAFE8000 000034 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: FPDT 0x00000000AAFE6000 000044 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: MSDM 0x00000000AAFE5000 000055 (v03 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: SSDT 0x00000000AAFE4000 0009AA (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: SSDT 0x00000000AAFE3000 000A92 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: BGRT 0x00000000AAFED000 000038 (v01 Sony   VAIO     20121030 INTL 20100121)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000024f5fffff]
[    0.000000] memblock_reserve: [0x0000024f5f2000-0x0000024f5f5fff] flags 0x0 memblock_alloc_range_nid+0x2d/0x37
[    0.000000] NODE_DATA(0) allocated [mem 0x24f5f2000-0x24f5f5fff]
[    0.000000] MEMBLOCK configuration:
[    0.000000]  memory size = 0x1f8746000 reserved size = 0x5b8a4f0
[    0.000000]  memory.cnt  = 0x7
[    0.000000]  memory[0x0]	[0x00000000001000-0x00000000087fff], 0x87000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x1]	[0x00000000100000-0x0000001fffffff], 0x1ff00000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x2]	[0x00000020200000-0x00000040003fff], 0x1fe04000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x3]	[0x00000040005000-0x000000a4daffff], 0x64dab000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x4]	[0x000000a61b0000-0x000000aa7befff], 0x460f000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x5]	[0x000000aafff000-0x000000aaffffff], 0x1000 bytes on node 0 flags: 0x0
[    0.000000]  memory[0x6]	[0x00000100000000-0x0000024f5fffff], 0x14f600000 bytes on node 0 flags: 0x0
[    0.000000]  reserved.cnt  = 0x15
[    0.000000]  reserved[0x0]	[0x00000000000000-0x0000000000ffff], 0x10000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x1]	[0x0000000006f000-0x0000000006ffff], 0x1000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x2]	[0x0000000007e000-0x00000000084cef], 0x6cf0 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x3]	[0x0000000009d800-0x000000000fffff], 0x62800 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x4]	[0x00000001200000-0x00000001f2dfff], 0xd2e000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x5]	[0x00000035ebe000-0x00000036f56fff], 0x1099000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x6]	[0x000000a31c0000-0x000000a31dffff], 0x20000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x7]	[0x000000a3f5c000-0x000000a4daffff], 0xe54000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x8]	[0x000000a777d000-0x000000a84cefff], 0xd52000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x9]	[0x000000a84d7000-0x000000a84d8fff], 0x2000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xa]	[0x000000a84da000-0x000000a8511fff], 0x38000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xb]	[0x000000a8517000-0x000000a851dfff], 0x7000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xc]	[0x000000a851f000-0x000000a8543fff], 0x25000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xd]	[0x000000a8545000-0x000000a866efff], 0x12a000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xe]	[0x000000a8673000-0x000000a868bfff], 0x19000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0xf]	[0x000000a868d000-0x000000a86aafff], 0x1e000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x10]	[0x000000a86b6000-0x000000aa3befff], 0x1d09000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x11]	[0x000000aa51b000-0x000000aa7befff], 0x2a4000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x12]	[0x000000aafff000-0x000000aaffffff], 0x1000 bytes on node 0 flags: 0x0
[    0.000000]  reserved[0x13]	[0x0000024f5f2000-0x0000024f5f5fff], 0x4000 bytes flags: 0x0
[    0.000000]  reserved[0x14]	[0x0000024f5f6000-0x0000024f5fffff], 0xa000 bytes on node 0 flags: 0x0
[    0.000000] memblock_virt_alloc_try_nid: 4096 bytes align=0x0 nid=0 from=0x0 max_addr=0x0 memory_present+0x65/0xb3
[    0.000000] memblock_reserve: [0x0000024f5f1000-0x0000024f5f1fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 4194304 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 sparse_init+0x1d/0x12d
[    0.000000] memblock_reserve: [0x0000024f1f1000-0x0000024f5f0fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 2048 bytes align=0x40 nid=0 from=0x248000000 max_addr=0x250000000 sparse_early_usemaps_alloc_node+0x80/0x1df
[    0.000000] memblock_reserve: [0x0000024f1f0800-0x0000024f1f0fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 4194304 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 sparse_init+0x54/0x12d
[    0.000000] memblock_reserve: [0x0000024edf0800-0x0000024f1f07ff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 134217728 bytes align=0x200000 nid=0 from=0x1000000 max_addr=0x0 sparse_mem_maps_populate_node+0x30/0x119
[    0.000000] memblock_reserve: [0x00000246c00000-0x0000024ebfffff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 4096 bytes align=0x1000 nid=0 from=0x1000000 max_addr=0x0 vmemmap_pgd_populate+0x28/0x9e
[    0.000000] memblock_reserve: [0x0000024edef000-0x0000024edeffff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 4096 bytes align=0x1000 nid=0 from=0x1000000 max_addr=0x0 vmemmap_pud_populate+0x4b/0xc5
[    0.000000] memblock_reserve: [0x0000024edee000-0x0000024edeefff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] __memblock_free_early: [0x0000024ec00000-0x0000024ebfffff] sparse_mem_maps_populate_node+0xf7/0x119
[    0.000000] __memblock_free_early: [0x0000024edf0800-0x0000024f1f07ff] sparse_init+0x107/0x12d
[    0.000000] __memblock_free_early: [0x0000024f1f1000-0x0000024f5f0fff] paging_init+0xf/0x1c
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000000001000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000024f5fffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000087fff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x0000000040003fff]
[    0.000000]   node   0: [mem 0x0000000040005000-0x00000000a4daffff]
[    0.000000]   node   0: [mem 0x00000000a61b0000-0x00000000aa7befff]
[    0.000000]   node   0: [mem 0x00000000aafff000-0x00000000aaffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000024f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000024f5fffff]
[    0.000000] On node 0 totalpages: 2066246
[    0.000000]   DMA32 zone: 10822 pages used for memmap
[    0.000000]   DMA32 zone: 23 pages reserved
[    0.000000]   DMA32 zone: 692550 pages, LIFO batch:31
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 98304 bytes align=0x0 nid=0 from=0x0 max_addr=0x0 zone_wait_table_init.isra.75+0x4a/0xb0
[    0.000000] memblock_reserve: [0x0000024f5d9000-0x0000024f5f0fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000]   Normal zone: 21464 pages used for memmap
[    0.000000]   Normal zone: 1373696 pages, LIFO batch:31
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 98304 bytes align=0x0 nid=0 from=0x0 max_addr=0x0 zone_wait_table_init.isra.75+0x4a/0xb0
[    0.000000] memblock_reserve: [0x0000024f5c1000-0x0000024f5d8fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_reserve: [0x0000024f5c0000-0x0000024f5c0fff] flags 0x0 __alloc_memory_core_early+0x7d/0xa9
[    0.000000] Reserving Intel graphics stolen memory at 0xaba00000-0xaf9fffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] memblock_reserve: [0x0000024f5bff80-0x0000024f5bffc0] flags 0x0 __alloc_memory_core_early+0x7d/0xa9
[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[    0.000000] memblock_reserve: [0x0000024f5bff00-0x0000024f5bff42] flags 0x0 __alloc_memory_core_early+0x7d/0xa9
[    0.000000] memblock_reserve: [0x0000024f5bf780-0x0000024f5bfeef] flags 0x0 __alloc_memory_core_early+0x7d/0xa9
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf700-0x0000024f5bf767] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf680-0x0000024f5bf6e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf600-0x0000024f5bf667] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf580-0x0000024f5bf5e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf500-0x0000024f5bf567] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf480-0x0000024f5bf4e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf400-0x0000024f5bf467] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf380-0x0000024f5bf3e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf300-0x0000024f5bf367] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf280-0x0000024f5bf2e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf200-0x0000024f5bf267] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf180-0x0000024f5bf1e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf100-0x0000024f5bf167] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf080-0x0000024f5bf0e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bf000-0x0000024f5bf067] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bef80-0x0000024f5befe7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bef00-0x0000024f5bef67] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bee80-0x0000024f5beee7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bee00-0x0000024f5bee67] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bed80-0x0000024f5bede7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bed00-0x0000024f5bed67] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bec80-0x0000024f5bece7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bec00-0x0000024f5bec67] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5beb80-0x0000024f5bebe7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5beb00-0x0000024f5beb67] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bea80-0x0000024f5beae7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5bea00-0x0000024f5bea67] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5be980-0x0000024f5be9e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5be900-0x0000024f5be967] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5be880-0x0000024f5be8e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5be800-0x0000024f5be867] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5be780-0x0000024f5be7e7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 104 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 firmware_map_add_early+0x21/0x56
[    0.000000] memblock_reserve: [0x0000024f5be700-0x0000024f5be767] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be6c0-0x0000024f5be6df] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be680-0x0000024f5be69f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be640-0x0000024f5be65f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be600-0x0000024f5be61f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be5c0-0x0000024f5be5df] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0xa4db0000-0xa61affff]
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be580-0x0000024f5be59f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0xaa7bf000-0xaa8adfff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8ae000-0xaa8aefff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8af000-0xaa8bcfff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8bd000-0xaa8bdfff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8be000-0xaa8c4fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8c5000-0xaa8c5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8c6000-0xaa8d5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8d6000-0xaa8d6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8d7000-0xaa8f4fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8f5000-0xaa937fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa938000-0xaa9befff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa9bf000-0xaaebefff]
[    0.000000] PM: Registered nosave memory: [mem 0xaaebf000-0xaafbefff]
[    0.000000] PM: Registered nosave memory: [mem 0xaafbf000-0xaaffefff]
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 __register_nosave_region+0x66/0xa2
[    0.000000] memblock_reserve: [0x0000024f5be540-0x0000024f5be55f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PM: Registered nosave memory: [mem 0xab000000-0xaf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xafa00000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf4000000-0xfeafffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffcfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffd00000-0xffffffff]
[    0.000000] e820: [mem 0xafa00000-0xefffffff] 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: 7645519600211568 ns
[    0.000000] memblock_virt_alloc_try_nid: 133 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 start_kernel+0x113/0x497
[    0.000000] memblock_reserve: [0x0000024f5be480-0x0000024f5be504] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 133 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 start_kernel+0x139/0x497
[    0.000000] memblock_reserve: [0x0000024f5be3c0-0x0000024f5be444] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 133 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 start_kernel+0x15f/0x497
[    0.000000] memblock_reserve: [0x0000024f5be300-0x0000024f5be384] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 4096 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_alloc_alloc_info+0x3b/0x73
[    0.000000] memblock_reserve: [0x0000024f5bd300-0x0000024f5be2ff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 4096 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_embed_first_chunk+0x6d/0x2b7
[    0.000000] memblock_reserve: [0x0000024f5bc300-0x0000024f5bd2ff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_reserve: [0x0000024f200000-0x0000024f3fffff] flags 0x0 __alloc_memory_core_early+0x7d/0xa9
[    0.000000]    memblock_free: [0x0000024f220000-0x0000024f23ffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f260000-0x0000024f27ffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f2a0000-0x0000024f2bffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f2e0000-0x0000024f2fffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f320000-0x0000024f33ffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f360000-0x0000024f37ffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f3a0000-0x0000024f3bffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000]    memblock_free: [0x0000024f3e0000-0x0000024f3fffff] pcpu_embed_first_chunk+0x19a/0x2b7
[    0.000000] PERCPU: Embedded 32 pages/cpu @ffff88024f200000 s92888 r8192 d29992 u262144
[    0.000000] memblock_virt_alloc_try_nid: 8 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x299/0x779
[    0.000000] memblock_reserve: [0x0000024f5bc2c0-0x0000024f5bc2c7] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 8 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x2a9/0x779
[    0.000000] memblock_reserve: [0x0000024f5bc280-0x0000024f5bc287] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 32 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x2bd/0x779
[    0.000000] memblock_reserve: [0x0000024f5bc240-0x0000024f5bc25f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 64 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x2d0/0x779
[    0.000000] memblock_reserve: [0x0000024f5bc200-0x0000024f5bc23f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] pcpu-alloc: s92888 r8192 d29992 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] memblock_virt_alloc_try_nid: 288 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x59c/0x779
[    0.000000] memblock_reserve: [0x0000024f5bc0c0-0x0000024f5bc1df] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 112 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x5ca/0x779
[    0.000000] memblock_reserve: [0x0000024f5bc040-0x0000024f5bc0af] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 112 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 pcpu_setup_first_chunk+0x6ad/0x779
[    0.000000] memblock_reserve: [0x0000024f5bbfc0-0x0000024f5bc02f] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] __memblock_free_early: [0x0000024f5bd300-0x0000024f5be2ff] pcpu_embed_first_chunk+0x261/0x2b7
[    0.000000] __memblock_free_early: [0x0000024f5bc300-0x0000024f5bd2ff] pcpu_embed_first_chunk+0x288/0x2b7
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 2033937
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.2-amubtdx-patch-quirks root=UUID=be5f2ba3-ec9a-4645-8db5-eb9a6ddfd226 ro quiet efi=debug memblock=debug
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 32768 bytes align=0x0 nid=-1 from=0x0 max_addr=0x0 alloc_large_system_hash+0x139/0x219
[    0.000000] memblock_reserve: [0x0000024f5b3fc0-0x0000024f5bbfbf] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 67108864 bytes align=0x1000 nid=-1 from=0x0 max_addr=0xffffffff swiotlb_init+0x46/0xa3
[    0.000000] memblock_reserve: [0x0000009f1c0000-0x000000a31bffff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid_nopanic: 32768 bytes align=0x1000 nid=-1 from=0x0 max_addr=0xffffffff swiotlb_init_with_tbl+0x62/0x13c
[    0.000000] memblock_reserve: [0x000000aa513000-0x000000aa51afff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 131072 bytes align=0x1000 nid=-1 from=0x0 max_addr=0x0 swiotlb_init_with_tbl+0xb2/0x13c
[    0.000000] memblock_reserve: [0x0000024f593000-0x0000024f5b2fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] memblock_virt_alloc_try_nid: 262144 bytes align=0x1000 nid=-1 from=0x0 max_addr=0x0 swiotlb_init_with_tbl+0xe1/0x13c
[    0.000000] memblock_reserve: [0x0000024f553000-0x0000024f592fff] flags 0x0 memblock_virt_alloc_internal+0x12d/0x159
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 7973336K/8264984K available (5688K kernel code, 1064K rwdata, 2820K rodata, 1300K init, 828K bss, 291648K reserved, 0K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:33024 nr_irqs:488 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2594.111 MHz processor
[    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5188.22 BogoMIPS (lpj=10376444)
[    0.000033] pid_max: default: 32768 minimum: 301
[    0.000039] ACPI: Core revision 20150930
[    0.005274] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.005557] ---[ User Space ]---
[    0.005560] 0x0000000000000000-0x00000000000a0000         640K     RW                     x  pte
[    0.005565] 0x00000000000a0000-0x0000000000100000         384K                               pte
[    0.005569] 0x0000000000100000-0x0000000000200000           1M     RW                     x  pte
[    0.005572] 0x0000000000200000-0x0000000001000000          14M     RW         PSE         x  pmd
[    0.005579] 0x0000000001000000-0x0000000001200000           2M     RW                     x  pte
[    0.005582] 0x0000000001200000-0x0000000001800000           6M     RW         PSE     GLB x  pmd
[    0.005584] 0x0000000001800000-0x0000000001a00000           2M     ro         PSE     GLB x  pmd
[    0.005589] 0x0000000001a00000-0x0000000001ac1000         772K     ro                 GLB x  pte
[    0.005594] 0x0000000001ac1000-0x0000000001c00000        1276K     RW                 GLB x  pte
[    0.005596] 0x0000000001c00000-0x0000000001e00000           2M     RW         PSE     GLB x  pmd
[    0.005603] 0x0000000001e00000-0x0000000002000000           2M     RW                 GLB x  pte
[    0.005606] 0x0000000002000000-0x0000000002200000           2M     RW         PSE         x  pmd
[    0.005612] 0x0000000002200000-0x0000000002400000           2M     RW                     x  pte
[    0.005617] 0x0000000002400000-0x0000000020000000         476M     RW         PSE         x  pmd
[    0.005620] 0x0000000020000000-0x0000000020200000           2M                               pmd
[    0.005623] 0x0000000020200000-0x0000000035e00000         348M     RW         PSE         x  pmd
[    0.005630] 0x0000000035e00000-0x0000000036000000           2M     RW                     x  pte
[    0.005632] 0x0000000036000000-0x0000000036e00000          14M     RW         PSE         x  pmd
[    0.005639] 0x0000000036e00000-0x0000000037000000           2M     RW                     x  pte
[    0.005642] 0x0000000037000000-0x0000000040000000         144M     RW         PSE         x  pmd
[    0.005645] 0x0000000040000000-0x0000000040004000          16K     RW                     x  pte
[    0.005648] 0x0000000040004000-0x0000000040005000           4K                               pte
[    0.005653] 0x0000000040005000-0x0000000040200000        2028K     RW                     x  pte
[    0.005660] 0x0000000040200000-0x0000000079c00000         922M     RW         PSE         x  pmd
[    0.005666] 0x0000000079c00000-0x0000000079e00000           2M     RW                     x  pte
[    0.005672] 0x0000000079e00000-0x00000000a3000000         658M     RW         PSE         x  pmd
[    0.005679] 0x00000000a3000000-0x00000000a3200000           2M     RW                     x  pte
[    0.005681] 0x00000000a3200000-0x00000000a3e00000          12M     RW         PSE         x  pmd
[    0.005688] 0x00000000a3e00000-0x00000000a4000000           2M     RW                     x  pte
[    0.005691] 0x00000000a4000000-0x00000000a4c00000          12M     RW         PSE         x  pmd
[    0.005697] 0x00000000a4c00000-0x00000000a4db0000        1728K     RW                     x  pte
[    0.005700] 0x00000000a4db0000-0x00000000a4e00000         320K                               pte
[    0.005702] 0x00000000a4e00000-0x00000000a6000000          18M                               pmd
[    0.005706] 0x00000000a6000000-0x00000000a61b0000        1728K                               pte
[    0.005712] 0x00000000a61b0000-0x00000000a6400000        2368K     RW                     x  pte
[    0.005715] 0x00000000a6400000-0x00000000a7600000          18M     RW         PSE         x  pmd
[    0.005721] 0x00000000a7600000-0x00000000a7800000           2M     RW                     x  pte
[    0.005724] 0x00000000a7800000-0x00000000a8400000          12M     RW         PSE         x  pmd
[    0.005734] 0x00000000a8400000-0x00000000a8800000           4M     RW                     x  pte
[    0.005737] 0x00000000a8800000-0x00000000aa200000          26M     RW         PSE         x  pmd
[    0.005757] 0x00000000aa200000-0x00000000aaabf000        8956K     RW                     x  pte
[    0.005762] 0x00000000aaabf000-0x00000000aac00000        1284K                               pte
[    0.005763] 0x00000000aac00000-0x00000000aae00000           2M                               pmd
[    0.005768] 0x00000000aae00000-0x00000000aafff000        2044K                               pte
[    0.005770] 0x00000000aafff000-0x00000000ab000000           4K     RW                     x  pte
[    0.005777] 0x00000000ab000000-0x00000000f0000000        1104M                               pmd
[    0.005779] 0x00000000f0000000-0x00000000f4000000          64M     RW     PCD PSE         x  pmd
[    0.005782] 0x00000000f4000000-0x00000000fea00000         170M                               pmd
[    0.005786] 0x00000000fea00000-0x00000000feb00000           1M                               pte
[    0.005787] 0x00000000feb00000-0x00000000feb04000          16K     RW     PCD             x  pte
[    0.005792] 0x00000000feb04000-0x00000000fec00000        1008K                               pte
[    0.005793] 0x00000000fec00000-0x00000000fec01000           4K     RW     PCD             x  pte
[    0.005798] 0x00000000fec01000-0x00000000fed10000        1084K                               pte
[    0.005799] 0x00000000fed10000-0x00000000fed1a000          40K     RW     PCD             x  pte
[    0.005802] 0x00000000fed1a000-0x00000000fed1c000           8K                               pte
[    0.005803] 0x00000000fed1c000-0x00000000fed20000          16K     RW     PCD             x  pte
[    0.005808] 0x00000000fed20000-0x00000000fee00000         896K                               pte
[    0.005809] 0x00000000fee00000-0x00000000fee01000           4K     RW     PCD             x  pte
[    0.005816] 0x00000000fee01000-0x00000000ff000000        2044K                               pte
[    0.005817] 0x00000000ff000000-0x00000000ffc00000          12M                               pmd
[    0.005820] 0x00000000ffc00000-0x00000000ffd00000           1M                               pte
[    0.005823] 0x00000000ffd00000-0x00000000ffe00000           1M     RW     PCD             x  pte
[    0.005826] 0x00000000ffe00000-0x0000000100000000           2M     RW     PCD PSE         x  pmd
[    0.005829] 0x0000000100000000-0x0000000140000000           1G     RW         PSE         x  pud
[    0.005833] 0x0000000140000000-0x000000014f600000         246M     RW         PSE         x  pmd
[    0.005839] 0x000000014f600000-0x0000000180000000         778M                               pmd
[    0.005841] 0x0000000180000000-0x0000000240000000           3G                               pud
[    0.005843] 0x0000000240000000-0x0000000246800000         104M                               pmd
[    0.005846] 0x0000000246800000-0x00000002468e2000         904K                               pte
[    0.005847] 0x00000002468e2000-0x00000002468e4000           8K     RW                     NX pte
[    0.005852] 0x00000002468e4000-0x0000000246a00000        1136K                               pte
[    0.005857] 0x0000000246a00000-0x0000000280000000         918M                               pmd
[    0.005863] 0x0000000280000000-0x0000008000000000         502G                               pud
[    0.005867] 0x0000008000000000-0xffff800000000000   17179737600G                               pgd
[    0.005868] ---[ Kernel Space ]---
[    0.005869] 0xffff800000000000-0xffff880000000000           8T                               pgd
[    0.005871] ---[ Low Kernel Mapping ]---
[    0.005875] 0xffff880000000000-0xffff880000200000           2M     RW                 GLB NX pte
[    0.005880] 0xffff880000200000-0xffff880020000000         510M     RW         PSE     GLB NX pmd
[    0.005883] 0xffff880020000000-0xffff880020200000           2M                               pmd
[    0.005887] 0xffff880020200000-0xffff880040000000         510M     RW         PSE     GLB NX pmd
[    0.005890] 0xffff880040000000-0xffff880040004000          16K     RW                 GLB NX pte
[    0.005893] 0xffff880040004000-0xffff880040005000           4K                               pte
[    0.005898] 0xffff880040005000-0xffff880040200000        2028K     RW                 GLB NX pte
[    0.005908] 0xffff880040200000-0xffff8800a4c00000        1610M     RW         PSE     GLB NX pmd
[    0.005914] 0xffff8800a4c00000-0xffff8800a4db0000        1728K     RW                 GLB NX pte
[    0.005917] 0xffff8800a4db0000-0xffff8800a4e00000         320K                               pte
[    0.005919] 0xffff8800a4e00000-0xffff8800a6000000          18M                               pmd
[    0.005923] 0xffff8800a6000000-0xffff8800a61b0000        1728K                               pte
[    0.005925] 0xffff8800a61b0000-0xffff8800a6200000         320K     RW                 GLB NX pte
[    0.005929] 0xffff8800a6200000-0xffff8800aa600000          68M     RW         PSE     GLB NX pmd
[    0.005935] 0xffff8800aa600000-0xffff8800aa7bf000        1788K     RW                 GLB NX pte
[    0.005938] 0xffff8800aa7bf000-0xffff8800aa800000         260K                               pte
[    0.005939] 0xffff8800aa800000-0xffff8800aae00000           6M                               pmd
[    0.005944] 0xffff8800aae00000-0xffff8800aafff000        2044K                               pte
[    0.005946] 0xffff8800aafff000-0xffff8800ab000000           4K     RW                 GLB NX pte
[    0.005950] 0xffff8800ab000000-0xffff8800c0000000         336M                               pmd
[    0.005952] 0xffff8800c0000000-0xffff880100000000           1G                               pud
[    0.005977] 0xffff880100000000-0xffff88024f600000        5366M     RW         PSE     GLB NX pmd
[    0.005983] 0xffff88024f600000-0xffff880280000000         778M                               pmd
[    0.005989] 0xffff880280000000-0xffff888000000000         502G                               pud
[    0.005992] 0xffff888000000000-0xffffc90000000000       66048G                               pgd
[    0.005993] ---[ vmalloc() Area ]---
[    0.005994] 0xffffc90000000000-0xffffc90000001000           4K     RW     PCD         GLB NX pte
[    0.005997] 0xffffc90000001000-0xffffc90000002000           4K                               pte
[    0.005998] 0xffffc90000002000-0xffffc90000003000           4K     RW                 GLB NX pte
[    0.006001] 0xffffc90000003000-0xffffc90000004000           4K                               pte
[    0.006002] 0xffffc90000004000-0xffffc90000005000           4K     RW                 GLB NX pte
[    0.006005] 0xffffc90000005000-0xffffc90000010000          44K                               pte
[    0.006007] 0xffffc90000010000-0xffffc9000001a000          40K     RW                 GLB NX pte
[    0.006013] 0xffffc9000001a000-0xffffc90000200000        1944K                               pte
[    0.006019] 0xffffc90000200000-0xffffc90040000000        1022M                               pmd
[    0.006024] 0xffffc90040000000-0xffffc98000000000         511G                               pud
[    0.006026] 0xffffc98000000000-0xffffea0000000000       33280G                               pgd
[    0.006028] ---[ Vmemmap ]---
[    0.006029] 0xffffea0000000000-0xffffea0002c00000          44M     RW         PSE     GLB NX pmd
[    0.006032] 0xffffea0002c00000-0xffffea0004000000          20M                               pmd
[    0.006033] 0xffffea0004000000-0xffffea0009400000          84M     RW         PSE     GLB NX pmd
[    0.006040] 0xffffea0009400000-0xffffea0040000000         876M                               pmd
[    0.006046] 0xffffea0040000000-0xffffea8000000000         511G                               pud
[    0.006047] 0xffffea8000000000-0xffffff0000000000       20992G                               pgd
[    0.006049] ---[ ESPfix Area ]---
[    0.006050] 0xffffff0000000000-0xffffff8000000000         512G                               pgd
[    0.006055] 0xffffff8000000000-0xffffffef00000000         444G                               pud
[    0.006056] ---[ EFI Runtime Services ]---
[    0.006057] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.006063] 0xfffffffec0000000-0xfffffffef7000000         880M                               pmd
[    0.006064] 0xfffffffef7000000-0xfffffffef7001000           4K     RW                     x  pte
[    0.006068] 0xfffffffef7001000-0xfffffffef706f000         440K                               pte
[    0.006069] 0xfffffffef706f000-0xfffffffef7070000           4K     RW                     x  pte
[    0.006072] 0xfffffffef7070000-0xfffffffef7088000          96K                               pte
[    0.006074] 0xfffffffef7088000-0xfffffffef70a0000          96K     RW                     x  pte
[    0.006078] 0xfffffffef70a0000-0xfffffffef71c0000        1152K                               pte
[    0.006080] 0xfffffffef71c0000-0xfffffffef71e0000         128K     RW                     x  pte
[    0.006086] 0xfffffffef71e0000-0xfffffffef735c000        1520K                               pte
[    0.006088] 0xfffffffef735c000-0xfffffffef7400000         656K     RW                     x  pte
[    0.006091] 0xfffffffef7400000-0xfffffffef8000000          12M     RW         PSE         x  pmd
[    0.006097] 0xfffffffef8000000-0xfffffffef81b0000        1728K     RW                     x  pte
[    0.006103] 0xfffffffef81b0000-0xfffffffef837d000        1844K                               pte
[    0.006106] 0xfffffffef837d000-0xfffffffef8400000         524K     RW                     x  pte
[    0.006108] 0xfffffffef8400000-0xfffffffef9000000          12M     RW         PSE         x  pmd
[    0.006113] 0xfffffffef9000000-0xfffffffef90cf000         828K     RW                     x  pte
[    0.006116] 0xfffffffef90cf000-0xfffffffef90d7000          32K                               pte
[    0.006117] 0xfffffffef90d7000-0xfffffffef90d9000           8K     RW                     x  pte
[    0.006120] 0xfffffffef90d9000-0xfffffffef90da000           4K                               pte
[    0.006121] 0xfffffffef90da000-0xfffffffef9112000         224K     RW                     x  pte
[    0.006124] 0xfffffffef9112000-0xfffffffef9117000          20K                               pte
[    0.006126] 0xfffffffef9117000-0xfffffffef911e000          28K     RW                     x  pte
[    0.006128] 0xfffffffef911e000-0xfffffffef911f000           4K                               pte
[    0.006130] 0xfffffffef911f000-0xfffffffef9144000         148K     RW                     x  pte
[    0.006133] 0xfffffffef9144000-0xfffffffef9145000           4K                               pte
[    0.006137] 0xfffffffef9145000-0xfffffffef926f000        1192K     RW                     x  pte
[    0.006139] 0xfffffffef926f000-0xfffffffef9273000          16K                               pte
[    0.006141] 0xfffffffef9273000-0xfffffffef928c000         100K     RW                     x  pte
[    0.006144] 0xfffffffef928c000-0xfffffffef928d000           4K                               pte
[    0.006145] 0xfffffffef928d000-0xfffffffef92ab000         120K     RW                     x  pte
[    0.006148] 0xfffffffef92ab000-0xfffffffef92b6000          44K                               pte
[    0.006152] 0xfffffffef92b6000-0xfffffffef9400000        1320K     RW                     x  pte
[    0.006155] 0xfffffffef9400000-0xfffffffefae00000          26M     RW         PSE         x  pmd
[    0.006161] 0xfffffffefae00000-0xfffffffefafbf000        1788K     RW                     x  pte
[    0.006166] 0xfffffffefafbf000-0xfffffffefb11b000        1392K                               pte
[    0.006178] 0xfffffffefb11b000-0xfffffffefb6bf000        5776K     RW                     x  pte
[    0.006183] 0xfffffffefb6bf000-0xfffffffefb7ff000        1280K                               pte
[    0.006185] 0xfffffffefb7ff000-0xfffffffefb800000           4K     RW                     x  pte
[    0.006188] 0xfffffffefb800000-0xfffffffeff800000          64M     RW     PCD PSE         x  pmd
[    0.006192] 0xfffffffeff800000-0xfffffffeff900000           1M                               pte
[    0.006194] 0xfffffffeff900000-0xfffffffeff904000          16K     RW     PCD             x  pte
[    0.006198] 0xfffffffeff904000-0xfffffffeffa00000        1008K                               pte
[    0.006200] 0xfffffffeffa00000-0xfffffffeffa01000           4K     RW     PCD             x  pte
[    0.006205] 0xfffffffeffa01000-0xfffffffeffb10000        1084K                               pte
[    0.006206] 0xfffffffeffb10000-0xfffffffeffb1a000          40K     RW     PCD             x  pte
[    0.006209] 0xfffffffeffb1a000-0xfffffffeffb1c000           8K                               pte
[    0.006210] 0xfffffffeffb1c000-0xfffffffeffb20000          16K     RW     PCD             x  pte
[    0.006215] 0xfffffffeffb20000-0xfffffffeffc00000         896K                               pte
[    0.006216] 0xfffffffeffc00000-0xfffffffeffc01000           4K     RW     PCD             x  pte
[    0.006221] 0xfffffffeffc01000-0xfffffffeffd00000        1020K                               pte
[    0.006224] 0xfffffffeffd00000-0xfffffffeffe00000           1M     RW     PCD             x  pte
[    0.006227] 0xfffffffeffe00000-0xffffffff00000000           2M     RW     PCD PSE         x  pmd
[    0.006230] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.006231] ---[ High Kernel Mapping ]---
[    0.006232] 0xffffffff80000000-0xffffffff81000000          16M                               pmd
[    0.006233] 0xffffffff81000000-0xffffffff81e00000          14M     RW         PSE     GLB x  pmd
[    0.006238] 0xffffffff81e00000-0xffffffffa0000000         482M                               pmd
[    0.006239] ---[ Modules ]---
[    0.006247] 0xffffffffa0000000-0xffffffffff000000        1520M                               pmd
[    0.006248] ---[ End Modules ]---
[    0.006249] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.006250] 0xffffffffff200000-0xffffffffff201000           4K     RW                 GLB NX pte
[    0.006260] 0xffffffffff201000-0xffffffffff574000        3532K                               pte
[    0.006261] 0xffffffffff574000-0xffffffffff575000           4K     ro                 GLB NX pte
[    0.006265] 0xffffffffff575000-0xffffffffff5f4000         508K                               pte
[    0.006266] 0xffffffffff5f4000-0xffffffffff5f6000           8K     RW PWT PCD         GLB NX pte
[    0.006269] 0xffffffffff5f6000-0xffffffffff600000          40K                               pte
[    0.006271] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.006277] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.006279] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.013550] Security Framework initialized
[    0.013553] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.013558] AppArmor: AppArmor disabled by boot time parameter
[    0.014010] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.015915] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.016759] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.016769] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.016965] Initializing cgroup subsys io
[    0.016968] Initializing cgroup subsys memory
[    0.017082] Disabling memory control group subsystem
[    0.017083] Initializing cgroup subsys devices
[    0.017085] Initializing cgroup subsys freezer
[    0.017087] Initializing cgroup subsys net_cls
[    0.017089] Initializing cgroup subsys perf_event
[    0.017091] Initializing cgroup subsys net_prio
[    0.017093] Initializing cgroup subsys pids
[    0.017114] CPU: Physical Processor ID: 0
[    0.017115] CPU: Processor Core ID: 0
[    0.017119] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.017120] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.017463] mce: CPU supports 7 MCE banks
[    0.017474] CPU0: Thermal monitoring enabled (TM1)
[    0.017479] process: using mwait in idle threads
[    0.017482] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.017483] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.017857] Freeing SMP alternatives memory: 24K (ffffffff81c51000 - ffffffff81c57000)
[    0.030096] BUG: Bad page state in process swapper/0  pfn:00000
[    0.030100] page:ffffea0000000000 count:0 mapcount:1 mapping:          (null) index:0x0
[    0.030102] flags: 0x0()
[    0.030104] page dumped because: nonzero mapcount
[    0.030106] Modules linked in:
[    0.030108] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.4.2-amubtdx-patch-quirks #1
[    0.030110] Hardware name: Sony Corporation SVE1513Q1EB/VAIO, BIOS R0170D5 11/14/2012
[    0.030111]  0000000000000000 398674fd4a8dc368 ffffffff812e7699 ffffea0000000000
[    0.030113]  ffffffff8116a1b6 ffffea0000000000 0000000000000001 0000000000000000
[    0.030115]  ffffffff8116abb9 ffffffff8158082b ffff88024688ce00 ffffea0000000000
[    0.030117] Call Trace:
[    0.030122]  [<ffffffff812e7699>] ? dump_stack+0x40/0x57
[    0.030125]  [<ffffffff8116a1b6>] ? bad_page.part.71+0xa6/0xf0
[    0.030126]  [<ffffffff8116abb9>] ? free_pages_prepare+0x2c9/0x300
[    0.030129]  [<ffffffff8158082b>] ? acpi_os_map_iomem+0x12b/0x13f
[    0.030132]  [<ffffffff8116ccc2>] ? free_hot_cold_page+0x32/0x180
[    0.030136]  [<ffffffff81b5127b>] ? free_bootmem_late+0x3d/0x52
[    0.030138]  [<ffffffff81b4174c>] ? efi_free_boot_services+0x31/0x40
[    0.030141]  [<ffffffff81b23f8f>] ? start_kernel+0x46d/0x497
[    0.030143]  [<ffffffff81b23120>] ? early_idt_handler_array+0x120/0x120
[    0.030145]  [<ffffffff81b2347a>] ? x86_64_start_kernel+0x14f/0x173
[    0.030146] Disabling lock debugging due to kernel taint
[    0.031728] ftrace: allocating 23673 entries in 93 pages
[    0.041007] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.041467] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.081154] TSC deadline timer enabled
[    0.081157] smpboot: CPU0: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz (family: 0x6, model: 0x3a, stepping: 0x9)
[    0.081184] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.081203] ... version:                3
[    0.081204] ... bit width:              48
[    0.081204] ... generic registers:      4
[    0.081205] ... value mask:             0000ffffffffffff
[    0.081206] ... max period:             0000ffffffffffff
[    0.081207] ... fixed-purpose events:   3
[    0.081208] ... event mask:             000000070000000f
[    0.081667] x86: Booting SMP configuration:
[    0.081668] .... node  #0, CPUs:      #1
[    0.084420] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.084506]  #2
[    0.085066] microcode: CPU2 microcode updated early to revision 0x1c, date = 2015-02-26
[    0.087565]  #3
[    0.090203] x86: Booted up 1 node, 4 CPUs
[    0.090206] smpboot: Total of 4 processors activated (20752.88 BogoMIPS)
[    0.093064] devtmpfs: initialized
[    0.095624] PM: Registering ACPI NVS region [mem 0xaaebf000-0xaafbefff] (1048576 bytes)
[    0.095714] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.095783] pinctrl core: initialized pinctrl subsystem
[    0.095911] NET: Registered protocol family 16
[    0.106203] cpuidle: using governor ladder
[    0.116916] cpuidle: using governor menu
[    0.116986] Simple Boot Flag at 0x44 set to 0x1
[    0.117023] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.117025] ACPI: bus type PCI registered
[    0.117027] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.117108] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.117111] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.117116] PCI: Using configuration type 1 for base access
[    0.117343] perf_event_intel: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.129291] ACPI: Added _OSI(Module Device)
[    0.129292] ACPI: Added _OSI(Processor Device)
[    0.129293] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.129294] ACPI: Added _OSI(Processor Aggregator Device)
[    0.131002] ACPI: Executed 1 blocks of module-level executable AML code
[    0.133182] ACPI: Dynamic OEM Table Load:
[    0.133190] ACPI: SSDT 0xFFFF88024689A000 00083B (v01 PmRef  Cpu0Cst  00003001 INTL 20111123)
[    0.133601] ACPI: Dynamic OEM Table Load:
[    0.133606] ACPI: SSDT 0xFFFF880246899800 000303 (v01 PmRef  ApIst    00003000 INTL 20111123)
[    0.133948] ACPI: Dynamic OEM Table Load:
[    0.133952] ACPI: SSDT 0xFFFF88024557AA00 000119 (v01 PmRef  ApCst    00003000 INTL 20111123)
[    0.134632] ACPI : EC: EC started
[    0.135037] ACPI: Interpreter enabled
[    0.135044] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
[    0.135048] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.135060] ACPI: (supports S0 S3 S4 S5)
[    0.135061] ACPI: Using IOAPIC for interrupt routing
[    0.135083] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.139036] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.139041] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.139152] \_SB_.PCI0:_OSC invalid UUID
[    0.139153] _OSC request data:1 1f 0 
[    0.139156] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.139430] PCI host bridge to bus 0000:00
[    0.139433] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.139434] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.139436] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.139438] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.139439] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.139440] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.139442] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.139443] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.139445] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.139446] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.139448] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.139449] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.139450] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.139453] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.139454] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.139455] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.139457] pci_bus 0000:00: root bus resource [mem 0xafa00000-0xfeafffff window]
[    0.139459] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.139465] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.139542] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.139554] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
[    0.139560] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.139565] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.139668] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.139699] pci 0000:00:14.0: reg 0x10: [mem 0xc0700000-0xc070ffff 64bit]
[    0.139758] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.139791] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.139831] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.139863] pci 0000:00:16.0: reg 0x10: [mem 0xc0714000-0xc071400f 64bit]
[    0.139926] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.139999] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.140026] pci 0000:00:1a.0: reg 0x10: [mem 0xc0719000-0xc07193ff]
[    0.140098] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.140142] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.140182] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.140209] pci 0000:00:1b.0: reg 0x10: [mem 0xc0710000-0xc0713fff 64bit]
[    0.140270] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.140340] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.140415] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.140451] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.140489] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.140563] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.140599] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.140635] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
[    0.140708] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.140744] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.140786] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.140814] pci 0000:00:1d.0: reg 0x10: [mem 0xc0718000-0xc07183ff]
[    0.140886] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.140933] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.140972] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.141130] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.141153] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.141161] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.141169] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.141177] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.141185] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.141193] pci 0000:00:1f.2: reg 0x24: [mem 0xc0717000-0xc07177ff]
[    0.141224] pci 0000:00:1f.2: PME# supported from D3hot
[    0.141287] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.141304] pci 0000:00:1f.3: reg 0x10: [mem 0xc0715000-0xc07150ff 64bit]
[    0.141324] pci 0000:00:1f.3: reg 0x20: [io  0x3040-0x305f]
[    0.141464] pci 0000:01:00.0: [168c:0032] type 00 class 0x028000
[    0.141513] pci 0000:01:00.0: reg 0x10: [mem 0xc0600000-0xc067ffff 64bit]
[    0.141576] pci 0000:01:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.141641] pci 0000:01:00.0: supports D1 D2
[    0.141642] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.141682] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.148956] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.148969] pci 0000:00:1c.0:   bridge window [mem 0xc0600000-0xc06fffff]
[    0.149116] pci 0000:02:00.0: [10ec:5209] type 00 class 0xff0000
[    0.149262] pci 0000:02:00.0: reg 0x10: [mem 0xc0500000-0xc0500fff]
[    0.149712] pci 0000:02:00.0: supports D1 D2
[    0.149714] pci 0000:02:00.0: PME# supported from D1 D2 D3hot
[    0.149817] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.157010] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.157016] pci 0000:00:1c.1:   bridge window [mem 0xc0500000-0xc05fffff]
[    0.157091] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
[    0.157139] pci 0000:03:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.157173] pci 0000:03:00.0: reg 0x18: [mem 0xc0404000-0xc0404fff 64bit pref]
[    0.157194] pci 0000:03:00.0: reg 0x20: [mem 0xc0400000-0xc0403fff 64bit pref]
[    0.157279] pci 0000:03:00.0: supports D1 D2
[    0.157280] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.157324] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.164961] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.164969] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.164985] pci 0000:00:1c.2:   bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
[    0.165409] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165457] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165502] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165548] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165593] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165638] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165684] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165730] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165873] ACPI: Enabled 5 GPEs in block 00 to 3F
[    0.165898] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.165977] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.165978] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.165980] vgaarb: loaded
[    0.165981] vgaarb: bridge control possible 0000:00:02.0
[    0.166136] PCI: Using ACPI for IRQ routing
[    0.167608] PCI: pci_cache_line_size set to 64 bytes
[    0.167664] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.167666] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.167667] e820: reserve RAM buffer [mem 0xa4db0000-0xa7ffffff]
[    0.167668] e820: reserve RAM buffer [mem 0xaa7bf000-0xabffffff]
[    0.167670] e820: reserve RAM buffer [mem 0xab000000-0xabffffff]
[    0.167671] e820: reserve RAM buffer [mem 0x24f600000-0x24fffffff]
[    0.167808] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.167812] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.169838] clocksource: Switched to clocksource hpet
[    0.174784] pnp: PnP ACPI init
[    0.174905] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.174907] system 00:00: [io  0x1000-0x100f] has been reserved
[    0.174909] system 00:00: [io  0xffff] has been reserved
[    0.174911] system 00:00: [io  0xffff] has been reserved
[    0.174912] system 00:00: [io  0x0400-0x0453] could not be reserved
[    0.174914] system 00:00: [io  0x0458-0x047f] has been reserved
[    0.174916] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.174917] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.174921] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174946] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.174991] system 00:02: [io  0x0454-0x0457] has been reserved
[    0.174994] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.175034] pnp 00:03: Plug and Play ACPI device, IDs SNYa009 PNP030b (active)
[    0.175062] pnp 00:04: Plug and Play ACPI device, IDs SYN2704 SYN2700 SYN0002 PNP0f13 (active)
[    0.175176] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.175178] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.175180] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.175182] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.175183] system 00:05: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.175185] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.175187] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.175189] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    0.175191] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.175192] system 00:05: [mem 0xafa00000-0xafa00fff] has been reserved
[    0.175195] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.175393] system 00:06: [mem 0x20000000-0x201fffff] has been reserved
[    0.175395] system 00:06: [mem 0x40004000-0x40004fff] has been reserved
[    0.175397] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.175404] pnp: PnP ACPI: found 7 devices
[    0.181652] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.181658] pci 0000:01:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.181688] pci 0000:01:00.0: BAR 6: assigned [mem 0xc0680000-0xc068ffff pref]
[    0.181690] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.181696] pci 0000:00:1c.0:   bridge window [mem 0xc0600000-0xc06fffff]
[    0.181704] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.181710] pci 0000:00:1c.1:   bridge window [mem 0xc0500000-0xc05fffff]
[    0.181718] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.181721] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.181728] pci 0000:00:1c.2:   bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
[    0.181735] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.181737] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.181738] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.181740] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.181741] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.181742] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.181744] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.181745] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.181747] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.181748] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.181750] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.181751] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.181753] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.181754] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.181755] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.181757] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.181758] pci_bus 0000:00: resource 20 [mem 0xafa00000-0xfeafffff window]
[    0.181760] pci_bus 0000:01: resource 1 [mem 0xc0600000-0xc06fffff]
[    0.181762] pci_bus 0000:02: resource 1 [mem 0xc0500000-0xc05fffff]
[    0.181763] pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
[    0.181765] pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
[    0.181824] NET: Registered protocol family 2
[    0.181996] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.182132] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.182246] TCP: Hash tables configured (established 65536 bind 65536)
[    0.182270] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.182294] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.182382] NET: Registered protocol family 1
[    0.182397] pci 0000:00:02.0: Video device with shadowed ROM
[    0.213888] PCI: CLS 64 bytes, default 64
[    0.213950] Unpacking initramfs...
[    0.485382] Freeing initrd memory: 16996K (ffff880035ebe000 - ffff880036f57000)
[    0.485391] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.485393] software IO TLB [mem 0x9f1c0000-0xa31c0000] (64MB) mapped at [ffff88009f1c0000-ffff8800a31bffff]
[    0.485458] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    0.485460] hw unit of domain pp0-core 2^-16 Joules
[    0.485461] hw unit of domain package 2^-16 Joules
[    0.485461] hw unit of domain pp1-gpu 2^-16 Joules
[    0.485631] simple-framebuffer simple-framebuffer.0: framebuffer at 0xb0000000, 0x408000 bytes, mapped to 0xffffc90001000000
[    0.485633] simple-framebuffer simple-framebuffer.0: format=a8r8g8b8, mode=1366x768x32, linelength=5504
[    0.488007] Console: switching to colour frame buffer device 170x48
[    0.490169] simple-framebuffer simple-framebuffer.0: fb0: simplefb registered!
[    0.490429] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.490471] audit: initializing netlink subsys (disabled)
[    0.490485] audit: type=2000 audit(1457558103.480:1): initialized
[    0.490934] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.490953] zbud: loaded
[    0.491063] VFS: Disk quotas dquot_6.6.0
[    0.491080] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.491503] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.491536] io scheduler noop registered
[    0.491540] io scheduler deadline registered
[    0.491554] io scheduler cfq registered (default)
[    0.491950] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.491956] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.491971] intel_idle: MWAIT substates: 0x21120
[    0.491973] intel_idle: v0.4 model 0x3A
[    0.491974] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.492147] GHES: HEST is not enabled!
[    0.492212] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.492593] Linux agpgart interface v0.103
[    0.492641] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.492642] AMD IOMMUv2 functionality not available on this system
[    0.492944] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.494812] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.494816] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.494937] mousedev: PS/2 mouse device common for all mice
[    0.494978] rtc_cmos 00:01: RTC can wake from S4
[    0.495099] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.495125] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[    0.495135] Intel P-state driver initializing.
[    0.495331] ledtrig-cpu: registered to indicate activity on CPUs
[    0.495914] NET: Registered protocol family 10
[    0.496277] mip6: Mobile IPv6
[    0.496284] NET: Registered protocol family 17
[    0.496294] mpls_gso: MPLS GSO support
[    0.496638] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1c
[    0.496652] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1c
[    0.496697] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1c
[    0.496715] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1c
[    0.496783] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.497067] registered taskstats version 1
[    0.497120] zswap: loaded using pool lzo/zbud
[    0.497806] rtc_cmos 00:01: setting system clock to 2016-03-09 21:15:03 UTC (1457558103)
[    0.498036] PM: Hibernation image not present or could not be loaded.
[    0.500044] Freeing unused kernel memory: 1300K (ffffffff81b0c000 - ffffffff81c51000)
[    0.500047] Write protecting the kernel read-only data: 10240k
[    0.500490] Freeing unused kernel memory: 444K (ffff880001791000 - ffff880001800000)
[    0.505599] Freeing unused kernel memory: 1276K (ffff880001ac1000 - ffff880001c00000)
[    0.520301] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.529280] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.601207] random: udevadm urandom read with 4 bits of entropy available
[    0.623713] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    0.631126] ACPI: bus type USB registered
[    0.631150] usbcore: registered new interface driver usbfs
[    0.631160] usbcore: registered new interface driver hub
[    0.631184] usbcore: registered new device driver usb
[    0.631259] rtsx_pci 0000:02:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 24
[    0.631677] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.631968] ehci-pci: EHCI PCI platform driver
[    0.632124] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.632133] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.632154] ehci-pci 0000:00:1a.0: debug port 2
[    0.632616] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.632625] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[    0.633228] r8169 0000:03:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000c84000, 30:f9:ed:d6:e4:a3, XID 0c900800 IRQ 25
[    0.633232] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    0.635366] SCSI subsystem initialized
[    0.636058] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.636294] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc0719000
[    0.637052] libata version 3.00 loaded.
[    0.638011] thermal LNXTHERM:00: registered as thermal_zone0
[    0.638015] ACPI: Thermal Zone [THRM] (55 C)
[    0.645860] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.645946] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.645950] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.645952] usb usb1: Product: EHCI Host Controller
[    0.645955] usb usb1: Manufacturer: Linux 4.4.2-amubtdx-patch-quirks ehci_hcd
[    0.645957] usb usb1: SerialNumber: 0000:00:1a.0
[    0.646132] hub 1-0:1.0: USB hub found
[    0.646144] hub 1-0:1.0: 2 ports detected
[    0.646467] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.646474] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.646490] ehci-pci 0000:00:1d.0: debug port 2
[    0.650397] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.650482] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc0718000
[    0.661888] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.662038] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.662041] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.662042] usb usb2: Product: EHCI Host Controller
[    0.662044] usb usb2: Manufacturer: Linux 4.4.2-amubtdx-patch-quirks ehci_hcd
[    0.662045] usb usb2: SerialNumber: 0000:00:1d.0
[    0.662304] hub 2-0:1.0: USB hub found
[    0.662318] hub 2-0:1.0: 2 ports detected
[    0.662668] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.662674] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    0.663762] xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x0000b930
[    0.663767] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.664011] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.664013] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.664015] usb usb3: Product: xHCI Host Controller
[    0.664016] usb usb3: Manufacturer: Linux 4.4.2-amubtdx-patch-quirks xhci-hcd
[    0.664017] usb usb3: SerialNumber: 0000:00:14.0
[    0.664142] hub 3-0:1.0: USB hub found
[    0.664160] hub 3-0:1.0: 4 ports detected
[    0.664492] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.664495] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    0.664566] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.664568] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.664570] usb usb4: Product: xHCI Host Controller
[    0.664571] usb usb4: Manufacturer: Linux 4.4.2-amubtdx-patch-quirks xhci-hcd
[    0.664572] usb usb4: SerialNumber: 0000:00:14.0
[    0.664679] hub 4-0:1.0: USB hub found
[    0.664696] hub 4-0:1.0: 4 ports detected
[    0.665096] ahci 0000:00:1f.2: version 3.0
[    0.665202] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    0.677919] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x11 impl SATA mode
[    0.677923] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    0.686489] scsi host0: ahci
[    0.686736] scsi host1: ahci
[    0.686856] scsi host2: ahci
[    0.686962] scsi host3: ahci
[    0.687069] scsi host4: ahci
[    0.687172] scsi host5: ahci
[    0.687216] ata1: SATA max UDMA/133 abar m2048@0xc0717000 port 0xc0717100 irq 27
[    0.687217] ata2: DUMMY
[    0.687218] ata3: DUMMY
[    0.687219] ata4: DUMMY
[    0.687221] ata5: SATA max UDMA/133 abar m2048@0xc0717000 port 0xc0717300 irq 27
[    0.687222] ata6: DUMMY
[    0.957894] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.973894] usb 3-1: new low-speed USB device number 2 using xhci_hcd
[    0.973896] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.005902] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.007185] ata1.00: ATA-8: Hitachi HTS541075A9E680, JA2OA480, max UDMA/133
[    1.007190] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.008597] ata1.00: configured for UDMA/133
[    1.008988] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54107 A480 PQ: 0 ANSI: 5
[    1.090291] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.090297] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.090691] hub 1-1:1.0: USB hub found
[    1.090849] hub 1-1:1.0: 6 ports detected
[    1.106238] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.106244] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.106304] usb 3-1: New USB device found, idVendor=045e, idProduct=00cb
[    1.106310] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.106313] usb 3-1: Product: Microsoft Basic Optical Mouse v2.0 
[    1.106316] usb 3-1: Manufacturer: Microsoft 
[    1.106487] usb 3-1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    1.106569] hub 2-1:1.0: USB hub found
[    1.106720] hub 2-1:1.0: 6 ports detected
[    1.109764] hidraw: raw HID events driver (C) Jiri Kosina
[    1.112413] usbcore: registered new interface driver usbhid
[    1.112416] usbhid: USB HID core driver
[    1.113464] input: Microsoft  Microsoft Basic Optical Mouse v2.0  as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:045E:00CB.0001/input/input3
[    1.113612] hid-generic 0003:045E:00CB.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft  Microsoft Basic Optical Mouse v2.0 ] on usb-0000:00:14.0-1/input0
[    1.325308] psmouse serio1: synaptics: queried max coordinates: x [..5682], y [..4770]
[    1.325896] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.327435] ata5.00: ATAPI: MATSHITADVD-RAM UJ8C0, 1.20, max UDMA/133
[    1.328691] ata5.00: configured for UDMA/133
[    1.332055] scsi 4:0:0:0: CD-ROM            MATSHITA DVD-RAM UJ8C0    1.20 PQ: 0 ANSI: 5
[    1.343478] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
[    1.343485] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.343581] sd 0:0:0:0: [sda] Write Protect is off
[    1.343587] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.343629] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.353298] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.353303] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.353569] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    1.353719] psmouse serio1: synaptics: queried min coordinates: x [1260..], y [1082..]
[    1.361890] usb 1-1.2: new full-speed USB device number 3 using ehci-pci
[    1.408225] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x127c00/0x0, board id: 1999, fw id: 1106483
[    1.410994]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10 sda11
[    1.412676] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.441144] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
[    1.456105] usb 1-1.2: New USB device found, idVendor=0489, idProduct=e036
[    1.456110] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.456113] usb 1-1.2: Product: Bluetooth USB Host Controller
[    1.456115] usb 1-1.2: Manufacturer: Atheros Communications
[    1.456118] usb 1-1.2: SerialNumber: Alaska Day 2006
[    1.481883] tsc: Refined TSC clocksource calibration: 2594.107 MHz
[    1.481888] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25647d583cf, max_idle_ns: 440795304232 ns
[    1.525892] usb 1-1.3: new high-speed USB device number 4 using ehci-pci
[    1.624605] usb 1-1.3: New USB device found, idVendor=05ca, idProduct=18c3
[    1.624611] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.624614] usb 1-1.3: Product: USB2.0 Camera
[    1.624617] usb 1-1.3: Manufacturer: LOEA11P2BF13832309709
[    2.482101] clocksource: Switched to clocksource tsc
[    3.138950] PM: Starting manual resume from disk
[    3.138958] PM: Hibernation image partition 8:10 present
[    3.138960] PM: Looking for hibernation image.
[    3.139195] PM: Image not found (code -22)
[    3.139200] PM: Hibernation image not present or could not be loaded.
[    3.142445] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[    3.142450] PM: Marking nosave pages: [mem 0x00088000-0x000fffff]
[    3.142456] PM: Marking nosave pages: [mem 0x20000000-0x201fffff]
[    3.142471] PM: Marking nosave pages: [mem 0x40004000-0x40004fff]
[    3.142473] PM: Marking nosave pages: [mem 0xa4db0000-0xa61affff]
[    3.142603] PM: Marking nosave pages: [mem 0xaa7bf000-0xaaffefff]
[    3.142659] PM: Marking nosave pages: [mem 0xab000000-0xffffffff]
[    3.144435] PM: Basic memory bitmaps created
[    3.145461] PM: Basic memory bitmaps freed
[    3.244475] random: nonblocking pool is initialized
[    3.387016] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
[    6.459291] ACPI: Battery Slot [BAT1] (battery present)
[    6.459581] ACPI: AC Adapter [ACAD] (on-line)
[    6.601534] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20150930/utaddress-254)
[    6.601544] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.601549] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20150930/utaddress-254)
[    6.601554] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.601555] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20150930/utaddress-254)
[    6.601560] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.601561] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20150930/utaddress-254)
[    6.601565] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.601567] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.649205] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[    6.649208] ACPI: Power Button [PWRB]
[    6.649247] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
[    6.649355] ACPI: Lid Switch [LID0]
[    6.649390] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[    6.649392] ACPI: Power Button [PWRF]
[    6.885189] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.892757] ACPI Warning: SystemIO range 0x0000000000003040-0x000000000000305F conflicts with OpRegion 0x0000000000003040-0x000000000000304F (\_SB_.PCI0.SBUS.SMBI) (20150930/utaddress-254)
[    6.892766] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.010522] input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/SNY5001:00/input/input7
[    7.010565] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/SNY5001:00/input/input8
[    7.012061] sony_laptop: SNC setup done.
[    7.048048] [drm] Initialized drm 1.1.0 20060810
[    7.779956] AVX version of gcm_enc/dec engaged.
[    7.779960] AES CTR mode by8 optimization enabled
[    7.859152] EFI Variables Facility v0.08 2004-May-17
[    7.880244] input: PC Speaker as /devices/platform/pcspkr/input/input9
[    7.907007] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.907054] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    7.923840] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.923845] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.923847] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    7.923849] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    7.923851] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    7.923854] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    7.923856] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    8.078137] [drm] Memory usable by graphics device = 2048M
[    8.078143] checking generic (b0000000 408000) vs hw (b0000000 10000000)
[    8.078145] fb: switching to inteldrmfb from simple
[    8.078188] Console: switching to colour dummy device 80x25
[    8.078367] [drm] Replacing VGA console driver
[    8.084027] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    8.084030] [drm] Driver supports precise vblank timestamp query.
[    8.084144] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    8.106494] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    8.106628] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input13
[    8.106660] [drm] Initialized i915 1.6.0 20151010 for 0000:00:02.0 on minor 0
[    8.125146] pstore: Registered efi as persistent store backend
[    8.214821] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    8.215420] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    8.215447] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    8.215475] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    8.241944] fbcon: inteldrmfb (fb0) is primary device
[    8.563658] ath: phy0: ASPM enabled: 0x42
[    8.563659] ath: EEPROM regdomain: 0x65
[    8.563659] ath: EEPROM indicates we should expect a direct regpair map
[    8.563660] ath: Country alpha2 being used: 00
[    8.563660] ath: Regpair used: 0x65
[    8.567250] iTCO_vendor_support: vendor-support=0
[    8.616220] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    8.616262] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    8.616345] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    8.670509] media: Linux media interface: v0.10
[    8.765729] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    8.766092] ieee80211 phy0: Atheros AR9485 Rev:1 mem=0xffffc90001100000, irq=16
[    9.016411] Linux video capture interface: v2.00
[    9.130827] Console: switching to colour frame buffer device 170x48
[    9.147834] Bluetooth: Core ver 2.21
[    9.147857] NET: Registered protocol family 31
[    9.147857] Bluetooth: HCI device and connection manager initialized
[    9.147862] Bluetooth: HCI socket layer initialized
[    9.147865] Bluetooth: L2CAP socket layer initialized
[    9.147872] Bluetooth: SCO socket layer initialized
[    9.261820] usbcore: registered new interface driver btusb
[    9.262045] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    9.268567] usbcore: registered new interface driver ath3k
[    9.466036] uvcvideo: Found UVC 1.00 device USB2.0 Camera (05ca:18c3)
[    9.468352] input: USB2.0 Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input15
[    9.468431] usbcore: registered new interface driver uvcvideo
[    9.468442] USB Video Class driver (1.1.1)
[   10.070175] intel_rapl: Found RAPL domain package
[   10.070180] intel_rapl: Found RAPL domain core
[   10.070183] intel_rapl: Found RAPL domain uncore
[   10.070194] intel_rapl: RAPL package 0 domain package locked by BIOS
[   13.183968] Adding 1637372k swap on /dev/sda10.  Priority:-1 extents:1 across:1637372k FS
[   13.250135] EXT4-fs (sda9): re-mounted. Opts: errors=remount-ro
[   14.736035] lp: driver loaded but no devices found
[   14.856173] ppdev: user-space parallel port driver
[   15.051582] FAT-fs (sda3): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[   15.255166] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: errors=remount-ro
[   15.377569] fuse init (API version 7.23)
[   17.150232] vboxdrv: Found 4 processor cores
[   17.166019] vboxdrv: TSC mode is Invariant, tentative frequency 2594106038 Hz
[   17.166024] vboxdrv: Successfully loaded version 5.0.14_Debian (interface 0x00240000)
[   17.488423] VBoxNetFlt: Successfully started.
[   17.520901] VBoxNetAdp: Successfully started.
[   17.615012] VBoxPciLinuxInit
[   17.633100] vboxpci: IOMMU not found (not registered)
[   22.513560] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   22.513567] Bluetooth: BNEP filters: protocol multicast
[   22.513575] Bluetooth: BNEP socket layer initialized
[   25.252989] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   25.267445] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   25.272148] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   25.352850] r8169 0000:03:00.0: firmware: direct-loading firmware rtl_nic/rtl8168e-3.fw
[   25.451939] r8169 0000:03:00.0 eth0: link down
[   25.452006] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.348623] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   27.169849] wlan0: authenticate with 00:19:70:62:68:87
[   27.184120] wlan0: send auth to 00:19:70:62:68:87 (try 1/3)
[   27.187774] wlan0: authenticated
[   27.189833] wlan0: associate with 00:19:70:62:68:87 (try 1/3)
[   27.193809] wlan0: RX AssocResp from 00:19:70:62:68:87 (capab=0x431 status=0 aid=1)
[   27.193923] wlan0: associated
[   27.193954] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   28.322815] systemd-logind[2200]: New seat seat0.
[   28.373704] systemd-logind[2200]: Watching system buttons on /dev/input/event5 (Power Button)
[   28.374001] systemd-logind[2200]: Watching system buttons on /dev/input/event9 (Video Bus)
[   28.374232] systemd-logind[2200]: Watching system buttons on /dev/input/event6 (Sony Vaio Keys)
[   28.374427] systemd-logind[2200]: Watching system buttons on /dev/input/event7 (Sony Vaio Jogdial)
[   28.374611] systemd-logind[2200]: Watching system buttons on /dev/input/event3 (Power Button)
[   28.374743] systemd-logind[2200]: Watching system buttons on /dev/input/event4 (Lid Switch)
[   28.377595] systemd-logind[2200]: Failed to start user service, ignoring: Unknown unit: user@114.service
[   28.405163] systemd-logind[2200]: New session 1 of user sddm.
[   50.905581] systemd-logind[2200]: Failed to start user service, ignoring: Unknown unit: user@1000.service
[   50.912442] systemd-logind[2200]: New session 2 of user doc.
[   70.658359] Bluetooth: RFCOMM TTY layer initialized
[   70.658381] Bluetooth: RFCOMM socket layer initialized
[   70.658391] Bluetooth: RFCOMM ver 1.11

Reply to: