linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* azx_probe() called twice
@ 2018-04-25 11:48 Paul Menzel
  2018-04-25 11:58 ` Takashi Iwai
  0 siblings, 1 reply; 6+ messages in thread
From: Paul Menzel @ 2018-04-25 11:48 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel, linux-kernel


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

Dear Linux folks,


With the attached debug patch, `azx_probe()` seems to have been called 
twice on the ASRock E350M1. Is that expected? It also differs, that it’s 
only called once during some boots, and twice during others.

[    0.000000] Linux version 4.17.0-rc2+ (root@35489178f57d) (gcc 
version 7.3.0 (Debian 7.3.0-15)) #12 SMP Mon Apr 23 06:57:55 UTC 2018
[…]
[    2.746962] calling  azx_driver_init+0x0/0xfe4 [snd_hda_intel] @ 214
[    2.777881] random: get_random_u32 called from 
arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.777900] random: get_random_u32 called from 
load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.777907] random: get_random_u32 called from 
arch_align_stack+0x45/0x70 with crng_init=1
[    2.777938] random: get_random_u32 called from 
arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.778822] random: get_random_u32 called from 
arch_align_stack+0x45/0x70 with crng_init=1
[    2.778846] random: get_random_u32 called from 
randomize_page+0x42/0x57 with crng_init=1
[    2.781026] calling  shpcd_init+0x0/0x1000 [shpchp] @ 219
[    2.781154] random: get_random_u32 called from 
cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.781477] calling  k10temp_driver_init+0x0/0x1000 [k10temp] @ 215
[    2.796426] usb usb3: New USB device found, idVendor=1d6b, 
idProduct=0001, bcdDevice= 4.17
[    2.796434] usb usb3: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[    2.796438] usb usb3: Product: OHCI PCI host controller
[    2.796441] usb usb3: Manufacturer: Linux 4.17.0-rc2+ ohci_hcd
[    2.796445] usb usb3: SerialNumber: 0000:00:12.0
[    2.796922] hub 3-0:1.0: USB hub found
[    2.796968] hub 3-0:1.0: 5 ports detected
[    2.798039] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    2.798056] ohci-pci 0000:00:13.0: new USB bus registered, assigned 
bus number 4
[    2.798123] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[    2.804555] random: get_random_u32 called from 
cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.804604] random: get_random_u32 called from 
copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.804625] random: get_random_u32 called from 
cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.804669] random: get_random_u32 called from 
cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.860446] usb usb4: New USB device found, idVendor=1d6b, 
idProduct=0001, bcdDevice= 4.17
[    2.860455] usb usb4: New USB device strings: Mfr=3, Product=2, 
SerialNumber=1
[    2.860459] usb usb4: Product: OHCI PCI host controller
[    2.860463] usb usb4: Manufacturer: Linux 4.17.0-rc2+ ohci_hcd
[    2.860466] usb usb4: SerialNumber: 0000:00:13.0
[    2.860899] hub 4-0:1.0: USB hub found
[    2.860941] hub 4-0:1.0: 5 ports detected
[    2.861606] 1
[    2.861632] 2
[    2.861991] 3
[    2.861992] 4
[    2.861993] 5
[    2.861995] 6
[    2.861996] 7
[    2.862004] 8
[    2.862005] 9
[    2.862290] 1
[    2.862307] 2
[    2.862642] 3
[    2.862643] 4
[    2.862645] 5
[    2.862646] 6
[    2.862647] 7
[    2.862654] 8
[    2.862655] 9
[    2.862934] initcall azx_driver_init+0x0/0xfe4 [snd_hda_intel] 
returned 0 after 79525 usecs

Please find the full log attached.


Kind regards,

Paul

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-ALSA-Add-debug-statements.patch --]
[-- Type: text/x-patch; name="0001-ALSA-Add-debug-statements.patch", Size: 2164 bytes --]

From 67d3cb6f893219492ce321194255163c7dd82ac0 Mon Sep 17 00:00:00 2001
From: Paul Menzel <pmenzel@molgen.mpg.de>
Date: Mon, 23 Apr 2018 14:39:58 +0200
Subject: [PATCH] ALSA: Add debug statements

---
 sound/pci/hda/hda_intel.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 827834b9c07d..8ebbd4204038 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2138,6 +2138,7 @@ static int azx_probe(struct pci_dev *pci,
 		return -ENOENT;
 	}
 
+	pr_info("1");
 	err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
 			   0, &card);
 	if (err < 0) {
@@ -2145,12 +2146,14 @@ static int azx_probe(struct pci_dev *pci,
 		return err;
 	}
 
+	pr_info("2");
 	err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
 	if (err < 0)
 		goto out_free;
 	card->private_data = chip;
 	hda = container_of(chip, struct hda_intel, chip);
 
+	pr_info("3");
 	pci_set_drvdata(pci, card);
 
 	err = register_vga_switcheroo(chip);
@@ -2159,6 +2162,7 @@ static int azx_probe(struct pci_dev *pci,
 		goto out_free;
 	}
 
+	pr_info("4");
 	if (check_hdmi_disabled(pci)) {
 		dev_info(card->dev, "VGA controller is disabled\n");
 		dev_info(card->dev, "Delaying initialization\n");
@@ -2166,6 +2170,7 @@ static int azx_probe(struct pci_dev *pci,
 	}
 
 	schedule_probe = !chip->disabled;
+	pr_info("5");
 
 #ifdef CONFIG_SND_HDA_PATCH_LOADER
 	if (patch[dev] && *patch[dev]) {
@@ -2178,6 +2183,8 @@ static int azx_probe(struct pci_dev *pci,
 			goto out_free;
 		schedule_probe = false; /* continued in azx_firmware_cb() */
 	}
+
+	pr_info("6");
 #endif /* CONFIG_SND_HDA_PATCH_LOADER */
 
 #ifndef CONFIG_SND_HDA_I915
@@ -2185,12 +2192,15 @@ static int azx_probe(struct pci_dev *pci,
 		dev_err(card->dev, "Haswell/Broadwell HDMI/DP must build in CONFIG_SND_HDA_I915\n");
 #endif
 
+	pr_info("7");
 	if (schedule_probe)
 		schedule_work(&hda->probe_work);
 
 	dev++;
+	pr_info("8");
 	if (chip->disabled)
 		complete_all(&hda->probe_wait);
+	pr_info("9");
 	return 0;
 
 out_free:
-- 
2.16.2


[-- Attachment #1.3: 20180424–linux_4.17-rc2–dmesg.txt --]
[-- Type: text/plain, Size: 284324 bytes --]

[    0.000000] Linux version 4.17.0-rc2+ (root@35489178f57d) (gcc version 7.3.0 (Debian 7.3.0-15)) #12 SMP Mon Apr 23 06:57:55 UTC 2018
[    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-0x00000000c7d3dfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000c7d3e000-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] e820: last_pfn = 0xc7d3e 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] found SMP MP-table at [mem 0x000f63f0-0x000f63ff] mapped at [(ptrval)]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x183fffff]
[    0.000000] Base memory trampoline at [(ptrval)] 9b000 size 16384
[    0.000000] BRK [0x180d4000, 0x180d4fff] PGTABLE
[    0.000000] log_buf_len: 4194304 bytes
[    0.000000] early log buf free: 128788(98%)
[    0.000000] RAMDISK: [mem 0x37387000-0x379bafff]
[    0.000000] Allocated new RAMDISK: [mem 0x36953000-0x36f8675e]
[    0.000000] Move RAMDISK from [mem 0x37387000-0x379ba75e] to [mem 0x36953000-0x36f8675e]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F65F0 000024 (v02 CORE  )
[    0.000000] ACPI: XSDT 0x00000000C7D510E0 000064 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: FACP 0x00000000C7D53850 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: DSDT 0x00000000C7D51280 0025C7 (v02 ASROCK COREBOOT 00010001 INTL 20161222)
[    0.000000] ACPI: FACS 0x00000000C7D51240 000040
[    0.000000] ACPI: FACS 0x00000000C7D51240 000040
[    0.000000] ACPI: SSDT 0x00000000C7D53950 00008A (v02 CORE   COREBOOT 0000002A CORE 0000002A)
[    0.000000] ACPI: TCPA 0x00000000C7D539E0 000032 (v02 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: APIC 0x00000000C7D53A20 00005C (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: HEST 0x00000000C7D53A80 000028 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: SSDT 0x00000000C7D53AB0 00168E (v02 AMD    ALIB     00000001 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000C7D55140 0003DE (v01 AMD    POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: HPET 0x00000000C7D55520 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 [0x180d5000, 0x180d5fff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x00000000373fdfff]
[    0.000000]   HighMem  [mem 0x00000000373fe000-0x00000000c7d3dfff]
[    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-0x00000000c7d3dfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000000c7d3dfff]
[    0.000000] On node 0 totalpages: 818396
[    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: 1953 pages used for memmap
[    0.000000]   Normal zone: 222206 pages, LIFO batch:31
[    0.000000]   HighMem zone: 592192 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 98 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 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] random: get_random_bytes called from start_kernel+0x81/0x52b 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 28 pages/cpu @(ptrval) s84908 r0 d29780 u114688
[    0.000000] pcpu-alloc: s84908 r0 d29780 u114688 alloc=28*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 816407
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.17.0-rc2+ root=UUID=128529e0-b8bb-4c7d-956d-ddf699036c8c ro noisapnp cryptomgr.notests quiet initcall_debug init=/lib/systemd/systemd-bootchart memory_corruption_check=1 memory_corruption_check_size=512k memory_corruption_check_period=5 iomem=relaxed apparmor=0 log_buf_len=4M
[    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 [0x180d6000, 0x180d6fff] PGTABLE
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000373fe:000c7d3e)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 3213504K/3273584K available (10555K kernel code, 4548K rwdata, 2360K rodata, 884K init, 428K bss, 60080K reserved, 0K cma-reserved, 2368768K highmem)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
                 cpu_entry : 0xff800000 - 0xff939000   (1252 kB)
                   pkmap   : 0xff400000 - 0xff800000   (4096 kB)
                   vmalloc : 0xf7bfe000 - 0xff3fe000   ( 120 MB)
                   lowmem  : 0xc0000000 - 0xf73fe000   ( 883 MB)
                     .init : 0xd7f23000 - 0xd8000000   ( 884 kB)
                     .data : 0xd784ee30 - 0xd7f142a0   (6933 kB)
                     .text : 0xd6e00000 - 0xd784ee30   (10555 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] ftrace: allocating 27519 entries in 54 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] kmemleak: Kernel memory leak detector disabled
[    0.000000] NR_IRQS: 2304, nr_irqs: 440, preallocated irqs: 16
[    0.000000] CPU 0 irqstacks, hard=(ptrval) soft=(ptrval)
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] calling  con_init+0x0/0x31c @ 0
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] initcall con_init+0x0/0x31c returned 0 after 0 usecs
[    0.000000] calling  univ8250_console_init+0x0/0x2a @ 0
[    0.000000] initcall univ8250_console_init+0x0/0x2a returned 0 after 0 usecs
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] kmemleak: Early log buffer exceeded (2220), please increase DEBUG_KMEMLEAK_EARLY_LOG_SIZE
[    0.000000] ACPI: Core revision 20180313
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.000000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    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.020000] tsc: Fast TSC calibration using PIT
[    0.024000] tsc: Detected 1599.992 MHz processor
[    0.024000] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x17101d726e6, max_idle_ns: 440795229359 ns
[    0.024000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3199.98 BogoMIPS (lpj=6399968)
[    0.024000] pid_max: default: 32768 minimum: 301
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] Security Framework initialized
[    0.024000] Yama: becoming mindful.
[    0.024000] calling  selinux_init+0x0/0x1e2 @ 0
[    0.024000] initcall selinux_init+0x0/0x1e2 returned 0 after 0 usecs
[    0.024000] calling  tomoyo_init+0x0/0x76 @ 0
[    0.024000] initcall tomoyo_init+0x0/0x76 returned 0 after 0 usecs
[    0.024000] calling  apparmor_init+0x0/0x38b @ 0
[    0.024000] AppArmor: AppArmor disabled by boot time parameter
[    0.024000] initcall apparmor_init+0x0/0x38b returned 0 after 0 usecs
[    0.024000] calling  integrity_iintcache_init+0x0/0x2c @ 0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] initcall integrity_iintcache_init+0x0/0x2c returned 0 after 0 usecs
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.024000] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.024000] CPU: Physical Processor ID: 0
[    0.024000] CPU: Processor Core ID: 0
[    0.024000] mce: CPU supports 6 MCE banks
[    0.024000] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.024000] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[    0.024000] Spectre V2 : Mitigation: Full AMD retpoline
[    0.024000] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
[    0.024000] Freeing SMP alternatives memory: 28K
[    0.024000] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.024000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.028069] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136016] smpboot: CPU0: AMD E-350D APU with Radeon(tm) HD Graphics (family: 0x14, model: 0x2, stepping: 0x0)
[    0.136093] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136134] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136144] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136198] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136240] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136260] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136315] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136325] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136335] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136391] calling  trace_init_flags_sys_exit+0x0/0x13 @ 1
[    0.136397] initcall trace_init_flags_sys_exit+0x0/0x13 returned 0 after 0 usecs
[    0.136401] calling  trace_init_flags_sys_enter+0x0/0x13 @ 1
[    0.136406] initcall trace_init_flags_sys_enter+0x0/0x13 returned 0 after 0 usecs
[    0.136410] calling  init_hw_perf_events+0x0/0x77c @ 1
[    0.136412] Performance Events: AMD PMU driver.
[    0.136422] ... version:                0
[    0.136424] ... bit width:              48
[    0.136425] ... generic registers:      4
[    0.136428] ... value mask:             0000ffffffffffff
[    0.136430] ... max period:             00007fffffffffff
[    0.136431] ... fixed-purpose events:   0
[    0.136432] ... event mask:             000000000000000f
[    0.136453] initcall init_hw_perf_events+0x0/0x77c returned 0 after 0 usecs
[    0.136456] calling  init_real_mode+0x0/0x1fe @ 1
[    0.136490] initcall init_real_mode+0x0/0x1fe returned 0 after 0 usecs
[    0.136494] calling  trace_init_perf_perm_irq_work_exit+0x0/0x16 @ 1
[    0.136498] initcall trace_init_perf_perm_irq_work_exit+0x0/0x16 returned 0 after 0 usecs
[    0.136501] calling  validate_x2apic+0x0/0x55 @ 1
[    0.136505] initcall validate_x2apic+0x0/0x55 returned 0 after 0 usecs
[    0.136509] calling  register_nmi_cpu_backtrace_handler+0x0/0x18 @ 1
[    0.136513] initcall register_nmi_cpu_backtrace_handler+0x0/0x18 returned 0 after 0 usecs
[    0.136518] calling  spawn_ksoftirqd+0x0/0x48 @ 1
[    0.136539] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136586] initcall spawn_ksoftirqd+0x0/0x48 returned 0 after 0 usecs
[    0.136591] calling  migration_init+0x0/0x76 @ 1
[    0.136596] initcall migration_init+0x0/0x76 returned 0 after 0 usecs
[    0.136599] calling  check_cpu_stall_init+0x0/0x1b @ 1
[    0.136604] initcall check_cpu_stall_init+0x0/0x1b returned 0 after 0 usecs
[    0.136607] calling  srcu_bootup_announce+0x0/0x30 @ 1
[    0.136608] Hierarchical SRCU implementation.
[    0.136612] initcall srcu_bootup_announce+0x0/0x30 returned 0 after 0 usecs
[    0.136615] calling  rcu_spawn_gp_kthread+0x0/0x11d @ 1
[    0.136664] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136674] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136683] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.136712] initcall rcu_spawn_gp_kthread+0x0/0x11d returned 0 after 0 usecs
[    0.136716] calling  cpu_stop_init+0x0/0xff @ 1
[    0.136734] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.136778] initcall cpu_stop_init+0x0/0xff returned 0 after 0 usecs
[    0.136782] calling  init_events+0x0/0xdf @ 1
[    0.136808] initcall init_events+0x0/0xdf returned 0 after 0 usecs
[    0.136812] calling  init_trace_printk+0x0/0xf @ 1
[    0.136817] initcall init_trace_printk+0x0/0xf returned 0 after 0 usecs
[    0.136821] calling  event_trace_enable_again+0x0/0x21 @ 1
[    0.136826] initcall event_trace_enable_again+0x0/0x21 returned 0 after 0 usecs
[    0.136830] calling  jump_label_init_module+0x0/0x14 @ 1
[    0.136834] initcall jump_label_init_module+0x0/0x14 returned 0 after 0 usecs
[    0.136839] calling  dynamic_debug_init+0x0/0x339 @ 1
[    0.137023] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.137320] initcall dynamic_debug_init+0x0/0x339 returned 0 after 0 usecs
[    0.137325] calling  rand_initialize+0x0/0x160 @ 1
[    0.137437] initcall rand_initialize+0x0/0x160 returned 0 after 0 usecs
[    0.137441] calling  initialize_ptr_random+0x0/0x59 @ 1
[    0.137446] initcall initialize_ptr_random+0x0/0x59 returned 0 after 0 usecs
[    0.137517] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.137533] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.137590] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.137604] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.137631] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.137662] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.137718] smp: Bringing up secondary CPUs ...
[    0.137782] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.137793] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.137802] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.137845] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.137940] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.137951] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.137960] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.138003] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.138066] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.138121] CPU 1 irqstacks, hard=(ptrval) soft=(ptrval)
[    0.138124] x86: Booting SMP configuration:
[    0.138126] .... node  #0, CPUs:      #1
[    0.004000] Initializing CPU#1
[    0.140048] random: get_random_bytes called from cpu_startup_entry+0x29/0x90 with crng_init=0
[    0.004000] do_IRQ: 1.55 No irq handler for vector
[    0.004000] random: get_random_bytes called from start_secondary+0x191/0x2d0 with crng_init=0
[    0.004000] random: get_random_bytes called from cpu_startup_entry+0x29/0x90 with crng_init=0
[    0.140086] smp: Brought up 1 node, 2 CPUs
[    0.140086] smpboot: Max logical packages: 1
[    0.140086] smpboot: Total of 2 processors activated (6399.96 BogoMIPS)
[    0.140778] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.140798] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.140846] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.140846] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.140858] devtmpfs: initialized
[    0.142030] calling  ipc_ns_init+0x0/0xc9 @ 1
[    0.142042] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.142047] initcall ipc_ns_init+0x0/0xc9 returned 0 after 0 usecs
[    0.142051] calling  init_mmap_min_addr+0x0/0x23 @ 1
[    0.142055] initcall init_mmap_min_addr+0x0/0x23 returned 0 after 0 usecs
[    0.142060] calling  init_cpufreq_transition_notifier_list+0x0/0x1d @ 1
[    0.142079] initcall init_cpufreq_transition_notifier_list+0x0/0x1d returned 0 after 0 usecs
[    0.142083] calling  net_ns_init+0x0/0xfe @ 1
[    0.142099] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144025] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.144070] initcall net_ns_init+0x0/0xfe returned 0 after 0 usecs
[    0.144199] calling  e820__register_nvs_regions+0x0/0x83 @ 1
[    0.144204] initcall e820__register_nvs_regions+0x0/0x83 returned 0 after 0 usecs
[    0.144208] calling  cpufreq_register_tsc_scaling+0x0/0x51 @ 1
[    0.144213] initcall cpufreq_register_tsc_scaling+0x0/0x51 returned 0 after 0 usecs
[    0.144216] calling  init_cpu_syscore+0x0/0x11 @ 1
[    0.144221] initcall init_cpu_syscore+0x0/0x11 returned 0 after 0 usecs
[    0.144225] calling  reboot_init+0x0/0x22 @ 1
[    0.144242] initcall reboot_init+0x0/0x22 returned 0 after 0 usecs
[    0.144245] calling  init_lapic_sysfs+0x0/0x36 @ 1
[    0.144249] initcall init_lapic_sysfs+0x0/0x36 returned 0 after 0 usecs
[    0.144253] calling  cpu_hotplug_pm_sync_init+0x0/0x16 @ 1
[    0.144258] initcall cpu_hotplug_pm_sync_init+0x0/0x16 returned 0 after 0 usecs
[    0.144262] calling  alloc_frozen_cpus+0x0/0xc @ 1
[    0.144266] initcall alloc_frozen_cpus+0x0/0xc returned 0 after 0 usecs
[    0.144269] calling  wq_sysfs_init+0x0/0x29 @ 1
[    0.144269] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144269] initcall wq_sysfs_init+0x0/0x29 returned 0 after 0 usecs
[    0.144269] calling  ksysfs_init+0x0/0x96 @ 1
[    0.144269] initcall ksysfs_init+0x0/0x96 returned 0 after 0 usecs
[    0.144269] calling  pm_init+0x0/0x8d @ 1
[    0.144269] initcall pm_init+0x0/0x8d returned 0 after 0 usecs
[    0.144269] calling  pm_disk_init+0x0/0x19 @ 1
[    0.144269] initcall pm_disk_init+0x0/0x19 returned 0 after 0 usecs
[    0.144269] calling  swsusp_header_init+0x0/0x30 @ 1
[    0.144269] initcall swsusp_header_init+0x0/0x30 returned 0 after 0 usecs
[    0.144269] calling  rcu_set_runtime_mode+0x0/0x16 @ 1
[    0.144269] initcall rcu_set_runtime_mode+0x0/0x16 returned 0 after 0 usecs
[    0.144269] calling  init_jiffies_clocksource+0x0/0x1b @ 1
[    0.144269] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.144269] initcall init_jiffies_clocksource+0x0/0x1b returned 0 after 0 usecs
[    0.144269] calling  futex_init+0x0/0x20e @ 1
[    0.144269] futex hash table entries: 512 (order: 2, 16384 bytes)
[    0.144269] initcall futex_init+0x0/0x20e returned 0 after 0 usecs
[    0.144269] calling  cgroup_wq_init+0x0/0x36 @ 1
[    0.144269] initcall cgroup_wq_init+0x0/0x36 returned 0 after 0 usecs
[    0.144269] calling  cgroup1_wq_init+0x0/0x36 @ 1
[    0.144274] initcall cgroup1_wq_init+0x0/0x36 returned 0 after 0 usecs
[    0.144278] calling  ftrace_mod_cmd_init+0x0/0xf @ 1
[    0.144284] initcall ftrace_mod_cmd_init+0x0/0xf returned 0 after 0 usecs
[    0.144288] calling  init_graph_trace+0x0/0x5a @ 1
[    0.144298] initcall init_graph_trace+0x0/0x5a returned 0 after 0 usecs
[    0.144302] calling  init_per_zone_wmark_min+0x0/0x66 @ 1
[    0.144314] initcall init_per_zone_wmark_min+0x0/0x66 returned 0 after 0 usecs
[    0.144318] calling  init_zero_pfn+0x0/0x9e @ 1
[    0.144323] initcall init_zero_pfn+0x0/0x9e returned 0 after 0 usecs
[    0.144326] calling  fsnotify_init+0x0/0x44 @ 1
[    0.144346] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.144371] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144378] initcall fsnotify_init+0x0/0x44 returned 0 after 0 usecs
[    0.144382] calling  filelock_init+0x0/0xcd @ 1
[    0.144392] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.144403] initcall filelock_init+0x0/0xcd returned 0 after 0 usecs
[    0.144406] calling  init_script_binfmt+0x0/0x18 @ 1
[    0.144410] initcall init_script_binfmt+0x0/0x18 returned 0 after 0 usecs
[    0.144414] calling  init_elf_binfmt+0x0/0x18 @ 1
[    0.144418] initcall init_elf_binfmt+0x0/0x18 returned 0 after 0 usecs
[    0.144421] calling  debugfs_init+0x0/0x4b @ 1
[    0.144430] initcall debugfs_init+0x0/0x4b returned 0 after 0 usecs
[    0.144434] calling  tracefs_init+0x0/0x39 @ 1
[    0.144440] initcall tracefs_init+0x0/0x39 returned 0 after 0 usecs
[    0.144444] calling  securityfs_init+0x0/0x63 @ 1
[    0.144473] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144503] initcall securityfs_init+0x0/0x63 returned 0 after 0 usecs
[    0.144508] calling  prandom_init+0x0/0x100 @ 1
[    0.144514] initcall prandom_init+0x0/0x100 returned 0 after 0 usecs
[    0.144517] calling  pinctrl_init+0x0/0x9d @ 1
[    0.144519] pinctrl core: initialized pinctrl subsystem
[    0.144547] initcall pinctrl_init+0x0/0x9d returned 0 after 0 usecs
[    0.144551] calling  gpiolib_dev_init+0x0/0xec @ 1
[    0.144573] initcall gpiolib_dev_init+0x0/0xec returned 0 after 0 usecs
[    0.144578] calling  iommu_init+0x0/0x33 @ 1
[    0.144585] initcall iommu_init+0x0/0x33 returned 0 after 0 usecs
[    0.144589] calling  component_debug_init+0x0/0x1d @ 1
[    0.144598] initcall component_debug_init+0x0/0x1d returned 0 after 0 usecs
[    0.144601] calling  opp_debug_init+0x0/0x39 @ 1
[    0.144608] initcall opp_debug_init+0x0/0x39 returned 0 after 0 usecs
[    0.144611] calling  cpufreq_core_init+0x0/0x50 @ 1
[    0.144618] initcall cpufreq_core_init+0x0/0x50 returned 0 after 0 usecs
[    0.144621] calling  cpuidle_init+0x0/0x3b @ 1
[    0.144631] initcall cpuidle_init+0x0/0x3b returned 0 after 0 usecs
[    0.144635] calling  bsp_pm_check_init+0x0/0x16 @ 1
[    0.144639] initcall bsp_pm_check_init+0x0/0x16 returned 0 after 0 usecs
[    0.144642] calling  sock_init+0x0/0x98 @ 1
[    0.144656] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.144667] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144678] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.144687] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144697] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.144716] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144828] initcall sock_init+0x0/0x98 returned 0 after 0 usecs
[    0.144832] calling  net_inuse_init+0x0/0x24 @ 1
[    0.144861] initcall net_inuse_init+0x0/0x24 returned 0 after 0 usecs
[    0.144865] calling  net_defaults_init+0x0/0x24 @ 1
[    0.144869] initcall net_defaults_init+0x0/0x24 returned 0 after 0 usecs
[    0.144873] calling  init_default_flow_dissectors+0x0/0x48 @ 1
[    0.144878] initcall init_default_flow_dissectors+0x0/0x48 returned 0 after 0 usecs
[    0.144882] calling  netpoll_init+0x0/0x34 @ 1
[    0.144886] initcall netpoll_init+0x0/0x34 returned 0 after 0 usecs
[    0.144889] calling  netlink_proto_init+0x0/0x1d7 @ 1
[    0.144905] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.144918] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144924] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.144939] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144945] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.144959] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144964] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.144978] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144984] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.144989] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.144995] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.144999] NET: Registered protocol family 16
[    0.145013] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.145040] initcall netlink_proto_init+0x0/0x1d7 returned 0 after 0 usecs
[    0.145164] calling  irq_sysfs_init+0x0/0x99 @ 1
[    0.145343] initcall irq_sysfs_init+0x0/0x99 returned 0 after 0 usecs
[    0.145347] calling  audit_init+0x0/0x1ac @ 1
[    0.145355] audit: initializing netlink subsys (disabled)
[    0.145366] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.145393] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.145393] initcall audit_init+0x0/0x1ac returned 0 after 0 usecs
[    0.145393] audit: type=2000 audit(1524641083.144:1): state=initialized audit_enabled=0 res=1
[    0.145393] calling  bdi_class_init+0x0/0x55 @ 1
[    0.145393] initcall bdi_class_init+0x0/0x55 returned 0 after 0 usecs
[    0.145393] calling  mm_sysfs_init+0x0/0x27 @ 1
[    0.145393] initcall mm_sysfs_init+0x0/0x27 returned 0 after 0 usecs
[    0.145393] calling  gpiolib_sysfs_init+0x0/0x9a @ 1
[    0.145393] initcall gpiolib_sysfs_init+0x0/0x9a returned 0 after 0 usecs
[    0.145393] calling  pcibus_class_init+0x0/0x19 @ 1
[    0.145393] initcall pcibus_class_init+0x0/0x19 returned 0 after 0 usecs
[    0.145393] calling  pci_driver_init+0x0/0x22 @ 1
[    0.145393] initcall pci_driver_init+0x0/0x22 returned 0 after 0 usecs
[    0.145393] calling  backlight_class_init+0x0/0xcb @ 1
[    0.145393] initcall backlight_class_init+0x0/0xcb returned 0 after 0 usecs
[    0.145393] calling  tty_class_init+0x0/0x44 @ 1
[    0.145393] initcall tty_class_init+0x0/0x44 returned 0 after 0 usecs
[    0.145393] calling  vtconsole_class_init+0x0/0xcb @ 1
[    0.145393] initcall vtconsole_class_init+0x0/0xcb returned 0 after 0 usecs
[    0.145393] calling  iommu_dev_init+0x0/0x19 @ 1
[    0.145393] initcall iommu_dev_init+0x0/0x19 returned 0 after 0 usecs
[    0.145393] calling  mipi_dsi_bus_init+0x0/0x14 @ 1
[    0.145393] initcall mipi_dsi_bus_init+0x0/0x14 returned 0 after 0 usecs
[    0.145393] calling  wakeup_sources_debugfs_init+0x0/0x24 @ 1
[    0.145393] initcall wakeup_sources_debugfs_init+0x0/0x24 returned 0 after 0 usecs
[    0.145393] calling  regmap_initcall+0x0/0x11 @ 1
[    0.145393] initcall regmap_initcall+0x0/0x11 returned 0 after 0 usecs
[    0.145393] calling  spi_init+0x0/0x89 @ 1
[    0.145393] initcall spi_init+0x0/0x89 returned 0 after 0 usecs
[    0.145393] calling  i2c_init+0x0/0xa5 @ 1
[    0.145393] initcall i2c_init+0x0/0xa5 returned 0 after 0 usecs
[    0.145393] calling  init_ladder+0x0/0x3f @ 1
[    0.145393] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.145393] cpuidle: using governor ladder
[    0.145393] initcall init_ladder+0x0/0x3f returned 0 after 0 usecs
[    0.145393] calling  init_menu+0x0/0x14 @ 1
[    0.145393] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.145393] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.145393] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.145393] cpuidle: using governor menu
[    0.145393] initcall init_menu+0x0/0x14 returned 0 after 0 usecs
[    0.145393] calling  pcc_init+0x0/0x3ef @ 1
[    0.145393] initcall pcc_init+0x0/0x3ef returned -19 after 0 usecs
[    0.145393] calling  amd_postcore_init+0x0/0xf5 @ 1
[    0.145393] initcall amd_postcore_init+0x0/0xf5 returned 0 after 0 usecs
[    0.145393] calling  kobject_uevent_init+0x0/0xf @ 1
[    0.145393] initcall kobject_uevent_init+0x0/0xf returned 0 after 0 usecs
[    0.145393] calling  bts_init+0x0/0xd1 @ 1
[    0.145393] initcall bts_init+0x0/0xd1 returned -19 after 0 usecs
[    0.145393] calling  pt_init+0x0/0x408 @ 1
[    0.145393] initcall pt_init+0x0/0x408 returned -19 after 0 usecs
[    0.145393] calling  boot_params_ksysfs_init+0x0/0x2d4 @ 1
[    0.145393] initcall boot_params_ksysfs_init+0x0/0x2d4 returned 0 after 0 usecs
[    0.145393] calling  sbf_init+0x0/0xd5 @ 1
[    0.145393] initcall sbf_init+0x0/0xd5 returned 0 after 0 usecs
[    0.145393] calling  arch_kdebugfs_init+0x0/0x23 @ 1
[    0.145393] initcall arch_kdebugfs_init+0x0/0x23 returned 0 after 0 usecs
[    0.145393] calling  init_pit_clocksource+0x0/0x60 @ 1
[    0.145393] initcall init_pit_clocksource+0x0/0x60 returned 0 after 0 usecs
[    0.145393] calling  intel_pconfig_init+0x0/0x102 @ 1
[    0.145393] initcall intel_pconfig_init+0x0/0x102 returned 0 after 0 usecs
[    0.145393] calling  mtrr_if_init+0x0/0xa4 @ 1
[    0.145393] initcall mtrr_if_init+0x0/0xa4 returned 0 after 0 usecs
[    0.145393] calling  ffh_cstate_init+0x0/0x41 @ 1
[    0.145393] initcall ffh_cstate_init+0x0/0x41 returned 0 after 0 usecs
[    0.145393] calling  kdump_buf_page_init+0x0/0x3b @ 1
[    0.145393] initcall kdump_buf_page_init+0x0/0x3b returned 0 after 0 usecs
[    0.145393] calling  kvm_setup_pv_tlb_flush+0x0/0xb9 @ 1
[    0.145393] initcall kvm_setup_pv_tlb_flush+0x0/0xb9 returned 0 after 0 usecs
[    0.145393] calling  activate_jump_labels+0x0/0x35 @ 1
[    0.145393] initcall activate_jump_labels+0x0/0x35 returned 0 after 0 usecs
[    0.145393] calling  kcmp_cookies_init+0x0/0xa7 @ 1
[    0.145393] random: get_random_bytes called from kcmp_cookies_init+0x22/0xa7 with crng_init=0
[    0.145393] initcall kcmp_cookies_init+0x0/0xa7 returned 0 after 0 usecs
[    0.145393] calling  acpi_pci_init+0x0/0x60 @ 1
[    0.145393] ACPI: bus type PCI registered
[    0.145393] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.145393] initcall acpi_pci_init+0x0/0x60 returned 0 after 0 usecs
[    0.145393] calling  dma_bus_init+0x0/0x91 @ 1
[    0.145393] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.145393] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.145393] initcall dma_bus_init+0x0/0x91 returned 0 after 0 usecs
[    0.145393] calling  dma_channel_table_init+0x0/0x14c @ 1
[    0.145393] initcall dma_channel_table_init+0x0/0x14c returned 0 after 0 usecs
[    0.145393] calling  dmi_id_init+0x0/0x74d @ 1
[    0.145393] initcall dmi_id_init+0x0/0x74d returned 0 after 0 usecs
[    0.145393] calling  pci_arch_init+0x0/0x6b @ 1
[    0.148649] PCI: PCI BIOS revision 2.10 entry at 0xfd1df, last bus=3
[    0.148651] PCI: Using configuration type 1 for base access
[    0.148652] PCI: Using configuration type 1 for extended access
[    0.148666] initcall pci_arch_init+0x0/0x6b returned 0 after 3906 usecs
[    0.148789] calling  fixup_ht_bug+0x0/0x9c @ 1
[    0.148792] initcall fixup_ht_bug+0x0/0x9c returned 0 after 0 usecs
[    0.148796] calling  topology_init+0x0/0x30 @ 1
[    0.148958] initcall topology_init+0x0/0x30 returned 0 after 0 usecs
[    0.148963] calling  mtrr_init_finialize+0x0/0x56 @ 1
[    0.148965] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.148966] mtrr: probably your BIOS does not setup all CPUs.
[    0.148967] mtrr: corrected configuration.
[    0.148971] initcall mtrr_init_finialize+0x0/0x56 returned 0 after 0 usecs
[    0.148976] calling  uid_cache_init+0x0/0xe5 @ 1
[    0.148985] initcall uid_cache_init+0x0/0xe5 returned 0 after 0 usecs
[    0.148989] calling  param_sysfs_init+0x0/0x242 @ 1
[    0.150815] initcall param_sysfs_init+0x0/0x242 returned 0 after 0 usecs
[    0.150820] calling  user_namespace_sysctl_init+0x0/0x54 @ 1
[    0.150849] initcall user_namespace_sysctl_init+0x0/0x54 returned 0 after 0 usecs
[    0.150852] calling  proc_schedstat_init+0x0/0x1f @ 1
[    0.150860] initcall proc_schedstat_init+0x0/0x1f returned 0 after 0 usecs
[    0.150863] calling  pm_sysrq_init+0x0/0x1b @ 1
[    0.150887] initcall pm_sysrq_init+0x0/0x1b returned 0 after 0 usecs
[    0.150887] calling  create_proc_profile+0x0/0xf0 @ 1
[    0.150887] initcall create_proc_profile+0x0/0xf0 returned 0 after 0 usecs
[    0.150887] calling  crash_save_vmcoreinfo_init+0x0/0x4d8 @ 1
[    0.150887] initcall crash_save_vmcoreinfo_init+0x0/0x4d8 returned 0 after 0 usecs
[    0.150887] calling  crash_notes_memory_init+0x0/0x36 @ 1
[    0.150887] initcall crash_notes_memory_init+0x0/0x36 returned 0 after 0 usecs
[    0.150887] calling  cgroup_sysfs_init+0x0/0x19 @ 1
[    0.150887] initcall cgroup_sysfs_init+0x0/0x19 returned 0 after 0 usecs
[    0.150887] calling  cgroup_namespaces_init+0x0/0xc @ 1
[    0.150887] initcall cgroup_namespaces_init+0x0/0xc returned 0 after 0 usecs
[    0.150887] calling  user_namespaces_init+0x0/0x2c @ 1
[    0.150887] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.150887] initcall user_namespaces_init+0x0/0x2c returned 0 after 0 usecs
[    0.150887] calling  hung_task_init+0x0/0x49 @ 1
[    0.150896] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.150896] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.150896] initcall hung_task_init+0x0/0x49 returned 0 after 0 usecs
[    0.150896] calling  dev_map_init+0x0/0x16 @ 1
[    0.150896] initcall dev_map_init+0x0/0x16 returned 0 after 0 usecs
[    0.150896] calling  bpf_offload_init+0x0/0x16 @ 1
[    0.150896] initcall bpf_offload_init+0x0/0x16 returned 0 after 0 usecs
[    0.150896] calling  oom_init+0x0/0x2e @ 1
[    0.150896] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.150896] initcall oom_init+0x0/0x2e returned 0 after 0 usecs
[    0.150896] calling  default_bdi_init+0x0/0x39 @ 1
[    0.150896] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.150896] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.150896] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.150896] initcall default_bdi_init+0x0/0x39 returned 0 after 0 usecs
[    0.150896] calling  percpu_enable_async+0x0/0x13 @ 1
[    0.150896] initcall percpu_enable_async+0x0/0x13 returned 0 after 0 usecs
[    0.150896] calling  kcompactd_init+0x0/0x49 @ 1
[    0.150896] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.150896] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.150896] initcall kcompactd_init+0x0/0x49 returned 0 after 3906 usecs
[    0.150896] calling  init_reserve_notifier+0x0/0x20 @ 1
[    0.150896] initcall init_reserve_notifier+0x0/0x20 returned 0 after 0 usecs
[    0.150896] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.150896] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.150896] calling  init_user_reserve+0x0/0x50 @ 1
[    0.150896] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.150896] calling  swap_init_sysfs+0x0/0x5d @ 1
[    0.150896] initcall swap_init_sysfs+0x0/0x5d returned 0 after 0 usecs
[    0.150896] calling  swapfile_init+0x0/0x62 @ 1
[    0.150896] initcall swapfile_init+0x0/0x62 returned 0 after 0 usecs
[    0.150896] calling  hugetlb_init+0x0/0x5d5 @ 1
[    0.150896] HugeTLB registered 4.00 MiB page size, pre-allocated 0 pages
[    0.150896] initcall hugetlb_init+0x0/0x5d5 returned 0 after 0 usecs
[    0.150896] calling  ksm_init+0x0/0x177 @ 1
[    0.152035] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.152035] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152044] initcall ksm_init+0x0/0x177 returned 0 after 0 usecs
[    0.152048] calling  hugepage_init+0x0/0x165 @ 1
[    0.152079] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.152123] initcall hugepage_init+0x0/0x165 returned 0 after 0 usecs
[    0.152123] calling  mem_cgroup_swap_init+0x0/0x4e @ 1
[    0.152123] initcall mem_cgroup_swap_init+0x0/0x4e returned 0 after 0 usecs
[    0.152123] calling  mem_cgroup_init+0x0/0x213 @ 1
[    0.152123] initcall mem_cgroup_init+0x0/0x213 returned 0 after 0 usecs
[    0.152123] calling  sel_ib_pkey_init+0x0/0xb3 @ 1
[    0.152123] initcall sel_ib_pkey_init+0x0/0xb3 returned 0 after 0 usecs
[    0.152123] calling  crypto_wq_init+0x0/0x2c @ 1
[    0.152163] initcall crypto_wq_init+0x0/0x2c returned 0 after 0 usecs
[    0.152163] calling  cryptomgr_init+0x0/0x14 @ 1
[    0.152163] initcall cryptomgr_init+0x0/0x14 returned 0 after 0 usecs
[    0.152163] calling  init_bio+0x0/0x17a @ 1
[    0.152163] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152163] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.152163] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152163] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.152163] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152163] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.152163] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152163] initcall init_bio+0x0/0x17a returned 0 after 0 usecs
[    0.152163] calling  blk_settings_init+0x0/0x22 @ 1
[    0.152163] initcall blk_settings_init+0x0/0x22 returned 0 after 0 usecs
[    0.152163] calling  blk_ioc_init+0x0/0x29 @ 1
[    0.152163] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.152163] initcall blk_ioc_init+0x0/0x29 returned 0 after 0 usecs
[    0.152163] calling  blk_softirq_init+0x0/0xe5 @ 1
[    0.152163] initcall blk_softirq_init+0x0/0xe5 returned 0 after 0 usecs
[    0.152163] calling  blk_mq_init+0x0/0x26 @ 1
[    0.152163] initcall blk_mq_init+0x0/0x26 returned 0 after 0 usecs
[    0.152164] calling  genhd_device_init+0x0/0x66 @ 1
[    0.152225] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.152248] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.152248] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152248] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.152248] initcall genhd_device_init+0x0/0x66 returned 0 after 0 usecs
[    0.152248] calling  irq_poll_setup+0x0/0xe0 @ 1
[    0.152248] initcall irq_poll_setup+0x0/0xe0 returned 0 after 0 usecs
[    0.152248] calling  byt_gpio_init+0x0/0x16 @ 1
[    0.152248] initcall byt_gpio_init+0x0/0x16 returned 0 after 0 usecs
[    0.152248] calling  chv_pinctrl_init+0x0/0x16 @ 1
[    0.152248] initcall chv_pinctrl_init+0x0/0x16 returned 0 after 0 usecs
[    0.152248] calling  bxt_pinctrl_init+0x0/0x16 @ 1
[    0.152248] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.152248] initcall bxt_pinctrl_init+0x0/0x16 returned 0 after 0 usecs
[    0.152248] calling  spt_pinctrl_init+0x0/0x16 @ 1
[    0.152248] initcall spt_pinctrl_init+0x0/0x16 returned 0 after 0 usecs
[    0.152248] calling  gpiolib_debugfs_init+0x0/0x24 @ 1
[    0.152248] initcall gpiolib_debugfs_init+0x0/0x24 returned 0 after 0 usecs
[    0.152248] calling  pci_slot_init+0x0/0x50 @ 1
[    0.152248] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[    0.152248] calling  fbmem_init+0x0/0xc6 @ 1
[    0.152287] initcall fbmem_init+0x0/0xc6 returned 0 after 0 usecs
[    0.152291] calling  acpi_init+0x0/0x34b @ 1
[    0.152343] ACPI: Added _OSI(Module Device)
[    0.152346] ACPI: Added _OSI(Processor Device)
[    0.152348] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.152350] ACPI: Added _OSI(Processor Aggregator Device)
[    0.152353] ACPI: Added _OSI(Linux-Dell-Video)
[    0.162023] ACPI: 4 ACPI AML tables successfully acquired and loaded
[    0.165516] ACPI: Interpreter enabled
[    0.165578] ACPI: (supports S0 S1 S3 S4 S5)
[    0.165581] ACPI: Using IOAPIC for interrupt routing
[    0.165617] HEST: Table parsing has been initialized.
[    0.165624] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.166049] ACPI: Enabled 19 GPEs in block 00 to 1F
[    0.175077] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.175093] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.175322] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.175434] acpi PNP0A08:00: host bridge window [io  0x0cf8-0x0cff] (ignored)
[    0.175439] acpi PNP0A08:00: host bridge window [io  0x0000-0x0cf7 window] (ignored)
[    0.175442] acpi PNP0A08:00: host bridge window [io  0x0d00-0xffff window] (ignored)
[    0.175446] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.175450] acpi PNP0A08:00: host bridge window [mem 0xe0000000-0xffffffff] (ignored)
[    0.175452] PCI: root bus 00: using default resources
[    0.176061] PCI host bridge to bus 0000:00
[    0.176068] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.176072] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[    0.176078] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.176097] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
[    0.176112] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.176119] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.176394] pci 0000:00:01.0: [1002:9802] type 00 class 0x030000
[    0.176421] pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[    0.176431] pci 0000:00:01.0: reg 0x14: [io  0x2000-0x20ff]
[    0.176441] pci 0000:00:01.0: reg 0x18: [mem 0xf0100000-0xf013ffff]
[    0.176473] pci 0000:00:01.0: enabling Extended Tags
[    0.176493] pci 0000:00:01.0: calling  quirk_no_pm_reset+0x0/0x60 @ 1
[    0.176498] pci 0000:00:01.0: quirk_no_pm_reset+0x0/0x60 took 0 usecs
[    0.176537] pci 0000:00:01.0: supports D1 D2
[    0.176765] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
[    0.176789] pci 0000:00:01.1: reg 0x10: [mem 0xf0140000-0xf0143fff]
[    0.176831] pci 0000:00:01.1: enabling Extended Tags
[    0.176880] pci 0000:00:01.1: supports D1 D2
[    0.177205] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    0.177237] pci 0000:00:11.0: reg 0x10: [io  0x2410-0x2417]
[    0.177251] pci 0000:00:11.0: reg 0x14: [io  0x2420-0x2423]
[    0.177264] pci 0000:00:11.0: reg 0x18: [io  0x2418-0x241f]
[    0.177278] pci 0000:00:11.0: reg 0x1c: [io  0x2424-0x2427]
[    0.177292] pci 0000:00:11.0: reg 0x20: [io  0x2400-0x240f]
[    0.177306] pci 0000:00:11.0: reg 0x24: [mem 0xf014b000-0xf014b3ff]
[    0.177641] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    0.177668] pci 0000:00:12.0: reg 0x10: [mem 0xf0148000-0xf0148fff]
[    0.178037] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    0.178068] pci 0000:00:12.2: reg 0x10: [mem 0xf014c000-0xf014c0ff]
[    0.178183] pci 0000:00:12.2: supports D1 D2
[    0.178186] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.178485] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    0.178512] pci 0000:00:13.0: reg 0x10: [mem 0xf0149000-0xf0149fff]
[    0.178811] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    0.178843] pci 0000:00:13.2: reg 0x10: [mem 0xf014d000-0xf014d0ff]
[    0.178956] pci 0000:00:13.2: supports D1 D2
[    0.178960] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.179254] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    0.179266] pci 0000:00:14.0: calling  sb600_disable_hpet_bar+0x0/0x70 @ 1
[    0.179273] pci 0000:00:14.0: sb600_disable_hpet_bar+0x0/0x70 took 0 usecs
[    0.179367] pci 0000:00:14.0: calling  force_disable_hpet_msi+0x0/0x20 @ 1
[    0.179372] pci 0000:00:14.0: force_disable_hpet_msi+0x0/0x20 took 0 usecs
[    0.179381] pci 0000:00:14.0: calling  sb600_hpet_quirk+0x0/0x70 @ 1
[    0.179386] pci 0000:00:14.0: sb600_hpet_quirk+0x0/0x70 took 0 usecs
[    0.179664] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[    0.179700] pci 0000:00:14.2: reg 0x10: [mem 0xf0144000-0xf0147fff 64bit]
[    0.179797] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.180098] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    0.180471] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    0.180783] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    0.180811] pci 0000:00:14.5: reg 0x10: [mem 0xf014a000-0xf014afff]
[    0.181182] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
[    0.181237] pci 0000:00:15.0: enabling Extended Tags
[    0.181311] pci 0000:00:15.0: supports D1 D2
[    0.181621] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
[    0.181683] pci 0000:00:15.1: enabling Extended Tags
[    0.181755] pci 0000:00:15.1: supports D1 D2
[    0.182070] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
[    0.182083] pci 0000:00:18.0: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.182088] pci 0000:00:18.0: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.182325] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
[    0.182336] pci 0000:00:18.1: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.182341] pci 0000:00:18.1: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.182581] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
[    0.182592] pci 0000:00:18.2: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.182597] pci 0000:00:18.2: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.182830] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
[    0.182841] pci 0000:00:18.3: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.182846] pci 0000:00:18.3: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.183103] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
[    0.183114] pci 0000:00:18.4: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.183119] pci 0000:00:18.4: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.183348] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
[    0.183359] pci 0000:00:18.5: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.183364] pci 0000:00:18.5: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.183592] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
[    0.183603] pci 0000:00:18.6: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.183608] pci 0000:00:18.6: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.183837] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
[    0.183848] pci 0000:00:18.7: calling  quirk_mmio_always_on+0x0/0x30 @ 1
[    0.183853] pci 0000:00:18.7: quirk_mmio_always_on+0x0/0x30 took 0 usecs
[    0.184368] pci 0000:00:14.4: PCI bridge to [bus 01] (subtractive decode)
[    0.184383] pci 0000:00:14.4:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.184387] pci 0000:00:14.4:   bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[    0.184472] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.184601] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
[    0.184645] pci 0000:03:00.0: reg 0x10: [io  0x1000-0x10ff]
[    0.184684] pci 0000:03:00.0: reg 0x18: [mem 0xf0004000-0xf0004fff 64bit pref]
[    0.184710] pci 0000:03:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[    0.184854] pci 0000:03:00.0: supports D1 D2
[    0.184857] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.196185] pci 0000:00:15.1: PCI bridge to [bus 03]
[    0.196200] pci 0000:00:15.1:   bridge window [io  0x1000-0x1fff]
[    0.196213] pci 0000:00:15.1:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.196253] pci_bus 0000:00: on NUMA node 0
[    0.197490] ACPI: PCI Interrupt Link [INTA] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.197718] ACPI: PCI Interrupt Link [INTB] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.198009] ACPI: PCI Interrupt Link [INTC] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.198300] ACPI: PCI Interrupt Link [INTD] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.198590] ACPI: PCI Interrupt Link [INTE] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.198880] ACPI: PCI Interrupt Link [INTF] (IRQs 9) *0, disabled.
[    0.199165] ACPI: PCI Interrupt Link [INTG] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.199455] ACPI: PCI Interrupt Link [INTH] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.200142] initcall acpi_init+0x0/0x34b returned 0 after 46875 usecs
[    0.200148] calling  pnp_init+0x0/0x14 @ 1
[    0.200170] initcall pnp_init+0x0/0x14 returned 0 after 0 usecs
[    0.200175] calling  misc_init+0x0/0xb7 @ 1
[    0.200196] initcall misc_init+0x0/0xb7 returned 0 after 0 usecs
[    0.200200] calling  vga_arb_device_init+0x0/0x2a8 @ 1
[    0.200251] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[    0.200251] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.200251] pci 0000:00:01.0: vgaarb: bridge control possible
[    0.200251] vgaarb: loaded
[    0.200251] initcall vga_arb_device_init+0x0/0x2a8 returned 0 after 0 usecs
[    0.200251] calling  cn_init+0x0/0xc0 @ 1
[    0.200251] initcall cn_init+0x0/0xc0 returned 0 after 0 usecs
[    0.200251] calling  dax_fs_init+0x0/0xbf @ 1
[    0.200251] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.200251] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.200251] initcall dax_fs_init+0x0/0xbf returned 0 after 0 usecs
[    0.200251] calling  dma_buf_init+0x0/0xbf @ 1
[    0.200259] initcall dma_buf_init+0x0/0xbf returned 0 after 0 usecs
[    0.200262] calling  typec_init+0x0/0x2d @ 1
[    0.200286] initcall typec_init+0x0/0x2d returned 0 after 0 usecs
[    0.200288] calling  serio_init+0x0/0x2d @ 1
[    0.200314] initcall serio_init+0x0/0x2d returned 0 after 0 usecs
[    0.200317] calling  input_init+0x0/0xe3 @ 1
[    0.200333] initcall input_init+0x0/0xe3 returned 0 after 0 usecs
[    0.200335] calling  rtc_init+0x0/0x5d @ 1
[    0.200346] initcall rtc_init+0x0/0x5d returned 0 after 0 usecs
[    0.200349] calling  pps_init+0x0/0xad @ 1
[    0.200358] pps_core: LinuxPPS API ver. 1 registered
[    0.200360] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.200363] initcall pps_init+0x0/0xad returned 0 after 0 usecs
[    0.200366] calling  ptp_init+0x0/0x9e @ 1
[    0.200375] PTP clock support registered
[    0.200378] initcall ptp_init+0x0/0x9e returned 0 after 0 usecs
[    0.200381] calling  power_supply_class_init+0x0/0x4e @ 1
[    0.200392] initcall power_supply_class_init+0x0/0x4e returned 0 after 0 usecs
[    0.200395] calling  hwmon_init+0x0/0xd5 @ 1
[    0.200409] initcall hwmon_init+0x0/0xd5 returned 0 after 0 usecs
[    0.200412] calling  edac_init+0x0/0x6f @ 1
[    0.200413] EDAC MC: Ver: 3.0.0
[    0.200685] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.200758] initcall edac_init+0x0/0x6f returned 0 after 0 usecs
[    0.200758] calling  leds_init+0x0/0x4b @ 1
[    0.200758] initcall leds_init+0x0/0x4b returned 0 after 0 usecs
[    0.200758] calling  dmi_init+0x0/0xf4 @ 1
[    0.200758] initcall dmi_init+0x0/0xf4 returned 0 after 0 usecs
[    0.200758] calling  devfreq_init+0x0/0xaa @ 1
[    0.200758] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.200758] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.200758] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.200758] initcall devfreq_init+0x0/0xaa returned 0 after 0 usecs
[    0.200758] calling  ras_init+0x0/0x14 @ 1
[    0.200758] initcall ras_init+0x0/0x14 returned 0 after 0 usecs
[    0.200758] calling  nvmem_init+0x0/0x14 @ 1
[    0.200758] initcall nvmem_init+0x0/0x14 returned 0 after 0 usecs
[    0.200758] calling  pci_subsys_init+0x0/0x81 @ 1
[    0.200758] PCI: Using ACPI for IRQ routing
[    0.200758] PCI: pci_cache_line_size set to 64 bytes
[    0.200758] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.200758] e820: reserve RAM buffer [mem 0xc7d3e000-0xc7ffffff]
[    0.200758] initcall pci_subsys_init+0x0/0x81 returned 0 after 0 usecs
[    0.200758] calling  proto_init+0x0/0x14 @ 1
[    0.200758] initcall proto_init+0x0/0x14 returned 0 after 0 usecs
[    0.200758] calling  net_dev_init+0x0/0x2f5 @ 1
[    0.200758] initcall net_dev_init+0x0/0x2f5 returned 0 after 0 usecs
[    0.200758] calling  neigh_init+0x0/0x78 @ 1
[    0.200758] initcall neigh_init+0x0/0x78 returned 0 after 0 usecs
[    0.200758] calling  fib_notifier_init+0x0/0x14 @ 1
[    0.200758] initcall fib_notifier_init+0x0/0x14 returned 0 after 0 usecs
[    0.200758] calling  fib_rules_init+0x0/0xa6 @ 1
[    0.200758] initcall fib_rules_init+0x0/0xa6 returned 0 after 0 usecs
[    0.200758] calling  init_cgroup_netprio+0x0/0x16 @ 1
[    0.200758] initcall init_cgroup_netprio+0x0/0x16 returned 0 after 0 usecs
[    0.200758] calling  bpf_lwt_init+0x0/0x19 @ 1
[    0.200758] initcall bpf_lwt_init+0x0/0x19 returned 0 after 0 usecs
[    0.200758] calling  pktsched_init+0x0/0xf6 @ 1
[    0.200758] initcall pktsched_init+0x0/0xf6 returned 0 after 0 usecs
[    0.200758] calling  tc_filter_init+0x0/0x97 @ 1
[    0.200758] initcall tc_filter_init+0x0/0x97 returned 0 after 0 usecs
[    0.200758] calling  tc_action_init+0x0/0x65 @ 1
[    0.200758] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.200758] initcall tc_action_init+0x0/0x65 returned 0 after 0 usecs
[    0.200758] calling  genl_init+0x0/0x33 @ 1
[    0.200758] initcall genl_init+0x0/0x33 returned 0 after 0 usecs
[    0.200758] calling  wireless_nlevent_init+0x0/0x38 @ 1
[    0.200758] initcall wireless_nlevent_init+0x0/0x38 returned 0 after 0 usecs
[    0.200758] calling  watchdog_init+0x0/0xe6 @ 1
[    0.200758] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.200758] initcall watchdog_init+0x0/0xe6 returned 0 after 0 usecs
[    0.200758] calling  nmi_warning_debugfs+0x0/0x26 @ 1
[    0.200758] initcall nmi_warning_debugfs+0x0/0x26 returned 0 after 0 usecs
[    0.200758] calling  save_microcode_in_initrd+0x0/0xd3 @ 1
[    0.200758] initcall save_microcode_in_initrd+0x0/0xd3 returned -22 after 0 usecs
[    0.200758] calling  hpet_late_init+0x0/0x14f @ 1
[    0.200758] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.200758] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.204020] initcall hpet_late_init+0x0/0x14f returned 0 after 3906 usecs
[    0.204024] calling  init_amd_nbs+0x0/0x135 @ 1
[    0.204071] initcall init_amd_nbs+0x0/0x135 returned 0 after 0 usecs
[    0.204075] calling  sugov_register+0x0/0x14 @ 1
[    0.204079] initcall sugov_register+0x0/0x14 returned 0 after 0 usecs
[    0.204083] calling  clocksource_done_booting+0x0/0x40 @ 1
[    0.204154] clocksource: Switched to clocksource tsc-early
[    0.204159] initcall clocksource_done_booting+0x0/0x40 returned 0 after 15 usecs
[    0.204164] calling  tracer_init_tracefs+0x0/0x1c3 @ 1
[    0.204207] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.213636] initcall tracer_init_tracefs+0x0/0x1c3 returned 0 after 9379 usecs
[    0.213641] calling  init_trace_printk_function_export+0x0/0x2d @ 1
[    0.213656] initcall init_trace_printk_function_export+0x0/0x2d returned 0 after 9 usecs
[    0.213660] calling  init_graph_tracefs+0x0/0x2d @ 1
[    0.213667] initcall init_graph_tracefs+0x0/0x2d returned 0 after 3 usecs
[    0.213671] calling  event_trace_init+0x0/0x280 @ 1
[    0.232006] initcall event_trace_init+0x0/0x280 returned 0 after 17885 usecs
[    0.232016] calling  init_kprobe_trace+0x0/0x83 @ 1
[    0.232033] initcall init_kprobe_trace+0x0/0x83 returned 0 after 12 usecs
[    0.232037] calling  bpf_init+0x0/0x42 @ 1
[    0.232057] initcall bpf_init+0x0/0x42 returned 0 after 16 usecs
[    0.232061] calling  init_pipe_fs+0x0/0x42 @ 1
[    0.232103] initcall init_pipe_fs+0x0/0x42 returned 0 after 36 usecs
[    0.232107] calling  cgroup_writeback_init+0x0/0x2c @ 1
[    0.232161] initcall cgroup_writeback_init+0x0/0x2c returned 0 after 48 usecs
[    0.232165] calling  inotify_user_setup+0x0/0x4a @ 1
[    0.232179] initcall inotify_user_setup+0x0/0x4a returned 0 after 9 usecs
[    0.232182] calling  eventpoll_init+0x0/0xb2 @ 1
[    0.232206] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.232229] initcall eventpoll_init+0x0/0xb2 returned 0 after 41 usecs
[    0.232232] calling  anon_inode_init+0x0/0x64 @ 1
[    0.232249] initcall anon_inode_init+0x0/0x64 returned 0 after 12 usecs
[    0.232252] calling  init_dax_wait_table+0x0/0x2f @ 1
[    0.232309] initcall init_dax_wait_table+0x0/0x2f returned 0 after 51 usecs
[    0.232312] calling  proc_locks_init+0x0/0x1f @ 1
[    0.232324] initcall proc_locks_init+0x0/0x1f returned 0 after 7 usecs
[    0.232327] calling  dquot_init+0x0/0x193 @ 1
[    0.232328] VFS: Disk quotas dquot_6.6.0
[    0.232379] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.232384] initcall dquot_init+0x0/0x193 returned 0 after 51 usecs
[    0.232387] calling  quota_init+0x0/0x25 @ 1
[    0.232418] initcall quota_init+0x0/0x25 returned 0 after 26 usecs
[    0.232421] calling  proc_cmdline_init+0x0/0x1f @ 1
[    0.232428] initcall proc_cmdline_init+0x0/0x1f returned 0 after 3 usecs
[    0.232431] calling  proc_consoles_init+0x0/0x1f @ 1
[    0.232437] initcall proc_consoles_init+0x0/0x1f returned 0 after 1 usecs
[    0.232440] calling  proc_cpuinfo_init+0x0/0x1f @ 1
[    0.232445] initcall proc_cpuinfo_init+0x0/0x1f returned 0 after 2 usecs
[    0.232449] calling  proc_devices_init+0x0/0x1f @ 1
[    0.232454] initcall proc_devices_init+0x0/0x1f returned 0 after 1 usecs
[    0.232457] calling  proc_interrupts_init+0x0/0x1f @ 1
[    0.232463] initcall proc_interrupts_init+0x0/0x1f returned 0 after 1 usecs
[    0.232466] calling  proc_loadavg_init+0x0/0x1f @ 1
[    0.232471] initcall proc_loadavg_init+0x0/0x1f returned 0 after 1 usecs
[    0.232474] calling  proc_meminfo_init+0x0/0x1f @ 1
[    0.232479] initcall proc_meminfo_init+0x0/0x1f returned 0 after 1 usecs
[    0.232482] calling  proc_stat_init+0x0/0x1f @ 1
[    0.232487] initcall proc_stat_init+0x0/0x1f returned 0 after 1 usecs
[    0.232491] calling  proc_uptime_init+0x0/0x1f @ 1
[    0.232496] initcall proc_uptime_init+0x0/0x1f returned 0 after 2 usecs
[    0.232499] calling  proc_version_init+0x0/0x1f @ 1
[    0.232504] initcall proc_version_init+0x0/0x1f returned 0 after 1 usecs
[    0.232508] calling  proc_softirqs_init+0x0/0x1f @ 1
[    0.232513] initcall proc_softirqs_init+0x0/0x1f returned 0 after 1 usecs
[    0.232516] calling  proc_kcore_init+0x0/0x10c @ 1
[    0.232525] initcall proc_kcore_init+0x0/0x10c returned 0 after 4 usecs
[    0.232528] calling  vmcore_init+0x0/0x764 @ 1
[    0.232532] initcall vmcore_init+0x0/0x764 returned 0 after 0 usecs
[    0.232535] calling  proc_kmsg_init+0x0/0x22 @ 1
[    0.232540] initcall proc_kmsg_init+0x0/0x22 returned 0 after 1 usecs
[    0.232543] calling  proc_page_init+0x0/0x4e @ 1
[    0.232551] initcall proc_page_init+0x0/0x4e returned 0 after 3 usecs
[    0.232554] calling  init_ramfs_fs+0x0/0x23 @ 1
[    0.232558] initcall init_ramfs_fs+0x0/0x23 returned 0 after 0 usecs
[    0.232561] calling  init_hugetlbfs_fs+0x0/0x2b7 @ 1
[    0.232601] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.232617] initcall init_hugetlbfs_fs+0x0/0x2b7 returned 0 after 50 usecs
[    0.232621] calling  tomoyo_initerface_init+0x0/0x156 @ 1
[    0.232625] initcall tomoyo_initerface_init+0x0/0x156 returned 0 after 0 usecs
[    0.232628] calling  aa_create_aafs+0x0/0x3c8 @ 1
[    0.232632] initcall aa_create_aafs+0x0/0x3c8 returned 0 after 0 usecs
[    0.232636] calling  blk_scsi_ioctl_init+0x0/0x352 @ 1
[    0.232641] initcall blk_scsi_ioctl_init+0x0/0x352 returned 0 after 1 usecs
[    0.232645] calling  dynamic_debug_init_debugfs+0x0/0x5f @ 1
[    0.232662] initcall dynamic_debug_init_debugfs+0x0/0x5f returned 0 after 11 usecs
[    0.232665] calling  simplefb_init+0x0/0x16 @ 1
[    0.232703] initcall simplefb_init+0x0/0x16 returned 0 after 33 usecs
[    0.232707] calling  acpi_event_init+0x0/0x31 @ 1
[    0.232722] initcall acpi_event_init+0x0/0x31 returned 0 after 10 usecs
[    0.232725] calling  pnp_system_init+0x0/0x14 @ 1
[    0.232745] initcall pnp_system_init+0x0/0x14 returned 0 after 14 usecs
[    0.232748] calling  pnpacpi_init+0x0/0x6c @ 1
[    0.232750] pnp: PnP ACPI init
[    0.233433] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.233539] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.233623] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.234113] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.234197] pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.234225] pnp: PnP ACPI: found 5 devices
[    0.234232] initcall pnpacpi_init+0x0/0x6c returned 0 after 1442 usecs
[    0.234236] calling  chr_dev_init+0x0/0x11f @ 1
[    0.240830] initcall chr_dev_init+0x0/0x11f returned 0 after 6424 usecs
[    0.240840] calling  firmware_class_init+0x0/0x106 @ 1
[    0.240848] initcall firmware_class_init+0x0/0x106 returned 0 after 2 usecs
[    0.240852] calling  thermal_init+0x0/0xcc @ 1
[    0.240896] initcall thermal_init+0x0/0xcc returned 0 after 38 usecs
[    0.240900] calling  cpufreq_gov_performance_init+0x0/0x14 @ 1
[    0.240905] initcall cpufreq_gov_performance_init+0x0/0x14 returned 0 after 1 usecs
[    0.240908] calling  cpufreq_gov_dbs_init+0x0/0x14 @ 1
[    0.240912] initcall cpufreq_gov_dbs_init+0x0/0x14 returned 0 after 0 usecs
[    0.240916] calling  pcibios_assign_resources+0x0/0x159 @ 1
[    0.241048] pci 0000:00:14.4: PCI bridge to [bus 01]
[    0.241069] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.241085] pci 0000:00:15.1: PCI bridge to [bus 03]
[    0.241090] pci 0000:00:15.1:   bridge window [io  0x1000-0x1fff]
[    0.241102] pci 0000:00:15.1:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.241115] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.241119] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[    0.241123] pci_bus 0000:01: resource 4 [io  0x0000-0xffff]
[    0.241127] pci_bus 0000:01: resource 5 [mem 0x00000000-0xffffffff]
[    0.241131] pci_bus 0000:03: resource 0 [io  0x1000-0x1fff]
[    0.241135] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.241213] initcall pcibios_assign_resources+0x0/0x159 returned 0 after 285 usecs
[    0.241218] calling  sysctl_core_init+0x0/0x28 @ 1
[    0.241249] initcall sysctl_core_init+0x0/0x28 returned 0 after 27 usecs
[    0.241254] calling  eth_offload_init+0x0/0x16 @ 1
[    0.241258] initcall eth_offload_init+0x0/0x16 returned 0 after 0 usecs
[    0.241262] calling  inet_init+0x0/0x285 @ 1
[    0.241276] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.241311] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.241320] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.241353] NET: Registered protocol family 2
[    0.241359] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.241392] random: get_random_u32 called from neigh_hash_alloc+0x9e/0x140 with crng_init=0
[    0.241409] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.241684] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.241738] random: get_random_u32 called from rt_genid_init+0x51/0xb0 with crng_init=0
[    0.241750] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.241774] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
[    0.241787] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.241825] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.241878] TCP: Hash tables configured (established 8192 bind 8192)
[    0.241942] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.241959] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.242010] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.242024] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.242075] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.242097] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.242108] initcall inet_init+0x0/0x285 returned 0 after 822 usecs
[    0.242112] calling  ipv4_offload_init+0x0/0x6e @ 1
[    0.242116] initcall ipv4_offload_init+0x0/0x6e returned 0 after 1 usecs
[    0.242119] calling  af_unix_init+0x0/0x4c @ 1
[    0.242125] NET: Registered protocol family 1
[    0.242139] initcall af_unix_init+0x0/0x4c returned 0 after 15 usecs
[    0.242142] calling  ipv6_offload_init+0x0/0x77 @ 1
[    0.242147] initcall ipv6_offload_init+0x0/0x77 returned 0 after 1 usecs
[    0.242150] calling  pci_apply_final_quirks+0x0/0x108 @ 1
[    0.242177] pci 0000:00:01.0: calling  pci_fixup_video+0x0/0x130 @ 1
[    0.242187] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.242193] pci 0000:00:01.0: pci_fixup_video+0x0/0x130 took 10 usecs
[    0.242203] pci 0000:00:01.1: calling  quirk_gpu_hda+0x0/0x150 @ 1
[    0.242212] pci 0000:00:01.1: Linked as a consumer to 0000:00:01.0
[    0.242232] pci 0000:00:01.1: quirk_gpu_hda+0x0/0x150 took 23 usecs
[    0.242246] pci 0000:00:11.0: calling  quirk_msi_intx_disable_ati_bug+0x0/0x70 @ 1
[    0.242254] pci 0000:00:11.0: quirk_msi_intx_disable_ati_bug+0x0/0x70 took 2 usecs
[    0.242338] pci 0000:00:12.0: calling  quirk_usb_early_handoff+0x0/0x860 @ 1
[    0.242431] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.300258] pci 0000:00:12.0: quirk_usb_early_handoff+0x0/0x860 took 56539 usecs
[    0.300347] pci 0000:00:12.2: calling  quirk_usb_early_handoff+0x0/0x860 @ 1
[    0.300886] pci 0000:00:12.2: quirk_usb_early_handoff+0x0/0x860 took 518 usecs
[    0.300968] pci 0000:00:13.0: calling  quirk_usb_early_handoff+0x0/0x860 @ 1
[    0.301463] pci 0000:00:13.0: quirk_usb_early_handoff+0x0/0x860 took 475 usecs
[    0.301544] pci 0000:00:13.2: calling  quirk_usb_early_handoff+0x0/0x860 @ 1
[    0.302036] pci 0000:00:13.2: quirk_usb_early_handoff+0x0/0x860 took 473 usecs
[    0.302122] pci 0000:00:14.2: calling  quirk_gpu_hda+0x0/0x150 @ 1
[    0.302128] pci 0000:00:14.2: quirk_gpu_hda+0x0/0x150 took 0 usecs
[    0.302155] pci 0000:00:14.5: calling  quirk_usb_early_handoff+0x0/0x860 @ 1
[    0.302643] pci 0000:00:14.5: quirk_usb_early_handoff+0x0/0x860 took 469 usecs
[    0.302850] PCI: CLS 64 bytes, default 64
[    0.302856] initcall pci_apply_final_quirks+0x0/0x108 returned 0 after 59278 usecs
[    0.302861] calling  acpi_reserve_resources+0x0/0xcd @ 1
[    0.302870] initcall acpi_reserve_resources+0x0/0xcd returned 0 after 4 usecs
[    0.302874] calling  populate_rootfs+0x0/0xf9 @ 1
[    0.303000] Unpacking initramfs...
[    0.389738] Freeing initrd memory: 6352K
[    0.389769] initcall populate_rootfs+0x0/0xf9 returned 0 after 84845 usecs
[    0.389776] calling  pci_iommu_init+0x0/0x3a @ 1
[    0.389781] initcall pci_iommu_init+0x0/0x3a returned 0 after 0 usecs
[    0.389914] calling  amd_uncore_init+0x0/0x298 @ 1
[    0.389919] initcall amd_uncore_init+0x0/0x298 returned -19 after 0 usecs
[    0.389923] calling  amd_ibs_init+0x0/0x196 @ 1
[    0.389929] LVT offset 0 assigned for vector 0x400
[    0.390194] perf: AMD IBS detected (0x000000ff)
[    0.390211] initcall amd_ibs_init+0x0/0x196 returned 0 after 268 usecs
[    0.390217] calling  msr_init+0x0/0x29b @ 1
[    0.390226] initcall msr_init+0x0/0x29b returned 0 after 4 usecs
[    0.390231] calling  register_kernel_offset_dumper+0x0/0x1b @ 1
[    0.390236] initcall register_kernel_offset_dumper+0x0/0x1b returned 0 after 1 usecs
[    0.390239] calling  i8259A_init_ops+0x0/0x25 @ 1
[    0.390243] initcall i8259A_init_ops+0x0/0x25 returned 0 after 0 usecs
[    0.390247] calling  init_tsc_clocksource+0x0/0x10c @ 1
[    0.390269] initcall init_tsc_clocksource+0x0/0x10c returned 0 after 17 usecs
[    0.390272] calling  add_rtc_cmos+0x0/0xb6 @ 1
[    0.390277] initcall add_rtc_cmos+0x0/0xb6 returned 0 after 1 usecs
[    0.390281] calling  i8237A_init_ops+0x0/0x16 @ 1
[    0.390374] initcall i8237A_init_ops+0x0/0x16 returned 0 after 86 usecs
[    0.390378] calling  thermal_throttle_init_device+0x0/0x43 @ 1
[    0.390383] initcall thermal_throttle_init_device+0x0/0x43 returned 0 after 0 usecs
[    0.390386] calling  ioapic_init_ops+0x0/0x16 @ 1
[    0.390390] initcall ioapic_init_ops+0x0/0x16 returned 0 after 0 usecs
[    0.390394] calling  add_pcspkr+0x0/0x61 @ 1
[    0.390495] initcall add_pcspkr+0x0/0x61 returned 0 after 94 usecs
[    0.390501] calling  start_periodic_check_for_corruption+0x0/0x60 @ 1
[    0.390503] Scanning for low memory corruption every 5 seconds
[    0.390512] initcall start_periodic_check_for_corruption+0x0/0x60 returned 0 after 5 usecs
[    0.390515] calling  sysfb_init+0x0/0xb0 @ 1
[    0.390971] initcall sysfb_init+0x0/0xb0 returned 0 after 435 usecs
[    0.390976] calling  pt_dump_init+0x0/0x57 @ 1
[    0.390981] initcall pt_dump_init+0x0/0x57 returned 0 after 0 usecs
[    0.390985] calling  crc32c_intel_mod_init+0x0/0x29 @ 1
[    0.390990] initcall crc32c_intel_mod_init+0x0/0x29 returned -19 after 1 usecs
[    0.390994] calling  crc32_pclmul_mod_init+0x0/0x34 @ 1
[    0.390995] PCLMULQDQ-NI instructions are not detected.
[    0.390999] initcall crc32_pclmul_mod_init+0x0/0x34 returned -19 after 1 usecs
[    0.391003] calling  iosf_mbi_init+0x0/0x1b @ 1
[    0.391044] initcall iosf_mbi_init+0x0/0x1b returned 0 after 36 usecs
[    0.391049] calling  proc_execdomains_init+0x0/0x1f @ 1
[    0.391117] initcall proc_execdomains_init+0x0/0x1f returned 0 after 60 usecs
[    0.391121] calling  register_warn_debugfs+0x0/0x24 @ 1
[    0.391202] initcall register_warn_debugfs+0x0/0x24 returned 0 after 73 usecs
[    0.391206] calling  cpuhp_sysfs_init+0x0/0x5f @ 1
[    0.391229] initcall cpuhp_sysfs_init+0x0/0x5f returned 0 after 17 usecs
[    0.391232] calling  ioresources_init+0x0/0x32 @ 1
[    0.391241] initcall ioresources_init+0x0/0x32 returned 0 after 4 usecs
[    0.391244] calling  init_sched_debug_procfs+0x0/0x29 @ 1
[    0.391250] initcall init_sched_debug_procfs+0x0/0x29 returned 0 after 2 usecs
[    0.391254] calling  snapshot_device_init+0x0/0x14 @ 1
[    0.391504] initcall snapshot_device_init+0x0/0x14 returned 0 after 229 usecs
[    0.391513] calling  irq_gc_init_ops+0x0/0x16 @ 1
[    0.391517] initcall irq_gc_init_ops+0x0/0x16 returned 0 after 0 usecs
[    0.391520] calling  irq_pm_init_ops+0x0/0x16 @ 1
[    0.391524] initcall irq_pm_init_ops+0x0/0x16 returned 0 after 0 usecs
[    0.391528] calling  timekeeping_init_ops+0x0/0x16 @ 1
[    0.391532] initcall timekeeping_init_ops+0x0/0x16 returned 0 after 0 usecs
[    0.391535] calling  init_clocksource_sysfs+0x0/0x24 @ 1
[    0.391648] initcall init_clocksource_sysfs+0x0/0x24 returned 0 after 105 usecs
[    0.391652] calling  init_timer_list_procfs+0x0/0x29 @ 1
[    0.391665] initcall init_timer_list_procfs+0x0/0x29 returned 0 after 8 usecs
[    0.391668] calling  alarmtimer_init+0x0/0x114 @ 1
[    0.391766] initcall alarmtimer_init+0x0/0x114 returned 0 after 91 usecs
[    0.391770] calling  init_posix_timers+0x0/0x29 @ 1
[    0.391795] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.391819] initcall init_posix_timers+0x0/0x29 returned 0 after 43 usecs
[    0.391822] calling  clockevents_init_sysfs+0x0/0xef @ 1
[    0.391844] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.391949] initcall clockevents_init_sysfs+0x0/0xef returned 0 after 118 usecs
[    0.391952] calling  proc_dma_init+0x0/0x1f @ 1
[    0.391959] initcall proc_dma_init+0x0/0x1f returned 0 after 2 usecs
[    0.391962] calling  proc_modules_init+0x0/0x1f @ 1
[    0.391968] initcall proc_modules_init+0x0/0x1f returned 0 after 2 usecs
[    0.391971] calling  kallsyms_init+0x0/0x22 @ 1
[    0.391977] initcall kallsyms_init+0x0/0x22 returned 0 after 1 usecs
[    0.391981] calling  pid_namespaces_init+0x0/0x3b @ 1
[    0.391996] initcall pid_namespaces_init+0x0/0x3b returned 0 after 11 usecs
[    0.392000] calling  audit_watch_init+0x0/0x36 @ 1
[    0.392004] initcall audit_watch_init+0x0/0x36 returned 0 after 1 usecs
[    0.392008] calling  audit_fsnotify_init+0x0/0x36 @ 1
[    0.392012] initcall audit_fsnotify_init+0x0/0x36 returned 0 after 0 usecs
[    0.392016] calling  audit_tree_init+0x0/0x90 @ 1
[    0.392021] initcall audit_tree_init+0x0/0x90 returned 0 after 1 usecs
[    0.392024] calling  init_kprobes+0x0/0x284 @ 1
[    0.392214] initcall init_kprobes+0x0/0x284 returned 0 after 181 usecs
[    0.392218] calling  seccomp_sysctl_init+0x0/0x31 @ 1
[    0.392235] initcall seccomp_sysctl_init+0x0/0x31 returned 0 after 12 usecs
[    0.392238] calling  utsname_sysctl_init+0x0/0x16 @ 1
[    0.392251] initcall utsname_sysctl_init+0x0/0x16 returned 0 after 8 usecs
[    0.392254] calling  init_tracepoints+0x0/0x2b @ 1
[    0.392258] initcall init_tracepoints+0x0/0x2b returned 0 after 0 usecs
[    0.392262] calling  stack_trace_init+0x0/0x9e @ 1
[    0.392290] initcall stack_trace_init+0x0/0x9e returned 0 after 23 usecs
[    0.392294] calling  init_mmio_trace+0x0/0xf @ 1
[    0.392302] initcall init_mmio_trace+0x0/0xf returned 0 after 3 usecs
[    0.392305] calling  init_blk_tracer+0x0/0x4d @ 1
[    0.392333] initcall init_blk_tracer+0x0/0x4d returned 0 after 22 usecs
[    0.392337] calling  perf_event_sysfs_init+0x0/0x88 @ 1
[    0.392596] initcall perf_event_sysfs_init+0x0/0x88 returned 0 after 248 usecs
[    0.392599] calling  padata_driver_init+0x0/0x35 @ 1
[    0.392604] initcall padata_driver_init+0x0/0x35 returned 0 after 1 usecs
[    0.392607] calling  system_trusted_keyring_init+0x0/0x6a @ 1
[    0.392609] Initialise system trusted keyrings
[    0.392618] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=0
[    0.392632] initcall system_trusted_keyring_init+0x0/0x6a returned 0 after 20 usecs
[    0.392635] calling  kswapd_init+0x0/0x3b @ 1
[    0.392754] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.392782] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.392989] initcall kswapd_init+0x0/0x3b returned 0 after 329 usecs
[    0.392998] calling  extfrag_debug_init+0x0/0x71 @ 1
[    0.393030] initcall extfrag_debug_init+0x0/0x71 returned 0 after 27 usecs
[    0.393034] calling  mm_compute_batch_init+0x0/0x1b @ 1
[    0.393040] initcall mm_compute_batch_init+0x0/0x1b returned 0 after 2 usecs
[    0.393044] calling  slab_proc_init+0x0/0x22 @ 1
[    0.393059] initcall slab_proc_init+0x0/0x22 returned 0 after 10 usecs
[    0.393062] calling  workingset_init+0x0/0x8c @ 1
[    0.393065] workingset: timestamp_bits=14 max_order=20 bucket_order=6
[    0.393075] initcall workingset_init+0x0/0x8c returned 0 after 8 usecs
[    0.393079] calling  proc_vmalloc_init+0x0/0x22 @ 1
[    0.393085] initcall proc_vmalloc_init+0x0/0x22 returned 0 after 2 usecs
[    0.393089] calling  procswaps_init+0x0/0x1f @ 1
[    0.393096] initcall procswaps_init+0x0/0x1f returned 0 after 2 usecs
[    0.393100] calling  init_frontswap+0x0/0x82 @ 1
[    0.393118] initcall init_frontswap+0x0/0x82 returned 0 after 13 usecs
[    0.393122] calling  slab_proc_init+0x0/0xc @ 1
[    0.393126] initcall slab_proc_init+0x0/0xc returned 0 after 0 usecs
[    0.393129] calling  cpucache_init+0x0/0x35 @ 1
[    0.393311] initcall cpucache_init+0x0/0x35 returned 0 after 158 usecs
[    0.393321] calling  init_zbud+0x0/0x20 @ 1
[    0.393322] zbud: loaded
[    0.393327] initcall init_zbud+0x0/0x20 returned 0 after 2 usecs
[    0.393330] calling  fcntl_init+0x0/0x29 @ 1
[    0.393341] initcall fcntl_init+0x0/0x29 returned 0 after 8 usecs
[    0.393344] calling  proc_filesystems_init+0x0/0x1f @ 1
[    0.393360] initcall proc_filesystems_init+0x0/0x1f returned 0 after 11 usecs
[    0.393363] calling  start_dirtytime_writeback+0x0/0x2c @ 1
[    0.393369] initcall start_dirtytime_writeback+0x0/0x2c returned 0 after 2 usecs
[    0.393373] calling  blkdev_init+0x0/0x2b @ 1
[    0.393403] initcall blkdev_init+0x0/0x2b returned 0 after 25 usecs
[    0.393405] calling  dio_init+0x0/0x2c @ 1
[    0.393421] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.393443] initcall dio_init+0x0/0x2c returned 0 after 32 usecs
[    0.393446] calling  dnotify_init+0x0/0x6f @ 1
[    0.393454] initcall dnotify_init+0x0/0x6f returned 0 after 4 usecs
[    0.393457] calling  fanotify_user_setup+0x0/0x6c @ 1
[    0.393480] initcall fanotify_user_setup+0x0/0x6c returned 0 after 18 usecs
[    0.393483] calling  userfaultfd_init+0x0/0x2c @ 1
[    0.393495] initcall userfaultfd_init+0x0/0x2c returned 0 after 8 usecs
[    0.393498] calling  aio_setup+0x0/0x91 @ 1
[    0.393538] initcall aio_setup+0x0/0x91 returned 0 after 34 usecs
[    0.393542] calling  init_devpts_fs+0x0/0x28 @ 1
[    0.393566] initcall init_devpts_fs+0x0/0x28 returned 0 after 20 usecs
[    0.393570] calling  init_pstore_fs+0x0/0x47 @ 1
[    0.393572] pstore: using deflate compression
[    0.393586] initcall init_pstore_fs+0x0/0x47 returned 0 after 12 usecs
[    0.393590] calling  ipc_init+0x0/0x5d @ 1
[    0.393603] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.393613] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.393620] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.393627] initcall ipc_init+0x0/0x5d returned 0 after 33 usecs
[    0.393630] calling  ipc_sysctl_init+0x0/0x16 @ 1
[    0.393650] initcall ipc_sysctl_init+0x0/0x16 returned 0 after 15 usecs
[    0.393653] calling  init_mqueue_fs+0x0/0x1c9 @ 1
[    0.393659] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.393666] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.393703] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.393717] initcall init_mqueue_fs+0x0/0x1c9 returned 0 after 58 usecs
[    0.393721] calling  key_proc_init+0x0/0x50 @ 1
[    0.393729] initcall key_proc_init+0x0/0x50 returned 0 after 4 usecs
[    0.393732] calling  selinux_nf_ip_init+0x0/0x3c @ 1
[    0.393736] initcall selinux_nf_ip_init+0x0/0x3c returned 0 after 0 usecs
[    0.393739] calling  init_sel_fs+0x0/0x10e @ 1
[    0.393743] initcall init_sel_fs+0x0/0x10e returned 0 after 0 usecs
[    0.393746] calling  selnl_init+0x0/0x6e @ 1
[    0.393771] initcall selnl_init+0x0/0x6e returned 0 after 19 usecs
[    0.393774] calling  sel_netif_init+0x0/0x7d @ 1
[    0.393778] initcall sel_netif_init+0x0/0x7d returned 0 after 0 usecs
[    0.393781] calling  sel_netnode_init+0x0/0xb3 @ 1
[    0.393785] initcall sel_netnode_init+0x0/0xb3 returned 0 after 0 usecs
[    0.393788] calling  sel_netport_init+0x0/0xb3 @ 1
[    0.393792] initcall sel_netport_init+0x0/0xb3 returned 0 after 0 usecs
[    0.393795] calling  aurule_init+0x0/0x2a @ 1
[    0.393799] initcall aurule_init+0x0/0x2a returned 0 after 0 usecs
[    0.393802] calling  crypto_algapi_init+0x0/0x11 @ 1
[    0.393809] initcall crypto_algapi_init+0x0/0x11 returned 0 after 2 usecs
[    0.393812] calling  seqiv_module_init+0x0/0x14 @ 1
[    0.393817] initcall seqiv_module_init+0x0/0x14 returned 0 after 0 usecs
[    0.393822] calling  rsa_init+0x0/0x40 @ 1
[    0.393930] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.394224] initcall rsa_init+0x0/0x40 returned 0 after 371 usecs
[    0.394235] calling  hmac_module_init+0x0/0x14 @ 1
[    0.394240] initcall hmac_module_init+0x0/0x14 returned 0 after 0 usecs
[    0.394244] calling  crypto_null_mod_init+0x0/0x46 @ 1
[    0.394528] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.394603] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.394613] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.394663] initcall crypto_null_mod_init+0x0/0x46 returned 0 after 403 usecs
[    0.394666] calling  md5_mod_init+0x0/0x14 @ 1
[    0.394709] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.394726] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.394773] initcall md5_mod_init+0x0/0x14 returned 0 after 99 usecs
[    0.394777] calling  sha1_generic_mod_init+0x0/0x14 @ 1
[    0.394802] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.394827] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.394862] initcall sha1_generic_mod_init+0x0/0x14 returned 0 after 77 usecs
[    0.394866] calling  sha256_generic_mod_init+0x0/0x19 @ 1
[    0.394889] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.395368] initcall sha256_generic_mod_init+0x0/0x19 returned 0 after 470 usecs
[    0.395377] calling  crypto_ctr_module_init+0x0/0x38 @ 1
[    0.395382] initcall crypto_ctr_module_init+0x0/0x38 returned 0 after 1 usecs
[    0.395386] calling  crypto_gcm_module_init+0x0/0xa7 @ 1
[    0.395393] initcall crypto_gcm_module_init+0x0/0xa7 returned 0 after 2 usecs
[    0.395396] calling  aes_init+0x0/0x14 @ 1
[    0.395437] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.395460] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.395540] initcall aes_init+0x0/0x14 returned 0 after 134 usecs
[    0.395544] calling  deflate_mod_init+0x0/0x3d @ 1
[    0.395723] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.395774] initcall deflate_mod_init+0x0/0x3d returned 0 after 219 usecs
[    0.395778] calling  crc32c_mod_init+0x0/0x14 @ 1
[    0.395806] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.395857] initcall crc32c_mod_init+0x0/0x14 returned 0 after 71 usecs
[    0.395861] calling  crc32_mod_init+0x0/0x14 @ 1
[    0.395870] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.395891] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.395941] initcall crc32_mod_init+0x0/0x14 returned 0 after 72 usecs
[    0.395945] calling  crct10dif_mod_init+0x0/0x14 @ 1
[    0.396009] initcall crct10dif_mod_init+0x0/0x14 returned 0 after 58 usecs
[    0.396013] calling  lzo_mod_init+0x0/0x38 @ 1
[    0.396032] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396042] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396334] initcall lzo_mod_init+0x0/0x38 returned 0 after 302 usecs
[    0.396340] calling  drbg_init+0x0/0xad @ 1
[    0.396377] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396390] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396408] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396492] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396618] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396629] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396639] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396705] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396711] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396778] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396841] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396850] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396859] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.396922] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.396975] initcall drbg_init+0x0/0xad returned 0 after 614 usecs
[    0.396979] calling  jent_mod_init+0x0/0x31 @ 1
[    0.398132] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.398279] initcall jent_mod_init+0x0/0x31 returned 0 after 1250 usecs
[    0.398288] calling  ghash_mod_init+0x0/0x14 @ 1
[    0.398326] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.398379] initcall ghash_mod_init+0x0/0x14 returned 0 after 83 usecs
[    0.398383] calling  asymmetric_key_init+0x0/0x14 @ 1
[    0.398386] Key type asymmetric registered
[    0.398390] initcall asymmetric_key_init+0x0/0x14 returned 0 after 3 usecs
[    0.398394] calling  x509_key_init+0x0/0x14 @ 1
[    0.398396] Asymmetric key parser 'x509' registered
[    0.398400] initcall x509_key_init+0x0/0x14 returned 0 after 2 usecs
[    0.398404] calling  proc_genhd_init+0x0/0x32 @ 1
[    0.398422] initcall proc_genhd_init+0x0/0x32 returned 0 after 13 usecs
[    0.398426] calling  init_emergency_pool+0x0/0xa9 @ 1
[    0.398465] bounce: pool size: 64 pages
[    0.398478] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.398499] initcall init_emergency_pool+0x0/0xa9 returned 0 after 67 usecs
[    0.398502] calling  bsg_init+0x0/0x26e @ 1
[    0.398548] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    0.398553] initcall bsg_init+0x0/0x26e returned 0 after 44 usecs
[    0.398556] calling  throtl_init+0x0/0x3c @ 1
[    0.398614] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.398742] initcall throtl_init+0x0/0x3c returned 0 after 163 usecs
[    0.398751] calling  noop_init+0x0/0x14 @ 1
[    0.398755] io scheduler noop registered
[    0.398759] initcall noop_init+0x0/0x14 returned 0 after 3 usecs
[    0.398763] calling  deadline_init+0x0/0x14 @ 1
[    0.398765] io scheduler deadline registered
[    0.398769] initcall deadline_init+0x0/0x14 returned 0 after 1 usecs
[    0.398772] calling  cfq_init+0x0/0x6e @ 1
[    0.398806] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.398836] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.398854] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.398864] io scheduler cfq registered (default)
[    0.398869] initcall cfq_init+0x0/0x6e returned 0 after 90 usecs
[    0.398873] calling  deadline_init+0x0/0x14 @ 1
[    0.398875] io scheduler mq-deadline registered
[    0.398879] initcall deadline_init+0x0/0x14 returned 0 after 2 usecs
[    0.398882] calling  kyber_init+0x0/0x14 @ 1
[    0.398884] io scheduler kyber registered
[    0.398888] initcall kyber_init+0x0/0x14 returned 0 after 1 usecs
[    0.398892] calling  crc_t10dif_mod_init+0x0/0x35 @ 1
[    0.398904] initcall crc_t10dif_mod_init+0x0/0x35 returned 0 after 7 usecs
[    0.398908] calling  percpu_counter_startup+0x0/0x50 @ 1
[    0.398953] initcall percpu_counter_startup+0x0/0x50 returned 0 after 38 usecs
[    0.398957] calling  audit_classes_init+0x0/0x4f @ 1
[    0.398965] initcall audit_classes_init+0x0/0x4f returned 0 after 3 usecs
[    0.398969] calling  sg_pool_init+0x0/0x297 @ 1
[    0.398985] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.398996] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.399008] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.399018] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.399028] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.399038] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.399051] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.399057] initcall sg_pool_init+0x0/0x297 returned 0 after 81 usecs
[    0.399061] calling  phy_core_init+0x0/0x5a @ 1
[    0.399093] initcall phy_core_init+0x0/0x5a returned 0 after 27 usecs
[    0.399096] calling  pci_proc_init+0x0/0x5d @ 1
[    0.399171] initcall pci_proc_init+0x0/0x5d returned 0 after 68 usecs
[    0.399174] calling  pcie_portdrv_init+0x0/0x4b @ 1
[    0.400514] initcall pcie_portdrv_init+0x0/0x4b returned 0 after 1303 usecs
[    0.400518] calling  aer_service_init+0x0/0x3c @ 1
[    0.400534] initcall aer_service_init+0x0/0x3c returned 0 after 12 usecs
[    0.400537] calling  pcie_pme_service_init+0x0/0x14 @ 1
[    0.400662] pcieport 0000:00:15.0: Signaling PME with IRQ 24
[    0.400712] pcieport 0000:00:15.1: Signaling PME with IRQ 25
[    0.400735] initcall pcie_pme_service_init+0x0/0x14 returned 0 after 189 usecs
[    0.400738] calling  dpc_service_init+0x0/0x14 @ 1
[    0.400753] initcall dpc_service_init+0x0/0x14 returned 0 after 10 usecs
[    0.400756] calling  pci_hotplug_init+0x0/0x4c @ 1
[    0.400760] initcall pci_hotplug_init+0x0/0x4c returned 0 after 0 usecs
[    0.400762] calling  pcied_init+0x0/0x85 @ 1
[    0.400776] initcall pcied_init+0x0/0x85 returned 0 after 10 usecs
[    0.400780] calling  vesafb_driver_init+0x0/0x16 @ 1
[    0.400800] initcall vesafb_driver_init+0x0/0x16 returned 0 after 16 usecs
[    0.400804] calling  intel_idle_init+0x0/0x709 @ 1
[    0.400809] initcall intel_idle_init+0x0/0x709 returned -19 after 2 usecs
[    0.400813] calling  acpi_processor_driver_init+0x0/0x8d @ 1
[    0.401555] initcall acpi_processor_driver_init+0x0/0x8d returned 0 after 710 usecs
[    0.401563] calling  acpi_hed_driver_init+0x0/0x14 @ 1
[    0.401616] initcall acpi_hed_driver_init+0x0/0x14 returned 0 after 46 usecs
[    0.401619] calling  erst_init+0x0/0x2d4 @ 1
[    0.401625] initcall erst_init+0x0/0x2d4 returned 0 after 2 usecs
[    0.401628] calling  ghes_init+0x0/0x1a4 @ 1
[    0.401672] GHES: Failed to enable APEI firmware first mode.
[    0.401677] initcall ghes_init+0x0/0x1a4 returned 0 after 42 usecs
[    0.401680] calling  extlog_init+0x0/0x34d @ 1
[    0.401685] initcall extlog_init+0x0/0x34d returned -19 after 0 usecs
[    0.401689] calling  gpio_clk_driver_init+0x0/0x16 @ 1
[    0.401706] initcall gpio_clk_driver_init+0x0/0x16 returned 0 after 12 usecs
[    0.401710] calling  plt_clk_driver_init+0x0/0x16 @ 1
[    0.401726] initcall plt_clk_driver_init+0x0/0x16 returned 0 after 11 usecs
[    0.401730] calling  n_null_init+0x0/0x2b @ 1
[    0.401734] initcall n_null_init+0x0/0x2b returned 0 after 0 usecs
[    0.401738] calling  pty_init+0x0/0x20c @ 1
[    0.402004] initcall pty_init+0x0/0x20c returned 0 after 246 usecs
[    0.402013] calling  sysrq_init+0x0/0x5f @ 1
[    0.402030] initcall sysrq_init+0x0/0x5f returned 0 after 12 usecs
[    0.402034] calling  serial8250_init+0x0/0x180 @ 1
[    0.402037] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.422977] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.424331] initcall serial8250_init+0x0/0x180 returned 0 after 21769 usecs
[    0.424336] calling  serial_pci_driver_init+0x0/0x1b @ 1
[    0.424419] initcall serial_pci_driver_init+0x0/0x1b returned 0 after 76 usecs
[    0.424423] calling  exar_pci_driver_init+0x0/0x1b @ 1
[    0.424455] initcall exar_pci_driver_init+0x0/0x1b returned 0 after 26 usecs
[    0.424459] calling  dw8250_platform_driver_init+0x0/0x16 @ 1
[    0.424480] initcall dw8250_platform_driver_init+0x0/0x16 returned 0 after 16 usecs
[    0.424484] calling  hpet_init+0x0/0x5c @ 1
[    0.424671] initcall hpet_init+0x0/0x5c returned 0 after 177 usecs
[    0.424675] calling  agp_init+0x0/0x29 @ 1
[    0.424677] Linux agpgart interface v0.103
[    0.424681] initcall agp_init+0x0/0x29 returned 0 after 1 usecs
[    0.424684] calling  agp_amd64_mod_init+0x0/0xf @ 1
[    0.425276] initcall agp_amd64_mod_init+0x0/0xf returned -19 after 572 usecs
[    0.425281] calling  agp_intel_init+0x0/0x2a @ 1
[    0.425312] initcall agp_intel_init+0x0/0x2a returned 0 after 26 usecs
[    0.425316] calling  agp_sis_init+0x0/0x2a @ 1
[    0.425341] initcall agp_sis_init+0x0/0x2a returned 0 after 20 usecs
[    0.425345] calling  agp_via_init+0x0/0x2a @ 1
[    0.425370] initcall agp_via_init+0x0/0x2a returned 0 after 20 usecs
[    0.425375] calling  cn_proc_init+0x0/0x35 @ 1
[    0.425381] initcall cn_proc_init+0x0/0x35 returned 0 after 2 usecs
[    0.425385] calling  topology_sysfs_init+0x0/0x40 @ 1
[    0.425414] initcall topology_sysfs_init+0x0/0x40 returned 0 after 24 usecs
[    0.425418] calling  cacheinfo_sysfs_init+0x0/0x2a @ 1
[    0.426009] initcall cacheinfo_sysfs_init+0x0/0x2a returned 169 after 560 usecs
[    0.426018] calling  devcoredump_init+0x0/0x19 @ 1
[    0.426041] initcall devcoredump_init+0x0/0x19 returned 0 after 18 usecs
[    0.426044] calling  net_olddevs_init+0x0/0x51 @ 1
[    0.426054] initcall net_olddevs_init+0x0/0x51 returned 0 after 6 usecs
[    0.426057] calling  fealnx_init+0x0/0x1b @ 1
[    0.426097] initcall fealnx_init+0x0/0x1b returned 0 after 35 usecs
[    0.426101] calling  ledtrig_usb_init+0x0/0x2a @ 1
[    0.426108] initcall ledtrig_usb_init+0x0/0x2a returned 0 after 3 usecs
[    0.426111] calling  i8042_init+0x0/0x46c @ 1
[    0.426224] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.430270] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.430303] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.430519] initcall i8042_init+0x0/0x46c returned 0 after 4295 usecs
[    0.430525] calling  input_leds_init+0x0/0x14 @ 1
[    0.430530] initcall input_leds_init+0x0/0x14 returned 0 after 1 usecs
[    0.430533] calling  atkbd_init+0x0/0x25 @ 1
[    0.430571] initcall atkbd_init+0x0/0x25 returned 0 after 33 usecs
[    0.430575] calling  cmos_init+0x0/0x83 @ 1
[    0.430725] rtc_cmos 00:00: RTC can wake from S4
[    0.431177] rtc_cmos 00:00: registered as rtc0
[    0.431265] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[    0.431303] initcall cmos_init+0x0/0x83 returned 0 after 700 usecs
[    0.431308] calling  intel_pstate_init+0x0/0x3e1 @ 1
[    0.431314] initcall intel_pstate_init+0x0/0x3e1 returned -19 after 1 usecs
[    0.431318] calling  ledtrig_cpu_init+0x0/0xf1 @ 1
[    0.431467] ledtrig-cpu: registered to indicate activity on CPUs
[    0.431472] initcall ledtrig_cpu_init+0x0/0xf1 returned 0 after 145 usecs
[    0.431475] calling  dmi_sysfs_init+0x0/0xc1 @ 1
[    0.431589] initcall dmi_sysfs_init+0x0/0xc1 returned 0 after 106 usecs
[    0.431593] calling  coreboot_table_acpi_init+0x0/0x16 @ 1
[    0.431707] initcall coreboot_table_acpi_init+0x0/0x16 returned 0 after 106 usecs
[    0.431711] calling  platform_memconsole_init+0x0/0x6a @ 1
[    0.431802] initcall platform_memconsole_init+0x0/0x6a returned 0 after 83 usecs
[    0.431806] calling  pmc_atom_init+0x0/0x234 @ 1
[    0.431826] initcall pmc_atom_init+0x0/0x234 returned -19 after 16 usecs
[    0.431829] calling  powercap_init+0x0/0x461 @ 1
[    0.431925] initcall powercap_init+0x0/0x461 returned 0 after 89 usecs
[    0.431930] calling  pm_check_save_msr+0x0/0x20 @ 1
[    0.431934] initcall pm_check_save_msr+0x0/0x20 returned 0 after 1 usecs
[    0.431938] calling  sock_diag_init+0x0/0x3e @ 1
[    0.431993] initcall sock_diag_init+0x0/0x3e returned 0 after 48 usecs
[    0.431998] calling  blackhole_init+0x0/0x14 @ 1
[    0.432003] initcall blackhole_init+0x0/0x14 returned 0 after 1 usecs
[    0.432006] calling  gre_offload_init+0x0/0x47 @ 1
[    0.432010] initcall gre_offload_init+0x0/0x47 returned 0 after 0 usecs
[    0.432013] calling  sysctl_ipv4_init+0x0/0x45 @ 1
[    0.432118] initcall sysctl_ipv4_init+0x0/0x45 returned 0 after 98 usecs
[    0.432121] calling  cubictcp_register+0x0/0x120 @ 1
[    0.432127] initcall cubictcp_register+0x0/0x120 returned 0 after 2 usecs
[    0.432129] calling  tls_register+0x0/0x10c @ 1
[    0.432135] initcall tls_register+0x0/0x10c returned 0 after 2 usecs
[    0.432138] calling  inet6_init+0x0/0x375 @ 1
[    0.432153] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.432177] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.432186] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.432225] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.432237] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.432245] NET: Registered protocol family 10
[    0.432259] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.432289] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.432312] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.432336] random: get_random_u32 called from neigh_hash_alloc+0x9e/0x140 with crng_init=0
[    0.432354] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.432640] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.432968] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.433108] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.433130] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.433163] Segment Routing with IPv6
[    0.433205] initcall inet6_init+0x0/0x375 returned 0 after 1034 usecs
[    0.433209] calling  mip6_init+0x0/0xac @ 1
[    0.433211] mip6: Mobile IPv6
[    0.433216] initcall mip6_init+0x0/0xac returned 0 after 2 usecs
[    0.433218] calling  packet_init+0x0/0x3e @ 1
[    0.433222] NET: Registered protocol family 17
[    0.433230] initcall packet_init+0x0/0x3e returned 0 after 7 usecs
[    0.433233] calling  strp_mod_init+0x0/0x2b @ 1
[    0.433271] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.433407] initcall strp_mod_init+0x0/0x2b returned 0 after 153 usecs
[    0.433415] calling  dcbnl_init+0x0/0x6e @ 1
[    0.433423] initcall dcbnl_init+0x0/0x6e returned 0 after 4 usecs
[    0.433426] calling  mpls_gso_init+0x0/0x2a @ 1
[    0.433427] mpls_gso: MPLS GSO support
[    0.433432] initcall mpls_gso_init+0x0/0x2a returned 0 after 2 usecs
[    0.433437] calling  mcheck_init_device+0x0/0x120 @ 1
[    0.433581] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.433892] initcall mcheck_init_device+0x0/0x120 returned 0 after 438 usecs
[    0.433896] calling  dev_mcelog_init_device+0x0/0x4b @ 1
[    0.434147] initcall dev_mcelog_init_device+0x0/0x4b returned 0 after 240 usecs
[    0.434279] calling  mcheck_late_init+0x0/0x69 @ 1
[    0.434305] initcall mcheck_late_init+0x0/0x69 returned 0 after 20 usecs
[    0.434309] calling  severities_debugfs_init+0x0/0x3a @ 1
[    0.434317] initcall severities_debugfs_init+0x0/0x3a returned 0 after 3 usecs
[    0.434321] calling  threshold_init_device+0x0/0x47 @ 1
[    0.434325] initcall threshold_init_device+0x0/0x47 returned 0 after 0 usecs
[    0.434329] calling  microcode_init+0x0/0x204 @ 1
[    0.434391] microcode: CPU0: patch_level=0x05000119
[    0.434413] microcode: CPU1: patch_level=0x05000119
[    0.434573] microcode: Microcode Update Driver: v2.2.
[    0.434580] initcall microcode_init+0x0/0x204 returned 0 after 239 usecs
[    0.434584] calling  hpet_insert_resource+0x0/0x24 @ 1
[    0.434592] initcall hpet_insert_resource+0x0/0x24 returned 0 after 3 usecs
[    0.434595] calling  update_mp_table+0x0/0xa1d @ 1
[    0.434599] initcall update_mp_table+0x0/0xa1d returned 0 after 0 usecs
[    0.434602] calling  lapic_insert_resource+0x0/0x3b @ 1
[    0.434606] initcall lapic_insert_resource+0x0/0x3b returned 0 after 0 usecs
[    0.434609] calling  print_ICs+0x0/0x1a4 @ 1
[    0.434613] initcall print_ICs+0x0/0x1a4 returned 0 after 0 usecs
[    0.434616] calling  print_ipi_mode+0x0/0x2b @ 1
[    0.434618] Using IPI No-Shortcut mode
[    0.434622] initcall print_ipi_mode+0x0/0x2b returned 0 after 1 usecs
[    0.434626] calling  pat_memtype_list_init+0x0/0x4d @ 1
[    0.434635] initcall pat_memtype_list_init+0x0/0x4d returned 0 after 5 usecs
[    0.434639] calling  create_tlb_single_page_flush_ceiling+0x0/0x28 @ 1
[    0.434647] initcall create_tlb_single_page_flush_ceiling+0x0/0x28 returned 0 after 3 usecs
[    0.434651] calling  init_oops_id+0x0/0x50 @ 1
[    0.434656] random: get_random_bytes called from init_oops_id+0x42/0x50 with crng_init=0
[    0.434663] initcall init_oops_id+0x0/0x50 returned 0 after 8 usecs
[    0.434666] calling  sched_clock_init_late+0x0/0xab @ 1
[    0.434671] sched_clock: Marking stable (434561425, 0)->(518459838, -83898413)
[    0.434830] initcall sched_clock_init_late+0x0/0xab returned 0 after 155 usecs
[    0.434833] calling  sched_init_debug+0x0/0x3a @ 1
[    0.434843] initcall sched_init_debug+0x0/0x3a returned 0 after 6 usecs
[    0.434847] calling  pm_qos_power_init+0x0/0x131 @ 1
[    0.435429] initcall pm_qos_power_init+0x0/0x131 returned 0 after 564 usecs
[    0.435432] calling  pm_debugfs_init+0x0/0x24 @ 1
[    0.435440] initcall pm_debugfs_init+0x0/0x24 returned 0 after 4 usecs
[    0.435444] calling  printk_late_init+0x0/0x10c @ 1
[    0.435448] initcall printk_late_init+0x0/0x10c returned 0 after 1 usecs
[    0.435452] calling  tk_debug_sleep_time_init+0x0/0x3c @ 1
[    0.435460] initcall tk_debug_sleep_time_init+0x0/0x3c returned 0 after 3 usecs
[    0.435463] calling  debugfs_kprobe_init+0x0/0xb7 @ 1
[    0.435477] initcall debugfs_kprobe_init+0x0/0xb7 returned 0 after 9 usecs
[    0.435481] calling  taskstats_init+0x0/0x38 @ 1
[    0.435501] registered taskstats version 1
[    0.435505] initcall taskstats_init+0x0/0x38 returned 0 after 19 usecs
[    0.435509] calling  load_system_certificate_list+0x0/0x13a @ 1
[    0.435510] Loading compiled-in X.509 certificates
[    0.435514] initcall load_system_certificate_list+0x0/0x13a returned 0 after 1 usecs
[    0.435518] calling  fault_around_debugfs+0x0/0x35 @ 1
[    0.435526] initcall fault_around_debugfs+0x0/0x35 returned 0 after 3 usecs
[    0.435530] calling  max_swapfiles_check+0x0/0xc @ 1
[    0.435534] initcall max_swapfiles_check+0x0/0xc returned 0 after 0 usecs
[    0.435538] calling  init_zswap+0x0/0x40f @ 1
[    0.435582] zswap: loaded using pool lzo/zbud
[    0.435748] initcall init_zswap+0x0/0x40f returned 0 after 199 usecs
[    0.435752] calling  split_huge_pages_debugfs+0x0/0x35 @ 1
[    0.435759] initcall split_huge_pages_debugfs+0x0/0x35 returned 0 after 3 usecs
[    0.435764] calling  kmemleak_late_init+0x0/0x8d @ 1
[    0.435775] initcall kmemleak_late_init+0x0/0x8d returned -12 after 7 usecs
[    0.435779] calling  check_early_ioremap_leak+0x0/0x93 @ 1
[    0.435784] initcall check_early_ioremap_leak+0x0/0x93 returned 0 after 0 usecs
[    0.435788] calling  init_root_keyring+0x0/0xf @ 1
[    0.435810] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=0
[    0.435833] initcall init_root_keyring+0x0/0xf returned 0 after 40 usecs
[    0.435837] calling  init_profile_hash+0x0/0x94 @ 1
[    0.435841] initcall init_profile_hash+0x0/0x94 returned 0 after 0 usecs
[    0.435845] calling  prandom_reseed+0x0/0x27 @ 1
[    0.435851] random: get_random_bytes called from prandom_seed_full_state+0x65/0x120 with crng_init=0
[    0.435860] initcall prandom_reseed+0x0/0x27 returned 0 after 10 usecs
[    0.435864] calling  init_error_injection+0x0/0x61 @ 1
[    0.436027] initcall init_error_injection+0x0/0x61 returned 0 after 154 usecs
[    0.436032] calling  pci_resource_alignment_sysfs_init+0x0/0x19 @ 1
[    0.436040] initcall pci_resource_alignment_sysfs_init+0x0/0x19 returned 0 after 4 usecs
[    0.436044] calling  pci_sysfs_init+0x0/0x47 @ 1
[    0.436304] initcall pci_sysfs_init+0x0/0x47 returned 0 after 248 usecs
[    0.436309] calling  bert_init+0x0/0x246 @ 1
[    0.436314] initcall bert_init+0x0/0x246 returned 0 after 2 usecs
[    0.436318] calling  clk_debug_init+0x0/0x10c @ 1
[    0.436335] initcall clk_debug_init+0x0/0x10c returned 0 after 13 usecs
[    0.436340] calling  dmar_free_unused_resources+0x0/0x12e @ 1
[    0.436345] initcall dmar_free_unused_resources+0x0/0x12e returned 0 after 0 usecs
[    0.436349] calling  deferred_probe_initcall+0x0/0x30 @ 1
[    0.436369] initcall deferred_probe_initcall+0x0/0x30 returned 0 after 14 usecs
[    0.436372] calling  rtc_hctosys+0x0/0x160 @ 1
[    0.436485] rtc_cmos 00:00: setting system clock to 2018-04-25 07:24:44 UTC (1524641084)
[    0.436489] initcall rtc_hctosys+0x0/0x160 returned 0 after 110 usecs
[    0.436493] calling  firmware_memmap_init+0x0/0x3d @ 1
[    0.436543] initcall firmware_memmap_init+0x0/0x3d returned 0 after 44 usecs
[    0.436547] calling  pci_mmcfg_late_insert_resources+0x0/0x59 @ 1
[    0.436552] initcall pci_mmcfg_late_insert_resources+0x0/0x59 returned 0 after 0 usecs
[    0.436556] calling  tcp_congestion_default+0x0/0x19 @ 1
[    0.436561] initcall tcp_congestion_default+0x0/0x19 returned 0 after 1 usecs
[    0.436565] calling  software_resume+0x0/0x390 @ 1
[    0.436570] initcall software_resume+0x0/0x390 returned -2 after 1 usecs
[    0.436574] calling  tracing_set_default_clock+0x0/0x36 @ 1
[    0.436579] initcall tracing_set_default_clock+0x0/0x36 returned 0 after 0 usecs
[    0.436582] calling  clear_boot_tracer+0x0/0x2a @ 1
[    0.436586] initcall clear_boot_tracer+0x0/0x2a returned 0 after 0 usecs
[    0.436590] calling  clk_disable_unused+0x0/0x1b0 @ 1
[    0.436595] initcall clk_disable_unused+0x0/0x1b0 returned 0 after 1 usecs
[    0.438840] Freeing unused kernel memory: 884K
[    0.439260] Write protecting the kernel text: 10556k
[    0.439416] Write protecting the kernel read-only data: 2384k
[    0.439856] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.439873] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.439879] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.439913] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.440045] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.440057] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=0
[    0.440072] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.441239] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.441269] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.441879] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.441895] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.441901] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.441921] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.441989] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.442006] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.442988] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.443323] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.443903] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.443921] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.443927] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.443948] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.444016] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.444034] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.445257] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.445292] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.445830] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.445847] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.445853] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.445873] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.445941] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.445957] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.447237] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.447310] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.447862] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.447891] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.447910] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.447927] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.447934] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.447955] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.448025] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.448042] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.449348] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.449443] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.449996] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.450012] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.450018] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.450038] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.450108] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.450130] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.451004] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.451570] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.451689] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.452257] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.452275] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.452281] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.452303] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.452372] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.452394] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.453617] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.453632] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.454292] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.454308] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.454315] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.454330] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.454400] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.454418] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.455320] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.455919] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.456554] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.456571] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.456577] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.456599] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.456668] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.456691] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.456767] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.457963] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.458274] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.458354] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.458516] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.458534] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.458540] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.458560] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.458629] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.458653] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.459897] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.460545] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.460562] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.460568] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.460585] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.460657] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.460677] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.461988] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.462562] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.462580] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.462586] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.462602] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.462673] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.462695] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.464057] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.464640] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.464658] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.464664] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.464686] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.464758] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.464774] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.468129] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.468825] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.468841] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.468847] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.468867] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.468936] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.468958] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.470672] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.470711] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.471438] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.471455] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.471461] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.471476] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.471545] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.471565] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.472652] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.473684] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.473703] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.473709] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.473726] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.473800] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.473818] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.475555] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.476077] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.476093] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.476099] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.476114] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.476183] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.476205] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.477753] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.478434] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.478451] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.478456] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.478477] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.478545] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.478566] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.480224] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.480831] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.480848] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.480853] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.480873] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.480945] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.480966] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.482120] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.483076] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.483094] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.483100] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.483118] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.483193] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.483216] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.483304] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.486071] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.486181] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.486736] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.487186] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.487200] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.487205] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.487222] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.487291] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.487313] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.488201] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.503807] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.503957] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.504253] random: get_random_bytes called from generate_random_uuid+0x10/0x50 with crng_init=0
[    0.504816] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.504887] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.505388] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.505466] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.505937] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.506018] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.506381] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.506513] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.506856] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.506870] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.506876] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.506893] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.506968] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.506974] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=0
[    0.506994] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.507174] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.507219] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.507344] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.507777] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.507852] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.508360] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.508416] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.508945] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.509081] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.509630] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.509742] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.510244] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.510314] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.510853] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.510878] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.553925] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.554440] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.555624] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.555914] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.557217] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.557225] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.582222] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.582643] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.589255] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.589304] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.590090] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.590578] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.590592] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.590598] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.590615] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.590691] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.590711] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.590856] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.592259] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.592303] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.593415] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.593685] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.594551] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.594711] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.596998] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.602271] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    0.602522] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.602708] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.602965] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.603330] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.603517] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.608819] random: get_random_u32 called from module_alloc+0x105/0x120 with crng_init=0
[    0.609272] calling  acpi_thermal_init+0x0/0x1000 [thermal] @ 107
[    0.609368] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.610755] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.611485] thermal LNXTHERM:00: registered as thermal_zone0
[    0.611488] ACPI: Thermal Zone [TZ00] (48 C)
[    0.611589] initcall acpi_thermal_init+0x0/0x1000 [thermal] returned 0 after 2250 usecs
[    0.625286] calling  init_scsi+0x0/0x92 [scsi_mod] @ 116
[    0.626006] SCSI subsystem initialized
[    0.626037] initcall init_scsi+0x0/0x92 [scsi_mod] returned 0 after 702 usecs
[    0.630856] calling  ata_init+0x0/0x371 [libata] @ 116
[    0.630907] libata version 3.00 loaded.
[    0.630932] initcall ata_init+0x0/0x371 [libata] returned 0 after 46 usecs
[    0.632076] calling  serio_raw_drv_init+0x0/0x1000 [serio_raw] @ 112
[    0.632130] initcall serio_raw_drv_init+0x0/0x1000 [serio_raw] returned 0 after 42 usecs
[    0.635157] calling  evdev_init+0x0/0x1000 [evdev] @ 107
[    0.635306] initcall evdev_init+0x0/0x1000 [evdev] returned 0 after 135 usecs
[    0.637984] calling  ahci_pci_driver_init+0x0/0x1000 [ahci] @ 116
[    0.638038] ahci 0000:00:11.0: version 3.0
[    0.640545] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    0.640554] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio slum part 
[    0.645645] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.645673] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.646087] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.646152] scsi host0: ahci
[    0.646167] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    0.646190] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.646460] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.646959] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.647020] scsi host1: ahci
[    0.647293] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.647869] scsi host2: ahci
[    0.647933] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.648140] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.648153] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.648615] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.648681] scsi host3: ahci
[    0.648701] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.648947] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.648965] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.649431] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.649445] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.649503] scsi host4: ahci
[    0.649750] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.649869] scsi host5: ahci
[    0.649926] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.650145] ata1: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b100 irq 19
[    0.650149] ata2: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b180 irq 19
[    0.650153] ata3: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b200 irq 19
[    0.650157] ata4: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b280 irq 19
[    0.650161] ata5: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b300 irq 19
[    0.650164] ata6: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b380 irq 19
[    0.650239] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.650285] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.650307] initcall ahci_pci_driver_init+0x0/0x1000 [ahci] returned 0 after 12016 usecs
[    0.650419] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.650435] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.650544] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.651582] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.654200] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.654441] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.654455] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.654470] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.657950] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.659931] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.963981] ata2: SATA link down (SStatus 0 SControl 300)
[    0.967449] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.967506] ata3: SATA link down (SStatus 0 SControl 300)
[    0.967728] ata4: SATA link down (SStatus 0 SControl 300)
[    0.968004] ata1.00: ATA-9: SanDisk SDSSDP064G, 2.0.0, max UDMA/133
[    0.968016] ata1.00: 125045424 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    0.968434] ata1.00: configured for UDMA/133
[    0.968960] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SDSSDP06 0    PQ: 0 ANSI: 5
[    0.971325] ata6: SATA link down (SStatus 0 SControl 300)
[    0.971930] ata5: SATA link down (SStatus 0 SControl 300)
[    0.981559] calling  init_sd+0x0/0x1000 [sd_mod] @ 107
[    0.981919] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[    0.981942] sd 0:0:0:0: [sda] Write Protect is off
[    0.981946] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.981976] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.982513] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.982632] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.982658] initcall init_sd+0x0/0x1000 [sd_mod] returned 0 after 1059 usecs
[    0.983739]  sda: sda1
[    0.984610] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.988767] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    0.988859] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    0.989764] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.989780] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    0.989785] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.989802] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    0.989872] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    0.989890] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    0.994013] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.036703] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    1.047513] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.047532] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.048063] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.048076] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.048082] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.048101] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.048170] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.048187] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.049641] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.050341] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.050358] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.050364] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.050384] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.050451] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.050470] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.052140] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.052160] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.052865] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.052882] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.052887] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.052903] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.052975] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.052996] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.054792] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.055511] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.055528] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.055534] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.055550] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.055619] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.055642] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.081281] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.082587] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.082604] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.082609] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.082629] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.082697] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.082719] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.084783] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.085450] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.085576] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.085588] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.085594] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.085689] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.087875] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.089118] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.089134] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.089140] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.089156] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.089227] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.089248] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.091172] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.091947] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.091964] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.091969] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.092125] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.094324] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.094358] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.094921] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.095570] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.095584] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.095590] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.095686] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.098110] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.098567] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.098668] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.098681] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.098687] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.098707] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.098775] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.098797] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.101311] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.101429] calling  fscrypt_init+0x0/0x1000 [fscrypto] @ 150
[    1.101506] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    1.101529] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.101551] initcall fscrypt_init+0x0/0x1000 [fscrypto] returned 0 after 109 usecs
[    1.101864] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.105375] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.105847] calling  journal_init+0x0/0x7bf [jbd2] @ 150
[    1.105875] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    1.105904] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.105921] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    1.105953] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.105968] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    1.106006] initcall journal_init+0x0/0x7bf [jbd2] returned 0 after 139 usecs
[    1.106020] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.106268] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.106644] calling  mbcache_init+0x0/0x1000 [mbcache] @ 150
[    1.106662] initcall mbcache_init+0x0/0x1000 [mbcache] returned 0 after 10 usecs
[    1.106956] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.107050] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=0
[    1.107090] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.107102] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.107953] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.109405] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.119500] calling  ext4_init_fs+0x0/0x171 [ext4] @ 150
[    1.119571] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    1.119670] initcall ext4_init_fs+0x0/0x171 [ext4] returned 0 after 115 usecs
[    1.119762] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.121074] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.121180] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.121192] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.121198] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.121215] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.121287] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.121313] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.122066] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.122365] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.123030] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.123048] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.123053] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.123075] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.123145] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.123168] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.126678] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.141942] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.142670] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.142686] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.142692] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.142713] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.142787] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.142810] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.152511] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.157769] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.158233] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.158246] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=0
[    1.158252] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.158268] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=0
[    1.158335] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=0
[    1.158357] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=0
[    1.159519] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.162185] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.163606] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.163635] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.164249] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=0
[    1.165010] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.165066] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=0
[    1.165090] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=0
[    1.169449] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    1.171081] random: fast init done
[    1.175743] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.176644] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.176658] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.176664] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.176681] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.176755] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.176778] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.178719] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.179411] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.179427] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.179433] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.179448] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.179515] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.179538] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.180605] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.181448] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.181460] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.181466] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.181487] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.181553] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.181577] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.185251] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=1
[    1.185525] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.186484] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.186501] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.186507] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.186524] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.186597] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.186620] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.190303] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.190802] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.190818] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.190824] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.190923] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.191535] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.191982] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.191996] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.192001] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.192059] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.192122] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.192166] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.194025] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.194042] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.194703] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.194719] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.194725] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.194741] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.194810] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.194833] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.196232] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.198272] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.198912] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.198930] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.198935] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.199036] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.199227] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.216656] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.217332] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.217350] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.217355] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.217449] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.218019] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.218625] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.218642] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.218648] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.218665] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.218736] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.218757] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.220228] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.222038] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.222535] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.222548] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.222554] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.222573] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.222642] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.222661] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.224353] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.233126] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.233141] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.233147] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.233246] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.243337] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.245633] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.245651] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.245657] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.245683] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.247752] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.247783] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.251706] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.316153] random: systemd-bootcha: uninitialized urandom read (16 bytes read)
[    1.318825] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.324495] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.324512] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.324518] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.324541] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.324612] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.325771] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.325796] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.327666] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.408245] tsc: Refined TSC clocksource calibration: 1600.001 MHz
[    1.408264] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x17102604879, max_idle_ns: 440795272763 ns
[    1.408312] clocksource: Switched to clocksource tsc
[    1.474521] calling  init_autofs4_fs+0x0/0x29 [autofs4] @ 1
[    1.474785] initcall init_autofs4_fs+0x0/0x29 [autofs4] returned 0 after 245 usecs
[    1.490000] calling  xt_init+0x0/0x1000 [x_tables] @ 1
[    1.490017] initcall xt_init+0x0/0x1000 [x_tables] returned 0 after 4 usecs
[    1.493512] calling  ip_tables_init+0x0/0x1000 [ip_tables] @ 1
[    1.493539] initcall ip_tables_init+0x0/0x1000 [ip_tables] returned 0 after 17 usecs
[    1.518761] systemd[1]: systemd 238 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.536590] systemd[1]: Detected architecture x86.
[    1.541493] systemd[1]: Set hostname to <kodi>.
[    1.543962] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=1
[    1.544083] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.552893] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.552924] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.555181] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.556390] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.556465] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.557051] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.557269] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.557370] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.557572] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.557590] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.557596] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.557608] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.557617] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.557758] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.557878] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.558192] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.558237] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.558247] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.558252] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.558266] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.558335] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.558361] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.558477] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.558683] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.558763] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.559134] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.559226] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.561041] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.561058] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.561064] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.561083] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.561682] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.564174] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.564197] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.565106] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.570212] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.570228] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.570234] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.570260] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.570414] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.570760] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.570770] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.570776] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.570789] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.570858] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.570882] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.571136] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.571152] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.571157] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.571198] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.572362] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.572389] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.576608] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.576626] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.576635] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.576658] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.576737] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.576761] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.580665] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.580689] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.580897] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.581468] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.581489] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.582936] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.582955] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.582961] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.582981] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.583069] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.583093] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.585306] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.586108] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.586124] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.586142] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.586168] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.586248] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.586271] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.592456] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.593391] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.593406] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.593412] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.593436] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.594243] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.594264] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.600290] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.698850] systemd[1]: File /lib/systemd/system/systemd-journald.service:35 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    1.698860] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
[    1.848303] random: systemd: uninitialized urandom read (16 bytes read)
[    1.848531] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.848629] random: systemd: uninitialized urandom read (16 bytes read)
[    1.848653] systemd[1]: Reached target Host and Network Name Lookups.
[    1.848692] random: systemd: uninitialized urandom read (16 bytes read)
[    1.848986] systemd[1]: Listening on Journal Socket.
[    1.849196] random: systemd: uninitialized urandom read (16 bytes read)
[    1.851409] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.852490] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    1.852659] random: systemd: uninitialized urandom read (16 bytes read)
[    1.853208] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.853624] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.854059] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.854071] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.854104] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.854120] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.854132] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.854184] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.854210] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.854502] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.854760] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.854783] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.854800] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.854885] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.855089] systemd[1]: Mounting POSIX Message Queue File System...
[    1.855188] random: systemd: uninitialized urandom read (16 bytes read)
[    1.855383] random: systemd: uninitialized urandom read (16 bytes read)
[    1.855484] random: systemd: uninitialized urandom read (16 bytes read)
[    1.855854] random: systemd: uninitialized urandom read (16 bytes read)
[    1.856657] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.856673] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.856681] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.856707] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.856722] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.856907] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.856936] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.856952] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.857216] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.857251] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.857329] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.857780] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.857841] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.857848] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.857867] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.857957] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.857971] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.857987] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.858066] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.858817] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.859120] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.859187] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.859250] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.859261] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.860409] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.860466] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.860475] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.860490] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.860683] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.860962] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.861013] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.861060] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.861085] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.861098] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.861104] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.861132] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.861148] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.861215] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.861229] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.861256] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.861411] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.862000] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.862029] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.862119] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.862381] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.862398] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.862439] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.862485] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.862526] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.862546] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.862580] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.863077] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.863090] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.863096] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.863114] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.863129] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.863215] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.863239] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.863290] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.863687] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.863758] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.864890] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.864931] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.864963] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.866563] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.867309] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.868220] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.869568] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.870058] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.870114] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.870126] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.870136] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.870147] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.870171] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.870191] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.870762] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.871300] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.871313] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.871318] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.871338] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.871353] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.871439] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.871452] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.871467] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.871584] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.872247] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.872279] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.872295] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.872420] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.877410] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.877479] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.877597] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.877627] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.877947] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.878000] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.878790] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.879344] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.880576] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.881389] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.881416] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.883388] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.884217] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.887022] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.887384] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.887410] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.887434] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.887459] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.887467] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.887478] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.887492] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.887872] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888486] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.888515] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888533] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.888560] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888568] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.888579] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888595] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.888630] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888634] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.888654] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888665] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.888674] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.888687] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.889028] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.889294] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.889318] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.889565] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.889580] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.889586] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.889614] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.889629] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.889716] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.889726] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.889739] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.889756] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.889836] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.891103] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.891135] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.891862] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.891956] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.892519] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.892535] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.896249] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.896283] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.896300] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.896387] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.896398] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.896425] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.897019] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.897032] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.897038] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.897065] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.897080] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.897284] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.897314] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.897352] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.897544] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.897577] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.897635] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.897676] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.898351] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.898360] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.898379] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.898477] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.899045] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.899072] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.899089] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.899124] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.899138] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.899186] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.899197] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.899207] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.899218] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.899365] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.900840] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.900861] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.900867] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.900888] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.900903] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.901096] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.901135] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.901142] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.901155] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.901196] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.901411] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.901649] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.901698] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.902311] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.902333] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.902435] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.903595] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.903611] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.903617] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.903644] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.903661] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.904000] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.904079] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.904272] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.904951] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.905013] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.905037] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.905085] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.905115] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.905146] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.905672] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.905691] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.906695] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.906711] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.906717] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.906733] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.906808] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.906827] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.906881] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.908716] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.908732] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.908738] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.908760] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.908780] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.908832] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.908856] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.909166] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.911116] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.911178] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.914598] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.914657] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.914670] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.915083] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.916118] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.916154] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.916841] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.916856] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.916918] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.917308] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.920397] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.920689] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.920793] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.921165] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.921411] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.921886] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.922124] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.922144] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.924401] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    1.932339] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.933605] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.940004] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.940263] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.942955] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.943008] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.945407] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.945444] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.948267] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.949323] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.949340] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.949346] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.949436] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.949527] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.949540] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.949556] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.950463] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.950704] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.950919] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.950959] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.950971] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.951010] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.951031] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.951069] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.951907] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.951923] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.951930] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.951957] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.951977] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.951983] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.952180] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.952193] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.952211] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.952295] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.956104] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.956141] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.956176] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.956809] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.958691] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.958726] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.960387] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    1.961077] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.961120] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.961777] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.961794] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.962726] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.962765] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.963931] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    1.964333] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.964358] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.964375] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.964407] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.964420] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.964476] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.966508] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.966562] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.966574] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.967225] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.967506] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.967537] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.967555] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.967587] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.967600] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.967648] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.967659] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.967667] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.967737] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.967750] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.967757] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.967783] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.967798] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.968077] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.968128] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.968528] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.968544] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    1.968552] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.968579] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    1.968594] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.968678] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.968690] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    1.968706] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.968783] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.969013] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    1.969032] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    1.969121] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.972233] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.972314] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.974637] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.974969] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.975161] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.975344] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.975996] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.976265] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.978426] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.978653] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    1.997615] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    1.997687] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.011667] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.011701] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.014342] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.014823] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.014849] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.014880] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.014899] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.014906] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.014926] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.014939] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.015002] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.015013] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.015312] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.015780] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.015794] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.015800] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.015819] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.015833] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.015998] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.016138] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.016759] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.016773] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.016789] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.016880] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.022596] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.024642] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.032108] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.032141] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.032823] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.032922] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.060877] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.061316] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.066432] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.069263] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.069376] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.070419] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.071565] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.072173] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.072207] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.072219] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.072252] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.072263] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.072274] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.073206] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.074160] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.074780] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.074794] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.074800] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.074819] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.074836] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.074895] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.074902] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.075064] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.076007] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.077491] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.077516] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.077552] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.077574] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.077584] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.077596] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.077611] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.078084] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.079979] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.079993] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.080122] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.080636] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.081589] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.081804] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.083002] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.083045] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.086406] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.086462] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.086560] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.087151] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.087165] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.087172] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.087190] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.087286] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.087292] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.087308] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.087894] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088237] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088266] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088284] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088318] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088332] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088353] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088366] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088379] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088391] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088407] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088419] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088433] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088480] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088536] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088805] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.088826] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.088838] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.089327] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.089947] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.089972] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.094790] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.094826] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.098097] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.098141] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.099086] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.099102] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.099108] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.099128] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.099145] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.099661] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.099954] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.100264] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.100283] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.100378] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.101744] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.101793] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.101967] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.101992] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.102008] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.102047] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.102061] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.102079] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.111867] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.111910] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.111948] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.112534] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.115936] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.115954] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.115960] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.115979] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.117018] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.117044] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.119930] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.121439] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.121457] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.122785] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.122803] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.122809] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.122834] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.122979] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.123154] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.123240] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.123436] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.126154] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.126335] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.126364] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.126732] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.128540] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.128577] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.128594] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.128738] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.130349] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.130966] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.166517] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.166551] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.166652] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.166689] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.167317] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.167504] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.169568] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.169600] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.173393] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.173825] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.174070] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.174080] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.175241] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.175337] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.175597] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.175857] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=1
[    2.175890] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.175971] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.176408] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.176452] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.176464] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.177065] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.177698] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=1
[    2.177770] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.177781] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.177802] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.177832] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.178037] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.178265] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.178281] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.178301] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.178398] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.178628] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.178869] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.179146] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.180724] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.180741] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.180804] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.180827] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.181313] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.181387] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.181942] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.182034] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.182971] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.183004] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.183651] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.183686] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.183713] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.183749] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.184140] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.184906] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.191416] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.191445] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.191460] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.191494] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.191506] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.191517] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.191531] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.191554] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.191563] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.191910] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.194725] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.194765] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.195067] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.195517] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.196129] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.196144] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.196150] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.196179] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.196194] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.196361] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.196406] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.197554] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.197570] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.197586] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.197679] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.208926] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.208960] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.210866] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.211291] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.211332] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.211344] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.211377] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.211389] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.211420] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.211428] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.211437] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.212361] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.212377] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.212382] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.212411] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.212427] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.212593] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.212621] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.212636] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.213583] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.213620] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.213634] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.213652] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.213733] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.215401] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.215485] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.215519] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.215544] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.215767] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.216089] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.216113] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.216326] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.217181] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.217210] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.220163] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.220458] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.220513] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.220526] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.220608] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.220629] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.220641] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.220654] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.220691] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.221446] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.221555] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.221789] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.221806] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.221812] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.221842] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.221858] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.221977] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.221990] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.222006] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.222083] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.222192] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=1
[    2.222545] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.223774] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.224282] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.232140] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.232340] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.232356] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.232387] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.233597] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.233615] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.233621] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.233650] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.233667] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.233864] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.233892] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.233907] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.234406] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.234781] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.234814] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.234839] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.235091] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.235460] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.235484] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.236991] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.237245] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.237307] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.237758] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.238375] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.238402] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.239072] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.240214] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.240231] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.240272] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.241670] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.243315] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.243355] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.243372] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.243404] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.243417] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.243453] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.243463] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.243482] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.243517] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.247170] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.247724] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.247740] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.247746] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.247766] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.247781] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.249751] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.249786] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.250696] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.250708] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.250726] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.250825] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.254043] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.254436] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.255485] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.255522] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.255552] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.255585] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.264273] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.264324] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.264339] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.264416] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.264439] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.264462] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.264478] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.266508] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.266884] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.266928] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.266941] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.266977] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.266984] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.266994] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.267701] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.267726] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.272620] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.273142] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.276810] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.276882] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.276900] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.277519] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.277998] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.278011] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.278017] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.278037] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.278052] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.278238] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.278270] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.278296] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.279214] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.279249] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.279256] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.279274] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.279361] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.293452] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.293487] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.293522] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.293547] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.296727] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.296757] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.303445] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.303474] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.303503] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.303522] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.303545] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.303574] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.303586] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.303776] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.306609] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.306917] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.307394] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.307402] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.307670] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.307887] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.308418] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.308540] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.329112] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.330350] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.333991] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.334032] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.338559] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.338854] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.338882] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.338903] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.338936] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.338951] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.338974] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.339010] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.340432] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.340907] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.340921] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.340927] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.340954] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.340969] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.341054] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.341060] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.341077] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.341163] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.344155] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.344189] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.344206] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.344544] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.347452] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.347491] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.347675] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.347752] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.349591] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.349638] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.354508] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.354594] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.354621] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.354631] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.354660] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.354741] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.354880] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.355791] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.357911] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.357948] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.358268] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.358284] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.359464] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.360659] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.361631] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.361661] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.361707] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.361767] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.363071] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.363168] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.368013] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.368114] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.368214] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.368309] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.370782] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.370808] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.376435] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.376468] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.376823] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.379213] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.379236] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.379253] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.379410] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.383030] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.383063] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.383108] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.383138] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.383146] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.383156] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.383184] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.383196] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.383380] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.383399] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.383565] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.384205] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.384440] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.384490] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.384713] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.384955] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.387031] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.387757] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.402880] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.403121] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.405949] random: get_random_u32 called from bucket_table_alloc+0x163/0x340 with crng_init=1
[    2.406253] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.407604] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.407697] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.418093] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.418156] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.418170] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.418390] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.418413] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.418449] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.418462] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.418811] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.419297] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.419314] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.419319] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.419348] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.419362] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.419531] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.419593] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.420293] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.420302] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.420325] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.420418] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.422926] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.423222] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.426259] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.426365] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.427210] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.428410] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.428448] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.429366] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.429387] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.429524] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.429562] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.440116] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.440539] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.441606] random: get_random_bytes called from key_alloc+0x1fc/0x5e0 with crng_init=1
[    2.442288] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.442356] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.442370] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.442872] systemd-journald[193]: Received request to flush runtime journal from PID 1
[    2.442952] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.443149] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.443299] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.443848] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.443862] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.443868] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.443888] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.443988] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.443995] random: get_random_bytes called from load_elf_binary+0xaf8/0x1d20 with crng_init=1
[    2.444077] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.444164] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.451188] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.451255] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.451291] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.451325] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.458498] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.458761] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.463866] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.463902] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.468506] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.468560] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.469494] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.469589] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.472686] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.472714] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.472739] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.476387] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.476506] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.476532] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.482783] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.482826] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.487271] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.490008] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.508739] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 210
[    2.508903] acpi_cpufreq: overriding BIOS provided _PSD data
[    2.509068] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned 0 after 309 usecs
[    2.513129] calling  acpi_button_driver_init+0x0/0x1000 [button] @ 219
[    2.513314] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    2.513488] ACPI: Power Button [PWRB]
[    2.513627] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    2.513723] ACPI: Power Button [PWRF]
[    2.513790] initcall acpi_button_driver_init+0x0/0x1000 [button] returned 0 after 631 usecs
[    2.514275] calling  pcc_cpufreq_init+0x0/0xe57 [pcc_cpufreq] @ 208
[    2.514302] initcall pcc_cpufreq_init+0x0/0xe57 [pcc_cpufreq] returned -19 after 18 usecs
[    2.525438] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.525588] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.525969] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.526055] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.544487] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.549573] calling  pcc_cpufreq_init+0x0/0xe57 [pcc_cpufreq] @ 210
[    2.549605] initcall pcc_cpufreq_init+0x0/0xe57 [pcc_cpufreq] returned -19 after 20 usecs
[    2.557643] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.574320] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.574727] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.576265] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.576336] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.576343] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.576356] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.576437] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.580231] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.580265] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.581064] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.581079] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.581085] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.581114] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.581130] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.581386] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.581412] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.581440] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.582212] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.582227] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.582232] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.582261] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.582276] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.583744] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.583767] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.583791] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.588351] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.588376] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.589038] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.595674] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.595709] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.599397] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.600121] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.600242] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.600809] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.600919] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.602889] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.605564] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.605592] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.606589] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.606678] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.606850] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.606861] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.615470] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.615568] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.615593] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.615675] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.615698] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.615848] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.671526] calling  init_soundcore+0x0/0x1000 [soundcore] @ 214
[    2.671562] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 18 usecs
[    2.682280] calling  alsa_sound_init+0x0/0x82 [snd] @ 214
[    2.682333] initcall alsa_sound_init+0x0/0x82 [snd] returned 0 after 31 usecs
[    2.687181] calling  piix4_driver_init+0x0/0x1000 [i2c_piix4] @ 209
[    2.687328] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    2.687340] piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
[    2.687675] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0x8060
[    2.691755] calling  alsa_timer_init+0x0/0x1000 [snd_timer] @ 214
[    2.692361] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 576 usecs
[    2.692553] initcall piix4_driver_init+0x0/0x1000 [i2c_piix4] returned 0 after 767 usecs
[    2.694492] calling  usb_init+0x0/0x161 [usbcore] @ 215
[    2.694518] ACPI: bus type USB registered
[    2.694583] usbcore: registered new interface driver usbfs
[    2.694610] usbcore: registered new interface driver hub
[    2.694693] usbcore: registered new device driver usb
[    2.694726] initcall usb_init+0x0/0x161 [usbcore] returned 0 after 194 usecs
[    2.698839] calling  ehci_hcd_init+0x0/0x1000 [ehci_hcd] @ 208
[    2.698846] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.698886] initcall ehci_hcd_init+0x0/0x1000 [ehci_hcd] returned 0 after 32 usecs
[    2.701019] calling  ehci_pci_init+0x0/0x1000 [ehci_pci] @ 219
[    2.701026] ehci-pci: EHCI PCI platform driver
[    2.701596] QUIRK: Enable AMD PLL fix
[    2.701718] ehci-pci 0000:00:12.2: EHCI Host Controller
[    2.701735] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[    2.701748] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.701832] ehci-pci 0000:00:12.2: debug port 1
[    2.701916] ehci-pci 0000:00:12.2: irq 17, io mem 0xf014c000
[    2.704209] calling  ohci_hcd_mod_init+0x0/0x1000 [ohci_hcd] @ 208
[    2.704216] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.704244] initcall ohci_hcd_mod_init+0x0/0x1000 [ohci_hcd] returned 0 after 22 usecs
[    2.705271] calling  sp5100_tco_init+0x0/0x1000 [sp5100_tco] @ 209
[    2.705286] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    2.705534] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[    2.707583] calling  alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 214
[    2.707617] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 13 usecs
[    2.708175] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    2.708233] initcall sp5100_tco_init+0x0/0x1000 [sp5100_tco] returned 0 after 619 usecs
[    2.708668] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.709041] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.716207] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.716391] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.17
[    2.716395] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.716399] usb usb1: Product: EHCI Host Controller
[    2.716402] usb usb1: Manufacturer: Linux 4.17.0-rc2+ ehci_hcd
[    2.716405] usb usb1: SerialNumber: 0000:00:12.2
[    2.717100] calling  alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 220
[    2.717119] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 10 usecs
[    2.717378] hub 1-0:1.0: USB hub found
[    2.717401] hub 1-0:1.0: 5 ports detected
[    2.718589] ehci-pci 0000:00:13.2: EHCI Host Controller
[    2.718608] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    2.718620] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.718704] ehci-pci 0000:00:13.2: debug port 1
[    2.718767] ehci-pci 0000:00:13.2: irq 17, io mem 0xf014d000
[    2.720289] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.722876] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.723799] calling  hda_bus_init+0x0/0x14 [snd_hda_core] @ 214
[    2.723850] initcall hda_bus_init+0x0/0x14 [snd_hda_core] returned 0 after 28 usecs
[    2.724201] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.724237] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.732285] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.732467] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.17
[    2.732472] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.732475] usb usb2: Product: EHCI Host Controller
[    2.732478] usb usb2: Manufacturer: Linux 4.17.0-rc2+ ehci_hcd
[    2.732481] usb usb2: SerialNumber: 0000:00:13.2
[    2.733046] hub 2-0:1.0: USB hub found
[    2.733074] hub 2-0:1.0: 5 ports detected
[    2.733655] initcall ehci_pci_init+0x0/0x1000 [ehci_pci] returned 0 after 9608 usecs
[    2.735146] calling  ohci_pci_init+0x0/0x1000 [ohci_pci] @ 208
[    2.735152] ohci-pci: OHCI PCI platform driver
[    2.735711] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    2.735727] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[    2.735823] ohci-pci 0000:00:12.0: irq 18, io mem 0xf0148000
[    2.746962] calling  azx_driver_init+0x0/0xfe4 [snd_hda_intel] @ 214
[    2.777881] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.777900] random: get_random_u32 called from load_elf_binary+0x76a/0x1d20 with crng_init=1
[    2.777907] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.777938] random: get_random_u32 called from arch_rnd.part.2+0x18/0x40 with crng_init=1
[    2.778822] random: get_random_u32 called from arch_align_stack+0x45/0x70 with crng_init=1
[    2.778846] random: get_random_u32 called from randomize_page+0x42/0x57 with crng_init=1
[    2.781026] calling  shpcd_init+0x0/0x1000 [shpchp] @ 219
[    2.781154] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.781477] calling  k10temp_driver_init+0x0/0x1000 [k10temp] @ 215
[    2.796426] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.17
[    2.796434] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.796438] usb usb3: Product: OHCI PCI host controller
[    2.796441] usb usb3: Manufacturer: Linux 4.17.0-rc2+ ohci_hcd
[    2.796445] usb usb3: SerialNumber: 0000:00:12.0
[    2.796922] hub 3-0:1.0: USB hub found
[    2.796968] hub 3-0:1.0: 5 ports detected
[    2.798039] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    2.798056] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
[    2.798123] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[    2.804555] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.804604] random: get_random_u32 called from copy_process.part.33+0x186/0x2100 with crng_init=1
[    2.804625] random: get_random_u32 called from cache_random_seq_create+0xa3/0x1f0 with crng_init=1
[    2.804669] random: get_random_u32 called from cache_alloc_refill+0x5bb/0x13d0 with crng_init=1
[    2.860446] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 4.17
[    2.860455] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.860459] usb usb4: Product: OHCI PCI host controller
[    2.860463] usb usb4: Manufacturer: Linux 4.17.0-rc2+ ohci_hcd
[    2.860466] usb usb4: SerialNumber: 0000:00:13.0
[    2.860899] hub 4-0:1.0: USB hub found
[    2.860941] hub 4-0:1.0: 5 ports detected
[    2.861606] 1
[    2.861632] 2
[    2.861991] 3
[    2.861992] 4
[    2.861993] 5
[    2.861995] 6
[    2.861996] 7
[    2.862004] 8
[    2.862005] 9
[    2.862290] 1
[    2.862307] 2
[    2.862642] 3
[    2.862643] 4
[    2.862645] 5
[    2.862646] 6
[    2.862647] 7
[    2.862654] 8
[    2.862655] 9
[    2.862934] initcall azx_driver_init+0x0/0xfe4 [snd_hda_intel] returned 0 after 79525 usecs
[    2.863425] initcall k10temp_driver_init+0x0/0x1000 [k10temp] returned 0 after 80016 usecs
[    2.863747] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.863759] initcall shpcd_init+0x0/0x1000 [shpchp] returned 0 after 80342 usecs

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

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

* Re: azx_probe() called twice
  2018-04-25 11:48 azx_probe() called twice Paul Menzel
@ 2018-04-25 11:58 ` Takashi Iwai
  2018-04-25 12:29   ` Paul Menzel
  0 siblings, 1 reply; 6+ messages in thread
From: Takashi Iwai @ 2018-04-25 11:58 UTC (permalink / raw)
  To: Paul Menzel; +Cc: alsa-devel, linux-kernel

On Wed, 25 Apr 2018 13:48:27 +0200,
Paul Menzel wrote:
> 
> Dear Linux folks,
> 
> 
> With the attached debug patch, `azx_probe()` seems to have been called
> twice on the ASRock E350M1. Is that expected? It also differs, that
> it’s only called once during some boots, and twice during others.

How many HD-audio devices does it have?


Takashi

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

* Re: azx_probe() called twice
  2018-04-25 11:58 ` Takashi Iwai
@ 2018-04-25 12:29   ` Paul Menzel
  2018-04-25 12:34     ` Takashi Iwai
  0 siblings, 1 reply; 6+ messages in thread
From: Paul Menzel @ 2018-04-25 12:29 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel, linux-kernel


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

Dear Takashi,


On 04/25/18 13:58, Takashi Iwai wrote:
> On Wed, 25 Apr 2018 13:48:27 +0200, Paul Menzel wrote:

>> With the attached debug patch, `azx_probe()` seems to have been called
>> twice on the ASRock E350M1. Is that expected? It also differs, that
>> it’s only called once during some boots, and twice during others.
> 
> How many HD-audio devices does it have?

I’d say one (ALC892), but how do I verify that? Please find lspci and 
Linux logs attached from an older boot with Linux 4.11.


Kind regards,

Paul

[-- Attachment #1.2: lspci-vvxxx.txt --]
[-- Type: text/plain, Size: 41383 bytes --]

00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 14h Processor Root Complex
	Subsystem: Advanced Micro Devices, Inc. [AMD] Family 14h Processor Root Complex
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
00: 22 10 10 15 06 00 20 02 00 00 00 06 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 22 10 10 15
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 02 20 00 00
50: 22 10 10 15 00 00 00 00 00 00 00 00 00 00 00 00
60: cd 00 00 00 00 00 04 02 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 10 00 00 03 00 00 00 00 31 20 00 00
90: 00 00 00 e0 4b 01 00 00 00 01 20 00 00 00 00 00
a0: 01 80 30 01 ef be ad de 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 10 00 01 01 01 12 63 80 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 80 80 00 00 00 00 00 00 00 00 00

00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6310] (prog-if 00 [VGA controller])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler [Radeon HD 6310]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 27
	Region 0: Memory at e0000000 (32-bit, prefetchable) [size=256M]
	Region 1: I/O ports at 2000 [size=256]
	Region 2: Memory at f0100000 (32-bit, non-prefetchable) [size=256K]
	[virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0300c  Data: 4142
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Kernel driver in use: radeon
	Kernel modules: radeon
00: 02 10 02 98 07 04 10 00 00 00 00 03 10 00 80 00
10: 08 00 00 e0 01 20 00 00 00 00 10 f0 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 02 98
30: 00 00 00 00 50 00 00 00 00 00 00 00 00 01 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 02 98
50: 01 58 03 06 00 00 00 00 10 a0 92 00 a0 8f 00 00
60: 10 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 05 00 81 00 0c 30 e0 fe 00 00 00 00 42 41 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin B routed to IRQ 28
	Region 0: Memory at f0140000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Complex Integrated Endpoint, MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis-, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0300c  Data: 4152
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
00: 02 10 14 13 06 04 10 00 00 00 03 04 10 00 80 00
10: 00 00 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 14 13
30: 00 00 00 00 50 00 00 00 00 00 00 00 00 02 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 14 13
50: 01 58 03 06 00 00 00 00 10 a0 92 00 a0 8f 00 00
60: 10 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 05 00 81 00 0c 30 e0 fe 00 00 00 00 52 41 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:11.0 SATA controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode] (rev 40) (prog-if 01 [AHCI 1.0])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 19
	Region 0: I/O ports at 2410 [size=8]
	Region 1: I/O ports at 2420 [size=4]
	Region 2: I/O ports at 2418 [size=8]
	Region 3: I/O ports at 2424 [size=4]
	Region 4: I/O ports at 2400 [size=16]
	Region 5: Memory at f014b000 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [70] SATA HBA v1.0 InCfgSpace
	Capabilities: [a4] PCI Advanced Features
		AFCap: TP+ FLR+
		AFCtrl: FLR-
		AFStatus: TP-
	Kernel driver in use: ahci
	Kernel modules: ahci
00: 02 10 91 43 07 00 30 02 40 01 06 01 10 40 00 00
10: 11 24 00 00 21 24 00 00 19 24 00 00 25 24 00 00
20: 01 24 00 00 00 b0 14 f0 00 00 00 00 02 10 91 43
30: 00 00 00 00 70 00 00 00 00 00 00 00 00 01 00 00
40: 14 80 80 00 01 00 20 00 00 00 80 00 00 00 00 00
50: 05 70 86 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 01 50 22 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 12 a4 10 00 0f 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 06 1a 14 00 ab 01 08 00 f0 00 00 00
90: 27 60 74 c7 02 43 06 00 00 01 00 00 01 58 b1 02
a0: 0c 00 00 00 13 00 06 03 00 00 64 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 20 00 00
e0: 80 00 00 00 00 00 00 00 00 00 00 00 10 00 00 3f
f0: 00 00 00 00 00 00 00 00 77 77 77 00 00 00 00 00

00:12.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at f0148000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci-pci
	Kernel modules: ohci_pci
00: 02 10 97 43 06 00 a0 02 00 10 03 0c 10 40 80 00
10: 00 80 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 97 43
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00
40: 80 01 00 f0 11 00 00 00 00 00 00 00 00 00 00 00
50: 40 00 00 f0 00 00 00 00 ff ff ff ff 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 ff 00 00 80 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 01 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:12.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at f014c000 (32-bit, non-prefetchable) [size=256]
	Capabilities: [c0] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D3 NoSoftRst- PME-Enable+ DSel=0 DScale=0 PME-
		Bridge: PM- B3+
	Capabilities: [e4] Debug port: BAR=1 offset=00e0
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci
00: 02 10 96 43 12 00 b0 02 00 20 03 0c 10 40 00 00
10: 00 c0 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 96 43
30: 00 00 00 00 c0 00 00 00 00 00 00 00 00 02 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 40 21 80 a0 01 00 00 00 00 00 00 00 00 00 00 00
60: 20 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 20 00 00 01 00 00 00 00 00 00 00 00
a0: 01 00 00 00 00 00 08 c0 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 01 e4 02 7e 03 01 40 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 0a 00 e0 20 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:13.0 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10 [OHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI0 Controller
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin A routed to IRQ 18
	Region 0: Memory at f0149000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci-pci
	Kernel modules: ohci_pci
00: 02 10 97 43 02 00 a0 02 00 10 03 0c 10 40 80 00
10: 00 90 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 97 43
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 01 00 00
40: 80 01 00 f0 11 00 00 00 00 00 00 00 00 00 00 00
50: 40 00 00 f0 00 00 00 00 ff ff ff ff 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 ff 00 00 80 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 01 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:13.2 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20 [EHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB EHCI Controller
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin B routed to IRQ 17
	Region 0: Memory at f014d000 (32-bit, non-prefetchable) [size=256]
	Capabilities: [c0] Power Management version 2
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0+,D1+,D2+,D3hot+,D3cold-)
		Status: D3 NoSoftRst- PME-Enable+ DSel=0 DScale=0 PME-
		Bridge: PM- B3+
	Capabilities: [e4] Debug port: BAR=1 offset=00e0
	Kernel driver in use: ehci-pci
	Kernel modules: ehci_pci
00: 02 10 96 43 12 00 b0 02 00 20 03 0c 10 40 00 00
10: 00 d0 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 96 43
30: 00 00 00 00 c0 00 00 00 00 00 00 00 00 02 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 40 21 80 a0 01 00 00 00 00 00 00 00 00 00 00 00
60: 20 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 20 00 00 01 00 00 00 00 00 00 00 00
a0: 01 00 00 00 00 00 00 c0 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 01 e4 02 7e 03 01 40 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 0a 00 e0 20 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 SMBus Controller (rev 42)
	Subsystem: Advanced Micro Devices, Inc. [AMD] SBx00 SMBus Controller
	Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Kernel driver in use: piix4_smbus
	Kernel modules: i2c_piix4, sp5100_tco
00: 02 10 85 43 03 04 20 02 42 00 05 0c 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 22 10 10 15
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA) (rev 40)
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA)
	Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=slow >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 64, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 16
	Region 0: Memory at f0144000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 2
		Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
00: 02 10 83 43 06 00 10 04 40 00 03 04 10 40 00 00
10: 04 40 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 83 43
30: 00 00 00 00 50 00 00 00 00 00 00 00 00 01 00 00
40: 00 00 02 00 01 10 00 00 00 00 00 00 01 00 00 00
50: 01 00 42 c8 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 LPC host controller (rev 40)
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 LPC host controller
	Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0
00: 02 10 9d 43 0f 00 20 02 40 00 01 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 9d 43
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 04 00 00 00 d5 ff 03 ff 07 ff 20 01 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 0e 90 02 00 00 0f 00 c0 ff ff ff
70: 67 45 23 00 04 00 00 00 1c 00 00 00 05 0a 00 00
80: 08 00 03 a8 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 01 10 d6 fe
a0: 02 00 c1 fe 2f 01 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 09 39 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:14.4 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 PCI to PCI Bridge (rev 40) (prog-if 01 [Subtractive decode])
	Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop+ ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=64
	Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
00: 02 10 84 43 21 00 a0 02 40 01 04 06 00 40 81 00
10: 00 00 00 00 00 00 00 00 00 01 01 40 f0 00 80 22
20: f0 ff 00 00 f0 ff 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00
40: 26 00 3c ff 00 00 00 00 0c 0f 3d d1 00 00 00 00
50: 01 00 00 00 08 00 03 a8 00 00 00 00 85 00 ff ff
60: ca 0e 17 00 ba 98 10 02 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 01 00 02 06
e0: 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:14.5 USB controller: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI2 Controller (prog-if 10 [OHCI])
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB7x0/SB8x0/SB9x0 USB OHCI2 Controller
	Control: I/O- Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Interrupt: pin C routed to IRQ 18
	Region 0: Memory at f014a000 (32-bit, non-prefetchable) [size=4K]
	Kernel driver in use: ohci-pci
	Kernel modules: ohci_pci
00: 02 10 99 43 02 00 a0 02 00 10 03 0c 10 40 00 00
10: 00 a0 14 f0 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 99 43
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00
40: 80 01 00 f0 11 00 00 00 00 00 00 00 00 00 00 00
50: 40 00 00 f0 00 00 00 00 ff ff ff ff 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 ff 00 00 80 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 01 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:15.0 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0) (prog-if 00 [Normal decode])
	Control: I/O- Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 24
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D3 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #247, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- CommClk-
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed unknown, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootCap: CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0300c  Data: 41a1
	Capabilities: [b0] Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB700/SB800/SB900 PCI to PCI bridge (PCIE port 0)
	Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00: 02 10 a0 43 04 04 10 00 00 00 04 06 10 00 81 00
10: 00 00 00 00 00 00 00 00 00 02 02 00 f1 01 00 00
20: f0 ff 00 00 f1 ff 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 01 03 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 01 58 03 06 03 00 00 00 10 a0 42 00 20 80 00 00
60: 10 09 00 00 11 0c 30 f7 00 00 00 11 00 00 04 00
70: 00 00 40 00 18 00 01 00 00 00 00 00 1f 00 00 00
80: 06 00 00 00 00 00 00 00 41 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 05 b0 81 00 0c 30 e0 fe 00 00 00 00 a1 41 00 00
b0: 0d b8 00 00 02 10 00 00 08 00 03 a8 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:15.1 PCI bridge: Advanced Micro Devices, Inc. [AMD/ATI] SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1) (prog-if 00 [Normal decode])
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 25
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 00001000-00001fff
	Prefetchable memory behind bridge: 00000000f0000000-00000000f00fffff
	Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
	BridgeCtl: Parity+ SERR+ NoISA- VGA- MAbort- >Reset- FastB2B-
		PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
	Capabilities: [50] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
		Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [58] Express (v2) Root Port (Slot-), MSI 00
		DevCap:	MaxPayload 128 bytes, PhantFunc 0
			ExtTag+ RBE+
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
			MaxPayload 128 bytes, MaxReadReq 128 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
		LnkCap:	Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
			ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
		RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
		RootCap: CRSVisible+
		RootSta: PME ReqID 0000, PMEStatus- PMEPending-
		DevCap2: Completion Timeout: Range ABCD, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-
		DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-
		LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0300c  Data: 41b1
	Capabilities: [b0] Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] SB700/SB800/SB900 PCI to PCI bridge (PCIE port 1)
	Capabilities: [b8] HyperTransport: MSI Mapping Enable+ Fixed+
	Capabilities: [100 v1] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00: 02 10 a1 43 07 04 10 00 00 00 04 06 10 00 81 00
10: 00 00 00 00 00 00 00 00 00 03 03 00 11 11 00 00
20: f0 ff 00 00 01 f0 01 f0 00 00 00 00 00 00 00 00
30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 01 03 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 01 58 03 06 00 00 00 00 10 a0 42 00 20 80 00 00
60: 10 09 00 00 12 0c 30 01 40 00 11 70 00 00 04 00
70: 00 00 40 01 18 00 01 00 00 00 00 00 1f 00 00 00
80: 06 00 00 00 00 00 00 00 42 00 01 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 05 b0 81 00 0c 30 e0 fe 00 00 00 00 b1 41 00 00
b0: 0d b8 00 00 02 10 00 00 08 00 03 a8 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 0 (rev 43)
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 00 17 00 00 10 00 43 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 20 08 2e 00 00 06 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 1
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 01 17 00 00 00 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 03 00 00 00 00 00 1e 02 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 03 d0 fe 00 80 df fe 00 03 00 e0 00 00 cf fe 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 03 00 00 00 00 f0 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 01 20 00 e0 01 00 00 00 00 00 00 00 00 00 00 00

00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 2
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 02 17 00 00 00 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 01 00 00 00 09 01 00 00 01 02 00 00 09 03 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: e0 3c f8 01 e0 3c f8 01 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 03 00 80 03 10 05 31 18
80: 77 00 00 00 55 00 90 00 04 00 00 f0 54 b0 b2 01
90: 00 00 60 06 8a 88 40 3e 10 0f 0f 8d 37 13 00 00
a0: 00 00 00 00 01 00 00 00 00 00 40 00 00 00 00 00
b0: 95 11 eb 02 d8 06 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 08 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 32 00 00 80 02 01 00 00 00 00 00 00 00 00 00 00

00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 3
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Capabilities: [f0] Secure device <?>
	Kernel driver in use: k10temp
	Kernel modules: k10temp
00: 22 10 03 17 00 00 10 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 f0 00 00 00 00 00 00 00 00 00 00 00
40: 20 3b 03 02 40 00 30 0a 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 01 00 60 26 00 00 00 20 1e 01 00 00
70: 00 00 00 00 97 08 00 00 00 00 00 00 01 01 01 19
80: 00 00 00 00 06 00 06 00 00 02 00 00 00 40 00 04
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 90 02 20 80 ef 0f 60 3e 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 50 4f 02 00 c0 07 00 00 2c 22 8b 99
e0: 00 00 00 00 20 00 00 00 61 17 00 10 00 00 00 00
f0: 0f 00 10 00 00 00 00 00 00 00 00 00 20 0f 50 00

00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 4
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 04 17 00 00 00 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 6
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 18 17 00 00 00 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 33 03 00 00 ff 01 31 0d 00 80 00 14 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 5
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 16 17 00 00 00 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 04 00 00 00 20 10 08 00 40 20 10 00 20 10 08 00
60: 20 10 08 00 10 08 04 00 10 08 04 00 80 40 20 00
70: 80 40 20 00 1e 00 00 00 37 00 00 00 09 88 56 0a
80: 00 00 00 00 7f 3f 00 00 00 00 00 00 00 00 00 00
90: 26 38 00 80 09 00 00 02 06 00 00 00 e0 01 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 12h/14h Processor Function 7
	Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
	Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
00: 22 10 19 17 00 00 00 00 00 00 00 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 06)
	Subsystem: ASRock Incorporation Motherboard (one of many)
	Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
	Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
	Latency: 0, Cache Line Size: 64 bytes
	Interrupt: pin A routed to IRQ 26
	Region 0: I/O ports at 1000 [size=256]
	Region 2: Memory at f0004000 (64-bit, prefetchable) [size=4K]
	Region 4: Memory at f0000000 (64-bit, prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
		Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
		Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
	Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
		Address: 00000000fee0300c  Data: 41d1
	Capabilities: [70] Express (v2) Endpoint, MSI 01
		DevCap:	MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
			ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0.000W
		DevCtl:	Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
			RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
			MaxPayload 128 bytes, MaxReadReq 4096 bytes
		DevSta:	CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
		LnkCap:	Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
			ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
		LnkCtl:	ASPM Disabled; RCB 64 bytes Disabled- CommClk+
			ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
		LnkSta:	Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
		DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not Supported
		DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
		LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
			 Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
			 Compliance De-emphasis: -6dB
		LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-
			 EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-
	Capabilities: [b0] MSI-X: Enable- Count=4 Masked-
		Vector table: BAR=4 offset=00000000
		PBA: BAR=4 offset=00000800
	Capabilities: [d0] Vital Product Data
		Not readable
	Capabilities: [100 v1] Advanced Error Reporting
		UESta:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UEMsk:	DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
		UESvrt:	DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
		CESta:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
		CEMsk:	RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
		AERCap:	First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
	Capabilities: [140 v1] Virtual Channel
		Caps:	LPEVC=0 RefClk=100ns PATEntryBits=1
		Arb:	Fixed- WRR32- WRR64- WRR128-
		Ctrl:	ArbSelect=Fixed
		Status:	InProgress-
		VC0:	Caps:	PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
			Arb:	Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
			Ctrl:	Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
			Status:	NegoPending- InProgress-
	Capabilities: [160 v1] Device Serial Number 01-00-00-00-68-4c-e0-00
	Kernel driver in use: r8169
	Kernel modules: r8169
00: ec 10 68 81 07 04 10 00 06 00 00 02 10 00 00 00
10: 01 10 00 00 00 00 00 00 0c 40 00 f0 00 00 00 00
20: 0c 00 00 f0 00 00 00 00 00 00 00 00 49 18 68 81
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 01 00 00
40: 01 50 c3 ff 08 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 81 00 0c 30 e0 fe 00 00 00 00 d1 41 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 02 c1 8c 00 00 10 50 10 00 11 3c 07 00
80: 40 00 11 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 03 00 04 00 00 00 04 08 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 00 80 ff ff ff ff 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00


[-- Attachment #1.3: kernel_log.txt --]
[-- Type: text/plain, Size: 87834 bytes --]

[    0.000000] Linux version 4.11.0-trunk-686-pae (debian-kernel@lists.debian.org) (gcc version 6.3.0 20170425 (Debian 6.3.0-16) ) #1 SMP Debian 4.11-1~exp2 (2017-05-05)
[    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-0x00000000c7e33fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000c7e34000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASROCK E350M1/E350M1, BIOS 4.6-90-g6c4e574872 05/11/2017
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x21f000 max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-back
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask 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: 000000021f000000 aka 8688M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] found SMP MP-table at [mem 0x000f39b0-0x000f39bf] mapped at [c00f39b0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x19dfffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] BRK [0x19a58000, 0x19a58fff] PGTABLE
[    0.000000] BRK [0x19a59000, 0x19a5afff] PGTABLE
[    0.000000] BRK [0x19a5b000, 0x19a5bfff] PGTABLE
[    0.000000] BRK [0x19a5c000, 0x19a5cfff] PGTABLE
[    0.000000] log_buf_len: 2097152 bytes
[    0.000000] early log buf free: 128676(98%)
[    0.000000] RAMDISK: [mem 0x3555f000-0x36aa6fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F3BB0 000024 (v02 CORE  )
[    0.000000] ACPI: XSDT 0x00000000C7E470E0 000064 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: FACP 0x00000000C7E49830 0000F4 (v04 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: DSDT 0x00000000C7E47280 0025A7 (v02 ASROCK COREBOOT 00010001 INTL 20160831)
[    0.000000] ACPI: FACS 0x00000000C7E47240 000040
[    0.000000] ACPI: FACS 0x00000000C7E47240 000040
[    0.000000] ACPI: SSDT 0x00000000C7E49930 00008A (v02 CORE   COREBOOT 0000002A CORE 0000002A)
[    0.000000] ACPI: TCPA 0x00000000C7E499C0 000032 (v02 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: APIC 0x00000000C7E49A00 00005C (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: HEST 0x00000000C7E49A60 000028 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: SSDT 0x00000000C7E49A90 00168E (v02 AMD    ALIB     00000001 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000C7E4B120 0003DE (v01 AMD    POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: HPET 0x00000000C7E4B500 000038 (v01 CORE   COREBOOT 00000000 CORE 00000000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 7798MB HIGHMEM available.
[    0.000000] 889MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 379fe000
[    0.000000]   low ram: 0 - 379fe000
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   Normal   [mem 0x0000000001000000-0x00000000379fdfff]
[    0.000000]   HighMem  [mem 0x00000000379fe000-0x000000021effffff]
[    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-0x00000000c7e33fff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000021effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000021effffff]
[    0.000000] On node 0 totalpages: 1994194
[    0.000000] free_area_init_node: node 0, pgdat d9831b40, node_mem_map f0903024
[    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: 1967 pages used for memmap
[    0.000000]   Normal zone: 223742 pages, LIFO batch:31
[    0.000000]   HighMem zone: 1766454 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:32 nr_cpumask_bits:32 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] percpu: Embedded 22 pages/cpu @f77cf000 s58828 r0 d31284 u90112
[    0.000000] pcpu-alloc: s58828 r0 d31284 u90112 alloc=22*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1992191
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.11.0-trunk-686-pae root=/dev/mapper/speicher-root ro init=/lib/systemd/systemd-bootchart drm_kms_helper.poll=0 drm.debug=0x06 log_buf_len=2M quiet noisapnp pcie_aspm=force pcie_aspm.policy=powersave radeon.dpm=1
[    0.000000] PCIe ASPM is forcibly enabled
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000379fe:0021f000)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 7863084K/7976776K available (6063K kernel code, 678K rwdata, 1748K rodata, 776K init, 456K bss, 113692K reserved, 0K cma-reserved, 7065816K highmem)
[    0.000000] virtual kernel memory layout:
                   fixmap  : 0xffd36000 - 0xfffff000   (2852 kB)
                   pkmap   : 0xffa00000 - 0xffc00000   (2048 kB)
                   vmalloc : 0xf81fe000 - 0xff9fe000   ( 120 MB)
                   lowmem  : 0xc0000000 - 0xf79fe000   ( 889 MB)
                     .init : 0xd984e000 - 0xd9910000   ( 776 kB)
                     .data : 0xd95ebc12 - 0xd984c900   (2435 kB)
                     .text : 0xd9000000 - 0xd95ebc12   (6063 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 32.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=2.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=2
[    0.000000] NR_IRQS:2304 nr_irqs:440 16
[    0.000000] CPU 0 irqstacks, hard=f7032000 soft=f7034000
[    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.076 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3200.15 BogoMIPS (lpj=6400304)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170119
[    0.013520] ACPI: 4 ACPI AML tables successfully acquired and loaded
[    0.013598] Security Framework initialized
[    0.013603] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.013618] AppArmor: AppArmor disabled by boot time parameter
[    0.013654] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.013658] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.014089] CPU: Physical Processor ID: 0
[    0.014091] CPU: Processor Core ID: 0
[    0.014096] mce: CPU supports 6 MCE banks
[    0.014115] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.014118] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[    0.014335] Freeing SMP alternatives memory: 24K
[    0.016348] ftrace: allocating 24657 entries in 49 pages
[    0.028175] smpboot: Max logical packages: 1
[    0.028186] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.028647] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.072000] smpboot: CPU0: AMD E-350D APU with Radeon(tm) HD Graphics (family: 0x14, model: 0x2, stepping: 0x0)
[    0.072000] Performance Events: AMD PMU driver.
[    0.072000] ... version:                0
[    0.072000] ... bit width:              48
[    0.072000] ... generic registers:      4
[    0.072000] ... value mask:             0000ffffffffffff
[    0.072000] ... max period:             00007fffffffffff
[    0.072000] ... fixed-purpose events:   0
[    0.072000] ... event mask:             000000000000000f
[    0.072000] smp: Bringing up secondary CPUs ...
[    0.072000] CPU 1 irqstacks, hard=f712c000 soft=f712e000
[    0.072000] x86: Booting SMP configuration:
[    0.072000] .... node  #0, CPUs:      #1
[    0.004000] Initializing CPU#1
[    0.072171] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.150042] smp: Brought up 1 node, 2 CPUs
[    0.150042] smpboot: Total of 2 processors activated (6400.15 BogoMIPS)
[    0.150042] sched_clock: Marking stable (148000000, 0)->(254732495, -106732495)
[    0.149390] devtmpfs: initialized
[    0.150095] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.150103] futex hash table entries: 512 (order: 3, 32768 bytes)
[    0.150222] pinctrl core: initialized pinctrl subsystem
[    0.150454] NET: Registered protocol family 16
[    0.151037] cpuidle: using governor ladder
[    0.151157] cpuidle: using governor menu
[    0.151514] ACPI: bus type PCI registered
[    0.151518] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.151668] PCI: Using configuration type 1 for base access
[    0.151669] PCI: Using configuration type 1 for extended access
[    0.153654] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.154295] ACPI: Added _OSI(Module Device)
[    0.154300] ACPI: Added _OSI(Processor Device)
[    0.154302] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.154304] ACPI: Added _OSI(Processor Aggregator Device)
[    0.154897] ACPI: Executed 3 blocks of module-level executable AML code
[    0.160656] ACPI: Interpreter enabled
[    0.160701] ACPI: (supports S0 S1 S3 S4 S5)
[    0.160704] ACPI: Using IOAPIC for interrupt routing
[    0.160729] HEST: Table parsing has been initialized.
[    0.160735] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.168896] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.168908] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.169070] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.169667] PCI host bridge to bus 0000:00
[    0.169672] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.169676] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.169679] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.169682] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xffffffff]
[    0.169686] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.169716] pci 0000:00:00.0: [1022:1510] type 00 class 0x060000
[    0.169948] pci 0000:00:01.0: [1002:9802] type 00 class 0x030000
[    0.169966] pci 0000:00:01.0: reg 0x10: [mem 0xe0000000-0xefffffff pref]
[    0.169976] pci 0000:00:01.0: reg 0x14: [io  0x2000-0x20ff]
[    0.169986] pci 0000:00:01.0: reg 0x18: [mem 0xf0100000-0xf013ffff]
[    0.170059] pci 0000:00:01.0: supports D1 D2
[    0.170177] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.170256] pci 0000:00:01.1: [1002:1314] type 00 class 0x040300
[    0.170271] pci 0000:00:01.1: reg 0x10: [mem 0xf0140000-0xf0143fff]
[    0.170354] pci 0000:00:01.1: supports D1 D2
[    0.170469] pci 0000:00:01.1: System wakeup disabled by ACPI
[    0.170646] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    0.170670] pci 0000:00:11.0: reg 0x10: [io  0x2410-0x2417]
[    0.170683] pci 0000:00:11.0: reg 0x14: [io  0x2420-0x2423]
[    0.170696] pci 0000:00:11.0: reg 0x18: [io  0x2418-0x241f]
[    0.170709] pci 0000:00:11.0: reg 0x1c: [io  0x2424-0x2427]
[    0.170723] pci 0000:00:11.0: reg 0x20: [io  0x2400-0x240f]
[    0.170736] pci 0000:00:11.0: reg 0x24: [mem 0xf014b000-0xf014b3ff]
[    0.171029] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    0.171049] pci 0000:00:12.0: reg 0x10: [mem 0xf0148000-0xf0148fff]
[    0.171237] pci 0000:00:12.0: System wakeup disabled by ACPI
[    0.171389] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    0.171412] pci 0000:00:12.2: reg 0x10: [mem 0xf014c000-0xf014c0ff]
[    0.171523] pci 0000:00:12.2: supports D1 D2
[    0.171526] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.171643] pci 0000:00:12.2: System wakeup disabled by ACPI
[    0.171719] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    0.171738] pci 0000:00:13.0: reg 0x10: [mem 0xf0149000-0xf0149fff]
[    0.171927] pci 0000:00:13.0: System wakeup disabled by ACPI
[    0.172068] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    0.172092] pci 0000:00:13.2: reg 0x10: [mem 0xf014d000-0xf014d0ff]
[    0.172202] pci 0000:00:13.2: supports D1 D2
[    0.172205] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.172319] pci 0000:00:13.2: System wakeup disabled by ACPI
[    0.172458] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    0.172754] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[    0.172783] pci 0000:00:14.2: reg 0x10: [mem 0xf0144000-0xf0147fff 64bit]
[    0.172876] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.173118] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    0.173446] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    0.173608] pci 0000:00:14.4: System wakeup disabled by ACPI
[    0.173673] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[    0.173704] pci 0000:00:14.5: reg 0x10: [mem 0xf014a000-0xf014afff]
[    0.173894] pci 0000:00:14.5: System wakeup disabled by ACPI
[    0.174042] pci 0000:00:15.0: [1002:43a0] type 01 class 0x060400
[    0.174149] pci 0000:00:15.0: supports D1 D2
[    0.174270] pci 0000:00:15.0: System wakeup disabled by ACPI
[    0.174414] pci 0000:00:15.1: [1002:43a1] type 01 class 0x060400
[    0.174526] pci 0000:00:15.1: supports D1 D2
[    0.174653] pci 0000:00:15.1: System wakeup disabled by ACPI
[    0.174771] pci 0000:00:18.0: [1022:1700] type 00 class 0x060000
[    0.174969] pci 0000:00:18.1: [1022:1701] type 00 class 0x060000
[    0.175165] pci 0000:00:18.2: [1022:1702] type 00 class 0x060000
[    0.175361] pci 0000:00:18.3: [1022:1703] type 00 class 0x060000
[    0.175575] pci 0000:00:18.4: [1022:1704] type 00 class 0x060000
[    0.175771] pci 0000:00:18.5: [1022:1718] type 00 class 0x060000
[    0.175962] pci 0000:00:18.6: [1022:1716] type 00 class 0x060000
[    0.176157] pci 0000:00:18.7: [1022:1719] type 00 class 0x060000
[    0.176538] pci 0000:00:14.4: PCI bridge to [bus 01] (subtractive decode)
[    0.176551] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.176555] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.176558] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.176561] pci 0000:00:14.4:   bridge window [mem 0xe0000000-0xffffffff] (subtractive decode)
[    0.176645] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.176766] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
[    0.176795] pci 0000:03:00.0: reg 0x10: [io  0x1000-0x10ff]
[    0.176834] pci 0000:03:00.0: reg 0x18: [mem 0xf0004000-0xf0004fff 64bit pref]
[    0.176859] pci 0000:03:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[    0.176995] pci 0000:03:00.0: supports D1 D2
[    0.176997] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.186016] pci 0000:00:15.1: PCI bridge to [bus 03]
[    0.186030] pci 0000:00:15.1:   bridge window [io  0x1000-0x1fff]
[    0.186043] pci 0000:00:15.1:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.186082] pci_bus 0000:00: on NUMA node 0
[    0.187144] ACPI: PCI Interrupt Link [INTA] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.187398] ACPI: PCI Interrupt Link [INTB] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.187577] ACPI: PCI Interrupt Link [INTC] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.187728] ACPI: PCI Interrupt Link [INTD] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.187905] ACPI: PCI Interrupt Link [INTE] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.188083] ACPI: PCI Interrupt Link [INTF] (IRQs 9) *0, disabled.
[    0.188255] ACPI: PCI Interrupt Link [INTG] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.188431] ACPI: PCI Interrupt Link [INTH] (IRQs 3 4 5 7 10 11 12 15) *0, disabled.
[    0.188721] ACPI: Enabled 6 GPEs in block 00 to 1F
[    0.189205] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[    0.189212] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.189228] pci 0000:00:01.0: vgaarb: bridge control possible
[    0.189229] vgaarb: loaded
[    0.189538] PCI: Using ACPI for IRQ routing
[    0.189547] PCI: pci_cache_line_size set to 64 bytes
[    0.189715] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.189719] e820: reserve RAM buffer [mem 0xc7e34000-0xc7ffffff]
[    0.189721] e820: reserve RAM buffer [mem 0x21f000000-0x21fffffff]
[    0.190253] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.190260] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.192415] clocksource: Switched to clocksource hpet
[    0.215432] VFS: Disk quotas dquot_6.6.0
[    0.215576] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.215839] pnp: PnP ACPI init
[    0.216270] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.216355] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.216537] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.216879] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.216945] pnp 00:04: Plug and Play ACPI device, IDs PNP0f13 (active)
[    0.216965] pnp: PnP ACPI: found 5 devices
[    0.216969] PnPBIOS: Disabled by ACPI PNP
[    0.259841] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.259900] pci 0000:00:14.4: PCI bridge to [bus 01]
[    0.259920] pci 0000:00:15.0: PCI bridge to [bus 02]
[    0.259936] pci 0000:00:15.1: PCI bridge to [bus 03]
[    0.259941] pci 0000:00:15.1:   bridge window [io  0x1000-0x1fff]
[    0.259952] pci 0000:00:15.1:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.259963] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.259966] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.259970] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.259973] pci_bus 0000:00: resource 7 [mem 0xe0000000-0xffffffff]
[    0.259976] pci_bus 0000:01: resource 4 [io  0x0000-0x0cf7 window]
[    0.259979] pci_bus 0000:01: resource 5 [io  0x0d00-0xffff window]
[    0.259982] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
[    0.259985] pci_bus 0000:01: resource 7 [mem 0xe0000000-0xffffffff]
[    0.259988] pci_bus 0000:03: resource 0 [io  0x1000-0x1fff]
[    0.259991] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.260234] NET: Registered protocol family 2
[    0.260726] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.260756] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.260792] TCP: Hash tables configured (established 8192 bind 8192)
[    0.260843] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.260855] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.260935] NET: Registered protocol family 1
[    0.260970] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.323150] PCI: CLS 64 bytes, default 64
[    0.323290] Unpacking initramfs...
[    1.161559] Freeing initrd memory: 21792K
[    1.161726] LVT offset 0 assigned for vector 0x400
[    1.162049] perf: AMD IBS detected (0x000000ff)
[    1.163156] audit: initializing netlink subsys (disabled)
[    1.163527] audit: type=2000 audit(1494668128.160:1): state=initialized audit_enabled=0 res=1
[    1.164487] workingset: timestamp_bits=14 max_order=21 bucket_order=7
[    1.164652] zbud: loaded
[    1.167568] bounce: pool size: 64 pages
[    1.167599] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    1.167727] io scheduler noop registered
[    1.167728] io scheduler deadline registered
[    1.167777] io scheduler cfq registered (default)
[    1.167779] io scheduler mq-deadline registered
[    1.169179] pcieport 0000:00:15.0: Signaling PME with IRQ 24
[    1.169226] pcieport 0000:00:15.1: Signaling PME with IRQ 25
[    1.170155] GHES: Failed to enable APEI firmware first mode.
[    1.170160] isapnp: ISA Plug & Play support disabled
[    1.170450] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.191313] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.192955] Linux agpgart interface v0.103
[    1.193854] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.197661] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.197680] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.198245] mousedev: PS/2 mouse device common for all mice
[    1.198449] rtc_cmos 00:00: RTC can wake from S4
[    1.198708] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    1.198745] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram, hpet irqs
[    1.198804] ledtrig-cpu: registered to indicate activity on CPUs
[    1.199298] NET: Registered protocol family 10
[    1.200064] Segment Routing with IPv6
[    1.200093] mip6: Mobile IPv6
[    1.200099] NET: Registered protocol family 17
[    1.200104] mpls_gso: MPLS GSO support
[    1.201077] microcode: CPU0: patch_level=0x05000119
[    1.201168] microcode: CPU1: patch_level=0x05000119
[    1.201257] microcode: Microcode Update Driver: v2.2.
[    1.201266] Using IPI No-Shortcut mode
[    1.202050] registered taskstats version 1
[    1.202097] zswap: loaded using pool lzo/zbud
[    1.202273] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    1.202946] rtc_cmos 00:00: setting system clock to 2017-05-13 09:35:29 UTC (1494668129)
[    1.202995] PM: Hibernation image not present or could not be loaded.
[    1.203637] Freeing unused kernel memory: 776K
[    1.203916] Write protecting the kernel text: 6064k
[    1.204090] Write protecting the kernel read-only data: 1756k
[    1.204091] NX-protecting the kernel data: 4176k
[    1.204598] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.226373] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.409672] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.409876] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.409919] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.411905] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.412567] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.414221] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.414402] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.415452] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.415617] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.415784] random: udevadm: uninitialized urandom read (16 bytes read)
[    1.488125] SCSI subsystem initialized
[    1.494331] ACPI: bus type USB registered
[    1.494387] usbcore: registered new interface driver usbfs
[    1.494407] usbcore: registered new interface driver hub
[    1.494478] usbcore: registered new device driver usb
[    1.495503] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.495956] ehci-pci: EHCI PCI platform driver
[    1.496093] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    1.496105] piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
[    1.497049] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0x8060
[    1.497337] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.497703] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver v0.05
[    1.497804] sp5100_tco: PCI Vendor ID: 0x1002, Device ID: 0x4385, Revision ID: 0x42
[    1.497810] sp5100_tco: I/O address 0x0cd6 already in use
[    1.498105] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    1.498202] thermal LNXTHERM:00: registered as thermal_zone0
[    1.498204] ACPI: Thermal Zone [TZ00] (57 C)
[    1.498790] QUIRK: Enable AMD PLL fix
[    1.498837] ehci-pci 0000:00:12.2: EHCI Host Controller
[    1.498854] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[    1.498864] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.498946] ehci-pci 0000:00:12.2: debug port 1
[    1.499013] ehci-pci 0000:00:12.2: irq 17, io mem 0xf014c000
[    1.503157] libata version 3.00 loaded.
[    1.509624] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.510608] r8169 0000:03:00.0 eth0: RTL8168e/8111e at 0xf82a2000, bc:5f:f4:c8:d3:98, XID 0c200000 IRQ 26
[    1.510612] r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.512582] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    1.512767] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.512771] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.512774] usb usb1: Product: EHCI Host Controller
[    1.512777] usb usb1: Manufacturer: Linux 4.11.0-trunk-686-pae ehci_hcd
[    1.512779] usb usb1: SerialNumber: 0000:00:12.2
[    1.513116] hub 1-0:1.0: USB hub found
[    1.513134] hub 1-0:1.0: 5 ports detected
[    1.513889] ehci-pci 0000:00:13.2: EHCI Host Controller
[    1.513903] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.513911] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.513925] ehci-pci 0000:00:13.2: debug port 1
[    1.513977] ehci-pci 0000:00:13.2: irq 17, io mem 0xf014d000
[    1.528488] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.528921] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.528925] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.528928] usb usb2: Product: EHCI Host Controller
[    1.528931] usb usb2: Manufacturer: Linux 4.11.0-trunk-686-pae ehci_hcd
[    1.528933] usb usb2: SerialNumber: 0000:00:13.2
[    1.529211] hub 2-0:1.0: USB hub found
[    1.529229] hub 2-0:1.0: 5 ports detected
[    1.529814] ahci 0000:00:11.0: version 3.0
[    1.530372] ohci-pci: OHCI PCI platform driver
[    1.530526] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    1.530532] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck led clo pmp pio slum part 
[    1.536823] scsi host0: ahci
[    1.543332] scsi host1: ahci
[    1.550096] scsi host2: ahci
[    1.558031] scsi host3: ahci
[    1.564475] scsi host4: ahci
[    1.570900] scsi host5: ahci
[    1.571112] ata1: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b100 irq 19
[    1.571116] ata2: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b180 irq 19
[    1.571120] ata3: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b200 irq 19
[    1.571123] ata4: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b280 irq 19
[    1.571126] ata5: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b300 irq 19
[    1.571129] ata6: SATA max UDMA/133 abar m1024@0xf014b000 port 0xf014b380 irq 19
[    1.571648] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    1.571665] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[    1.571738] ohci-pci 0000:00:12.0: irq 18, io mem 0xf0148000
[    1.615845] r8169 0000:03:00.0 eth6: renamed from eth0
[    1.632987] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.632993] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.632996] usb usb3: Product: OHCI PCI host controller
[    1.632999] usb usb3: Manufacturer: Linux 4.11.0-trunk-686-pae ohci_hcd
[    1.633001] usb usb3: SerialNumber: 0000:00:12.0
[    1.633334] hub 3-0:1.0: USB hub found
[    1.633421] hub 3-0:1.0: 5 ports detected
[    1.634081] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    1.634098] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 4
[    1.634144] ohci-pci 0000:00:13.0: irq 18, io mem 0xf0149000
[    1.696856] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    1.696862] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.696865] usb usb4: Product: OHCI PCI host controller
[    1.696868] usb usb4: Manufacturer: Linux 4.11.0-trunk-686-pae ohci_hcd
[    1.696870] usb usb4: SerialNumber: 0000:00:13.0
[    1.697520] hub 4-0:1.0: USB hub found
[    1.697543] hub 4-0:1.0: 5 ports detected
[    1.698268] ohci-pci 0000:00:14.5: OHCI PCI host controller
[    1.698283] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 5
[    1.698333] ohci-pci 0000:00:14.5: irq 18, io mem 0xf014a000
[    1.760849] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    1.760855] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.760858] usb usb5: Product: OHCI PCI host controller
[    1.760861] usb usb5: Manufacturer: Linux 4.11.0-trunk-686-pae ohci_hcd
[    1.760863] usb usb5: SerialNumber: 0000:00:14.5
[    1.761507] hub 5-0:1.0: USB hub found
[    1.761531] hub 5-0:1.0: 2 ports detected
[    1.893262] ata2: SATA link down (SStatus 0 SControl 300)
[    1.896449] ata3: SATA link down (SStatus 0 SControl 300)
[    1.909201] ata5: SATA link down (SStatus 0 SControl 300)
[    1.909251] ata4: SATA link down (SStatus 0 SControl 300)
[    1.914540] ata6: SATA link down (SStatus 0 SControl 300)
[    2.016717] usb 3-2: new low-speed USB device number 2 using ohci-pci
[    2.044552] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.051279] ata1.00: ATA-8: WDC WD20EARS-60MVWB0, 51.0AB51, max UDMA/100
[    2.051286] ata1.00: 3907029168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    2.058258] ata1.00: configured for UDMA/100
[    2.059188] scsi 0:0:0:0: Direct-Access     ATA      WDC WD20EARS-60M AB51 PQ: 0 ANSI: 5
[    2.099118] sd 0:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[    2.099124] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    2.099223] sd 0:0:0:0: [sda] Write Protect is off
[    2.099227] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.099276] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.115116]  sda: sda1 sda2
[    2.116307] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.176508] tsc: Refined TSC clocksource calibration: 1599.999 MHz
[    2.176521] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x171023f09ff, max_idle_ns: 440795233615 ns
[    2.205803] usb 3-2: New USB device found, idVendor=1241, idProduct=1122
[    2.205814] usb 3-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.211103] hidraw: raw HID events driver (C) Jiri Kosina
[    2.219205] usbcore: registered new interface driver usbhid
[    2.219209] usbhid: USB HID core driver
[    2.221688] input: HID 1241:1122 as /devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.0/0003:1241:1122.0001/input/input3
[    2.222304] 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.328360] md/raid1:md1: active with 1 out of 2 mirrors
[    2.328412] md1: detected capacity change from 0 to 1999886286848
[    2.330842] md/raid1:md0: active with 1 out of 2 mirrors
[    2.330897] md0: detected capacity change from 0 to 509804544
[    2.596488] raid6: mmxx1    gen()   596 MB/s
[    2.664427] raid6: mmxx2    gen()  1013 MB/s
[    2.732388] raid6: sse1x1   gen()   594 MB/s
[    2.800392] raid6: sse1x2   gen()   990 MB/s
[    2.868432] raid6: sse2x1   gen()  1008 MB/s
[    2.936388] raid6: sse2x1   xor()  1121 MB/s
[    3.004365] raid6: sse2x2   gen()  1407 MB/s
[    3.072362] raid6: sse2x2   xor()  1237 MB/s
[    3.072365] raid6: using algorithm sse2x2 gen() 1407 MB/s
[    3.072366] raid6: .... xor() 1237 MB/s, rmw enabled
[    3.072368] raid6: using ssse3x1 recovery algorithm
[    3.073195] xor: measuring software checksum speed
[    3.112351]    pIII_sse  :  3033.000 MB/sec
[    3.152348]    prefetch64-sse:  3236.000 MB/sec
[    3.152350] xor: using function: prefetch64-sse (3236.000 MB/sec)
[    3.152832] async_tx: api initialized (async)
[    3.204696] clocksource: Switched to clocksource tsc
[    3.261198] device-mapper: uevent: version 1.0.3
[    3.261355] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    8.452507] random: fast init done
[    8.650290] random: crng init done
[   15.636914] NET: Registered protocol family 38
[   17.919312] Btrfs loaded, crc32c=crc32c-generic
[   19.380698] PM: Starting manual resume from disk
[   19.380708] PM: Hibernation image partition 253:2 present
[   19.380710] PM: Looking for hibernation image.
[   19.381421] PM: Image not found (code -22)
[   19.381426] PM: Hibernation image not present or could not be loaded.
[   20.032123] EXT4-fs (dm-1): mounting ext3 file system using the ext4 subsystem
[   20.065158] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[   20.892442] EXT4-fs (dm-3): mounted filesystem with ordered data mode. Opts: (null)
[   23.506473] ip_tables: (C) 2000-2006 Netfilter Core Team
[   23.539003] systemd[1]: systemd 232 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[   23.539362] systemd[1]: Detected architecture x86.
[   23.548959] systemd[1]: Set hostname to <mattotaupa>.
[   25.858250] systemd[1]: lircd.socket: Cannot add dependency job, ignoring: Unit lircd.socket is masked.
[   25.858481] systemd[1]: lircd-setup.service: Cannot add dependency job, ignoring: Unit lircd-setup.service is masked.
[   25.858504] systemd[1]: lircmd.service: Cannot add dependency job, ignoring: Unit lircmd.service is masked.
[   25.858518] systemd[1]: lircd.service: Cannot add dependency job, ignoring: Unit lircd.service is masked.
[   25.858583] systemd[1]: irexec.service: Cannot add dependency job, ignoring: Unit irexec.service is masked.
[   25.858725] systemd[1]: lircd-uinput.service: Cannot add dependency job, ignoring: Unit lircd-uinput.service is masked.
[   25.861857] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   26.532220] EXT4-fs (dm-3): re-mounted. Opts: (null)
[   26.532248] EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro
[   27.472861] loop: module loaded
[   27.639817] nct6775: Found NCT6775F or compatible chip at 0x2e:0x290
[   29.385790] acpi_cpufreq: overriding BIOS provided _PSD data
[   29.528172] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[   29.528183] ACPI: Power Button [PWRB]
[   29.528391] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[   29.528395] ACPI: Power Button [PWRF]
[   29.691067] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   29.923778] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   30.259495] [drm] radeon kernel modesetting enabled.
[   30.604146] [drm] initializing kernel modesetting (PALM 0x1002:0x9802 0x1002:0x9802 0x00).
[   30.604188] [drm] register mmio base: 0xF0100000
[   30.604191] [drm] register mmio size: 262144
[   30.604330] ATOM BIOS: AMD
[   30.604439] radeon 0000:00:01.0: VRAM: 384M 0x0000000000000000 - 0x0000000017FFFFFF (384M used)
[   30.604447] radeon 0000:00:01.0: GTT: 1024M 0x0000000018000000 - 0x0000000057FFFFFF
[   30.604458] [drm] Detected VRAM RAM=384M, BAR=256M
[   30.604462] [drm] RAM width 32bits DDR
[   30.604676] [TTM] Zone  kernel: Available graphics memory: 409930 kiB
[   30.604679] [TTM] Zone highmem: Available graphics memory: 3942838 kiB
[   30.604682] [TTM] Initializing pool allocator
[   30.604699] [TTM] Initializing DMA pool allocator
[   30.604774] [drm] radeon: 384M of VRAM memory ready
[   30.604778] [drm] radeon: 1024M of GTT memory ready.
[   30.604802] [drm] Loading PALM Microcode
[   30.726722] radeon 0000:00:01.0: firmware: direct-loading firmware radeon/PALM_pfp.bin
[   30.994333] radeon 0000:00:01.0: firmware: direct-loading firmware radeon/PALM_me.bin
[   31.055334] radeon 0000:00:01.0: firmware: direct-loading firmware radeon/SUMO_rlc.bin
[   31.055349] [drm] Internal thermal controller without fan control
[   31.055456] == power state 0 ==
[   31.055458] 	ui class: 
[   31.055459] none
[   31.055460] 	internal class: 
[   31.055461] uvd_hd 

[   31.055464] 	caps: 

[   31.055467] 	uvd    vclk: 40000 dclk: 30477
[   31.055470] 		power level 0    sclk: 27827 vddc: 850
[   31.055470] 	status: 

[   31.055473] == power state 1 ==
[   31.055474] 	ui class: 
[   31.055475] none
[   31.055476] 	internal class: 
[   31.055477] uvd 

[   31.055478] 	caps: 

[   31.055481] 	uvd    vclk: 53334 dclk: 40000
[   31.055483] 		power level 0    sclk: 49231 vddc: 925
[   31.055483] 	status: 

[   31.055485] == power state 2 ==
[   31.055486] 	ui class: 
[   31.055487] performance
[   31.055488] 	internal class: 
[   31.055489] none

[   31.055491] 	caps: 

[   31.055493] 	uvd    vclk: 0 dclk: 0
[   31.055495] 		power level 0    sclk: 27827 vddc: 850
[   31.055496] 		power level 1    sclk: 49231 vddc: 925
[   31.055497] 	status: 

[   31.055499] == power state 3 ==
[   31.055500] 	ui class: 
[   31.055501] none
[   31.055501] 	internal class: 
[   31.055502] boot 

[   31.055504] 	caps: 

[   31.055506] 	uvd    vclk: 0 dclk: 0
[   31.055508] 		power level 0    sclk: 20000 vddc: 925
[   31.055509] 	status: 
[   31.055509] c 
[   31.055511] r 
[   31.055512] b 

[   31.055514] == power state 4 ==
[   31.055514] 	ui class: 
[   31.055515] none
[   31.055516] 	internal class: 
[   31.055517] thermal 

[   31.055519] 	caps: 

[   31.055521] 	uvd    vclk: 0 dclk: 0
[   31.055522] 		power level 0    sclk: 17778 vddc: 850
[   31.055523] 	status: 

[   31.055528] [drm] Found smc ucode version: 0x00010601
[   31.055607] [drm] radeon: dpm initialized
[   31.592906] kvm: Nested Virtualization enabled
[   31.592913] kvm: Nested Paging enabled
[   31.990532] radeon 0000:00:01.0: firmware: direct-loading firmware radeon/SUMO_uvd.bin
[   31.990646] [drm] GART: num cpu pages 262144, num gpu pages 262144
[   32.011117] [drm] PCIE GART of 1024M enabled (table at 0x0000000000162000).
[   32.011444] radeon 0000:00:01.0: WB enabled
[   32.011450] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000018000c00 and cpu addr 0xffb33c00
[   32.011454] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000018000c0c and cpu addr 0xffb33c0c
[   32.012381] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000072118 and cpu addr 0xf9232118
[   32.012385] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   32.012386] [drm] Driver supports precise vblank timestamp query.
[   32.012389] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
[   32.012478] radeon 0000:00:01.0: radeon: using MSI.
[   32.012514] [drm] radeon: irq initialized.
[   32.029046] [drm] ring test on 0 succeeded in 1 usecs
[   32.029056] [drm] ring test on 3 succeeded in 3 usecs
[   32.074863] [drm] ring test on 5 succeeded in 1 usecs
[   32.094754] [drm] UVD initialized successfully.
[   32.095053] [drm] ib test on ring 0 succeeded in 0 usecs
[   32.095092] [drm] ib test on ring 3 succeeded in 0 usecs
[   32.643126] [drm] ib test on ring 5 succeeded
[   32.663836] [drm] Radeon Display Connectors
[   32.663838] [drm] Connector 0:
[   32.663840] [drm]   HDMI-A-1
[   32.663841] [drm]   HPD1
[   32.663845] [drm]   DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
[   32.663846] [drm]   Encoders:
[   32.663847] [drm]     DFP1: INTERNAL_UNIPHY
[   32.663848] [drm] Connector 1:
[   32.663849] [drm]   HDMI-A-2
[   32.663850] [drm]   HPD2
[   32.663853] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[   32.663854] [drm]   Encoders:
[   32.663855] [drm]     DFP2: INTERNAL_UNIPHY
[   32.663856] [drm] Connector 2:
[   32.663857] [drm]   VGA-1
[   32.663860] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[   32.663861] [drm]   Encoders:
[   32.663862] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[   32.664020] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[   32.664099] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[   32.664174] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 3, devices 00000001, active_devices 00000000
[   32.664212] switching from power state:
[   32.664213] 	ui class: 
[   32.664215] none
[   32.664216] 	internal class: 
[   32.664217] boot 

[   32.664220] 	caps: 

[   32.664223] 	uvd    vclk: 0 dclk: 0
[   32.664226] 		power level 0    sclk: 20000 vddc: 925
[   32.664227] 	status: 
[   32.664227] c 
[   32.664228] b 

[   32.664231] switching to power state:
[   32.664232] 	ui class: 
[   32.664233] performance
[   32.664234] 	internal class: 
[   32.664234] none

[   32.664236] 	caps: 

[   32.664238] 	uvd    vclk: 0 dclk: 0
[   32.664240] 		power level 0    sclk: 27827 vddc: 850
[   32.664242] 		power level 1    sclk: 49231 vddc: 925
[   32.664243] 	status: 
[   32.664243] r 

