LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Paul Menzel <pmenzel+linux-ide@molgen.mpg.de>
To: Hans de Goede <hdegoede@redhat.com>, Tejun Heo <tj@kernel.org>
Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: Decrease boot time with AHCI drives?
Date: Wed, 4 Apr 2018 11:57:19 +0200	[thread overview]
Message-ID: <e1ec40a6-5955-ac47-d84e-acbd638a2a41@molgen.mpg.de> (raw)
In-Reply-To: <b0843e21-3e8d-0c00-b69b-16567dd3ee2a@molgen.mpg.de>


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

[Attach full output of `dmesg`.]

On 04/04/18 11:53, Paul Menzel wrote:
> Dear Linux folks,
> 
> 
> I am trying to decrease the boot time of the Linux kernel so the LUKS 
> passphrase dialog (in the initrd) is shown as quickly as possible. The 
> devices I test with is a Lenovo X60 and ASRock E350M1 both running with 
> coreboot and the GRUB payload. The goal is to do this without having to 
> rebuild a Linux kernel, but only by run-time
> 
> I am currently at 1.2 seconds.
> 
> ```
> [    0.610437] calling  ata_init+0x0/0x2be [libata] @ 88
> [    0.610548] libata version 3.00 loaded.
> [    0.610570] initcall ata_init+0x0/0x2be [libata] returned 0 after 107 
> usecs
> [    0.612100] calling  serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 89
> [    0.612132] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] 
> returned 0 after 25 usecs
> [    0.612659] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 88
> [    0.612715] ahci 0000:00:1f.2: version 3.0
> [    0.613050] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
> [    0.613153] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 1.5 
> Gbps 0x1 impl SATA mode
> [    0.613239] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo 
> pmp pio slum part
> [    0.613915] calling  evdev_init+0x0/0x1000 [evdev] @ 85
> [    0.614178] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 
> 250 usecs
> [    0.624366] scsi host0: ahci
> [    0.630638] scsi host1: ahci
> [    0.640413] scsi host2: ahci
> [    0.646559] scsi host3: ahci
> [    0.646752] ata1: SATA max UDMA/133 abar m1024@0xe4445000 port 
> 0xe4445100 irq 28
> [    0.646836] ata2: DUMMY
> [    0.646902] ata3: DUMMY
> [    0.646964] ata4: DUMMY
> [    0.647098] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 
> 0 after 33619 usecs
> [    1.124129] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
> [    1.124605] ata1.00: ATA-9: M4-CT256M4SSD2, 070H, max UDMA/100
> [    1.124674] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 
> 31/32), AA
> [    1.125179] ata1.00: configured for UDMA/100
> [    1.125522] scsi 0:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2 
> 070H PQ: 0 ANSI: 5
> [    1.129127] calling  init_sd+0x0/0x1000 [sd_mod] @ 84
> [    1.129268] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 129 
> usecs
> [    1.129444] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 
> GB/238 GiB)
> [    1.129550] sd 0:0:0:0: [sda] Write Protect is off
> [    1.129619] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
> [    1.129647] sd 0:0:0:0: [sda] Write cache: enabled, read cache: 
> enabled, doesn't support DPO or FUA
> [    1.130384]  sda: sda1 sda2
> [    1.131009] sd 0:0:0:0: [sda] Attached SCSI disk
> [    1.213492] calling  dm_init+0x0/0x31 [dm_mod] @ 110
> [    1.213535] device-mapper: uevent: version 1.0.3
> [    1.213727] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) 
> initialised: dm-devel@redhat.com
> [    1.213829] initcall dm_init+0x0/0x31 [dm_mod] returned 0 after 312 
> usecs
> [    1.214434] calling  dm_crypt_init+0x0/0x1000 [dm_crypt] @ 110
> [    1.214442] initcall dm_crypt_init+0x0/0x1000 [dm_crypt] returned 0 
> after 2 usecs
> ```
> 
> So, according to `initcall_debug` the method `ahci_pci_driver_init` 
> takes 33 ms to execute, which is longer then a few milliseconds.
> 
> But more importantly, it takes roughly half a second to set up the 
> device. I understand, that the probing is part of AHCI(?), and in this 
> case the Crucial m4 SSD drive/firmware is especially slow. So, I assume 
> it will be hard to improve anything in the code to decrease the time.
> 
> That said, in my case the assumption is, that the device configuration 
> will not change. That means, the drive will be the same and will be 
> connected to the same port all the time.
> 
> Additionally, GRUB already probed the device to read the Linux kernel 
> image and initrd image.
> 
> So, is there a way to avoid doing the probing twice or at all? That 
> means, either cache the settings, and load them during boot by reading 
> it from the firmware flash ROM chip, possible when using coreboot, and 
> passing it to the Linux kernel for example by GRUB. That would also help 
> with LinuxBoot [1], where the Linux kernel is used as the payload (boot 
> kernel), already setting up the drive and kexec’s another Linux kernel, 
> read from the drive.
> 
> Or, GRUB passes the settings it detected to the Linux kernel.
> 
> 
> Kind regards,
> 
> Paul
> 
> 
> [1] https://www.linuxboot.org/

[-- Attachment #1.2: 20180404–lenovo-x60–dmesg.txt --]
[-- Type: text/plain, Size: 131396 bytes --]

[    0.000000] Linux version 4.14.0-0.bpo.3-686-pae (debian-kernel@lists.debian.org) (gcc version 6.3.0 20170516 (Debian 6.3.0-18)) #1 SMP Debian 4.14.13-1~bpo9+1 (2018-01-14)
[    0.000000] Disabled fast string operations
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] type 16
[    0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f6fbfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f6fc000-0x000000007f7fffff] type 16
[    0.000000] BIOS-e820: [mem 0x000000007f800000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 636338U/636338U, BIOS CBET4000 4.7-625-g0b861daecc 04/03/2018
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7f6fc max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-back
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 080000000 write-back
[    0.000000]   1 base 07F800000 mask 0FF800000 uncachable
[    0.000000]   2 base 0D0000000 mask 0F0000000 write-combining
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: PAT not supported by CPU.
[    0.000000] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WB  WT  UC- UC  
[    0.000000] found SMP MP-table at [mem 0x000f0400-0x000f040f] mapped at [ffa00400]
[    0.000000] initial memory mapped: [mem 0x00000000-0x16ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] BRK [0x16a92000, 0x16a92fff] PGTABLE
[    0.000000] BRK [0x16a93000, 0x16a94fff] PGTABLE
[    0.000000] BRK [0x16a95000, 0x16a95fff] PGTABLE
[    0.000000] BRK [0x16a96000, 0x16a96fff] PGTABLE
[    0.000000] log_buf_len: 8388608 bytes
[    0.000000] early log buf free: 128544(98%)
[    0.000000] RAMDISK: [mem 0x35c6f000-0x36e2efff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0800 000024 (v02 CORE  )
[    0.000000] ACPI: XSDT 0x000000007F70D0E0 000054 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: FACP 0x000000007F7102A0 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: DSDT 0x000000007F70D280 00301E (v03 COREv4 COREBOOT 20090419 INTL 20160831)
[    0.000000] ACPI: FACS 0x000000007F70D240 000040
[    0.000000] ACPI: FACS 0x000000007F70D240 000040
[    0.000000] ACPI: SSDT 0x000000007F7103A0 000569 (v02 CORE   COREBOOT 0000002A CORE 0000002A)
[    0.000000] ACPI: MCFG 0x000000007F710910 00003C (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: TCPA 0x000000007F710950 000032 (v02 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: APIC 0x000000007F710990 000068 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: HPET 0x000000007F712A00 000038 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1152MB HIGHMEM available.
[    0.000000] 885MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 375fe000
[    0.000000]   low ram: 0 - 375fe000
[    0.000000] BRK [0x16a97000, 0x16a97fff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x00000000375fdfff]
[    0.000000]   HighMem  [mem 0x00000000375fe000-0x000000007f6fbfff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000007f6fbfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007f6fbfff]
[    0.000000] On node 0 totalpages: 521883
[    0.000000] free_area_init_node: node 0, pgdat d6864480, node_mem_map f4281024
[    0.000000]   DMA zone: 36 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   Normal zone: 1958 pages used for memmap
[    0.000000]   Normal zone: 222718 pages, LIFO batch:31
[    0.000000]   HighMem zone: 295166 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] Reserving Intel graphics memory at 0x000000007f800000-0x000000007fffffff
[    0.000000] ACPI: PM-Timer IO Port: 0x508
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    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] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] e820: [mem 0x80000000-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] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] percpu: Embedded 29 pages/cpu @f75c1000 s88908 r0 d29876 u118784
[    0.000000] pcpu-alloc: s88908 r0 d29876 u118784 alloc=29*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 519889
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.14.0-0.bpo.3-686-pae root=UUID=0198e82a-32df-4f18-bec0-3e08802b084d ro noisapnp cryptomgr.notests pnpbios=off pcie_aspm=force pcie_aspm.policy=powersave nmi_watchdog=0 iomem=relaxed memory_corruption_check=1 memory_corruption_check_size=512k i915.fastboot=1 initcall_debug log_buf_len=8M clocksource=hpet apparmor=0
[    0.000000] PCIe ASPM is forcibly enabled
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000375fe:0007f6fc)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 2030848K/2087532K available (6162K kernel code, 604K rwdata, 1916K rodata, 840K init, 452K bss, 56684K reserved, 0K cma-reserved, 1180664K highmem)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xffd35000 - 0xfffff000   (2856 kB)
                 cpu_entry : 0xff800000 - 0xffce1000   (4996 kB)
                   pkmap   : 0xff600000 - 0xff800000   (2048 kB)
                   vmalloc : 0xf7dfe000 - 0xff5fe000   ( 120 MB)
                   lowmem  : 0xc0000000 - 0xf75fe000   ( 885 MB)
                     .init : 0xd688f000 - 0xd6961000   ( 840 kB)
                     .data : 0xd6604b17 - 0xd6880300   (2541 kB)
                     .text : 0xd6000000 - 0xd6604b17   (6162 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] ftrace: allocating 27547 entries in 54 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=2.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 2304, nr_irqs: 440, preallocated irqs: 16
