[systemd-devel] How to reduce time to between Linux’ `run_init_process()` and systemd banner?
Paul Menzel
pmenzel+systemd-devel at molgen.mpg.de
Fri Jul 13 18:22:08 UTC 2018
Dear systemd folks,
I forgot to attach the logs.
Am 13.07.2018 um 20:20 schrieb Paul Menzel:
> Trying to decrease the boot time, I got rid of the initrd. Now, there
> is a noticeable delay between Linux `run_init_process()` and the first
> systemd message.
>
> I added an output line to the Linux function.
>
> ```
> static int run_init_process(const char *init_filename)
> {
> argv_init[0] = init_filename;
>
> pr_info("Run %s as init process\n", init_filename);
> return do_execve(getname_kernel(init_filename),
> (const char __user *const __user *)argv_init,
> (const char __user *const __user *)envp_init);
> }
> ```
>
> Here you see the result on a system (ASRock E350M1) with an SDD
> (spinning).
>
> ```
> [ 0.287632] Run /sbin/init as init process
> [ 0.547261] systemd[1]: systemd 239 running in system mode. (+PAM
> +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP
> +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN
> -PCRE2 default-hierarchy=hybrid)
> ```
>
> The systemd binary is only 2.3 MB in size, so I do not think that
> this is the loading time.
>
> $ ls -lh /lib/systemd/systemd
> -rwxr-xr-x 2 root root 2.3M Mar 12 13:44 /lib/systemd/systemd
>
> Is there a way, to get a message from systemd as early as possible
> to see where the time is spent?
>
> `log_execution_mode(&first_boot)` is not at the beginning in
> `main()` in `src/core/main.c`. I guess the “console” needs to be
> set up first?
>
> Any help is appreciated.
Kind regards,
Paul
-------------- next part --------------
[ 0.000000] Linux version 4.18.0-rc4-00097-g33ec366fda95 (root at f2fc51708d66) (gcc version 7.3.0 (Debian 7.3.0-24)) #96 SMP Fri Jul 13 15:26:28 UTC 2018
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] type 16
[ 0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c7d3bfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c7d3c000-0x00000000c7ffffff] type 16
[ 0.000000] BIOS-e820: [mem 0x00000000c8000000-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] SMBIOS 2.7 present.
[ 0.000000] DMI: ASROCK E350M1/E350M1, BIOS TIMELESS 01/01/1970
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] last_pfn = 0xc7d3c 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 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 1 base 0C0000000 mask FF8000000 write-back
[ 0.000000] 2 base 080000000 mask FC0000000 write-back
[ 0.000000] 3 base 000000000 mask F80000000 write-back
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] TOM2: 000000011f000000 aka 4592M
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] initial memory mapped: [mem 0x00000000-0x0fffffff]
[ 0.000000] Base memory trampoline at [(ptrval)] 9b000 size 16384
[ 0.000000] BRK [0x0fc61000, 0x0fc61fff] PGTABLE
[ 0.000000] log_buf_len: 33554432 bytes
[ 0.000000] early log buf free: 259860(99%)
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0800 000024 (v02 CORE )
[ 0.000000] ACPI: XSDT 0x00000000C7D4D0E0 00006C (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: FACP 0x00000000C7D4F850 0000F4 (v04 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: DSDT 0x00000000C7D4D280 0025C7 (v02 ASROCK COREBOOT 00010001 INTL 20180629)
[ 0.000000] ACPI: FACS 0x00000000C7D4D240 000040
[ 0.000000] ACPI: FACS 0x00000000C7D4D240 000040
[ 0.000000] ACPI: SSDT 0x00000000C7D4F950 00008A (v02 CORE COREBOOT 0000002A CORE 0000002A)
[ 0.000000] ACPI: TCPA 0x00000000C7D4F9E0 000032 (v02 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: APIC 0x00000000C7D4FA20 00005C (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: HEST 0x00000000C7D4FA80 000028 (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: SSDT 0x00000000C7D4FAB0 00168E (v02 AMD ALIB 00000001 MSFT 04000000)
[ 0.000000] ACPI: SSDT 0x00000000C7D51140 0003DE (v01 AMD POWERNOW 00000001 AMD 00000001)
[ 0.000000] ACPI: VFCT 0x00000000C7D51520 00E269 (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: HPET 0x00000000C7D5F790 000038 (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 2313MB HIGHMEM available.
[ 0.000000] 883MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 373fe000
[ 0.000000] low ram: 0 - 373fe000
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] BRK [0x0fc62000, 0x0fc62fff] PGTABLE
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] Normal [mem 0x0000000001000000-0x00000000373fdfff]
[ 0.000000] HighMem [mem 0x00000000373fe000-0x00000000c7d3bfff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000c7d3bfff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000000c7d3bfff]
[ 0.000000] On node 0 totalpages: 818395
[ 0.000000] DMA zone: 40 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3999 pages, LIFO batch:0
[ 0.000000] Normal zone: 2170 pages used for memmap
[ 0.000000] Normal zone: 222206 pages, LIFO batch:31
[ 0.000000] HighMem zone: 592190 pages, LIFO batch:31
[ 0.000000] Reserved but unavailable: 97 pages
[ 0.000000] Using APIC driver default
[ 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 0x000a0000-0x000bffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.000000] random: get_random_bytes called from start_kernel+0x7d/0x497 with crng_init=0
[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] percpu: Embedded 29 pages/cpu @(ptrval) s88204 r0 d30580 u118784
[ 0.000000] pcpu-alloc: s88204 r0 d30580 u118784 alloc=29*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 816185
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.18.0-rc4-00097-g33ec366fda95 root=/dev/sda1 ro noisapnp cryptomgr.notests quiet memory_corruption_check=1 memory_corruption_check_size=512k memory_corruption_check_period=5 iomem=relaxed apparmor=0 log_buf_len=32M trace_buf_size=8070K 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=5 ftrace_graph_filter=run_init_process
[ 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] BRK [0x0fc63000, 0x0fc63fff] PGTABLE
[ 0.000000] Initializing CPU#0
[ 0.000000] Initializing HighMem for node 0 (000373fe:000c7d3c)
[ 0.000000] Initializing Movable for node 0 (00000000:00000000)
[ 0.000000] Memory: 3194576K/3273580K available (7796K kernel code, 721K rwdata, 2380K rodata, 772K init, 620K bss, 79004K reserved, 0K cma-reserved, 2368760K highmem)
[ 0.000000] virtual kernel memory layout:
fixmap : 0xfff17000 - 0xfffff000 ( 928 kB)
cpu_entry : 0xff800000 - 0xff939000 (1252 kB)
pkmap : 0xff400000 - 0xff800000 (4096 kB)
vmalloc : 0xf7bfe000 - 0xff3fe000 ( 120 MB)
lowmem : 0xc0000000 - 0xf73fe000 ( 883 MB)
.init : 0xcfabc000 - 0xcfb7d000 ( 772 kB)
.data : 0xcf79d27c - 0xcfaaa760 (3125 kB)
.text : 0xcf000000 - 0xcf79d27c (7796 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] ftrace: allocating 30748 entries in 61 pages
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU event tracing is enabled.
[ 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=(ptrval) soft=(ptrval)
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] ACPI: Core revision 20180531
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] APIC: Switch to symmetric I/O mode setup
[ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.000000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.005000] tsc: Fast TSC calibration using PIT
[ 0.006000] tsc: Detected 1600.042 MHz processor
[ 0.006000] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x17104c9647d, max_idle_ns: 440795231913 ns
[ 0.006000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3200.08 BogoMIPS (lpj=1600042)
[ 0.006000] pid_max: default: 32768 minimum: 301
[ 0.006000] Security Framework initialized
[ 0.006000] Yama: becoming mindful.
[ 0.006000] SELinux: Initializing.
[ 0.007027] SELinux: Starting in permissive mode
[ 0.007057] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.007064] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.007487] CPU: Physical Processor ID: 0
[ 0.007489] CPU: Processor Core ID: 0
[ 0.007494] mce: CPU supports 6 MCE banks
[ 0.007512] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[ 0.007514] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[ 0.007521] Spectre V2 : Mitigation: Full AMD retpoline
[ 0.007523] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
[ 0.007524] Speculative Store Bypass: Vulnerable
[ 0.007677] Freeing SMP alternatives memory: 32K
[ 0.007682] After acpi_subsystem_init
[ 0.007684] After arch_post_acpi_subsys_init
[ 0.007684] sfi_init_late()
[ 0.007686] After efi_enable, efi_free_boot_services
[ 0.007686] Before rest_init()
[ 0.007793] After set_cpus_allowed_ptr()
[ 0.007794] After numa_default_policy()
[ 0.007826] After kernel_thread
[ 0.007827] After kthreadd_task
[ 0.007833] After complete()
[ 0.008000] random: 1
[ 0.008000] random: 2
[ 0.008000] random: 3
[ 0.008000] random: 4
[ 0.026002] random: 1
[ 0.026003] random: 2
[ 0.026004] random: 3
[ 0.026005] random: 4
[ 0.090002] random: 1
[ 0.090003] random: 2
[ 0.090004] random: 3
[ 0.090004] random: 4
[ 0.109000] smpboot: CPU0: AMD E-350D APU with Radeon(tm) HD Graphics (family: 0x14, model: 0x2, stepping: 0x0)
[ 0.109000] Performance Events: AMD PMU driver.
[ 0.109000] ... version: 0
[ 0.109000] ... bit width: 48
[ 0.109000] ... generic registers: 4
[ 0.109000] ... value mask: 0000ffffffffffff
[ 0.109000] ... max period: 00007fffffffffff
[ 0.109000] ... fixed-purpose events: 0
[ 0.109000] ... event mask: 000000000000000f
[ 0.109000] Hierarchical SRCU implementation.
[ 0.109238] smp: Bringing up secondary CPUs ...
[ 0.110483] CPU 1 irqstacks, hard=(ptrval) soft=(ptrval)
[ 0.110487] x86: Booting SMP configuration:
[ 0.110489] .... node #0, CPUs: #1
[ 0.001000] Initializing CPU#1
[ 0.111047] schedule_preempt_disabled
[ 0.111072] smp: Brought up 1 node, 2 CPUs
[ 0.111072] smpboot: Max logical packages: 1
[ 0.111072] smpboot: Total of 2 processors activated (6400.16 BogoMIPS)
[ 0.112333] devtmpfs: initialized
[ 0.114094] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.114105] futex hash table entries: 512 (order: 2, 16384 bytes)
[ 0.114159] Starting tracer 'function_graph'
[ 0.400998] pinctrl core: initialized pinctrl subsystem
[ 0.401253] RTC time: 16:22:07, date: 07/13/18
[ 0.401626] NET: Registered protocol family 16
[ 0.402611] audit: initializing netlink subsys (disabled)
[ 0.403090] audit: type=2000 audit(1531498927.403:1): state=initialized audit_enabled=0 res=1
[ 0.403496] cpuidle: using governor menu
[ 0.404594] ACPI: bus type PCI registered
[ 0.404594] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.407975] PCI: Using configuration type 1 for base access
[ 0.407979] PCI: Using configuration type 1 for extended access
[ 0.408748] mtrr: your CPUs had inconsistent variable MTRR settings
[ 0.408751] mtrr: probably your BIOS does not setup all CPUs.
[ 0.408754] mtrr: corrected configuration.
[ 0.416163] HugeTLB registered 4.00 MiB page size, pre-allocated 0 pages
[ 0.417139] cryptd: max_cpu_qlen set to 1000
[ 0.417297] ACPI: Added _OSI(Module Device)
[ 0.417303] ACPI: Added _OSI(Processor Device)
[ 0.417309] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.417315] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.417322] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.442024] ACPI: 4 ACPI AML tables successfully acquired and loaded
[ 0.453056] ACPI: Interpreter enabled
[ 0.453201] ACPI: (supports S0 S1 S3 S4 S5)
[ 0.453206] ACPI: Using IOAPIC for interrupt routing
[ 0.453268] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[ 0.454228] ACPI: Enabled 19 GPEs in block 00 to 1F
[ 0.476948] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.476965] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.477594] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability LTR]
[ 0.477866] acpi PNP0A08:00: host bridge window [io 0x0cf8-0x0cff] (ignored)
[ 0.477872] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7 window] (ignored)
[ 0.477877] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff window] (ignored)
[ 0.477882] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[ 0.477887] acpi PNP0A08:00: host bridge window [mem 0xe0000000-0xffffffff] (ignored)
[ 0.477891] PCI: root bus 00: using default resources
[ 0.479547] PCI host bridge to bus 0000:00
[ 0.479555] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 0.479561] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[ 0.479568] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.479592] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
[ 0.480217] pci 0000:00:01.0: [1002:9802] type 00 class 0x030000
[ 0.480252] pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[ 0.480268] pci 0000:00:01.0: reg 0x14: [io 0x2000-0x20ff]
[ 0.480284] pci 0000:00:01.0: reg 0x18: [mem 0xf0100000-0xf013ffff]
[ 0.480333] pci 0000:00:01.0: enabling Extended Tags
[ 0.480411] pci 0000:00:01.0: supports D1 D2
[ 0.480966] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
[ 0.481015] pci 0000:00:01.1: reg 0x10: [mem 0xf0140000-0xf0143fff]
[ 0.481080] pci 0000:00:01.1: enabling Extended Tags
[ 0.481152] pci 0000:00:01.1: supports D1 D2
[ 0.481822] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[ 0.481862] pci 0000:00:11.0: reg 0x10: [io 0x2410-0x2417]
[ 0.481882] pci 0000:00:11.0: reg 0x14: [io 0x2420-0x2423]
[ 0.481901] pci 0000:00:11.0: reg 0x18: [io 0x2418-0x241f]
[ 0.481921] pci 0000:00:11.0: reg 0x1c: [io 0x2424-0x2427]
[ 0.481940] pci 0000:00:11.0: reg 0x20: [io 0x2400-0x240f]
[ 0.481960] pci 0000:00:11.0: reg 0x24: [mem 0xf014b000-0xf014b3ff]
[ 0.482634] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[ 0.482669] pci 0000:00:12.0: reg 0x10: [mem 0xf0148000-0xf0148fff]
[ 0.483394] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[ 0.483435] pci 0000:00:12.2: reg 0x10: [mem 0xf014c000-0xf014c0ff]
[ 0.483587] pci 0000:00:12.2: supports D1 D2
[ 0.483592] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[ 0.483596] pci 0000:00:12.2: pme_poll = true
[ 0.483600] pci 0000:00:12.2: after device_set_wakeup_capable()
[ 0.483610] pci 0000:00:12.2: after pci_pme_active()
[ 0.484236] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[ 0.484270] pci 0000:00:13.0: reg 0x10: [mem 0xf0149000-0xf0149fff]
[ 0.484977] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[ 0.485032] pci 0000:00:13.2: reg 0x10: [mem 0xf014d000-0xf014d0ff]
[ 0.485183] pci 0000:00:13.2: supports D1 D2
[ 0.485188] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[ 0.485193] pci 0000:00:13.2: pme_poll = true
[ 0.485197] pci 0000:00:13.2: after device_set_wakeup_capable()
[ 0.485206] pci 0000:00:13.2: after pci_pme_active()
[ 0.485826] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[ 0.486562] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[ 0.486609] pci 0000:00:14.2: reg 0x10: [mem 0xf0144000-0xf0147fff 64bit]
[ 0.486739] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[ 0.486743] pci 0000:00:14.2: pme_poll = true
[ 0.486748] pci 0000:00:14.2: after device_set_wakeup_capable()
[ 0.486757] pci 0000:00:14.2: after pci_pme_active()
[ 0.487370] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[ 0.488022] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[ 0.488708] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[ 0.488743] pci 0000:00:14.5: reg 0x10: [mem 0xf014a000-0xf014afff]
[ 0.489536] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
[ 0.489609] pci 0000:00:15.0: enabling Extended Tags
[ 0.489709] pci 0000:00:15.0: supports D1 D2
[ 0.490367] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
[ 0.490450] pci 0000:00:15.1: enabling Extended Tags
[ 0.490549] pci 0000:00:15.1: supports D1 D2
[ 0.491218] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
[ 0.491773] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
[ 0.492335] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
[ 0.492874] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
[ 0.493484] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
[ 0.494046] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
[ 0.494583] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
[ 0.495146] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
[ 0.495798] pci_bus 0000:01: extended config space not accessible
[ 0.496054] pci 0000:00:14.4: PCI bridge to [bus 01] (subtractive decode)
[ 0.496073] pci 0000:00:14.4: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.496079] pci 0000:00:14.4: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.496292] pci 0000:00:15.0: PCI bridge to [bus 02]
[ 0.496558] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
[ 0.496612] pci 0000:03:00.0: reg 0x10: [io 0x1000-0x10ff]
[ 0.496662] pci 0000:03:00.0: reg 0x18: [mem 0xf0004000-0xf0004fff 64bit pref]
[ 0.496695] pci 0000:03:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[ 0.496882] pci 0000:03:00.0: supports D1 D2
[ 0.496887] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.496891] pci 0000:03:00.0: pme_poll = true
[ 0.496895] pci 0000:03:00.0: after device_set_wakeup_capable()
[ 0.496905] pci 0000:03:00.0: after pci_pme_active()
[ 0.500131] pci 0000:00:15.1: PCI bridge to [bus 03]
[ 0.500222] pci 0000:00:15.1: bridge window [io 0x1000-0x1fff]
[ 0.500240] pci 0000:00:15.1: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.500294] pci_bus 0000:00: on NUMA node 0
[ 0.503295] ACPI: PCI Interrupt Link [INTA] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.503871] ACPI: PCI Interrupt Link [INTB] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.504448] ACPI: PCI Interrupt Link [INTC] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.505049] ACPI: PCI Interrupt Link [INTD] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.505625] ACPI: PCI Interrupt Link [INTE] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.506216] ACPI: PCI Interrupt Link [INTF] (IRQs 9) *0, disabled.
[ 0.506770] ACPI: PCI Interrupt Link [INTG] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.507306] ACPI: PCI Interrupt Link [INTH] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.508284] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[ 0.508284] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.508284] pci 0000:00:01.0: vgaarb: bridge control possible
[ 0.508284] vgaarb: loaded
[ 0.508341] SCSI subsystem initialized
[ 0.509114] libata version 3.00 loaded.
[ 0.509187] ACPI: bus type USB registered
[ 0.509286] usbcore: registered new interface driver usbfs
[ 0.509329] usbcore: registered new interface driver hub
[ 0.509394] usbcore: registered new device driver usb
[ 0.510062] PCI: Using ACPI for IRQ routing
[ 0.510069] PCI: pci_cache_line_size set to 64 bytes
[ 0.510262] e820: reserve RAM buffer [mem 0xc7d3c000-0xc7ffffff]
[ 0.510594] NetLabel: Initializing
[ 0.510594] NetLabel: domain hash size = 128
[ 0.510594] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.510594] NetLabel: unlabeled traffic allowed by default
[ 0.510858] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.510874] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.513097] clocksource: Switched to clocksource tsc-early
[ 0.596505] VFS: Disk quotas dquot_6.6.0
[ 0.596568] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.596799] pnp: PnP ACPI init
[ 0.598066] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.598305] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[ 0.598494] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.600006] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[ 0.600191] pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.600263] pnp: PnP ACPI: found 5 devices
[ 0.610584] pci 0000:00:14.4: PCI bridge to [bus 01]
[ 0.610613] pci 0000:00:15.0: PCI bridge to [bus 02]
[ 0.610635] pci 0000:00:15.1: PCI bridge to [bus 03]
[ 0.610643] pci 0000:00:15.1: bridge window [io 0x1000-0x1fff]
[ 0.610658] pci 0000:00:15.1: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.610675] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 0.610681] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[ 0.610687] pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
[ 0.610692] pci_bus 0000:01: resource 5 [mem 0x00000000-0xffffffff]
[ 0.610698] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
[ 0.610704] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.611058] NET: Registered protocol family 2
[ 0.611617] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
[ 0.611636] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.611671] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.611710] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.611805] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.611821] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.612048] NET: Registered protocol family 1
[ 0.612095] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.612112] pci 0000:00:01.1: Linked as a consumer to 0000:00:01.0
[ 0.620329] PCI: CLS 64 bytes, default 64
[ 0.621119] LVT offset 0 assigned for vector 0x400
[ 0.621204] perf: AMD IBS detected (0x000000ff)
[ 0.622259] Scanning for low memory corruption every 5 seconds
[ 0.622881] alg: self-tests disabled
[ 0.624749] Initialise system trusted keyrings
[ 0.625093] workingset: timestamp_bits=14 max_order=20 bucket_order=6
[ 0.633072] zbud: loaded
[ 0.634696] pstore: using deflate compression
[ 0.635022] SELinux: Registering netfilter hooks
[ 0.642170] NET: Registered protocol family 38
[ 0.642185] Key type asymmetric registered
[ 0.642189] Asymmetric key parser 'x509' registered
[ 0.642250] bounce: pool size: 64 pages
[ 0.642324] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 0.642456] io scheduler noop registered
[ 0.642460] io scheduler deadline registered
[ 0.642721] io scheduler cfq registered (default)
[ 0.642726] io scheduler mq-deadline registered
[ 0.642731] io scheduler kyber registered
[ 0.646275] pcieport 0000:00:15.0: Signaling PME with IRQ 24
[ 0.646357] pcieport 0000:00:15.1: Signaling PME with IRQ 25
[ 0.646829] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.646892] ACPI: Power Button [PWRB]
[ 0.647098] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.647132] ACPI: Power Button [PWRF]
[ 0.649866] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.649871] ACPI: Thermal Zone [TZ00] (53 C)
[ 0.650502] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.671590] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.682325] Non-volatile memory driver v1.3
[ 0.682626] Linux agpgart interface v0.103
[ 0.685009] ahci 0000:00:11.0: version 3.0
[ 0.686336] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[ 0.686344] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio slum part
[ 0.690346] scsi host0: ahci
[ 0.691213] scsi host1: ahci
[ 0.691874] scsi host2: ahci
[ 0.692553] scsi host3: ahci
[ 0.693224] scsi host4: ahci
[ 0.693840] scsi host5: ahci
[ 0.694111] ata1: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b100 irq 19
[ 0.694117] ata2: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b180 irq 19
[ 0.694123] ata3: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b200 irq 19
[ 0.694129] ata4: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b280 irq 19
[ 0.694135] ata5: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b300 irq 19
[ 0.694141] ata6: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b380 irq 19
[ 0.694505] libphy: Fixed MDIO Bus: probed
[ 0.694515] ata2: SATA link down (SStatus 0 SControl 0)
[ 0.694614] usbcore: registered new interface driver usbserial_generic
[ 0.694640] usbserial: USB Serial support registered for generic
[ 0.694739] ata3: SATA link down (SStatus 0 SControl 0)
[ 0.694810] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.694961] ata4: SATA link down (SStatus 0 SControl 0)
[ 0.695175] ata5: SATA link down (SStatus 0 SControl 0)
[ 0.695352] ata6: SATA link down (SStatus 0 SControl 0)
[ 0.698510] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.698529] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.699248] mousedev: PS/2 mouse device common for all mice
[ 0.700182] rtc_cmos 00:00: RTC can wake from S4
[ 0.700793] rtc_cmos 00:00: registered as rtc0
[ 0.700900] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[ 0.701037] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 0)
[ 0.701321] device-mapper: uevent: version 1.0.3
[ 0.701471] ata1.00: ATA-9: SanDisk SDSSDP064G, 2.0.0, max UDMA/133
[ 0.701478] ata1.00: 125045424 sectors, multi 1: LBA48 NCQ (depth 32)
[ 0.701853] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel at redhat.com
[ 0.702048] ata1.00: configured for UDMA/133
[ 0.702187] hidraw: raw HID events driver (C) Jiri Kosina
[ 0.702479] usbcore: registered new interface driver usbhid
[ 0.702483] usbhid: USB HID core driver
[ 0.702550] scsi 0:0:0:0: Direct-Access ATA SanDisk SDSSDP06 0 PQ: 0 ANSI: 5
[ 0.702986] Initializing XFRM netlink socket
[ 0.703363] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.703825] NET: Registered protocol family 10
[ 0.703997] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[ 0.704050] sd 0:0:0:0: [sda] Write Protect is off
[ 0.704057] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.704144] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.704702] Segment Routing with IPv6
[ 0.704772] mip6: Mobile IPv6
[ 0.704779] NET: Registered protocol family 17
[ 0.705937] Using IPI No-Shortcut mode
[ 0.705967] sched_clock: Marking stable (705231515, 0)->(803093073, -97861558)
[ 0.705993] sda: sda1
[ 0.707459] sd 0:0:0:0: [sda] Attached SCSI disk
[ 0.707480] registered taskstats version 1
[ 0.707487] Loading compiled-in X.509 certificates
[ 0.707559] zswap: loaded using pool lzo/zbud
[ 0.710609] Key type big_key registered
[ 0.711708] Magic number: 10:502:388
[ 0.712024] rtc_cmos 00:00: setting system clock to 2018-07-13 16:22:08 UTC (1531498928)
[ 0.727221] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 0.788597] random: 1
[ 0.788606] random: 2
[ 0.788612] random: 3
[ 0.788617] random: 4
[ 0.788625] random: fast init done
[ 0.800718] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 0.800762] VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
[ 0.803537] devtmpfs: mounted
[ 0.808116] Freeing unused kernel memory: 772K
[ 0.810783] Write protecting the kernel text: 7800k
[ 0.811201] Write protecting the kernel read-only data: 2400k
[ 0.811205] After mark_nxdata_nx()
[ 0.811207] After if statement
[ 0.811210] System state marked running.
[ 0.811213] After numa_default_policy().
[ 0.811216] After rcu_end_inkernel_boot().
[ 0.811219] After ramdisk_execute_command.
[ 0.811233] Run /sbin/init as init process
[ 1.101875] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 1.114523] systemd[1]: Detected architecture x86.
[ 1.121934] systemd[1]: Set hostname to <kodi>.
[ 1.515820] random: systemd: uninitialized urandom read (16 bytes read)
[ 1.516181] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 1.516335] random: systemd: uninitialized urandom read (16 bytes read)
[ 1.521160] systemd[1]: Created slice system-getty.slice.
[ 1.521253] random: systemd: uninitialized urandom read (16 bytes read)
[ 1.522265] systemd[1]: Created slice User and Session Slice.
[ 1.538592] systemd[1]: Listening on Process Core Dump Socket.
[ 1.538701] systemd[1]: Reached target Host and Network Name Lookups.
[ 1.539336] systemd[1]: Listening on Journal Socket.
[ 1.543654] systemd[1]: Mounting POSIX Message Queue File System...
[ 1.632583] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[ 1.632604] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[ 1.632668] clocksource: Switched to clocksource tsc
[ 1.646542] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 2.018630] systemd-journald[126]: Received request to flush runtime journal from PID 1
[ 2.525350] acpi_cpufreq: overriding BIOS provided _PSD data
[ 2.792372] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.802098] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.804332] ehci-pci: EHCI PCI platform driver
[ 2.805353] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 2.805370] piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
[ 2.805398] QUIRK: Enable AMD PLL fix
[ 2.805535] ehci-pci 0000:00:12.2: EHCI Host Controller
[ 2.805559] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[ 2.805577] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 2.805665] ehci-pci 0000:00:12.2: debug port 1
[ 2.805857] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0x8060
[ 2.805862] ehci-pci 0000:00:12.2: irq 17, io mem 0xf014c000
[ 2.809256] ohci-pci: OHCI PCI platform driver
[ 2.812134] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[ 2.812455] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
[ 2.812461] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.812467] usb usb1: Product: EHCI Host Controller
[ 2.812471] usb usb1: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ehci_hcd
[ 2.812476] usb usb1: SerialNumber: 0000:00:12.2
[ 2.813145] hub 1-0:1.0: USB hub found
[ 2.813205] hub 1-0:1.0: 5 ports detected
[ 2.814162] ohci-pci 0000:00:12.0: OHCI PCI host controller
[ 2.814194] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 2
[ 2.814394] ohci-pci 0000:00:12.0: irq 18, io mem 0xf0148000
[ 2.870513] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.18
[ 2.870521] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.870527] usb usb2: Product: OHCI PCI host controller
[ 2.870532] usb usb2: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ohci_hcd
[ 2.870537] usb usb2: SerialNumber: 0000:00:12.0
[ 2.872767] 1
[ 2.872807] 2
[ 2.873651] 3
[ 2.873654] 4
[ 2.873657] 5
[ 2.873660] 6
[ 2.873663] 7
[ 2.873667] 8
[ 2.873670] 9
[ 2.873761] 1
[ 2.873783] 2
[ 2.874648] 3
[ 2.874652] 4
[ 2.874654] 5
[ 2.874657] 6
[ 2.874660] 7
[ 2.874663] 8
[ 2.874666] 9
[ 2.876936] hub 2-0:1.0: USB hub found
[ 2.885089] hub 2-0:1.0: 5 ports detected
[ 2.886138] ehci-pci 0000:00:13.2: EHCI Host Controller
[ 2.886184] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 3
[ 2.886204] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 2.886242] ehci-pci 0000:00:13.2: debug port 1
[ 2.886319] ehci-pci 0000:00:13.2: irq 17, io mem 0xf014d000
[ 2.894133] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[ 2.894524] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
[ 2.894530] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.894536] usb usb3: Product: EHCI Host Controller
[ 2.894541] usb usb3: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ehci_hcd
[ 2.894545] usb usb3: SerialNumber: 0000:00:13.2
[ 2.895175] hub 3-0:1.0: USB hub found
[ 2.895224] hub 3-0:1.0: 5 ports detected
[ 2.897093] ohci-pci 0000:00:13.0: OHCI PCI host controller
[ 2.897132] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
[ 2.897264] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[ 2.923894] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input5
[ 2.927415] snd_hda_codec_realtek hdaudioC1D0: ALC892: SKU not ready 0x00000100
[ 2.928257] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x16/0x15/0x17/0x0) type:line
[ 2.928264] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 2.928269] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 2.928274] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 2.928279] snd_hda_codec_realtek hdaudioC1D0: dig-out=0x1e/0x0
[ 2.928283] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 2.928292] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18
[ 2.928298] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19
[ 2.928304] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a
[ 2.928309] snd_hda_codec_realtek hdaudioC1D0: CD=0x1c
[ 2.958215] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.18
[ 2.958224] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.958229] usb usb4: Product: OHCI PCI host controller
[ 2.958234] usb usb4: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ohci_hcd
[ 2.958239] usb usb4: SerialNumber: 0000:00:13.0
[ 2.958850] hub 4-0:1.0: USB hub found
[ 2.958953] hub 4-0:1.0: 5 ports detected
[ 2.960796] ohci-pci 0000:00:14.5: OHCI PCI host controller
[ 2.960818] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 5
[ 2.960982] ohci-pci 0000:00:14.5: irq 18, io mem 0xf014a000
[ 2.990348] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input6
[ 2.990636] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
[ 2.990903] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
[ 2.991230] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[ 2.991502] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[ 2.991784] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
[ 2.992157] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card1/input12
[ 2.992445] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input13
[ 2.996418] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 3.001418] r8169 0000:03:00.0 eth0: RTL8168e/8111e, bc:5f:f4:c8:d3:98, XID 2c200000, IRQ 27
[ 3.001427] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 3.017459] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.18
[ 3.017468] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.017474] usb usb5: Product: OHCI PCI host controller
[ 3.017479] usb usb5: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ohci_hcd
[ 3.017484] usb usb5: SerialNumber: 0000:00:14.5
[ 3.022584] hub 5-0:1.0: USB hub found
[ 3.022692] hub 5-0:1.0: 2 ports detected
[ 3.240600] [drm] radeon kernel modesetting enabled.
[ 3.242371] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x1002:0x9802 0x00).
[ 3.242472] ATOM BIOS: AMD
[ 3.242575] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
[ 3.242581] radeon 0000:00:01.0: GTT: 1024M 0x0000000018000000 - 0x0000000057FFFFFF
[ 3.242593] [drm] Detected VRAM RAM=384M, BAR=256M
[ 3.242597] [drm] RAM width 32bits DDR
[ 3.248201] [TTM] Zone kernel: Available graphics memory: 413310 kiB
[ 3.248208] [TTM] Zone highmem: Available graphics memory: 1597690 kiB
[ 3.248212] [TTM] Initializing pool allocator
[ 3.248246] [TTM] Initializing DMA pool allocator
[ 3.248320] [drm] radeon: 384M of VRAM memory ready
[ 3.248325] [drm] radeon: 1024M of GTT memory ready.
[ 3.248382] [drm] Loading PALM Microcode
[ 3.248396] [drm] Internal thermal controller without fan control
[ 3.248546] [drm] Found smc ucode version: 0x00010601
[ 3.248647] [drm] radeon: dpm initialized
[ 3.248709] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 3.278271] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[ 3.296248] radeon 0000:00:01.0: WB enabled
[ 3.296260] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000018000c00 and cpu addr 0x(ptrval)
[ 3.296267] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000018000c0c and cpu addr 0x(ptrval)
[ 3.296812] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0x(ptrval)
[ 3.296819] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.296822] [drm] Driver supports precise vblank timestamp query.
[ 3.296827] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
[ 3.296955] radeon 0000:00:01.0: radeon: using MSI.
[ 3.304123] [drm] radeon: irq initialized.
[ 3.334156] [drm] ring test on 0 succeeded in 1 usecs
[ 3.334170] [drm] ring test on 3 succeeded in 2 usecs
[ 3.344595] usb 2-2: new low-speed USB device number 2 using ohci-pci
[ 3.434091] [drm] ring test on 5 succeeded in 1 usecs
[ 3.463121] [drm] UVD initialized successfully.
[ 3.463821] [drm] ib test on ring 0 succeeded in 0 usecs
[ 3.463883] [drm] ib test on ring 3 succeeded in 0 usecs
[ 3.551311] usb 2-2: New USB device found, idVendor=1241, idProduct=1122, bcdDevice= 1.00
[ 3.551320] usb 2-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.561248] input: HID 1241:1122 as /devices/pci0000:00/0000:00:12.0/usb2/2-2/2-2:1.0/0003:1241:1122.0001/input/input14
[ 3.561965] hid-generic 0003:1241:1122.0001: input,hidraw0: USB HID v1.00 Mouse [HID 1241:1122] on usb-0000:00:12.0-2/input0
[ 3.910188] random: crng init done
[ 3.910196] random: 7 urandom warning(s) missed due to ratelimiting
[ 3.934349] r8169 0000:03:00.0 enp3s0: renamed from eth0
[ 3.998817] r8169 0000:03:00.0: Direct firmware load for rtl_nic/rtl8168e-2.fw failed with error -2
[ 3.998834] r8169 0000:03:00.0 enp3s0: unable to load firmware patch rtl_nic/rtl8168e-2.fw (-2)
[ 4.009035] [drm] ib test on ring 5 succeeded
[ 4.034239] [drm] Radeon Display Connectors
[ 4.034246] [drm] Connector 0:
[ 4.034249] [drm] HDMI-A-1
[ 4.034251] [drm] HPD1
[ 4.034257] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[ 4.034259] [drm] Encoders:
[ 4.034262] [drm] DFP1: INTERNAL_UNIPHY
[ 4.034266] [drm] Connector 1:
[ 4.034268] [drm] HDMI-A-2
[ 4.034271] [drm] HPD2
[ 4.034275] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[ 4.034278] [drm] Encoders:
[ 4.034281] [drm] DFP2: INTERNAL_UNIPHY
[ 4.034283] [drm] Connector 2:
[ 4.034286] [drm] VGA-1
[ 4.034291] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[ 4.034293] [drm] Encoders:
[ 4.034296] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 4.043852] r8169 0000:03:00.0 enp3s0: link down
[ 4.044196] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[ 4.095590] [drm] fb mappable at 0xE0366000
[ 4.095595] [drm] vram apper at 0xE0000000
[ 4.095599] [drm] size 5242880
[ 4.095602] [drm] fb depth is 24
[ 4.095605] [drm] pitch is 5120
[ 4.095927] fbcon: radeondrmfb (fb0) is primary device
[ 4.130627] Console: switching to colour frame buffer device 160x64
[ 4.140702] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
[ 4.146493] [drm] Initialized radeon 2.50.0 20080528 for 0000:00:01.0 on minor 0
[ 6.785872] r8169 0000:03:00.0 enp3s0: link up
[ 6.785920] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
-------------- next part --------------
# tracer: function_graph
#
# TIME CPU TASK/PID DURATION FUNCTION CALLS
# | | | | | | | | | |
0.811223 | 0) init-1 | | run_init_process() {
0.811229 | 0) init-1 | | printk() {
0.811229 | 0) init-1 | | vprintk_func() {
0.811230 | 0) init-1 | | vprintk_default() {
0.811231 | 0) init-1 | 3.330 us | vprintk_emit();
0.811236 | 0) init-1 | 5.447 us | } /* vprintk_default */
0.811237 | 0) init-1 | 6.843 us | } /* vprintk_func */
0.811238 | 0) init-1 | 8.257 us | } /* printk */
0.811238 | 0) init-1 | | getname_kernel() {
0.811240 | 0) init-1 | | kmem_cache_alloc() {
0.811240 | 0) init-1 | | _cond_resched() {
0.811241 | 0) init-1 | 0.177 us | rcu_all_qs();
0.811242 | 0) init-1 | 1.425 us | } /* _cond_resched */
0.811243 | 0) init-1 | 0.182 us | should_failslab();
0.811245 | 0) init-1 | 5.195 us | } /* kmem_cache_alloc */
0.811246 | 0) init-1 | 7.303 us | } /* getname_kernel */
0.811247 | 0) init-1 | | do_execve() {
0.811248 | 0) init-1 | | __do_execve_file() {
0.811249 | 0) init-1 | | unshare_files() {
0.811250 | 0) init-1 | 0.371 us | unshare_fd();
0.811251 | 0) init-1 | 1.862 us | } /* unshare_files */
0.811252 | 0) init-1 | | kmem_cache_alloc_trace() {
0.811253 | 0) init-1 | 0.241 us | _cond_resched();
0.811254 | 0) init-1 | 0.175 us | should_failslab();
0.811256 | 0) init-1 | 3.762 us | } /* kmem_cache_alloc_trace */
0.811257 | 0) init-1 | | prepare_bprm_creds() {
0.811258 | 0) init-1 | 0.423 us | mutex_lock_interruptible();
0.811259 | 0) init-1 | 5.169 us | prepare_exec_creds();
0.811266 | 0) init-1 | 8.374 us | } /* prepare_bprm_creds */
0.811266 | 0) init-1 | 0.362 us | _raw_spin_lock();
0.811268 | 0) init-1 | | do_open_execat() {
0.811269 | 0) init-1 | * 27633.67 us | do_filp_open();
0.838912 | 0) init-1 | 0.617 us | __fsnotify_parent();
0.838915 | 0) init-1 | 0.388 us | fsnotify();
0.838918 | 0) init-1 | * 27648.96 us | } /* do_open_execat */
0.838920 | 0) init-1 | | sched_exec() {
0.838921 | 0) init-1 | 0.368 us | _raw_spin_lock_irqsave();
0.838924 | 0) init-1 | 6.830 us | select_task_rq_fair();
0.838933 | 0) init-1 | 0.353 us | _raw_spin_unlock_irqrestore();
0.838935 | 0) init-1 | | stop_one_cpu() {
0.839001 | 1) init-1 | + 64.095 us | } /* stop_one_cpu */
0.839007 | 1) init-1 | + 85.991 us | } /* sched_exec */
0.839008 | 1) init-1 | | mm_alloc() {
0.839010 | 1) init-1 | + 14.918 us | kmem_cache_alloc();
0.839026 | 1) init-1 | 7.620 us | mm_init();
0.839035 | 1) init-1 | + 25.839 us | } /* mm_alloc */
0.839036 | 1) init-1 | 0.352 us | _raw_spin_lock();
0.839037 | 1) init-1 | | kmem_cache_alloc() {
0.839038 | 1) init-1 | 0.229 us | _cond_resched();
0.839039 | 1) init-1 | 0.173 us | should_failslab();
0.839041 | 1) init-1 | 7.487 us | __slab_alloc.constprop.83();
0.839050 | 1) init-1 | + 11.790 us | } /* kmem_cache_alloc */
0.839051 | 1) init-1 | | down_write_killable() {
0.839051 | 1) init-1 | 0.231 us | _cond_resched();
0.839053 | 1) init-1 | 1.511 us | } /* down_write_killable */
0.839053 | 1) init-1 | 0.268 us | vm_get_page_prot();
0.839055 | 1) init-1 | | insert_vm_struct() {
0.839056 | 1) init-1 | 4.106 us | security_vm_enough_memory_mm();
0.839061 | 1) init-1 | 1.892 us | vma_link();
0.839064 | 1) init-1 | 8.825 us | } /* insert_vm_struct */
0.839065 | 1) init-1 | 0.313 us | up_write();
0.839067 | 1) init-1 | | count.constprop.32() {
0.839068 | 1) init-1 | 0.228 us | _cond_resched();
0.839069 | 1) init-1 | 0.228 us | _cond_resched();
0.839071 | 1) init-1 | 3.377 us | } /* count.constprop.32 */
0.839071 | 1) init-1 | | count.constprop.32() {
0.839072 | 1) init-1 | 0.229 us | _cond_resched();
0.839073 | 1) init-1 | 0.229 us | _cond_resched();
0.839075 | 1) init-1 | 0.228 us | _cond_resched();
0.839076 | 1) init-1 | 0.229 us | _cond_resched();
0.839077 | 1) init-1 | 0.228 us | _cond_resched();
0.839079 | 1) init-1 | 0.229 us | _cond_resched();
0.839080 | 1) init-1 | 8.012 us | } /* count.constprop.32 */
0.839081 | 1) init-1 | | prepare_binprm() {
0.839082 | 1) init-1 | 0.862 us | mnt_may_suid();
0.839084 | 1) init-1 | + 10.618 us | security_bprm_set_creds();
0.839096 | 1) init-1 | ! 736.604 us | kernel_read();
0.839836 | 1) init-1 | ! 754.235 us | } /* prepare_binprm */
0.839837 | 1) init-1 | | copy_strings_kernel() {
0.839839 | 1) init-1 | ! 119.884 us | copy_strings();
0.839961 | 1) init-1 | ! 122.556 us | } /* copy_strings_kernel */
0.839961 | 1) init-1 | | copy_strings() {
0.839963 | 1) init-1 | 0.230 us | _cond_resched();
0.839964 | 1) init-1 | 1.485 us | get_user_pages_remote();
0.839967 | 1) init-1 | 0.638 us | kmap();
0.839968 | 1) init-1 | 0.349 us | __check_object_size();
0.839970 | 1) init-1 | 0.309 us | __copy_user_ll();
0.839971 | 1) init-1 | 0.229 us | _cond_resched();
0.839973 | 1) init-1 | 0.321 us | __check_object_size();
0.839974 | 1) init-1 | 0.273 us | __copy_user_ll();
0.839976 | 1) init-1 | 0.229 us | _cond_resched();
0.839977 | 1) init-1 | 0.321 us | __check_object_size();
0.839978 | 1) init-1 | 0.277 us | __copy_user_ll();
0.839980 | 1) init-1 | 0.228 us | _cond_resched();
0.839981 | 1) init-1 | 0.321 us | __check_object_size();
0.839982 | 1) init-1 | 0.289 us | __copy_user_ll();
0.839984 | 1) init-1 | 0.229 us | _cond_resched();
0.839985 | 1) init-1 | 0.321 us | __check_object_size();
0.839987 | 1) init-1 | 0.264 us | __copy_user_ll();
0.839988 | 1) init-1 | 0.229 us | _cond_resched();
0.839990 | 1) init-1 | 0.320 us | __check_object_size();
0.839991 | 1) init-1 | 0.229 us | __copy_user_ll();
0.839992 | 1) init-1 | 0.512 us | kunmap();
0.839994 | 1) init-1 | + 31.970 us | } /* copy_strings */
0.839995 | 1) init-1 | | copy_strings() {
0.839995 | 1) init-1 | 0.229 us | _cond_resched();
0.839997 | 1) init-1 | 1.239 us | get_user_pages_remote();
0.839999 | 1) init-1 | 0.623 us | kmap();
0.840001 | 1) init-1 | 0.319 us | __check_object_size();
0.840002 | 1) init-1 | 0.272 us | __copy_user_ll();
0.840004 | 1) init-1 | 0.230 us | _cond_resched();
0.840005 | 1) init-1 | 0.313 us | __check_object_size();
0.840006 | 1) init-1 | 0.265 us | __copy_user_ll();
0.840008 | 1) init-1 | 0.514 us | kunmap();
0.840009 | 1) init-1 | + 14.259 us | } /* copy_strings */
0.840010 | 1) init-1 | | would_dump() {
0.840011 | 1) init-1 | 1.924 us | inode_permission();
0.840014 | 1) init-1 | 3.510 us | } /* would_dump */
0.840015 | 1) init-1 | 0.409 us | task_active_pid_ns();
0.840017 | 1) init-1 | 0.497 us | __task_pid_nr_ns();
0.840020 | 1) init-1 | | search_binary_handler() {
0.840021 | 1) init-1 | 0.201 us | security_bprm_check();
0.840022 | 1) init-1 | 0.302 us | _raw_read_lock();
0.840024 | 1) init-1 | 0.195 us | try_module_get();
0.840025 | 1) init-1 | 0.555 us | load_script();
0.840027 | 1) init-1 | 0.186 us | _raw_read_lock();
0.840028 | 1) init-1 | 0.272 us | module_put();
0.840030 | 1) init-1 | 0.176 us | try_module_get();
0.840031 | 1) init-1 | # 4050.091 us | load_elf_binary();
0.844088 | 1) init-1 | 0.536 us | _raw_read_lock();
0.844090 | 1) init-1 | 0.371 us | module_put();
0.844092 | 1) init-1 | # 4071.401 us | } /* search_binary_handler */
0.844093 | 1) init-1 | 0.293 us | proc_exec_connector();
0.844094 | 1) init-1 | | acct_update_integrals() {
0.844095 | 1) init-1 | 0.478 us | __acct_update_integrals();
0.844097 | 1) init-1 | 1.985 us | } /* acct_update_integrals */
0.844098 | 1) init-1 | | free_bprm() {
0.844099 | 1) init-1 | 0.182 us | fput();
0.844100 | 1) init-1 | 1.032 us | kfree();
0.844102 | 1) init-1 | 4.070 us | } /* free_bprm */
0.844103 | 1) init-1 | 0.236 us | kfree();
0.844105 | 1) init-1 | | putname() {
0.844106 | 1) init-1 | 0.701 us | kmem_cache_free();
0.844107 | 1) init-1 | 2.415 us | } /* putname */
0.844109 | 1) init-1 | * 32860.15 us | } /* __do_execve_file */
0.844109 | 1) init-1 | * 32861.74 us | } /* do_execve */
0.844110 | 1) init-1 | * 32882.28 us | } /* run_init_process */
-------------- next part --------------
[ 0.000000] Linux version 4.18.0-rc4-00097-g33ec366fda95 (root at f2fc51708d66) (gcc version 7.3.0 (Debian 7.3.0-24)) #96 SMP Fri Jul 13 15:26:28 UTC 2018
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] type 16
[ 0.000000] BIOS-e820: [mem 0x0000000000001000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000c0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c7d3bfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c7d3c000-0x00000000c7ffffff] type 16
[ 0.000000] BIOS-e820: [mem 0x00000000c8000000-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] SMBIOS 2.7 present.
[ 0.000000] DMI: ASROCK E350M1/E350M1, BIOS TIMELESS 01/01/1970
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] last_pfn = 0xc7d3c 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 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 1 base 0C0000000 mask FF8000000 write-back
[ 0.000000] 2 base 080000000 mask FC0000000 write-back
[ 0.000000] 3 base 000000000 mask F80000000 write-back
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] TOM2: 000000011f000000 aka 4592M
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] initial memory mapped: [mem 0x00000000-0x0affffff]
[ 0.000000] Base memory trampoline at [(ptrval)] 9b000 size 16384
[ 0.000000] BRK [0x0ac4d000, 0x0ac4dfff] PGTABLE
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0800 000024 (v02 CORE )
[ 0.000000] ACPI: XSDT 0x00000000C7D4D0E0 00006C (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: FACP 0x00000000C7D4F850 0000F4 (v04 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: DSDT 0x00000000C7D4D280 0025C7 (v02 ASROCK COREBOOT 00010001 INTL 20180629)
[ 0.000000] ACPI: FACS 0x00000000C7D4D240 000040
[ 0.000000] ACPI: FACS 0x00000000C7D4D240 000040
[ 0.000000] ACPI: SSDT 0x00000000C7D4F950 00008A (v02 CORE COREBOOT 0000002A CORE 0000002A)
[ 0.000000] ACPI: TCPA 0x00000000C7D4F9E0 000032 (v02 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: APIC 0x00000000C7D4FA20 00005C (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: HEST 0x00000000C7D4FA80 000028 (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: SSDT 0x00000000C7D4FAB0 00168E (v02 AMD ALIB 00000001 MSFT 04000000)
[ 0.000000] ACPI: SSDT 0x00000000C7D51140 0003DE (v01 AMD POWERNOW 00000001 AMD 00000001)
[ 0.000000] ACPI: VFCT 0x00000000C7D51520 00E269 (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: HPET 0x00000000C7D5F790 000038 (v01 CORE COREBOOT 00000000 CORE 00000000)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 2313MB HIGHMEM available.
[ 0.000000] 883MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 373fe000
[ 0.000000] low ram: 0 - 373fe000
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] BRK [0x0ac4e000, 0x0ac4efff] PGTABLE
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] Normal [mem 0x0000000001000000-0x00000000373fdfff]
[ 0.000000] HighMem [mem 0x00000000373fe000-0x00000000c7d3bfff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000c7d3bfff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000000c7d3bfff]
[ 0.000000] On node 0 totalpages: 818395
[ 0.000000] DMA zone: 40 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3999 pages, LIFO batch:0
[ 0.000000] Normal zone: 2170 pages used for memmap
[ 0.000000] Normal zone: 222206 pages, LIFO batch:31
[ 0.000000] HighMem zone: 592190 pages, LIFO batch:31
[ 0.000000] Reserved but unavailable: 97 pages
[ 0.000000] Using APIC driver default
[ 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 0x000a0000-0x000bffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[ 0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.000000] random: get_random_bytes called from start_kernel+0x7d/0x497 with crng_init=0
[ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[ 0.000000] percpu: Embedded 29 pages/cpu @(ptrval) s88204 r0 d30580 u118784
[ 0.000000] pcpu-alloc: s88204 r0 d30580 u118784 alloc=29*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 816185
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.18.0-rc4-00097-g33ec366fda95 root=/dev/sda1 ro noisapnp cryptomgr.notests quiet memory_corruption_check=1 memory_corruption_check_size=512k memory_corruption_check_period=5 iomem=relaxed apparmor=0
[ 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] BRK [0x0ac4f000, 0x0ac4ffff] PGTABLE
[ 0.000000] Initializing CPU#0
[ 0.000000] Initializing HighMem for node 0 (000373fe:000c7d3c)
[ 0.000000] Initializing Movable for node 0 (00000000:00000000)
[ 0.000000] Memory: 3227424K/3273580K available (7796K kernel code, 721K rwdata, 2380K rodata, 772K init, 620K bss, 46156K reserved, 0K cma-reserved, 2368760K highmem)
[ 0.000000] virtual kernel memory layout:
fixmap : 0xfff17000 - 0xfffff000 ( 928 kB)
cpu_entry : 0xff800000 - 0xff939000 (1252 kB)
pkmap : 0xff400000 - 0xff800000 (4096 kB)
vmalloc : 0xf7bfe000 - 0xff3fe000 ( 120 MB)
lowmem : 0xc0000000 - 0xf73fe000 ( 883 MB)
.init : 0xcaabc000 - 0xcab7d000 ( 772 kB)
.data : 0xca79d27c - 0xcaaaa760 (3125 kB)
.text : 0xca000000 - 0xca79d27c (7796 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] ftrace: allocating 30748 entries in 61 pages
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU event tracing is enabled.
[ 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=(ptrval) soft=(ptrval)
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] ACPI: Core revision 20180531
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] APIC: Switch to symmetric I/O mode setup
[ 0.000000] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.000000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.005000] tsc: Fast TSC calibration using PIT
[ 0.006000] tsc: Detected 1599.975 MHz processor
[ 0.006000] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x17100d5840c, max_idle_ns: 440795256592 ns
[ 0.006000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3199.95 BogoMIPS (lpj=1599975)
[ 0.006000] pid_max: default: 32768 minimum: 301
[ 0.006000] Security Framework initialized
[ 0.006000] Yama: becoming mindful.
[ 0.006000] SELinux: Initializing.
[ 0.007028] SELinux: Starting in permissive mode
[ 0.007057] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.007064] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.007488] CPU: Physical Processor ID: 0
[ 0.007490] CPU: Processor Core ID: 0
[ 0.007495] mce: CPU supports 6 MCE banks
[ 0.007514] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[ 0.007516] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[ 0.007521] Spectre V2 : Mitigation: Full AMD retpoline
[ 0.007523] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
[ 0.007525] Speculative Store Bypass: Vulnerable
[ 0.007674] Freeing SMP alternatives memory: 32K
[ 0.007679] After acpi_subsystem_init
[ 0.007680] After arch_post_acpi_subsys_init
[ 0.007681] sfi_init_late()
[ 0.007682] After efi_enable, efi_free_boot_services
[ 0.007683] Before rest_init()
[ 0.007792] After set_cpus_allowed_ptr()
[ 0.007793] After numa_default_policy()
[ 0.007824] After kernel_thread
[ 0.007826] After kthreadd_task
[ 0.007832] After complete()
[ 0.008000] random: 1
[ 0.008000] random: 2
[ 0.008000] random: 3
[ 0.008000] random: 4
[ 0.026002] random: 1
[ 0.026003] random: 2
[ 0.026004] random: 3
[ 0.026005] random: 4
[ 0.090002] random: 1
[ 0.090003] random: 2
[ 0.090004] random: 3
[ 0.090005] random: 4
[ 0.109000] smpboot: CPU0: AMD E-350D APU with Radeon(tm) HD Graphics (family: 0x14, model: 0x2, stepping: 0x0)
[ 0.109000] Performance Events: AMD PMU driver.
[ 0.109000] ... version: 0
[ 0.109000] ... bit width: 48
[ 0.109000] ... generic registers: 4
[ 0.109000] ... value mask: 0000ffffffffffff
[ 0.109000] ... max period: 00007fffffffffff
[ 0.109000] ... fixed-purpose events: 0
[ 0.109000] ... event mask: 000000000000000f
[ 0.109000] Hierarchical SRCU implementation.
[ 0.109243] smp: Bringing up secondary CPUs ...
[ 0.109482] CPU 1 irqstacks, hard=(ptrval) soft=(ptrval)
[ 0.109485] x86: Booting SMP configuration:
[ 0.109487] .... node #0, CPUs: #1
[ 0.001000] Initializing CPU#1
[ 0.110060] schedule_preempt_disabled
[ 0.110086] smp: Brought up 1 node, 2 CPUs
[ 0.110086] smpboot: Max logical packages: 1
[ 0.110086] smpboot: Total of 2 processors activated (6399.90 BogoMIPS)
[ 0.111345] devtmpfs: initialized
[ 0.112363] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.112374] futex hash table entries: 512 (order: 2, 16384 bytes)
[ 0.113036] pinctrl core: initialized pinctrl subsystem
[ 0.113175] RTC time: 16:15:39, date: 07/13/18
[ 0.113384] NET: Registered protocol family 16
[ 0.113679] audit: initializing netlink subsys (disabled)
[ 0.113714] audit: type=2000 audit(1531498539.113:1): state=initialized audit_enabled=0 res=1
[ 0.114144] cpuidle: using governor menu
[ 0.114257] ACPI: bus type PCI registered
[ 0.114261] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.115119] PCI: Using configuration type 1 for base access
[ 0.115120] PCI: Using configuration type 1 for extended access
[ 0.115395] mtrr: your CPUs had inconsistent variable MTRR settings
[ 0.115396] mtrr: probably your BIOS does not setup all CPUs.
[ 0.115397] mtrr: corrected configuration.
[ 0.118108] HugeTLB registered 4.00 MiB page size, pre-allocated 0 pages
[ 0.119078] cryptd: max_cpu_qlen set to 1000
[ 0.119122] ACPI: Added _OSI(Module Device)
[ 0.119124] ACPI: Added _OSI(Processor Device)
[ 0.119126] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.119128] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.119131] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.125391] ACPI: 4 ACPI AML tables successfully acquired and loaded
[ 0.127500] ACPI: Interpreter enabled
[ 0.127550] ACPI: (supports S0 S1 S3 S4 S5)
[ 0.127553] ACPI: Using IOAPIC for interrupt routing
[ 0.127590] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[ 0.127902] ACPI: Enabled 19 GPEs in block 00 to 1F
[ 0.135924] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.135937] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.136114] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability LTR]
[ 0.136201] acpi PNP0A08:00: host bridge window [io 0x0cf8-0x0cff] (ignored)
[ 0.136205] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7 window] (ignored)
[ 0.136208] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff window] (ignored)
[ 0.136212] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[ 0.136215] acpi PNP0A08:00: host bridge window [mem 0xe0000000-0xffffffff] (ignored)
[ 0.136217] PCI: root bus 00: using default resources
[ 0.136722] PCI host bridge to bus 0000:00
[ 0.136727] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 0.136731] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[ 0.136736] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.136753] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
[ 0.136982] pci 0000:00:01.0: [1002:9802] type 00 class 0x030000
[ 0.137018] pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[ 0.137028] pci 0000:00:01.0: reg 0x14: [io 0x2000-0x20ff]
[ 0.137038] pci 0000:00:01.0: reg 0x18: [mem 0xf0100000-0xf013ffff]
[ 0.137070] pci 0000:00:01.0: enabling Extended Tags
[ 0.137117] pci 0000:00:01.0: supports D1 D2
[ 0.137303] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
[ 0.137326] pci 0000:00:01.1: reg 0x10: [mem 0xf0140000-0xf0143fff]
[ 0.137368] pci 0000:00:01.1: enabling Extended Tags
[ 0.137412] pci 0000:00:01.1: supports D1 D2
[ 0.137692] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[ 0.137723] pci 0000:00:11.0: reg 0x10: [io 0x2410-0x2417]
[ 0.137737] pci 0000:00:11.0: reg 0x14: [io 0x2420-0x2423]
[ 0.137751] pci 0000:00:11.0: reg 0x18: [io 0x2418-0x241f]
[ 0.137764] pci 0000:00:11.0: reg 0x1c: [io 0x2424-0x2427]
[ 0.137778] pci 0000:00:11.0: reg 0x20: [io 0x2400-0x240f]
[ 0.137792] pci 0000:00:11.0: reg 0x24: [mem 0xf014b000-0xf014b3ff]
[ 0.138103] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[ 0.138129] pci 0000:00:12.0: reg 0x10: [mem 0xf0148000-0xf0148fff]
[ 0.138449] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[ 0.138480] pci 0000:00:12.2: reg 0x10: [mem 0xf014c000-0xf014c0ff]
[ 0.138588] pci 0000:00:12.2: supports D1 D2
[ 0.138592] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[ 0.138594] pci 0000:00:12.2: pme_poll = true
[ 0.138597] pci 0000:00:12.2: after device_set_wakeup_capable()
[ 0.138603] pci 0000:00:12.2: after pci_pme_active()
[ 0.138852] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[ 0.138877] pci 0000:00:13.0: reg 0x10: [mem 0xf0149000-0xf0149fff]
[ 0.139208] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[ 0.139238] pci 0000:00:13.2: reg 0x10: [mem 0xf014d000-0xf014d0ff]
[ 0.139348] pci 0000:00:13.2: supports D1 D2
[ 0.139351] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[ 0.139353] pci 0000:00:13.2: pme_poll = true
[ 0.139355] pci 0000:00:13.2: after device_set_wakeup_capable()
[ 0.139361] pci 0000:00:13.2: after pci_pme_active()
[ 0.139610] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[ 0.139937] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[ 0.139972] pci 0000:00:14.2: reg 0x10: [mem 0xf0144000-0xf0147fff 64bit]
[ 0.140074] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[ 0.140076] pci 0000:00:14.2: pme_poll = true
[ 0.140079] pci 0000:00:14.2: after device_set_wakeup_capable()
[ 0.140084] pci 0000:00:14.2: after pci_pme_active()
[ 0.140327] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[ 0.140653] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[ 0.140949] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[ 0.140974] pci 0000:00:14.5: reg 0x10: [mem 0xf014a000-0xf014afff]
[ 0.141309] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
[ 0.141364] pci 0000:00:15.0: enabling Extended Tags
[ 0.141432] pci 0000:00:15.0: supports D1 D2
[ 0.141698] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
[ 0.141759] pci 0000:00:15.1: enabling Extended Tags
[ 0.141827] pci 0000:00:15.1: supports D1 D2
[ 0.142112] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
[ 0.142314] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
[ 0.142505] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
[ 0.142699] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
[ 0.142914] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
[ 0.143116] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
[ 0.143309] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
[ 0.143502] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
[ 0.143791] pci_bus 0000:01: extended config space not accessible
[ 0.143882] pci 0000:00:14.4: PCI bridge to [bus 01] (subtractive decode)
[ 0.143896] pci 0000:00:14.4: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.143900] pci 0000:00:14.4: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.143981] pci 0000:00:15.0: PCI bridge to [bus 02]
[ 0.144108] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
[ 0.144151] pci 0000:03:00.0: reg 0x10: [io 0x1000-0x10ff]
[ 0.144190] pci 0000:03:00.0: reg 0x18: [mem 0xf0004000-0xf0004fff 64bit pref]
[ 0.144216] pci 0000:03:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[ 0.144354] pci 0000:03:00.0: supports D1 D2
[ 0.144357] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.144360] pci 0000:03:00.0: pme_poll = true
[ 0.144362] pci 0000:03:00.0: after device_set_wakeup_capable()
[ 0.144369] pci 0000:03:00.0: after pci_pme_active()
[ 0.147098] pci 0000:00:15.1: PCI bridge to [bus 03]
[ 0.147113] pci 0000:00:15.1: bridge window [io 0x1000-0x1fff]
[ 0.147130] pci 0000:00:15.1: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.147173] pci_bus 0000:00: on NUMA node 0
[ 0.148127] ACPI: PCI Interrupt Link [INTA] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.148390] ACPI: PCI Interrupt Link [INTB] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.148648] ACPI: PCI Interrupt Link [INTC] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.148905] ACPI: PCI Interrupt Link [INTD] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.149171] ACPI: PCI Interrupt Link [INTE] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.149428] ACPI: PCI Interrupt Link [INTF] (IRQs 9) *0, disabled.
[ 0.149609] ACPI: PCI Interrupt Link [INTG] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.149871] ACPI: PCI Interrupt Link [INTH] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[ 0.150362] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[ 0.150362] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.150362] pci 0000:00:01.0: vgaarb: bridge control possible
[ 0.150362] vgaarb: loaded
[ 0.150362] SCSI subsystem initialized
[ 0.150362] libata version 3.00 loaded.
[ 0.150362] ACPI: bus type USB registered
[ 0.150362] usbcore: registered new interface driver usbfs
[ 0.150362] usbcore: registered new interface driver hub
[ 0.150362] usbcore: registered new device driver usb
[ 0.151119] PCI: Using ACPI for IRQ routing
[ 0.151119] PCI: pci_cache_line_size set to 64 bytes
[ 0.151191] e820: reserve RAM buffer [mem 0xc7d3c000-0xc7ffffff]
[ 0.151411] NetLabel: Initializing
[ 0.151413] NetLabel: domain hash size = 128
[ 0.151414] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.151446] NetLabel: unlabeled traffic allowed by default
[ 0.151683] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.151690] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.153071] clocksource: Switched to clocksource tsc-early
[ 0.181074] VFS: Disk quotas dquot_6.6.0
[ 0.181127] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.181260] pnp: PnP ACPI init
[ 0.181696] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.181786] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[ 0.181856] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.182318] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[ 0.182382] pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.182403] pnp: PnP ACPI: found 5 devices
[ 0.187642] pci 0000:00:14.4: PCI bridge to [bus 01]
[ 0.187664] pci 0000:00:15.0: PCI bridge to [bus 02]
[ 0.187680] pci 0000:00:15.1: PCI bridge to [bus 03]
[ 0.187685] pci 0000:00:15.1: bridge window [io 0x1000-0x1fff]
[ 0.187696] pci 0000:00:15.1: bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.187710] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 0.187713] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[ 0.187717] pci_bus 0000:01: resource 4 [io 0x0000-0xffff]
[ 0.187720] pci_bus 0000:01: resource 5 [mem 0x00000000-0xffffffff]
[ 0.187724] pci_bus 0000:03: resource 0 [io 0x1000-0x1fff]
[ 0.187727] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[ 0.187872] NET: Registered protocol family 2
[ 0.188231] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
[ 0.188241] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.188273] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.188310] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.188374] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.188387] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.188473] NET: Registered protocol family 1
[ 0.188505] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.188515] pci 0000:00:01.1: Linked as a consumer to 0000:00:01.0
[ 0.191223] PCI: CLS 64 bytes, default 64
[ 0.191503] LVT offset 0 assigned for vector 0x400
[ 0.191562] perf: AMD IBS detected (0x000000ff)
[ 0.192449] Scanning for low memory corruption every 5 seconds
[ 0.192932] alg: self-tests disabled
[ 0.193974] Initialise system trusted keyrings
[ 0.194130] workingset: timestamp_bits=14 max_order=20 bucket_order=6
[ 0.196748] zbud: loaded
[ 0.197390] pstore: using deflate compression
[ 0.197505] SELinux: Registering netfilter hooks
[ 0.201965] NET: Registered protocol family 38
[ 0.201973] Key type asymmetric registered
[ 0.201976] Asymmetric key parser 'x509' registered
[ 0.202012] bounce: pool size: 64 pages
[ 0.202066] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 0.202183] io scheduler noop registered
[ 0.202185] io scheduler deadline registered
[ 0.202300] io scheduler cfq registered (default)
[ 0.202303] io scheduler mq-deadline registered
[ 0.202304] io scheduler kyber registered
[ 0.203786] pcieport 0000:00:15.0: Signaling PME with IRQ 24
[ 0.203839] pcieport 0000:00:15.1: Signaling PME with IRQ 25
[ 0.204040] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.204081] ACPI: Power Button [PWRB]
[ 0.204160] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.204177] ACPI: Power Button [PWRF]
[ 0.205307] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.205310] ACPI: Thermal Zone [TZ00] (51 C)
[ 0.205646] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.226552] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.230485] Non-volatile memory driver v1.3
[ 0.230560] Linux agpgart interface v0.103
[ 0.231630] ahci 0000:00:11.0: version 3.0
[ 0.232294] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[ 0.232301] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio slum part
[ 0.234389] scsi host0: ahci
[ 0.234771] scsi host1: ahci
[ 0.235187] scsi host2: ahci
[ 0.235605] scsi host3: ahci
[ 0.235888] scsi host4: ahci
[ 0.236154] scsi host5: ahci
[ 0.236305] ata1: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b100 irq 19
[ 0.236310] ata2: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b180 irq 19
[ 0.236314] ata3: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b200 irq 19
[ 0.236318] ata4: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b280 irq 19
[ 0.236322] ata5: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b300 irq 19
[ 0.236326] ata6: SATA max UDMA/133 abar m1024 at 0xf014b000 port 0xf014b380 irq 19
[ 0.236542] ata2: SATA link down (SStatus 0 SControl 0)
[ 0.236592] ata3: SATA link down (SStatus 0 SControl 0)
[ 0.236641] ata4: SATA link down (SStatus 0 SControl 0)
[ 0.236682] ata5: SATA link down (SStatus 0 SControl 0)
[ 0.236717] ata6: SATA link down (SStatus 0 SControl 0)
[ 0.236801] libphy: Fixed MDIO Bus: probed
[ 0.236860] usbcore: registered new interface driver usbserial_generic
[ 0.236872] usbserial: USB Serial support registered for generic
[ 0.236960] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.240920] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.240932] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.241330] mousedev: PS/2 mouse device common for all mice
[ 0.241861] rtc_cmos 00:00: RTC can wake from S4
[ 0.242052] rtc_cmos 00:00: registered as rtc0
[ 0.242105] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[ 0.242230] device-mapper: uevent: version 1.0.3
[ 0.242488] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel at redhat.com
[ 0.242632] hidraw: raw HID events driver (C) Jiri Kosina
[ 0.242746] usbcore: registered new interface driver usbhid
[ 0.242747] usbhid: USB HID core driver
[ 0.242896] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 0)
[ 0.243207] Initializing XFRM netlink socket
[ 0.243341] ata1.00: ATA-9: SanDisk SDSSDP064G, 2.0.0, max UDMA/133
[ 0.243345] ata1.00: 125045424 sectors, multi 1: LBA48 NCQ (depth 32)
[ 0.243490] NET: Registered protocol family 10
[ 0.243995] ata1.00: configured for UDMA/133
[ 0.244352] Segment Routing with IPv6
[ 0.244354] scsi 0:0:0:0: Direct-Access ATA SanDisk SDSSDP06 0 PQ: 0 ANSI: 5
[ 0.244390] mip6: Mobile IPv6
[ 0.244396] NET: Registered protocol family 17
[ 0.244824] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.245087] Using IPI No-Shortcut mode
[ 0.245102] sched_clock: Marking stable (244809055, 0)->(342889130, -98080075)
[ 0.245197] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[ 0.245229] sd 0:0:0:0: [sda] Write Protect is off
[ 0.245233] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.245300] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.245759] registered taskstats version 1
[ 0.245761] Loading compiled-in X.509 certificates
[ 0.245819] zswap: loaded using pool lzo/zbud
[ 0.246469] sda: sda1
[ 0.247830] sd 0:0:0:0: [sda] Attached SCSI disk
[ 0.248142] Key type big_key registered
[ 0.248614] Magic number: 10:399:287
[ 0.248685] tty tty20: hash matches
[ 0.248891] rtc_cmos 00:00: setting system clock to 2018-07-13 16:15:39 UTC (1531498539)
[ 0.268877] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 0.279008] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 0.279043] VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
[ 0.279228] random: 1
[ 0.279230] random: 2
[ 0.279232] random: 3
[ 0.279234] random: 4
[ 0.279237] random: fast init done
[ 0.281196] devtmpfs: mounted
[ 0.284067] Freeing unused kernel memory: 772K
[ 0.287444] Write protecting the kernel text: 7800k
[ 0.287622] Write protecting the kernel read-only data: 2400k
[ 0.287624] After mark_nxdata_nx()
[ 0.287624] After if statement
[ 0.287626] System state marked running.
[ 0.287627] After numa_default_policy().
[ 0.287628] After rcu_end_inkernel_boot().
[ 0.287629] After ramdisk_execute_command.
[ 0.287632] Run /sbin/init as init process
[ 0.547261] systemd[1]: systemd 239 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[ 0.547642] systemd[1]: Detected architecture x86.
[ 0.551627] systemd[1]: Set hostname to <kodi>.
[ 0.901699] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.901749] systemd[1]: Reached target Swap.
[ 0.901937] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.901959] systemd[1]: Reached target Remote File Systems.
[ 0.902149] random: systemd: uninitialized urandom read (16 bytes read)
[ 0.902383] systemd[1]: Listening on Network Service Netlink Socket.
[ 0.902441] systemd[1]: Reached target Host and Network Name Lookups.
[ 0.902589] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 0.902789] systemd[1]: Listening on udev Kernel Socket.
[ 0.902945] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 0.994357] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 1.176480] systemd-journald[124]: Received request to flush runtime journal from PID 1
[ 1.248262] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[ 1.248279] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[ 1.248376] clocksource: Switched to clocksource tsc
[ 1.605416] acpi_cpufreq: overriding BIOS provided _PSD data
[ 1.725924] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 1.725938] piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
[ 1.726354] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0x8060
[ 1.730267] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.732671] ehci-pci: EHCI PCI platform driver
[ 1.733146] QUIRK: Enable AMD PLL fix
[ 1.733192] ehci-pci 0000:00:12.2: EHCI Host Controller
[ 1.733207] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[ 1.733219] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 1.733283] ehci-pci 0000:00:12.2: debug port 1
[ 1.733367] ehci-pci 0000:00:12.2: irq 17, io mem 0xf014c000
[ 1.735071] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.737253] ohci-pci: OHCI PCI platform driver
[ 1.740059] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[ 1.740227] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
[ 1.740231] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.740234] usb usb1: Product: EHCI Host Controller
[ 1.740238] usb usb1: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ehci_hcd
[ 1.740241] usb usb1: SerialNumber: 0000:00:12.2
[ 1.740535] hub 1-0:1.0: USB hub found
[ 1.740555] hub 1-0:1.0: 5 ports detected
[ 1.744566] ohci-pci 0000:00:12.0: OHCI PCI host controller
[ 1.744596] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 2
[ 1.744757] ohci-pci 0000:00:12.0: irq 18, io mem 0xf0148000
[ 1.766884] 1
[ 1.766915] 2
[ 1.767221] 3
[ 1.767222] 4
[ 1.767223] 5
[ 1.767224] 6
[ 1.767225] 7
[ 1.767230] 8
[ 1.767231] 9
[ 1.767290] 1
[ 1.767301] 2
[ 1.767617] 3
[ 1.767618] 4
[ 1.767619] 5
[ 1.767620] 6
[ 1.767621] 7
[ 1.767622] 8
[ 1.767623] 9
[ 1.785093] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input5
[ 1.790118] snd_hda_codec_realtek hdaudioC1D0: ALC892: SKU not ready 0x00000100
[ 1.790799] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x16/0x15/0x17/0x0) type:line
[ 1.790804] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 1.790808] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 1.790810] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 1.790813] snd_hda_codec_realtek hdaudioC1D0: dig-out=0x1e/0x0
[ 1.790816] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 1.790821] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18
[ 1.790824] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19
[ 1.790828] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a
[ 1.790831] snd_hda_codec_realtek hdaudioC1D0: CD=0x1c
[ 1.800378] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.18
[ 1.800384] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.800388] usb usb2: Product: OHCI PCI host controller
[ 1.800391] usb usb2: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ohci_hcd
[ 1.800394] usb usb2: SerialNumber: 0000:00:12.0
[ 1.800805] hub 2-0:1.0: USB hub found
[ 1.800841] hub 2-0:1.0: 5 ports detected
[ 1.805441] ehci-pci 0000:00:13.2: EHCI Host Controller
[ 1.805458] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 3
[ 1.805471] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 1.805557] ehci-pci 0000:00:13.2: debug port 1
[ 1.805634] ehci-pci 0000:00:13.2: irq 17, io mem 0xf014d000
[ 1.812176] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[ 1.812381] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
[ 1.812386] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.812389] usb usb3: Product: EHCI Host Controller
[ 1.812392] usb usb3: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ehci_hcd
[ 1.812395] usb usb3: SerialNumber: 0000:00:13.2
[ 1.812725] hub 3-0:1.0: USB hub found
[ 1.812748] hub 3-0:1.0: 5 ports detected
[ 1.813244] ohci-pci 0000:00:13.0: OHCI PCI host controller
[ 1.813260] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
[ 1.813387] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[ 1.827607] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input6
[ 1.827729] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
[ 1.827845] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
[ 1.827966] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[ 1.828096] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[ 1.828213] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
[ 1.828318] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card1/input12
[ 1.828429] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input13
[ 1.869297] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.18
[ 1.869304] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.869308] usb usb4: Product: OHCI PCI host controller
[ 1.869311] usb usb4: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ohci_hcd
[ 1.869314] usb usb4: SerialNumber: 0000:00:13.0
[ 1.869722] hub 4-0:1.0: USB hub found
[ 1.869814] hub 4-0:1.0: 5 ports detected
[ 1.870693] ohci-pci 0000:00:14.5: OHCI PCI host controller
[ 1.870708] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 5
[ 1.870764] ohci-pci 0000:00:14.5: irq 18, io mem 0xf014a000
[ 1.887450] [drm] radeon kernel modesetting enabled.
[ 1.888611] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x1002:0x9802 0x00).
[ 1.888687] ATOM BIOS: AMD
[ 1.888766] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
[ 1.888770] radeon 0000:00:01.0: GTT: 1024M 0x0000000018000000 - 0x0000000057FFFFFF
[ 1.888778] [drm] Detected VRAM RAM=384M, BAR=256M
[ 1.888780] [drm] RAM width 32bits DDR
[ 1.888916] [TTM] Zone kernel: Available graphics memory: 429734 kiB
[ 1.888918] [TTM] Zone highmem: Available graphics memory: 1614114 kiB
[ 1.888920] [TTM] Initializing pool allocator
[ 1.888929] [TTM] Initializing DMA pool allocator
[ 1.888967] [drm] radeon: 384M of VRAM memory ready
[ 1.888970] [drm] radeon: 1024M of GTT memory ready.
[ 1.888999] [drm] Loading PALM Microcode
[ 1.889036] [drm] Internal thermal controller without fan control
[ 1.889115] [drm] Found smc ucode version: 0x00010601
[ 1.889190] [drm] radeon: dpm initialized
[ 1.890603] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 1.903894] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[ 1.904470] radeon 0000:00:01.0: WB enabled
[ 1.904477] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000018000c00 and cpu addr 0x(ptrval)
[ 1.904481] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000018000c0c and cpu addr 0x(ptrval)
[ 1.905212] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0x(ptrval)
[ 1.907967] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 1.907971] [drm] Driver supports precise vblank timestamp query.
[ 1.907976] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
[ 1.908888] radeon 0000:00:01.0: radeon: using MSI.
[ 1.908941] [drm] radeon: irq initialized.
[ 1.929315] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.931024] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.18
[ 1.931030] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.931034] usb usb5: Product: OHCI PCI host controller
[ 1.931037] usb usb5: Manufacturer: Linux 4.18.0-rc4-00097-g33ec366fda95 ohci_hcd
[ 1.931039] usb usb5: SerialNumber: 0000:00:14.5
[ 1.931343] hub 5-0:1.0: USB hub found
[ 1.931433] hub 5-0:1.0: 2 ports detected
[ 1.931752] [drm] ring test on 0 succeeded in 1 usecs
[ 1.931762] [drm] ring test on 3 succeeded in 3 usecs
[ 1.942466] r8169 0000:03:00.0 eth0: RTL8168e/8111e, bc:5f:f4:c8:d3:98, XID 2c200000, IRQ 28
[ 1.942474] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.983565] [drm] ring test on 5 succeeded in 1 usecs
[ 2.003776] [drm] UVD initialized successfully.
[ 2.004196] [drm] ib test on ring 0 succeeded in 0 usecs
[ 2.004254] [drm] ib test on ring 3 succeeded in 0 usecs
[ 2.264060] usb 2-2: new low-speed USB device number 2 using ohci-pci
[ 2.359740] r8169 0000:03:00.0 enp3s0: renamed from eth0
[ 2.394152] r8169 0000:03:00.0: Direct firmware load for rtl_nic/rtl8168e-2.fw failed with error -2
[ 2.394164] r8169 0000:03:00.0 enp3s0: unable to load firmware patch rtl_nic/rtl8168e-2.fw (-2)
[ 2.428171] usb 2-2: New USB device found, idVendor=1241, idProduct=1122, bcdDevice= 1.00
[ 2.428177] usb 2-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.429691] r8169 0000:03:00.0 enp3s0: link down
[ 2.431460] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[ 2.439914] input: HID 1241:1122 as /devices/pci0000:00/0000:00:12.0/usb2/2-2/2-2:1.0/0003:1241:1122.0001/input/input14
[ 2.441387] hid-generic 0003:1241:1122.0001: input,hidraw0: USB HID v1.00 Mouse [HID 1241:1122] on usb-0000:00:12.0-2/input0
[ 2.528544] [drm] ib test on ring 5 succeeded
[ 2.550597] [drm] Radeon Display Connectors
[ 2.550603] [drm] Connector 0:
[ 2.550604] [drm] HDMI-A-1
[ 2.550606] [drm] HPD1
[ 2.550610] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[ 2.550611] [drm] Encoders:
[ 2.550613] [drm] DFP1: INTERNAL_UNIPHY
[ 2.550615] [drm] Connector 1:
[ 2.550616] [drm] HDMI-A-2
[ 2.550617] [drm] HPD2
[ 2.550621] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[ 2.550622] [drm] Encoders:
[ 2.550624] [drm] DFP2: INTERNAL_UNIPHY
[ 2.550625] [drm] Connector 2:
[ 2.550626] [drm] VGA-1
[ 2.550630] [drm] DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[ 2.550631] [drm] Encoders:
[ 2.550633] [drm] CRT1: INTERNAL_KLDSCP_DAC1
[ 2.588680] [drm] fb mappable at 0xE0366000
[ 2.588683] [drm] vram apper at 0xE0000000
[ 2.588685] [drm] size 5242880
[ 2.588686] [drm] fb depth is 24
[ 2.588688] [drm] pitch is 5120
[ 2.589178] fbcon: radeondrmfb (fb0) is primary device
[ 2.623264] Console: switching to colour frame buffer device 160x64
[ 2.643282] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
[ 2.648229] [drm] Initialized radeon 2.50.0 20080528 for 0000:00:01.0 on minor 0
[ 4.205137] random: crng init done
[ 4.205149] random: 7 urandom warning(s) missed due to ratelimiting
[ 5.217561] r8169 0000:03:00.0 enp3s0: link up
[ 5.217590] IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
More information about the systemd-devel
mailing list