lkml.org 
[lkml]   [2018]   [Apr]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subjectazx_probe() called twice
Date
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
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
[ 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
[unhandled content-type:application/pkcs7-signature]
\
 
 \ /
  Last update: 2018-04-25 13:49    [W:0.296 / U:0.328 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site