Improve `ohci_pci_init()` time

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

 



Dear Linux folks,


Trying to improve the start-up time of a (slow) ASRock E350M1 which already uses coreboot, when instrumenting the time of the Linux Kernel, execution of `ohci_pci_init()` takes almost 200 ms.

```
[…]
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-rc3+ root=UUID=128529e0-b8bb-4c7d-956d-ddf699036c8c ro noisapnp initcall_debug log_buf_len=32M trace_buf_size=128M trace_clock=global trace_options=nooverwrite,funcgraph-abstime,funcgraph-cpu,funcgraph-duration,funcgraph-proc,funcgraph-tail,nofuncgraph-overhead,context-info,graph-time ftrace=function_graph ftrace_graph_max_depth=2 ftrace_graph_filter=do_one_initcall
[…]
[    2.181189] calling  ohci_pci_init+0x0/0x1000 [ohci_pci] @ 168
[    2.181268] ohci-pci: OHCI PCI platform driver
[    2.182058] ohci-pci 0000:00:12.0: OHCI PCI host controller
[ 2.182135] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[    2.182290] ohci-pci 0000:00:12.0: irq 18, io mem 0xf0148000
[    2.244664] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.244809] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.244879] usb usb3: Product: OHCI PCI host controller
[    2.244939] usb usb3: Manufacturer: Linux 4.13.0-rc3+ ohci_hcd
[    2.244999] usb usb3: SerialNumber: 0000:00:12.0
[    2.245486] hub 3-0:1.0: USB hub found
[    2.245637] hub 3-0:1.0: 5 ports detected
[    2.252384] ohci-pci 0000:00:13.0: OHCI PCI host controller
[ 2.252484] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
[    2.252634] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[    2.316458] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.316604] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.316675] usb usb4: Product: OHCI PCI host controller
[    2.316733] usb usb4: Manufacturer: Linux 4.13.0-rc3+ ohci_hcd
[    2.316793] usb usb4: SerialNumber: 0000:00:13.0
[    2.317666] hub 4-0:1.0: USB hub found
[    2.317830] hub 4-0:1.0: 5 ports detected
[    2.319124] ohci-pci 0000:00:14.5: OHCI PCI host controller
[ 2.319199] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 5
[    2.319341] ohci-pci 0000:00:14.5: irq 18, io mem 0xf014a000
[    2.380239] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 2.380383] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.380453] usb usb5: Product: OHCI PCI host controller
[    2.380512] usb usb5: Manufacturer: Linux 4.13.0-rc3+ ohci_hcd
[    2.380571] usb usb5: SerialNumber: 0000:00:14.5
[    2.381189] hub 5-0:1.0: USB hub found
[    2.382135] hub 5-0:1.0: 2 ports detected
[ 2.382766] initcall ohci_pci_init+0x0/0x1000 [ohci_pci] returned 0 after 196766 usecs
[…]
```

It looks like this is not done in parallel, so all the next “tasks” have to wait until `ohci_pci_init()` is done.

Do you know of a way to redcuce that time? Please find all the Linux messages attached.


Kind regards,

Paul