[   32.664325] [drm:drm_setup_crtcs [drm_kms_helper]] 
[   32.664333] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1]
[   32.665502] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP1 disconnected
[   32.665512] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1] status updated from unknown to disconnected
[   32.665518] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1] disconnected
[   32.665527] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2]
[   32.666680] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP2 disconnected
[   32.666688] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2] status updated from unknown to disconnected
[   32.666694] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2] disconnected
[   32.666701] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1]
[   32.698473] [drm:radeon_atombios_connected_scratch_regs [radeon]] CRT1 connected
[   32.698482] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1] status updated from unknown to connected
[   32.698554] [drm:drm_edid_to_eld [drm]] ELD: no CEA Extension found
[   32.698586] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1] probed modes :
[   32.698603] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   32.698619] [drm:drm_mode_debug_printmodeline [drm]] Modeline 46:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[   32.698634] [drm:drm_mode_debug_printmodeline [drm]] Modeline 50:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[   32.698650] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[   32.698666] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[   32.698681] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[   32.698696] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[   32.698712] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[   32.698727] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[   32.698742] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[   32.698758] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[   32.698773] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[   32.698788] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[   32.698804] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[   32.698819] [drm:drm_mode_debug_printmodeline [drm]] Modeline 49:"720x405" 70 26483 720 736 808 896 405 406 409 422 0x0 0x6
[   32.698834] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[   32.698850] [drm:drm_mode_debug_printmodeline [drm]] Modeline 48:"640x400" 70 23354 640 656 720 800 400 401 404 417 0x0 0x6
[   32.698899] [drm:drm_mode_debug_printmodeline [drm]] Modeline 47:"640x360" 70 20604 640 648 712 784 360 361 364 375 0x0 0x6
[   32.698907] [drm:drm_setup_crtcs [drm_kms_helper]] connector 40 enabled? no
[   32.698913] [drm:drm_setup_crtcs [drm_kms_helper]] connector 42 enabled? no
[   32.698919] [drm:drm_setup_crtcs [drm_kms_helper]] connector 44 enabled? yes
[   32.698926] [drm:drm_setup_crtcs [drm_kms_helper]] looking for cmdline mode on connector 44
[   32.698933] [drm:drm_setup_crtcs [drm_kms_helper]] looking for preferred mode on connector 44 0
[   32.698940] [drm:drm_setup_crtcs [drm_kms_helper]] found mode 1280x1024
[   32.698947] [drm:drm_setup_crtcs [drm_kms_helper]] picking CRTCs for 8192x8192 config
[   32.698957] [drm:drm_setup_crtcs [drm_kms_helper]] desired mode 1280x1024 set on crtc 36 (0,0)
[   32.703222] [drm] fb mappable at 0xE0366000
[   32.703224] [drm] vram apper at 0xE0000000
[   32.703225] [drm] size 5242880
[   32.703227] [drm] fb depth is 24
[   32.703228] [drm]    pitch is 5120
[   32.703383] fbcon: radeondrmfb (fb0) is primary device
[   32.704201] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[   32.704209] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [FB:65] #connectors=1 (x y) (0 0)
[   32.704219] [drm:drm_crtc_helper_set_config [drm_kms_helper]] crtc has no fb, full mode set
[   32.704224] [drm:drm_crtc_helper_set_config [drm_kms_helper]] modes are different, full mode set
[   32.704241] [drm:drm_mode_debug_printmodeline [drm]] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[   32.704257] [drm:drm_mode_debug_printmodeline [drm]] Modeline 59:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   32.704264] [drm:drm_crtc_helper_set_config [drm_kms_helper]] encoder changed, full mode switch
[   32.704270] [drm:drm_crtc_helper_set_config [drm_kms_helper]] crtc changed, full mode switch
[   32.704276] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CONNECTOR:44:VGA-1] to [CRTC:36:crtc-0]
[   32.704282] [drm:drm_crtc_helper_set_config [drm_kms_helper]] attempting to set mode from userspace
[   32.704298] [drm:drm_mode_debug_printmodeline [drm]] Modeline 59:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[   32.704381] [drm:radeon_encoder_set_active_device [radeon]] setting active device to 00000001 from 00000001 00000001 for encoder 4
[   32.704403] [drm:drm_crtc_helper_set_mode [drm_kms_helper]] [CRTC:36:crtc-0]
[   32.704494] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[   32.704572] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[   32.704683] [drm:radeon_compute_pll_avivo [radeon]] 135000 - 135000, pll dividers - fb: 21.6 ref: 2, post 8
[   32.727550] [drm:drm_crtc_helper_set_mode [drm_kms_helper]] [ENCODER:43:TV-43] set [MODE:59:1280x1024]
[   32.727703] [drm:radeon_crtc_handle_flip [radeon]] radeon_crtc->flip_status = 0 != RADEON_FLIP_SUBMITTED(2)
[   32.727866] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 3, devices 00000001, active_devices 00000001
[   32.728077] [drm:radeon_crtc_load_lut [radeon]] 0
[   32.741404] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 0, devices 00000001, active_devices 00000001
[   32.741608] [drm:drm_crtc_helper_set_config [drm_kms_helper]] Setting connector DPMS state to on
[   32.741614] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 	[CONNECTOR:44:VGA-1] set DPMS on
[   32.741696] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[   32.741773] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[   32.741806] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[   32.741812] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:38:crtc-1] [NOFB]
[   32.741884] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[   32.741957] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[   32.742032] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[   32.742040] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [FB:65] #connectors=1 (x y) (0 0)
[   32.742051] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CONNECTOR:44:VGA-1] to [CRTC:36:crtc-0]
[   32.742119] [drm:radeon_crtc_load_lut [radeon]] 0
[   32.742214] [drm:radeon_crtc_load_lut [radeon]] 0
[   32.753021] Console: switching to colour frame buffer device 160x64
[   32.753048] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[   32.753055] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [FB:65] #connectors=1 (x y) (0 0)
[   32.753066] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CONNECTOR:44:VGA-1] to [CRTC:36:crtc-0]
[   32.753143] [drm:radeon_crtc_load_lut [radeon]] 0
[   32.753238] [drm:radeon_crtc_load_lut [radeon]] 0
[   32.763892] radeon 0000:00:01.0: fb0: radeondrmfb frame buffer device
[   32.779284] [drm:radeon_acpi_init [radeon]] Call to ATCS verify_interface failed: -5
[   32.779421] [drm:radeon_acpi_init [radeon]] Call to ATIF verify_interface failed: -5
[   32.779485] [drm] Initialized radeon 2.49.0 20080528 for 0000:00:01.0 on minor 0
[   33.179885] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input6
[   33.232196] snd_hda_codec_realtek hdaudioC1D0: ALC892: SKU not ready 0x00000100
[   33.232856] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x16/0x15/0x17/0x0) type:line
[   33.232861] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   33.232865] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   33.232868] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   33.232872] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[   33.232875] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   33.232881] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[   33.232885] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[   33.232888] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[   33.232892] snd_hda_codec_realtek hdaudioC1D0:      CD=0x1c
[   33.261072] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
[   33.268286] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
[   33.268423] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[   33.268548] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[   33.268674] input: HDA ATI SB Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input11
[   33.268802] input: HDA ATI SB Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input12
[   33.270932] input: HDA ATI SB Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input13
[   33.271708] input: HDA ATI SB Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card1/input14
[   33.271832] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input15
[   38.680736] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[   39.632096] XFS (dm-8): Mounting V4 Filesystem
[   39.757212] XFS (dm-7): Mounting V4 Filesystem
[   41.184695] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
[   42.027866] EXT4-fs (dm-4): mounted filesystem with ordered data mode. Opts: (null)
[   42.376125] EXT4-fs (dm-6): mounted filesystem with ordered data mode. Opts: (null)
[   42.468663] XFS (dm-7): Ending clean mount
[   42.468677] XFS (dm-7): Unable to allocate reserve blocks. Continuing without reserve pool.
[   42.478105] XFS (dm-8): Ending clean mount
[   42.478119] XFS (dm-8): Unable to allocate reserve blocks. Continuing without reserve pool.
[   42.700457] systemd-journald[381]: Received request to flush runtime journal from PID 1
[   53.284008] Process accounting resumed
[   66.347173] IPv6: ADDRCONF(NETDEV_UP): eth6: link is not ready
[   66.557697] r8169 0000:03:00.0: firmware: direct-loading firmware rtl_nic/rtl8168e-2.fw
[   66.701666] r8169 0000:03:00.0 eth6: link down
[   66.701703] r8169 0000:03:00.0 eth6: link down
[   66.702040] IPv6: ADDRCONF(NETDEV_UP): eth6: link is not ready
[   69.242374] r8169 0000:03:00.0 eth6: link up
[   69.242402] IPv6: ADDRCONF(NETDEV_CHANGE): eth6: link becomes ready
[   82.588559] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   82.979990] Ebtables v2.0 registered
[  110.441844] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  115.686584] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1]
[  115.687829] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP1 disconnected
[  115.687841] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1] disconnected
[  115.687872] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2]
[  115.689019] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP2 disconnected
[  115.689029] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2] disconnected
[  115.689051] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1]
[  115.721636] [drm:radeon_atombios_connected_scratch_regs [radeon]] CRT1 connected
[  115.721777] [drm:drm_edid_to_eld [drm]] ELD: no CEA Extension found
[  115.721856] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1] probed modes :
[  115.721890] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[  115.721920] [drm:drm_mode_debug_printmodeline [drm]] Modeline 46:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[  115.721950] [drm:drm_mode_debug_printmodeline [drm]] Modeline 50:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[  115.721978] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[  115.722007] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[  115.722035] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[  115.722063] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[  115.722091] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[  115.722119] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[  115.722147] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[  115.722175] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[  115.722203] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[  115.722231] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[  115.722259] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[  115.722286] [drm:drm_mode_debug_printmodeline [drm]] Modeline 49:"720x405" 70 26483 720 736 808 896 405 406 409 422 0x0 0x6
[  115.722314] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[  115.722341] [drm:drm_mode_debug_printmodeline [drm]] Modeline 48:"640x400" 70 23354 640 656 720 800 400 401 404 417 0x0 0x6
[  115.722369] [drm:drm_mode_debug_printmodeline [drm]] Modeline 47:"640x360" 70 20604 640 648 712 784 360 361 364 375 0x0 0x6
[  118.052997] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  144.556325] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  145.462206] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  145.462282] [drm:drm_mode_setcrtc [drm]] [CRTC:36:crtc-0]
[  145.462303] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:44:VGA-1]
[  145.462314] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[  145.462322] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [FB:45] #connectors=1 (x y) (0 0)
[  145.462335] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CONNECTOR:44:VGA-1] to [CRTC:36:crtc-0]
[  145.462498] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = f611d800
[  145.898756] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  145.898849] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  146.741179] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  146.741277] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  146.871393] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  146.871482] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  146.892232] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  146.892320] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  146.908945] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  146.909034] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  146.929021] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  146.929103] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  146.945550] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  146.945635] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  146.962334] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  146.962420] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  146.978509] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  146.978591] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  146.995838] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  146.995924] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.012419] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.012506] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.028816] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.028901] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.045508] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.045594] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.065987] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.066081] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.078985] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.079075] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.125462] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.125558] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.195383] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.195483] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.212259] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.212356] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.230134] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.230231] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.261993] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.262115] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.275673] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.275763] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.292161] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.292263] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.309380] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.309482] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.337116] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.337212] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.359032] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.359127] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.368871] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.368973] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.472826] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.472922] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.677142] [drm:radeon_crtc_load_lut [radeon]] 0
[  147.727951] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.728046] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.750366] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.750496] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.779703] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.779824] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.800963] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.801101] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.816229] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.816365] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.833941] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.834079] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.857479] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.857607] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.869551] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.869689] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  147.887658] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  147.887793] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  147.907649] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  147.907779] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  148.516120] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  148.516246] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  148.661856] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  148.661986] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  148.697825] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  148.697910] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  148.720612] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  148.720746] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  148.777730] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  148.777865] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  148.813984] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  148.814104] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  148.836301] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  148.836423] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  148.862595] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  148.862717] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  148.884161] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  148.884358] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  148.913563] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  148.913684] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  149.203767] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  149.203850] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  149.220960] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  149.221044] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  149.240316] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  149.240418] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  149.256858] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  149.256954] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  149.280093] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  149.280264] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  149.296490] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  149.296588] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  149.320902] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  149.321060] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  149.943538] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  149.943626] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  150.130837] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  150.130973] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  150.205063] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  150.205154] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  150.418811] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  150.418903] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  150.511415] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  150.511501] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  150.650782] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  150.650877] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  150.948030] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  150.948116] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  151.032774] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  151.032866] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  151.686033] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  151.686166] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  151.901210] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  151.903508] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  151.928579] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  151.928667] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  151.957067] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  151.957161] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  151.977204] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  151.977298] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  152.014932] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  152.015024] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  152.054883] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  152.054975] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  152.077475] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  152.077568] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  152.106478] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  152.106568] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = f611d800, new_rbo = ef5b7c00
[  152.134337] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  152.134437] [drm:radeon_crtc_page_flip_target [radeon]] flip-ioctl() cur_rbo = ef5b7c00, new_rbo = f611d800
[  152.174347] [drm:drm_mode_addfb2 [drm]] [FB:67]
[  152.174423] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[  152.174431] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [NOFB]
[  152.174517] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[  152.174563] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[  152.174606] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 3, devices 00000001, active_devices 00000001
[  153.108327] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1]
[  153.110002] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP1 disconnected
[  153.110011] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1] disconnected
[  153.110424] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2]
[  153.116563] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP2 disconnected
[  153.116580] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2] disconnected
[  153.116850] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1]
[  153.153366] [drm:radeon_atombios_connected_scratch_regs [radeon]] CRT1 connected
[  153.153450] [drm:drm_edid_to_eld [drm]] ELD: no CEA Extension found
[  153.153496] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1] probed modes :
[  153.153514] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[  153.153530] [drm:drm_mode_debug_printmodeline [drm]] Modeline 46:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[  153.153545] [drm:drm_mode_debug_printmodeline [drm]] Modeline 50:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[  153.153560] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[  153.153575] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[  153.153589] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[  153.153604] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[  153.153618] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[  153.153632] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[  153.153647] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[  153.153661] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[  153.153675] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[  153.153690] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[  153.153704] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[  153.153718] [drm:drm_mode_debug_printmodeline [drm]] Modeline 49:"720x405" 70 26483 720 736 808 896 405 406 409 422 0x0 0x6
[  153.153732] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[  153.153747] [drm:drm_mode_debug_printmodeline [drm]] Modeline 48:"640x400" 70 23354 640 656 720 800 400 401 404 417 0x0 0x6
[  153.153761] [drm:drm_mode_debug_printmodeline [drm]] Modeline 47:"640x360" 70 20604 640 648 712 784 360 361 364 375 0x0 0x6
[  153.154080] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1]
[  153.155749] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP1 disconnected
[  153.155760] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1] disconnected
[  153.155894] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2]
[  153.157069] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP2 disconnected
[  153.157077] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2] disconnected
[  153.157134] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1]
[  153.195656] [drm:radeon_atombios_connected_scratch_regs [radeon]] CRT1 connected
[  153.195740] [drm:drm_edid_to_eld [drm]] ELD: no CEA Extension found
[  153.195787] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1] probed modes :
[  153.195804] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[  153.195819] [drm:drm_mode_debug_printmodeline [drm]] Modeline 46:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[  153.195833] [drm:drm_mode_debug_printmodeline [drm]] Modeline 50:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[  153.195847] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[  153.195862] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[  153.195876] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[  153.195890] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[  153.195904] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[  153.195918] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[  153.195933] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[  153.195947] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[  153.195961] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[  153.195975] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[  153.195989] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[  153.196003] [drm:drm_mode_debug_printmodeline [drm]] Modeline 49:"720x405" 70 26483 720 736 808 896 405 406 409 422 0x0 0x6
[  153.196017] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[  153.196031] [drm:drm_mode_debug_printmodeline [drm]] Modeline 48:"640x400" 70 23354 640 656 720 800 400 401 404 417 0x0 0x6
[  153.196045] [drm:drm_mode_debug_printmodeline [drm]] Modeline 47:"640x360" 70 20604 640 648 712 784 360 361 364 375 0x0 0x6
[  153.376692] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  153.780666] [drm:drm_mode_addfb2 [drm]] [FB:45]
[  153.780695] [drm:drm_mode_setcrtc [drm]] [CRTC:36:crtc-0]
[  153.780715] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:44:VGA-1]
[  153.780725] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[  153.780733] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [FB:45] #connectors=1 (x y) (0 0)
[  153.780743] [drm:drm_crtc_helper_set_config [drm_kms_helper]] crtc has no fb, full mode set
[  153.780751] [drm:drm_crtc_helper_set_config [drm_kms_helper]] connector dpms not on, full mode switch
[  153.780757] [drm:drm_crtc_helper_set_config [drm_kms_helper]] encoder changed, full mode switch
[  153.780763] [drm:drm_crtc_helper_set_config [drm_kms_helper]] crtc changed, full mode switch
[  153.780769] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CONNECTOR:44:VGA-1] to [CRTC:36:crtc-0]
[  153.780776] [drm:drm_crtc_helper_set_config [drm_kms_helper]] attempting to set mode from userspace
[  153.780794] [drm:drm_mode_debug_printmodeline [drm]] Modeline 68:"" 0 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x0 0x5
[  153.780840] [drm:radeon_encoder_set_active_device [radeon]] setting active device to 00000001 from 00000001 00000001 for encoder 4
[  153.780863] [drm:drm_crtc_helper_set_mode [drm_kms_helper]] [CRTC:36:crtc-0]
[  153.780922] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[  153.780963] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[  153.781053] [drm:radeon_compute_pll_avivo [radeon]] 135000 - 135000, pll dividers - fb: 21.6 ref: 2, post 8
[  153.803371] [drm:radeon_crtc_handle_flip [radeon]] radeon_crtc->flip_status = 0 != RADEON_FLIP_SUBMITTED(2)
[  153.803389] [drm:drm_crtc_helper_set_mode [drm_kms_helper]] [ENCODER:43:TV-43] set [MODE:68:]
[  153.803443] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 3, devices 00000001, active_devices 00000001
[  153.803549] [drm:radeon_crtc_load_lut [radeon]] 0
[  153.816869] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 0, devices 00000001, active_devices 00000001
[  153.820507] [drm:drm_crtc_helper_set_config [drm_kms_helper]] Setting connector DPMS state to on
[  153.820516] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 	[CONNECTOR:44:VGA-1] set DPMS on
[  153.820597] [drm:radeon_crtc_load_lut [radeon]] 0
[  153.820679] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 21 to mode 0, devices 00000001, active_devices 00000001
[  153.820727] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[  153.820771] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[  153.823700] [drm:radeon_crtc_load_lut [radeon]] 0
[  153.823767] [drm:drm_mode_setcrtc [drm]] [CRTC:36:crtc-0]
[  153.823800] [drm:drm_mode_setcrtc [drm]] [CONNECTOR:44:VGA-1]
[  153.823813] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[  153.823821] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:36:crtc-0] [FB:45] #connectors=1 (x y) (0 0)
[  153.823837] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CONNECTOR:44:VGA-1] to [CRTC:36:crtc-0]
[  153.823879] [drm:drm_mode_setcrtc [drm]] [CRTC:38:crtc-1]
[  153.823885] [drm:drm_crtc_helper_set_config [drm_kms_helper]] 
[  153.823891] [drm:drm_crtc_helper_set_config [drm_kms_helper]] [CRTC:38:crtc-1] [NOFB]
[  153.823939] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000008, active_devices 00000000
[  153.823985] [drm:radeon_atom_encoder_dpms [radeon]] encoder dpms 30 to mode 3, devices 00000080, active_devices 00000000
[  159.385548] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  167.067782] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  191.739747] fuse init (API version 7.26)
[  270.346355] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1]
[  270.347682] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP1 disconnected
[  270.347701] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:40:HDMI-A-1] disconnected
[  270.347763] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2]
[  270.349006] [drm:radeon_atombios_connected_scratch_regs [radeon]] DFP2 disconnected
[  270.349022] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:42:HDMI-A-2] disconnected
[  270.349068] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1]
[  270.382923] [drm:radeon_atombios_connected_scratch_regs [radeon]] CRT1 connected
[  270.383000] [drm:drm_edid_to_eld [drm]] ELD: no CEA Extension found
[  270.383041] [drm:drm_helper_probe_single_connector_modes [drm_kms_helper]] [CONNECTOR:44:VGA-1] probed modes :
[  270.383059] [drm:drm_mode_debug_printmodeline [drm]] Modeline 58:"1280x1024" 75 135000 1280 1296 1440 1688 1024 1025 1028 1066 0x40 0x5
[  270.383075] [drm:drm_mode_debug_printmodeline [drm]] Modeline 46:"1280x1024" 60 108000 1280 1328 1440 1688 1024 1025 1028 1066 0x40 0x5
[  270.383090] [drm:drm_mode_debug_printmodeline [drm]] Modeline 50:"1024x768" 75 78750 1024 1040 1136 1312 768 769 772 800 0x40 0x5
[  270.383105] [drm:drm_mode_debug_printmodeline [drm]] Modeline 60:"1024x768" 70 75000 1024 1048 1184 1328 768 771 777 806 0x40 0xa
[  270.383119] [drm:drm_mode_debug_printmodeline [drm]] Modeline 61:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[  270.383134] [drm:drm_mode_debug_printmodeline [drm]] Modeline 62:"832x624" 75 57284 832 864 928 1152 624 625 628 667 0x40 0xa
[  270.383148] [drm:drm_mode_debug_printmodeline [drm]] Modeline 63:"800x600" 75 49500 800 816 896 1056 600 601 604 625 0x40 0x5
[  270.383162] [drm:drm_mode_debug_printmodeline [drm]] Modeline 64:"800x600" 72 50000 800 856 976 1040 600 637 643 666 0x40 0x5
[  270.383177] [drm:drm_mode_debug_printmodeline [drm]] Modeline 51:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[  270.383191] [drm:drm_mode_debug_printmodeline [drm]] Modeline 52:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[  270.383205] [drm:drm_mode_debug_printmodeline [drm]] Modeline 53:"640x480" 75 31500 640 656 720 840 480 481 484 500 0x40 0xa
[  270.383219] [drm:drm_mode_debug_printmodeline [drm]] Modeline 54:"640x480" 73 31500 640 664 704 832 480 489 492 520 0x40 0xa
[  270.383233] [drm:drm_mode_debug_printmodeline [drm]] Modeline 55:"640x480" 67 30240 640 704 768 864 480 483 486 525 0x40 0xa
[  270.383247] [drm:drm_mode_debug_printmodeline [drm]] Modeline 56:"640x480" 60 25175 640 656 752 800 480 490 492 525 0x40 0xa
[  270.383261] [drm:drm_mode_debug_printmodeline [drm]] Modeline 49:"720x405" 70 26483 720 736 808 896 405 406 409 422 0x0 0x6
[  270.383275] [drm:drm_mode_debug_printmodeline [drm]] Modeline 57:"720x400" 70 28320 720 738 846 900 400 412 414 449 0x40 0x6
[  270.383289] [drm:drm_mode_debug_printmodeline [drm]] Modeline 48:"640x400" 70 23354 640 656 720 800 400 401 404 417 0x0 0x6
[  270.383304] [drm:drm_mode_debug_printmodeline [drm]] Modeline 47:"640x360" 70 20604 640 648 712 784 360 361 364 375 0x0 0x6
[  271.086211] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!
[  344.839998] systemd[1]: apt-daily.timer: Adding 5h 17min 39.155822s random time.
[  352.439117] systemd[1]: apt-daily.timer: Adding 9h 14min 12.426376s random time.
[  354.933612] Process accounting resumed
[  365.871168] systemd[1]: apt-daily.timer: Adding 1h 44min 19.131539s random time.
[  378.221800] systemd[1]: apt-daily.timer: Adding 4h 43min 14.428441s random time.
[  384.593866] systemd[1]: apt-daily.timer: Adding 11h 34min 39.906259s random time.
[  389.098217] systemd[1]: apt-daily.timer: Adding 7h 18min 12.984745s random time.
[  548.313697] systemd[1]: apt-daily.timer: Adding 17min 29.367380s random time.
[  550.730397] systemd[1]: apt-daily.timer: Adding 10h 52min 19.942131s random time.
[  563.136291] systemd[1]: apt-daily.timer: Adding 2h 34min 7.198873s random time.
[  596.222542] systemd[1]: apt-daily.timer: Adding 1h 49.589687s random time.
[  706.774878] systemd[1]: apt-daily.timer: Adding 11h 12min 11.695391s random time.
[  707.213304] systemd[1]: apt-daily.timer: Adding 9h 25min 10.733612s random time.
[  795.666782] systemd[1]: apt-daily.timer: Adding 2h 36min 4.716432s random time.
[  812.378677] systemd[1]: apt-daily.timer: Adding 5h 48min 27.081280s random time.
[ 1298.074449] [drm:radeon_info_ioctl [radeon]] BACKEND_ENABLED_MASK is si+ only!

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

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

* Re: azx_probe() called twice
  2018-04-25 12:29   ` Paul Menzel
@ 2018-04-25 12:34     ` Takashi Iwai
  2018-04-25 12:38       ` Probe HD-audio devices in parallel (was: azx_probe() called twice) Paul Menzel
  0 siblings, 1 reply; 6+ messages in thread
From: Takashi Iwai @ 2018-04-25 12:34 UTC (permalink / raw)
  To: Paul Menzel; +Cc: alsa-devel, linux-kernel

On Wed, 25 Apr 2018 14:29:31 +0200,
Paul Menzel wrote:
> 
> Dear Takashi,
> 
> 
> On 04/25/18 13:58, Takashi Iwai wrote:
> > On Wed, 25 Apr 2018 13:48:27 +0200, Paul Menzel wrote:
> 
> >> With the attached debug patch, `azx_probe()` seems to have been called
> >> twice on the ASRock E350M1. Is that expected? It also differs, that
> >> it’s only called once during some boots, and twice during others.
> >
> > How many HD-audio devices does it have?
> 
> I’d say one (ALC892), but how do I verify that?

I meant HD-audio controllers.

> Please find lspci and
> Linux logs attached from an older boot with Linux 4.11.
....
> 00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio
....
> 00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA) (rev 40)

So you have two HD-audio controllers (one for HDMI/DP and another for
Realtek codec).  It's expected behavior that azx_probe() gets called
twice.


Takashi

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

* Probe HD-audio devices in parallel (was: azx_probe() called twice)
  2018-04-25 12:34     ` Takashi Iwai
@ 2018-04-25 12:38       ` Paul Menzel
  2018-04-25 13:42         ` Takashi Iwai
  0 siblings, 1 reply; 6+ messages in thread
From: Paul Menzel @ 2018-04-25 12:38 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel, linux-kernel

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

Dear Takashi,


On 04/25/18 14:34, Takashi Iwai wrote:
> On Wed, 25 Apr 2018 14:29:31 +0200, Paul Menzel wrote:

>> On 04/25/18 13:58, Takashi Iwai wrote:
>>> On Wed, 25 Apr 2018 13:48:27 +0200, Paul Menzel wrote:
>>
>>>> With the attached debug patch, `azx_probe()` seems to have been called
>>>> twice on the ASRock E350M1. Is that expected? It also differs, that
>>>> it’s only called once during some boots, and twice during others.
>>>
>>> How many HD-audio devices does it have?
>>
>> I’d say one (ALC892), but how do I verify that?
> 
> I meant HD-audio controllers.
> 
>> Please find lspci and Linux logs attached from an older boot with Linux 4.11.
> ....
>> 00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio
> ....
>> 00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA) (rev 40)
> 
> So you have two HD-audio controllers (one for HDMI/DP and another for
> Realtek codec).  It's expected behavior that azx_probe() gets called
> twice.

True. Too many log files I looked at lately, and I got confused. Sorry 
for the noise.

Could the probe theoretically be done in parallel?


Kind regards,

Paul


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

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

* Re: Probe HD-audio devices in parallel (was: azx_probe() called twice)
  2018-04-25 12:38       ` Probe HD-audio devices in parallel (was: azx_probe() called twice) Paul Menzel
@ 2018-04-25 13:42         ` Takashi Iwai
  0 siblings, 0 replies; 6+ messages in thread
From: Takashi Iwai @ 2018-04-25 13:42 UTC (permalink / raw)
  To: Paul Menzel; +Cc: alsa-devel, linux-kernel

On Wed, 25 Apr 2018 14:38:36 +0200,
Paul Menzel wrote:
> 
> Dear Takashi,
> 
> 
> On 04/25/18 14:34, Takashi Iwai wrote:
> > On Wed, 25 Apr 2018 14:29:31 +0200, Paul Menzel wrote:
> 
> >> On 04/25/18 13:58, Takashi Iwai wrote:
> >>> On Wed, 25 Apr 2018 13:48:27 +0200, Paul Menzel wrote:
> >>
> >>>> With the attached debug patch, `azx_probe()` seems to have been called
> >>>> twice on the ASRock E350M1. Is that expected? It also differs, that
> >>>> it’s only called once during some boots, and twice during others.
> >>>
> >>> How many HD-audio devices does it have?
> >>
> >> I’d say one (ALC892), but how do I verify that?
> >
> > I meant HD-audio controllers.
> >
> >> Please find lspci and Linux logs attached from an older boot with Linux 4.11.
> > ....
> >> 00:01.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Wrestler HDMI Audio
> > ....
> >> 00:14.2 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] SBx00 Azalia (Intel HDA) (rev 40)
> >
> > So you have two HD-audio controllers (one for HDMI/DP and another for
> > Realtek codec).  It's expected behavior that azx_probe() gets called
> > twice.
> 
> True. Too many log files I looked at lately, and I got confused. Sorry
> for the noise.
> 
> Could the probe theoretically be done in parallel?

I guess you can pass snd_hda_intel.async_probe boot option.


Takashi

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

end of thread, other threads:[~2018-04-25 13:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-25 11:48 azx_probe() called twice Paul Menzel
2018-04-25 11:58 ` Takashi Iwai
2018-04-25 12:29   ` Paul Menzel
2018-04-25 12:34     ` Takashi Iwai
2018-04-25 12:38       ` Probe HD-audio devices in parallel (was: azx_probe() called twice) Paul Menzel
2018-04-25 13:42         ` Takashi Iwai

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