[    0.000000] CPU 0 irqstacks, hard=f70a8000 soft=f70aa000
[    0.000000] Console: colour VGA+ 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.004000] tsc: Detected 1662.367 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3324.73 BogoMIPS (lpj=6649468)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170728
[    0.011578] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.011704] Security Framework initialized
[    0.011771] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.011849] AppArmor: AppArmor disabled by boot time parameter
[    0.011948] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.012010] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.012442] Disabled fast string operations
[    0.012510] CPU: Physical Processor ID: 0
[    0.012574] CPU: Processor Core ID: 0
[    0.012646] mce: CPU supports 6 MCE banks
[    0.012716] CPU0: Thermal monitoring enabled (TM2)
[    0.012787] process: using mwait in idle threads
[    0.012858] Last level iTLB entries: 4KB 128, 2MB 0, 4MB 2
[    0.012925] Last level dTLB entries: 4KB 128, 2MB 0, 4MB 8, 1GB 0
[    0.013131] Freeing SMP alternatives memory: 28K
[    0.015239] smpboot: Max logical packages: 1
[    0.015317] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.015844] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.056000] smpboot: CPU0: Intel(R) Core(TM) Duo CPU      L2400  @ 1.66GHz (family: 0x6, model: 0xe, stepping: 0xc)
[    0.056000] calling  trace_init_flags_sys_exit+0x0/0x13 @ 1
[    0.056000] initcall trace_init_flags_sys_exit+0x0/0x13 returned 0 after 0 usecs
[    0.056000] calling  trace_init_flags_sys_enter+0x0/0x13 @ 1
[    0.056000] initcall trace_init_flags_sys_enter+0x0/0x13 returned 0 after 0 usecs
[    0.056000] calling  init_hw_perf_events+0x0/0x5a6 @ 1
[    0.056000] Performance Events: Core events, core PMU driver.
[    0.056000] ... version:                1
[    0.056000] ... bit width:              40
[    0.056000] ... generic registers:      2
[    0.056000] ... value mask:             000000ffffffffff
[    0.056000] ... max period:             000000007fffffff
[    0.056000] ... fixed-purpose events:   0
[    0.056000] ... event mask:             0000000000000003
[    0.056000] initcall init_hw_perf_events+0x0/0x5a6 returned 0 after 0 usecs
[    0.056000] calling  init_real_mode+0x0/0x123 @ 1
[    0.056000] initcall init_real_mode+0x0/0x123 returned 0 after 0 usecs
[    0.056000] calling  trace_init_perf_perm_irq_work_exit+0x0/0x16 @ 1
[    0.056000] initcall trace_init_perf_perm_irq_work_exit+0x0/0x16 returned 0 after 0 usecs
[    0.056000] calling  validate_x2apic+0x0/0x4f @ 1
[    0.056000] initcall validate_x2apic+0x0/0x4f returned 0 after 0 usecs
[    0.056000] calling  register_nmi_cpu_backtrace_handler+0x0/0x18 @ 1
[    0.056000] initcall register_nmi_cpu_backtrace_handler+0x0/0x18 returned 0 after 0 usecs
[    0.056000] calling  early_efi_map_fb+0x0/0x3a @ 1
[    0.056000] initcall early_efi_map_fb+0x0/0x3a returned 0 after 0 usecs
[    0.056000] calling  spawn_ksoftirqd+0x0/0x3e @ 1
[    0.056000] initcall spawn_ksoftirqd+0x0/0x3e returned 0 after 0 usecs
[    0.056000] calling  migration_init+0x0/0x31 @ 1
[    0.056000] initcall migration_init+0x0/0x31 returned 0 after 0 usecs
[    0.056000] calling  check_cpu_stall_init+0x0/0x1b @ 1
[    0.056000] initcall check_cpu_stall_init+0x0/0x1b returned 0 after 0 usecs
[    0.056000] calling  srcu_bootup_announce+0x0/0x30 @ 1
[    0.056000] Hierarchical SRCU implementation.
[    0.056000] initcall srcu_bootup_announce+0x0/0x30 returned 0 after 0 usecs
[    0.056000] calling  rcu_spawn_gp_kthread+0x0/0xfc @ 1
[    0.056000] initcall rcu_spawn_gp_kthread+0x0/0xfc returned 0 after 0 usecs
[    0.056000] calling  cpu_stop_init+0x0/0x7d @ 1
[    0.056000] initcall cpu_stop_init+0x0/0x7d returned 0 after 0 usecs
[    0.056000] calling  init_events+0x0/0x3a @ 1
[    0.056000] initcall init_events+0x0/0x3a returned 0 after 0 usecs
[    0.056000] calling  init_trace_printk+0x0/0xf @ 1
[    0.056000] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.056000] calling  event_trace_enable_again+0x0/0x40 @ 1
[    0.056000] initcall event_trace_enable_again+0x0/0x40 returned 0 after 0 usecs
[    0.056000] calling  jump_label_init_module+0x0/0x14 @ 1
[    0.056000] initcall jump_label_init_module+0x0/0x14 returned 0 after 0 usecs
[    0.056000] calling  dynamic_debug_init+0x0/0x1f0 @ 1
[    0.056000] initcall dynamic_debug_init+0x0/0x1f0 returned 0 after 0 usecs
[    0.056000] calling  rand_initialize+0x0/0xc0 @ 1
[    0.056000] initcall rand_initialize+0x0/0xc0 returned 0 after 0 usecs
[    0.056000] smp: Bringing up secondary CPUs ...
[    0.056000] CPU 1 irqstacks, hard=f7132000 soft=f7134000
[    0.056000] x86: Booting SMP configuration:
[    0.056000] .... node  #0, CPUs:      #1
[    0.004000] Initializing CPU#1
[    0.004000] Disabled fast string operations
[    0.056084] smp: Brought up 1 node, 2 CPUs
[    0.056261] smpboot: Total of 2 processors activated (6649.46 BogoMIPS)
[    0.058070] devtmpfs: initialized
[    0.058070] calling  ipc_ns_init+0x0/0x61 @ 1
[    0.058070] initcall ipc_ns_init+0x0/0x61 returned 0 after 0 usecs
[    0.058070] calling  init_mmap_min_addr+0x0/0x16 @ 1
[    0.058070] initcall init_mmap_min_addr+0x0/0x16 returned 0 after 0 usecs
[    0.058070] calling  init_cpufreq_transition_notifier_list+0x0/0x1d @ 1
[    0.058070] initcall init_cpufreq_transition_notifier_list+0x0/0x1d returned 0 after 0 usecs
[    0.058070] calling  net_ns_init+0x0/0x125 @ 1
[    0.058070] initcall net_ns_init+0x0/0x125 returned 0 after 0 usecs
[    0.058070] calling  xen_pvh_gnttab_setup+0x0/0x34 @ 1
[    0.058070] initcall xen_pvh_gnttab_setup+0x0/0x34 returned -19 after 0 usecs
[    0.058070] calling  e820__register_nvs_regions+0x0/0x3e @ 1
[    0.058070] initcall e820__register_nvs_regions+0x0/0x3e returned 0 after 0 usecs
[    0.058070] calling  cpufreq_register_tsc_scaling+0x0/0x2a @ 1
[    0.058070] initcall cpufreq_register_tsc_scaling+0x0/0x2a returned 0 after 0 usecs
[    0.058070] calling  init_cpu_syscore+0x0/0x11 @ 1
[    0.058070] initcall init_cpu_syscore+0x0/0x11 returned 0 after 0 usecs
[    0.058070] calling  reboot_init+0x0/0x42 @ 1
[    0.058070] initcall reboot_init+0x0/0x42 returned 0 after 0 usecs
[    0.058070] calling  init_lapic_sysfs+0x0/0x24 @ 1
[    0.058070] initcall init_lapic_sysfs+0x0/0x24 returned 0 after 0 usecs
[    0.058070] calling  pgd_cache_init+0x0/0x47 @ 1
[    0.058070] initcall pgd_cache_init+0x0/0x47 returned 0 after 0 usecs
[    0.058070] calling  cpu_hotplug_pm_sync_init+0x0/0x16 @ 1
[    0.058070] initcall cpu_hotplug_pm_sync_init+0x0/0x16 returned 0 after 0 usecs
[    0.058070] calling  alloc_frozen_cpus+0x0/0xc @ 1
[    0.058070] initcall alloc_frozen_cpus+0x0/0xc returned 0 after 0 usecs
[    0.058070] calling  wq_sysfs_init+0x0/0x29 @ 1
[    0.058070] initcall wq_sysfs_init+0x0/0x29 returned 0 after 0 usecs
[    0.058070] calling  ksysfs_init+0x0/0x7d @ 1
[    0.058070] initcall ksysfs_init+0x0/0x7d returned 0 after 0 usecs
[    0.058070] calling  pm_init+0x0/0x6d @ 1
[    0.060010] initcall pm_init+0x0/0x6d returned 0 after 0 usecs
[    0.060010] calling  pm_disk_init+0x0/0x19 @ 1
[    0.060010] initcall pm_disk_init+0x0/0x19 returned 0 after 0 usecs
[    0.060010] calling  swsusp_header_init+0x0/0x30 @ 1
[    0.060010] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    0.060010] calling  rcu_set_runtime_mode+0x0/0x16 @ 1
[    0.060010] initcall rcu_set_runtime_mode+0x0/0x16 returned 0 after 0 usecs
[    0.060010] calling  init_jiffies_clocksource+0x0/0x1b @ 1
[    0.060010] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.060010] initcall init_jiffies_clocksource+0x0/0x1b returned 0 after 0 usecs
[    0.060010] calling  futex_init+0x0/0xd5 @ 1
[    0.060010] futex hash table entries: 512 (order: 3, 32768 bytes)
[    0.060010] initcall futex_init+0x0/0xd5 returned 0 after 0 usecs
[    0.060010] calling  cgroup_wq_init+0x0/0x2c @ 1
[    0.060010] initcall cgroup_wq_init+0x0/0x2c returned 0 after 0 usecs
[    0.060010] calling  cgroup1_wq_init+0x0/0x2c @ 1
[    0.060010] initcall cgroup1_wq_init+0x0/0x2c returned 0 after 0 usecs
[    0.060010] calling  ftrace_mod_cmd_init+0x0/0xf @ 1
[    0.060010] initcall ftrace_mod_cmd_init+0x0/0xf returned 0 after 0 usecs
[    0.060010] calling  init_graph_trace+0x0/0x5a @ 1
[    0.060010] initcall init_graph_trace+0x0/0x5a returned 0 after 0 usecs
[    0.060010] calling  init_per_zone_wmark_min+0x0/0x62 @ 1
[    0.060010] initcall init_per_zone_wmark_min+0x0/0x62 returned 0 after 0 usecs
[    0.060010] calling  init_zero_pfn+0x0/0x25 @ 1
[    0.060010] initcall init_zero_pfn+0x0/0x25 returned 0 after 0 usecs
[    0.060010] calling  memory_failure_init+0x0/0x84 @ 1
[    0.060010] initcall memory_failure_init+0x0/0x84 returned 0 after 0 usecs
[    0.060010] calling  fsnotify_init+0x0/0x44 @ 1
[    0.060010] initcall fsnotify_init+0x0/0x44 returned 0 after 0 usecs
[    0.060010] calling  filelock_init+0x0/0x7f @ 1
[    0.060010] initcall filelock_init+0x0/0x7f returned 0 after 0 usecs
[    0.060010] calling  init_script_binfmt+0x0/0x18 @ 1
[    0.060010] initcall init_script_binfmt+0x0/0x18 returned 0 after 0 usecs
[    0.060010] calling  init_elf_binfmt+0x0/0x18 @ 1
[    0.060010] initcall init_elf_binfmt+0x0/0x18 returned 0 after 0 usecs
[    0.060010] calling  debugfs_init+0x0/0x4b @ 1
[    0.060010] initcall debugfs_init+0x0/0x4b returned 0 after 0 usecs
[    0.060010] calling  tracefs_init+0x0/0x39 @ 1
[    0.060010] initcall tracefs_init+0x0/0x39 returned 0 after 0 usecs
[    0.060010] calling  securityfs_init+0x0/0x63 @ 1
[    0.060010] initcall securityfs_init+0x0/0x63 returned 0 after 0 usecs
[    0.060010] calling  prandom_init+0x0/0xb8 @ 1
[    0.060010] initcall prandom_init+0x0/0xb8 returned 0 after 0 usecs
[    0.060010] calling  pinctrl_init+0x0/0x9d @ 1
[    0.060010] pinctrl core: initialized pinctrl subsystem
[    0.060010] initcall pinctrl_init+0x0/0x9d returned 0 after 0 usecs
[    0.060010] calling  gpiolib_dev_init+0x0/0xb3 @ 1
[    0.060010] initcall gpiolib_dev_init+0x0/0xb3 returned 0 after 0 usecs
[    0.060010] calling  sfi_sysfs_init+0x0/0xbe @ 1
[    0.060010] initcall sfi_sysfs_init+0x0/0xbe returned 0 after 0 usecs
[    0.060010] calling  opp_debug_init+0x0/0x39 @ 1
[    0.060010] initcall opp_debug_init+0x0/0x39 returned 0 after 0 usecs
[    0.060010] calling  cpufreq_core_init+0x0/0x46 @ 1
[    0.060010] initcall cpufreq_core_init+0x0/0x46 returned 0 after 0 usecs
[    0.060010] calling  cpuidle_init+0x0/0x3b @ 1
[    0.060010] initcall cpuidle_init+0x0/0x3b returned 0 after 0 usecs
[    0.060010] calling  capsule_reboot_register+0x0/0x14 @ 1
[    0.060010] initcall capsule_reboot_register+0x0/0x14 returned 0 after 0 usecs
[    0.060010] calling  bsp_pm_check_init+0x0/0x16 @ 1
[    0.060010] initcall bsp_pm_check_init+0x0/0x16 returned 0 after 0 usecs
[    0.060010] calling  sock_init+0x0/0x8f @ 1
[    0.060010] initcall sock_init+0x0/0x8f returned 0 after 0 usecs
[    0.060010] calling  net_inuse_init+0x0/0x24 @ 1
[    0.060010] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    0.060010] calling  net_defaults_init+0x0/0x24 @ 1
[    0.060010] initcall net_defaults_init+0x0/0x24 returned 0 after 0 usecs
[    0.060010] calling  init_default_flow_dissectors+0x0/0x48 @ 1
[    0.060010] initcall init_default_flow_dissectors+0x0/0x48 returned 0 after 0 usecs
[    0.060010] calling  netpoll_init+0x0/0x34 @ 1
[    0.060010] initcall netpoll_init+0x0/0x34 returned 0 after 0 usecs
[    0.060010] calling  netlink_proto_init+0x0/0x137 @ 1
[    0.060010] NET: Registered protocol family 16
[    0.060023] initcall netlink_proto_init+0x0/0x137 returned 0 after 0 usecs
[    0.060027] calling  __gnttab_init+0x0/0x50 @ 1
[    0.060030] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.060228] calling  irq_sysfs_init+0x0/0x7e @ 1
[    0.060357] initcall irq_sysfs_init+0x0/0x7e returned 0 after 0 usecs
[    0.060361] calling  bdi_class_init+0x0/0x41 @ 1
[    0.060371] initcall bdi_class_init+0x0/0x41 returned 0 after 0 usecs
[    0.060374] calling  mm_sysfs_init+0x0/0x27 @ 1
[    0.060379] initcall mm_sysfs_init+0x0/0x27 returned 0 after 0 usecs
[    0.060381] calling  gpiolib_sysfs_init+0x0/0x85 @ 1
[    0.060391] initcall gpiolib_sysfs_init+0x0/0x85 returned 0 after 0 usecs
[    0.060393] calling  pcibus_class_init+0x0/0x19 @ 1
[    0.060400] initcall pcibus_class_init+0x0/0x19 returned 0 after 0 usecs
[    0.060402] calling  pci_driver_init+0x0/0x14 @ 1
[    0.060416] initcall pci_driver_init+0x0/0x14 returned 0 after 0 usecs
[    0.060419] calling  backlight_class_init+0x0/0x91 @ 1
[    0.060427] initcall backlight_class_init+0x0/0x91 returned 0 after 0 usecs
[    0.060430] calling  xenbus_init+0x0/0x26e @ 1
[    0.060432] initcall xenbus_init+0x0/0x26e returned -19 after 0 usecs
[    0.060435] calling  tty_class_init+0x0/0x30 @ 1
[    0.060441] initcall tty_class_init+0x0/0x30 returned 0 after 0 usecs
[    0.060444] calling  vtconsole_class_init+0x0/0xa7 @ 1
[    0.060476] initcall vtconsole_class_init+0x0/0xa7 returned 0 after 0 usecs
[    0.060478] calling  mipi_dsi_bus_init+0x0/0x14 @ 1
[    0.060491] initcall mipi_dsi_bus_init+0x0/0x14 returned 0 after 0 usecs
[    0.060494] calling  wakeup_sources_debugfs_init+0x0/0x24 @ 1
[    0.060500] initcall wakeup_sources_debugfs_init+0x0/0x24 returned 0 after 0 usecs
[    0.060503] calling  isa_bus_init+0x0/0x38 @ 1
[    0.060534] initcall isa_bus_init+0x0/0x38 returned 0 after 0 usecs
[    0.060536] calling  regmap_initcall+0x0/0x11 @ 1
[    0.060542] initcall regmap_initcall+0x0/0x11 returned 0 after 0 usecs
[    0.060544] calling  spi_init+0x0/0x89 @ 1
[    0.060562] initcall spi_init+0x0/0x89 returned 0 after 0 usecs
[    0.060564] calling  i2c_init+0x0/0xa5 @ 1
[    0.060589] initcall i2c_init+0x0/0xa5 returned 0 after 0 usecs
[    0.060592] calling  init_ladder+0x0/0x27 @ 1
[    0.060614] cpuidle: using governor ladder
[    0.060614] initcall init_ladder+0x0/0x27 returned 0 after 0 usecs
[    0.060614] calling  init_menu+0x0/0x14 @ 1
[    0.060614] cpuidle: using governor menu
[    0.060614] initcall init_menu+0x0/0x14 returned 0 after 0 usecs
[    0.060614] calling  amd_postcore_init+0x0/0xfc @ 1
[    0.060614] initcall amd_postcore_init+0x0/0xfc returned 0 after 0 usecs
[    0.060614] calling  kobject_uevent_init+0x0/0xf @ 1
[    0.060614] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    0.060614] calling  bts_init+0x0/0x9d @ 1
[    0.060614] initcall bts_init+0x0/0x9d returned -19 after 0 usecs
[    0.060614] calling  pt_init+0x0/0x31c @ 1
[    0.060614] initcall pt_init+0x0/0x31c returned -19 after 0 usecs
[    0.060614] calling  boot_params_ksysfs_init+0x0/0x214 @ 1
[    0.060614] initcall boot_params_ksysfs_init+0x0/0x214 returned 0 after 0 usecs
[    0.060614] calling  sbf_init+0x0/0xf2 @ 1
[    0.060614] initcall sbf_init+0x0/0xf2 returned 0 after 0 usecs
[    0.060614] calling  arch_kdebugfs_init+0x0/0x23 @ 1
[    0.060614] initcall arch_kdebugfs_init+0x0/0x23 returned 0 after 0 usecs
[    0.060614] calling  init_pit_clocksource+0x0/0x37 @ 1
[    0.060614] initcall init_pit_clocksource+0x0/0x37 returned 0 after 0 usecs
[    0.060614] calling  mtrr_if_init+0x0/0x50 @ 1
[    0.060614] initcall mtrr_if_init+0x0/0x50 returned 0 after 0 usecs
[    0.060614] calling  ffh_cstate_init+0x0/0x2d @ 1
[    0.060614] initcall ffh_cstate_init+0x0/0x2d returned 0 after 0 usecs
[    0.060614] calling  kdump_buf_page_init+0x0/0x3b @ 1
[    0.060614] initcall kdump_buf_page_init+0x0/0x3b returned 0 after 0 usecs
[    0.060614] calling  activate_jump_labels+0x0/0x35 @ 1
[    0.060614] initcall activate_jump_labels+0x0/0x35 returned 0 after 0 usecs
[    0.060614] calling  kcmp_cookies_init+0x0/0x2f @ 1
[    0.060614] initcall kcmp_cookies_init+0x0/0x2f returned 0 after 0 usecs
[    0.060614] calling  acpi_pci_init+0x0/0x60 @ 1
[    0.060614] ACPI: bus type PCI registered
[    0.060614] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.060614] initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
[    0.060614] calling  dma_bus_init+0x0/0x91 @ 1
[    0.060614] initcall dma_bus_init+0x0/0x91 returned 0 after 0 usecs
[    0.060614] calling  dma_channel_table_init+0x0/0xc2 @ 1
[    0.060614] initcall dma_channel_table_init+0x0/0xc2 returned 0 after 0 usecs
[    0.060614] calling  setup_vcpu_hotplug_event+0x0/0x2d @ 1
[    0.060614] initcall setup_vcpu_hotplug_event+0x0/0x2d returned -19 after 0 usecs
[    0.060614] calling  register_xen_pci_notifier+0x0/0x34 @ 1
[    0.060614] initcall register_xen_pci_notifier+0x0/0x34 returned 0 after 0 usecs
[    0.060614] calling  xen_pcpu_init+0x0/0xb2 @ 1
[    0.060614] initcall xen_pcpu_init+0x0/0xb2 returned -19 after 0 usecs
[    0.060614] calling  dmi_id_init+0x0/0x29e @ 1
[    0.060614] initcall dmi_id_init+0x0/0x29e returned 0 after 0 usecs
[    0.060614] calling  pci_arch_init+0x0/0x6b @ 1
[    0.060622] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.060712] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.060780] PCI: Using MMCONFIG for extended config space
[    0.060846] PCI: Using configuration type 1 for base access
[    0.060923] initcall pci_arch_init+0x0/0x6b returned 0 after 0 usecs
[    0.061119] calling  fixup_ht_bug+0x0/0x9c @ 1
[    0.061121] initcall fixup_ht_bug+0x0/0x9c returned 0 after 0 usecs
[    0.061124] calling  topology_init+0x0/0x30 @ 1
[    0.061215] initcall topology_init+0x0/0x30 returned 0 after 0 usecs
[    0.061217] calling  mtrr_init_finialize+0x0/0x41 @ 1
[    0.061221] initcall mtrr_init_finialize+0x0/0x41 returned 0 after 0 usecs
[    0.061223] calling  uid_cache_init+0x0/0x85 @ 1
[    0.061227] initcall uid_cache_init+0x0/0x85 returned 0 after 0 usecs
[    0.061229] calling  param_sysfs_init+0x0/0x164 @ 1
[    0.062737] initcall param_sysfs_init+0x0/0x164 returned 0 after 3906 usecs
[    0.062740] calling  user_namespace_sysctl_init+0x0/0x31 @ 1
[    0.062760] initcall user_namespace_sysctl_init+0x0/0x31 returned 0 after 0 usecs
[    0.062762] calling  proc_schedstat_init+0x0/0x1f @ 1
[    0.062767] initcall proc_schedstat_init+0x0/0x1f returned 0 after 0 usecs
[    0.062770] calling  pm_sysrq_init+0x0/0x1b @ 1
[    0.064012] initcall pm_sysrq_init+0x0/0x1b returned 0 after 0 usecs
[    0.064012] calling  create_proc_profile+0x0/0xd0 @ 1
[    0.064014] initcall create_proc_profile+0x0/0xd0 returned 0 after 0 usecs
[    0.064017] calling  crash_save_vmcoreinfo_init+0x0/0x4a5 @ 1
[    0.064062] initcall crash_save_vmcoreinfo_init+0x0/0x4a5 returned 0 after 0 usecs
[    0.064064] calling  crash_notes_memory_init+0x0/0x36 @ 1
[    0.064069] initcall crash_notes_memory_init+0x0/0x36 returned 0 after 0 usecs
[    0.064071] calling  cgroup_namespaces_init+0x0/0xc @ 1
[    0.064074] initcall cgroup_namespaces_init+0x0/0xc returned 0 after 0 usecs
[    0.064076] calling  user_namespaces_init+0x0/0x2c @ 1
[    0.064086] initcall user_namespaces_init+0x0/0x2c returned 0 after 0 usecs
[    0.064088] calling  hung_task_init+0x0/0x49 @ 1
[    0.064097] initcall hung_task_init+0x0/0x49 returned 0 after 0 usecs
[    0.064097] calling  dev_map_init+0x0/0x16 @ 1
[    0.064097] initcall dev_map_init+0x0/0x16 returned 0 after 0 usecs
[    0.064097] calling  oom_init+0x0/0x59 @ 1
[    0.064097] initcall oom_init+0x0/0x59 returned 0 after 0 usecs
[    0.064097] calling  default_bdi_init+0x0/0xa7 @ 1
[    0.064097] initcall default_bdi_init+0x0/0xa7 returned 0 after 0 usecs
[    0.064097] calling  percpu_enable_async+0x0/0x13 @ 1
[    0.064097] initcall percpu_enable_async+0x0/0x13 returned 0 after 0 usecs
[    0.064097] calling  kcompactd_init+0x0/0x49 @ 1
[    0.064097] initcall kcompactd_init+0x0/0x49 returned 0 after 0 usecs
[    0.064097] calling  init_reserve_notifier+0x0/0x7 @ 1
[    0.064097] initcall init_reserve_notifier+0x0/0x7 returned 0 after 0 usecs
[    0.064097] calling  init_admin_reserve+0x0/0x40 @ 1
[    0.064097] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
[    0.064097] calling  init_user_reserve+0x0/0x40 @ 1
[    0.064097] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
[    0.064097] calling  swap_init_sysfs+0x0/0x5d @ 1
[    0.064097] initcall swap_init_sysfs+0x0/0x5d returned 0 after 0 usecs
[    0.064097] calling  swapfile_init+0x0/0x40 @ 1
[    0.064097] initcall swapfile_init+0x0/0x40 returned 0 after 0 usecs
[    0.064097] calling  hugetlb_init+0x0/0x3b2 @ 1
[    0.064097] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.064097] initcall hugetlb_init+0x0/0x3b2 returned 0 after 0 usecs
[    0.064097] calling  ksm_init+0x0/0x14b @ 1
[    0.064097] initcall ksm_init+0x0/0x14b returned 0 after 0 usecs
[    0.064097] calling  hugepage_init+0x0/0x12d @ 1
[    0.064097] initcall hugepage_init+0x0/0x12d returned 0 after 0 usecs
[    0.064097] calling  mem_cgroup_swap_init+0x0/0x51 @ 1
[    0.064097] initcall mem_cgroup_swap_init+0x0/0x51 returned 0 after 0 usecs
[    0.064097] calling  mem_cgroup_init+0x0/0xc6 @ 1
[    0.064097] initcall mem_cgroup_init+0x0/0xc6 returned 0 after 0 usecs
[    0.064097] calling  sel_ib_pkey_init+0x0/0x30 @ 1
[    0.064097] initcall sel_ib_pkey_init+0x0/0x30 returned 0 after 0 usecs
[    0.064097] calling  crypto_wq_init+0x0/0x2c @ 1
[    0.064097] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs
[    0.064097] calling  cryptomgr_init+0x0/0x14 @ 1
[    0.064097] initcall cryptomgr_init+0x0/0x14 returned 0 after 0 usecs
[    0.064097] calling  init_bio+0x0/0xc2 @ 1
[    0.064113] initcall init_bio+0x0/0xc2 returned 0 after 0 usecs
[    0.064113] calling  blk_settings_init+0x0/0x22 @ 1
[    0.064113] initcall blk_settings_init+0x0/0x22 returned 0 after 0 usecs
[    0.064113] calling  blk_ioc_init+0x0/0x29 @ 1
[    0.064113] initcall blk_ioc_init+0x0/0x29 returned 0 after 0 usecs
[    0.064113] calling  blk_softirq_init+0x0/0x63 @ 1
[    0.064113] initcall blk_softirq_init+0x0/0x63 returned 0 after 0 usecs
[    0.064113] calling  blk_mq_init+0x0/0x26 @ 1
[    0.064113] initcall blk_mq_init+0x0/0x26 returned 0 after 0 usecs
[    0.064113] calling  genhd_device_init+0x0/0x66 @ 1
[    0.064113] initcall genhd_device_init+0x0/0x66 returned 0 after 0 usecs
[    0.064113] calling  irq_poll_setup+0x0/0x5e @ 1
[    0.064113] initcall irq_poll_setup+0x0/0x5e returned 0 after 0 usecs
[    0.064113] calling  byt_gpio_init+0x0/0x16 @ 1
[    0.064113] initcall byt_gpio_init+0x0/0x16 returned 0 after 0 usecs
[    0.064113] calling  chv_pinctrl_init+0x0/0x16 @ 1
[    0.064113] initcall chv_pinctrl_init+0x0/0x16 returned 0 after 0 usecs
[    0.064113] calling  bxt_pinctrl_init+0x0/0x16 @ 1
[    0.064113] initcall bxt_pinctrl_init+0x0/0x16 returned 0 after 0 usecs
[    0.064113] calling  spt_pinctrl_init+0x0/0x16 @ 1
[    0.064113] initcall spt_pinctrl_init+0x0/0x16 returned 0 after 0 usecs
[    0.064113] calling  gpiolib_debugfs_init+0x0/0x24 @ 1
[    0.064113] initcall gpiolib_debugfs_init+0x0/0x24 returned 0 after 0 usecs
[    0.064113] calling  pci_slot_init+0x0/0x40 @ 1
[    0.064113] initcall pci_slot_init+0x0/0x40 returned 0 after 0 usecs
[    0.064113] calling  fbmem_init+0x0/0xcb @ 1
[    0.064143] initcall fbmem_init+0x0/0xcb returned 0 after 0 usecs
[    0.064145] calling  scan_for_dmi_ipmi+0x0/0x112 @ 1
[    0.064149] initcall scan_for_dmi_ipmi+0x0/0x112 returned 0 after 0 usecs
[    0.064151] calling  acpi_init+0x0/0x315 @ 1
[    0.064176] ACPI: Added _OSI(Module Device)
[    0.064242] ACPI: Added _OSI(Processor Device)
[    0.064306] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.064372] ACPI: Added _OSI(Processor Aggregator Device)
[    0.064607] ACPI: Executed 1 blocks of module-level executable AML code
[    0.066266] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.069600] ACPI: EC: EC started
[    0.069664] ACPI: EC: interrupt blocked
[    0.069877] ACPI: \_SB_.PCI0.LPCB.EC__: Used as first EC
[    0.069944] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x1c, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.070028] ACPI: \_SB_.PCI0.LPCB.EC__: Used as boot DSDT EC to handle transactions
[    0.070110] ACPI: Interpreter enabled
[    0.070207] ACPI: (supports S0 S3 S4 S5)
[    0.070271] ACPI: Using IOAPIC for interrupt routing
[    0.070373] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.070763] ACPI: Enabled 1 GPEs in block 00 to 1F
[    0.083577] acpi ACPI0003:01: ACPI dock station (docks/bays count: 1)
[    0.083813] ACPI: Power Resource [FPWR] (off)
[    0.084535] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.084610] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.084842] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.085711] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.086271] PCI host bridge to bus 0000:00
[    0.086338] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.086408] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.086477] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.086561] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.086644] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.086727] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.086811] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.086895] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.086978] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.087062] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.087144] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.087227] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.087311] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.087394] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.087477] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.087561] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.087644] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window]
[    0.087728] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.087811] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.087889] pci 0000:00:00.0: [8086:27a0] type 00 class 0x060000
[    0.088090] pci 0000:00:02.0: [8086:27a2] type 00 class 0x030000
[    0.088106] pci 0000:00:02.0: reg 0x10: [mem 0xe4300000-0xe437ffff]
[    0.088113] pci 0000:00:02.0: reg 0x14: [io  0x50b0-0x50b7]
[    0.088120] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff pref]
[    0.088127] pci 0000:00:02.0: reg 0x1c: [mem 0xe4400000-0xe443ffff]
[    0.088299] pci 0000:00:02.1: [8086:27a6] type 00 class 0x038000
[    0.088313] pci 0000:00:02.1: reg 0x10: [mem 0xe4380000-0xe43fffff]
[    0.088550] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.088585] pci 0000:00:1b.0: reg 0x10: [mem 0xe4440000-0xe4443fff 64bit]
[    0.088702] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.088873] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.089002] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.089176] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[    0.089302] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.089476] pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400
[    0.089593] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.089767] pci 0000:00:1c.3: [8086:27d6] type 01 class 0x060400
[    0.089885] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.090060] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.090122] pci 0000:00:1d.0: reg 0x20: [io  0x5000-0x501f]
[    0.090304] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.090367] pci 0000:00:1d.1: reg 0x20: [io  0x5020-0x503f]
[    0.090548] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.090610] pci 0000:00:1d.2: reg 0x20: [io  0x5040-0x505f]
[    0.090796] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.090858] pci 0000:00:1d.3: reg 0x20: [io  0x5060-0x507f]
[    0.091048] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.091076] pci 0000:00:1d.7: reg 0x10: [mem 0xe4444000-0xe44443ff]
[    0.091182] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.091340] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.091566] pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
[    0.091690] pci 0000:00:1f.0: quirk: [io  0x0500-0x057f] claimed by ICH6 ACPI/GPIO/TCO
[    0.091779] pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
[    0.091851] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 1600 (mask 007f)
[    0.091936] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 15e0 (mask 000f)
[    0.092007] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 1680 (mask 001f)
[    0.092272] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a
[    0.092299] pci 0000:00:1f.1: reg 0x10: [io  0x50b8-0x50bf]
[    0.092311] pci 0000:00:1f.1: reg 0x14: [io  0x50d8-0x50db]
[    0.092323] pci 0000:00:1f.1: reg 0x18: [io  0x50c0-0x50c7]
[    0.092336] pci 0000:00:1f.1: reg 0x1c: [io  0x50dc-0x50df]
[    0.092348] pci 0000:00:1f.1: reg 0x20: [io  0x50a0-0x50af]
[    0.092374] pci 0000:00:1f.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.092445] pci 0000:00:1f.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.092514] pci 0000:00:1f.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.092584] pci 0000:00:1f.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.092805] pci 0000:00:1f.2: [8086:27c5] type 00 class 0x010601
[    0.092833] pci 0000:00:1f.2: reg 0x10: [io  0x50c8-0x50cf]
[    0.092845] pci 0000:00:1f.2: reg 0x14: [io  0x50e0-0x50e3]
[    0.092858] pci 0000:00:1f.2: reg 0x18: [io  0x50d0-0x50d7]
[    0.092870] pci 0000:00:1f.2: reg 0x1c: [io  0x50e4-0x50e7]
[    0.092882] pci 0000:00:1f.2: reg 0x20: [io  0x5080-0x508f]
[    0.092895] pci 0000:00:1f.2: reg 0x24: [mem 0xe4445000-0xe44453ff]
[    0.092953] pci 0000:00:1f.2: PME# supported from D3hot
[    0.093107] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.093189] pci 0000:00:1f.3: reg 0x20: [io  0x0400-0x041f]
[    0.093466] pci 0000:01:00.0: [8086:109a] type 00 class 0x020000
[    0.093521] pci 0000:01:00.0: reg 0x10: [mem 0xe4100000-0xe411ffff]
[    0.093563] pci 0000:01:00.0: reg 0x18: [io  0x4000-0x401f]
[    0.093767] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.104037] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.104107] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    0.104113] pci 0000:00:1c.0:   bridge window [mem 0xe4100000-0xe41fffff]
[    0.104248] pci 0000:02:00.0: [8086:4227] type 00 class 0x028000
[    0.104348] pci 0000:02:00.0: reg 0x10: [mem 0xe4200000-0xe4200fff]
[    0.104800] pci 0000:02:00.0: PME# supported from D0 D3hot
[    0.116053] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.116127] pci 0000:00:1c.1:   bridge window [mem 0xe4200000-0xe42fffff]
[    0.116207] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.116355] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.116597] pci 0000:05:00.0: [1180:0476] type 02 class 0x060700
[    0.116627] pci 0000:05:00.0: reg 0x10: [mem 0xe2000000-0xe2000fff]
[    0.116670] pci 0000:05:00.0: supports D1 D2
[    0.116672] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.116785] pci 0000:05:00.1: [1180:0552] type 00 class 0x0c0010
[    0.116813] pci 0000:05:00.1: reg 0x10: [mem 0xe2001000-0xe20017ff]
[    0.116916] pci 0000:05:00.1: supports D1 D2
[    0.116919] pci 0000:05:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.117017] pci 0000:05:00.2: [1180:0822] type 00 class 0x080500
[    0.117046] pci 0000:05:00.2: reg 0x10: [mem 0xe2002000-0xe20020ff]
[    0.117151] pci 0000:05:00.2: supports D1 D2
[    0.117153] pci 0000:05:00.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.117301] pci 0000:00:1e.0: PCI bridge to [bus 05-06] (subtractive decode)
[    0.117375] pci 0000:00:1e.0:   bridge window [io  0x2000-0x3fff]
[    0.117381] pci 0000:00:1e.0:   bridge window [mem 0xe0000000-0xe20fffff]
[    0.117390] pci 0000:00:1e.0:   bridge window [mem 0xe2100000-0xe40fffff 64bit pref]
[    0.117393] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.117396] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.117399] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.117401] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000c3fff window] (subtractive decode)
[    0.117404] pci 0000:00:1e.0:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    0.117407] pci 0000:00:1e.0:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    0.117410] pci 0000:00:1e.0:   bridge window [mem 0x000cc000-0x000cffff window] (subtractive decode)
[    0.117413] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    0.117415] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    0.117418] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    0.117421] pci 0000:00:1e.0:   bridge window [mem 0x000dc000-0x000dffff window] (subtractive decode)
[    0.117424] pci 0000:00:1e.0:   bridge window [mem 0x000e0000-0x000e3fff window] (subtractive decode)
[    0.117427] pci 0000:00:1e.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    0.117430] pci 0000:00:1e.0:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    0.117433] pci 0000:00:1e.0:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    0.117435] pci 0000:00:1e.0:   bridge window [mem 0x000f0000-0x000fffff window] (subtractive decode)
[    0.117438] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xfebfffff window] (subtractive decode)
[    0.117441] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode)
[    0.117507] pci_bus 0000:06: busn_res: [bus 06] end can not be updated to 09
[    0.117514] pci 0000:00:1e.0: bridge has subordinate 06 but max busn 09
[    0.117619] pci_bus 0000:00: on NUMA node 0
[    0.117822] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 12 14 15) *11
[    0.118000] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *11 12 14 15)
[    0.118176] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 12 14 15) *11
[    0.118352] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *11 12 14 15)
[    0.118527] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 12 14 15) *11
[    0.118703] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *11 12 14 15)
[    0.118878] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 12 14 15) *11
[    0.119054] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *11 12 14 15)
[    0.120983] ACPI: EC: interrupt unblocked
[    0.121057] ACPI: EC: event unblocked
[    0.121128] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x1c, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.121211] ACPI: \_SB_.PCI0.LPCB.EC__: Used as boot DSDT EC to handle transactions and events
[    0.121334] initcall acpi_init+0x0/0x315 returned 0 after 54687 usecs
[    0.121338] calling  pnp_init+0x0/0x14 @ 1
[    0.121352] initcall pnp_init+0x0/0x14 returned 0 after 0 usecs
[    0.121354] calling  balloon_init+0x0/0x110 @ 1
[    0.121357] initcall balloon_init+0x0/0x110 returned -19 after 0 usecs
[    0.121361] calling  xen_setup_shutdown_event+0x0/0x40 @ 1
[    0.121365] initcall xen_setup_shutdown_event+0x0/0x40 returned -19 after 0 usecs
[    0.121367] calling  xenbus_probe_backend_init+0x0/0x4f @ 1
[    0.121382] initcall xenbus_probe_backend_init+0x0/0x4f returned 0 after 0 usecs
[    0.121385] calling  xenbus_probe_frontend_init+0x0/0x4f @ 1
[    0.121398] initcall xenbus_probe_frontend_init+0x0/0x4f returned 0 after 0 usecs
[    0.121401] calling  xen_acpi_pad_init+0x0/0x4c @ 1
[    0.121403] initcall xen_acpi_pad_init+0x0/0x4c returned -19 after 0 usecs
[    0.121406] calling  misc_init+0x0/0xa6 @ 1
[    0.121417] initcall misc_init+0x0/0xa6 returned 0 after 0 usecs
[    0.121419] calling  tpm_init+0x0/0xba @ 1
[    0.121430] initcall tpm_init+0x0/0xba returned 0 after 0 usecs
[    0.121432] calling  vga_arb_device_init+0x0/0x17e @ 1
[    0.121464] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.121464] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.121464] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.121464] vgaarb: loaded
[    0.121464] initcall vga_arb_device_init+0x0/0x17e returned 0 after 0 usecs
[    0.121464] calling  cn_init+0x0/0xc0 @ 1
[    0.121464] initcall cn_init+0x0/0xc0 returned 0 after 0 usecs
[    0.121464] calling  dax_fs_init+0x0/0xab @ 1
[    0.121464] initcall dax_fs_init+0x0/0xab returned 0 after 0 usecs
[    0.121464] calling  dma_buf_init+0x0/0x9b @ 1
[    0.121464] initcall dma_buf_init+0x0/0x9b returned 0 after 0 usecs
[    0.121464] calling  serio_init+0x0/0x2d @ 1
[    0.121464] initcall serio_init+0x0/0x2d returned 0 after 0 usecs
[    0.121464] calling  input_init+0x0/0xe1 @ 1
[    0.121464] initcall input_init+0x0/0xe1 returned 0 after 0 usecs
[    0.121464] calling  rtc_init+0x0/0x47 @ 1
[    0.121464] initcall rtc_init+0x0/0x47 returned 0 after 0 usecs
[    0.121464] calling  power_supply_class_init+0x0/0x3a @ 1
[    0.121464] initcall power_supply_class_init+0x0/0x3a returned 0 after 0 usecs
[    0.121464] calling  hwmon_init+0x0/0xd5 @ 1
[    0.121464] initcall hwmon_init+0x0/0xd5 returned 0 after 0 usecs
[    0.121464] calling  edac_init+0x0/0x6f @ 1
[    0.121464] EDAC MC: Ver: 3.0.0
[    0.121464] initcall edac_init+0x0/0x6f returned 0 after 0 usecs
[    0.121464] calling  leds_init+0x0/0x37 @ 1
[    0.121464] initcall leds_init+0x0/0x37 returned 0 after 0 usecs
[    0.121464] calling  dmi_init+0x0/0xf8 @ 1
[    0.121464] initcall dmi_init+0x0/0xf8 returned 0 after 0 usecs
[    0.121464] calling  efisubsys_init+0x0/0x25d @ 1
[    0.121464] initcall efisubsys_init+0x0/0x25d returned 0 after 0 usecs
[    0.121464] calling  devfreq_init+0x0/0x90 @ 1
[    0.121464] initcall devfreq_init+0x0/0x90 returned 0 after 0 usecs
[    0.121464] calling  ras_init+0x0/0x14 @ 1
[    0.121464] initcall ras_init+0x0/0x14 returned 0 after 0 usecs
[    0.121464] calling  nvmem_init+0x0/0x14 @ 1
[    0.121464] initcall nvmem_init+0x0/0x14 returned 0 after 0 usecs
[    0.121464] calling  pci_subsys_init+0x0/0x63 @ 1
[    0.121464] PCI: Using ACPI for IRQ routing
[    0.124832] PCI: pci_cache_line_size set to 64 bytes
[    0.124932] e820: reserve RAM buffer [mem 0x7f6fc000-0x7fffffff]
[    0.124937] initcall pci_subsys_init+0x0/0x63 returned 0 after 3906 usecs
[    0.124939] calling  proto_init+0x0/0x14 @ 1
[    0.124944] initcall proto_init+0x0/0x14 returned 0 after 0 usecs
[    0.124947] calling  net_dev_init+0x0/0x1b3 @ 1
[    0.125096] initcall net_dev_init+0x0/0x1b3 returned 0 after 0 usecs
[    0.125099] calling  neigh_init+0x0/0x78 @ 1
[    0.125102] initcall neigh_init+0x0/0x78 returned 0 after 0 usecs
[    0.125105] calling  fib_notifier_init+0x0/0x14 @ 1
[    0.125107] initcall fib_notifier_init+0x0/0x14 returned 0 after 0 usecs
[    0.125110] calling  fib_rules_init+0x0/0xa6 @ 1
[    0.125114] initcall fib_rules_init+0x0/0xa6 returned 0 after 0 usecs
[    0.125117] calling  init_cgroup_netprio+0x0/0x16 @ 1
[    0.125120] initcall init_cgroup_netprio+0x0/0x16 returned 0 after 0 usecs
[    0.125122] calling  bpf_lwt_init+0x0/0x19 @ 1
[    0.125125] initcall bpf_lwt_init+0x0/0x19 returned 0 after 0 usecs
[    0.125128] calling  pktsched_init+0x0/0xf6 @ 1
[    0.125134] initcall pktsched_init+0x0/0xf6 returned 0 after 0 usecs
[    0.125136] calling  tc_filter_init+0x0/0x79 @ 1
[    0.125146] initcall tc_filter_init+0x0/0x79 returned 0 after 0 usecs
[    0.125149] calling  tc_action_init+0x0/0x4e @ 1
[    0.125152] initcall tc_action_init+0x0/0x4e returned 0 after 0 usecs
[    0.125154] calling  genl_init+0x0/0x33 @ 1
[    0.125164] initcall genl_init+0x0/0x33 returned 0 after 0 usecs
[    0.125167] calling  ipv4_netfilter_init+0x0/0x14 @ 1
[    0.125170] initcall ipv4_netfilter_init+0x0/0x14 returned 0 after 0 usecs
[    0.125173] calling  wireless_nlevent_init+0x0/0x38 @ 1
[    0.125176] initcall wireless_nlevent_init+0x0/0x38 returned 0 after 0 usecs
[    0.125179] calling  xen_mcfg_late+0x0/0xf2 @ 1
[    0.125181] initcall xen_mcfg_late+0x0/0xf2 returned 0 after 0 usecs
[    0.125184] calling  watchdog_init+0x0/0x74 @ 1
[    0.125226] initcall watchdog_init+0x0/0x74 returned 0 after 0 usecs
[    0.125226] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    0.125226] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    0.125226] calling  save_microcode_in_initrd+0x0/0x9b @ 1
[    0.125226] initcall save_microcode_in_initrd+0x0/0x9b returned 0 after 0 usecs
[    0.125226] calling  hpet_late_init+0x0/0xf6 @ 1
[    0.125226] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.125226] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.125226] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.126507] initcall hpet_late_init+0x0/0xf6 returned 0 after 0 usecs
[    0.126507] calling  init_amd_nbs+0x0/0x10d @ 1
[    0.126507] initcall init_amd_nbs+0x0/0x10d returned 0 after 0 usecs
[    0.126507] calling  sugov_register+0x0/0x14 @ 1
[    0.126507] initcall sugov_register+0x0/0x14 returned 0 after 0 usecs
[    0.126507] calling  clocksource_done_booting+0x0/0x40 @ 1
[    0.126507] clocksource: Switched to clocksource hpet
[    0.126507] initcall clocksource_done_booting+0x0/0x40 returned 0 after 71 usecs
[    0.126507] calling  tracer_init_tracefs+0x0/0x173 @ 1
[    0.132099] initcall tracer_init_tracefs+0x0/0x173 returned 0 after 7827 usecs
[    0.132102] calling  init_trace_printk_function_export+0x0/0x2d @ 1
[    0.132108] initcall init_trace_printk_function_export+0x0/0x2d returned 0 after 2 usecs
[    0.132110] calling  init_graph_tracefs+0x0/0x2d @ 1
[    0.132121] initcall init_graph_tracefs+0x0/0x2d returned 0 after 7 usecs
[    0.132124] calling  event_trace_init+0x0/0x255 @ 1
[    0.146024] initcall event_trace_init+0x0/0x255 returned 0 after 13559 usecs
[    0.146030] calling  init_kprobe_trace+0x0/0x83 @ 1
[    0.146040] initcall init_kprobe_trace+0x0/0x83 returned 0 after 6 usecs
[    0.146043] calling  init_uprobe_trace+0x0/0x4c @ 1
[    0.146052] initcall init_uprobe_trace+0x0/0x4c returned 0 after 5 usecs
[    0.146054] calling  bpf_init+0x0/0x42 @ 1
[    0.146071] initcall bpf_init+0x0/0x42 returned 0 after 12 usecs
[    0.146075] calling  init_pipe_fs+0x0/0x46 @ 1
[    0.146105] initcall init_pipe_fs+0x0/0x46 returned 0 after 26 usecs
[    0.146108] calling  cgroup_writeback_init+0x0/0x2c @ 1
[    0.146148] initcall cgroup_writeback_init+0x0/0x2c returned 0 after 34 usecs
[    0.146151] calling  inotify_user_setup+0x0/0x4a @ 1
[    0.146164] initcall inotify_user_setup+0x0/0x4a returned 0 after 9 usecs
[    0.146166] calling  eventpoll_init+0x0/0xe7 @ 1
[    0.146195] initcall eventpoll_init+0x0/0xe7 returned 0 after 24 usecs
[    0.146198] calling  anon_inode_init+0x0/0x4e @ 1
[    0.146215] initcall anon_inode_init+0x0/0x4e returned 0 after 12 usecs
[    0.146217] calling  init_dax_wait_table+0x0/0x2f @ 1
[    0.146255] initcall init_dax_wait_table+0x0/0x2f returned 0 after 32 usecs
[    0.146258] calling  proc_locks_init+0x0/0x1f @ 1
[    0.146266] initcall proc_locks_init+0x0/0x1f returned 0 after 5 usecs
[    0.146269] calling  dquot_init+0x0/0x101 @ 1
[    0.146271] VFS: Disk quotas dquot_6.6.0
[    0.146381] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.146453] initcall dquot_init+0x0/0x101 returned 0 after 175 usecs
[    0.146455] calling  quota_init+0x0/0x25 @ 1
[    0.146479] initcall quota_init+0x0/0x25 returned 0 after 19 usecs
[    0.146481] calling  proc_cmdline_init+0x0/0x1f @ 1
[    0.146488] initcall proc_cmdline_init+0x0/0x1f returned 0 after 2 usecs
[    0.146491] calling  proc_consoles_init+0x0/0x1f @ 1
[    0.146496] initcall proc_consoles_init+0x0/0x1f returned 0 after 2 usecs
[    0.146499] calling  proc_cpuinfo_init+0x0/0x1f @ 1
[    0.146505] initcall proc_cpuinfo_init+0x0/0x1f returned 0 after 1 usecs
[    0.146507] calling  proc_devices_init+0x0/0x1f @ 1
[    0.146513] initcall proc_devices_init+0x0/0x1f returned 0 after 1 usecs
[    0.146516] calling  proc_interrupts_init+0x0/0x1f @ 1
[    0.146522] initcall proc_interrupts_init+0x0/0x1f returned 0 after 2 usecs
[    0.146524] calling  proc_loadavg_init+0x0/0x1f @ 1
[    0.146530] initcall proc_loadavg_init+0x0/0x1f returned 0 after 1 usecs
[    0.146532] calling  proc_meminfo_init+0x0/0x1f @ 1
[    0.146538] initcall proc_meminfo_init+0x0/0x1f returned 0 after 1 usecs
[    0.146540] calling  proc_stat_init+0x0/0x1f @ 1
[    0.146546] initcall proc_stat_init+0x0/0x1f returned 0 after 2 usecs
[    0.146549] calling  proc_uptime_init+0x0/0x1f @ 1
[    0.146554] initcall proc_uptime_init+0x0/0x1f returned 0 after 2 usecs
[    0.146557] calling  proc_version_init+0x0/0x1f @ 1
[    0.146567] initcall proc_version_init+0x0/0x1f returned 0 after 5 usecs
[    0.146569] calling  proc_softirqs_init+0x0/0x1f @ 1
[    0.146575] initcall proc_softirqs_init+0x0/0x1f returned 0 after 2 usecs
[    0.146578] calling  proc_kcore_init+0x0/0x6e @ 1
[    0.146585] initcall proc_kcore_init+0x0/0x6e returned 0 after 3 usecs
[    0.146587] calling  vmcore_init+0x0/0x6bf @ 1
[    0.146593] initcall vmcore_init+0x0/0x6bf returned 0 after 1 usecs
[    0.146595] calling  proc_kmsg_init+0x0/0x22 @ 1
[    0.146601] initcall proc_kmsg_init+0x0/0x22 returned 0 after 2 usecs
[    0.146604] calling  proc_page_init+0x0/0x4e @ 1
[    0.146611] initcall proc_page_init+0x0/0x4e returned 0 after 3 usecs
[    0.146614] calling  init_ramfs_fs+0x0/0x22 @ 1
[    0.146619] initcall init_ramfs_fs+0x0/0x22 returned 0 after 1 usecs
[    0.146621] calling  init_hugetlbfs_fs+0x0/0x13c @ 1
[    0.146660] initcall init_hugetlbfs_fs+0x0/0x13c returned 0 after 33 usecs
[    0.146663] calling  tomoyo_initerface_init+0x0/0x138 @ 1
[    0.146669] initcall tomoyo_initerface_init+0x0/0x138 returned 0 after 1 usecs
[    0.146671] calling  aa_create_aafs+0x0/0x31f @ 1
[    0.146676] initcall aa_create_aafs+0x0/0x31f returned 0 after 1 usecs
[    0.146678] calling  blk_scsi_ioctl_init+0x0/0x352 @ 1
[    0.146684] initcall blk_scsi_ioctl_init+0x0/0x352 returned 0 after 2 usecs
[    0.146686] calling  dynamic_debug_init_debugfs+0x0/0x5f @ 1
[    0.146699] initcall dynamic_debug_init_debugfs+0x0/0x5f returned 0 after 9 usecs
[    0.146702] calling  acpi_event_init+0x0/0x31 @ 1
[    0.146714] initcall acpi_event_init+0x0/0x31 returned 0 after 7 usecs
[    0.146716] calling  pnp_system_init+0x0/0x14 @ 1
[    0.146743] initcall pnp_system_init+0x0/0x14 returned 0 after 22 usecs
[    0.146745] calling  pnpacpi_init+0x0/0x6c @ 1
[    0.146747] pnp: PnP ACPI init
[    0.147025] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.147096] system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.147166] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.147236] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.147307] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.147377] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.147446] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.147517] system 00:00: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.147594] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.148406] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.148482] system 00:01: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.148585] system 00:02: [io  0x0800-0x080f] has been reserved
[    0.148655] system 00:02: [io  0x0500-0x057f] has been reserved
[    0.148723] system 00:02: [io  0x0480-0x04bf] has been reserved
[    0.148797] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.148846] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.148916] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.148978] pnp 00:05: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.149038] pnp 00:06: Plug and Play ACPI device, IDs WACf004 (active)
[    0.149102] pnp 00:07: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.149168] pnp: PnP ACPI: found 8 devices
[    0.149236] initcall pnpacpi_init+0x0/0x6c returned 0 after 2427 usecs
[    0.149239] calling  pnpbios_init+0x0/0x34c @ 1
[    0.149241] PnPBIOS: Disabled
[    0.149306] initcall pnpbios_init+0x0/0x34c returned -19 after 61 usecs
[    0.149308] calling  chr_dev_init+0x0/0x9b @ 1
[    0.153155] initcall chr_dev_init+0x0/0x9b returned 0 after 3750 usecs
[    0.153159] calling  firmware_class_init+0x0/0xd6 @ 1
[    0.153173] initcall firmware_class_init+0x0/0xd6 returned 0 after 10 usecs
[    0.153176] calling  thermal_init+0x0/0xc8 @ 1
[    0.153197] initcall thermal_init+0x0/0xc8 returned 0 after 16 usecs
[    0.153200] calling  cpufreq_gov_performance_init+0x0/0x14 @ 1
[    0.153206] initcall cpufreq_gov_performance_init+0x0/0x14 returned 0 after 1 usecs
[    0.153209] calling  cpufreq_gov_dbs_init+0x0/0x14 @ 1
[    0.153214] initcall cpufreq_gov_dbs_init+0x0/0x14 returned 0 after 1 usecs
[    0.153218] calling  map_properties+0x0/0x45f @ 1
[    0.153222] initcall map_properties+0x0/0x45f returned 0 after 1 usecs
[    0.153225] calling  init_acpi_pm_clocksource+0x0/0x172 @ 1
[    0.187744] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.187834] initcall init_acpi_pm_clocksource+0x0/0x172 returned 0 after 33793 usecs
[    0.187836] calling  pcibios_assign_resources+0x0/0x9f @ 1
[    0.187861] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    0.187943] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
[    0.188039] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.188107] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    0.188180] pci 0000:00:1c.0:   bridge window [mem 0xe4100000-0xe41fffff]
[    0.188253] pci 0000:00:1c.0:   bridge window [mem 0x80000000-0x801fffff 64bit pref]
[    0.188342] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.188413] pci 0000:00:1c.1:   bridge window [mem 0xe4200000-0xe42fffff]
[    0.188491] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.188570] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.188665] pci 0000:05:00.0: BAR 15: assigned [mem 0x84000000-0x87ffffff pref]
[    0.188758] pci 0000:05:00.0: BAR 16: assigned [mem 0x88000000-0x8bffffff]
[    0.188829] pci 0000:05:00.0: BAR 13: assigned [io  0x2000-0x20ff]
[    0.188898] pci 0000:05:00.0: BAR 14: assigned [io  0x2400-0x24ff]
[    0.188967] pci 0000:05:00.0: CardBus bridge to [bus 06]
[    0.189034] pci 0000:05:00.0:   bridge window [io  0x2000-0x20ff]
[    0.189105] pci 0000:05:00.0:   bridge window [io  0x2400-0x24ff]
[    0.189176] pci 0000:05:00.0:   bridge window [mem 0x84000000-0x87ffffff pref]
[    0.189262] pci 0000:05:00.0:   bridge window [mem 0x88000000-0x8bffffff]
[    0.189335] pci 0000:00:1e.0: PCI bridge to [bus 05-06]
[    0.189403] pci 0000:00:1e.0:   bridge window [io  0x2000-0x3fff]
[    0.189476] pci 0000:00:1e.0:   bridge window [mem 0xe0000000-0xe20fffff]
[    0.189548] pci 0000:00:1e.0:   bridge window [mem 0xe2100000-0xe40fffff 64bit pref]
[    0.189639] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.189642] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.189644] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.189647] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.189650] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.189653] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.189656] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.189658] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.189661] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.189664] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.189666] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.189669] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.189672] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.189675] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.189677] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[    0.189680] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.189683] pci_bus 0000:00: resource 20 [mem 0x80000000-0xfebfffff window]
[    0.189686] pci_bus 0000:00: resource 21 [mem 0xfed40000-0xfed44fff window]
[    0.189689] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    0.189691] pci_bus 0000:01: resource 1 [mem 0xe4100000-0xe41fffff]
[    0.189694] pci_bus 0000:01: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
[    0.189697] pci_bus 0000:02: resource 1 [mem 0xe4200000-0xe42fffff]
[    0.189701] pci_bus 0000:05: resource 0 [io  0x2000-0x3fff]
[    0.189704] pci_bus 0000:05: resource 1 [mem 0xe0000000-0xe20fffff]
[    0.189707] pci_bus 0000:05: resource 2 [mem 0xe2100000-0xe40fffff 64bit pref]
[    0.189710] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7 window]
[    0.189712] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff window]
[    0.189715] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.189718] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.189720] pci_bus 0000:05: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.189723] pci_bus 0000:05: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.189726] pci_bus 0000:05: resource 10 [mem 0x000cc000-0x000cffff window]
[    0.189728] pci_bus 0000:05: resource 11 [mem 0x000d0000-0x000d3fff window]
[    0.189731] pci_bus 0000:05: resource 12 [mem 0x000d4000-0x000d7fff window]
[    0.189734] pci_bus 0000:05: resource 13 [mem 0x000d8000-0x000dbfff window]
[    0.189736] pci_bus 0000:05: resource 14 [mem 0x000dc000-0x000dffff window]
[    0.189739] pci_bus 0000:05: resource 15 [mem 0x000e0000-0x000e3fff window]
[    0.189742] pci_bus 0000:05: resource 16 [mem 0x000e4000-0x000e7fff window]
[    0.189744] pci_bus 0000:05: resource 17 [mem 0x000e8000-0x000ebfff window]
[    0.189747] pci_bus 0000:05: resource 18 [mem 0x000ec000-0x000effff window]
[    0.189750] pci_bus 0000:05: resource 19 [mem 0x000f0000-0x000fffff window]
[    0.189753] pci_bus 0000:05: resource 20 [mem 0x80000000-0xfebfffff window]
[    0.189755] pci_bus 0000:05: resource 21 [mem 0xfed40000-0xfed44fff window]
[    0.189758] pci_bus 0000:06: resource 0 [io  0x2000-0x20ff]
[    0.189761] pci_bus 0000:06: resource 1 [io  0x2400-0x24ff]
[    0.189763] pci_bus 0000:06: resource 2 [mem 0x84000000-0x87ffffff pref]
[    0.189766] pci_bus 0000:06: resource 3 [mem 0x88000000-0x8bffffff]
[    0.189867] initcall pcibios_assign_resources+0x0/0x9f returned 0 after 1978 usecs
[    0.189870] calling  sysctl_core_init+0x0/0x28 @ 1
[    0.189898] initcall sysctl_core_init+0x0/0x28 returned 0 after 23 usecs
[    0.189901] calling  eth_offload_init+0x0/0x16 @ 1
[    0.189906] initcall eth_offload_init+0x0/0x16 returned 0 after 1 usecs
[    0.189909] calling  inet_init+0x0/0x24f @ 1
[    0.189947] NET: Registered protocol family 2
[    0.190297] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.190397] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.190514] TCP: Hash tables configured (established 8192 bind 8192)
[    0.190624] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.190701] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.190840] initcall inet_init+0x0/0x24f returned 0 after 903 usecs
[    0.190843] calling  ipv4_offload_init+0x0/0x6e @ 1
[    0.190848] initcall ipv4_offload_init+0x0/0x6e returned 0 after 1 usecs
[    0.190851] calling  af_unix_init+0x0/0x4c @ 1
[    0.190855] NET: Registered protocol family 1
[    0.190928] initcall af_unix_init+0x0/0x4c returned 0 after 71 usecs
[    0.190931] calling  ipv6_offload_init+0x0/0x77 @ 1
[    0.190936] initcall ipv6_offload_init+0x0/0x77 returned 0 after 2 usecs
[    0.190940] calling  pci_apply_final_quirks+0x0/0x118 @ 1
[    0.190957] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.192801] PCI: CLS 64 bytes, default 64
[    0.192806] initcall pci_apply_final_quirks+0x0/0x118 returned 0 after 1817 usecs
[    0.192810] calling  acpi_reserve_resources+0x0/0xcd @ 1
[    0.192819] initcall acpi_reserve_resources+0x0/0xcd returned 0 after 5 usecs
[    0.192822] calling  populate_rootfs+0x0/0xf6 @ 1
[    0.192896] Unpacking initramfs...
[    0.347526] Freeing initrd memory: 18176K
[    0.347731] initcall populate_rootfs+0x0/0xf6 returned 0 after 151268 usecs
[    0.347738] calling  pci_iommu_init+0x0/0x39 @ 1
[    0.347744] initcall pci_iommu_init+0x0/0x39 returned 0 after 1 usecs
[    0.347951] calling  amd_uncore_init+0x0/0x247 @ 1
[    0.347956] initcall amd_uncore_init+0x0/0x247 returned -19 after 1 usecs
[    0.347958] calling  amd_ibs_init+0x0/0x1cf @ 1
[    0.347963] initcall amd_ibs_init+0x0/0x1cf returned -19 after 1 usecs
[    0.347965] calling  msr_init+0x0/0xbe @ 1
[    0.347985] initcall msr_init+0x0/0xbe returned 0 after 15 usecs
[    0.347987] calling  register_kernel_offset_dumper+0x0/0x1b @ 1
[    0.347993] initcall register_kernel_offset_dumper+0x0/0x1b returned 0 after 1 usecs
[    0.347996] calling  i8259A_init_ops+0x0/0x25 @ 1
[    0.348002] initcall i8259A_init_ops+0x0/0x25 returned 0 after 1 usecs
[    0.348049] calling  init_tsc_clocksource+0x0/0xb8 @ 1
[    0.348060] initcall init_tsc_clocksource+0x0/0xb8 returned 0 after 6 usecs
[    0.348063] calling  add_rtc_cmos+0x0/0x8d @ 1
[    0.348072] initcall add_rtc_cmos+0x0/0x8d returned 0 after 4 usecs
[    0.348074] calling  i8237A_init_ops+0x0/0x16 @ 1
[    0.348088] initcall i8237A_init_ops+0x0/0x16 returned 0 after 9 usecs
[    0.348090] calling  thermal_throttle_init_device+0x0/0x43 @ 1
[    0.348143] initcall thermal_throttle_init_device+0x0/0x43 returned 0 after 48 usecs
[    0.348147] calling  ioapic_init_ops+0x0/0x16 @ 1
[    0.348152] initcall ioapic_init_ops+0x0/0x16 returned 0 after 1 usecs
[    0.348155] calling  register_e820_pmem+0x0/0x45 @ 1
[    0.348169] initcall register_e820_pmem+0x0/0x45 returned 0 after 10 usecs
[    0.348172] calling  add_pcspkr+0x0/0x5a @ 1
[    0.348247] initcall add_pcspkr+0x0/0x5a returned 0 after 68 usecs
[    0.348250] calling  sysfb_init+0x0/0x81 @ 1
[    0.348303] initcall sysfb_init+0x0/0x81 returned 0 after 47 usecs
[    0.348306] calling  pt_dump_init+0x0/0x57 @ 1
[    0.348310] initcall pt_dump_init+0x0/0x57 returned 0 after 1 usecs
[    0.348313] calling  iosf_mbi_init+0x0/0x1b @ 1
[    0.348353] initcall iosf_mbi_init+0x0/0x1b returned 0 after 35 usecs
[    0.348355] calling  proc_execdomains_init+0x0/0x1f @ 1
[    0.348366] initcall proc_execdomains_init+0x0/0x1f returned 0 after 6 usecs
[    0.348368] calling  cpuhp_sysfs_init+0x0/0x5f @ 1
[    0.348384] initcall cpuhp_sysfs_init+0x0/0x5f returned 0 after 12 usecs
[    0.348386] calling  ioresources_init+0x0/0x32 @ 1
[    0.348395] initcall ioresources_init+0x0/0x32 returned 0 after 5 usecs
[    0.348400] calling  init_sched_debug_procfs+0x0/0x29 @ 1
[    0.348406] initcall init_sched_debug_procfs+0x0/0x29 returned 0 after 2 usecs
[    0.348409] calling  snapshot_device_init+0x0/0x14 @ 1
[    0.348492] initcall snapshot_device_init+0x0/0x14 returned 0 after 77 usecs
[    0.348495] calling  irq_gc_init_ops+0x0/0x16 @ 1
[    0.348500] initcall irq_gc_init_ops+0x0/0x16 returned 0 after 1 usecs
[    0.348502] calling  irq_pm_init_ops+0x0/0x16 @ 1
[    0.348507] initcall irq_pm_init_ops+0x0/0x16 returned 0 after 1 usecs
[    0.348510] calling  timekeeping_init_ops+0x0/0x16 @ 1
[    0.348515] initcall timekeeping_init_ops+0x0/0x16 returned 0 after 1 usecs
[    0.348518] calling  init_clocksource_sysfs+0x0/0x5d @ 1
[    0.348579] initcall init_clocksource_sysfs+0x0/0x5d returned 0 after 54 usecs
[    0.348582] calling  init_timer_list_procfs+0x0/0x29 @ 1
[    0.348590] initcall init_timer_list_procfs+0x0/0x29 returned 0 after 4 usecs
[    0.348593] calling  alarmtimer_init+0x0/0x10f @ 1
[    0.348664] initcall alarmtimer_init+0x0/0x10f returned 0 after 65 usecs
[    0.348667] calling  init_posix_timers+0x0/0x29 @ 1
[    0.348700] initcall init_posix_timers+0x0/0x29 returned 0 after 27 usecs
[    0.348703] calling  clockevents_init_sysfs+0x0/0x9e @ 1
[    0.348802] initcall clockevents_init_sysfs+0x0/0x9e returned 0 after 91 usecs
[    0.348804] calling  proc_dma_init+0x0/0x1f @ 1
[    0.348811] initcall proc_dma_init+0x0/0x1f returned 0 after 2 usecs
[    0.348813] calling  proc_modules_init+0x0/0x1f @ 1
[    0.348819] initcall proc_modules_init+0x0/0x1f returned 0 after 2 usecs
[    0.348821] calling  kallsyms_init+0x0/0x22 @ 1
[    0.348826] initcall kallsyms_init+0x0/0x22 returned 0 after 2 usecs
[    0.348829] calling  pid_namespaces_init+0x0/0x3b @ 1
[    0.348850] initcall pid_namespaces_init+0x0/0x3b returned 0 after 16 usecs
[    0.348852] calling  audit_init+0x0/0x148 @ 1
[    0.348856] audit: initializing netlink subsys (disabled)
[    0.349023] initcall audit_init+0x0/0x148 returned 0 after 162 usecs
[    0.349026] calling  audit_watch_init+0x0/0x36 @ 1
[    0.349028] audit: type=2000 audit(1522827066.348:1): state=initialized audit_enabled=0 res=1
[    0.349118] initcall audit_watch_init+0x0/0x36 returned 0 after 1 usecs
[    0.349120] calling  audit_fsnotify_init+0x0/0x36 @ 1
[    0.349125] initcall audit_fsnotify_init+0x0/0x36 returned 0 after 1 usecs
[    0.349127] calling  audit_tree_init+0x0/0x40 @ 1
[    0.349133] initcall audit_tree_init+0x0/0x40 returned 0 after 2 usecs
[    0.349135] calling  init_kprobes+0x0/0x1a2 @ 1
[    0.349362] initcall init_kprobes+0x0/0x1a2 returned 0 after 217 usecs
[    0.349364] calling  seccomp_sysctl_init+0x0/0x2a @ 1
[    0.349374] initcall seccomp_sysctl_init+0x0/0x2a returned 0 after 6 usecs
[    0.349376] calling  utsname_sysctl_init+0x0/0x16 @ 1
[    0.349388] initcall utsname_sysctl_init+0x0/0x16 returned 0 after 7 usecs
[    0.349390] calling  init_tracepoints+0x0/0x2b @ 1
[    0.349394] initcall init_tracepoints+0x0/0x2b returned 0 after 1 usecs
[    0.349397] calling  stack_trace_init+0x0/0x9e @ 1
[    0.349423] initcall stack_trace_init+0x0/0x9e returned 0 after 21 usecs
[    0.349425] calling  init_mmio_trace+0x0/0xf @ 1
[    0.349432] initcall init_mmio_trace+0x0/0xf returned 0 after 3 usecs
[    0.349434] calling  init_blk_tracer+0x0/0x4d @ 1
[    0.349447] initcall init_blk_tracer+0x0/0x4d returned 0 after 8 usecs
[    0.349450] calling  perf_event_sysfs_init+0x0/0x78 @ 1
[    0.349605] initcall perf_event_sysfs_init+0x0/0x78 returned 0 after 146 usecs
[    0.349607] calling  init_uprobes+0x0/0x56 @ 1
[    0.349615] initcall init_uprobes+0x0/0x56 returned 0 after 4 usecs
[    0.349617] calling  padata_driver_init+0x0/0x35 @ 1
[    0.349622] initcall padata_driver_init+0x0/0x35 returned 0 after 1 usecs
[    0.349625] calling  kswapd_init+0x0/0x3b @ 1
[    0.349667] initcall kswapd_init+0x0/0x3b returned 0 after 36 usecs
[    0.349670] calling  extfrag_debug_init+0x0/0x71 @ 1
[    0.349683] initcall extfrag_debug_init+0x0/0x71 returned 0 after 9 usecs
[    0.349686] calling  mm_compute_batch_init+0x0/0x3b @ 1
[    0.349691] initcall mm_compute_batch_init+0x0/0x3b returned 0 after 1 usecs
[    0.349694] calling  slab_proc_init+0x0/0x22 @ 1
[    0.349701] initcall slab_proc_init+0x0/0x22 returned 0 after 3 usecs
[    0.349703] calling  workingset_init+0x0/0x7b @ 1
[    0.349706] workingset: timestamp_bits=14 max_order=19 bucket_order=5
[    0.349778] initcall workingset_init+0x0/0x7b returned 0 after 70 usecs
[    0.349780] calling  proc_vmalloc_init+0x0/0x22 @ 1
[    0.349786] initcall proc_vmalloc_init+0x0/0x22 returned 0 after 2 usecs
[    0.349789] calling  procswaps_init+0x0/0x1f @ 1
[    0.349794] initcall procswaps_init+0x0/0x1f returned 0 after 2 usecs
[    0.349796] calling  init_frontswap+0x0/0x82 @ 1
[    0.349813] initcall init_frontswap+0x0/0x82 returned 0 after 13 usecs
[    0.349816] calling  slab_proc_init+0x0/0xc @ 1
[    0.349820] initcall slab_proc_init+0x0/0xc returned 0 after 1 usecs
[    0.349823] calling  cpucache_init+0x0/0x3f @ 1
[    0.349850] initcall cpucache_init+0x0/0x3f returned 0 after 22 usecs
[    0.349852] calling  init_zbud+0x0/0x20 @ 1
[    0.349854] zbud: loaded
[    0.349918] initcall init_zbud+0x0/0x20 returned 0 after 61 usecs
[    0.349921] calling  fcntl_init+0x0/0x29 @ 1
[    0.349926] initcall fcntl_init+0x0/0x29 returned 0 after 1 usecs
[    0.349929] calling  proc_filesystems_init+0x0/0x1f @ 1
[    0.349935] initcall proc_filesystems_init+0x0/0x1f returned 0 after 2 usecs
[    0.349938] calling  start_dirtytime_writeback+0x0/0x2c @ 1
[    0.349944] initcall start_dirtytime_writeback+0x0/0x2c returned 0 after 2 usecs
[    0.349947] calling  blkdev_init+0x0/0x2b @ 1
[    0.349959] initcall blkdev_init+0x0/0x2b returned 0 after 9 usecs
[    0.349962] calling  dio_init+0x0/0x2c @ 1
[    0.349967] initcall dio_init+0x0/0x2c returned 0 after 1 usecs
[    0.349970] calling  dnotify_init+0x0/0x6f @ 1
[    0.349976] initcall dnotify_init+0x0/0x6f returned 0 after 3 usecs
[    0.349979] calling  fanotify_user_setup+0x0/0x6c @ 1
[    0.349986] initcall fanotify_user_setup+0x0/0x6c returned 0 after 3 usecs
[    0.349989] calling  userfaultfd_init+0x0/0x2c @ 1
[    0.350002] initcall userfaultfd_init+0x0/0x2c returned 0 after 8 usecs
[    0.350004] calling  aio_setup+0x0/0x91 @ 1
[    0.350024] initcall aio_setup+0x0/0x91 returned 0 after 16 usecs
[    0.350027] calling  init_devpts_fs+0x0/0x28 @ 1
[    0.350044] initcall init_devpts_fs+0x0/0x28 returned 0 after 12 usecs
[    0.350047] calling  init_pstore_fs+0x0/0x42 @ 1
[    0.350054] initcall init_pstore_fs+0x0/0x42 returned 0 after 3 usecs
[    0.350057] calling  ipc_init+0x0/0x51 @ 1
[    0.350069] initcall ipc_init+0x0/0x51 returned 0 after 8 usecs
[    0.350072] calling  ipc_sysctl_init+0x0/0x16 @ 1
[    0.350089] initcall ipc_sysctl_init+0x0/0x16 returned 0 after 13 usecs
[    0.350092] calling  init_mqueue_fs+0x0/0xf1 @ 1
[    0.350136] initcall init_mqueue_fs+0x0/0xf1 returned 0 after 38 usecs
[    0.350139] calling  key_proc_init+0x0/0x50 @ 1
[    0.350147] initcall key_proc_init+0x0/0x50 returned 0 after 4 usecs
[    0.350150] calling  selinux_nf_ip_init+0x0/0x3c @ 1
[    0.350155] initcall selinux_nf_ip_init+0x0/0x3c returned 0 after 1 usecs
[    0.350157] calling  init_sel_fs+0x0/0x8b @ 1
[    0.350163] initcall init_sel_fs+0x0/0x8b returned 0 after 1 usecs
[    0.350165] calling  selnl_init+0x0/0x6e @ 1
[    0.350175] initcall selnl_init+0x0/0x6e returned 0 after 6 usecs
[    0.350178] calling  sel_netif_init+0x0/0x36 @ 1
[    0.350183] initcall sel_netif_init+0x0/0x36 returned 0 after 1 usecs
[    0.350185] calling  sel_netnode_init+0x0/0x30 @ 1
[    0.350190] initcall sel_netnode_init+0x0/0x30 returned 0 after 0 usecs
[    0.350193] calling  sel_netport_init+0x0/0x30 @ 1
[    0.350198] initcall sel_netport_init+0x0/0x30 returned 0 after 0 usecs
[    0.350200] calling  aurule_init+0x0/0x2a @ 1
[    0.350205] initcall aurule_init+0x0/0x2a returned 0 after 1 usecs
[    0.350208] calling  crypto_algapi_init+0x0/0x11 @ 1
[    0.350213] initcall crypto_algapi_init+0x0/0x11 returned 0 after 2 usecs
[    0.350217] calling  rsa_init+0x0/0x40 @ 1
[    0.350273] alg: self-tests disabled
[    0.350352] initcall rsa_init+0x0/0x40 returned 0 after 127 usecs
[    0.350356] calling  hmac_module_init+0x0/0x14 @ 1
[    0.350361] initcall hmac_module_init+0x0/0x14 returned 0 after 1 usecs
[    0.350363] calling  crypto_null_mod_init+0x0/0x46 @ 1
[    0.350576] initcall crypto_null_mod_init+0x0/0x46 returned 0 after 202 usecs
[    0.350578] calling  md5_mod_init+0x0/0x14 @ 1
[    0.350632] initcall md5_mod_init+0x0/0x14 returned 0 after 48 usecs
[    0.350635] calling  sha1_generic_mod_init+0x0/0x14 @ 1
[    0.350687] initcall sha1_generic_mod_init+0x0/0x14 returned 0 after 47 usecs
[    0.350689] calling  sha256_generic_mod_init+0x0/0x19 @ 1
[    0.350788] initcall sha256_generic_mod_init+0x0/0x19 returned 0 after 92 usecs
[    0.350790] calling  aes_init+0x0/0x14 @ 1
[    0.350843] initcall aes_init+0x0/0x14 returned 0 after 48 usecs
[    0.350845] calling  crct10dif_mod_init+0x0/0x14 @ 1
[    0.350896] initcall crct10dif_mod_init+0x0/0x14 returned 0 after 45 usecs
[    0.350898] calling  lzo_mod_init+0x0/0x38 @ 1
[    0.350998] initcall lzo_mod_init+0x0/0x38 returned 0 after 94 usecs
[    0.351001] calling  asymmetric_key_init+0x0/0x14 @ 1
[    0.351004] Key type asymmetric registered
[    0.351071] initcall asymmetric_key_init+0x0/0x14 returned 0 after 65 usecs
[    0.351073] calling  x509_key_init+0x0/0x14 @ 1
[    0.351076] Asymmetric key parser 'x509' registered
[    0.351143] initcall x509_key_init+0x0/0x14 returned 0 after 65 usecs
[    0.351146] calling  proc_genhd_init+0x0/0x32 @ 1
[    0.351154] initcall proc_genhd_init+0x0/0x32 returned 0 after 4 usecs
[    0.351156] calling  init_emergency_pool+0x0/0x91 @ 1
[    0.351176] bounce: pool size: 64 pages
[    0.351250] initcall init_emergency_pool+0x0/0x91 returned 0 after 88 usecs
[    0.351253] calling  bsg_init+0x0/0x12f @ 1
[    0.351267] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.351352] initcall bsg_init+0x0/0x12f returned 0 after 92 usecs
[    0.351354] calling  throtl_init+0x0/0x3c @ 1
[    0.351417] initcall throtl_init+0x0/0x3c returned 0 after 57 usecs
[    0.351420] calling  noop_init+0x0/0x14 @ 1
[    0.351423] io scheduler noop registered
[    0.351489] initcall noop_init+0x0/0x14 returned 0 after 64 usecs
[    0.351491] calling  deadline_init+0x0/0x14 @ 1
[    0.351494] io scheduler deadline registered
[    0.351560] initcall deadline_init+0x0/0x14 returned 0 after 63 usecs
[    0.351562] calling  cfq_init+0x0/0x6e @ 1
[    0.351588] io scheduler cfq registered (default)
[    0.351655] initcall cfq_init+0x0/0x6e returned 0 after 87 usecs
[    0.351657] calling  deadline_init+0x0/0x14 @ 1
[    0.351660] io scheduler mq-deadline registered
[    0.351726] initcall deadline_init+0x0/0x14 returned 0 after 63 usecs
[    0.351729] calling  btree_module_init+0x0/0x24 @ 1
[    0.351734] initcall btree_module_init+0x0/0x24 returned 0 after 1 usecs
[    0.351736] calling  crc_t10dif_mod_init+0x0/0x35 @ 1
[    0.351743] initcall crc_t10dif_mod_init+0x0/0x35 returned 0 after 3 usecs
[    0.351745] calling  percpu_counter_startup+0x0/0x50 @ 1
[    0.351771] initcall percpu_counter_startup+0x0/0x50 returned 0 after 21 usecs
[    0.351774] calling  audit_classes_init+0x0/0x4f @ 1
[    0.351781] initcall audit_classes_init+0x0/0x4f returned 0 after 3 usecs
[    0.351783] calling  digsig_init+0x0/0x34 @ 1
[    0.351789] initcall digsig_init+0x0/0x34 returned 0 after 2 usecs
[    0.351791] calling  sg_pool_init+0x0/0xb1 @ 1
[    0.351808] initcall sg_pool_init+0x0/0xb1 returned 0 after 13 usecs
[    0.351811] calling  phy_core_init+0x0/0x44 @ 1
[    0.351821] initcall phy_core_init+0x0/0x44 returned 0 after 6 usecs
[    0.351824] calling  pci_proc_init+0x0/0x5d @ 1
[    0.351884] initcall pci_proc_init+0x0/0x5d returned 0 after 55 usecs
[    0.351886] calling  pcie_portdrv_init+0x0/0x6e @ 1
[    0.353489] initcall pcie_portdrv_init+0x0/0x6e returned 0 after 1559 usecs
[    0.353492] calling  aer_service_init+0x0/0x3c @ 1
[    0.353507] initcall aer_service_init+0x0/0x3c returned 0 after 10 usecs
[    0.353510] calling  pcie_pme_service_init+0x0/0x14 @ 1
[    0.353551] pcieport 0000:00:1c.0: Signaling PME with IRQ 24
[    0.353659] pcieport 0000:00:1c.1: Signaling PME with IRQ 25
[    0.353763] pcieport 0000:00:1c.2: Signaling PME with IRQ 26
[    0.353875] pcieport 0000:00:1c.3: Signaling PME with IRQ 27
[    0.353965] initcall pcie_pme_service_init+0x0/0x14 returned 0 after 440 usecs
[    0.353968] calling  dpc_service_init+0x0/0x14 @ 1
[    0.353982] initcall dpc_service_init+0x0/0x14 returned 0 after 9 usecs
[    0.353984] calling  pci_hotplug_init+0x0/0x35 @ 1
[    0.353989] initcall pci_hotplug_init+0x0/0x35 returned 0 after 1 usecs
[    0.353991] calling  pcied_init+0x0/0x56 @ 1
[    0.354013] pciehp 0000:00:1c.0:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- LLActRep+
[    0.354159] initcall pcied_init+0x0/0x56 returned 0 after 159 usecs
[    0.354162] calling  xenfb_init+0x0/0x49 @ 1
[    0.354166] initcall xenfb_init+0x0/0x49 returned -19 after 0 usecs
[    0.354169] calling  vesafb_driver_init+0x0/0x16 @ 1
[    0.354189] initcall vesafb_driver_init+0x0/0x16 returned 0 after 15 usecs
[    0.354191] calling  efifb_driver_init+0x0/0x16 @ 1
[    0.354206] initcall efifb_driver_init+0x0/0x16 returned 0 after 10 usecs
[    0.354208] calling  intel_idle_init+0x0/0x4f5 @ 1
[    0.354213] intel_idle: does not run on family 6 model 14
[    0.354217] initcall intel_idle_init+0x0/0x4f5 returned -19 after 4 usecs
[    0.354220] calling  acpi_processor_driver_init+0x0/0x8d @ 1
[    0.354767] Monitor-Mwait will be used to enter C-1 state
[    0.354777] Monitor-Mwait will be used to enter C-2 state
[    0.354782] Monitor-Mwait will be used to enter C-3 state
[    0.354787] tsc: Marking TSC unstable due to TSC halts in idle
[    0.355235] initcall acpi_processor_driver_init+0x0/0x8d returned 0 after 983 usecs
[    0.355239] calling  acpi_hed_driver_init+0x0/0x14 @ 1
[    0.355297] initcall acpi_hed_driver_init+0x0/0x14 returned 0 after 52 usecs
[    0.355299] calling  erst_init+0x0/0x2e1 @ 1
[    0.355305] initcall erst_init+0x0/0x2e1 returned 0 after 2 usecs
[    0.355307] calling  ghes_init+0x0/0x18d @ 1
[    0.355312] initcall ghes_init+0x0/0x18d returned -19 after 1 usecs
[    0.355314] calling  extlog_init+0x0/0x359 @ 1
[    0.355319] initcall extlog_init+0x0/0x359 returned -19 after 1 usecs
[    0.355321] calling  pnpbios_thread_init+0x0/0x62 @ 1
[    0.355325] initcall pnpbios_thread_init+0x0/0x62 returned 0 after 1 usecs
[    0.355328] calling  isapnp_init+0x0/0xb2f @ 1
[    0.355330] isapnp: ISA Plug & Play support disabled
[    0.355398] initcall isapnp_init+0x0/0xb2f returned 0 after 65 usecs
[    0.355400] calling  gpio_clk_driver_init+0x0/0x16 @ 1
[    0.355422] initcall gpio_clk_driver_init+0x0/0x16 returned 0 after 18 usecs
[    0.355425] calling  plt_clk_driver_init+0x0/0x16 @ 1
[    0.355441] initcall plt_clk_driver_init+0x0/0x16 returned 0 after 12 usecs
[    0.355444] calling  xenbus_probe_initcall+0x0/0x4d @ 1
[    0.355448] initcall xenbus_probe_initcall+0x0/0x4d returned -19 after 1 usecs
[    0.355450] calling  xenbus_init+0x0/0x39 @ 1
[    0.355455] initcall xenbus_init+0x0/0x39 returned -19 after 1 usecs
[    0.355457] calling  xenbus_backend_init+0x0/0x48 @ 1
[    0.355461] initcall xenbus_backend_init+0x0/0x48 returned -19 after 0 usecs
[    0.355464] calling  hypervisor_subsys_init+0x0/0x26 @ 1
[    0.355468] initcall hypervisor_subsys_init+0x0/0x26 returned -19 after 1 usecs
[    0.355471] calling  hyper_sysfs_init+0x0/0x149 @ 1
[    0.355475] initcall hyper_sysfs_init+0x0/0x149 returned -19 after 1 usecs
[    0.355477] calling  platform_driver_init+0x0/0x1b @ 1
[    0.355511] initcall platform_driver_init+0x0/0x1b returned 0 after 28 usecs
[    0.355513] calling  n_null_init+0x0/0x21 @ 1
[    0.355518] initcall n_null_init+0x0/0x21 returned 0 after 1 usecs
[    0.355520] calling  pty_init+0x0/0x1e0 @ 1
[    0.355610] initcall pty_init+0x0/0x1e0 returned 0 after 84 usecs
[    0.355613] calling  sysrq_init+0x0/0x68 @ 1
[    0.355621] initcall sysrq_init+0x0/0x68 returned 0 after 5 usecs
[    0.355624] calling  xen_hvc_init+0x0/0x215 @ 1
[    0.355628] initcall xen_hvc_init+0x0/0x215 returned -19 after 1 usecs
[    0.355630] calling  serial8250_init+0x0/0x131 @ 1
[    0.355634] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.355928] 00:06: ttyS0 at I/O 0x200 (irq = 5, base_baud = 921600) is a NS16550A
[    0.356549] initcall serial8250_init+0x0/0x131 returned 0 after 892 usecs
[    0.356553] calling  serial_pci_driver_init+0x0/0x1b @ 1
[    0.356603] initcall serial_pci_driver_init+0x0/0x1b returned 0 after 45 usecs
[    0.356606] calling  exar_pci_driver_init+0x0/0x1b @ 1
[    0.356628] initcall exar_pci_driver_init+0x0/0x1b returned 0 after 17 usecs
[    0.356630] calling  dw8250_platform_driver_init+0x0/0x16 @ 1
[    0.356651] initcall dw8250_platform_driver_init+0x0/0x16 returned 0 after 16 usecs
[    0.356654] calling  mid8250_pci_driver_init+0x0/0x1b @ 1
[    0.356674] initcall mid8250_pci_driver_init+0x0/0x1b returned 0 after 16 usecs
[    0.356676] calling  hpet_init+0x0/0x5c @ 1
[    0.356915] initcall hpet_init+0x0/0x5c returned 0 after 228 usecs
[    0.356918] calling  agp_init+0x0/0x29 @ 1
[    0.356920] Linux agpgart interface v0.103
[    0.356987] initcall agp_init+0x0/0x29 returned 0 after 63 usecs
[    0.356989] calling  agp_ali_init+0x0/0x2a @ 1
[    0.357011] initcall agp_ali_init+0x0/0x2a returned 0 after 17 usecs
[    0.357013] calling  agp_ati_init+0x0/0x2a @ 1
[    0.357033] initcall agp_ati_init+0x0/0x2a returned 0 after 15 usecs
[    0.357035] calling  agp_amdk7_init+0x0/0x2a @ 1
[    0.357055] initcall agp_amdk7_init+0x0/0x2a returned 0 after 15 usecs
[    0.357057] calling  agp_amd64_mod_init+0x0/0xf @ 1
[    0.357120] initcall agp_amd64_mod_init+0x0/0xf returned -19 after 57 usecs
[    0.357123] calling  agp_efficeon_init+0x0/0x3f @ 1
[    0.357143] initcall agp_efficeon_init+0x0/0x3f returned 0 after 16 usecs
[    0.357146] calling  agp_intel_init+0x0/0x2a @ 1
[    0.357227] initcall agp_intel_init+0x0/0x2a returned 0 after 75 usecs
[    0.357230] calling  agp_nvidia_init+0x0/0x2a @ 1
[    0.357250] initcall agp_nvidia_init+0x0/0x2a returned 0 after 16 usecs
[    0.357252] calling  agp_sis_init+0x0/0x2a @ 1
[    0.357273] initcall agp_sis_init+0x0/0x2a returned 0 after 17 usecs
[    0.357276] calling  agp_serverworks_init+0x0/0x2a @ 1
[    0.357299] initcall agp_serverworks_init+0x0/0x2a returned 0 after 18 usecs
[    0.357301] calling  agp_via_init+0x0/0x2a @ 1
[    0.357323] initcall agp_via_init+0x0/0x2a returned 0 after 18 usecs
[    0.357326] calling  init_tis+0x0/0xe9 @ 1
[    0.357357] initcall init_tis+0x0/0xe9 returned 0 after 27 usecs
[    0.357360] calling  cn_proc_init+0x0/0x35 @ 1
[    0.357366] initcall cn_proc_init+0x0/0x35 returned 0 after 2 usecs
[    0.357369] calling  topology_sysfs_init+0x0/0x30 @ 1
[    0.357391] initcall topology_sysfs_init+0x0/0x30 returned 0 after 17 usecs
[    0.357394] calling  cacheinfo_sysfs_init+0x0/0x2a @ 1
[    0.357646] initcall cacheinfo_sysfs_init+0x0/0x2a returned 165 after 241 usecs
[    0.357649] calling  devcoredump_init+0x0/0x19 @ 1
[    0.357661] initcall devcoredump_init+0x0/0x19 returned 0 after 8 usecs
[    0.357665] calling  net_olddevs_init+0x0/0x53 @ 1
[    0.357674] initcall net_olddevs_init+0x0/0x53 returned 0 after 5 usecs
[    0.357677] calling  i8042_init+0x0/0x404 @ 1
[    0.357742] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.367928] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.368001] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.368212] initcall i8042_init+0x0/0x404 returned 0 after 10283 usecs
[    0.368215] calling  input_leds_init+0x0/0x14 @ 1
[    0.368221] initcall input_leds_init+0x0/0x14 returned 0 after 1 usecs
[    0.368223] calling  mousedev_init+0x0/0x7a @ 1
[    0.368363] mousedev: PS/2 mouse device common for all mice
[    0.368433] initcall mousedev_init+0x0/0x7a returned 0 after 200 usecs
[    0.368435] calling  atkbd_init+0x0/0x25 @ 1
[    0.368461] initcall atkbd_init+0x0/0x25 returned 0 after 21 usecs
[    0.368464] calling  xenkbd_init+0x0/0x49 @ 1
[    0.368469] initcall xenkbd_init+0x0/0x49 returned -19 after 1 usecs
[    0.368471] calling  cmos_init+0x0/0x65 @ 1
[    0.368528] rtc_cmos 00:03: RTC can wake from S4
[    0.368795] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    0.368894] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.368992] initcall cmos_init+0x0/0x65 returned 0 after 504 usecs
[    0.368995] calling  intel_pstate_init+0x0/0x2a2 @ 1
[    0.369001] initcall intel_pstate_init+0x0/0x2a2 returned -19 after 1 usecs
[    0.369004] calling  ledtrig_disk_init+0x0/0x2a @ 1
[    0.369011] initcall ledtrig_disk_init+0x0/0x2a returned 0 after 3 usecs
[    0.369014] calling  ledtrig_mtd_init+0x0/0x2a @ 1
[    0.369020] initcall ledtrig_mtd_init+0x0/0x2a returned 0 after 2 usecs
[    0.369023] calling  ledtrig_cpu_init+0x0/0xba @ 1
[    0.369064] ledtrig-cpu: registered to indicate activity on CPUs
[    0.369134] initcall ledtrig_cpu_init+0x0/0xba returned 0 after 104 usecs
[    0.369137] calling  ledtrig_panic_init+0x0/0x34 @ 1
[    0.369146] initcall ledtrig_panic_init+0x0/0x34 returned 0 after 4 usecs
[    0.369148] calling  dmi_sysfs_init+0x0/0xaf @ 1
[    0.369229] initcall dmi_sysfs_init+0x0/0xaf returned 0 after 75 usecs
[    0.369232] calling  efi_load_efivars+0x0/0x5d @ 1
[    0.369236] initcall efi_load_efivars+0x0/0x5d returned 0 after 1 usecs
[    0.369238] calling  esrt_sysfs_init+0x0/0x2ac @ 1
[    0.369243] initcall esrt_sysfs_init+0x0/0x2ac returned -38 after 1 usecs
[    0.369246] calling  efi_capsule_loader_init+0x0/0x39 @ 1
[    0.369250] initcall efi_capsule_loader_init+0x0/0x39 returned -19 after 1 usecs
[    0.369252] calling  pmc_atom_init+0x0/0x234 @ 1
[    0.369268] initcall pmc_atom_init+0x0/0x234 returned -19 after 12 usecs
[    0.369270] calling  powercap_init+0x0/0x20d @ 1
[    0.369337] initcall powercap_init+0x0/0x20d returned 0 after 61 usecs
[    0.369341] calling  pm_check_save_msr+0x0/0x20 @ 1
[    0.369347] initcall pm_check_save_msr+0x0/0x20 returned 0 after 1 usecs
[    0.369349] calling  sock_diag_init+0x0/0x34 @ 1
[    0.369383] initcall sock_diag_init+0x0/0x34 returned 0 after 28 usecs
[    0.369386] calling  blackhole_init+0x0/0x14 @ 1
[    0.369392] initcall blackhole_init+0x0/0x14 returned 0 after 2 usecs
[    0.369395] calling  gre_offload_init+0x0/0x47 @ 1
[    0.369401] initcall gre_offload_init+0x0/0x47 returned 0 after 1 usecs
[    0.369403] calling  sysctl_ipv4_init+0x0/0x45 @ 1
[    0.369499] initcall sysctl_ipv4_init+0x0/0x45 returned 0 after 89 usecs
[    0.369502] calling  cubictcp_register+0x0/0x79 @ 1
[    0.369508] initcall cubictcp_register+0x0/0x79 returned 0 after 1 usecs
[    0.369510] calling  inet6_init+0x0/0x333 @ 1
[    0.369559] NET: Registered protocol family 10
[    0.370035] Segment Routing with IPv6
[    0.370131] initcall inet6_init+0x0/0x333 returned 0 after 601 usecs
[    0.370134] calling  mip6_init+0x0/0xac @ 1
[    0.370136] mip6: Mobile IPv6
[    0.370209] initcall mip6_init+0x0/0xac returned 0 after 69 usecs
[    0.370212] calling  packet_init+0x0/0x3e @ 1
[    0.370221] NET: Registered protocol family 17
[    0.371088] initcall packet_init+0x0/0x3e returned 0 after 852 usecs
[    0.371090] calling  dcbnl_init+0x0/0x4a @ 1
[    0.371095] initcall dcbnl_init+0x0/0x4a returned 0 after 1 usecs
[    0.371097] calling  mpls_gso_init+0x0/0x2a @ 1
[    0.371099] mpls_gso: MPLS GSO support
[    0.371165] initcall mpls_gso_init+0x0/0x2a returned 0 after 63 usecs
[    0.371168] calling  mcheck_init_device+0x0/0x105 @ 1
[    0.371329] initcall mcheck_init_device+0x0/0x105 returned 0 after 153 usecs
[    0.371533] calling  mcheck_late_init+0x0/0x69 @ 1
[    0.371546] initcall mcheck_late_init+0x0/0x69 returned 0 after 8 usecs
[    0.371548] calling  severities_debugfs_init+0x0/0x3a @ 1
[    0.371555] initcall severities_debugfs_init+0x0/0x3a returned 0 after 2 usecs
[    0.371557] calling  threshold_init_device+0x0/0x47 @ 1
[    0.371562] initcall threshold_init_device+0x0/0x47 returned 0 after 1 usecs
[    0.371564] calling  microcode_init+0x0/0x1ba @ 1
[    0.371607] microcode: sig=0x6ec, pf=0x20, revision=0x54
[    0.371791] microcode: Microcode Update Driver: v2.2.
[    0.371796] initcall microcode_init+0x0/0x1ba returned 0 after 222 usecs
[    0.371863] calling  hpet_insert_resource+0x0/0x24 @ 1
[    0.371869] initcall hpet_insert_resource+0x0/0x24 returned 0 after 1 usecs
[    0.371871] calling  update_mp_table+0x0/0x4c2 @ 1
[    0.371877] initcall update_mp_table+0x0/0x4c2 returned 0 after 1 usecs
[    0.371879] calling  lapic_insert_resource+0x0/0x4c @ 1
[    0.371885] initcall lapic_insert_resource+0x0/0x4c returned 0 after 1 usecs
[    0.371887] calling  print_ICs+0x0/0x193 @ 1
[    0.371892] initcall print_ICs+0x0/0x193 returned 0 after 1 usecs
[    0.371895] calling  print_ipi_mode+0x0/0x2b @ 1
[    0.371897] Using IPI No-Shortcut mode
[    0.371962] initcall print_ipi_mode+0x0/0x2b returned 0 after 62 usecs
[    0.371965] calling  pat_memtype_list_init+0x0/0x36 @ 1
[    0.371970] initcall pat_memtype_list_init+0x0/0x36 returned 0 after 1 usecs
[    0.371972] calling  create_tlb_single_page_flush_ceiling+0x0/0x28 @ 1
[    0.371985] initcall create_tlb_single_page_flush_ceiling+0x0/0x28 returned 0 after 8 usecs
[    0.371989] calling  init_oops_id+0x0/0x50 @ 1
[    0.371995] initcall init_oops_id+0x0/0x50 returned 0 after 2 usecs
[    0.371998] calling  sched_clock_init_late+0x0/0x95 @ 1
[    0.372027] initcall sched_clock_init_late+0x0/0x95 returned 0 after 2 usecs
[    0.372030] calling  sched_init_debug+0x0/0x3a @ 1
[    0.372039] initcall sched_init_debug+0x0/0x3a returned 0 after 5 usecs
[    0.372042] calling  pm_qos_power_init+0x0/0x98 @ 1
[    0.372299] initcall pm_qos_power_init+0x0/0x98 returned 0 after 246 usecs
[    0.372302] calling  pm_debugfs_init+0x0/0x24 @ 1
[    0.372308] initcall pm_debugfs_init+0x0/0x24 returned 0 after 3 usecs
[    0.372311] calling  printk_late_init+0x0/0x106 @ 1
[    0.372317] initcall printk_late_init+0x0/0x106 returned 0 after 1 usecs
[    0.372320] calling  tk_debug_sleep_time_init+0x0/0x3c @ 1
[    0.372326] initcall tk_debug_sleep_time_init+0x0/0x3c returned 0 after 2 usecs
[    0.372329] calling  debugfs_kprobe_init+0x0/0xb7 @ 1
[    0.372360] initcall debugfs_kprobe_init+0x0/0xb7 returned 0 after 26 usecs
[    0.372363] calling  taskstats_init+0x0/0x38 @ 1
[    0.372370] registered taskstats version 1
[    0.372437] initcall taskstats_init+0x0/0x38 returned 0 after 69 usecs
[    0.372440] calling  fault_around_debugfs+0x0/0x35 @ 1
[    0.372447] initcall fault_around_debugfs+0x0/0x35 returned 0 after 3 usecs
[    0.372449] calling  max_swapfiles_check+0x0/0xc @ 1
[    0.372454] initcall max_swapfiles_check+0x0/0xc returned 0 after 1 usecs
[    0.372456] calling  init_zswap+0x0/0x3b3 @ 1
[    0.372477] zswap: loaded using pool lzo/zbud
[    0.372709] initcall init_zswap+0x0/0x3b3 returned 0 after 243 usecs
[    0.372712] calling  split_huge_pages_debugfs+0x0/0x35 @ 1
[    0.372718] initcall split_huge_pages_debugfs+0x0/0x35 returned 0 after 2 usecs
[    0.372721] calling  check_early_ioremap_leak+0x0/0x38 @ 1
[    0.372726] initcall check_early_ioremap_leak+0x0/0x38 returned 0 after 1 usecs
[    0.372729] calling  init_root_keyring+0x0/0xf @ 1
[    0.372749] initcall init_root_keyring+0x0/0xf returned 0 after 15 usecs
[    0.372751] calling  init_profile_hash+0x0/0x72 @ 1
[    0.372756] initcall init_profile_hash+0x0/0x72 returned 0 after 1 usecs
[    0.372758] calling  init_ima+0x0/0x37 @ 1
[    0.372763] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    0.372860] initcall init_ima+0x0/0x37 returned 0 after 95 usecs
[    0.372862] calling  prandom_reseed+0x0/0x27 @ 1
[    0.372871] initcall prandom_reseed+0x0/0x27 returned 0 after 4 usecs
[    0.372874] calling  pci_resource_alignment_sysfs_init+0x0/0x19 @ 1
[    0.372881] initcall pci_resource_alignment_sysfs_init+0x0/0x19 returned 0 after 3 usecs
[    0.372883] calling  pci_sysfs_init+0x0/0x47 @ 1
[    0.373296] initcall pci_sysfs_init+0x0/0x47 returned 0 after 398 usecs
[    0.373299] calling  bert_init+0x0/0x1cc @ 1
[    0.373304] initcall bert_init+0x0/0x1cc returned 0 after 1 usecs
[    0.373306] calling  clk_debug_init+0x0/0x110 @ 1
[    0.373323] initcall clk_debug_init+0x0/0x110 returned 0 after 12 usecs
[    0.373325] calling  boot_wait_for_devices+0x0/0x2d @ 1
[    0.373330] initcall boot_wait_for_devices+0x0/0x2d returned -19 after 1 usecs
[    0.373334] calling  deferred_probe_initcall+0x0/0x30 @ 1
[    0.373346] initcall deferred_probe_initcall+0x0/0x30 returned 0 after 7 usecs
[    0.373349] calling  pm_genpd_debug_init+0x0/0x116 @ 1
[    0.373357] initcall pm_genpd_debug_init+0x0/0x116 returned 0 after 4 usecs
[    0.373360] calling  genpd_power_off_unused+0x0/0x68 @ 1
[    0.373365] initcall genpd_power_off_unused+0x0/0x68 returned 0 after 1 usecs
[    0.373367] calling  rtc_hctosys+0x0/0xdf @ 1
[    0.373421] rtc_cmos 00:03: setting system clock to 2018-04-04 07:31:06 UTC (1522827066)
[    0.373508] initcall rtc_hctosys+0x0/0xdf returned 0 after 133 usecs
[    0.373510] calling  firmware_memmap_init+0x0/0x2d @ 1
[    0.373550] initcall firmware_memmap_init+0x0/0x2d returned 0 after 35 usecs
[    0.373554] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    0.373559] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 1 usecs
[    0.373561] calling  efi_shutdown_init+0x0/0x3c @ 1
[    0.373566] initcall efi_shutdown_init+0x0/0x3c returned -19 after 1 usecs
[    0.373569] calling  pci_mmcfg_late_insert_resources+0x0/0x49 @ 1
[    0.373574] initcall pci_mmcfg_late_insert_resources+0x0/0x49 returned 0 after 2 usecs
[    0.373577] calling  tcp_congestion_default+0x0/0x14 @ 1
[    0.373583] initcall tcp_congestion_default+0x0/0x14 returned 0 after 1 usecs
[    0.373586] calling  software_resume+0x0/0x2a0 @ 1
[    0.373592] initcall software_resume+0x0/0x2a0 returned -2 after 1 usecs
[    0.373594] calling  clear_boot_tracer+0x0/0x2a @ 1
[    0.373599] initcall clear_boot_tracer+0x0/0x2a returned 0 after 1 usecs
[    0.373603] calling  clk_disable_unused+0x0/0x100 @ 1
[    0.373609] initcall clk_disable_unused+0x0/0x100 returned 0 after 2 usecs
[    0.374829] Freeing unused kernel memory: 840K
[    0.374966] Write protecting the kernel text: 6164k
[    0.375162] Write protecting the kernel read-only data: 1936k
[    0.375228] NX-protecting the kernel data: 4076k
[    0.375698] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.376107] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.578600] calling  acpi_button_driver_init+0x0/0x1000 [button] @ 84
[    0.578737] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:22/PNP0C09:00/PNP0C0E:00/input/input2
[    0.579210] ACPI: Sleep Button [SLPB]
[    0.580208] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:22/PNP0C09:00/PNP0C0D:00/input/input3
[    0.583824] ACPI: Lid Switch [LID]
[    0.584122] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[    0.584198] calling  acpi_thermal_init+0x0/0x1000 [thermal] @ 81
[    0.584274] ACPI: Power Button [PWRF]
[    0.584384] initcall acpi_button_driver_init+0x0/0x1000 [button] returned 0 after 5639 usecs
[    0.586133] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    0.586880] thermal LNXTHERM:00: registered as thermal_zone0
[    0.586949] ACPI: Thermal Zone [THM0] (47 C)
[    0.587455] calling  acpi_video_init+0x0/0x1000 [video] @ 85
[    0.587481] initcall acpi_video_init+0x0/0x1000 [video] returned 0 after 18 usecs
[    0.588939] thermal LNXTHERM:01: registered as thermal_zone1
[    0.589010] ACPI: Thermal Zone [THM1] (43 C)
[    0.589119] initcall acpi_thermal_init+0x0/0x1000 [thermal] returned 0 after 4795 usecs
[    0.592573] calling  acpi_fan_driver_init+0x0/0x1000 [fan] @ 80
[    0.594773] initcall acpi_fan_driver_init+0x0/0x1000 [fan] returned 0 after 2141 usecs
[    0.607161] calling  init_scsi+0x0/0x79 [scsi_mod] @ 88
[    0.607287] SCSI subsystem initialized
[    0.607375] initcall init_scsi+0x0/0x79 [scsi_mod] returned 0 after 188 usecs
[    0.610437] calling  ata_init+0x0/0x2be [libata] @ 88
[    0.610548] libata version 3.00 loaded.
[    0.610570] initcall ata_init+0x0/0x2be [libata] returned 0 after 107 usecs
[    0.612100] calling  serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 89
[    0.612132] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] returned 0 after 25 usecs
[    0.612659] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 88
[    0.612715] ahci 0000:00:1f.2: version 3.0
[    0.613050] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    0.613153] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 1.5 Gbps 0x1 impl SATA mode
[    0.613239] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part 
[    0.613915] calling  evdev_init+0x0/0x1000 [evdev] @ 85
[    0.614178] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 250 usecs
[    0.624366] scsi host0: ahci
[    0.630638] scsi host1: ahci
[    0.640413] scsi host2: ahci
[    0.646559] scsi host3: ahci
[    0.646752] ata1: SATA max UDMA/133 abar m1024@0xe4445000 port 0xe4445100 irq 28
[    0.646836] ata2: DUMMY
[    0.646902] ata3: DUMMY
[    0.646964] ata4: DUMMY
[    0.647098] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 33619 usecs
[    1.124129] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.124605] ata1.00: ATA-9: M4-CT256M4SSD2, 070H, max UDMA/100
[    1.124674] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.125179] ata1.00: configured for UDMA/100
[    1.125522] scsi 0:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   070H PQ: 0 ANSI: 5
[    1.129127] calling  init_sd+0x0/0x1000 [sd_mod] @ 84
[    1.129268] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 129 usecs
[    1.129444] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    1.129550] sd 0:0:0:0: [sda] Write Protect is off
[    1.129619] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.129647] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.130384]  sda: sda1 sda2
[    1.131009] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.213492] calling  dm_init+0x0/0x31 [dm_mod] @ 110
[    1.213535] device-mapper: uevent: version 1.0.3
[    1.213727] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.213829] initcall dm_init+0x0/0x31 [dm_mod] returned 0 after 312 usecs
[    1.214434] calling  dm_crypt_init+0x0/0x1000 [dm_crypt] @ 110
[    1.214442] initcall dm_crypt_init+0x0/0x1000 [dm_crypt] returned 0 after 2 usecs
[    1.376157] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x17f648b8858, max_idle_ns: 440795225116 ns
[    7.339202] calling  crypto_cbc_module_init+0x0/0x1000 [cbc] @ 140
[    7.339210] initcall crypto_cbc_module_init+0x0/0x1000 [cbc] returned 0 after 2 usecs
[    7.563972] calling  aes_init+0x0/0x1000 [aes_i586] @ 186
[    7.564489] initcall aes_init+0x0/0x1000 [aes_i586] returned 0 after 497 usecs
[    7.565069] calling  cryptd_init+0x0/0x1000 [cryptd] @ 186
[    7.565085] initcall cryptd_init+0x0/0x1000 [cryptd] returned 0 after 8 usecs
[    7.565683] calling  aesni_init+0x0/0x113 [aesni_intel] @ 186
[    7.565691] initcall aesni_init+0x0/0x113 [aesni_intel] returned -19 after 1 usecs
[    7.596617] calling  padlock_init+0x0/0x1000 [padlock_aes] @ 186
[    7.596625] initcall padlock_init+0x0/0x1000 [padlock_aes] returned -19 after 2 usecs
[    7.636599] calling  crypto_ecb_module_init+0x0/0x1000 [ecb] @ 186
[    7.636606] initcall crypto_ecb_module_init+0x0/0x1000 [ecb] returned 0 after 2 usecs
[    7.637217] calling  fscrypt_init+0x0/0x1000 [fscrypto] @ 186
[    7.637287] initcall fscrypt_init+0x0/0x1000 [fscrypto] returned 0 after 60 usecs
[    7.637513] calling  crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] @ 186
[    7.637519] initcall crc32c_intel_mod_init+0x0/0x1000 [crc32c_intel] returned -19 after 1 usecs
[    7.676565] calling  crc32c_mod_init+0x0/0x1000 [crc32c_generic] @ 186
[    7.676629] initcall crc32c_mod_init+0x0/0x1000 [crc32c_generic] returned 0 after 56 usecs
[    7.678090] calling  journal_init+0x0/0x7e7 [jbd2] @ 186
[    7.678177] initcall journal_init+0x0/0x7e7 [jbd2] returned 0 after 71 usecs
[    7.678538] calling  mbcache_init+0x0/0x1000 [mbcache] @ 186
[    7.678548] initcall mbcache_init+0x0/0x1000 [mbcache] returned 0 after 4 usecs
[    7.685615] calling  ext4_init_fs+0x0/0x160 [ext4] @ 186
[    7.685727] initcall ext4_init_fs+0x0/0x160 [ext4] returned 0 after 74 usecs
[    7.758752] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[    7.963382] random: crng init done
[    8.132428] calling  init_autofs4_fs+0x0/0x23 [autofs4] @ 1
[    8.132544] initcall init_autofs4_fs+0x0/0x23 [autofs4] returned 0 after 104 usecs
[    8.141855] calling  xt_init+0x0/0x1000 [x_tables] @ 1
[    8.141865] initcall xt_init+0x0/0x1000 [x_tables] returned 0 after 2 usecs
[    8.144129] calling  ip_tables_init+0x0/0x1000 [ip_tables] @ 1
[    8.144140] ip_tables: (C) 2000-2006 Netfilter Core Team
[    8.144215] initcall ip_tables_init+0x0/0x1000 [ip_tables] returned 0 after 78 usecs
[    8.154861] systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    8.172258] systemd[1]: Detected architecture x86.
[    8.178904] systemd[1]: Set hostname to <gm-debian>.
[    8.460384] systemd[1]: Listening on Journal Socket.
[    8.460887] systemd[1]: Created slice User and Session Slice.
[    8.461061] systemd[1]: Listening on Journal Socket (/dev/log).
[    8.461261] systemd[1]: Listening on Syslog Socket.
[    8.461647] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    8.461824] systemd[1]: Reached target Remote File Systems.
[    8.462026] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    8.534859] calling  parport_default_proc_register+0x0/0x1000 [parport] @ 252
[    8.534894] initcall parport_default_proc_register+0x0/0x1000 [parport] returned 0 after 26 usecs
[    8.539973] calling  ppdev_init+0x0/0x1000 [ppdev] @ 252
[    8.554741] ppdev: user-space parallel port driver
[    8.554821] initcall ppdev_init+0x0/0x1000 [ppdev] returned 0 after 14489 usecs
[    9.239880] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro,discard
[    9.299902] systemd-journald[250]: Received request to flush runtime journal from PID 1
[    9.668007] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 295
[    9.668674] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned 0 after 618 usecs
[    9.672829] calling  pcc_cpufreq_init+0x0/0xec1 [pcc_cpufreq] @ 295
[    9.672845] initcall pcc_cpufreq_init+0x0/0xec1 [pcc_cpufreq] returned -19 after 7 usecs
[    9.712643] calling  pcc_cpufreq_init+0x0/0xec1 [pcc_cpufreq] @ 293
[    9.712657] initcall pcc_cpufreq_init+0x0/0xec1 [pcc_cpufreq] returned -19 after 7 usecs
[    9.712864] calling  ledtrig_usb_init+0x0/0x1000 [usb_common] @ 299
[    9.712874] initcall ledtrig_usb_init+0x0/0x1000 [usb_common] returned 0 after 5 usecs
[    9.722295] calling  acpi_ac_init+0x0/0x1000 [ac] @ 290
[    9.722876] calling  shpcd_init+0x0/0x1000 [shpchp] @ 298
[    9.722920] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    9.723000] initcall shpcd_init+0x0/0x1000 [shpchp] returned 0 after 113 usecs
[    9.725306] calling  init_soundcore+0x0/0x1000 [soundcore] @ 292
[    9.725325] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 11 usecs
[    9.726822] calling  usb_init+0x0/0x146 [usbcore] @ 299
[    9.726840] ACPI: bus type USB registered
[    9.726951] usbcore: registered new interface driver usbfs
[    9.727034] usbcore: registered new interface driver hub
[    9.727133] usbcore: registered new device driver usb
[    9.727222] initcall usb_init+0x0/0x146 [usbcore] returned 0 after 367 usecs
[    9.735503] calling  alsa_sound_init+0x0/0x7d [snd] @ 292
[    9.735538] initcall alsa_sound_init+0x0/0x7d [snd] returned 0 after 21 usecs
[    9.736116] calling  ehci_hcd_init+0x0/0x1000 [ehci_hcd] @ 297
[    9.736120] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    9.736209] initcall ehci_hcd_init+0x0/0x1000 [ehci_hcd] returned 0 after 82 usecs
[    9.748919] calling  uhci_hcd_init+0x0/0x1000 [uhci_hcd] @ 297
[    9.748923] uhci_hcd: USB Universal Host Controller Interface driver
[    9.749260] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    9.749339] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    9.749434] uhci_hcd 0000:00:1d.0: detected 2 ports
[    9.749540] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00005000
[    9.752574] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
[    9.752648] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.752733] usb usb1: Product: UHCI Host Controller
[    9.752799] usb usb1: Manufacturer: Linux 4.14.0-0.bpo.3-686-pae uhci_hcd
[    9.752869] usb usb1: SerialNumber: 0000:00:1d.0
[    9.753181] hub 1-0:1.0: USB hub found
[    9.753261] hub 1-0:1.0: 2 ports detected
[    9.754851] calling  alsa_timer_init+0x0/0x1000 [snd_timer] @ 292
[    9.755355] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    9.758473] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 3525 usecs
[    9.758670] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
[    9.758767] uhci_hcd 0000:00:1d.1: detected 2 ports
[    9.758875] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00005020
[    9.759035] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    9.759106] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.759189] usb usb2: Product: UHCI Host Controller
[    9.759256] usb usb2: Manufacturer: Linux 4.14.0-0.bpo.3-686-pae uhci_hcd
[    9.759327] usb usb2: SerialNumber: 0000:00:1d.1
[    9.777188] hub 2-0:1.0: USB hub found
[    9.777277] hub 2-0:1.0: 2 ports detected
[    9.777603] calling  alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 292
[    9.777622] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 6 usecs
[    9.778083] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    9.782686] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3
[    9.788889] uhci_hcd 0000:00:1d.2: detected 2 ports
[    9.792537] calling  alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 292
[    9.792550] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 7 usecs
[    9.792620] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00005040
[    9.792915] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    9.792988] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.793074] usb usb3: Product: UHCI Host Controller
[    9.793143] usb usb3: Manufacturer: Linux 4.14.0-0.bpo.3-686-pae uhci_hcd
[    9.793215] usb usb3: SerialNumber: 0000:00:1d.2
[    9.793402] calling  acpi_battery_init+0x0/0xf90 [battery] @ 298
[    9.793417] initcall acpi_battery_init+0x0/0xf90 [battery] returned 0 after 8 usecs
[    9.793926] calling  rfkill_init+0x0/0xcb [rfkill] @ 291
[    9.794485] initcall rfkill_init+0x0/0xcb [rfkill] returned 0 after 537 usecs
[    9.797745] calling  nvram_init+0x0/0x1000 [nvram] @ 291
[    9.799515] Non-volatile memory driver v1.3
[    9.799593] initcall nvram_init+0x0/0x1000 [nvram] returned 0 after 1794 usecs
[    9.803502] hub 3-0:1.0: USB hub found
[    9.803585] hub 3-0:1.0: 2 ports detected
[    9.810524] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    9.810609] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 4
[    9.810702] uhci_hcd 0000:00:1d.3: detected 2 ports
[    9.810807] uhci_hcd 0000:00:1d.3: irq 19, io base 0x00005060
[    9.813331] calling  hda_bus_init+0x0/0xf [snd_hda_core] @ 292
[    9.813361] initcall hda_bus_init+0x0/0xf [snd_hda_core] returned 0 after 16 usecs
[    9.813784] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    9.813862] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    9.813947] usb usb4: Product: UHCI Host Controller
[    9.814015] usb usb4: Manufacturer: Linux 4.14.0-0.bpo.3-686-pae uhci_hcd
[    9.814085] usb usb4: SerialNumber: 0000:00:1d.3
[    9.818833] hub 4-0:1.0: USB hub found
[    9.818926] hub 4-0:1.0: 2 ports detected
[    9.819240] initcall uhci_hcd_init+0x0/0x1000 [uhci_hcd] returned 0 after 68660 usecs
[    9.825921] calling  thinkpad_acpi_module_init+0x0/0xa5c [thinkpad_acpi] @ 291
[    9.826063] thinkpad_acpi: ThinkPad ACPI Extras v0.25
[    9.826133] thinkpad_acpi: http://ibm-acpi.sf.net/
[    9.826198] thinkpad_acpi: ThinkPad BIOS CBET4000 4.7-625-g0b861daecc, EC 7JHT12WW-3.4
[    9.826281] thinkpad_acpi: Lenovo ThinkPad X60 Tablet, model 636338U
[    9.832346] ACPI: AC Adapter [AC] (on-line)
[    9.832479] initcall acpi_ac_init+0x0/0x1000 [ac] returned 0 after 107591 usecs
[    9.835166] thinkpad_acpi: radio switch found; radios are disabled
[    9.835462] ACPI: Battery Slot [BAT0] (battery absent)
[    9.836231] ACPI: Battery Slot [BAT1] (battery absent)
[    9.839118] thinkpad_acpi: Tablet mode switch found (type: MHKG), currently in laptop mode
[    9.839355] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[    9.839445] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[    9.846412] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
[    9.849158] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[    9.857082] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
[    9.857272] initcall thinkpad_acpi_module_init+0x0/0xa5c [thinkpad_acpi] returned 0 after 30594 usecs
[    9.871332] calling  azx_driver_init+0x0/0xfe4 [snd_hda_intel] @ 292
[    9.877470] calling  ehci_pci_init+0x0/0x1000 [ehci_pci] @ 300
[    9.877474] ehci-pci: EHCI PCI platform driver
[    9.882684] calling  pps_init+0x0/0x1000 [pps_core] @ 299
[    9.882702] pps_core: LinuxPPS API ver. 1 registered
[    9.882773] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    9.882864] initcall pps_init+0x0/0x1000 [pps_core] returned 0 after 168 usecs
[    9.883935] calling  hwrng_modinit+0x0/0x1000 [rng_core] @ 297
[    9.884656] calling  ptp_init+0x0/0x1000 [ptp] @ 299
[    9.884669] PTP clock support registered
[    9.884748] initcall ptp_init+0x0/0x1000 [ptp] returned 0 after 83 usecs
[    9.886166] calling  piix_init+0x0/0x1000 [ata_piix] @ 293
[    9.892029] calling  i2c_i801_init+0x0/0x1000 [i2c_i801] @ 298
[    9.892475] initcall hwrng_modinit+0x0/0x1000 [rng_core] returned 0 after 8330 usecs
[    9.904461] calling  mod_init+0x0/0xf56 [intel_rng] @ 297
[    9.904530] intel_rng: FWH not detected
[    9.904609] initcall mod_init+0x0/0xf56 [intel_rng] returned -19 after 138 usecs
[    9.918577] snd_hda_intel 0000:00:1b.0: probe_mask set to 0x1 for device 17aa:2010
[    9.920268] initcall azx_driver_init+0x0/0xfe4 [snd_hda_intel] returned 0 after 47771 usecs
[    9.929665] calling  init_pcmcia_cs+0x0/0x1000 [pcmcia_core] @ 290
[    9.929685] initcall init_pcmcia_cs+0x0/0x1000 [pcmcia_core] returned 0 after 10 usecs
[    9.933322] calling  e1000_init_module+0x0/0x1000 [e1000e] @ 299
[    9.933326] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    9.933399] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    9.933854] e1000e 0000:01:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    9.934804] calling  nonstatic_sysfs_init+0x0/0x1000 [pcmcia_rsrc] @ 290
[    9.934811] initcall nonstatic_sysfs_init+0x0/0x1000 [pcmcia_rsrc] returned 0 after 1 usecs
[    9.954554] calling  yenta_cardbus_driver_init+0x0/0x1000 [yenta_socket] @ 290
[    9.954759] yenta_cardbus 0000:05:00.0: CardBus bridge found [0000:0000]
[    9.955990] calling  fw_core_init+0x0/0x1000 [firewire_core] @ 289
[    9.965676] initcall fw_core_init+0x0/0x1000 [firewire_core] returned 0 after 9439 usecs
[    9.973418] calling  mmc_init+0x0/0x954 [mmc_core] @ 292
[    9.973477] initcall mmc_init+0x0/0x954 [mmc_core] returned 0 after 39 usecs
[    9.989531] calling  cfg80211_init+0x0/0xb8 [cfg80211] @ 291
[    9.989536] calling  init_sg+0x0/0x1000 [sg] @ 295
[    9.989848] initcall cfg80211_init+0x0/0xb8 [cfg80211] returned 0 after 264 usecs
[    9.992949] calling  generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] @ 307
[    9.992981] initcall generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] returned 0 after 21 usecs
[    9.994330] calling  analog_driver_init+0x0/0x1000 [snd_hda_codec_analog] @ 307
[    9.994634] snd_hda_codec_analog hdaudioC0D0: autoconfig for AD1981: line_outs=1 (0x5/0x0/0x0/0x0/0x0) type:speaker
[    9.994729] snd_hda_codec_analog hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.994814] snd_hda_codec_analog hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.994896] snd_hda_codec_analog hdaudioC0D0:    mono: mono_out=0x0
[    9.994965] snd_hda_codec_analog hdaudioC0D0:    dig-out=0xa/0x0
[    9.995033] snd_hda_codec_analog hdaudioC0D0:    inputs:
[    9.995101] snd_hda_codec_analog hdaudioC0D0:      Mic=0x8
[    9.995168] snd_hda_codec_analog hdaudioC0D0:      CD=0x19
[    9.997747] calling  fw_ohci_init+0x0/0x1000 [firewire_ohci] @ 289
[   10.007561] calling  lpc_ich_driver_init+0x0/0x1000 [lpc_ich] @ 297
[   10.008094] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   10.008192] initcall init_sg+0x0/0x1000 [sg] returned 0 after 18204 usecs
[   10.018655] calling  sdhci_drv_init+0x0/0x1000 [sdhci] @ 292
[   10.018660] sdhci: Secure Digital Host Controller Interface driver
[   10.018737] sdhci: Copyright(c) Pierre Ossman
[   10.018810] initcall sdhci_drv_init+0x0/0x1000 [sdhci] returned 0 after 142 usecs
[   10.024359] calling  ieee80211_init+0x0/0x34 [mac80211] @ 291
[   10.024407] initcall ieee80211_init+0x0/0x34 [mac80211] returned 0 after 9 usecs
[   10.030025] initcall analog_driver_init+0x0/0x1000 [snd_hda_codec_analog] returned 0 after 34845 usecs
[   10.031862] calling  sdhci_driver_init+0x0/0x1000 [sdhci_pci] @ 292
[   10.032380] ehci-pci 0000:00:1d.7: EHCI Host Controller
[   10.032462] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 5
[   10.032561] ehci-pci 0000:00:1d.7: debug port 1
[   10.033999] calling  il3945_init+0x0/0x1000 [iwl3945] @ 291
[   10.034002] iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, in-tree:s
[   10.034122] iwl3945: Copyright(c) 2003-2011 Intel Corporation
[   10.034213] iwl3945: hw_scan is disabled
[   10.036555] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[   10.036641] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[   10.038943] ehci-pci 0000:00:1d.7: irq 19, io mem 0xe4444000
[   10.052048] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[   10.052241] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[   10.052315] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   10.052494] usb usb5: Product: EHCI Host Controller
[   10.052591] usb usb5: Manufacturer: Linux 4.14.0-0.bpo.3-686-pae ehci_hcd
[   10.052697] usb usb5: SerialNumber: 0000:00:1d.7
[   10.086525] e1000e 0000:01:00.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:16:d3:b8:e3:49
[   10.086677] e1000e 0000:01:00.0 eth0: Intel(R) PRO/1000 Network Connection
[   10.086939] e1000e 0000:01:00.0 eth0: MAC: 2, PHY: 2, PBA No: 005302-003
[   10.087806] initcall e1000_init_module+0x0/0x1000 [e1000e] returned 0 after 150834 usecs
[   10.088979] yenta_cardbus 0000:05:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
[   10.089109] yenta_cardbus 0000:05:00.0: Socket status: 30000006
[   10.089227] yenta_cardbus 0000:05:00.0: pcmcia: parent PCI bridge window: [io  0x2000-0x3fff]
[   10.089380] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x2000-0x3fff:
[   10.092171]  excluding 0x2000-0x20ff 0x2400-0x24ff
[   10.109899] hub 5-0:1.0: USB hub found
[   10.110045] hub 5-0:1.0: 8 ports detected
[   10.110681] usb usb1: root hub lost power or was reset
[   10.112478] hub 1-0:1.0: USB hub found
[   10.112721] hub 1-0:1.0: 2 ports detected
[   10.113059] usb usb2: root hub lost power or was reset
[   10.113332] hub 2-0:1.0: USB hub found
[   10.113415] hub 2-0:1.0: 2 ports detected
[   10.113725] usb usb3: root hub lost power or was reset
[   10.113874] hub 3-0:1.0: USB hub found
[   10.113952] hub 3-0:1.0: 2 ports detected
[   10.114249] usb usb4: root hub lost power or was reset
[   10.131026] calling  psmouse_init+0x0/0x7c [psmouse] @ 294
[   10.131106] initcall psmouse_init+0x0/0x7c [psmouse] returned 0 after 64 usecs
[   10.132919] hub 4-0:1.0: USB hub found
[   10.133011] hub 4-0:1.0: 2 ports detected
[   10.133281] ata_piix 0000:00:1f.1: version 2.13
[   10.134200] initcall ehci_pci_init+0x0/0x1000 [ehci_pci] returned 0 after 250703 usecs
[   10.140040] scsi host4: ata_piix
[   10.143886] scsi host5: ata_piix
[   10.144065] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x50a0 irq 14
[   10.144136] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x50a8 irq 15
[   10.144267] initcall piix_init+0x0/0x1000 [ata_piix] returned 0 after 252040 usecs
[   10.144537] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   10.145105] ata5: port disabled--ignoring
[   10.145187] ata6: port disabled--ignoring
[   10.145781] initcall i2c_i801_init+0x0/0x1000 [i2c_i801] returned 0 after 247793 usecs
[   10.145982] ACPI Warning: SystemIO range 0x0000000000000528-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\PMIO) (20170728/utaddress-247)
[   10.146108] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.146201] ACPI Warning: SystemIO range 0x00000000000004B0-0x00000000000004BF conflicts with OpRegion 0x0000000000000480-0x00000000000004BB (\GPIO) (20170728/utaddress-247)
[   10.146327] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.146422] ACPI Warning: SystemIO range 0x0000000000000480-0x00000000000004AF conflicts with OpRegion 0x0000000000000480-0x00000000000004BB (\GPIO) (20170728/utaddress-247)
[   10.146539] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   10.146645] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   10.150564] initcall lpc_ich_driver_init+0x0/0x1000 [lpc_ich] returned 0 after 139637 usecs
[   10.151299] calling  ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] @ 293
[   10.151343] initcall ata_generic_pci_driver_init+0x0/0x1000 [ata_generic] returned 0 after 36 usecs
[   10.152241] calling  nas_gpio_init+0x0/0xfe9 [leds_ss4200] @ 297
[   10.152245] leds_ss4200: no LED devices found
[   10.152319] initcall nas_gpio_init+0x0/0xfe9 [leds_ss4200] returned -19 after 70 usecs
[   10.178817] yenta_cardbus 0000:05:00.0: pcmcia: parent PCI bridge window: [mem 0xe0000000-0xe20fffff]
[   10.178914] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe0000000-0xe20fffff:
[   10.179012]  excluding 0xe1ef0000-0xe20fffff
[   10.179082] yenta_cardbus 0000:05:00.0: pcmcia: parent PCI bridge window: [mem 0xe2100000-0xe40fffff 64bit pref]
[   10.179173] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe2100000-0xe40fffff:
[   10.179268]  excluding 0xe2100000-0xe40fffff
[   10.208858] iwl3945 0000:02:00.0: Tunable channels: 11 802.11bg, 13 802.11a channels
[   10.208951] iwl3945 0000:02:00.0: Detected Intel Wireless WiFi Link 3945ABG
[   10.226292] initcall yenta_cardbus_driver_init+0x0/0x1000 [yenta_socket] returned 0 after 265350 usecs
[   10.248659] calling  vmx_init+0x0/0x5b1 [kvm_intel] @ 297
[   10.251670] initcall vmx_init+0x0/0x5b1 [kvm_intel] returned 0 after 2924 usecs
[   10.257490] calling  coretemp_init+0x0/0x1000 [coretemp] @ 297
[   10.258186] initcall coretemp_init+0x0/0x1000 [coretemp] returned 0 after 669 usecs
[   10.266826] calling  init_pcmcia_bus+0x0/0x1000 [pcmcia] @ 327
[   10.266864] initcall init_pcmcia_bus+0x0/0x1000 [pcmcia] returned 0 after 27 usecs
[   10.274419] calling  powerclamp_init+0x0/0x1000 [intel_powerclamp] @ 297
[   10.274431] intel_powerclamp: No package C-state available
[   10.274437] initcall powerclamp_init+0x0/0x1000 [intel_powerclamp] returned -19 after 9 usecs
[   10.280114] calling  arc4_init+0x0/0x1000 [arc4] @ 330
[   10.296092] firewire_ohci 0000:05:00.1: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
[   10.296255] initcall fw_ohci_init+0x0/0x1000 [firewire_ohci] returned 0 after 291499 usecs
[   10.296690] sdhci-pci 0000:05:00.2: SDHCI controller found [1180:0822] (rev 18)
[   10.296955] sdhci-pci 0000:05:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
[   10.297052] sdhci-pci 0000:05:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
[   10.300761] calling  powerclamp_init+0x0/0x1000 [intel_powerclamp] @ 299
[   10.300774] intel_powerclamp: No package C-state available
[   10.300779] initcall powerclamp_init+0x0/0x1000 [intel_powerclamp] returned -19 after 10 usecs
[   10.308830] mmc0: SDHCI controller on PCI [0000:05:00.2] using DMA
[   10.308957] initcall sdhci_driver_init+0x0/0x1000 [sdhci_pci] returned 0 after 270589 usecs
[   10.309127] sdhci-pci 0000:05:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
[   10.319252] initcall arc4_init+0x0/0x1000 [arc4] returned 0 after 38209 usecs
[   10.333247] ieee80211 phy0: Selected rate control algorithm 'iwl-3945-rs'
[   10.333677] initcall il3945_init+0x0/0x1000 [iwl3945] returned 0 after 292639 usecs
[   10.459652] e1000e 0000:01:00.0 eth8: renamed from eth0
[   10.543207] calling  iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] @ 295
[   10.543210] iTCO_vendor_support: vendor-support=0
[   10.543285] initcall iTCO_vendor_init_module+0x0/0x1000 [iTCO_vendor_support] returned 0 after 70 usecs
[   10.545383] calling  iTCO_wdt_init_module+0x0/0x1000 [iTCO_wdt] @ 295
[   10.545415] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   10.545555] iTCO_wdt: Found a ICH7-M or ICH7-U TCO device (Version=2, TCOBASE=0x0560)
[   10.552002] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   10.552193] initcall iTCO_wdt_init_module+0x0/0x1000 [iTCO_wdt] returned 0 after 6610 usecs
[   10.680624] IPv6: ADDRCONF(NETDEV_UP): eth8: link is not ready
[   10.682315] iwl3945 0000:02:00.0 wlan4: renamed from wlan0
[   10.816190] firewire_core 0000:05:00.1: created device fw0: GUID 0000000000000000, S400
[   11.003070] psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[   11.020492] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input7
[   11.116149] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: discard
[   11.170517] calling  init_misc_binfmt+0x0/0x1000 [binfmt_misc] @ 398
[   11.170531] initcall init_misc_binfmt+0x0/0x1000 [binfmt_misc] returned 0 after 6 usecs
[   12.898492] calling  serport_init+0x0/0x1000 [serport] @ 522
[   12.898501] initcall serport_init+0x0/0x1000 [serport] returned 0 after 1 usecs
[   12.898819] serio: Serial port ttyS0
[   12.902412] calling  w8001_drv_init+0x0/0x1000 [wacom_w8001] @ 524
[   12.902453] initcall w8001_drv_init+0x0/0x1000 [wacom_w8001] returned 0 after 32 usecs
[   14.208293] input: Wacom Serial Penabled Pen as /devices/pnp0/00:06/tty/ttyS0/serio2/input/input8
[   14.212795] calling  joydev_init+0x0/0x1000 [joydev] @ 526
[   14.212810] initcall joydev_init+0x0/0x1000 [joydev] returned 0 after 8 usecs
[   14.849243] e1000e: eth8 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[   14.849516] IPv6: ADDRCONF(NETDEV_CHANGE): eth8: link becomes ready
[   52.680347] calling  drm_core_init+0x0/0xce [drm] @ 636
[   52.680409] initcall drm_core_init+0x0/0xce [drm] returned 0 after 24 usecs
[   52.692960] calling  drm_kms_helper_init+0x0/0x14 [drm_kms_helper] @ 636
[   52.692982] initcall drm_kms_helper_init+0x0/0x14 [drm_kms_helper] returned 0 after 1 usecs
[   52.736553] calling  i915_init+0x0/0x51 [i915] @ 636
[   52.736987] pci 0000:00:00.0: Intel 945GM Chipset
[   52.737011] pci 0000:00:00.0: detected gtt size: 262144K total, 262144K mappable
[   52.737614] pci 0000:00:00.0: detected 8192K stolen memory
[   52.737705] [drm] Memory usable by graphics device = 256M
[   52.737711] [drm] Replacing VGA console driver
[   52.739466] Console: switching to colour dummy device 80x25
[   52.796935] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   52.796943] [drm] Driver supports precise vblank timestamp query.
[   52.797390] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   52.838803] [drm] RC6 disabled, disabling runtime PM support
[   52.838843] [drm] initialized overlay support
[   52.840804] [drm] Initialized i915 1.6.0 20170818 for 0000:00:02.0 on minor 0
[   52.841075] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   52.853114] acpi device:04: registered as cooling_device3
[   52.854516] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[   52.855858] initcall i915_init+0x0/0x51 [i915] returned 0 after 116406 usecs
[   52.884157] fbcon: inteldrmfb (fb0) is primary device
[   52.884331] Console: switching to colour frame buffer device 128x48
[   52.884349] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 5174 bytes --]

  reply	other threads:[~2018-04-04  9:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-04  9:53 Paul Menzel
2018-04-04  9:57 ` Paul Menzel [this message]
2018-04-05 14:34 ` Alan Cox

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e1ec40a6-5955-ac47-d84e-acbd638a2a41@molgen.mpg.de \
    --to=pmenzel+linux-ide@molgen.mpg.de \
    --cc=hdegoede@redhat.com \
    --cc=linux-ide@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tj@kernel.org \
    --subject='Re: Decrease boot time with AHCI drives?' \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

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