[    0.000000] random: get_random_bytes called from start_kernel+0x33/0x445 with crng_init=0
[    0.000000] Linux version 4.13.0-rc3+ (root@d44d03a193d6) (gcc version 6.3.0 20170516 (Debian 6.3.0-18)) #92 SMP Mon Jul 31 07:08:30 UTC 2017
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c7e2dfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000c7e2e000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011effffff] usable
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASROCK E350M1/E350M1, BIOS 4.6-925-g80b1c82 07/30/2017
[    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 = 0xc7e2e max_arch_pfn = 0x100000
[    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 F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0C0000000 mask FF8000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   7 disabled
[    0.000000] TOM2: 000000011f000000 aka 4592M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] found SMP MP-table at [mem 0x000f73f0-0x000f73ff] mapped at [c00f73f0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x08bfffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] BRK [0x08838000, 0x08838fff] PGTABLE
[    0.000000] log_buf_len: 33554432 bytes
[    0.000000] early log buf free: 128580(98%)
[    0.000000] RAMDISK: [mem 0x36e25000-0x37709fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F75F0 000024 (v02 CORE  )
[    0.000000] ACPI: XSDT 0x00000000C7E410E0 000064 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: FACP 0x00000000C7E43840 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: DSDT 0x00000000C7E41280 0025BD (v02 ASROCK COREBOOT 00010001 INTL 20161222)
[    0.000000] ACPI: FACS 0x00000000C7E41240 000040
[    0.000000] ACPI: FACS 0x00000000C7E41240 000040
[    0.000000] ACPI: SSDT 0x00000000C7E43940 00008A (v02 CORE   COREBOOT 0000002A CORE 0000002A)
[    0.000000] ACPI: TCPA 0x00000000C7E439D0 000032 (v02 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: APIC 0x00000000C7E43A10 00005C (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: HEST 0x00000000C7E43A70 000028 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: SSDT 0x00000000C7E43AA0 00168E (v02 AMD    ALIB     00000001 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000C7E45130 0003DE (v01 AMD    POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: HPET 0x00000000C7E45510 000038 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 2310MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] BRK [0x08839000, 0x08839fff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x00000000377fdfff]
[    0.000000]   HighMem  [mem 0x00000000377fe000-0x00000000c7e2dfff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000c7e2dfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000000c7e2dfff]
[    0.000000] On node 0 totalpages: 818636
[    0.000000]   DMA zone: 36 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1962 pages used for memmap
[    0.000000]   Normal zone: 223230 pages, LIFO batch:31
[    0.000000]   HighMem zone: 591408 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low 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: 0x43538210 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 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] e820: [mem 0xe0000000-0xf7ffffff] 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:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] percpu: Embedded 21 pages/cpu @f7741000 s56876 r0 d29140 u86016
[    0.000000] pcpu-alloc: s56876 r0 d29140 u86016 alloc=21*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 816638
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-rc3+ root=UUID=128529e0-b8bb-4c7d-956d-ddf699036c8c ro noisapnp initcall_debug log_buf_len=32M trace_buf_size=128M trace_clock=global trace_options=nooverwrite,funcgraph-abstime,funcgraph-cpu,funcgraph-duration,funcgraph-proc,funcgraph-tail,nofuncgraph-overhead,context-info,graph-time ftrace=function_graph ftrace_graph_max_depth=2 ftrace_graph_filter=do_one_initcall
[    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 (000377fe:000c7e2e)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3192344K/3274544K available (6246K kernel code, 599K rwdata, 2204K rodata, 736K init, 448K bss, 82200K reserved, 0K cma-reserved, 2365632K highmem)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xfff0e000 - 0xfffff000   ( 964 kB)
                   pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
                   vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
                   lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
                     .init : 0xc86e6000 - 0xc879e000   ( 736 kB)
                     .data : 0xc8419b1b - 0xc86d7d80   (2808 kB)
                     .text : 0xc7e00000 - 0xc8419b1b   (6246 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] ftrace: allocating 26394 entries in 52 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 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=eaf08000 soft=eaf0a000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 1600.106 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3200.21 BogoMIPS (lpj=6400424)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170531
[    0.012473] ACPI: 4 ACPI AML tables successfully acquired and loaded
[    0.012666] Security Framework initialized
[    0.012755] Yama: becoming mindful.
[    0.012815] AppArmor: AppArmor disabled by boot time parameter
[    0.012901] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.012959] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.013396] CPU: Physical Processor ID: 0
[    0.013516] CPU: Processor Core ID: 0
[    0.013567] mce: CPU supports 6 MCE banks
[    0.013634] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.013685] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[    0.013913] Freeing SMP alternatives memory: 24K
[    0.015613] smpboot: Max logical packages: 1
[    0.015691] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.016000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.052000] smpboot: CPU0: AMD E-350D APU with Radeon(tm) HD Graphics (family: 0x14, model: 0x2, stepping: 0x0)
[    0.052000] calling  trace_init_flags_sys_exit+0x0/0xf @ 1
[    0.052000] initcall trace_init_flags_sys_exit+0x0/0xf returned 0 after 0 usecs
[    0.052000] calling  trace_init_flags_sys_enter+0x0/0xf @ 1
[    0.052000] initcall trace_init_flags_sys_enter+0x0/0xf returned 0 after 0 usecs
[    0.052000] calling  init_hw_perf_events+0x0/0x5a0 @ 1
[    0.052000] Performance Events: AMD PMU driver.
[    0.052000] ... version:                0
[    0.052000] ... bit width:              48
[    0.052000] ... generic registers:      4
[    0.052000] ... value mask:             0000ffffffffffff
[    0.052000] ... max period:             00007fffffffffff
[    0.052000] ... fixed-purpose events:   0
[    0.052000] ... event mask:             000000000000000f
[    0.052000] initcall init_hw_perf_events+0x0/0x5a0 returned 0 after 0 usecs
[    0.052000] calling  init_real_mode+0x0/0x107 @ 1
[    0.052000] initcall init_real_mode+0x0/0x107 returned 0 after 0 usecs
[    0.052000] calling  trace_init_perf_perm_irq_work_exit+0x0/0x12 @ 1
[    0.052000] initcall trace_init_perf_perm_irq_work_exit+0x0/0x12 returned 0 after 0 usecs
[    0.052000] calling  validate_x2apic+0x0/0x4f @ 1
[    0.052000] initcall validate_x2apic+0x0/0x4f returned 0 after 0 usecs
[    0.052000] calling  register_nmi_cpu_backtrace_handler+0x0/0x14 @ 1
[    0.052000] initcall register_nmi_cpu_backtrace_handler+0x0/0x14 returned 0 after 0 usecs
[    0.052000] calling  early_efi_map_fb+0x0/0x30 @ 1
[    0.052000] initcall early_efi_map_fb+0x0/0x30 returned 0 after 0 usecs
[    0.052000] calling  spawn_ksoftirqd+0x0/0x3a @ 1
[    0.052000] initcall spawn_ksoftirqd+0x0/0x3a returned 0 after 0 usecs
[    0.052000] calling  migration_init+0x0/0x2d @ 1
[    0.052000] initcall migration_init+0x0/0x2d returned 0 after 0 usecs
[    0.052000] calling  check_cpu_stall_init+0x0/0x17 @ 1
[    0.052000] initcall check_cpu_stall_init+0x0/0x17 returned 0 after 0 usecs
[    0.052000] calling  srcu_bootup_announce+0x0/0x2c @ 1
[    0.052000] Hierarchical SRCU implementation.
[    0.052000] initcall srcu_bootup_announce+0x0/0x2c returned 0 after 0 usecs
[    0.052000] calling  rcu_spawn_gp_kthread+0x0/0xf9 @ 1
[    0.052000] initcall rcu_spawn_gp_kthread+0x0/0xf9 returned 0 after 0 usecs
[    0.052000] calling  cpu_stop_init+0x0/0x81 @ 1
[    0.052000] initcall cpu_stop_init+0x0/0x81 returned 0 after 0 usecs
[    0.052000] calling  init_events+0x0/0x33 @ 1
[    0.052000] initcall init_events+0x0/0x33 returned 0 after 0 usecs
[    0.052000] calling  init_trace_printk+0x0/0xa @ 1
[    0.052000] initcall init_trace_printk+0x0/0xa returned 0 after 0 usecs
[    0.052000] calling  event_trace_enable_again+0x0/0x39 @ 1
[    0.052000] initcall event_trace_enable_again+0x0/0x39 returned 0 after 0 usecs
[    0.052000] calling  jump_label_init_module+0x0/0xf @ 1
[    0.052000] initcall jump_label_init_module+0x0/0xf returned 0 after 0 usecs
[    0.052000] calling  dynamic_debug_init+0x0/0x207 @ 1
[    0.052000] initcall dynamic_debug_init+0x0/0x207 returned 0 after 0 usecs
[    0.052000] calling  rand_initialize+0x0/0xd0 @ 1
[    0.052000] initcall rand_initialize+0x0/0xd0 returned 0 after 0 usecs
[    0.052000] smp: Bringing up secondary CPUs ...
[    0.056082] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.074167] CPU 1 irqstacks, hard=e25fc000 soft=e25fe000
[    0.074173] x86: Booting SMP configuration:
[    0.074301] .... node  #0, CPUs:      #1
[    0.004000] Initializing CPU#1
[    0.154117] smp: Brought up 1 node, 2 CPUs
[    0.154117] smpboot: Total of 2 processors activated (6400.22 BogoMIPS)
[    0.154117] devtmpfs: initialized
[    0.157262] calling  ipc_ns_init+0x0/0x44 @ 1
[    0.157267] initcall ipc_ns_init+0x0/0x44 returned 0 after 0 usecs
[    0.157272] calling  init_mmap_min_addr+0x0/0x1f @ 1
[    0.157276] initcall init_mmap_min_addr+0x0/0x1f returned 0 after 0 usecs
[    0.157281] calling  init_cpufreq_transition_notifier_list+0x0/0x19 @ 1
[    0.157294] initcall init_cpufreq_transition_notifier_list+0x0/0x19 returned 0 after 0 usecs
[    0.157298] calling  net_ns_init+0x0/0x122 @ 1
[    0.157401] initcall net_ns_init+0x0/0x122 returned 0 after 0 usecs
[    0.157401] calling  e820__register_nvs_regions+0x0/0x38 @ 1
[    0.157401] initcall e820__register_nvs_regions+0x0/0x38 returned 0 after 0 usecs
[    0.157401] calling  cpufreq_register_tsc_scaling+0x0/0x23 @ 1
[    0.157401] initcall cpufreq_register_tsc_scaling+0x0/0x23 returned 0 after 0 usecs
[    0.157401] calling  init_cpu_syscore+0x0/0xd @ 1
[    0.157401] initcall init_cpu_syscore+0x0/0xd returned 0 after 0 usecs
[    0.157401] calling  reboot_init+0x0/0x3b @ 1
[    0.157401] initcall reboot_init+0x0/0x3b returned 0 after 0 usecs
[    0.157401] calling  init_lapic_sysfs+0x0/0x1d @ 1
[    0.157401] initcall init_lapic_sysfs+0x0/0x1d returned 0 after 0 usecs
[    0.157401] calling  cpu_hotplug_pm_sync_init+0x0/0x12 @ 1
[    0.157401] initcall cpu_hotplug_pm_sync_init+0x0/0x12 returned 0 after 0 usecs
[    0.157401] calling  alloc_frozen_cpus+0x0/0x8 @ 1
[    0.157401] initcall alloc_frozen_cpus+0x0/0x8 returned 0 after 0 usecs
[    0.157401] calling  wq_sysfs_init+0x0/0x25 @ 1
[    0.157401] initcall wq_sysfs_init+0x0/0x25 returned 0 after 0 usecs
[    0.157401] calling  ksysfs_init+0x0/0x79 @ 1
[    0.157401] initcall ksysfs_init+0x0/0x79 returned 0 after 0 usecs
[    0.157401] calling  pm_init+0x0/0x69 @ 1
[    0.157401] initcall pm_init+0x0/0x69 returned 0 after 0 usecs
[    0.157401] calling  pm_disk_init+0x0/0x14 @ 1
[    0.157401] initcall pm_disk_init+0x0/0x14 returned 0 after 0 usecs
[    0.157401] calling  swsusp_header_init+0x0/0x30 @ 1
[    0.157401] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    0.157401] calling  rcu_set_runtime_mode+0x0/0x12 @ 1
[    0.157401] initcall rcu_set_runtime_mode+0x0/0x12 returned 0 after 0 usecs
[    0.157401] calling  init_jiffies_clocksource+0x0/0x16 @ 1
[    0.157401] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.157401] initcall init_jiffies_clocksource+0x0/0x16 returned 0 after 0 usecs
[    0.157401] calling  futex_init+0x0/0xd8 @ 1
[    0.157401] futex hash table entries: 512 (order: 2, 16384 bytes)
[    0.157401] initcall futex_init+0x0/0xd8 returned 0 after 0 usecs
[    0.157401] calling  cgroup_wq_init+0x0/0x28 @ 1
[    0.157401] initcall cgroup_wq_init+0x0/0x28 returned 0 after 0 usecs
[    0.157401] calling  cgroup1_wq_init+0x0/0x28 @ 1
[    0.157401] initcall cgroup1_wq_init+0x0/0x28 returned 0 after 0 usecs
[    0.157401] calling  ftrace_mod_cmd_init+0x0/0x7 @ 1
[    0.157401] initcall ftrace_mod_cmd_init+0x0/0x7 returned 0 after 0 usecs
[    0.157401] calling  init_graph_trace+0x0/0x54 @ 1
[    0.157401] Starting tracer 'function_graph'
[    0.355557] initcall init_graph_trace+0x0/0x54 returned 0 after 195312 usecs
[    0.355582] calling  init_per_zone_wmark_min+0x0/0x5e @ 1
[    0.355606] initcall init_per_zone_wmark_min+0x0/0x5e returned 0 after 0 usecs
[    0.355615] calling  init_zero_pfn+0x0/0x47 @ 1
[    0.355625] initcall init_zero_pfn+0x0/0x47 returned 0 after 0 usecs
[    0.355635] calling  fsnotify_init+0x0/0x42 @ 1
[    0.355711] initcall fsnotify_init+0x0/0x42 returned 0 after 0 usecs
[    0.355720] calling  filelock_init+0x0/0x81 @ 1
[    0.355752] initcall filelock_init+0x0/0x81 returned 0 after 0 usecs
[    0.355761] calling  init_script_binfmt+0x0/0x14 @ 1
[    0.355772] initcall init_script_binfmt+0x0/0x14 returned 0 after 0 usecs
[    0.355781] calling  init_elf_binfmt+0x0/0x14 @ 1
[    0.355791] initcall init_elf_binfmt+0x0/0x14 returned 0 after 0 usecs
[    0.355799] calling  debugfs_init+0x0/0x47 @ 1
[    0.355826] initcall debugfs_init+0x0/0x47 returned 0 after 0 usecs
[    0.355835] calling  tracefs_init+0x0/0x35 @ 1
[    0.355849] initcall tracefs_init+0x0/0x35 returned 0 after 0 usecs
[    0.355858] calling  securityfs_init+0x0/0x5d @ 1
[    0.355925] initcall securityfs_init+0x0/0x5d returned 0 after 0 usecs
[    0.355935] calling  prandom_init+0x0/0xbd @ 1
[    0.355947] initcall prandom_init+0x0/0xbd returned 0 after 0 usecs
[    0.355955] calling  pinctrl_init+0x0/0x99 @ 1
[    0.355961] pinctrl core: initialized pinctrl subsystem
[    0.356058] initcall pinctrl_init+0x0/0x99 returned 0 after 0 usecs
[    0.356067] calling  gpiolib_dev_init+0x0/0xac @ 1
[    0.356114] initcall gpiolib_dev_init+0x0/0xac returned 0 after 0 usecs
[    0.356122] calling  sfi_sysfs_init+0x0/0xb7 @ 1
[    0.356133] initcall sfi_sysfs_init+0x0/0xb7 returned 0 after 0 usecs
[    0.356141] calling  iommu_init+0x0/0x25 @ 1
[    0.356155] initcall iommu_init+0x0/0x25 returned 0 after 0 usecs
[    0.356164] calling  cpufreq_core_init+0x0/0x42 @ 1
[    0.356179] initcall cpufreq_core_init+0x0/0x42 returned 0 after 0 usecs
[    0.356188] calling  cpuidle_init+0x0/0x37 @ 1
[    0.356207] initcall cpuidle_init+0x0/0x37 returned 0 after 0 usecs
[    0.356216] calling  capsule_reboot_register+0x0/0xf @ 1
[    0.356228] initcall capsule_reboot_register+0x0/0xf returned 0 after 0 usecs
[    0.356236] calling  bsp_pm_check_init+0x0/0x12 @ 1
[    0.356247] initcall bsp_pm_check_init+0x0/0x12 returned 0 after 0 usecs
[    0.356254] calling  sock_init+0x0/0x8a @ 1
[    0.356458] initcall sock_init+0x0/0x8a returned 0 after 0 usecs
[    0.356468] calling  net_inuse_init+0x0/0x20 @ 1
[    0.356481] initcall net_inuse_init+0x0/0x20 returned 0 after 0 usecs
[    0.356489] calling  net_defaults_init+0x0/0x20 @ 1
[    0.356500] initcall net_defaults_init+0x0/0x20 returned 0 after 0 usecs
[    0.356508] calling  init_default_flow_dissectors+0x0/0x44 @ 1
[    0.356519] initcall init_default_flow_dissectors+0x0/0x44 returned 0 after 0 usecs
[    0.356527] calling  netpoll_init+0x0/0x30 @ 1
[    0.356537] initcall netpoll_init+0x0/0x30 returned 0 after 0 usecs
[    0.356546] calling  netlink_proto_init+0x0/0x130 @ 1
[    0.356618] NET: Registered protocol family 16
[    0.356775] initcall netlink_proto_init+0x0/0x130 returned 0 after 0 usecs
[    0.356968] calling  irq_sysfs_init+0x0/0x7a @ 1
[    0.357207] initcall irq_sysfs_init+0x0/0x7a returned 0 after 0 usecs
[    0.357217] calling  bdi_class_init+0x0/0x3d @ 1
[    0.357247] initcall bdi_class_init+0x0/0x3d returned 0 after 0 usecs
[    0.357255] calling  mm_sysfs_init+0x0/0x23 @ 1
[    0.357269] initcall mm_sysfs_init+0x0/0x23 returned 0 after 0 usecs
[    0.357278] calling  gpiolib_sysfs_init+0x0/0x81 @ 1
[    0.357300] initcall gpiolib_sysfs_init+0x0/0x81 returned 0 after 0 usecs
[    0.357309] calling  pcibus_class_init+0x0/0x14 @ 1
[    0.357326] initcall pcibus_class_init+0x0/0x14 returned 0 after 0 usecs
[    0.357335] calling  pci_driver_init+0x0/0xf @ 1
[    0.357365] initcall pci_driver_init+0x0/0xf returned 0 after 0 usecs
[    0.357374] calling  backlight_class_init+0x0/0x8c @ 1
[    0.357393] initcall backlight_class_init+0x0/0x8c returned 0 after 0 usecs
[    0.357401] calling  tty_class_init+0x0/0x2c @ 1
[    0.357418] initcall tty_class_init+0x0/0x2c returned 0 after 0 usecs
[    0.357426] calling  vtconsole_class_init+0x0/0xa1 @ 1
[    0.357501] initcall vtconsole_class_init+0x0/0xa1 returned 0 after 0 usecs
[    0.357509] calling  iommu_dev_init+0x0/0x14 @ 1
[    0.357526] initcall iommu_dev_init+0x0/0x14 returned 0 after 0 usecs
[    0.357535] calling  mipi_dsi_bus_init+0x0/0xf @ 1
[    0.357562] initcall mipi_dsi_bus_init+0x0/0xf returned 0 after 0 usecs
[    0.357571] calling  wakeup_sources_debugfs_init+0x0/0x22 @ 1
[    0.357587] initcall wakeup_sources_debugfs_init+0x0/0x22 returned 0 after 0 usecs
[    0.357595] calling  regmap_initcall+0x0/0xd @ 1
[    0.357611] initcall regmap_initcall+0x0/0xd returned 0 after 0 usecs
[    0.357619] calling  spi_init+0x0/0x85 @ 1
[    0.357664] initcall spi_init+0x0/0x85 returned 0 after 0 usecs
[    0.357673] calling  i2c_init+0x0/0xa1 @ 1
[    0.357723] initcall i2c_init+0x0/0xa1 returned 0 after 0 usecs
[    0.357732] calling  init_ladder+0x0/0x22 @ 1
[    0.360067] cpuidle: using governor ladder
[    0.360210] initcall init_ladder+0x0/0x22 returned 0 after 3906 usecs
[    0.360221] calling  init_menu+0x0/0xf @ 1
[    0.360268] cpuidle: using governor menu
[    0.360268] initcall init_menu+0x0/0xf returned 0 after 0 usecs
[    0.360268] calling  amd_postcore_init+0x0/0xef @ 1
[    0.360334] initcall amd_postcore_init+0x0/0xef returned 0 after 0 usecs
[    0.360334] calling  kobject_uevent_init+0x0/0xa @ 1
[    0.360334] initcall kobject_uevent_init+0x0/0xa returned 0 after 0 usecs
[    0.360334] calling  bts_init+0x0/0x93 @ 1
[    0.360334] initcall bts_init+0x0/0x93 returned -19 after 0 usecs
[    0.360336] calling  pt_init+0x0/0x325 @ 1
[    0.360346] initcall pt_init+0x0/0x325 returned -19 after 0 usecs
[    0.360355] calling  boot_params_ksysfs_init+0x0/0x21f @ 1
[    0.360387] initcall boot_params_ksysfs_init+0x0/0x21f returned 0 after 0 usecs
[    0.360395] calling  sbf_init+0x0/0xfa @ 1
[    0.360405] initcall sbf_init+0x0/0xfa returned 0 after 0 usecs
[    0.360414] calling  arch_kdebugfs_init+0x0/0x1f @ 1
[    0.360442] initcall arch_kdebugfs_init+0x0/0x1f returned 0 after 0 usecs
[    0.360450] calling  init_pit_clocksource+0x0/0x30 @ 1
[    0.360461] initcall init_pit_clocksource+0x0/0x30 returned 0 after 0 usecs
[    0.360469] calling  mtrr_if_init+0x0/0x4f @ 1
[    0.360486] initcall mtrr_if_init+0x0/0x4f returned 0 after 0 usecs
[    0.360494] calling  ffh_cstate_init+0x0/0x28 @ 1
[    0.360511] initcall ffh_cstate_init+0x0/0x28 returned 0 after 0 usecs
[    0.360521] calling  kdump_buf_page_init+0x0/0x37 @ 1
[    0.360532] initcall kdump_buf_page_init+0x0/0x37 returned 0 after 0 usecs
[    0.360541] calling  activate_jump_labels+0x0/0x2e @ 1
[    0.360551] initcall activate_jump_labels+0x0/0x2e returned 0 after 0 usecs
[    0.360560] calling  kcmp_cookies_init+0x0/0x2b @ 1
[    0.360575] initcall kcmp_cookies_init+0x0/0x2b returned 0 after 0 usecs
[    0.360584] calling  acpi_pci_init+0x0/0x5c @ 1
[    0.360592] ACPI: bus type PCI registered
[    0.360727] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.360792] initcall acpi_pci_init+0x0/0x5c returned 0 after 0 usecs
[    0.360801] calling  dma_bus_init+0x0/0x8b @ 1
[    0.360834] initcall dma_bus_init+0x0/0x8b returned 0 after 0 usecs
[    0.360842] calling  dma_channel_table_init+0x0/0xbc @ 1
[    0.360864] initcall dma_channel_table_init+0x0/0xbc returned 0 after 0 usecs
[    0.360873] calling  dmi_id_init+0x0/0x298 @ 1
[    0.360987] initcall dmi_id_init+0x0/0x298 returned 0 after 0 usecs
[    0.360995] calling  pci_arch_init+0x0/0x65 @ 1
[    0.361734] PCI: PCI BIOS revision 2.10 entry at 0xfd4e8, last bus=3
[    0.361863] PCI: Using configuration type 1 for base access
[    0.361922] PCI: Using configuration type 1 for extended access
[    0.361997] initcall pci_arch_init+0x0/0x65 returned 0 after 3906 usecs
[    0.362180] calling  fixup_ht_bug+0x0/0xbd @ 1
[    0.362190] initcall fixup_ht_bug+0x0/0xbd returned 0 after 0 usecs
[    0.362199] calling  topology_init+0x0/0x32 @ 1
[    0.362380] initcall topology_init+0x0/0x32 returned 0 after 0 usecs
[    0.362388] calling  mtrr_init_finialize+0x0/0x3a @ 1
[    0.362395] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.362487] mtrr: probably your BIOS does not setup all CPUs.
[    0.362545] mtrr: corrected configuration.
[    0.362604] initcall mtrr_init_finialize+0x0/0x3a returned 0 after 0 usecs
[    0.362613] calling  uid_cache_init+0x0/0x81 @ 1
[    0.362625] initcall uid_cache_init+0x0/0x81 returned 0 after 0 usecs
[    0.362634] calling  param_sysfs_init+0x0/0x1b2 @ 1
[    0.365261] initcall param_sysfs_init+0x0/0x1b2 returned 0 after 0 usecs
[    0.365270] calling  user_namespace_sysctl_init+0x0/0x2d @ 1
[    0.365308] initcall user_namespace_sysctl_init+0x0/0x2d returned 0 after 0 usecs
[    0.365317] calling  proc_schedstat_init+0x0/0x1f @ 1
[    0.365331] initcall proc_schedstat_init+0x0/0x1f returned 0 after 0 usecs
[    0.365340] calling  pm_sysrq_init+0x0/0x17 @ 1
[    0.365380] initcall pm_sysrq_init+0x0/0x17 returned 0 after 0 usecs
[    0.365391] calling  create_proc_profile+0x0/0x100 @ 1
[    0.365401] initcall create_proc_profile+0x0/0x100 returned 0 after 0 usecs
[    0.365410] calling  crash_save_vmcoreinfo_init+0x0/0x4bb @ 1
[    0.365479] initcall crash_save_vmcoreinfo_init+0x0/0x4bb returned 0 after 0 usecs
[    0.365487] calling  crash_notes_memory_init+0x0/0x32 @ 1
[    0.365500] initcall crash_notes_memory_init+0x0/0x32 returned 0 after 0 usecs
[    0.365509] calling  cgroup_namespaces_init+0x0/0x8 @ 1
[    0.365518] initcall cgroup_namespaces_init+0x0/0x8 returned 0 after 0 usecs
[    0.365526] calling  user_namespaces_init+0x0/0x2a @ 1
[    0.365561] initcall user_namespaces_init+0x0/0x2a returned 0 after 0 usecs
[    0.365569] calling  hung_task_init+0x0/0x43 @ 1
[    0.365589] initcall hung_task_init+0x0/0x43 returned 0 after 0 usecs
[    0.365589] calling  oom_init+0x0/0x53 @ 1
[    0.368083] initcall oom_init+0x0/0x53 returned 0 after 0 usecs
[    0.368083] calling  default_bdi_init+0x0/0xa1 @ 1
[    0.368191] initcall default_bdi_init+0x0/0xa1 returned 0 after 0 usecs
[    0.368206] calling  percpu_enable_async+0x0/0xf @ 1
[    0.368216] initcall percpu_enable_async+0x0/0xf returned 0 after 0 usecs
[    0.368225] calling  kcompactd_init+0x0/0x43 @ 1
[    0.368255] initcall kcompactd_init+0x0/0x43 returned 0 after 0 usecs
[    0.368255] calling  init_reserve_notifier+0x0/0x1c @ 1
[    0.368255] initcall init_reserve_notifier+0x0/0x1c returned 0 after 0 usecs
[    0.368255] calling  init_admin_reserve+0x0/0x30 @ 1
[    0.368255] initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
[    0.368255] calling  init_user_reserve+0x0/0x30 @ 1
[    0.368255] initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
[    0.368255] calling  hugetlb_init+0x0/0x3fb @ 1
[    0.368255] HugeTLB registered 4.00 MiB page size, pre-allocated 0 pages
[    0.368339] initcall hugetlb_init+0x0/0x3fb returned 0 after 0 usecs
[    0.368347] calling  ksm_init+0x0/0x15b @ 1
[    0.368397] initcall ksm_init+0x0/0x15b returned 0 after 0 usecs
[    0.368397] calling  hugepage_init+0x0/0x126 @ 1
[    0.368397] initcall hugepage_init+0x0/0x126 returned 0 after 0 usecs
[    0.368397] calling  mem_cgroup_swap_init+0x0/0x4a @ 1
[    0.368397] initcall mem_cgroup_swap_init+0x0/0x4a returned 0 after 0 usecs
[    0.368397] calling  mem_cgroup_init+0x0/0xc1 @ 1
[    0.368397] initcall mem_cgroup_init+0x0/0xc1 returned 0 after 0 usecs
[    0.368397] calling  sel_ib_pkey_init+0x0/0x2c @ 1
[    0.368397] initcall sel_ib_pkey_init+0x0/0x2c returned 0 after 0 usecs
[    0.368397] calling  crypto_wq_init+0x0/0x28 @ 1
[    0.368397] initcall crypto_wq_init+0x0/0x28 returned 0 after 0 usecs
[    0.368397] calling  cryptomgr_init+0x0/0xf @ 1
[    0.368397] initcall cryptomgr_init+0x0/0xf returned 0 after 0 usecs
[    0.368397] calling  init_bio+0x0/0xbc @ 1
[    0.368397] initcall init_bio+0x0/0xbc returned 0 after 0 usecs
[    0.368397] calling  blk_settings_init+0x0/0x1e @ 1
[    0.368397] initcall blk_settings_init+0x0/0x1e returned 0 after 0 usecs
[    0.368397] calling  blk_ioc_init+0x0/0x27 @ 1
[    0.368397] initcall blk_ioc_init+0x0/0x27 returned 0 after 0 usecs
[    0.368397] calling  blk_softirq_init+0x0/0x68 @ 1
[    0.368397] initcall blk_softirq_init+0x0/0x68 returned 0 after 0 usecs
[    0.368397] calling  blk_mq_init+0x0/0x25 @ 1
[    0.368397] initcall blk_mq_init+0x0/0x25 returned 0 after 0 usecs
[    0.368397] calling  genhd_device_init+0x0/0x62 @ 1
[    0.368397] initcall genhd_device_init+0x0/0x62 returned 0 after 0 usecs
[    0.368397] calling  irq_poll_setup+0x0/0x63 @ 1
[    0.368397] initcall irq_poll_setup+0x0/0x63 returned 0 after 0 usecs
[    0.368397] calling  byt_gpio_init+0x0/0x11 @ 1
[    0.368397] initcall byt_gpio_init+0x0/0x11 returned 0 after 0 usecs
[    0.368397] calling  chv_pinctrl_init+0x0/0x11 @ 1
[    0.368397] initcall chv_pinctrl_init+0x0/0x11 returned 0 after 0 usecs
[    0.368397] calling  bxt_pinctrl_init+0x0/0x11 @ 1
[    0.368397] initcall bxt_pinctrl_init+0x0/0x11 returned 0 after 0 usecs
[    0.368397] calling  spt_pinctrl_init+0x0/0x11 @ 1
[    0.368397] initcall spt_pinctrl_init+0x0/0x11 returned 0 after 0 usecs
[    0.368397] calling  gpiolib_debugfs_init+0x0/0x22 @ 1
[    0.368397] initcall gpiolib_debugfs_init+0x0/0x22 returned 0 after 0 usecs
[    0.368397] calling  pci_slot_init+0x0/0x50 @ 1
[    0.368397] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[    0.368397] calling  fbmem_init+0x0/0xbe @ 1
[    0.368397] initcall fbmem_init+0x0/0xbe returned 0 after 0 usecs
[    0.368397] calling  scan_for_dmi_ipmi+0x0/0xfc @ 1
[    0.368404] initcall scan_for_dmi_ipmi+0x0/0xfc returned 0 after 0 usecs
[    0.368413] calling  acpi_init+0x0/0x323 @ 1
[    0.368484] ACPI: Added _OSI(Module Device)
[    0.368621] ACPI: Added _OSI(Processor Device)
[    0.368679] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.368737] ACPI: Added _OSI(Processor Aggregator Device)
[    0.372224] ACPI: Executed 3 blocks of module-level executable AML code
[    0.388127] ACPI: Interpreter enabled
[    0.388349] ACPI: (supports S0 S1 S3 S4 S5)
[    0.388475] ACPI: Using IOAPIC for interrupt routing
[    0.388572] HEST: Table parsing has been initialized.
[    0.388635] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.405977] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.406124] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.406599] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.407954] PCI host bridge to bus 0000:00
[    0.408012] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.408075] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.408137] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.408200] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xffffffff]
[    0.408262] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.408338] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
[    0.408772] pci 0000:00:01.0: [1002:9802] type 00 class 0x030000
[    0.408802] pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[    0.408814] pci 0000:00:01.0: reg 0x14: [io  0x2000-0x20ff]
[    0.408826] pci 0000:00:01.0: reg 0x18: [mem 0xf0100000-0xf013ffff]
[    0.408919] pci 0000:00:01.0: supports D1 D2
[    0.409301] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
[    0.409328] pci 0000:00:01.1: reg 0x10: [mem 0xf0140000-0xf0143fff]
[    0.409432] pci 0000:00:01.1: supports D1 D2
[    0.409912] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    0.409947] pci 0000:00:11.0: reg 0x10: [io  0x2410-0x2417]
[    0.409963] pci 0000:00:11.0: reg 0x14: [io  0x2420-0x2423]
[    0.409979] pci 0000:00:11.0: reg 0x18: [io  0x2418-0x241f]
[    0.409995] pci 0000:00:11.0: reg 0x1c: [io  0x2424-0x2427]
[    0.410010] pci 0000:00:11.0: reg 0x20: [io  0x2400-0x240f]
[    0.410026] pci 0000:00:11.0: reg 0x24: [mem 0xf014b000-0xf014b3ff]
[    0.410506] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    0.410536] pci 0000:00:12.0: reg 0x10: [mem 0xf0148000-0xf0148fff]
[    0.411065] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    0.411100] pci 0000:00:12.2: reg 0x10: [mem 0xf014c000-0xf014c0ff]
[    0.411229] pci 0000:00:12.2: supports D1 D2
[    0.411234] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.411634] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    0.411664] pci 0000:00:13.0: reg 0x10: [mem 0xf0149000-0xf0149fff]
[    0.412214] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    0.412249] pci 0000:00:13.2: reg 0x10: [mem 0xf014d000-0xf014d0ff]
[    0.412379] pci 0000:00:13.2: supports D1 D2
[    0.412383] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.412819] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    0.413344] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[    0.413385] pci 0000:00:14.2: reg 0x10: [mem 0xf0144000-0xf0147fff 64bit]
[    0.413496] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.413917] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    0.414437] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    0.414935] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    0.414965] pci 0000:00:14.5: reg 0x10: [mem 0xf014a000-0xf014afff]
[    0.415496] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
[    0.415634] pci 0000:00:15.0: supports D1 D2
[    0.416095] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
[    0.416241] pci 0000:00:15.1: supports D1 D2
[    0.416663] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
[    0.417042] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
[    0.417419] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
[    0.417798] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
[    0.418207] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
[    0.418584] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
[    0.418960] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
[    0.419340] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
[    0.420025] pci 0000:00:14.4: PCI bridge to [bus 01] (subtractive decode)
[    0.420103] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.420108] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.420112] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.420116] pci 0000:00:14.4:   bridge window [mem 0xe0000000-0xffffffff] (subtractive decode)
[    0.420300] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.420590] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
[    0.420638] pci 0000:03:00.0: reg 0x10: [io  0x1000-0x10ff]
[    0.420682] pci 0000:03:00.0: reg 0x18: [mem 0xf0004000-0xf0004fff 64bit pref]
[    0.420711] pci 0000:03:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[    0.420871] pci 0000:03:00.0: supports D1 D2
[    0.420875] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.432192] pci 0000:00:15.1: PCI bridge to [bus 03]
[    0.432272] pci 0000:00:15.1:   bridge window [io  0x1000-0x1fff]
[    0.432287] pci 0000:00:15.1:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.432332] pci_bus 0000:00: on NUMA node 0
[    0.434395] ACPI: PCI Interrupt Link [INTA] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.436454] ACPI: PCI Interrupt Link [INTB] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.436975] ACPI: PCI Interrupt Link [INTC] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.437467] ACPI: PCI Interrupt Link [INTD] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.437975] ACPI: PCI Interrupt Link [INTE] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.438464] ACPI: PCI Interrupt Link [INTF] (IRQs 9) *0, disabled.
[    0.438962] ACPI: PCI Interrupt Link [INTG] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.440134] ACPI: PCI Interrupt Link [INTH] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.440861] ACPI: Enabled 6 GPEs in block 00 to 1F
[    0.441142] initcall acpi_init+0x0/0x323 returned 0 after 70312 usecs
[    0.441154] calling  pnp_init+0x0/0xf @ 1
[    0.441189] initcall pnp_init+0x0/0xf returned 0 after 0 usecs
[    0.441198] calling  misc_init+0x0/0xa2 @ 1
[    0.441226] initcall misc_init+0x0/0xa2 returned 0 after 0 usecs
[    0.441236] calling  vga_arb_device_init+0x0/0x137 @ 1
[    0.441301] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[    0.441301] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.441301] pci 0000:00:01.0: vgaarb: bridge control possible
[    0.441301] vgaarb: loaded
[    0.441301] initcall vga_arb_device_init+0x0/0x137 returned 0 after 0 usecs
[    0.441301] calling  cn_init+0x0/0xe0 @ 1
[    0.441301] initcall cn_init+0x0/0xe0 returned 0 after 0 usecs
[    0.441301] calling  dax_fs_init+0x0/0xa5 @ 1
[    0.441301] initcall dax_fs_init+0x0/0xa5 returned 0 after 0 usecs
[    0.441301] calling  dma_buf_init+0x0/0x97 @ 1
[    0.441301] initcall dma_buf_init+0x0/0x97 returned 0 after 0 usecs
[    0.441301] calling  serio_init+0x0/0x27 @ 1
[    0.441301] initcall serio_init+0x0/0x27 returned 0 after 0 usecs
[    0.441301] calling  input_init+0x0/0xe1 @ 1
[    0.441301] initcall input_init+0x0/0xe1 returned 0 after 0 usecs
[    0.441301] calling  rtc_init+0x0/0x42 @ 1
[    0.441301] initcall rtc_init+0x0/0x42 returned 0 after 0 usecs
[    0.441301] calling  power_supply_class_init+0x0/0x36 @ 1
[    0.441301] initcall power_supply_class_init+0x0/0x36 returned 0 after 0 usecs
[    0.441301] calling  hwmon_init+0x0/0xd9 @ 1
[    0.441301] initcall hwmon_init+0x0/0xd9 returned 0 after 0 usecs
[    0.441301] calling  edac_init+0x0/0x69 @ 1
[    0.441301] EDAC MC: Ver: 3.0.0
[    0.441309] initcall edac_init+0x0/0x69 returned 0 after 0 usecs
[    0.441318] calling  leds_init+0x0/0x33 @ 1
[    0.441338] initcall leds_init+0x0/0x33 returned 0 after 0 usecs
[    0.441346] calling  dmi_init+0x0/0xe8 @ 1
[    0.441385] initcall dmi_init+0x0/0xe8 returned 0 after 0 usecs
[    0.441394] calling  efisubsys_init+0x0/0x25d @ 1
[    0.441405] initcall efisubsys_init+0x0/0x25d returned 0 after 0 usecs
[    0.441412] calling  devfreq_init+0x0/0x8a @ 1
[    0.441524] initcall devfreq_init+0x0/0x8a returned 0 after 0 usecs
[    0.441532] calling  ras_init+0x0/0xf @ 1
[    0.441552] initcall ras_init+0x0/0xf returned 0 after 0 usecs
[    0.441560] calling  nvmem_init+0x0/0xf @ 1
[    0.441590] initcall nvmem_init+0x0/0xf returned 0 after 0 usecs
[    0.441598] calling  pci_subsys_init+0x0/0x5d @ 1
[    0.441604] PCI: Using ACPI for IRQ routing
[    0.441733] PCI: pci_cache_line_size set to 64 bytes
[    0.441833] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.441838] e820: reserve RAM buffer [mem 0xc7e2e000-0xc7ffffff]
[    0.441848] initcall pci_subsys_init+0x0/0x5d returned 0 after 0 usecs
[    0.441857] calling  proto_init+0x0/0xf @ 1
[    0.441871] initcall proto_init+0x0/0xf returned 0 after 0 usecs
[    0.441879] calling  net_dev_init+0x0/0x1ad @ 1
[    0.442142] initcall net_dev_init+0x0/0x1ad returned 0 after 0 usecs
[    0.442150] calling  neigh_init+0x0/0x76 @ 1
[    0.442162] initcall neigh_init+0x0/0x76 returned 0 after 0 usecs
[    0.442171] calling  fib_rules_init+0x0/0xa0 @ 1
[    0.442185] initcall fib_rules_init+0x0/0xa0 returned 0 after 0 usecs
[    0.442193] calling  init_cgroup_netprio+0x0/0x12 @ 1
[    0.442204] initcall init_cgroup_netprio+0x0/0x12 returned 0 after 0 usecs
[    0.442212] calling  bpf_lwt_init+0x0/0x14 @ 1
[    0.442222] initcall bpf_lwt_init+0x0/0x14 returned 0 after 0 usecs
[    0.442230] calling  pktsched_init+0x0/0xf0 @ 1
[    0.442248] initcall pktsched_init+0x0/0xf0 returned 0 after 0 usecs
[    0.442256] calling  tc_filter_init+0x0/0x4d @ 1
[    0.442266] initcall tc_filter_init+0x0/0x4d returned 0 after 0 usecs
[    0.442274] calling  tc_action_init+0x0/0x4d @ 1
[    0.442284] initcall tc_action_init+0x0/0x4d returned 0 after 0 usecs
[    0.442292] calling  genl_init+0x0/0x2f @ 1
[    0.442320] initcall genl_init+0x0/0x2f returned 0 after 0 usecs
[    0.442330] calling  ipv4_netfilter_init+0x0/0xf @ 1
[    0.442341] initcall ipv4_netfilter_init+0x0/0xf returned 0 after 0 usecs
[    0.442350] calling  wireless_nlevent_init+0x0/0x34 @ 1
[    0.442364] initcall wireless_nlevent_init+0x0/0x34 returned 0 after 0 usecs
[    0.442372] calling  watchdog_init+0x0/0x70 @ 1
[    0.444045] initcall watchdog_init+0x0/0x70 returned 0 after 3906 usecs
[    0.444244] calling  nmi_warning_debugfs+0x0/0x23 @ 1
[    0.444271] initcall nmi_warning_debugfs+0x0/0x23 returned 0 after 0 usecs
[    0.444280] calling  save_microcode_in_initrd+0x0/0x9c @ 1
[    0.444294] initcall save_microcode_in_initrd+0x0/0x9c returned -22 after 0 usecs
[    0.444304] calling  hpet_late_init+0x0/0xf0 @ 1
[    0.444386] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.444462] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.446535] initcall hpet_late_init+0x0/0xf0 returned 0 after 0 usecs
[    0.446545] calling  init_amd_nbs+0x0/0x92 @ 1
[    0.446583] initcall init_amd_nbs+0x0/0x92 returned 0 after 0 usecs
[    0.446593] calling  sugov_register+0x0/0xf @ 1
[    0.446604] initcall sugov_register+0x0/0xf returned 0 after 0 usecs
[    0.446614] calling  clocksource_done_booting+0x0/0x3c @ 1
[    0.446730] clocksource: Switched to clocksource hpet
[    0.446794] initcall clocksource_done_booting+0x0/0x3c returned 0 after 69 usecs
[    0.446804] calling  tracer_init_tracefs+0x0/0x172 @ 1
[    0.510411] initcall tracer_init_tracefs+0x0/0x172 returned 0 after 64750 usecs
[    0.510426] calling  init_trace_printk_function_export+0x0/0x29 @ 1
[    0.510445] initcall init_trace_printk_function_export+0x0/0x29 returned 0 after 9 usecs
[    0.510453] calling  init_graph_tracefs+0x0/0x29 @ 1
[    0.510476] initcall init_graph_tracefs+0x0/0x29 returned 0 after 13 usecs
[    0.510485] calling  event_trace_init+0x0/0x24b @ 1
[    0.589380] initcall event_trace_init+0x0/0x24b returned 0 after 77022 usecs
[    0.589395] calling  init_kprobe_trace+0x0/0x7c @ 1
[    0.589427] initcall init_kprobe_trace+0x0/0x7c returned 0 after 21 usecs
[    0.589436] calling  bpf_init+0x0/0x3e @ 1
[    0.589464] initcall bpf_init+0x0/0x3e returned 0 after 18 usecs
[    0.589474] calling  init_pipe_fs+0x0/0x42 @ 1
[    0.589595] initcall init_pipe_fs+0x0/0x42 returned 0 after 109 usecs
[    0.589604] calling  cgroup_writeback_init+0x0/0x28 @ 1
[    0.589740] initcall cgroup_writeback_init+0x0/0x28 returned 0 after 122 usecs
[    0.589749] calling  inotify_user_setup+0x0/0x48 @ 1
[    0.589772] initcall inotify_user_setup+0x0/0x48 returned 0 after 14 usecs
[    0.589780] calling  eventpoll_init+0x0/0xec @ 1
[    0.589830] initcall eventpoll_init+0x0/0xec returned 0 after 39 usecs
[    0.589838] calling  anon_inode_init+0x0/0x4a @ 1
[    0.589868] initcall anon_inode_init+0x0/0x4a returned 0 after 20 usecs
[    0.589877] calling  init_dax_wait_table+0x0/0x2b @ 1
[    0.590128] initcall init_dax_wait_table+0x0/0x2b returned 0 after 236 usecs
[    0.590136] calling  proc_locks_init+0x0/0x1f @ 1
[    0.590153] initcall proc_locks_init+0x0/0x1f returned 0 after 8 usecs
[    0.590162] calling  dquot_init+0x0/0xfc @ 1
[    0.590169] VFS: Disk quotas dquot_6.6.0
[    0.590283] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.590421] initcall dquot_init+0x0/0xfc returned 0 after 243 usecs
[    0.590429] calling  quota_init+0x0/0x21 @ 1
[    0.590472] initcall quota_init+0x0/0x21 returned 0 after 32 usecs
[    0.590481] calling  proc_cmdline_init+0x0/0x1f @ 1
[    0.590496] initcall proc_cmdline_init+0x0/0x1f returned 0 after 7 usecs
[    0.590505] calling  proc_consoles_init+0x0/0x1f @ 1
[    0.590519] initcall proc_consoles_init+0x0/0x1f returned 0 after 6 usecs
[    0.590527] calling  proc_cpuinfo_init+0x0/0x1f @ 1
[    0.590541] initcall proc_cpuinfo_init+0x0/0x1f returned 0 after 5 usecs
[    0.590549] calling  proc_devices_init+0x0/0x1f @ 1
[    0.590563] initcall proc_devices_init+0x0/0x1f returned 0 after 5 usecs
[    0.590572] calling  proc_interrupts_init+0x0/0x1f @ 1
[    0.590586] initcall proc_interrupts_init+0x0/0x1f returned 0 after 5 usecs
[    0.590594] calling  proc_loadavg_init+0x0/0x1f @ 1
[    0.590608] initcall proc_loadavg_init+0x0/0x1f returned 0 after 5 usecs
[    0.590616] calling  proc_meminfo_init+0x0/0x1f @ 1
[    0.590630] initcall proc_meminfo_init+0x0/0x1f returned 0 after 5 usecs
[    0.590638] calling  proc_stat_init+0x0/0x1f @ 1
[    0.590652] initcall proc_stat_init+0x0/0x1f returned 0 after 5 usecs
[    0.590661] calling  proc_uptime_init+0x0/0x1f @ 1
[    0.590674] initcall proc_uptime_init+0x0/0x1f returned 0 after 5 usecs
[    0.590682] calling  proc_version_init+0x0/0x1f @ 1
[    0.590696] initcall proc_version_init+0x0/0x1f returned 0 after 5 usecs
[    0.590705] calling  proc_softirqs_init+0x0/0x1f @ 1
[    0.590718] initcall proc_softirqs_init+0x0/0x1f returned 0 after 5 usecs
[    0.590727] calling  proc_kcore_init+0x0/0x79 @ 1
[    0.590744] initcall proc_kcore_init+0x0/0x79 returned 0 after 8 usecs
[    0.590752] calling  vmcore_init+0x0/0x687 @ 1
[    0.590765] initcall vmcore_init+0x0/0x687 returned 0 after 4 usecs
[    0.590774] calling  proc_kmsg_init+0x0/0x22 @ 1
[    0.590787] initcall proc_kmsg_init+0x0/0x22 returned 0 after 5 usecs
[    0.590796] calling  proc_page_init+0x0/0x53 @ 1
[    0.590812] initcall proc_page_init+0x0/0x53 returned 0 after 8 usecs
[    0.590821] calling  init_ramfs_fs+0x0/0x1d @ 1
[    0.590833] initcall init_ramfs_fs+0x0/0x1d returned 0 after 3 usecs
[    0.590841] calling  init_hugetlbfs_fs+0x0/0x13e @ 1
[    0.590969] initcall init_hugetlbfs_fs+0x0/0x13e returned 0 after 114 usecs
[    0.590977] calling  tomoyo_initerface_init+0x0/0x132 @ 1
[    0.590990] initcall tomoyo_initerface_init+0x0/0x132 returned 0 after 4 usecs
[    0.590997] calling  aa_create_aafs+0x0/0x336 @ 1
[    0.591009] initcall aa_create_aafs+0x0/0x336 returned 0 after 3 usecs
[    0.591018] calling  blk_scsi_ioctl_init+0x0/0x34e @ 1
[    0.591030] initcall blk_scsi_ioctl_init+0x0/0x34e returned 0 after 4 usecs
[    0.591038] calling  dynamic_debug_init_debugfs+0x0/0x59 @ 1
[    0.591066] initcall dynamic_debug_init_debugfs+0x0/0x59 returned 0 after 18 usecs
[    0.591074] calling  fb_console_init+0x0/0xe4 @ 1
[    0.591231] initcall fb_console_init+0x0/0xe4 returned 0 after 145 usecs
[    0.591241] calling  acpi_event_init+0x0/0x2a @ 1
[    0.591266] initcall acpi_event_init+0x0/0x2a returned 0 after 16 usecs
[    0.591274] calling  pnp_system_init+0x0/0xf @ 1
[    0.591306] initcall pnp_system_init+0x0/0xf returned 0 after 23 usecs
[    0.591314] calling  pnpacpi_init+0x0/0x68 @ 1
[    0.591321] pnp: PnP ACPI init
[    0.592273] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.592436] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.592560] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.593752] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.593876] pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.593920] pnp: PnP ACPI: found 5 devices
[    0.593985] initcall pnpacpi_init+0x0/0x68 returned 0 after 2599 usecs
[    0.593994] calling  chr_dev_init+0x0/0x96 @ 1
[    0.609548] initcall chr_dev_init+0x0/0x96 returned 0 after 15170 usecs
[    0.609563] calling  firmware_class_init+0x0/0xed @ 1
[    0.609594] initcall firmware_class_init+0x0/0xed returned 0 after 21 usecs
[    0.609606] calling  thermal_init+0x0/0xc2 @ 1
[    0.609731] initcall thermal_init+0x0/0xc2 returned 0 after 112 usecs
[    0.609740] calling  cpufreq_gov_performance_init+0x0/0xf @ 1
[    0.609755] initcall cpufreq_gov_performance_init+0x0/0xf returned 0 after 5 usecs
[    0.609763] calling  cpufreq_gov_dbs_init+0x0/0xf @ 1
[    0.609776] initcall cpufreq_gov_dbs_init+0x0/0xf returned 0 after 3 usecs
[    0.609784] calling  map_properties+0x0/0x4aa @ 1
[    0.609797] initcall map_properties+0x0/0x4aa returned 0 after 4 usecs
[    0.609805] calling  init_acpi_pm_clocksource+0x0/0x173 @ 1
[    0.644889] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.644981] initcall init_acpi_pm_clocksource+0x0/0x173 returned 0 after 34342 usecs
[    0.644990] calling  pcibios_assign_resources+0x0/0x9b @ 1
[    0.645055] pci 0000:00:14.4: PCI bridge to [bus 01]
[    0.645134] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.645207] pci 0000:00:15.1: PCI bridge to [bus 03]
[    0.645267] pci 0000:00:15.1:   bridge window [io  0x1000-0x1fff]
[    0.645336] pci 0000:00:15.1:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.645418] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.645422] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.645427] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.645431] pci_bus 0000:00: resource 7 [mem 0xe0000000-0xffffffff]
[    0.645436] pci_bus 0000:01: resource 4 [io  0x0000-0x0cf7 window]
[    0.645440] pci_bus 0000:01: resource 5 [io  0x0d00-0xffff window]
[    0.645444] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
[    0.645448] pci_bus 0000:01: resource 7 [mem 0xe0000000-0xffffffff]
[    0.645452] pci_bus 0000:03: resource 0 [io  0x1000-0x1fff]
[    0.645457] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.645676] initcall pcibios_assign_resources+0x0/0x9b returned 0 after 661 usecs
[    0.645685] calling  sysctl_core_init+0x0/0x23 @ 1
[    0.645729] initcall sysctl_core_init+0x0/0x23 returned 0 after 34 usecs
[    0.645738] calling  eth_offload_init+0x0/0x12 @ 1
[    0.645751] initcall eth_offload_init+0x0/0x12 returned 0 after 4 usecs
[    0.645759] calling  inet_init+0x0/0x249 @ 1
[    0.645841] NET: Registered protocol family 2
[    0.646347] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.646509] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.646608] TCP: Hash tables configured (established 8192 bind 8192)
[    0.646807] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.646934] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.647225] initcall inet_init+0x0/0x249 returned 0 after 1418 usecs
[    0.647235] calling  ipv4_offload_init+0x0/0x55 @ 1
[    0.647250] initcall ipv4_offload_init+0x0/0x55 returned 0 after 4 usecs
[    0.647258] calling  af_unix_init+0x0/0x46 @ 1
[    0.647272] NET: Registered protocol family 1
[    0.647353] initcall af_unix_init+0x0/0x46 returned 0 after 84 usecs
[    0.647363] calling  ipv6_offload_init+0x0/0x73 @ 1
[    0.647376] initcall ipv6_offload_init+0x0/0x73 returned 0 after 5 usecs
[    0.647386] calling  pci_apply_final_quirks+0x0/0x119 @ 1
[    0.647417] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.713319] PCI: CLS 64 bytes, default 64
[    0.713345] initcall pci_apply_final_quirks+0x0/0x119 returned 0 after 64395 usecs
[    0.713357] calling  acpi_reserve_resources+0x0/0xc9 @ 1
[    0.713376] initcall acpi_reserve_resources+0x0/0xc9 returned 0 after 9 usecs
[    0.713385] calling  populate_rootfs+0x0/0xef @ 1
[    0.713541] Unpacking initramfs...
[    1.172569] Freeing initrd memory: 9108K
[    1.172882] initcall populate_rootfs+0x0/0xef returned 0 after 448710 usecs
[    1.172895] calling  pci_iommu_init+0x0/0x35 @ 1
[    1.172909] initcall pci_iommu_init+0x0/0x35 returned 0 after 4 usecs
[    1.173101] calling  amd_uncore_init+0x0/0x240 @ 1
[    1.173183] initcall amd_uncore_init+0x0/0x240 returned -19 after 4 usecs
[    1.173191] calling  amd_ibs_init+0x0/0x1cc @ 1
[    1.173201] LVT offset 0 assigned for vector 0x400
[    1.173621] perf: AMD IBS detected (0x000000ff)
[    1.173778] initcall amd_ibs_init+0x0/0x1cc returned 0 after 556 usecs
[    1.173789] calling  msr_init+0x0/0xbb @ 1
[    1.173806] initcall msr_init+0x0/0xbb returned 0 after 7 usecs
[    1.173815] calling  intel_cqm_init+0x0/0x3f3 @ 1
[    1.173830] initcall intel_cqm_init+0x0/0x3f3 returned -19 after 6 usecs
[    1.173840] calling  register_kernel_offset_dumper+0x0/0x17 @ 1
[    1.173853] initcall register_kernel_offset_dumper+0x0/0x17 returned 0 after 4 usecs
[    1.173861] calling  i8259A_init_ops+0x0/0x1e @ 1
[    1.173874] initcall i8259A_init_ops+0x0/0x1e returned 0 after 4 usecs
[    1.173883] calling  init_tsc_clocksource+0x0/0xb1 @ 1
[    1.173915] initcall init_tsc_clocksource+0x0/0xb1 returned 0 after 22 usecs
[    1.173924] calling  add_rtc_cmos+0x0/0x86 @ 1
[    1.173938] initcall add_rtc_cmos+0x0/0x86 returned 0 after 5 usecs
[    1.173946] calling  i8237A_init_ops+0x0/0x12 @ 1
[    1.173983] initcall i8237A_init_ops+0x0/0x12 returned 0 after 27 usecs
[    1.173992] calling  thermal_throttle_init_device+0x0/0x3d @ 1
[    1.174003] initcall thermal_throttle_init_device+0x0/0x3d returned 0 after 3 usecs
[    1.174013] calling  ioapic_init_ops+0x0/0x12 @ 1
[    1.174025] initcall ioapic_init_ops+0x0/0x12 returned 0 after 3 usecs
[    1.174033] calling  add_pcspkr+0x0/0x58 @ 1
[    1.174214] initcall add_pcspkr+0x0/0x58 returned 0 after 167 usecs
[    1.174224] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    1.174231] Scanning for low memory corruption every 60 seconds
[    1.174302] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 66 usecs
[    1.174311] calling  sysfb_init+0x0/0x80 @ 1
[    1.174522] initcall sysfb_init+0x0/0x80 returned 0 after 198 usecs
[    1.174531] calling  pt_dump_init+0x0/0x44 @ 1
[    1.174543] initcall pt_dump_init+0x0/0x44 returned 0 after 3 usecs
[    1.174551] calling  iosf_mbi_init+0x0/0x16 @ 1
[    1.174681] initcall iosf_mbi_init+0x0/0x16 returned 0 after 119 usecs
[    1.174689] calling  proc_execdomains_init+0x0/0x1f @ 1
[    1.174708] initcall proc_execdomains_init+0x0/0x1f returned 0 after 10 usecs
[    1.174716] calling  cpuhp_sysfs_init+0x0/0x61 @ 1
[    1.174748] initcall cpuhp_sysfs_init+0x0/0x61 returned 0 after 22 usecs
[    1.174756] calling  ioresources_init+0x0/0x35 @ 1
[    1.174773] initcall ioresources_init+0x0/0x35 returned 0 after 9 usecs
[    1.174783] calling  init_sched_debug_procfs+0x0/0x28 @ 1
[    1.174797] initcall init_sched_debug_procfs+0x0/0x28 returned 0 after 6 usecs
[    1.174806] calling  snapshot_device_init+0x0/0xf @ 1
[    1.175285] initcall snapshot_device_init+0x0/0xf returned 0 after 448 usecs
[    1.175301] calling  irq_gc_init_ops+0x0/0x12 @ 1
[    1.175314] initcall irq_gc_init_ops+0x0/0x12 returned 0 after 4 usecs
[    1.175323] calling  irq_pm_init_ops+0x0/0x12 @ 1
[    1.175336] initcall irq_pm_init_ops+0x0/0x12 returned 0 after 3 usecs
[    1.175347] calling  timekeeping_init_ops+0x0/0x12 @ 1
[    1.175360] initcall timekeeping_init_ops+0x0/0x12 returned 0 after 4 usecs
[    1.175369] calling  init_clocksource_sysfs+0x0/0x59 @ 1
[    1.175591] initcall init_clocksource_sysfs+0x0/0x59 returned 0 after 207 usecs
[    1.175601] calling  init_timer_list_procfs+0x0/0x28 @ 1
[    1.175621] initcall init_timer_list_procfs+0x0/0x28 returned 0 after 10 usecs
[    1.175629] calling  alarmtimer_init+0x0/0x120 @ 1
[    1.175822] initcall alarmtimer_init+0x0/0x120 returned 0 after 180 usecs
[    1.175830] calling  init_posix_timers+0x0/0x27 @ 1
[    1.175878] initcall init_posix_timers+0x0/0x27 returned 0 after 38 usecs
[    1.175886] calling  clockevents_init_sysfs+0x0/0xa7 @ 1
[    1.176259] initcall clockevents_init_sysfs+0x0/0xa7 returned 0 after 354 usecs
[    1.176267] calling  proc_dma_init+0x0/0x1f @ 1
[    1.176282] initcall proc_dma_init+0x0/0x1f returned 0 after 6 usecs
[    1.176290] calling  proc_modules_init+0x0/0x1f @ 1
[    1.176305] initcall proc_modules_init+0x0/0x1f returned 0 after 6 usecs
[    1.176313] calling  kallsyms_init+0x0/0x22 @ 1
[    1.176327] initcall kallsyms_init+0x0/0x22 returned 0 after 6 usecs
[    1.176335] calling  pid_namespaces_init+0x0/0x39 @ 1
[    1.176374] initcall pid_namespaces_init+0x0/0x39 returned 0 after 29 usecs
[    1.176382] calling  audit_init+0x0/0x15d @ 1
[    1.176395] audit: initializing netlink subsys (disabled)
[    1.176978] initcall audit_init+0x0/0x15d returned 0 after 561 usecs
[    1.176991] audit: type=2000 audit(1501529401.176:1): state=initialized audit_enabled=0 res=1
[    1.176996] calling  audit_watch_init+0x0/0x32 @ 1
[    1.177010] initcall audit_watch_init+0x0/0x32 returned 0 after 5 usecs
[    1.177018] calling  audit_fsnotify_init+0x0/0x32 @ 1
[    1.177030] initcall audit_fsnotify_init+0x0/0x32 returned 0 after 4 usecs
[    1.177038] calling  audit_tree_init+0x0/0x3c @ 1
[    1.177049] initcall audit_tree_init+0x0/0x3c returned 0 after 4 usecs
[    1.177057] calling  init_kprobes+0x0/0x19e @ 1
[    1.177347] initcall init_kprobes+0x0/0x19e returned 0 after 275 usecs
[    1.177356] calling  utsname_sysctl_init+0x0/0x12 @ 1
[    1.177388] initcall utsname_sysctl_init+0x0/0x12 returned 0 after 22 usecs
[    1.177396] calling  init_tracepoints+0x0/0x25 @ 1
[    1.177408] initcall init_tracepoints+0x0/0x25 returned 0 after 3 usecs
[    1.177416] calling  stack_trace_init+0x0/0x98 @ 1
[    1.177461] initcall stack_trace_init+0x0/0x98 returned 0 after 34 usecs
[    1.177469] calling  init_mmio_trace+0x0/0xa @ 1
[    1.177496] initcall init_mmio_trace+0x0/0xa returned 0 after 19 usecs
[    1.177504] calling  init_blk_tracer+0x0/0x48 @ 1
[    1.177540] initcall init_blk_tracer+0x0/0x48 returned 0 after 25 usecs
[    1.177549] calling  perf_event_sysfs_init+0x0/0x71 @ 1
[    1.178070] initcall perf_event_sysfs_init+0x0/0x71 returned 0 after 499 usecs
[    1.178079] calling  padata_driver_init+0x0/0x31 @ 1
[    1.178093] initcall padata_driver_init+0x0/0x31 returned 0 after 5 usecs
[    1.178103] calling  system_trusted_keyring_init+0x0/0x50 @ 1
[    1.178109] Initialise system trusted keyrings
[    1.178190] initcall system_trusted_keyring_init+0x0/0x50 returned 0 after 76 usecs
[    1.178200] calling  kswapd_init+0x0/0x37 @ 1
[    1.178608] initcall kswapd_init+0x0/0x37 returned 0 after 377 usecs
[    1.178622] calling  extfrag_debug_init+0x0/0x6b @ 1
[    1.178685] initcall extfrag_debug_init+0x0/0x6b returned 0 after 51 usecs
[    1.178695] calling  mm_compute_batch_init+0x0/0x17 @ 1
[    1.178710] initcall mm_compute_batch_init+0x0/0x17 returned 0 after 5 usecs
[    1.178719] calling  slab_proc_init+0x0/0x22 @ 1
[    1.178741] initcall slab_proc_init+0x0/0x22 returned 0 after 13 usecs
[    1.178750] calling  workingset_init+0x0/0x75 @ 1
[    1.178757] workingset: timestamp_bits=14 max_order=20 bucket_order=6
[    1.178837] initcall workingset_init+0x0/0x75 returned 0 after 77 usecs
[    1.178846] calling  proc_vmalloc_init+0x0/0x22 @ 1
[    1.178861] initcall proc_vmalloc_init+0x0/0x22 returned 0 after 6 usecs
[    1.178869] calling  procswaps_init+0x0/0x1f @ 1
[    1.178884] initcall procswaps_init+0x0/0x1f returned 0 after 6 usecs
[    1.178892] calling  init_frontswap+0x0/0x7c @ 1
[    1.178924] initcall init_frontswap+0x0/0x7c returned 0 after 22 usecs
[    1.178932] calling  slab_proc_init+0x0/0x8 @ 1
[    1.178946] initcall slab_proc_init+0x0/0x8 returned 0 after 5 usecs
[    1.178954] calling  cpucache_init+0x0/0x3b @ 1
[    1.179264] initcall cpucache_init+0x0/0x3b returned 0 after 278 usecs
[    1.179278] calling  init_zbud+0x0/0x1d @ 1
[    1.179284] zbud: loaded
[    1.179353] initcall init_zbud+0x0/0x1d returned 0 after 64 usecs
[    1.179362] calling  fcntl_init+0x0/0x27 @ 1
[    1.179380] initcall fcntl_init+0x0/0x27 returned 0 after 9 usecs
[    1.179389] calling  proc_filesystems_init+0x0/0x1f @ 1
[    1.179411] initcall proc_filesystems_init+0x0/0x1f returned 0 after 13 usecs
[    1.179421] calling  start_dirtytime_writeback+0x0/0x29 @ 1
[    1.179436] initcall start_dirtytime_writeback+0x0/0x29 returned 0 after 7 usecs
[    1.179445] calling  blkdev_init+0x0/0x27 @ 1
[    1.179479] initcall blkdev_init+0x0/0x27 returned 0 after 24 usecs
[    1.179488] calling  dio_init+0x0/0x2a @ 1
[    1.179505] initcall dio_init+0x0/0x2a returned 0 after 9 usecs
[    1.179513] calling  dnotify_init+0x0/0x6b @ 1
[    1.179534] initcall dnotify_init+0x0/0x6b returned 0 after 11 usecs
[    1.179543] calling  fanotify_user_setup+0x0/0x6b @ 1
[    1.179567] initcall fanotify_user_setup+0x0/0x6b returned 0 after 15 usecs
[    1.179575] calling  userfaultfd_init+0x0/0x2a @ 1
[    1.179611] initcall userfaultfd_init+0x0/0x2a returned 0 after 24 usecs
[    1.179619] calling  aio_setup+0x0/0x8d @ 1
[    1.179669] initcall aio_setup+0x0/0x8d returned 0 after 38 usecs
[    1.179678] calling  init_devpts_fs+0x0/0x24 @ 1
[    1.179714] initcall init_devpts_fs+0x0/0x24 returned 0 after 26 usecs
[    1.179723] calling  init_pstore_fs+0x0/0x3e @ 1
[    1.179745] initcall init_pstore_fs+0x0/0x3e returned 0 after 12 usecs
[    1.179753] calling  ipc_init+0x0/0x17 @ 1
[    1.179773] initcall ipc_init+0x0/0x17 returned 0 after 11 usecs
[    1.179782] calling  ipc_sysctl_init+0x0/0x12 @ 1
[    1.179812] initcall ipc_sysctl_init+0x0/0x12 returned 0 after 20 usecs
[    1.179820] calling  init_mqueue_fs+0x0/0xea @ 1
[    1.179962] initcall init_mqueue_fs+0x0/0xea returned 0 after 127 usecs
[    1.179971] calling  key_proc_init+0x0/0x52 @ 1
[    1.179989] initcall key_proc_init+0x0/0x52 returned 0 after 9 usecs
[    1.179997] calling  selinux_nf_ip_init+0x0/0x35 @ 1
[    1.180071] initcall selinux_nf_ip_init+0x0/0x35 returned 0 after 4 usecs
[    1.180080] calling  init_sel_fs+0x0/0x85 @ 1
[    1.180092] initcall init_sel_fs+0x0/0x85 returned 0 after 3 usecs
[    1.180102] calling  selnl_init+0x0/0x6a @ 1
[    1.180138] initcall selnl_init+0x0/0x6a returned 0 after 26 usecs
[    1.180147] calling  sel_netif_init+0x0/0x2f @ 1
[    1.180159] initcall sel_netif_init+0x0/0x2f returned 0 after 3 usecs
[    1.180168] calling  sel_netnode_init+0x0/0x2c @ 1
[    1.180180] initcall sel_netnode_init+0x0/0x2c returned 0 after 3 usecs
[    1.180188] calling  sel_netport_init+0x0/0x2c @ 1
[    1.180200] initcall sel_netport_init+0x0/0x2c returned 0 after 3 usecs
[    1.180208] calling  aurule_init+0x0/0x26 @ 1
[    1.180219] initcall aurule_init+0x0/0x26 returned 0 after 3 usecs
[    1.180227] calling  crypto_algapi_init+0x0/0xd @ 1
[    1.180242] initcall crypto_algapi_init+0x0/0xd returned 0 after 6 usecs
[    1.180249] calling  seqiv_module_init+0x0/0xf @ 1
[    1.180263] initcall seqiv_module_init+0x0/0xf returned 0 after 5 usecs
[    1.180272] calling  rsa_init+0x0/0x40 @ 1
[    1.180940] initcall rsa_init+0x0/0x40 returned 0 after 630 usecs
[    1.180955] calling  hmac_module_init+0x0/0xf @ 1
[    1.180968] initcall hmac_module_init+0x0/0xf returned 0 after 4 usecs
[    1.180977] calling  crypto_null_mod_init+0x0/0x42 @ 1
[    1.181662] initcall crypto_null_mod_init+0x0/0x42 returned 0 after 659 usecs
[    1.181674] calling  md5_mod_init+0x0/0xf @ 1
[    1.181875] initcall md5_mod_init+0x0/0xf returned 0 after 187 usecs
[    1.181883] calling  sha1_generic_mod_init+0x0/0xf @ 1
[    1.182178] initcall sha1_generic_mod_init+0x0/0xf returned 0 after 265 usecs
[    1.182192] calling  sha256_generic_mod_init+0x0/0x14 @ 1
[    1.182610] initcall sha256_generic_mod_init+0x0/0x14 returned 0 after 398 usecs
[    1.182620] calling  crypto_ctr_module_init+0x0/0x34 @ 1
[    1.182634] initcall crypto_ctr_module_init+0x0/0x34 returned 0 after 6 usecs
[    1.182643] calling  crypto_gcm_module_init+0x0/0xa3 @ 1
[    1.182659] initcall crypto_gcm_module_init+0x0/0xa3 returned 0 after 8 usecs
[    1.182666] calling  aes_init+0x0/0xf @ 1
[    1.182763] initcall aes_init+0x0/0xf returned 0 after 85 usecs
[    1.182771] calling  crct10dif_mod_init+0x0/0xf @ 1
[    1.182864] initcall crct10dif_mod_init+0x0/0xf returned 0 after 82 usecs
[    1.182872] calling  lzo_mod_init+0x0/0x34 @ 1
[    1.183378] initcall lzo_mod_init+0x0/0x34 returned 0 after 471 usecs
[    1.183392] calling  drbg_init+0x0/0xa8 @ 1
[    1.184247] initcall drbg_init+0x0/0xa8 returned 0 after 815 usecs
[    1.184260] calling  jent_mod_init+0x0/0x2b @ 1
[    1.185566] initcall jent_mod_init+0x0/0x2b returned 0 after 1253 usecs
[    1.185579] calling  ghash_mod_init+0x0/0xf @ 1
[    1.186057] initcall ghash_mod_init+0x0/0xf returned 0 after 444 usecs
[    1.186071] calling  asymmetric_key_init+0x0/0xf @ 1
[    1.186080] Key type asymmetric registered
[    1.186152] initcall asymmetric_key_init+0x0/0xf returned 0 after 70 usecs
[    1.186161] calling  x509_key_init+0x0/0xf @ 1
[    1.186168] Asymmetric key parser 'x509' registered
[    1.186232] initcall x509_key_init+0x0/0xf returned 0 after 61 usecs
[    1.186240] calling  proc_genhd_init+0x0/0x35 @ 1
[    1.186265] initcall proc_genhd_init+0x0/0x35 returned 0 after 16 usecs
[    1.186274] calling  init_emergency_pool+0x0/0x7d @ 1
[    1.186328] bounce: pool size: 64 pages
[    1.186485] initcall init_emergency_pool+0x0/0x7d returned 0 after 198 usecs
[    1.186494] calling  bsg_init+0x0/0x12f @ 1
[    1.186532] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    1.186610] initcall bsg_init+0x0/0x12f returned 0 after 105 usecs
[    1.186618] calling  throtl_init+0x0/0x37 @ 1
[    1.186736] initcall throtl_init+0x0/0x37 returned 0 after 106 usecs
[    1.186745] calling  noop_init+0x0/0xf @ 1
[    1.186754] io scheduler noop registered
[    1.186815] initcall noop_init+0x0/0xf returned 0 after 60 usecs
[    1.186823] calling  deadline_init+0x0/0xf @ 1
[    1.186830] io scheduler deadline registered
[    1.186891] initcall deadline_init+0x0/0xf returned 0 after 58 usecs
[    1.186899] calling  cfq_init+0x0/0x68 @ 1
[    1.186951] io scheduler cfq registered (default)
[    1.187082] initcall cfq_init+0x0/0x68 returned 0 after 171 usecs
[    1.187090] calling  deadline_init+0x0/0xf @ 1
[    1.187098] io scheduler mq-deadline registered
[    1.187159] initcall deadline_init+0x0/0xf returned 0 after 58 usecs
[    1.187167] calling  kyber_init+0x0/0xf @ 1
[    1.187173] io scheduler kyber registered
[    1.187233] initcall kyber_init+0x0/0xf returned 0 after 57 usecs
[    1.187241] calling  btree_module_init+0x0/0x22 @ 1
[    1.187254] initcall btree_module_init+0x0/0x22 returned 0 after 5 usecs
[    1.187262] calling  crc_t10dif_mod_init+0x0/0x31 @ 1
[    1.187282] initcall crc_t10dif_mod_init+0x0/0x31 returned 0 after 11 usecs
[    1.187290] calling  percpu_counter_startup+0x0/0x4c @ 1
[    1.187406] initcall percpu_counter_startup+0x0/0x4c returned 0 after 104 usecs
[    1.187414] calling  audit_classes_init+0x0/0x4b @ 1
[    1.187435] initcall audit_classes_init+0x0/0x4b returned 0 after 12 usecs
[    1.187444] calling  sg_pool_init+0x0/0xaa @ 1
[    1.187590] initcall sg_pool_init+0x0/0xaa returned 0 after 134 usecs
[    1.187598] calling  phy_core_init+0x0/0x3f @ 1
[    1.187621] initcall phy_core_init+0x0/0x3f returned 0 after 13 usecs
[    1.187631] calling  pci_proc_init+0x0/0x5a @ 1
[    1.187795] initcall pci_proc_init+0x0/0x5a returned 0 after 151 usecs
[    1.187803] calling  pcie_portdrv_init+0x0/0x64 @ 1
[    1.189923] initcall pcie_portdrv_init+0x0/0x64 returned 0 after 2060 usecs
[    1.189933] calling  aer_service_init+0x0/0x30 @ 1
[    1.189962] initcall aer_service_init+0x0/0x30 returned 0 after 19 usecs
[    1.189971] calling  pcie_pme_service_init+0x0/0xf @ 1
[    1.190040] pcieport 0000:00:15.0: Signaling PME with IRQ 24
[    1.190173] pcieport 0000:00:15.1: Signaling PME with IRQ 25
[    1.190259] initcall pcie_pme_service_init+0x0/0xf returned 0 after 272 usecs
[    1.190268] calling  dpc_service_init+0x0/0xf @ 1
[    1.190296] initcall dpc_service_init+0x0/0xf returned 0 after 18 usecs
[    1.190304] calling  pci_hotplug_init+0x0/0x2f @ 1
[    1.190317] initcall pci_hotplug_init+0x0/0x2f returned 0 after 3 usecs
[    1.190325] calling  pcied_init+0x0/0x50 @ 1
[    1.190352] initcall pcied_init+0x0/0x50 returned 0 after 18 usecs
[    1.190360] calling  vesafb_driver_init+0x0/0x11 @ 1
[    1.190399] initcall vesafb_driver_init+0x0/0x11 returned 0 after 29 usecs
[    1.190408] calling  efifb_driver_init+0x0/0x11 @ 1
[    1.190438] initcall efifb_driver_init+0x0/0x11 returned 0 after 20 usecs
[    1.190447] calling  intel_idle_init+0x0/0x4fe @ 1
[    1.190461] initcall intel_idle_init+0x0/0x4fe returned -19 after 5 usecs
[    1.190471] calling  acpi_processor_driver_init+0x0/0x87 @ 1
[    1.191525] initcall acpi_processor_driver_init+0x0/0x87 returned 0 after 1009 usecs
[    1.191540] calling  acpi_hed_driver_init+0x0/0xf @ 1
[    1.191682] initcall acpi_hed_driver_init+0x0/0xf returned 0 after 128 usecs
[    1.191691] calling  bgrt_init+0x0/0x9c @ 1
[    1.191704] initcall bgrt_init+0x0/0x9c returned -19 after 3 usecs
[    1.191713] calling  erst_init+0x0/0x2cf @ 1
[    1.191727] initcall erst_init+0x0/0x2cf returned 0 after 5 usecs
[    1.191736] calling  ghes_init+0x0/0x17b @ 1
[    1.191802] GHES: Failed to enable APEI firmware first mode.
[    1.191948] initcall ghes_init+0x0/0x17b returned 0 after 198 usecs
[    1.191957] calling  extlog_init+0x0/0x31d @ 1
[    1.191970] initcall extlog_init+0x0/0x31d returned -19 after 4 usecs
[    1.191979] calling  gpio_clk_driver_init+0x0/0x11 @ 1
[    1.192072] initcall gpio_clk_driver_init+0x0/0x11 returned 0 after 81 usecs
[    1.192081] calling  plt_clk_driver_init+0x0/0x11 @ 1
[    1.192111] initcall plt_clk_driver_init+0x0/0x11 returned 0 after 21 usecs
[    1.192119] calling  n_null_init+0x0/0x1d @ 1
[    1.192132] initcall n_null_init+0x0/0x1d returned 0 after 4 usecs
[    1.192140] calling  pty_init+0x0/0x1df @ 1
[    1.192565] initcall pty_init+0x0/0x1df returned 0 after 395 usecs
[    1.192580] calling  sysrq_init+0x0/0x67 @ 1
[    1.192603] initcall sysrq_init+0x0/0x67 returned 0 after 14 usecs
[    1.192612] calling  serial8250_init+0x0/0x130 @ 1
[    1.192620] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.213713] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.215578] initcall serial8250_init+0x0/0x130 returned 0 after 22409 usecs
[    1.215591] calling  serial_pci_driver_init+0x0/0x16 @ 1
[    1.215782] initcall serial_pci_driver_init+0x0/0x16 returned 0 after 177 usecs
[    1.215790] calling  exar_pci_driver_init+0x0/0x16 @ 1
[    1.215836] initcall exar_pci_driver_init+0x0/0x16 returned 0 after 35 usecs
[    1.215844] calling  dw8250_platform_driver_init+0x0/0x11 @ 1
[    1.215883] initcall dw8250_platform_driver_init+0x0/0x11 returned 0 after 29 usecs
[    1.215892] calling  hpet_init+0x0/0x58 @ 1
[    1.216388] initcall hpet_init+0x0/0x58 returned 0 after 474 usecs
[    1.216396] calling  agp_init+0x0/0x22 @ 1
[    1.216403] Linux agpgart interface v0.103
[    1.216472] initcall agp_init+0x0/0x22 returned 0 after 65 usecs
[    1.216480] calling  agp_amd64_mod_init+0x0/0xa @ 1
[    1.216655] initcall agp_amd64_mod_init+0x0/0xa returned -19 after 161 usecs
[    1.216663] calling  agp_intel_init+0x0/0x25 @ 1
[    1.216712] initcall agp_intel_init+0x0/0x25 returned 0 after 40 usecs
[    1.216723] calling  agp_sis_init+0x0/0x25 @ 1
[    1.216767] initcall agp_sis_init+0x0/0x25 returned 0 after 34 usecs
[    1.216775] calling  agp_via_init+0x0/0x25 @ 1
[    1.216820] initcall agp_via_init+0x0/0x25 returned 0 after 35 usecs
[    1.216828] calling  cn_proc_init+0x0/0x2f @ 1
[    1.216843] initcall cn_proc_init+0x0/0x2f returned 0 after 6 usecs
[    1.216854] calling  topology_sysfs_init+0x0/0x40 @ 1
[    1.216896] initcall topology_sysfs_init+0x0/0x40 returned 0 after 32 usecs
[    1.216904] calling  cacheinfo_sysfs_init+0x0/0x29 @ 1
[    1.217748] initcall cacheinfo_sysfs_init+0x0/0x29 returned 164 after 803 usecs
[    1.217761] calling  devcoredump_init+0x0/0x14 @ 1
[    1.217794] initcall devcoredump_init+0x0/0x14 returned 0 after 22 usecs
[    1.217803] calling  mac_hid_init+0x0/0x1d @ 1
[    1.217827] initcall mac_hid_init+0x0/0x1d returned 0 after 15 usecs
[    1.217836] calling  net_olddevs_init+0x0/0x4d @ 1
[    1.217859] initcall net_olddevs_init+0x0/0x4d returned 0 after 13 usecs
[    1.217867] calling  ledtrig_usb_init+0x0/0x26 @ 1
[    1.217884] initcall ledtrig_usb_init+0x0/0x26 returned 0 after 8 usecs
[    1.217893] calling  i8042_init+0x0/0x409 @ 1
[    1.218032] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.222141] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.222229] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.222646] initcall i8042_init+0x0/0x409 returned 0 after 4624 usecs
[    1.222657] calling  input_leds_init+0x0/0xf @ 1
[    1.222671] initcall input_leds_init+0x0/0xf returned 0 after 5 usecs
[    1.222680] calling  mousedev_init+0x0/0x74 @ 1
[    1.223450] mousedev: PS/2 mouse device common for all mice
[    1.223538] initcall mousedev_init+0x0/0x74 returned 0 after 823 usecs
[    1.223550] calling  atkbd_init+0x0/0x20 @ 1
[    1.223684] initcall atkbd_init+0x0/0x20 returned 0 after 121 usecs
[    1.223694] calling  cmos_init+0x0/0x61 @ 1
[    1.223878] rtc_cmos 00:00: RTC can wake from S4
[    1.224389] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    1.224492] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[    1.224582] initcall cmos_init+0x0/0x61 returned 0 after 856 usecs
[    1.224591] calling  intel_pstate_init+0x0/0x326 @ 1
[    1.224605] initcall intel_pstate_init+0x0/0x326 returned -19 after 4 usecs
[    1.224614] calling  ledtrig_cpu_init+0x0/0xb5 @ 1
[    1.224739] ledtrig-cpu: registered to indicate activity on CPUs
[    1.224805] initcall ledtrig_cpu_init+0x0/0xb5 returned 0 after 177 usecs
[    1.224814] calling  dmi_sysfs_init+0x0/0xad @ 1
[    1.225040] initcall dmi_sysfs_init+0x0/0xad returned 0 after 211 usecs
[    1.225049] calling  coreboot_table_acpi_init+0x0/0x11 @ 1
[    1.225209] initcall coreboot_table_acpi_init+0x0/0x11 returned 0 after 146 usecs
[    1.225218] calling  platform_memconsole_init+0x0/0x61 @ 1
[    1.225415] initcall platform_memconsole_init+0x0/0x61 returned 0 after 183 usecs
[    1.225425] calling  efi_load_efivars+0x0/0x5a @ 1
[    1.225439] initcall efi_load_efivars+0x0/0x5a returned 0 after 5 usecs
[    1.225447] calling  esrt_sysfs_init+0x0/0x29a @ 1
[    1.225459] initcall esrt_sysfs_init+0x0/0x29a returned -38 after 4 usecs
[    1.225467] calling  efi_capsule_loader_init+0x0/0x33 @ 1
[    1.225478] initcall efi_capsule_loader_init+0x0/0x33 returned -19 after 3 usecs
[    1.225486] calling  pmc_atom_init+0x0/0x229 @ 1
[    1.225523] initcall pmc_atom_init+0x0/0x229 returned -19 after 29 usecs
[    1.225531] calling  powercap_init+0x0/0x206 @ 1
[    1.225697] initcall powercap_init+0x0/0x206 returned 0 after 153 usecs
[    1.225708] calling  pm_check_save_msr+0x0/0x20 @ 1
[    1.225721] initcall pm_check_save_msr+0x0/0x20 returned 0 after 4 usecs
[    1.225730] calling  sock_diag_init+0x0/0x2f @ 1
[    1.225853] initcall sock_diag_init+0x0/0x2f returned 0 after 111 usecs
[    1.225863] calling  blackhole_init+0x0/0xf @ 1
[    1.225876] initcall blackhole_init+0x0/0xf returned 0 after 4 usecs
[    1.225885] calling  gre_offload_init+0x0/0x43 @ 1
[    1.225898] initcall gre_offload_init+0x0/0x43 returned 0 after 4 usecs
[    1.225907] calling  sysctl_ipv4_init+0x0/0x41 @ 1
[    1.226101] initcall sysctl_ipv4_init+0x0/0x41 returned 0 after 180 usecs
[    1.226110] calling  cubictcp_register+0x0/0x6c @ 1
[    1.226124] initcall cubictcp_register+0x0/0x6c returned 0 after 4 usecs
[    1.226133] calling  tls_register+0x0/0x6a @ 1
[    1.226147] initcall tls_register+0x0/0x6a returned 0 after 4 usecs
[    1.226155] calling  inet6_init+0x0/0x32d @ 1
[    1.226246] NET: Registered protocol family 10
[    1.227132] Segment Routing with IPv6
[    1.227340] initcall inet6_init+0x0/0x32d returned 0 after 1143 usecs
[    1.227352] calling  mip6_init+0x0/0xa8 @ 1
[    1.227358] mip6: Mobile IPv6
[    1.227421] initcall mip6_init+0x0/0xa8 returned 0 after 58 usecs
[    1.227431] calling  packet_init+0x0/0x3a @ 1
[    1.227438] NET: Registered protocol family 17
[    1.227506] initcall packet_init+0x0/0x3a returned 0 after 64 usecs
[    1.227515] calling  dcbnl_init+0x0/0x49 @ 1
[    1.227528] initcall dcbnl_init+0x0/0x49 returned 0 after 4 usecs
[    1.227536] calling  mpls_gso_init+0x0/0x27 @ 1
[    1.227543] mpls_gso: MPLS GSO support
[    1.227605] initcall mpls_gso_init+0x0/0x27 returned 0 after 58 usecs
[    1.227614] calling  mcheck_init_device+0x0/0xfe @ 1
[    1.228351] initcall mcheck_init_device+0x0/0xfe returned 0 after 700 usecs
[    1.228385] calling  dev_mcelog_init_device+0x0/0x45 @ 1
[    1.228693] initcall dev_mcelog_init_device+0x0/0x45 returned 0 after 292 usecs
[    1.228885] calling  mcheck_late_init+0x0/0x65 @ 1
[    1.228999] initcall mcheck_late_init+0x0/0x65 returned 0 after 35 usecs
[    1.229010] calling  severities_debugfs_init+0x0/0x36 @ 1
[    1.229028] initcall severities_debugfs_init+0x0/0x36 returned 0 after 9 usecs
[    1.229036] calling  threshold_init_device+0x0/0x49 @ 1
[    1.229048] initcall threshold_init_device+0x0/0x49 returned 0 after 3 usecs
[    1.229056] calling  microcode_init+0x0/0x1b8 @ 1
[    1.229226] microcode: CPU0: patch_level=0x05000119
[    1.229306] microcode: CPU1: patch_level=0x05000119
[    1.229690] microcode: Microcode Update Driver: v2.2.
[    1.229817] initcall microcode_init+0x0/0x1b8 returned 0 after 694 usecs
[    1.229965] calling  hpet_insert_resource+0x0/0x1f @ 1
[    1.229981] initcall hpet_insert_resource+0x0/0x1f returned 0 after 7 usecs
[    1.229991] calling  update_mp_table+0x0/0x3eb @ 1
[    1.230004] initcall update_mp_table+0x0/0x3eb returned 0 after 3 usecs
[    1.230013] calling  lapic_insert_resource+0x0/0x36 @ 1
[    1.230025] initcall lapic_insert_resource+0x0/0x36 returned 0 after 4 usecs
[    1.230035] calling  print_ICs+0x0/0x19a @ 1
[    1.230047] initcall print_ICs+0x0/0x19a returned 0 after 3 usecs
[    1.230056] calling  print_ipi_mode+0x0/0x29 @ 1
[    1.230062] Using IPI No-Shortcut mode
[    1.230125] initcall print_ipi_mode+0x0/0x29 returned 0 after 59 usecs
[    1.230134] calling  pat_memtype_list_init+0x0/0x2f @ 1
[    1.230195] initcall pat_memtype_list_init+0x0/0x2f returned 0 after 49 usecs
[    1.230203] calling  create_tlb_single_page_flush_ceiling+0x0/0x26 @ 1
[    1.230224] initcall create_tlb_single_page_flush_ceiling+0x0/0x26 returned 0 after 10 usecs
[    1.230235] calling  init_oops_id+0x0/0x50 @ 1
[    1.230251] initcall init_oops_id+0x0/0x50 returned 0 after 7 usecs
[    1.230260] calling  sched_clock_init_late+0x0/0x8e @ 1
[    1.230268] sched_clock: Marking stable (1229643077, 0)->(1336695889, -107052812)
[    1.230504] initcall sched_clock_init_late+0x0/0x8e returned 0 after 228 usecs
[    1.230511] calling  sched_init_debug+0x0/0x22 @ 1
[    1.230528] initcall sched_init_debug+0x0/0x22 returned 0 after 8 usecs
[    1.230536] calling  pm_qos_power_init+0x0/0x8c @ 1
[    1.231433] initcall pm_qos_power_init+0x0/0x8c returned 0 after 858 usecs
[    1.231445] calling  pm_debugfs_init+0x0/0x22 @ 1
[    1.231471] initcall pm_debugfs_init+0x0/0x22 returned 0 after 16 usecs
[    1.231480] calling  printk_late_init+0x0/0x96 @ 1
[    1.231494] initcall printk_late_init+0x0/0x96 returned 0 after 6 usecs
[    1.231502] calling  tk_debug_sleep_time_init+0x0/0x38 @ 1
[    1.231518] initcall tk_debug_sleep_time_init+0x0/0x38 returned 0 after 7 usecs
[    1.231525] calling  debugfs_kprobe_init+0x0/0xb7 @ 1
[    1.231554] initcall debugfs_kprobe_init+0x0/0xb7 returned 0 after 19 usecs
[    1.231561] calling  taskstats_init+0x0/0x32 @ 1
[    1.231593] registered taskstats version 1
[    1.231665] initcall taskstats_init+0x0/0x32 returned 0 after 93 usecs
[    1.231674] calling  clear_boot_tracer+0x0/0x23 @ 1
[    1.231684] initcall clear_boot_tracer+0x0/0x23 returned 0 after 2 usecs
[    1.231693] calling  load_system_certificate_list+0x0/0xc2 @ 1
[    1.231699] Loading compiled-in X.509 certificates
[    1.244554] Loaded X.509 cert 'Build time autogenerated kernel key: 62e6447c17e975e9975ffcf2cb9f1174cabc6430'
[    1.244728] initcall load_system_certificate_list+0x0/0xc2 returned 0 after 12714 usecs
[    1.244738] calling  fault_around_debugfs+0x0/0x31 @ 1
[    1.244765] initcall fault_around_debugfs+0x0/0x31 returned 0 after 17 usecs
[    1.244773] calling  max_swapfiles_check+0x0/0x8 @ 1
[    1.244784] initcall max_swapfiles_check+0x0/0x8 returned 0 after 3 usecs
[    1.244792] calling  init_zswap+0x0/0x3ae @ 1
[    1.244834] zswap: loaded using pool lzo/zbud
[    1.245228] initcall init_zswap+0x0/0x3ae returned 0 after 417 usecs
[    1.245237] calling  split_huge_pages_debugfs+0x0/0x31 @ 1
[    1.245254] initcall split_huge_pages_debugfs+0x0/0x31 returned 0 after 8 usecs
[    1.245262] calling  check_early_ioremap_leak+0x0/0x34 @ 1
[    1.245273] initcall check_early_ioremap_leak+0x0/0x34 returned 0 after 3 usecs
[    1.245282] calling  init_root_keyring+0x0/0xa @ 1
[    1.245314] initcall init_root_keyring+0x0/0xa returned 0 after 22 usecs
[    1.245322] calling  init_profile_hash+0x0/0x6c @ 1
[    1.245333] initcall init_profile_hash+0x0/0x6c returned 0 after 3 usecs
[    1.245340] calling  prandom_reseed+0x0/0x23 @ 1
[    1.245366] initcall prandom_reseed+0x0/0x23 returned 0 after 16 usecs
[    1.245374] calling  pci_resource_alignment_sysfs_init+0x0/0x14 @ 1
[    1.245397] initcall pci_resource_alignment_sysfs_init+0x0/0x14 returned 0 after 14 usecs
[    1.245405] calling  pci_sysfs_init+0x0/0x43 @ 1
[    1.246080] initcall pci_sysfs_init+0x0/0x43 returned 0 after 650 usecs
[    1.246090] calling  bert_init+0x0/0x1c3 @ 1
[    1.246103] initcall bert_init+0x0/0x1c3 returned 0 after 4 usecs
[    1.246110] calling  clk_debug_init+0x0/0x10a @ 1
[    1.246148] initcall clk_debug_init+0x0/0x10a returned 0 after 28 usecs
[    1.246156] calling  dmar_free_unused_resources+0x0/0x8f @ 1
[    1.246168] initcall dmar_free_unused_resources+0x0/0x8f returned 0 after 3 usecs
[    1.246177] calling  deferred_probe_initcall+0x0/0x20 @ 1
[    1.246216] initcall deferred_probe_initcall+0x0/0x20 returned 0 after 29 usecs
[    1.246224] calling  rtc_hctosys+0x0/0xe7 @ 1
[    1.246391] rtc_cmos 00:00: setting system clock to 2017-07-31 19:30:01 UTC (1501529401)
[    1.246470] initcall rtc_hctosys+0x0/0xe7 returned 0 after 232 usecs
[    1.246479] calling  firmware_memmap_init+0x0/0x29 @ 1
[    1.246632] initcall firmware_memmap_init+0x0/0x29 returned 0 after 140 usecs
[    1.246641] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    1.246653] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 3 usecs
[    1.246661] calling  efi_shutdown_init+0x0/0x2b @ 1
[    1.246673] initcall efi_shutdown_init+0x0/0x2b returned -19 after 2 usecs
[    1.246681] calling  pci_mmcfg_late_insert_resources+0x0/0x45 @ 1
[    1.246692] initcall pci_mmcfg_late_insert_resources+0x0/0x45 returned 0 after 3 usecs
[    1.246700] calling  tcp_congestion_default+0x0/0xf @ 1
[    1.246712] initcall tcp_congestion_default+0x0/0xf returned 0 after 4 usecs
[    1.246722] calling  software_resume+0x0/0x320 @ 1
[    1.246730] PM: Hibernation image not present or could not be loaded.
[    1.246738] initcall software_resume+0x0/0x320 returned -2 after 8 usecs
[    1.246748] calling  clk_disable_unused+0x0/0x100 @ 1
[    1.246761] initcall clk_disable_unused+0x0/0x100 returned 0 after 5 usecs
[    1.249400] Freeing unused kernel memory: 736K
[    1.249905] Write protecting the kernel text: 6248k
[    1.250207] Write protecting the kernel read-only data: 2208k
[    1.255942] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.271825] calling  init_autofs4_fs+0x0/0x21 [autofs4] @ 1
[    1.272228] initcall init_autofs4_fs+0x0/0x21 [autofs4] returned 0 after 311 usecs
[    1.281148] systemd[1]: systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    1.281862] systemd[1]: Detected architecture x86.
[    1.282001] systemd[1]: Running in initial RAM disk.
[    1.282675] systemd[1]: Set hostname to <kodi>.
[    1.446917] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.448041] systemd[1]: Listening on udev Control Socket.
[    1.449154] systemd[1]: Created slice System Slice.
[    1.449782] systemd[1]: Reached target Slices.
[    1.450368] systemd[1]: Reached target Swap.
[    1.451187] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.974976] calling  init_scsi+0x0/0x73 [scsi_mod] @ 165
[    1.975463] SCSI subsystem initialized
[    1.975622] initcall init_scsi+0x0/0x73 [scsi_mod] returned 0 after 533 usecs
[    1.991828] calling  ata_init+0x0/0x2d9 [libata] @ 165
[    1.992771] libata version 3.00 loaded.
[    1.992873] initcall ata_init+0x0/0x2d9 [libata] returned 0 after 918 usecs
[    2.011382] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 165
[    2.011468] ahci 0000:00:11.0: version 3.0
[    2.013942] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    2.014029] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio slum part 
[    2.021470] calling  usb_init+0x0/0x140 [usbcore] @ 161
[    2.021577] ACPI: bus type USB registered
[    2.021796] usbcore: registered new interface driver usbfs
[    2.021962] usbcore: registered new interface driver hub
[    2.022185] usbcore: registered new device driver usb
[    2.022341] initcall usb_init+0x0/0x140 [usbcore] returned 0 after 749 usecs
[    2.045370] scsi host0: ahci
[    2.054982] scsi host1: ahci
[    2.059267] calling  ehci_hcd_init+0x0/0x1000 [ehci_hcd] @ 169
[    2.059333] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.059439] initcall ehci_hcd_init+0x0/0x1000 [ehci_hcd] returned 0 after 93 usecs
[    2.066755] scsi host2: ahci
[    2.081089] scsi host3: ahci
[    2.083624] calling  ehci_pci_init+0x0/0x1000 [ehci_pci] @ 160
[    2.083704] ehci-pci: EHCI PCI platform driver
[    2.094232] calling  ohci_hcd_mod_init+0x0/0x1000 [ohci_hcd] @ 168
[    2.094312] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.094410] initcall ohci_hcd_mod_init+0x0/0x1000 [ohci_hcd] returned 0 after 90 usecs
[    2.101775] scsi host4: ahci
[    2.111841] scsi host5: ahci
[    2.112410] ata1: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b100 irq 19
[    2.112487] ata2: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b180 irq 19
[    2.112558] ata3: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b200 irq 19
[    2.112630] ata4: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b280 irq 19
[    2.114903] ata5: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b300 irq 19
[    2.114981] ata6: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b380 irq 19
[    2.117598] QUIRK: Enable AMD PLL fix
[    2.117730] ehci-pci 0000:00:12.2: EHCI Host Controller
[    2.117813] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[    2.117893] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.117977] ehci-pci 0000:00:12.2: debug port 1
[    2.118114] ehci-pci 0000:00:12.2: irq 17, io mem 0xf014c000
[    2.118342] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 104418 usecs
[    2.131930] calling  serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 166
[    2.132528] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] returned 0 after 477 usecs
[    2.136515] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.136814] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.136947] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.137017] usb usb1: Product: EHCI Host Controller
[    2.137075] usb usb1: Manufacturer: Linux 4.13.0-rc3+ ehci_hcd
[    2.137135] usb usb1: SerialNumber: 0000:00:12.2
[    2.137631] hub 1-0:1.0: USB hub found
[    2.137781] hub 1-0:1.0: 5 ports detected
[    2.139240] ehci-pci 0000:00:13.2: EHCI Host Controller
[    2.139323] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    2.139404] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.139490] ehci-pci 0000:00:13.2: debug port 1
[    2.139606] ehci-pci 0000:00:13.2: irq 17, io mem 0xf014d000
[    2.152174] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.152445] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    2.152522] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.152592] usb usb2: Product: EHCI Host Controller
[    2.152650] usb usb2: Manufacturer: Linux 4.13.0-rc3+ ehci_hcd
[    2.152710] usb usb2: SerialNumber: 0000:00:13.2
[    2.153183] hub 2-0:1.0: USB hub found
[    2.153333] hub 2-0:1.0: 5 ports detected
[    2.154148] initcall ehci_pci_init+0x0/0x1000 [ehci_pci] returned 0 after 68789 usecs
[    2.176082] tsc: Refined TSC clocksource calibration: 1599.998 MHz
[    2.176168] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x17102307eab, max_idle_ns: 440795204679 ns
[    2.181189] calling  ohci_pci_init+0x0/0x1000 [ohci_pci] @ 168
[    2.181268] ohci-pci: OHCI PCI platform driver
[    2.182058] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    2.182135] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[    2.182290] ohci-pci 0000:00:12.0: irq 18, io mem 0xf0148000
[    2.244664] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.244809] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.244879] usb usb3: Product: OHCI PCI host controller
[    2.244939] usb usb3: Manufacturer: Linux 4.13.0-rc3+ ohci_hcd
[    2.244999] usb usb3: SerialNumber: 0000:00:12.0
[    2.245486] hub 3-0:1.0: USB hub found
[    2.245637] hub 3-0:1.0: 5 ports detected
[    2.252384] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    2.252484] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
[    2.252634] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[    2.316458] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.316604] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.316675] usb usb4: Product: OHCI PCI host controller
[    2.316733] usb usb4: Manufacturer: Linux 4.13.0-rc3+ ohci_hcd
[    2.316793] usb usb4: SerialNumber: 0000:00:13.0
[    2.317666] hub 4-0:1.0: USB hub found
[    2.317830] hub 4-0:1.0: 5 ports detected
[    2.319124] ohci-pci 0000:00:14.5: OHCI PCI host controller
[    2.319199] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 5
[    2.319341] ohci-pci 0000:00:14.5: irq 18, io mem 0xf014a000
[    2.380239] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.380383] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.380453] usb usb5: Product: OHCI PCI host controller
[    2.380512] usb usb5: Manufacturer: Linux 4.13.0-rc3+ ohci_hcd
[    2.380571] usb usb5: SerialNumber: 0000:00:14.5
[    2.381189] hub 5-0:1.0: USB hub found
[    2.382135] hub 5-0:1.0: 2 ports detected
[    2.382766] initcall ohci_pci_init+0x0/0x1000 [ohci_pci] returned 0 after 196766 usecs
[    2.428012] ata2: SATA link down (SStatus 0 SControl 300)
[    2.428175] ata3: SATA link down (SStatus 0 SControl 300)
[    2.438625] ata5: SATA link down (SStatus 0 SControl 300)
[    2.438770] ata6: SATA link down (SStatus 0 SControl 300)
[    2.438879] ata4: SATA link down (SStatus 0 SControl 300)
[    2.588373] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.589211] ata1.00: ATA-9: SanDisk SDSSDP064G, 2.0.0, max UDMA/133
[    2.589370] ata1.00: 125045424 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    2.590229] ata1.00: Security Log not supported
[    2.591025] ata1.00: Security Log not supported
[    2.591116] ata1.00: configured for UDMA/133
[    2.591671] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SDSSDP06 0    PQ: 0 ANSI: 5
[    2.628089] usb 3-4: new low-speed USB device number 2 using ohci-pci
[    2.656381] calling  init_sd+0x0/0x1000 [sd_mod] @ 161
[    2.658257] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[    2.658436] sd 0:0:0:0: [sda] Write Protect is off
[    2.658498] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.658536] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.659942] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 3392 usecs
[    2.660112]  sda: sda1
[    2.661165] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.813499] usb 3-4: New USB device found, idVendor=1241, idProduct=1122
[    2.813578] usb 3-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.833846] calling  hid_init+0x0/0x52 [hid] @ 230
[    2.836239] hidraw: raw HID events driver (C) Jiri Kosina
[    2.836344] initcall hid_init+0x0/0x52 [hid] returned 0 after 2347 usecs
[    2.843481] calling  fscrypt_init+0x0/0x1000 [fscrypto] @ 231
[    2.843706] initcall fscrypt_init+0x0/0x1000 [fscrypto] returned 0 after 158 usecs
[    2.852573] calling  hid_init+0x0/0x1000 [usbhid] @ 230
[    2.856490] calling  journal_init+0x0/0x837 [jbd2] @ 231
[    2.856695] initcall journal_init+0x0/0x837 [jbd2] returned 0 after 168 usecs
[    2.861392] usbcore: registered new interface driver usbhid
[    2.861539] usbhid: USB HID core driver
[    2.861611] initcall hid_init+0x0/0x1000 [usbhid] returned 0 after 8736 usecs
[    2.865087] calling  mbcache_init+0x0/0x1000 [mbcache] @ 231
[    2.865184] initcall mbcache_init+0x0/0x1000 [mbcache] returned 0 after 15 usecs
[    2.876129] calling  hid_generic_init+0x0/0x1000 [hid_generic] @ 230
[    2.877218] input: HID 1241:1122 as /devices/pci0000:00/0000:00:12.0/usb3/3-4/3-4:1.0/0003:1241:1122.0001/input/input2
[    2.878542] hid-generic 0003:1241:1122.0001: input,hidraw0: USB HID v1.00 Mouse [HID 1241:1122] on usb-0000:00:12.0-4/input0
[    2.878851] initcall hid_generic_init+0x0/0x1000 [hid_generic] returned 0 after 2575 usecs
[    2.905790] calling  ext4_init_fs+0x0/0x147 [ext4] @ 231
[    2.906072] initcall ext4_init_fs+0x0/0x147 [ext4] returned 0 after 208 usecs
[    2.918427] calling  crc32c_mod_init+0x0/0x1000 [crc32c_generic] @ 235
[    2.918636] initcall crc32c_mod_init+0x0/0x1000 [crc32c_generic] returned 0 after 189 usecs
[    2.943561] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    3.200390] clocksource: Switched to clocksource tsc
[    3.483547] systemd-journald[100]: Received SIGTERM from PID 1 (systemd).
[    3.589225] systemd: 23 output lines suppressed due to ratelimiting
[    3.777114] calling  xt_init+0x0/0x1000 [x_tables] @ 1
[    3.777150] initcall xt_init+0x0/0x1000 [x_tables] returned 0 after 20 usecs
[    3.788355] calling  ip_tables_init+0x0/0x1000 [ip_tables] @ 1
[    3.788385] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.788461] initcall ip_tables_init+0x0/0x1000 [ip_tables] returned 0 after 91 usecs
[    4.189395] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    4.320459] systemd-journald[295]: Received request to flush runtime journal from PID 1
[    4.560549] calling  acpi_button_driver_init+0x0/0x1000 [button] @ 321
[    4.560777] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[    4.561269] ACPI: Power Button [PWRB]
[    4.561521] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[    4.561691] ACPI: Power Button [PWRF]
[    4.561807] initcall acpi_button_driver_init+0x0/0x1000 [button] returned 0 after 1214 usecs
[    4.578554] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 326
[    4.578789] acpi_cpufreq: overriding BIOS provided _PSD data
[    4.579165] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned 0 after 582 usecs
[    4.590380] calling  pcc_cpufreq_init+0x0/0xea6 [pcc_cpufreq] @ 325
[    4.590420] initcall pcc_cpufreq_init+0x0/0xea6 [pcc_cpufreq] returned -19 after 26 usecs
[    4.618188] calling  acpi_thermal_init+0x0/0x1000 [thermal] @ 322
[    4.619299] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    4.619685] thermal LNXTHERM:00: registered as thermal_zone0
[    4.619814] ACPI: Thermal Zone [TZ00] (60 C)
[    4.621556] initcall acpi_thermal_init+0x0/0x1000 [thermal] returned 0 after 3270 usecs
[    4.682402] calling  init_soundcore+0x0/0x1000 [soundcore] @ 322
[    4.682438] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 22 usecs
[    4.716193] calling  init_sg+0x0/0x1000 [sg] @ 325
[    4.717957] calling  piix4_driver_init+0x0/0x1000 [i2c_piix4] @ 327
[    4.718114] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    4.718201] piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
[    4.718672] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0x8060
[    4.718867] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.719005] initcall init_sg+0x0/0x1000 [sg] returned 0 after 2732 usecs
[    4.724442] initcall piix4_driver_init+0x0/0x1000 [i2c_piix4] returned 0 after 6314 usecs
[    4.777257] calling  alsa_sound_init+0x0/0x77 [snd] @ 322
[    4.777336] initcall alsa_sound_init+0x0/0x77 [snd] returned 0 after 56 usecs
[    4.794597] calling  alsa_timer_init+0x0/0x1000 [snd_timer] @ 329
[    4.832149] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 36647 usecs
[    4.835068] calling  sp5100_tco_init_module+0x0/0x1000 [sp5100_tco] @ 327
[    4.835078] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
[    4.835390] sp5100_tco: PCI Vendor ID: 0x1002, Device ID: 0x4385, Revision ID: 0x42
[    4.835467] sp5100_tco: I/O address 0x0cd6 already in use
[    4.835550] initcall sp5100_tco_init_module+0x0/0x1000 [sp5100_tco] returned 0 after 456 usecs
[    4.846767] calling  evdev_init+0x0/0x1000 [evdev] @ 318
[    4.856966] calling  psmouse_init+0x0/0x76 [psmouse] @ 321
[    4.857089] initcall psmouse_init+0x0/0x76 [psmouse] returned 0 after 100 usecs
[    4.882794] calling  shpcd_init+0x0/0x1000 [shpchp] @ 323
[    4.882869] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    4.883016] initcall shpcd_init+0x0/0x1000 [shpchp] returned 0 after 201 usecs
[    4.886210] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 38497 usecs
[    4.900980] calling  k10temp_driver_init+0x0/0x1000 [k10temp] @ 330
[    4.901213] initcall k10temp_driver_init+0x0/0x1000 [k10temp] returned 0 after 214 usecs
[    4.903596] calling  pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] @ 320
[    4.903766] input: PC Speaker as /devices/platform/pcspkr/input/input6
[    4.907320] calling  alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 329
[    4.907356] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 13 usecs
[    4.910751] initcall pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] returned 0 after 6965 usecs
[    4.974989] calling  pcsp_init+0x0/0x1000 [snd_pcsp] @ 320
[    4.975004] Error: Driver 'pcspkr' is already registered, aborting...
[    4.975130] initcall pcsp_init+0x0/0x1000 [snd_pcsp] returned -16 after 122 usecs
[    5.027182] calling  alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 322
[    5.027210] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 13 usecs
[    5.137145] calling  rtl8169_pci_driver_init+0x0/0x1000 [r8169] @ 318
[    5.137216] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    5.144127] r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xf80e5000, bc:5f:f4:c8:d3:98, XID 0c200000 IRQ 26
[    5.144217] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    5.145300] initcall rtl8169_pci_driver_init+0x0/0x1000 [r8169] returned 0 after 7940 usecs
[    5.181428] calling  hda_bus_init+0x0/0xa [snd_hda_core] @ 322
[    5.181485] initcall hda_bus_init+0x0/0xa [snd_hda_core] returned 0 after 33 usecs
[    5.248781] calling  drm_core_init+0x0/0xc1 [drm] @ 326
[    5.249074] initcall drm_core_init+0x0/0xc1 [drm] returned 0 after 240 usecs
[    5.264735] calling  svm_init+0x0/0xd5a [kvm_amd] @ 324
[    5.268461] kvm: Nested Virtualization enabled
[    5.269014] initcall svm_init+0x0/0xd5a [kvm_amd] returned 0 after 4155 usecs
[    5.300589] calling  drm_kms_helper_init+0x0/0x10 [drm_kms_helper] @ 326
[    5.300667] initcall drm_kms_helper_init+0x0/0x10 [drm_kms_helper] returned 0 after 1 usecs
[    5.319638] calling  azx_driver_init+0x0/0xfe5 [snd_hda_intel] @ 329
[    5.323696] initcall azx_driver_init+0x0/0xfe5 [snd_hda_intel] returned 0 after 3932 usecs
[    5.358065] calling  hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] @ 350
[    5.365538] initcall hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] returned 0 after 7272 usecs
[    5.366946] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input7
[    5.370433] calling  generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] @ 351
[    5.370497] initcall generic_driver_init+0x0/0x1000 [snd_hda_codec_generic] returned 0 after 44 usecs
[    5.393523] calling  realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] @ 351
[    5.393977] snd_hda_codec_realtek hdaudioC1D0: ALC892: SKU not ready 0x00000100
[    5.394663] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x16/0x15/0x17/0x0) type:line
[    5.394668] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.394672] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    5.394682] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    5.394686] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[    5.394688] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    5.394694] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    5.394698] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    5.394702] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    5.394706] snd_hda_codec_realtek hdaudioC1D0:      CD=0x1c
[    5.425366] initcall realtek_driver_init+0x0/0x1000 [snd_hda_codec_realtek] returned 0 after 31065 usecs
[    5.426422] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
[    5.428854] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[    5.429276] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[    5.429500] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
[    5.429772] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input12
[    5.430031] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input13
[    5.430262] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input14
[    5.430497] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card1/input15
[    5.430722] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input16
[    5.460641] r8169 0000:03:00.0 enp3s0: renamed from eth0
[    5.505647] calling  ttm_init+0x0/0x1000 [ttm] @ 326
[    5.505998] initcall ttm_init+0x0/0x1000 [ttm] returned 0 after 320 usecs
[    5.521294] r8169 0000:03:00.0: Direct firmware load for rtl_nic/rtl8168e-2.fw failed with error -2
[    5.521406] r8169 0000:03:00.0 enp3s0: unable to load firmware patch rtl_nic/rtl8168e-2.fw (-2)
[    5.545773] r8169 0000:03:00.0 enp3s0: link down
[    5.545865] r8169 0000:03:00.0 enp3s0: link down
[    5.560350] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[    5.803254] calling  radeon_init+0x0/0xa5 [radeon] @ 326
[    5.803266] [drm] radeon kernel modesetting enabled.
[    5.808403] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x1002:0x9802 0x00).
[    5.808606] ATOM BIOS: AMD
[    5.808752] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
[    5.808891] radeon 0000:00:01.0: GTT: 1024M 0x0000000018000000 - 0x0000000057FFFFFF
[    5.808966] [drm] Detected VRAM RAM=384M, BAR=256M
[    5.809022] [drm] RAM width 32bits DDR
[    5.875097] [TTM] Zone  kernel: Available graphics memory: 418290 kiB
[    5.875220] [TTM] Zone highmem: Available graphics memory: 1601106 kiB
[    5.875278] [TTM] Initializing pool allocator
[    5.875345] [TTM] Initializing DMA pool allocator
[    5.875468] [drm] radeon: 384M of VRAM memory ready
[    5.875596] [drm] radeon: 1024M of GTT memory ready.
[    5.875679] [drm] Loading PALM Microcode
[    5.894265] [drm] Internal thermal controller without fan control
[    5.894572] [drm] Found smc ucode version: 0x00010601
[    5.894815] [drm] radeon: dpm initialized
[    5.901265] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    5.927917] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[    5.931616] radeon 0000:00:01.0: WB enabled
[    5.931624] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000018000c00 and cpu addr 0xff8e5c00
[    5.931629] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000018000c0c and cpu addr 0xff8e5c0c
[    5.932518] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xf8e32118
[    5.932699] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.932758] [drm] Driver supports precise vblank timestamp query.
[    5.932817] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
[    5.933045] radeon 0000:00:01.0: radeon: using MSI.
[    5.938521] [drm] radeon: irq initialized.
[    5.960558] [drm] ring test on 0 succeeded in 1 usecs
[    5.960706] [drm] ring test on 3 succeeded in 3 usecs
[    6.006688] [drm] ring test on 5 succeeded in 1 usecs
[    6.027105] [drm] UVD initialized successfully.
[    6.027918] [drm] ib test on ring 0 succeeded in 0 usecs
[    6.028265] [drm] ib test on ring 3 succeeded in 0 usecs
[    6.560499] [drm] ib test on ring 5 succeeded
[    6.581793] [drm] Radeon Display Connectors
[    6.581920] [drm] Connector 0:
[    6.581972] [drm]   HDMI-A-1
[    6.582024] [drm]   HPD1
[    6.582078] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[    6.582146] [drm]   Encoders:
[    6.582198] [drm]     DFP1: INTERNAL_UNIPHY
[    6.582253] [drm] Connector 1:
[    6.582305] [drm]   HDMI-A-2
[    6.582357] [drm]   HPD2
[    6.582410] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    6.582477] [drm]   Encoders:
[    6.582529] [drm]     DFP2: INTERNAL_UNIPHY
[    6.582584] [drm] Connector 2:
[    6.582635] [drm]   VGA-1
[    6.582688] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    6.582756] [drm]   Encoders:
[    6.582808] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    6.621689] [drm] fb mappable at 0xE0366000
[    6.621827] [drm] vram apper at 0xE0000000
[    6.621882] [drm] size 5242880
[    6.621935] [drm] fb depth is 24
[    6.621987] [drm]    pitch is 5120
[    6.622573] fbcon: radeondrmfb (fb0) is primary device
[    6.675715] Console: switching to colour frame buffer device 160x64
[    6.685109] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
[    6.700364] [drm] Initialized radeon 2.50.0 20080528 for 0000:00:01.0 on minor 0
[    6.708786] initcall radeon_init+0x0/0xa5 [radeon] returned 0 after 884196 usecs
[    8.060435] r8169 0000:03:00.0 enp3s0: link up
[    8.060469] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
[   10.267257] random: crng init done

[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux