All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com>
To: Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Cc: linux-mm@kvack.org, kvm@vger.kernel.org,
	"Kirill A. Shutemov" <kirill@shutemov.name>,
	Michal Hocko <mhocko@suse.com>
Subject: Re: KVM hang after OOM
Date: Fri, 16 Mar 2018 01:10:16 +0500	[thread overview]
Message-ID: <CABXGCsNecgRN7mn4OxZY2rqa2N4kVBw3f0s6XEvLob4uy3LOug@mail.gmail.com> (raw)
In-Reply-To: <178719aa-b669-c443-bf87-5728b71557c0@i-love.sakura.ne.jp>

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

> Can you try SysRq-i when you noticed io_schedule() deadlock? The intent of
> doing so is to test whether the reason of sleeping is that someone who is
> responsible to wake up failed to wake up or not. If someone failed to wake up,
> io_schedule() deadlock situation will continue because of uninterruptible sleep.
> If the reason is out of memory, terminating all processes should reclaim memory
> and allow someone who is responsible to wake up to wake up and io_schedule()
> deadlock situation should be solved.
>
> Also, can you try a debug patch shown below? This patch calls dump_page() in
> order to help understand state of the page in question. If someone failed to
> unlock the page, this patch should report forever. If someone failed to wake
> up, this patch should report only once (because of sleep with timeout).
>
> ----------------------------------------
> diff --git a/mm/filemap.c b/mm/filemap.c
> index 693f622..192ed67f 100644
> --- a/mm/filemap.c
> +++ b/mm/filemap.c
> @@ -36,6 +36,9 @@
>  #include <linux/cleancache.h>
>  #include <linux/shmem_fs.h>
>  #include <linux/rmap.h>
> +#include <linux/oom.h>          /* oom_lock */
> +#include <linux/sched/debug.h>  /* sched_show_task() */
> +#include <linux/sched/sysctl.h> /* sysctl_hung_task_timeout_secs */
>  #include "internal.h"
>
>  #define CREATE_TRACE_POINTS
> @@ -1076,6 +1079,7 @@ static inline int wait_on_page_bit_common(wait_queue_head_t *q,
>         struct wait_page_queue wait_page;
>         wait_queue_entry_t *wait = &wait_page.wait;
>         int ret = 0;
> +       unsigned long start = jiffies;
>
>         init_wait(wait);
>         wait->flags = lock ? WQ_FLAG_EXCLUSIVE : 0;
> @@ -1084,6 +1088,10 @@ static inline int wait_on_page_bit_common(wait_queue_head_t *q,
>         wait_page.bit_nr = bit_nr;
>
>         for (;;) {
> +               unsigned long timeout = sysctl_hung_task_timeout_secs;
> +               if (!timeout)
> +                       timeout = 60;
> +
>                 spin_lock_irq(&q->lock);
>
>                 if (likely(list_empty(&wait->entry))) {
> @@ -1095,8 +1103,17 @@ static inline int wait_on_page_bit_common(wait_queue_head_t *q,
>
>                 spin_unlock_irq(&q->lock);
>
> -               if (likely(test_bit(bit_nr, &page->flags))) {
> -                       io_schedule();
> +               if (likely(test_bit(bit_nr, &page->flags)) &&
> +                   io_schedule_timeout(timeout * HZ) == 0) {
> +                       char buf[32];
> +                       struct task_struct *t = current;
> +                       snprintf(buf, sizeof(buf), "stuck on bit %u", bit_nr);
> +                       mutex_lock(&oom_lock);
> +                       pr_err("INFO: task %s:%d blocked for %lu seconds.\n",
> +                              t->comm, t->pid, (jiffies - start) / HZ);
> +                       sched_show_task(t);
> +                       dump_page(page, buf);
> +                       mutex_unlock(&oom_lock);
>                 }
>
>                 if (lock) {
> ----------------------------------------

Yes, I reproduced KVM hang with patch above.
New dmesg is attached.
But I don't know how SysRq-i helps in real life, because after SysRq-i
system became unusable.
Why memory couldn't be reclaimed after OOM without SysRq-i?

>
> I tried to reproduce your problem using plain idle Fedora 27 guest (RAM 4GB + SWAP 4GB).
> While the system apparently hang after OOM killer, the system seemed to be just under
> swap memory thrashing situation, for heavy disk I/O had been observed from the host side.
> Thus, my case might be different from your case.
>

It's looks like you repeated my case correctly. Did you succeed to
reproduce freeze virtual guest machine?
After OOM heavy disk I/O must ended, but virtual machine in KVM wouldn't alive.
Also some command cause freeze.
For example on my machine impossible run `ps aux` because `ps aux`
command freeze imminently after start.
Also impossible open new tab in gnome-terminal.



--
Best Regards,
Mike Gavrilov.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dmesg5.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg5.txt", Size: 285266 bytes --]

[    0.000000] microcode: microcode updated early to revision 0x23, date = 2017-11-20
[    0.000000] Linux version 4.16.0-rc1-amd-vega+ (mikhail@localhost.localdomain) (gcc version 7.3.1 20180303 (Red Hat 7.3.1-5) (GCC)) #8 SMP Thu Mar 15 21:23:08 +05 2018
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.16.0-rc1-amd-vega+ root=UUID=0ee73ea4-0a6f-4d9c-bdaf-94ec954fec49 ro rhgb quiet log_buf_len=900M LANG=en_US.UTF-8
[    0.000000] Intel Spectre v2 broken microcode detected; disabling Speculation Control
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bd69efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bd69f000-0x00000000bd6a5fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bd6a6000-0x00000000be17bfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000be17c000-0x00000000be6d4fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000be6d5000-0x00000000db487fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db488000-0x00000000db8e8fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db8e9000-0x00000000db931fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db932000-0x00000000db9edfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000db9ee000-0x00000000df7fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000df7ff000-0x00000000df7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0xbd36f018-0xbd37f857] usable ==> usable
[    0.000000] e820: update [mem 0xbd36f018-0xbd37f857] usable ==> usable
[    0.000000] e820: update [mem 0xbd355018-0xbd36e457] usable ==> usable
[    0.000000] e820: update [mem 0xbd355018-0xbd36e457] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000bd355017] usable
[    0.000000] reserve setup_data: [mem 0x00000000bd355018-0x00000000bd36e457] usable
[    0.000000] reserve setup_data: [mem 0x00000000bd36e458-0x00000000bd36f017] usable
[    0.000000] reserve setup_data: [mem 0x00000000bd36f018-0x00000000bd37f857] usable
[    0.000000] reserve setup_data: [mem 0x00000000bd37f858-0x00000000bd69efff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bd69f000-0x00000000bd6a5fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bd6a6000-0x00000000be17bfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000be17c000-0x00000000be6d4fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000be6d5000-0x00000000db487fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000db488000-0x00000000db8e8fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000db8e9000-0x00000000db931fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000db932000-0x00000000db9edfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000db9ee000-0x00000000df7fefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000df7ff000-0x00000000df7fffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000081effffff] usable
[    0.000000] efi: EFI v2.31 by American Megatrends
[    0.000000] efi:  ACPI=0xdb9ba000  ACPI 2.0=0xdb9ba000  SMBIOS=0xf04c0  MPS=0xfd450 
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x81f000 max_arch_pfn = 0x400000000
[    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-CFFFF write-protect
[    0.000000]   D0000-DFFFF uncachable
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask 7800000000 write-back
[    0.000000]   1 base 0800000000 mask 7FF0000000 write-back
[    0.000000]   2 base 0810000000 mask 7FF8000000 write-back
[    0.000000]   3 base 0818000000 mask 7FFC000000 write-back
[    0.000000]   4 base 081C000000 mask 7FFE000000 write-back
[    0.000000]   5 base 081E000000 mask 7FFF000000 write-back
[    0.000000]   6 base 00E0000000 mask 7FE0000000 uncachable
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd750-0x000fd75f] mapped at [        (ptrval)]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [        (ptrval)] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x1c9ffa000, 0x1c9ffafff] PGTABLE
[    0.000000] BRK [0x1c9ffb000, 0x1c9ffbfff] PGTABLE
[    0.000000] BRK [0x1c9ffc000, 0x1c9ffcfff] PGTABLE
[    0.000000] BRK [0x1c9ffd000, 0x1c9ffdfff] PGTABLE
[    0.000000] BRK [0x1c9ffe000, 0x1c9ffefff] PGTABLE
[    0.000000] BRK [0x1c9fff000, 0x1c9ffffff] PGTABLE
[    0.000000] BRK [0x1ca000000, 0x1ca000fff] PGTABLE
[    0.000000] BRK [0x1ca001000, 0x1ca001fff] PGTABLE
[    0.000000] BRK [0x1ca002000, 0x1ca002fff] PGTABLE
[    0.000000] BRK [0x1ca003000, 0x1ca003fff] PGTABLE
[    0.000000] BRK [0x1ca004000, 0x1ca004fff] PGTABLE
[    0.000000] BRK [0x1ca005000, 0x1ca005fff] PGTABLE
[    0.000000] log_buf_len: 1073741824 bytes
[    0.000000] early log buf free: 254284(97%)
[    0.000000] Secure boot disabled
[    0.000000] RAMDISK: [mem 0x36ade000-0x3cfd8fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DB9BA000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DB9BA080 00007C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DB9C6E20 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DB9BA190 00CC8D (v02 ALASKA A M I    00000088 INTL 20091112)
[    0.000000] ACPI: FACS 0x00000000DB9EC080 000040
[    0.000000] ACPI: APIC 0x00000000DB9C6F30 000092 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DB9C6FC8 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DB9C7010 000539 (v01 PmRef  Cpu0Ist  00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000DB9C7550 000AD8 (v01 PmRef  CpuPm    00003000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000DB9C8028 0001C7 (v01 PmRef  LakeTiny 00003000 INTL 20120711)
[    0.000000] ACPI: MCFG 0x00000000DB9C81F0 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000DB9C8230 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.000000] ACPI: SSDT 0x00000000DB9C8268 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
[    0.000000] ACPI: SSDT 0x00000000DB9C85D8 0034E1 (v01 SaSsdt SaSsdt   00003000 INTL 20091112)
[    0.000000] ACPI: DMAR 0x00000000DB9CBAC0 000070 (v01 INTEL  HSW      00000001 INTL 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000081effffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x7defd4000-0x7deffefff]
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000081effffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.000000]   node   0: [mem 0x0000000000059000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bd69efff]
[    0.000000]   node   0: [mem 0x00000000bd6a6000-0x00000000be17bfff]
[    0.000000]   node   0: [mem 0x00000000be6d5000-0x00000000db487fff]
[    0.000000]   node   0: [mem 0x00000000db8e9000-0x00000000db931fff]
[    0.000000]   node   0: [mem 0x00000000df7ff000-0x00000000df7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000081effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000081effffff]
[    0.000000] On node 0 totalpages: 8363791
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 24 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13950 pages used for memmap
[    0.000000]   DMA32 zone: 892786 pages, LIFO batch:31
[    0.000000]   Normal zone: 116672 pages used for memmap
[    0.000000]   Normal zone: 7467008 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 98 pages
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, 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 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbd355000-0xbd355fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbd36e000-0xbd36efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbd36f000-0xbd36ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbd37f000-0xbd37ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbd69f000-0xbd6a5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbe17c000-0xbe6d4fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb488000-0xdb8e8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb932000-0xdb9edfff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb9ee000-0xdf7fefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdf800000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xdf800000-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: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 494 pages/cpu @        (ptrval) s1986560 r8192 d28672 u2097152
[    0.000000] pcpu-alloc: s1986560 r8192 d28672 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8233081
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.16.0-rc1-amd-vega+ root=UUID=0ee73ea4-0a6f-4d9c-bdaf-94ec954fec49 ro rhgb quiet log_buf_len=900M LANG=en_US.UTF-8
[    0.000000] Memory: 31414756K/33455164K available (12300K kernel code, 3546K rwdata, 4172K rodata, 4768K init, 16632K bss, 2040408K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 36623 entries in 144 pages
[    0.000000] Running RCU self tests
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU lockdep checking is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[    0.000000] 	RCU callback double-/use-after-free debug enabled.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 524544, nr_irqs: 488, preallocated irqs: 16
[    0.000000] 	Offload RCU callbacks from CPUs: .
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 7903 kB
[    0.000000]  per task-struct memory footprint: 2688 bytes
[    0.000000] kmemleak: Kernel memory leak detector disabled
[    0.000000] ACPI: Core revision 20180105
[    0.000000] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] DMAR: Host address width 39
[    0.000000] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
[    0.000000] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c20660462 ecap f010da
[    0.000000] DMAR: RMRR base: 0x000000df683000 end: 0x000000df691fff
[    0.000000] DMAR-IR: IOAPIC id 8 under DRHD base  0xfed90000 IOMMU 0
[    0.000000] DMAR-IR: HPET id 0 under DRHD base 0xfed90000
[    0.000000] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.000000] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.000000] x2apic enabled
[    0.000000] Switched APIC routing to cluster x2apic.
[    0.000000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.005000] tsc: Fast TSC calibration using PIT
[    0.006000] tsc: Detected 3392.256 MHz processor
[    0.006000] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x30e5bb24160, max_idle_ns: 440795274300 ns
[    0.006000] Calibrating delay loop (skipped), value calculated using timer frequency.. 6784.51 BogoMIPS (lpj=3392256)
[    0.006000] pid_max: default: 32768 minimum: 301
[    0.006000] ---[ User Space ]---
[    0.006000] 0x0000000000000000-0x0000000000008000          32K     RW                     x  pte
[    0.006000] 0x0000000000008000-0x000000000005f000         348K                               pte
[    0.006000] 0x000000000005f000-0x000000000009f000         256K     RW                     x  pte
[    0.006000] 0x000000000009f000-0x0000000000200000        1412K                               pte
[    0.006000] 0x0000000000200000-0x0000000040000000        1022M                               pmd
[    0.006000] 0x0000000040000000-0x0000000080000000           1G                               pud
[    0.006000] 0x0000000080000000-0x00000000bd600000         982M                               pmd
[    0.006000] 0x00000000bd600000-0x00000000bd6a6000         664K                               pte
[    0.006000] 0x00000000bd6a6000-0x00000000bda00000        3432K     RW                     x  pte
[    0.006000] 0x00000000bda00000-0x00000000be000000           6M     RW         PSE         x  pmd
[    0.006000] 0x00000000be000000-0x00000000be200000           2M     RW                     x  pte
[    0.006000] 0x00000000be200000-0x00000000be600000           4M     RW         PSE         x  pmd
[    0.006000] 0x00000000be600000-0x00000000be710000        1088K     RW                     x  pte
[    0.006000] 0x00000000be710000-0x00000000be800000         960K                               pte
[    0.006000] 0x00000000be800000-0x00000000cc600000         222M                               pmd
[    0.006000] 0x00000000cc600000-0x00000000cc72b000        1196K                               pte
[    0.006000] 0x00000000cc72b000-0x00000000cc76e000         268K     RW                     x  pte
[    0.006000] 0x00000000cc76e000-0x00000000cc77e000          64K                               pte
[    0.006000] 0x00000000cc77e000-0x00000000cc7b1000         204K     RW                     x  pte
[    0.006000] 0x00000000cc7b1000-0x00000000cc7be000          52K                               pte
[    0.006000] 0x00000000cc7be000-0x00000000cc81c000         376K     RW                     x  pte
[    0.006000] 0x00000000cc81c000-0x00000000cc835000         100K                               pte
[    0.006000] 0x00000000cc835000-0x00000000cc88f000         360K     RW                     x  pte
[    0.006000] 0x00000000cc88f000-0x00000000cc8a5000          88K                               pte
[    0.006000] 0x00000000cc8a5000-0x00000000cc915000         448K     RW                     x  pte
[    0.006000] 0x00000000cc915000-0x00000000cc946000         196K                               pte
[    0.006000] 0x00000000cc946000-0x00000000cc9bc000         472K     RW                     x  pte
[    0.006000] 0x00000000cc9bc000-0x00000000cc9ea000         184K                               pte
[    0.006000] 0x00000000cc9ea000-0x00000000cca04000         104K     RW                     x  pte
[    0.006000] 0x00000000cca04000-0x00000000ccaf2000         952K                               pte
[    0.006000] 0x00000000ccaf2000-0x00000000ccaf4000           8K     RW                     x  pte
[    0.006000] 0x00000000ccaf4000-0x00000000ccaf7000          12K                               pte
[    0.006000] 0x00000000ccaf7000-0x00000000ccaf8000           4K     RW                     x  pte
[    0.006000] 0x00000000ccaf8000-0x00000000ccafc000          16K                               pte
[    0.006000] 0x00000000ccafc000-0x00000000ccafd000           4K     RW                     x  pte
[    0.006000] 0x00000000ccafd000-0x00000000ccb1d000         128K                               pte
[    0.006000] 0x00000000ccb1d000-0x00000000ccb1e000           4K     RW                     x  pte
[    0.006000] 0x00000000ccb1e000-0x00000000ccc2b000        1076K                               pte
[    0.006000] 0x00000000ccc2b000-0x00000000ccc2c000           4K     RW                     x  pte
[    0.006000] 0x00000000ccc2c000-0x00000000ccc2e000           8K                               pte
[    0.006000] 0x00000000ccc2e000-0x00000000ccc57000         164K     RW                     x  pte
[    0.006000] 0x00000000ccc57000-0x00000000ccc82000         172K                               pte
[    0.006000] 0x00000000ccc82000-0x00000000ccc83000           4K     RW                     x  pte
[    0.006000] 0x00000000ccc83000-0x00000000cccb7000         208K                               pte
[    0.006000] 0x00000000cccb7000-0x00000000cccb8000           4K     RW                     x  pte
[    0.006000] 0x00000000cccb8000-0x00000000ccd14000         368K                               pte
[    0.006000] 0x00000000ccd14000-0x00000000ccd15000           4K     RW                     x  pte
[    0.006000] 0x00000000ccd15000-0x00000000ccd5b000         280K                               pte
[    0.006000] 0x00000000ccd5b000-0x00000000ccd5c000           4K     RW                     x  pte
[    0.006000] 0x00000000ccd5c000-0x00000000ccdd0000         464K                               pte
[    0.006000] 0x00000000ccdd0000-0x00000000cce77000         668K     RW                     x  pte
[    0.006000] 0x00000000cce77000-0x00000000ccebe000         284K                               pte
[    0.006000] 0x00000000ccebe000-0x00000000ccec1000          12K     RW                     x  pte
[    0.006000] 0x00000000ccec1000-0x00000000ccff9000        1248K                               pte
[    0.006000] 0x00000000ccff9000-0x00000000cd022000         164K     RW                     x  pte
[    0.006000] 0x00000000cd022000-0x00000000cd0d7000         724K                               pte
[    0.006000] 0x00000000cd0d7000-0x00000000cd1b0000         868K     RW                     x  pte
[    0.007009] 0x00000000cd1b0000-0x00000000cd23f000         572K                               pte
[    0.007014] 0x00000000cd23f000-0x00000000cd2c8000         548K     RW                     x  pte
[    0.007025] 0x00000000cd2c8000-0x00000000cd2d8000          64K                               pte
[    0.007029] 0x00000000cd2d8000-0x00000000cd30b000         204K     RW                     x  pte
[    0.007040] 0x00000000cd30b000-0x00000000cd318000          52K                               pte
[    0.007045] 0x00000000cd318000-0x00000000cd378000         384K     RW                     x  pte
[    0.007056] 0x00000000cd378000-0x00000000cd391000         100K                               pte
[    0.007060] 0x00000000cd391000-0x00000000cd3ea000         356K     RW                     x  pte
[    0.007071] 0x00000000cd3ea000-0x00000000cd400000          88K                               pte
[    0.007076] 0x00000000cd400000-0x00000000cd518000        1120K     RW                     x  pte
[    0.007087] 0x00000000cd518000-0x00000000cd546000         184K                               pte
[    0.007092] 0x00000000cd546000-0x00000000cd565000         124K     RW                     x  pte
[    0.007103] 0x00000000cd565000-0x00000000cd575000          64K                               pte
[    0.007107] 0x00000000cd575000-0x00000000cd5d8000         396K     RW                     x  pte
[    0.007118] 0x00000000cd5d8000-0x00000000cd5f4000         112K                               pte
[    0.007123] 0x00000000cd5f4000-0x00000000cd69c000         672K     RW                     x  pte
[    0.007134] 0x00000000cd69c000-0x00000000cd6ac000          64K                               pte
[    0.007139] 0x00000000cd6ac000-0x00000000cd6df000         204K     RW                     x  pte
[    0.007150] 0x00000000cd6df000-0x00000000cd6ec000          52K                               pte
[    0.007154] 0x00000000cd6ec000-0x00000000cd749000         372K     RW                     x  pte
[    0.007165] 0x00000000cd749000-0x00000000cd762000         100K                               pte
[    0.007170] 0x00000000cd762000-0x00000000cd7bc000         360K     RW                     x  pte
[    0.007181] 0x00000000cd7bc000-0x00000000cd7d2000          88K                               pte
[    0.007185] 0x00000000cd7d2000-0x00000000cd842000         448K     RW                     x  pte
[    0.007196] 0x00000000cd842000-0x00000000cd873000         196K                               pte
[    0.007201] 0x00000000cd873000-0x00000000cd8e9000         472K     RW                     x  pte
[    0.007212] 0x00000000cd8e9000-0x00000000cd8f0000          28K                               pte
[    0.007217] 0x00000000cd8f0000-0x00000000cda68000        1504K     RW                     x  pte
[    0.007228] 0x00000000cda68000-0x00000000cda6b000          12K                               pte
[    0.007233] 0x00000000cda6b000-0x00000000cdb8a000        1148K     RW                     x  pte
[    0.007244] 0x00000000cdb8a000-0x00000000cdb93000          36K                               pte
[    0.007250] 0x00000000cdb93000-0x00000000cdd9a000        2076K     RW                     x  pte
[    0.007261] 0x00000000cdd9a000-0x00000000cdd9d000          12K                               pte
[    0.007266] 0x00000000cdd9d000-0x00000000cdee0000        1292K     RW                     x  pte
[    0.007277] 0x00000000cdee0000-0x00000000cdee9000          36K                               pte
[    0.007281] 0x00000000cdee9000-0x00000000cdf52000         420K     RW                     x  pte
[    0.007292] 0x00000000cdf52000-0x00000000cdf5b000          36K                               pte
[    0.007297] 0x00000000cdf5b000-0x00000000cdfda000         508K     RW                     x  pte
[    0.007308] 0x00000000cdfda000-0x00000000cdfdd000          12K                               pte
[    0.007313] 0x00000000cdfdd000-0x00000000ce081000         656K     RW                     x  pte
[    0.007324] 0x00000000ce081000-0x00000000ce086000          20K                               pte
[    0.007328] 0x00000000ce086000-0x00000000ce1a7000        1156K     RW                     x  pte
[    0.007340] 0x00000000ce1a7000-0x00000000ce1a8000           4K                               pte
[    0.007345] 0x00000000ce1a8000-0x00000000ce359000        1732K     RW                     x  pte
[    0.007356] 0x00000000ce359000-0x00000000ce362000          36K                               pte
[    0.007360] 0x00000000ce362000-0x00000000ce3df000         500K     RW                     x  pte
[    0.007371] 0x00000000ce3df000-0x00000000ce3e2000          12K                               pte
[    0.007376] 0x00000000ce3e2000-0x00000000ce487000         660K     RW                     x  pte
[    0.007387] 0x00000000ce487000-0x00000000ce48f000          32K                               pte
[    0.007392] 0x00000000ce48f000-0x00000000ce5e4000        1364K     RW                     x  pte
[    0.007403] 0x00000000ce5e4000-0x00000000ce5ee000          40K                               pte
[    0.007408] 0x00000000ce5ee000-0x00000000ce672000         528K     RW                     x  pte
[    0.007419] 0x00000000ce672000-0x00000000ce675000          12K                               pte
[    0.007423] 0x00000000ce675000-0x00000000ce67b000          24K     RW                     x  pte
[    0.007434] 0x00000000ce67b000-0x00000000ce683000          32K                               pte
[    0.007439] 0x00000000ce683000-0x00000000ce750000         820K     RW                     x  pte
[    0.007450] 0x00000000ce750000-0x00000000ce755000          20K                               pte
[    0.007454] 0x00000000ce755000-0x00000000ce75a000          20K     RW                     x  pte
[    0.007465] 0x00000000ce75a000-0x00000000ce760000          24K                               pte
[    0.007470] 0x00000000ce760000-0x00000000ce765000          20K     RW                     x  pte
[    0.007481] 0x00000000ce765000-0x00000000ce76f000          40K                               pte
[    0.007485] 0x00000000ce76f000-0x00000000ce800000         580K     RW                     x  pte
[    0.007496] 0x00000000ce800000-0x00000000cf000000           8M     RW         PSE         x  pmd
[    0.007508] 0x00000000cf000000-0x00000000cf02d000         180K     RW                     x  pte
[    0.007519] 0x00000000cf02d000-0x00000000cf02e000           4K                               pte
[    0.007523] 0x00000000cf02e000-0x00000000cf02f000           4K     RW                     x  pte
[    0.007534] 0x00000000cf02f000-0x00000000cf031000           8K                               pte
[    0.007539] 0x00000000cf031000-0x00000000cf200000        1852K     RW                     x  pte
[    0.007551] 0x00000000cf200000-0x00000000d8800000         150M     RW         PSE         x  pmd
[    0.007562] 0x00000000d8800000-0x00000000d8872000         456K     RW                     x  pte
[    0.007573] 0x00000000d8872000-0x00000000d8875000          12K                               pte
[    0.007577] 0x00000000d8875000-0x00000000d887e000          36K     RW                     x  pte
[    0.007588] 0x00000000d887e000-0x00000000d8881000          12K                               pte
[    0.007592] 0x00000000d8881000-0x00000000d8889000          32K     RW                     x  pte
[    0.007604] 0x00000000d8889000-0x00000000d888c000          12K                               pte
[    0.007608] 0x00000000d888c000-0x00000000d8895000          36K     RW                     x  pte
[    0.007619] 0x00000000d8895000-0x00000000d8898000          12K                               pte
[    0.007624] 0x00000000d8898000-0x00000000d8a00000        1440K     RW                     x  pte
[    0.007635] 0x00000000d8a00000-0x00000000da400000          26M     RW         PSE         x  pmd
[    0.007647] 0x00000000da400000-0x00000000da503000        1036K     RW                     x  pte
[    0.007658] 0x00000000da503000-0x00000000da600000        1012K                               pte
[    0.007663] 0x00000000da600000-0x00000000db000000          10M                               pmd
[    0.007668] 0x00000000db000000-0x00000000db191000        1604K                               pte
[    0.007672] 0x00000000db191000-0x00000000db200000         444K     RW                     x  pte
[    0.007683] 0x00000000db200000-0x00000000db400000           2M     RW         PSE         x  pmd
[    0.007695] 0x00000000db400000-0x00000000db488000         544K     RW                     x  pte
[    0.007707] 0x00000000db488000-0x00000000db600000        1504K                               pte
[    0.007711] 0x00000000db600000-0x00000000db800000           2M                               pmd
[    0.007716] 0x00000000db800000-0x00000000db9ee000        1976K                               pte
[    0.007720] 0x00000000db9ee000-0x00000000dba00000          72K     RW                     x  pte
[    0.007732] 0x00000000dba00000-0x00000000df600000          60M     RW         PSE         x  pmd
[    0.007744] 0x00000000df600000-0x00000000df800000           2M     RW                     x  pte
[    0.007755] 0x00000000df800000-0x00000000f8000000         392M                               pmd
[    0.007760] 0x00000000f8000000-0x00000000fc000000          64M     RW     PCD PSE         x  pmd
[    0.007771] 0x00000000fc000000-0x00000000fec00000          44M                               pmd
[    0.007775] 0x00000000fec00000-0x00000000fec01000           4K     RW     PCD             x  pte
[    0.007787] 0x00000000fec01000-0x00000000fed00000        1020K                               pte
[    0.007791] 0x00000000fed00000-0x00000000fed04000          16K     RW     PCD             x  pte
[    0.007802] 0x00000000fed04000-0x00000000fed1c000          96K                               pte
[    0.007807] 0x00000000fed1c000-0x00000000fed20000          16K     RW     PCD             x  pte
[    0.007818] 0x00000000fed20000-0x00000000fee00000         896K                               pte
[    0.007822] 0x00000000fee00000-0x00000000fee01000           4K     RW     PCD             x  pte
[    0.007835] 0x00000000fee01000-0x00000000ff000000        2044K                               pte
[    0.007839] 0x00000000ff000000-0x0000000100000000          16M     RW     PCD PSE         x  pmd
[    0.007850] 0x0000000100000000-0x0000000780000000          26G                               pud
[    0.007856] 0x0000000780000000-0x00000007bd000000         976M                               pmd
[    0.007861] 0x00000007bd000000-0x00000007bd1b2000        1736K                               pte
[    0.007865] 0x00000007bd1b2000-0x00000007bd1b4000           8K     RW                     NX pte
[    0.007877] 0x00000007bd1b4000-0x00000007bd200000         304K                               pte
[    0.007881] 0x00000007bd200000-0x00000007c0000000          46M                               pmd
[    0.007886] 0x00000007c0000000-0x0000008000000000         481G                               pud
[    0.007898] 0x0000008000000000-0xffff800000000000   17179737600G                               pgd
[    0.007902] ---[ Kernel Space ]---
[    0.007903] 0xffff800000000000-0xffff808000000000         512G                               pgd
[    0.007908] ---[ Low Kernel Mapping ]---
[    0.007909] 0xffff808000000000-0xffff810000000000         512G                               pgd
[    0.007913] ---[ vmalloc() Area ]---
[    0.007914] 0xffff810000000000-0xffff818000000000         512G                               pgd
[    0.007918] ---[ Vmemmap ]---
[    0.007920] 0xffff818000000000-0xffff8a8000000000           9T                               pgd
[    0.007925] 0xffff8a8000000000-0xffff8ab2c0000000         203G                               pud
[    0.007930] 0xffff8ab2c0000000-0xffff8ab2c0200000           2M     RW                     NX pte
[    0.007943] 0xffff8ab2c0200000-0xffff8ab300000000        1022M     RW         PSE         NX pmd
[    0.007954] 0xffff8ab300000000-0xffff8ab340000000           1G     RW         PSE         NX pud
[    0.007967] 0xffff8ab340000000-0xffff8ab37d600000         982M     RW         PSE         NX pmd
[    0.007979] 0xffff8ab37d600000-0xffff8ab37d69f000         636K     RW                     NX pte
[    0.007990] 0xffff8ab37d69f000-0xffff8ab37d6a6000          28K                               pte
[    0.007995] 0xffff8ab37d6a6000-0xffff8ab37d800000        1384K     RW                     NX pte
[    0.008011] 0xffff8ab37d800000-0xffff8ab37e000000           8M     RW         PSE         NX pmd
[    0.008023] 0xffff8ab37e000000-0xffff8ab37e17c000        1520K     RW                     NX pte
[    0.008035] 0xffff8ab37e17c000-0xffff8ab37e200000         528K                               pte
[    0.008039] 0xffff8ab37e200000-0xffff8ab37e600000           4M                               pmd
[    0.008044] 0xffff8ab37e600000-0xffff8ab37e6d5000         852K                               pte
[    0.008049] 0xffff8ab37e6d5000-0xffff8ab37e800000        1196K     RW                     NX pte
[    0.008061] 0xffff8ab37e800000-0xffff8ab39b400000         460M     RW         PSE         NX pmd
[    0.008072] 0xffff8ab39b400000-0xffff8ab39b488000         544K     RW                     NX pte
[    0.008084] 0xffff8ab39b488000-0xffff8ab39b600000        1504K                               pte
[    0.008088] 0xffff8ab39b600000-0xffff8ab39b800000           2M                               pmd
[    0.008093] 0xffff8ab39b800000-0xffff8ab39b8e9000         932K                               pte
[    0.008097] 0xffff8ab39b8e9000-0xffff8ab39b932000         292K     RW                     NX pte
[    0.008109] 0xffff8ab39b932000-0xffff8ab39ba00000         824K                               pte
[    0.008113] 0xffff8ab39ba00000-0xffff8ab39f600000          60M                               pmd
[    0.008119] 0xffff8ab39f600000-0xffff8ab39f7ff000        2044K                               pte
[    0.008123] 0xffff8ab39f7ff000-0xffff8ab39f800000           4K     RW                     NX pte
[    0.008135] 0xffff8ab39f800000-0xffff8ab3c0000000         520M                               pmd
[    0.008139] 0xffff8ab3c0000000-0xffff8abac0000000          28G     RW         PSE         NX pud
[    0.008151] 0xffff8abac0000000-0xffff8abadf000000         496M     RW         PSE         NX pmd
[    0.008163] 0xffff8abadf000000-0xffff8abb00000000         528M                               pmd
[    0.008168] 0xffff8abb00000000-0xffff8b0000000000         276G                               pud
[    0.008173] 0xffff8b0000000000-0xffffaa8000000000       32256G                               pgd
[    0.008179] 0xffffaa8000000000-0xffffaadc40000000         369G                               pud
[    0.008183] 0xffffaadc40000000-0xffffaadc40001000           4K     RW                     NX pte
[    0.008194] 0xffffaadc40001000-0xffffaadc40002000           4K                               pte
[    0.008198] 0xffffaadc40002000-0xffffaadc40003000           4K     RW                     NX pte
[    0.008209] 0xffffaadc40003000-0xffffaadc40004000           4K                               pte
[    0.008214] 0xffffaadc40004000-0xffffaadc40006000           8K     RW                     NX pte
[    0.008225] 0xffffaadc40006000-0xffffaadc40008000           8K                               pte
[    0.008229] 0xffffaadc40008000-0xffffaadc4000a000           8K     RW                     NX pte
[    0.008240] 0xffffaadc4000a000-0xffffaadc4000b000           4K                               pte
[    0.008244] 0xffffaadc4000b000-0xffffaadc4000c000           4K     RW     PCD             NX pte
[    0.008255] 0xffffaadc4000c000-0xffffaadc4000d000           4K                               pte
[    0.008260] 0xffffaadc4000d000-0xffffaadc4000e000           4K     RW     PCD             NX pte
[    0.008271] 0xffffaadc4000e000-0xffffaadc40010000           8K                               pte
[    0.008275] 0xffffaadc40010000-0xffffaadc4001d000          52K     RW                     NX pte
[    0.008286] 0xffffaadc4001d000-0xffffaadc40020000          12K                               pte
[    0.008290] 0xffffaadc40020000-0xffffaadc40024000          16K     RW                     NX pte
[    0.008302] 0xffffaadc40024000-0xffffaadc40200000        1904K                               pte
[    0.008308] 0xffffaadc40200000-0xffffaadc80000000        1022M                               pmd
[    0.008313] 0xffffaadc80000000-0xffffab0000000000         142G                               pud
[    0.008319] 0xffffab0000000000-0xfffff20000000000          71T                               pgd
[    0.008325] 0xfffff20000000000-0xfffff26e00000000         440G                               pud
[    0.008329] 0xfffff26e00000000-0xfffff26e03800000          56M     RW         PSE         NX pmd
[    0.008340] 0xfffff26e03800000-0xfffff26e04000000           8M                               pmd
[    0.008345] 0xfffff26e04000000-0xfffff26e20800000         456M     RW         PSE         NX pmd
[    0.008357] 0xfffff26e20800000-0xfffff26e40000000         504M                               pmd
[    0.008362] 0xfffff26e40000000-0xfffff28000000000          71G                               pud
[    0.008366] 0xfffff28000000000-0xfffffe0000000000       11776G                               pgd
[    0.008371] ---[ CPU entry Area ]---
[    0.008372] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                     NX pte
[    0.008383] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                     NX pte
[    0.008394] 0xfffffe0000003000-0xfffffe0000006000          12K     ro                     NX pte
[    0.008405] 0xfffffe0000006000-0xfffffe0000007000           4K     ro                     x  pte
[    0.008416] 0xfffffe0000007000-0xfffffe000000d000          24K     RW                     NX pte
[    0.008427] 0xfffffe000000d000-0xfffffe000002d000         128K                               pte
[    0.008432] 0xfffffe000002d000-0xfffffe000002e000           4K     ro                     NX pte
[    0.008443] 0xfffffe000002e000-0xfffffe000002f000           4K     RW                     NX pte
[    0.008454] 0xfffffe000002f000-0xfffffe0000032000          12K     ro                     NX pte
[    0.008465] 0xfffffe0000032000-0xfffffe0000033000           4K     ro                     x  pte
[    0.008476] 0xfffffe0000033000-0xfffffe0000039000          24K     RW                     NX pte
[    0.008487] 0xfffffe0000039000-0xfffffe0000059000         128K                               pte
[    0.008491] 0xfffffe0000059000-0xfffffe000005a000           4K     ro                     NX pte
[    0.008502] 0xfffffe000005a000-0xfffffe000005b000           4K     RW                     NX pte
[    0.008513] 0xfffffe000005b000-0xfffffe000005e000          12K     ro                     NX pte
[    0.008524] 0xfffffe000005e000-0xfffffe000005f000           4K     ro                     x  pte
[    0.008535] 0xfffffe000005f000-0xfffffe0000065000          24K     RW                     NX pte
[    0.008547] 0xfffffe0000065000-0xfffffe0000085000         128K                               pte
[    0.008551] 0xfffffe0000085000-0xfffffe0000086000           4K     ro                     NX pte
[    0.008562] 0xfffffe0000086000-0xfffffe0000087000           4K     RW                     NX pte
[    0.008573] 0xfffffe0000087000-0xfffffe000008a000          12K     ro                     NX pte
[    0.008584] 0xfffffe000008a000-0xfffffe000008b000           4K     ro                     x  pte
[    0.008595] 0xfffffe000008b000-0xfffffe0000091000          24K     RW                     NX pte
[    0.008606] 0xfffffe0000091000-0xfffffe00000b1000         128K                               pte
[    0.008611] 0xfffffe00000b1000-0xfffffe00000b2000           4K     ro                     NX pte
[    0.008622] 0xfffffe00000b2000-0xfffffe00000b3000           4K     RW                     NX pte
[    0.008633] 0xfffffe00000b3000-0xfffffe00000b6000          12K     ro                     NX pte
[    0.008644] 0xfffffe00000b6000-0xfffffe00000b7000           4K     ro                     x  pte
[    0.008655] 0xfffffe00000b7000-0xfffffe00000bd000          24K     RW                     NX pte
[    0.008666] 0xfffffe00000bd000-0xfffffe00000dd000         128K                               pte
[    0.008670] 0xfffffe00000dd000-0xfffffe00000de000           4K     ro                     NX pte
[    0.008681] 0xfffffe00000de000-0xfffffe00000df000           4K     RW                     NX pte
[    0.008692] 0xfffffe00000df000-0xfffffe00000e2000          12K     ro                     NX pte
[    0.008703] 0xfffffe00000e2000-0xfffffe00000e3000           4K     ro                     x  pte
[    0.008714] 0xfffffe00000e3000-0xfffffe00000e9000          24K     RW                     NX pte
[    0.008726] 0xfffffe00000e9000-0xfffffe0000109000         128K                               pte
[    0.008730] 0xfffffe0000109000-0xfffffe000010a000           4K     ro                     NX pte
[    0.008741] 0xfffffe000010a000-0xfffffe000010b000           4K     RW                     NX pte
[    0.008752] 0xfffffe000010b000-0xfffffe000010e000          12K     ro                     NX pte
[    0.008763] 0xfffffe000010e000-0xfffffe000010f000           4K     ro                     x  pte
[    0.008774] 0xfffffe000010f000-0xfffffe0000115000          24K     RW                     NX pte
[    0.008785] 0xfffffe0000115000-0xfffffe0000135000         128K                               pte
[    0.008789] 0xfffffe0000135000-0xfffffe0000136000           4K     ro                     NX pte
[    0.008801] 0xfffffe0000136000-0xfffffe0000137000           4K     RW                     NX pte
[    0.008812] 0xfffffe0000137000-0xfffffe000013a000          12K     ro                     NX pte
[    0.008823] 0xfffffe000013a000-0xfffffe000013b000           4K     ro                     x  pte
[    0.008834] 0xfffffe000013b000-0xfffffe0000141000          24K     RW                     NX pte
[    0.008845] 0xfffffe0000141000-0xfffffe0000161000         128K                               pte
[    0.008850] 0xfffffe0000161000-0xfffffe0000200000         636K                               pte
[    0.008855] 0xfffffe0000200000-0xfffffe0040000000        1022M                               pmd
[    0.008861] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.008865] ---[ LDT remap ]---
[    0.008866] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.008871] ---[ ESPfix Area ]---
[    0.008872] 0xffffff0000000000-0xffffff2e00000000         184G                               pud
[    0.008877] 0xffffff2e00000000-0xffffff2e0000c000          48K                               pte
[    0.008881] 0xffffff2e0000c000-0xffffff2e0000d000           4K     ro                     NX pte
[    0.008892] 0xffffff2e0000d000-0xffffff2e0001c000          60K                               pte
[    0.008896] 0xffffff2e0001c000-0xffffff2e0001d000           4K     ro                     NX pte
[    0.008908] 0xffffff2e0001d000-0xffffff2e0002c000          60K                               pte
[    0.008912] 0xffffff2e0002c000-0xffffff2e0002d000           4K     ro                     NX pte
[    0.008923] 0xffffff2e0002d000-0xffffff2e0003c000          60K                               pte
[    0.008927] 0xffffff2e0003c000-0xffffff2e0003d000           4K     ro                     NX pte
[    0.008938] 0xffffff2e0003d000-0xffffff2e0004c000          60K                               pte
[    0.008943] 0xffffff2e0004c000-0xffffff2e0004d000           4K     ro                     NX pte
[    0.008954] 0xffffff2e0004d000-0xffffff2e0005c000          60K                               pte
[    0.008958] 0xffffff2e0005c000-0xffffff2e0005d000           4K     ro                     NX pte
[    0.008969] 0xffffff2e0005d000-0xffffff2e0006c000          60K                               pte
[    0.008973] 0xffffff2e0006c000-0xffffff2e0006d000           4K     ro                     NX pte
[    0.008984] 0xffffff2e0006d000-0xffffff2e0007c000          60K                               pte
[    0.012318] ... 131059 entries skipped ... 
[    0.012319] ---[ EFI Runtime Services ]---
[    0.012321] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.012326] 0xfffffffec0000000-0xfffffffee7a00000         634M                               pmd
[    0.012330] 0xfffffffee7a00000-0xfffffffee7a08000          32K     RW                     x  pte
[    0.012341] 0xfffffffee7a08000-0xfffffffee7a5f000         348K                               pte
[    0.012346] 0xfffffffee7a5f000-0xfffffffee7a9f000         256K     RW                     x  pte
[    0.012357] 0xfffffffee7a9f000-0xfffffffee7aa6000          28K                               pte
[    0.012363] 0xfffffffee7aa6000-0xfffffffee7e00000        3432K     RW                     x  pte
[    0.012374] 0xfffffffee7e00000-0xfffffffee8400000           6M     RW         PSE         x  pmd
[    0.012386] 0xfffffffee8400000-0xfffffffee8600000           2M     RW                     x  pte
[    0.012398] 0xfffffffee8600000-0xfffffffee8a00000           4M     RW         PSE         x  pmd
[    0.012409] 0xfffffffee8a00000-0xfffffffee8b10000        1088K     RW                     x  pte
[    0.012420] 0xfffffffee8b10000-0xfffffffee8b2b000         108K                               pte
[    0.012425] 0xfffffffee8b2b000-0xfffffffee8b6e000         268K     RW                     x  pte
[    0.012436] 0xfffffffee8b6e000-0xfffffffee8b7e000          64K                               pte
[    0.012440] 0xfffffffee8b7e000-0xfffffffee8bb1000         204K     RW                     x  pte
[    0.012451] 0xfffffffee8bb1000-0xfffffffee8bbe000          52K                               pte
[    0.012456] 0xfffffffee8bbe000-0xfffffffee8c1c000         376K     RW                     x  pte
[    0.012467] 0xfffffffee8c1c000-0xfffffffee8c35000         100K                               pte
[    0.012472] 0xfffffffee8c35000-0xfffffffee8c8f000         360K     RW                     x  pte
[    0.012483] 0xfffffffee8c8f000-0xfffffffee8ca5000          88K                               pte
[    0.012487] 0xfffffffee8ca5000-0xfffffffee8d15000         448K     RW                     x  pte
[    0.012498] 0xfffffffee8d15000-0xfffffffee8d46000         196K                               pte
[    0.012503] 0xfffffffee8d46000-0xfffffffee8dbc000         472K     RW                     x  pte
[    0.012514] 0xfffffffee8dbc000-0xfffffffee8dea000         184K                               pte
[    0.012518] 0xfffffffee8dea000-0xfffffffee8e04000         104K     RW                     x  pte
[    0.012530] 0xfffffffee8e04000-0xfffffffee8ef2000         952K                               pte
[    0.012534] 0xfffffffee8ef2000-0xfffffffee8ef4000           8K     RW                     x  pte
[    0.012545] 0xfffffffee8ef4000-0xfffffffee8ef7000          12K                               pte
[    0.012550] 0xfffffffee8ef7000-0xfffffffee8ef8000           4K     RW                     x  pte
[    0.012561] 0xfffffffee8ef8000-0xfffffffee8efc000          16K                               pte
[    0.012565] 0xfffffffee8efc000-0xfffffffee8efd000           4K     RW                     x  pte
[    0.012576] 0xfffffffee8efd000-0xfffffffee8f1d000         128K                               pte
[    0.012580] 0xfffffffee8f1d000-0xfffffffee8f1e000           4K     RW                     x  pte
[    0.012592] 0xfffffffee8f1e000-0xfffffffee902b000        1076K                               pte
[    0.012596] 0xfffffffee902b000-0xfffffffee902c000           4K     RW                     x  pte
[    0.012607] 0xfffffffee902c000-0xfffffffee902e000           8K                               pte
[    0.012612] 0xfffffffee902e000-0xfffffffee9057000         164K     RW                     x  pte
[    0.012623] 0xfffffffee9057000-0xfffffffee9082000         172K                               pte
[    0.012627] 0xfffffffee9082000-0xfffffffee9083000           4K     RW                     x  pte
[    0.012638] 0xfffffffee9083000-0xfffffffee90b7000         208K                               pte
[    0.012643] 0xfffffffee90b7000-0xfffffffee90b8000           4K     RW                     x  pte
[    0.012654] 0xfffffffee90b8000-0xfffffffee9114000         368K                               pte
[    0.012658] 0xfffffffee9114000-0xfffffffee9115000           4K     RW                     x  pte
[    0.012669] 0xfffffffee9115000-0xfffffffee915b000         280K                               pte
[    0.012674] 0xfffffffee915b000-0xfffffffee915c000           4K     RW                     x  pte
[    0.012685] 0xfffffffee915c000-0xfffffffee91d0000         464K                               pte
[    0.012690] 0xfffffffee91d0000-0xfffffffee9277000         668K     RW                     x  pte
[    0.012701] 0xfffffffee9277000-0xfffffffee92be000         284K                               pte
[    0.012705] 0xfffffffee92be000-0xfffffffee92c1000          12K     RW                     x  pte
[    0.012717] 0xfffffffee92c1000-0xfffffffee93f9000        1248K                               pte
[    0.012721] 0xfffffffee93f9000-0xfffffffee9422000         164K     RW                     x  pte
[    0.012733] 0xfffffffee9422000-0xfffffffee94d7000         724K                               pte
[    0.012737] 0xfffffffee94d7000-0xfffffffee95b0000         868K     RW                     x  pte
[    0.012749] 0xfffffffee95b0000-0xfffffffee963f000         572K                               pte
[    0.012753] 0xfffffffee963f000-0xfffffffee96c8000         548K     RW                     x  pte
[    0.012764] 0xfffffffee96c8000-0xfffffffee96d8000          64K                               pte
[    0.012769] 0xfffffffee96d8000-0xfffffffee970b000         204K     RW                     x  pte
[    0.012780] 0xfffffffee970b000-0xfffffffee9718000          52K                               pte
[    0.012784] 0xfffffffee9718000-0xfffffffee9778000         384K     RW                     x  pte
[    0.012796] 0xfffffffee9778000-0xfffffffee9791000         100K                               pte
[    0.012800] 0xfffffffee9791000-0xfffffffee97ea000         356K     RW                     x  pte
[    0.012811] 0xfffffffee97ea000-0xfffffffee9800000          88K                               pte
[    0.012816] 0xfffffffee9800000-0xfffffffee9918000        1120K     RW                     x  pte
[    0.012827] 0xfffffffee9918000-0xfffffffee9946000         184K                               pte
[    0.012832] 0xfffffffee9946000-0xfffffffee9965000         124K     RW                     x  pte
[    0.012843] 0xfffffffee9965000-0xfffffffee9975000          64K                               pte
[    0.012847] 0xfffffffee9975000-0xfffffffee99d8000         396K     RW                     x  pte
[    0.012858] 0xfffffffee99d8000-0xfffffffee99f4000         112K                               pte
[    0.012863] 0xfffffffee99f4000-0xfffffffee9a9c000         672K     RW                     x  pte
[    0.012874] 0xfffffffee9a9c000-0xfffffffee9aac000          64K                               pte
[    0.012878] 0xfffffffee9aac000-0xfffffffee9adf000         204K     RW                     x  pte
[    0.012889] 0xfffffffee9adf000-0xfffffffee9aec000          52K                               pte
[    0.012894] 0xfffffffee9aec000-0xfffffffee9b49000         372K     RW                     x  pte
[    0.012905] 0xfffffffee9b49000-0xfffffffee9b62000         100K                               pte
[    0.012910] 0xfffffffee9b62000-0xfffffffee9bbc000         360K     RW                     x  pte
[    0.012921] 0xfffffffee9bbc000-0xfffffffee9bd2000          88K                               pte
[    0.012925] 0xfffffffee9bd2000-0xfffffffee9c42000         448K     RW                     x  pte
[    0.012936] 0xfffffffee9c42000-0xfffffffee9c73000         196K                               pte
[    0.012941] 0xfffffffee9c73000-0xfffffffee9ce9000         472K     RW                     x  pte
[    0.012952] 0xfffffffee9ce9000-0xfffffffee9cf0000          28K                               pte
[    0.012957] 0xfffffffee9cf0000-0xfffffffee9e68000        1504K     RW                     x  pte
[    0.012968] 0xfffffffee9e68000-0xfffffffee9e6b000          12K                               pte
[    0.012973] 0xfffffffee9e6b000-0xfffffffee9f8a000        1148K     RW                     x  pte
[    0.012984] 0xfffffffee9f8a000-0xfffffffee9f93000          36K                               pte
[    0.012990] 0xfffffffee9f93000-0xfffffffeea19a000        2076K     RW                     x  pte
[    0.013003] 0xfffffffeea19a000-0xfffffffeea19d000          12K                               pte
[    0.013008] 0xfffffffeea19d000-0xfffffffeea2e0000        1292K     RW                     x  pte
[    0.013019] 0xfffffffeea2e0000-0xfffffffeea2e9000          36K                               pte
[    0.013024] 0xfffffffeea2e9000-0xfffffffeea352000         420K     RW                     x  pte
[    0.013035] 0xfffffffeea352000-0xfffffffeea35b000          36K                               pte
[    0.013039] 0xfffffffeea35b000-0xfffffffeea3da000         508K     RW                     x  pte
[    0.013050] 0xfffffffeea3da000-0xfffffffeea3dd000          12K                               pte
[    0.013055] 0xfffffffeea3dd000-0xfffffffeea481000         656K     RW                     x  pte
[    0.013066] 0xfffffffeea481000-0xfffffffeea486000          20K                               pte
[    0.013071] 0xfffffffeea486000-0xfffffffeea5a7000        1156K     RW                     x  pte
[    0.013082] 0xfffffffeea5a7000-0xfffffffeea5a8000           4K                               pte
[    0.013087] 0xfffffffeea5a8000-0xfffffffeea759000        1732K     RW                     x  pte
[    0.013098] 0xfffffffeea759000-0xfffffffeea762000          36K                               pte
[    0.013103] 0xfffffffeea762000-0xfffffffeea7df000         500K     RW                     x  pte
[    0.013114] 0xfffffffeea7df000-0xfffffffeea7e2000          12K                               pte
[    0.013119] 0xfffffffeea7e2000-0xfffffffeea887000         660K     RW                     x  pte
[    0.013130] 0xfffffffeea887000-0xfffffffeea88f000          32K                               pte
[    0.013135] 0xfffffffeea88f000-0xfffffffeea9e4000        1364K     RW                     x  pte
[    0.013146] 0xfffffffeea9e4000-0xfffffffeea9ee000          40K                               pte
[    0.013150] 0xfffffffeea9ee000-0xfffffffeeaa72000         528K     RW                     x  pte
[    0.013161] 0xfffffffeeaa72000-0xfffffffeeaa75000          12K                               pte
[    0.013166] 0xfffffffeeaa75000-0xfffffffeeaa7b000          24K     RW                     x  pte
[    0.013177] 0xfffffffeeaa7b000-0xfffffffeeaa83000          32K                               pte
[    0.013182] 0xfffffffeeaa83000-0xfffffffeeab50000         820K     RW                     x  pte
[    0.013193] 0xfffffffeeab50000-0xfffffffeeab55000          20K                               pte
[    0.013197] 0xfffffffeeab55000-0xfffffffeeab5a000          20K     RW                     x  pte
[    0.013208] 0xfffffffeeab5a000-0xfffffffeeab60000          24K                               pte
[    0.013212] 0xfffffffeeab60000-0xfffffffeeab65000          20K     RW                     x  pte
[    0.013223] 0xfffffffeeab65000-0xfffffffeeab6f000          40K                               pte
[    0.013228] 0xfffffffeeab6f000-0xfffffffeeac00000         580K     RW                     x  pte
[    0.013239] 0xfffffffeeac00000-0xfffffffeeb400000           8M     RW         PSE         x  pmd
[    0.013250] 0xfffffffeeb400000-0xfffffffeeb42d000         180K     RW                     x  pte
[    0.013261] 0xfffffffeeb42d000-0xfffffffeeb42e000           4K                               pte
[    0.013266] 0xfffffffeeb42e000-0xfffffffeeb42f000           4K     RW                     x  pte
[    0.013277] 0xfffffffeeb42f000-0xfffffffeeb431000           8K                               pte
[    0.013282] 0xfffffffeeb431000-0xfffffffeeb600000        1852K     RW                     x  pte
[    0.013293] 0xfffffffeeb600000-0xfffffffef4c00000         150M     RW         PSE         x  pmd
[    0.013305] 0xfffffffef4c00000-0xfffffffef4c72000         456K     RW                     x  pte
[    0.013316] 0xfffffffef4c72000-0xfffffffef4c75000          12K                               pte
[    0.013320] 0xfffffffef4c75000-0xfffffffef4c7e000          36K     RW                     x  pte
[    0.013331] 0xfffffffef4c7e000-0xfffffffef4c81000          12K                               pte
[    0.013335] 0xfffffffef4c81000-0xfffffffef4c89000          32K     RW                     x  pte
[    0.013346] 0xfffffffef4c89000-0xfffffffef4c8c000          12K                               pte
[    0.013351] 0xfffffffef4c8c000-0xfffffffef4c95000          36K     RW                     x  pte
[    0.013362] 0xfffffffef4c95000-0xfffffffef4c98000          12K                               pte
[    0.013367] 0xfffffffef4c98000-0xfffffffef4e00000        1440K     RW                     x  pte
[    0.013378] 0xfffffffef4e00000-0xfffffffef6800000          26M     RW         PSE         x  pmd
[    0.013390] 0xfffffffef6800000-0xfffffffef6903000        1036K     RW                     x  pte
[    0.013401] 0xfffffffef6903000-0xfffffffef6991000         568K                               pte
[    0.013405] 0xfffffffef6991000-0xfffffffef6a00000         444K     RW                     x  pte
[    0.013417] 0xfffffffef6a00000-0xfffffffef6c00000           2M     RW         PSE         x  pmd
[    0.013428] 0xfffffffef6c00000-0xfffffffef6c88000         544K     RW                     x  pte
[    0.013440] 0xfffffffef6c88000-0xfffffffef6dee000        1432K                               pte
[    0.013444] 0xfffffffef6dee000-0xfffffffef6e00000          72K     RW                     x  pte
[    0.013455] 0xfffffffef6e00000-0xfffffffefaa00000          60M     RW         PSE         x  pmd
[    0.013467] 0xfffffffefaa00000-0xfffffffefac00000           2M     RW                     x  pte
[    0.013479] 0xfffffffefac00000-0xfffffffefec00000          64M     RW     PCD PSE         x  pmd
[    0.013490] 0xfffffffefec00000-0xfffffffefec01000           4K     RW     PCD             x  pte
[    0.013501] 0xfffffffefec01000-0xfffffffefed00000        1020K                               pte
[    0.013506] 0xfffffffefed00000-0xfffffffefed04000          16K     RW     PCD             x  pte
[    0.013517] 0xfffffffefed04000-0xfffffffefed1c000          96K                               pte
[    0.013521] 0xfffffffefed1c000-0xfffffffefed20000          16K     RW     PCD             x  pte
[    0.013533] 0xfffffffefed20000-0xfffffffefee00000         896K                               pte
[    0.013537] 0xfffffffefee00000-0xfffffffefee01000           4K     RW     PCD             x  pte
[    0.013549] 0xfffffffefee01000-0xfffffffeff000000        2044K                               pte
[    0.013553] 0xfffffffeff000000-0xffffffff00000000          16M     RW     PCD PSE         x  pmd
[    0.013564] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.013569] ---[ High Kernel Mapping ]---
[    0.013570] 0xffffffff80000000-0xffffffff8b000000         176M                               pmd
[    0.013575] 0xffffffff8b000000-0xffffffff8e200000          50M     RW         PSE     GLB x  pmd
[    0.013587] 0xffffffff8e200000-0xffffffffc0000000         798M                               pmd
[    0.013591] ---[ Modules ]---
[    0.013594] 0xffffffffc0000000-0xffffffffff000000        1008M                               pmd
[    0.013598] ---[ End Modules ]---
[    0.013599] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.013605] 0xffffffffff200000-0xffffffffff576000        3544K                               pte
[    0.013609] ---[ Fixmap Area ]---
[    0.013611] 0xffffffffff576000-0xffffffffff5fb000         532K                               pte
[    0.013615] 0xffffffffff5fb000-0xffffffffff5fd000           8K     RW PWT PCD             NX pte
[    0.013626] 0xffffffffff5fd000-0xffffffffff600000          12K                               pte
[    0.013631] 0xffffffffff600000-0xffffffffff601000           4K USR ro                     NX pte
[    0.013643] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.013647] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.013696] Security Framework initialized
[    0.013698] Yama: becoming mindful.
[    0.013706] SELinux:  Initializing.
[    0.013745] SELinux:  Starting in permissive mode
[    0.020033] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.023215] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.023341] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.023442] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.023901] CPU: Physical Processor ID: 0
[    0.023902] CPU: Processor Core ID: 0
[    0.023909] mce: CPU supports 9 MCE banks
[    0.023921] CPU0: Thermal monitoring enabled (TM1)
[    0.023934] process: using mwait in idle threads
[    0.023937] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[    0.023938] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[    0.023940] Spectre V2 : Mitigation: Full generic retpoline
[    0.024119] Freeing SMP alternatives memory: 28K
[    0.052644] TSC deadline timer enabled
[    0.052649] smpboot: CPU0: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[    0.052853] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.052892] ... version:                3
[    0.052894] ... bit width:              48
[    0.052895] ... generic registers:      4
[    0.052896] ... value mask:             0000ffffffffffff
[    0.052897] ... max period:             00007fffffffffff
[    0.052899] ... fixed-purpose events:   3
[    0.052900] ... event mask:             000000070000000f
[    0.053000] Hierarchical SRCU implementation.
[    0.053572] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.053619] smp: Bringing up secondary CPUs ...
[    0.053914] x86: Booting SMP configuration:
[    0.053919] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.063482] smp: Brought up 1 node, 8 CPUs
[    0.063482] smpboot: Max logical packages: 1
[    0.063482] smpboot: Total of 8 processors activated (54276.09 BogoMIPS)
[    0.065164] devtmpfs: initialized
[    0.065164] x86/mm: Memory block size: 128MB
[    0.073047] PM: Registering ACPI NVS region [mem 0xbd69f000-0xbd6a5fff] (28672 bytes)
[    0.073050] PM: Registering ACPI NVS region [mem 0xdb932000-0xdb9edfff] (770048 bytes)
[    0.073256] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.073256] futex hash table entries: 2048 (order: 6, 262144 bytes)
[    0.073455] pinctrl core: initialized pinctrl subsystem
[    0.074148] RTC time: 19:00:24, date: 03/15/18
[    0.075066] NET: Registered protocol family 16
[    0.075295] audit: initializing netlink subsys (disabled)
[    0.075335] audit: type=2000 audit(1521140424.075:1): state=initialized audit_enabled=0 res=1
[    0.075335] cpuidle: using governor menu
[    0.075335] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.075335] ACPI: bus type PCI registered
[    0.075335] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.075335] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.075335] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.075335] pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
[    0.075377] PCI: Using configuration type 1 for base access
[    0.076021] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.081287] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.081287] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.081287] cryptd: max_cpu_qlen set to 1000
[    0.082134] ACPI: Added _OSI(Module Device)
[    0.082134] ACPI: Added _OSI(Processor Device)
[    0.082134] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.082134] ACPI: Added _OSI(Processor Aggregator Device)
[    0.082134] ACPI: Executed 1 blocks of module-level executable AML code
[    0.099759] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.102548] ACPI: Dynamic OEM Table Load:
[    0.102548] ACPI: SSDT 0xFFFF8ABA79085800 0003D3 (v01 PmRef  Cpu0Cst  00003001 INTL 20120711)
[    0.103634] ACPI: Dynamic OEM Table Load:
[    0.103647] ACPI: SSDT 0xFFFF8ABA79B86000 0005AA (v01 PmRef  ApIst    00003000 INTL 20120711)
[    0.104183] ACPI: Dynamic OEM Table Load:
[    0.104194] ACPI: SSDT 0xFFFF8ABA79B37E00 000119 (v01 PmRef  ApCst    00003000 INTL 20120711)
[    0.109451] ACPI: Interpreter enabled
[    0.109498] ACPI: (supports S0 S3 S4 S5)
[    0.109500] ACPI: Using IOAPIC for interrupt routing
[    0.109553] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.110652] ACPI: Enabled 7 GPEs in block 00 to 3F
[    0.142503] ACPI: Power Resource [FN00] (off)
[    0.142771] ACPI: Power Resource [FN01] (off)
[    0.143009] ACPI: Power Resource [FN02] (off)
[    0.143250] ACPI: Power Resource [FN03] (off)
[    0.143483] ACPI: Power Resource [FN04] (off)
[    0.146452] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.146458] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.147020] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
[    0.147492] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.147494] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.148843] PCI host bridge to bus 0000:00
[    0.148846] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.148849] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.148851] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.148853] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.148855] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.148857] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.148859] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.148861] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfeafffff window]
[    0.148863] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.148885] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[    0.149155] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[    0.149177] pci 0000:00:14.0: reg 0x10: [mem 0xf7f00000-0xf7f0ffff 64bit]
[    0.149245] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.149511] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[    0.149533] pci 0000:00:16.0: reg 0x10: [mem 0xf7f18000-0xf7f1800f 64bit]
[    0.149604] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.149801] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[    0.149820] pci 0000:00:1b.0: reg 0x10: [mem 0xf7f10000-0xf7f13fff 64bit]
[    0.149889] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.150099] pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
[    0.150180] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.150514] pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
[    0.150595] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.150924] pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
[    0.151006] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.151339] pci 0000:00:1c.4: [8086:8c18] type 01 class 0x060400
[    0.151421] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.151754] pci 0000:00:1f.0: [8086:8c44] type 00 class 0x060100
[    0.152055] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
[    0.152073] pci 0000:00:1f.2: reg 0x10: [io  0xf070-0xf077]
[    0.152080] pci 0000:00:1f.2: reg 0x14: [io  0xf060-0xf063]
[    0.152088] pci 0000:00:1f.2: reg 0x18: [io  0xf050-0xf057]
[    0.152095] pci 0000:00:1f.2: reg 0x1c: [io  0xf040-0xf043]
[    0.152103] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    0.152110] pci 0000:00:1f.2: reg 0x24: [mem 0xf7f16000-0xf7f167ff]
[    0.152153] pci 0000:00:1f.2: PME# supported from D3hot
[    0.152347] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[    0.152366] pci 0000:00:1f.3: reg 0x10: [mem 0xf7f15000-0xf7f150ff 64bit]
[    0.152386] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.152745] acpiphp: Slot [1] registered
[    0.152752] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.152883] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.152914] pci 0000:02:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.152943] pci 0000:02:00.0: reg 0x18: [mem 0xf7e00000-0xf7e00fff 64bit]
[    0.152961] pci 0000:02:00.0: reg 0x20: [mem 0xf0300000-0xf0303fff 64bit pref]
[    0.153071] pci 0000:02:00.0: supports D1 D2
[    0.153073] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.156027] pci 0000:00:1c.2: PCI bridge to [bus 02]
[    0.156031] pci 0000:00:1c.2:   bridge window [io  0xe000-0xefff]
[    0.156035] pci 0000:00:1c.2:   bridge window [mem 0xf7e00000-0xf7efffff]
[    0.156040] pci 0000:00:1c.2:   bridge window [mem 0xf0300000-0xf03fffff 64bit pref]
[    0.156167] pci 0000:03:00.0: [8086:244e] type 01 class 0x060401
[    0.156310] pci 0000:03:00.0: supports D1 D2
[    0.156312] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.156413] pci 0000:00:1c.3: PCI bridge to [bus 03-04]
[    0.156569] pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
[    0.156728] pci 0000:05:00.0: [1022:1470] type 01 class 0x060400
[    0.156762] pci 0000:05:00.0: reg 0x10: [mem 0xf7d00000-0xf7d03fff]
[    0.156799] pci 0000:05:00.0: enabling Extended Tags
[    0.156896] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[    0.160026] pci 0000:00:1c.4: PCI bridge to [bus 05-07]
[    0.160030] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
[    0.160034] pci 0000:00:1c.4:   bridge window [mem 0xf7c00000-0xf7dfffff]
[    0.160039] pci 0000:00:1c.4:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.160129] pci 0000:06:00.0: [1022:1471] type 01 class 0x060400
[    0.160196] pci 0000:06:00.0: enabling Extended Tags
[    0.160283] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.160431] pci 0000:05:00.0: PCI bridge to [bus 06-07]
[    0.160438] pci 0000:05:00.0:   bridge window [io  0xd000-0xdfff]
[    0.160443] pci 0000:05:00.0:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.160450] pci 0000:05:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.160531] pci 0000:07:00.0: [1002:687f] type 00 class 0x030000
[    0.160574] pci 0000:07:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.160591] pci 0000:07:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.160603] pci 0000:07:00.0: reg 0x20: [io  0xd000-0xd0ff]
[    0.160615] pci 0000:07:00.0: reg 0x24: [mem 0xf7c00000-0xf7c7ffff]
[    0.160626] pci 0000:07:00.0: reg 0x30: [mem 0xf7c80000-0xf7c9ffff pref]
[    0.160636] pci 0000:07:00.0: enabling Extended Tags
[    0.160664] pci 0000:07:00.0: BAR 0: assigned to efifb
[    0.160748] pci 0000:07:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.160877] pci 0000:07:00.1: [1002:aaf8] type 00 class 0x040300
[    0.160907] pci 0000:07:00.1: reg 0x10: [mem 0xf7ca0000-0xf7ca3fff]
[    0.160975] pci 0000:07:00.1: enabling Extended Tags
[    0.161065] pci 0000:07:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.161228] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.161236] pci 0000:06:00.0:   bridge window [io  0xd000-0xdfff]
[    0.161240] pci 0000:06:00.0:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.161248] pci 0000:06:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.163576] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.163732] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.163884] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.164040] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.164191] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.164343] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.164495] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 5 6 10 11 12 14 15)
[    0.164644] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.165749] pci 0000:07:00.0: vgaarb: setting as boot VGA device
[    0.165749] pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.165749] pci 0000:07:00.0: vgaarb: bridge control possible
[    0.165749] vgaarb: loaded
[    0.166042] SCSI subsystem initialized
[    0.166102] libata version 3.00 loaded.
[    0.166102] ACPI: bus type USB registered
[    0.166119] usbcore: registered new interface driver usbfs
[    0.166142] usbcore: registered new interface driver hub
[    0.166201] usbcore: registered new device driver usb
[    0.166291] EDAC MC: Ver: 3.0.0
[    0.166291] Registered efivars operations
[    0.169747] PCI: Using ACPI for IRQ routing
[    0.171137] PCI: pci_cache_line_size set to 64 bytes
[    0.171188] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.171195] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.171197] e820: reserve RAM buffer [mem 0xbd355018-0xbfffffff]
[    0.171200] e820: reserve RAM buffer [mem 0xbd36f018-0xbfffffff]
[    0.171202] e820: reserve RAM buffer [mem 0xbd69f000-0xbfffffff]
[    0.171204] e820: reserve RAM buffer [mem 0xbe17c000-0xbfffffff]
[    0.171206] e820: reserve RAM buffer [mem 0xdb488000-0xdbffffff]
[    0.171208] e820: reserve RAM buffer [mem 0xdb932000-0xdbffffff]
[    0.171210] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
[    0.171212] e820: reserve RAM buffer [mem 0x81f000000-0x81fffffff]
[    0.171520] NetLabel: Initializing
[    0.171522] NetLabel:  domain hash size = 128
[    0.171523] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.171553] NetLabel:  unlabeled traffic allowed by default
[    0.171609] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.171609] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.173057] clocksource: Switched to clocksource tsc-early
[    0.214388] VFS: Disk quotas dquot_6.6.0
[    0.214423] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.214606] pnp: PnP ACPI init
[    0.214798] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.214818] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.215246] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.215249] system 00:01: [io  0xffff] has been reserved
[    0.215252] system 00:01: [io  0xffff] has been reserved
[    0.215255] system 00:01: [io  0xffff] has been reserved
[    0.215257] system 00:01: [io  0x1c00-0x1cfe] has been reserved
[    0.215260] system 00:01: [io  0x1d00-0x1dfe] has been reserved
[    0.215263] system 00:01: [io  0x1e00-0x1efe] has been reserved
[    0.215265] system 00:01: [io  0x1f00-0x1ffe] has been reserved
[    0.215268] system 00:01: [io  0x1800-0x18fe] has been reserved
[    0.215270] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.215278] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.215331] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.215447] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.215454] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.215762] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.215765] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    0.215767] system 00:04: [io  0x0a20-0x0a2f] has been reserved
[    0.215775] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.216373] pnp 00:05: [dma 0 disabled]
[    0.216444] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.217228] pnp 00:06: [dma 3]
[    0.217490] pnp 00:06: Plug and Play ACPI device, IDs PNP0401 (active)
[    0.217600] system 00:07: [io  0x04d0-0x04d1] has been reserved
[    0.217607] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.218650] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.218653] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.218656] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.218659] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.218661] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.218664] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.218670] system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.218673] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.218675] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    0.218679] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.218681] system 00:08: [mem 0xf7fee000-0xf7feefff] has been reserved
[    0.218684] system 00:08: [mem 0xf7fd0000-0xf7fdffff] has been reserved
[    0.218692] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.219317] pnp: PnP ACPI: found 9 devices
[    0.227272] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.227331] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.227342] pci 0000:00:1c.2: PCI bridge to [bus 02]
[    0.227345] pci 0000:00:1c.2:   bridge window [io  0xe000-0xefff]
[    0.227349] pci 0000:00:1c.2:   bridge window [mem 0xf7e00000-0xf7efffff]
[    0.227353] pci 0000:00:1c.2:   bridge window [mem 0xf0300000-0xf03fffff 64bit pref]
[    0.227358] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.227379] pci 0000:00:1c.3: PCI bridge to [bus 03-04]
[    0.227389] pci 0000:06:00.0: PCI bridge to [bus 07]
[    0.227392] pci 0000:06:00.0:   bridge window [io  0xd000-0xdfff]
[    0.227398] pci 0000:06:00.0:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.227402] pci 0000:06:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.227410] pci 0000:05:00.0: PCI bridge to [bus 06-07]
[    0.227413] pci 0000:05:00.0:   bridge window [io  0xd000-0xdfff]
[    0.227419] pci 0000:05:00.0:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.227423] pci 0000:05:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.227431] pci 0000:00:1c.4: PCI bridge to [bus 05-07]
[    0.227433] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
[    0.227437] pci 0000:00:1c.4:   bridge window [mem 0xf7c00000-0xf7dfffff]
[    0.227441] pci 0000:00:1c.4:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.227447] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.227449] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.227451] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.227453] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.227454] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.227456] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.227458] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.227460] pci_bus 0000:00: resource 11 [mem 0xe0000000-0xfeafffff window]
[    0.227462] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.227464] pci_bus 0000:02: resource 1 [mem 0xf7e00000-0xf7efffff]
[    0.227465] pci_bus 0000:02: resource 2 [mem 0xf0300000-0xf03fffff 64bit pref]
[    0.227467] pci_bus 0000:05: resource 0 [io  0xd000-0xdfff]
[    0.227469] pci_bus 0000:05: resource 1 [mem 0xf7c00000-0xf7dfffff]
[    0.227471] pci_bus 0000:05: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.227472] pci_bus 0000:06: resource 0 [io  0xd000-0xdfff]
[    0.227474] pci_bus 0000:06: resource 1 [mem 0xf7c00000-0xf7cfffff]
[    0.227476] pci_bus 0000:06: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.227478] pci_bus 0000:07: resource 0 [io  0xd000-0xdfff]
[    0.227479] pci_bus 0000:07: resource 1 [mem 0xf7c00000-0xf7cfffff]
[    0.227481] pci_bus 0000:07: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.227771] NET: Registered protocol family 2
[    0.233205] tcp_listen_portaddr_hash hash table entries: 16384 (order: 8, 1441792 bytes)
[    0.233911] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.234687] TCP bind hash table entries: 65536 (order: 10, 5242880 bytes)
[    0.236687] TCP: Hash tables configured (established 262144 bind 65536)
[    0.237123] UDP hash table entries: 16384 (order: 9, 3145728 bytes)
[    0.238455] UDP-Lite hash table entries: 16384 (order: 9, 3145728 bytes)
[    0.239585] NET: Registered protocol family 1
[    0.240252] pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.240258] PCI: CLS 64 bytes, default 64
[    0.240417] Unpacking initramfs...
[    1.569581] Freeing initrd memory: 103404K
[    1.588800] DMA-API: preallocated 65536 debug entries
[    1.588802] DMA-API: debugging enabled by kernel config
[    1.588917] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.588921] software IO TLB [mem 0xc872b000-0xcc72b000] (64MB) mapped at [00000000a9885e8f-0000000025eff432]
[    1.590748] Scanning for low memory corruption every 60 seconds
[    1.591052] cryptomgr_test (78) used greatest stack depth: 14488 bytes left
[    1.591967] Initialise system trusted keyrings
[    1.592047] Key type blacklist registered
[    1.592116] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    1.596356] zbud: loaded
[    1.597770] SELinux:  Registering netfilter hooks
[    1.705401] cryptomgr_test (81) used greatest stack depth: 13832 bytes left
[    1.710571] modprobe (98) used greatest stack depth: 13736 bytes left
[    1.710949] cryptomgr_test (95) used greatest stack depth: 13016 bytes left
[    1.715687] NET: Registered protocol family 38
[    1.715702] Key type asymmetric registered
[    1.715710] Asymmetric key parser 'x509' registered
[    1.715734] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    1.715816] io scheduler noop registered
[    1.715818] io scheduler deadline registered
[    1.715892] io scheduler cfq registered (default)
[    1.715894] io scheduler mq-deadline registered
[    1.718077] efifb: probing for efifb
[    1.718095] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
[    1.718097] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    1.718098] efifb: scrolling: redraw
[    1.718100] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.720517] Console: switching to colour frame buffer device 128x48
[    1.722551] fb0: EFI VGA frame buffer device
[    1.722567] intel_idle: MWAIT substates: 0x42120
[    1.722569] intel_idle: v0.4.1 model 0x3C
[    1.723243] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.723503] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.723634] ACPI: Power Button [PWRB]
[    1.723715] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    1.723737] ACPI: Power Button [PWRF]
[    1.726182] thermal LNXTHERM:00: registered as thermal_zone0
[    1.726184] ACPI: Thermal Zone [TZ00] (28 C)
[    1.726892] thermal LNXTHERM:01: registered as thermal_zone1
[    1.726894] ACPI: Thermal Zone [TZ01] (30 C)
[    1.727226] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.747833] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.752942] Non-volatile memory driver v1.3
[    1.752989] Linux agpgart interface v0.103
[    1.754646] ahci 0000:00:1f.2: version 3.0
[    1.754960] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0xd impl SATA mode
[    1.754963] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst 
[    1.762804] scsi host0: ahci
[    1.763357] scsi host1: ahci
[    1.763714] scsi host2: ahci
[    1.763952] scsi host3: ahci
[    1.764163] scsi host4: ahci
[    1.764462] scsi host5: ahci
[    1.764556] ata1: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16100 irq 27
[    1.764558] ata2: DUMMY
[    1.764560] ata3: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16200 irq 27
[    1.764562] ata4: SATA max UDMA/133 abar m2048@0xf7f16000 port 0xf7f16280 irq 27
[    1.764563] ata5: DUMMY
[    1.764564] ata6: DUMMY
[    1.764847] libphy: Fixed MDIO Bus: probed
[    1.765089] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.765097] ehci-pci: EHCI PCI platform driver
[    1.765125] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.765130] ohci-pci: OHCI PCI platform driver
[    1.765147] uhci_hcd: USB Universal Host Controller Interface driver
[    1.765470] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.765695] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.766868] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    1.766873] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.767255] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.767261] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.767263] usb usb1: Product: xHCI Host Controller
[    1.767264] usb usb1: Manufacturer: Linux 4.16.0-rc1-amd-vega+ xhci-hcd
[    1.767266] usb usb1: SerialNumber: 0000:00:14.0
[    1.767661] hub 1-0:1.0: USB hub found
[    1.767723] hub 1-0:1.0: 14 ports detected
[    1.775776] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.775931] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.776076] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.776079] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.776081] usb usb2: Product: xHCI Host Controller
[    1.776083] usb usb2: Manufacturer: Linux 4.16.0-rc1-amd-vega+ xhci-hcd
[    1.776084] usb usb2: SerialNumber: 0000:00:14.0
[    1.776424] hub 2-0:1.0: USB hub found
[    1.776467] hub 2-0:1.0: 6 ports detected
[    1.778116] usbcore: registered new interface driver usbserial_generic
[    1.778148] usbserial: USB Serial support registered for generic
[    1.778189] i8042: PNP: No PS/2 controller found.
[    1.778292] mousedev: PS/2 mouse device common for all mice
[    1.778651] rtc_cmos 00:02: RTC can wake from S4
[    1.778869] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.778911] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.779038] device-mapper: uevent: version 1.0.3
[    1.779206] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.779443] intel_pstate: Intel P-state driver initializing
[    1.783272] hidraw: raw HID events driver (C) Jiri Kosina
[    1.783561] usbcore: registered new interface driver usbhid
[    1.783567] usbhid: USB HID core driver
[    1.784300] drop_monitor: Initializing network drop monitor service
[    1.785274] Initializing XFRM netlink socket
[    1.786830] NET: Registered protocol family 10
[    1.794680] Segment Routing with IPv6
[    1.794701] mip6: Mobile IPv6
[    1.794715] NET: Registered protocol family 17
[    1.794817] start plist test
[    1.796007] end plist test
[    1.796880] RAS: Correctable Errors collector initialized.
[    1.796962] microcode: sig=0x306c3, pf=0x2, revision=0x23
[    1.797153] microcode: Microcode Update Driver: v2.2.
[    1.797170] AVX2 version of gcm_enc/dec engaged.
[    1.797172] AES CTR mode by8 optimization enabled
[    1.819037] sched_clock: Marking stable (1819024121, 0)->(1820552022, -1527901)
[    1.819533] registered taskstats version 1
[    1.819561] Loading compiled-in X.509 certificates
[    1.851636] Loaded X.509 cert 'Build time autogenerated kernel key: f64819705513134ea6bd75971e58af5913a0d928'
[    1.851746] zswap: loaded using pool lzo/zbud
[    1.857789] Key type big_key registered
[    1.860522] Key type encrypted registered
[    1.861466]   Magic number: 10:86:41
[    1.861538] memory memory77: hash matches
[    1.861624] rtc_cmos 00:02: setting system clock to 2018-03-15 19:00:26 UTC (1521140426)
[    2.069270] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.069773] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.069797] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.069846] ata1.00: ATA-8: OCZ-VECTOR150, 1.2, max UDMA/133
[    2.069850] ata1.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    2.070981] ata1.00: configured for UDMA/133
[    2.072138] scsi 0:0:0:0: Direct-Access     ATA      OCZ-VECTOR150    1.2  PQ: 0 ANSI: 5
[    2.073404] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.073673] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[    2.073770] sd 0:0:0:0: [sda] Write Protect is off
[    2.073776] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.073936] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.076767] ata4.00: ATA-9: HGST HUH721212ALE604, LEGNW3D0, max UDMA/133
[    2.076773] ata4.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.078089]  sda: sda1 sda2 sda3
[    2.079824] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.086267] ata4.00: configured for UDMA/133
[    2.098039] usb 1-7: new low-speed USB device number 2 using xhci_hcd
[    2.123910] ata3.00: NCQ Send/Recv Log not supported
[    2.123912] ata3.00: ATA-9: ST4000NM0033-9ZM170, SN06, max UDMA/133
[    2.123914] ata3.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.125431] ata3.00: NCQ Send/Recv Log not supported
[    2.125434] ata3.00: configured for UDMA/133
[    2.125763] scsi 2:0:0:0: Direct-Access     ATA      ST4000NM0033-9ZM SN06 PQ: 0 ANSI: 5
[    2.126177] sd 2:0:0:0: [sdb] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
[    2.126202] sd 2:0:0:0: [sdb] Write Protect is off
[    2.126205] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.126243] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.126258] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    2.126920] scsi 3:0:0:0: Direct-Access     ATA      HGST HUH721212AL W3D0 PQ: 0 ANSI: 5
[    2.127500] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    2.127616] sd 3:0:0:0: [sdc] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[    2.127622] sd 3:0:0:0: [sdc] 4096-byte physical blocks
[    2.127693] sd 3:0:0:0: [sdc] Write Protect is off
[    2.127697] sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    2.127816] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.142964] sd 3:0:0:0: [sdc] Attached SCSI disk
[    2.143314] sd 2:0:0:0: [sdb] Attached SCSI disk
[    2.147907] Freeing unused kernel memory: 4768K
[    2.147909] Write protecting the kernel read-only data: 20480k
[    2.149032] Freeing unused kernel memory: 2024K
[    2.152102] Freeing unused kernel memory: 1972K
[    2.155317] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.155318] x86/mm: Checking user space page tables
[    2.158753] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.158756] rodata_test: all tests were successful
[    2.181771] systemd[1]: systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    2.194269] systemd[1]: Detected architecture x86-64.
[    2.194275] systemd[1]: Running in initial RAM disk.
[    2.194329] systemd[1]: Set hostname to <localhost.localdomain>.
[    2.229906] usb 1-7: New USB device found, idVendor=0925, idProduct=1234
[    2.229914] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.229917] usb 1-7: Product: UPS USB MON V1.4
[    2.229919] usb 1-7: Manufacturer: Љ
[    2.234765] hid-generic 0003:0925:1234.0001: hiddev96,hidraw0: USB HID v1.00 Device [Љ UPS USB MON V1.4] on usb-0000:00:14.0-7/input0
[    2.266078] systemd[1]: Listening on Journal Audit Socket.
[    2.266266] systemd[1]: Listening on Journal Socket (/dev/log).
[    2.266281] systemd[1]: Reached target Swap.
[    2.266331] systemd[1]: Listening on udev Kernel Socket.
[    2.266344] systemd[1]: Reached target Timers.
[    2.268319] systemd[1]: Created slice System Slice.
[    2.287720] audit: type=1130 audit(1521140426.925:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.289022] audit: type=1130 audit(1521140426.926:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.290302] audit: type=1130 audit(1521140426.928:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.308096] audit: type=1130 audit(1521140426.946:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.349023] usb 1-9: new high-speed USB device number 3 using xhci_hcd
[    2.363808] audit: type=1130 audit(1521140427.001:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.379000] audit: type=1130 audit(1521140427.016:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.387999] audit: type=1130 audit(1521140427.025:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.388076] audit: type=1131 audit(1521140427.026:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.432977] audit: type=1130 audit(1521140427.070:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    2.477444] usb 1-9: New USB device found, idVendor=2109, idProduct=2812
[    2.477448] usb 1-9: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.477451] usb 1-9: Product: USB 2.0 HUB
                     
[    2.478378] hub 1-9:1.0: USB hub found
[    2.478538] hub 1-9:1.0: 4 ports detected
[    2.593141] tsc: Refined TSC clocksource calibration: 3392.144 MHz
[    2.593165] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30e5517d4e4, max_idle_ns: 440795261668 ns
[    2.593293] clocksource: Switched to clocksource tsc
[    2.602055] usb 1-10: new high-speed USB device number 4 using xhci_hcd
[    2.728417] usb 1-10: config 1 has an invalid interface number: 9 but max is 2
[    2.728422] usb 1-10: config 1 has no interface number 2
[    2.728701] usb 1-10: New USB device found, idVendor=1019, idProduct=0010
[    2.728705] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.728708] usb 1-10: Product: FOSTEX USB AUDIO HP-A8
[    2.728711] usb 1-10: Manufacturer: FOSTEX
[    2.728714] usb 1-10: SerialNumber: 00000
[    2.730283] input: FOSTEX FOSTEX USB AUDIO HP-A8 as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.9/0003:1019:0010.0002/input/input2
[    2.731883] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.731908] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    2.733212] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0x00000000b2abe897, 94:de:80:6b:dd:24, XID 0c900800 IRQ 29
[    2.733216] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    2.782631] hid-generic 0003:1019:0010.0002: input,hidraw1: USB HID v1.00 Device [FOSTEX FOSTEX USB AUDIO HP-A8] on usb-0000:00:14.0-10/input9
[    2.799349] r8169 0000:02:00.0 enp2s0: renamed from eth0
[    2.805033] usb 1-9.1: new high-speed USB device number 5 using xhci_hcd
[    2.895482] usb 1-9.1: New USB device found, idVendor=1a40, idProduct=0201
[    2.895485] usb 1-9.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.895486] usb 1-9.1: Product: USB 2.0 Hub [MTT]
[    2.896182] hub 1-9.1:1.0: USB hub found
[    2.896217] hub 1-9.1:1.0: 7 ports detected
[    3.168041] usb 1-9.1.1: new full-speed USB device number 6 using xhci_hcd
[    3.245776] usb 1-9.1.1: New USB device found, idVendor=046d, idProduct=08d9
[    3.245779] usb 1-9.1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.312051] usb 1-9.1.2: new high-speed USB device number 7 using xhci_hcd
[    3.389065] usb 1-9.1.2: New USB device found, idVendor=12d1, idProduct=1506
[    3.389068] usb 1-9.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.389070] usb 1-9.1.2: Product: HUAWEI_MOBILE
[    3.389072] usb 1-9.1.2: Manufacturer: HUAWEI_MOBILE
[    3.500616] usb-storage 1-9.1.2:1.3: USB Mass Storage device detected
[    3.500833] scsi host6: usb-storage 1-9.1.2:1.3
[    3.501185] usb-storage 1-9.1.2:1.4: USB Mass Storage device detected
[    3.501381] scsi host7: usb-storage 1-9.1.2:1.4
[    3.501612] usbcore: registered new interface driver usb-storage
[    3.505957] usbcore: registered new interface driver uas
[    3.551052] usb 1-9.1.3: new low-speed USB device number 8 using xhci_hcd
[    3.621827] [drm] amdgpu kernel modesetting enabled.
[    3.623434] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    3.623435] fb: switching to amdgpudrmfb from EFI VGA
[    3.623516] Console: switching to colour dummy device 80x25
[    3.625659] [drm] initializing kernel modesetting (VEGA10 0x1002:0x687F 0x1002:0x0B36 0xC3).
[    3.625722] [drm] register mmio base: 0xF7C00000
[    3.625723] [drm] register mmio size: 524288
[    3.625737] [drm] probing gen 2 caps for device 1022:1471 = 700d03/e
[    3.625739] [drm] probing mlw for device 1022:1471 = 700d03
[    3.625743] [drm] add ip block number 0 <soc15_common>
[    3.625744] [drm] add ip block number 1 <gmc_v9_0>
[    3.625745] [drm] add ip block number 2 <vega10_ih>
[    3.625747] [drm] add ip block number 3 <psp>
[    3.625748] [drm] add ip block number 4 <powerplay>
[    3.625749] [drm] add ip block number 5 <dm>
[    3.625751] [drm] add ip block number 6 <gfx_v9_0>
[    3.625752] [drm] add ip block number 7 <sdma_v4_0>
[    3.625753] [drm] add ip block number 8 <uvd_v7_0>
[    3.625754] [drm] add ip block number 9 <vce_v4_0>
[    3.625910] [drm] UVD is enabled in VM mode
[    3.625912] [drm] UVD ENC is enabled in VM mode
[    3.625913] [drm] VCE enabled in VM mode
[    3.625956] resource sanity check: requesting [mem 0x000c0000-0x000dffff], which spans more than PCI Bus 0000:00 [mem 0x000d0000-0x000d3fff window]
[    3.625964] caller pci_map_rom+0x58/0xe0 mapping multiple BARs
[    3.625966] amdgpu 0000:07:00.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0xffff
[    3.625996] ATOM BIOS: 113-D0500300-102
[    3.626112] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    3.626120] amdgpu 0000:07:00.0: VRAM: 8176M 0x000000F400000000 - 0x000000F5FEFFFFFF (8176M used)
[    3.626122] amdgpu 0000:07:00.0: GTT: 512M 0x000000F600000000 - 0x000000F61FFFFFFF
[    3.626128] [drm] Detected VRAM RAM=8176M, BAR=256M
[    3.626129] [drm] RAM width 2048bits HBM
[    3.626467] [TTM] Zone  kernel: Available graphics memory: 15879820 kiB
[    3.626472] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    3.626473] [TTM] Initializing pool allocator
[    3.626487] [TTM] Initializing DMA pool allocator
[    3.626925] [drm] amdgpu: 8176M of VRAM memory ready
[    3.626930] [drm] amdgpu: 8176M of GTT memory ready.
[    3.626967] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    3.627189] [drm] PCIE GART of 512M enabled (table at 0x000000F400800000).
[    3.631143] [drm] use_doorbell being set to: [true]
[    3.631236] [drm] use_doorbell being set to: [true]
[    3.631471] [drm] Found UVD firmware Version: 1.68 Family ID: 17
[    3.631478] [drm] PSP loading UVD firmware
[    3.632528] [drm] Found VCE firmware Version: 53.40 Binary ID: 4
[    3.632538] [drm] PSP loading VCE firmware
[    3.638336] usb 1-9.1.3: New USB device found, idVendor=046d, idProduct=c326
[    3.638339] usb 1-9.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.638341] usb 1-9.1.3: Product: USB Keyboard
[    3.638342] usb 1-9.1.3: Manufacturer: Logitech
[    3.645383] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9.1/1-9.1.3/1-9.1.3:1.0/0003:046D:C326.0003/input/input3
[    3.697844] hid-generic 0003:046D:C326.0003: input,hidraw2: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:14.0-9.1.3/input0
[    3.702304] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9.1/1-9.1.3/1-9.1.3:1.1/0003:046D:C326.0004/input/input4
[    3.754467] hid-generic 0003:046D:C326.0004: input,hiddev97,hidraw3: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:14.0-9.1.3/input1
[    3.818046] usb 1-9.1.4: new high-speed USB device number 9 using xhci_hcd
[    3.894827] usb 1-9.1.4: New USB device found, idVendor=15a9, idProduct=002d
[    3.894830] usb 1-9.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=7
[    3.894831] usb 1-9.1.4: Product: Modem YOTA 4G LTE
[    3.894833] usb 1-9.1.4: Manufacturer: Yota Devices LTD
[    3.894835] usb 1-9.1.4: SerialNumber: usb_serial_num_0
[    3.959763] [drm] Display Core initialized with v3.1.38!
[    3.964031] usb 1-9.1.6: new full-speed USB device number 10 using xhci_hcd
[    3.986440] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.986441] [drm] Driver supports precise vblank timestamp query.
[    4.009915] [drm] UVD and UVD ENC initialized successfully.
[    4.043349] usb 1-9.1.6: New USB device found, idVendor=046d, idProduct=c52b
[    4.043351] usb 1-9.1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.043353] usb 1-9.1.6: Product: USB Receiver
[    4.043355] usb 1-9.1.6: Manufacturer: Logitech
[    4.054610] logitech-djreceiver 0003:046D:C52B.0007: hiddev98,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-9.1.6/input2
[    4.110605] [drm] VCE initialized successfully.
[    4.114594] [drm] fb mappable at 0xE0E00000
[    4.114612] [drm] vram apper at 0xE0000000
[    4.114614] [drm] size 8294400
[    4.114615] [drm] fb depth is 24
[    4.114616] [drm]    pitch is 7680
[    4.114994] fbcon: amdgpudrmfb (fb0) is primary device
[    4.155655] Console: switching to colour frame buffer device 240x67
[    4.159711] input: Logitech Unifying Device. Wireless PID:4026 as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9.1/1-9.1.6/1-9.1.6:1.2/0003:046D:C52B.0007/0003:046D:4026.0008/input/input5
[    4.160820] hid-generic 0003:046D:4026.0008: input,hidraw5: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4026] on usb-0000:00:14.0-9.1.6:1
[    4.177808] amdgpu 0000:07:00.0: fb0: amdgpudrmfb frame buffer device
[    4.184311] amdgpu 0000:07:00.0: ring 0(gfx) uses VM inv eng 4 on hub 0
[    4.184314] amdgpu 0000:07:00.0: ring 1(comp_1.0.0) uses VM inv eng 5 on hub 0
[    4.184316] amdgpu 0000:07:00.0: ring 2(comp_1.1.0) uses VM inv eng 6 on hub 0
[    4.184318] amdgpu 0000:07:00.0: ring 3(comp_1.2.0) uses VM inv eng 7 on hub 0
[    4.184320] amdgpu 0000:07:00.0: ring 4(comp_1.3.0) uses VM inv eng 8 on hub 0
[    4.184322] amdgpu 0000:07:00.0: ring 5(comp_1.0.1) uses VM inv eng 9 on hub 0
[    4.184324] amdgpu 0000:07:00.0: ring 6(comp_1.1.1) uses VM inv eng 10 on hub 0
[    4.184325] amdgpu 0000:07:00.0: ring 7(comp_1.2.1) uses VM inv eng 11 on hub 0
[    4.184327] amdgpu 0000:07:00.0: ring 8(comp_1.3.1) uses VM inv eng 12 on hub 0
[    4.184329] amdgpu 0000:07:00.0: ring 9(kiq_2.1.0) uses VM inv eng 13 on hub 0
[    4.184331] amdgpu 0000:07:00.0: ring 10(sdma0) uses VM inv eng 4 on hub 1
[    4.184333] amdgpu 0000:07:00.0: ring 11(sdma1) uses VM inv eng 5 on hub 1
[    4.184335] amdgpu 0000:07:00.0: ring 12(uvd) uses VM inv eng 6 on hub 1
[    4.184336] amdgpu 0000:07:00.0: ring 13(uvd_enc0) uses VM inv eng 7 on hub 1
[    4.184338] amdgpu 0000:07:00.0: ring 14(uvd_enc1) uses VM inv eng 8 on hub 1
[    4.184340] amdgpu 0000:07:00.0: ring 15(vce0) uses VM inv eng 9 on hub 1
[    4.184342] amdgpu 0000:07:00.0: ring 16(vce1) uses VM inv eng 10 on hub 1
[    4.184344] amdgpu 0000:07:00.0: ring 17(vce2) uses VM inv eng 11 on hub 1
[    4.184452] [drm] ECC is not present.
[    4.189635] [drm] Initialized amdgpu 3.25.0 20150101 for 0000:07:00.0 on minor 0
[    4.195673] setfont (463) used greatest stack depth: 12760 bytes left
[    4.224936] input: Logitech T400 as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9.1/1-9.1.6/1-9.1.6:1.2/0003:046D:C52B.0007/0003:046D:4026.0008/input/input6
[    4.225634] logitech-hidpp-device 0003:046D:4026.0008: input,hidraw5: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:00:14.0-9.1.6:1
[    4.271544] systemd-udevd (387) used greatest stack depth: 11720 bytes left
[    4.387434] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    4.522454] scsi 7:0:0:0: Direct-Access     HUAWEI   TF CARD Storage  2.31 PQ: 0 ANSI: 2
[    4.522832] scsi 6:0:0:0: CD-ROM            HUAWEI   Mass Storage     2.31 PQ: 0 ANSI: 2
[    4.524303] sd 7:0:0:0: Attached scsi generic sg3 type 0
[    4.524331] sd 7:0:0:0: Power-on or device reset occurred
[    4.526209] sr 6:0:0:0: Power-on or device reset occurred
[    4.526340] sd 7:0:0:0: [sdd] Attached SCSI removable disk
[    4.526982] sr 6:0:0:0: [sr0] scsi-1 drive
[    4.527050] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.528138] sr 6:0:0:0: Attached scsi CD-ROM sr0
[    4.528349] sr 6:0:0:0: Attached scsi generic sg4 type 5
[    4.859890] systemd-journald[244]: Received SIGTERM from PID 1 (systemd).
[    4.969048] systemd: 17 output lines suppressed due to ratelimiting
[    5.076275] SELinux: 32768 avtab hash slots, 108703 rules.
[    5.108439] SELinux: 32768 avtab hash slots, 108703 rules.
[    5.184891] SELinux:  8 users, 14 roles, 5090 types, 316 bools, 1 sens, 1024 cats
[    5.184896] SELinux:  97 classes, 108703 rules
[    5.194633] SELinux:  Permission getrlimit in class process not defined in policy.
[    5.194710] SELinux:  Class sctp_socket not defined in policy.
[    5.194711] SELinux:  Class icmp_socket not defined in policy.
[    5.194713] SELinux:  Class ax25_socket not defined in policy.
[    5.194714] SELinux:  Class ipx_socket not defined in policy.
[    5.194715] SELinux:  Class netrom_socket not defined in policy.
[    5.194716] SELinux:  Class atmpvc_socket not defined in policy.
[    5.194717] SELinux:  Class x25_socket not defined in policy.
[    5.194718] SELinux:  Class rose_socket not defined in policy.
[    5.194719] SELinux:  Class decnet_socket not defined in policy.
[    5.194721] SELinux:  Class atmsvc_socket not defined in policy.
[    5.194722] SELinux:  Class rds_socket not defined in policy.
[    5.194723] SELinux:  Class irda_socket not defined in policy.
[    5.194724] SELinux:  Class pppox_socket not defined in policy.
[    5.194725] SELinux:  Class llc_socket not defined in policy.
[    5.194726] SELinux:  Class can_socket not defined in policy.
[    5.194727] SELinux:  Class tipc_socket not defined in policy.
[    5.194728] SELinux:  Class bluetooth_socket not defined in policy.
[    5.194730] SELinux:  Class iucv_socket not defined in policy.
[    5.194731] SELinux:  Class rxrpc_socket not defined in policy.
[    5.194732] SELinux:  Class isdn_socket not defined in policy.
[    5.194733] SELinux:  Class phonet_socket not defined in policy.
[    5.194734] SELinux:  Class ieee802154_socket not defined in policy.
[    5.194735] SELinux:  Class caif_socket not defined in policy.
[    5.194736] SELinux:  Class alg_socket not defined in policy.
[    5.194737] SELinux:  Class nfc_socket not defined in policy.
[    5.194739] SELinux:  Class vsock_socket not defined in policy.
[    5.194740] SELinux:  Class kcm_socket not defined in policy.
[    5.194741] SELinux:  Class qipcrtr_socket not defined in policy.
[    5.194742] SELinux:  Class smc_socket not defined in policy.
[    5.194744] SELinux:  Class bpf not defined in policy.
[    5.194745] SELinux: the above unknown classes and permissions will be allowed
[    5.194751] SELinux:  policy capability network_peer_controls=1
[    5.194752] SELinux:  policy capability open_perms=1
[    5.194753] SELinux:  policy capability extended_socket_class=0
[    5.194754] SELinux:  policy capability always_check_network=0
[    5.194755] SELinux:  policy capability cgroup_seclabel=1
[    5.194756] SELinux:  policy capability nnp_nosuid_transition=1
[    5.194758] SELinux:  Completing initialization.
[    5.194759] SELinux:  Setting up existing superblocks.
[    5.248961] kauditd_printk_skb: 36 callbacks suppressed
[    5.248962] audit: type=1403 audit(1521140429.885:47): policy loaded auid=4294967295 ses=4294967295
[    5.252524] systemd[1]: Successfully loaded SELinux policy in 205.294ms.
[    5.289902] systemd[1]: Relabelled /dev and /run in 24.553ms.
[    5.359178] anaconda-genera (574) used greatest stack depth: 11704 bytes left
[    5.516372] audit: type=1130 audit(1521140430.153:48): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.516379] audit: type=1131 audit(1521140430.153:49): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.517489] audit: type=1130 audit(1521140430.154:50): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.517496] audit: type=1131 audit(1521140430.154:51): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=initrd-switch-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.518126] audit: type=1130 audit(1521140430.155:52): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.518132] audit: type=1131 audit(1521140430.155:53): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.530687] audit: type=1305 audit(1521140430.167:54): audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:syslogd_t:s0 res=1
[    5.536412] audit: type=1400 audit(1521140430.173:55): avc:  denied  { module_request } for  pid=597 comm="systemd-vconsol" kmod="netdev-" scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[    5.536423] audit: type=1300 audit(1521140430.173:55): arch=c000003e syscall=16 success=no exit=-25 a0=2 a1=5401 a2=7ffd73545730 a3=0 items=0 ppid=1 pid=597 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="systemd-vconsol" exe="/usr/lib/systemd/systemd-vconsole-setup" subj=system_u:system_r:init_t:s0 key=(null)
[    5.577865] EXT4-fs (sda1): re-mounted. Opts: (null)
[    5.611210] systemd-journald[595]: Received request to flush runtime journal from PID 1
[    6.075494] parport_pc 00:06: reported by Plug and Play ACPI
[    6.075667] parport0: PC-style at 0x378 (0x778), irq 5 [PCSPP,TRISTATE,EPP]
[    6.075991] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20180105/utaddress-247)
[    6.076013] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.076018] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20180105/utaddress-247)
[    6.076027] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.076030] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20180105/utaddress-247)
[    6.076039] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20180105/utaddress-247)
[    6.076047] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.076050] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20180105/utaddress-247)
[    6.076058] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20180105/utaddress-247)
[    6.076067] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.076069] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.084384] i801_smbus 0000:00:1f.3: enabling device (0001 -> 0003)
[    6.084840] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[    6.084886] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    6.089507] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.162515] Adding 62494716k swap on /dev/sda2.  Priority:-2 extents:1 across:62494716k SSFS
[    6.166362] input: PC Speaker as /devices/platform/pcspkr/input/input7
[    6.168922] media: Linux media interface: v0.10
[    6.191710] cdc_ether 1-9.1.4:1.0 usb0: register 'cdc_ether' at usb-0000:00:14.0-9.1.4, CDC Ethernet Device, 1e:49:7b:ae:82:fe
[    6.211120] usbcore: registered new interface driver cdc_ether
[    6.212797] usbcore: registered new interface driver cdc_ncm
[    6.226926] usbcore: registered new interface driver option
[    6.227119] usbserial: USB Serial support registered for GSM modem (1-port)
[    6.227259] option 1-9.1.2:1.0: GSM modem (1-port) converter detected
[    6.227924] usb 1-9.1.2: GSM modem (1-port) converter now attached to ttyUSB0
[    6.228178] option 1-9.1.2:1.1: GSM modem (1-port) converter detected
[    6.228397] usb 1-9.1.2: GSM modem (1-port) converter now attached to ttyUSB1
[    6.229967] usbcore: registered new interface driver cdc_wdm
[    6.241464] Linux video capture interface: v2.00
[    6.357564] huawei_cdc_ncm 1-9.1.2:1.2: MAC-Address: 00:1e:10:1f:00:00
[    6.357568] huawei_cdc_ncm 1-9.1.2:1.2: setting rx_max = 16384
[    6.364685] huawei_cdc_ncm 1-9.1.2:1.2: NDP will be placed at end of frame for this device.
[    6.365048] huawei_cdc_ncm 1-9.1.2:1.2: cdc-wdm0: USB WDM device
[    6.365519] huawei_cdc_ncm 1-9.1.2:1.2 wwan0: register 'huawei_cdc_ncm' at usb-0000:00:14.0-9.1.2, Huawei CDC NCM device, 00:1e:10:1f:00:00
[    6.365589] usbcore: registered new interface driver huawei_cdc_ncm
[    6.455195] cdc_ether 1-9.1.4:1.0 enp0s20u9u1u4: renamed from usb0
[    6.467607] ppdev: user-space parallel port driver
[    6.494523] sr 6:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[    6.494528] sr 6:0:0:0: [sr0] tag#0 Sense Key : Medium Error [current] 
[    6.494532] sr 6:0:0:0: [sr0] tag#0 Add. Sense: Unrecovered read error
[    6.494536] sr 6:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 8d fc 00 00 02 00
[    6.494571] print_req_error: critical medium error, dev sr0, sector 145392
[    6.495774] attempt to access beyond end of device
[    6.495778] unknown-block(11,0): rw=0, want=145400, limit=145392
[    6.495818] Buffer I/O error on dev sr0, logical block 18174, async page read
[    6.498895] random: crng init done
[    6.501557] gspca_main: v2.14.0 registered
[    6.516793] huawei_cdc_ncm 1-9.1.2:1.2 wwp0s20u9u1u2i2: renamed from wwan0
[    6.524275] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    6.524279] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    6.524281] RAPL PMU: hw unit of domain package 2^-14 Joules
[    6.524283] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    6.524285] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    6.524412] iTCO_vendor_support: vendor-support=0
[    6.525338] gspca_main: gspca_zc3xx-2.14.0 probing 046d:08d9
[    6.535162] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.535216] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    6.541800] sr 6:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[    6.541806] sr 6:0:0:0: [sr0] tag#0 Sense Key : Medium Error [current] 
[    6.541809] sr 6:0:0:0: [sr0] tag#0 Add. Sense: Unrecovered read error
[    6.541813] sr 6:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 8c 80 00 00 3c 00
[    6.541817] print_req_error: critical medium error, dev sr0, sector 143872
[    6.548016] sr 6:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[    6.548021] sr 6:0:0:0: [sr0] tag#0 Sense Key : Medium Error [current] 
[    6.548024] sr 6:0:0:0: [sr0] tag#0 Add. Sense: Unrecovered read error
[    6.548028] sr 6:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 8c 80 00 00 02 00
[    6.548031] print_req_error: critical medium error, dev sr0, sector 143872
[    6.548089] Buffer I/O error on dev sr0, logical block 17984, async page read
[    6.555087] sr 6:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[    6.555090] sr 6:0:0:0: [sr0] tag#0 Sense Key : Medium Error [current] 
[    6.555092] sr 6:0:0:0: [sr0] tag#0 Add. Sense: Unrecovered read error
[    6.555094] sr 6:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 00 8d fa 00 00 02 00
[    6.555096] print_req_error: critical medium error, dev sr0, sector 145384
[    6.555153] attempt to access beyond end of device
[    6.555156] unknown-block(11,0): rw=0, want=145392, limit=145384
[    6.555159] Buffer I/O error on dev sr0, logical block 18173, async page read
[    6.588135] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[    6.589394] snd_hda_intel 0000:07:00.1: Handle vga_switcheroo audio client
[    6.617194] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:00.0/0000:07:00.1/sound/card2/input8
[    6.618031] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:00.0/0000:07:00.1/sound/card2/input9
[    6.618659] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:00.0/0000:07:00.1/sound/card2/input10
[    6.623982] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:00.0/0000:07:00.1/sound/card2/input11
[    6.624537] input: HD-Audio Generic HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:00.0/0000:07:00.1/sound/card2/input12
[    6.624938] input: HD-Audio Generic HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:1c.4/0000:05:00.0/0000:06:00.0/0000:07:00.1/sound/card2/input13
[    6.630385] snd_hda_codec_realtek hdaudioC1D2: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[    6.630389] snd_hda_codec_realtek hdaudioC1D2:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.630393] snd_hda_codec_realtek hdaudioC1D2:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    6.630395] snd_hda_codec_realtek hdaudioC1D2:    mono: mono_out=0x0
[    6.630398] snd_hda_codec_realtek hdaudioC1D2:    dig-out=0x11/0x0
[    6.630400] snd_hda_codec_realtek hdaudioC1D2:    inputs:
[    6.630405] snd_hda_codec_realtek hdaudioC1D2:      Front Mic=0x19
[    6.630409] snd_hda_codec_realtek hdaudioC1D2:      Rear Mic=0x18
[    6.630412] snd_hda_codec_realtek hdaudioC1D2:      Line=0x1a
[    6.647405] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input14
[    6.647991] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
[    6.648417] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16
[    6.648826] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card1/input17
[    6.649259] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card1/input18
[    6.649613] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card1/input19
[    6.650047] input: HDA Intel PCH Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card1/input20
[    6.650362] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input21
[    6.896683] intel_rapl: Found RAPL domain package
[    6.896695] intel_rapl: Found RAPL domain core
[    6.896697] intel_rapl: Found RAPL domain dram
[    7.518676] input: gspca_zc3xx as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9.1/1-9.1.1/input/input22
[    7.522896] usbcore: registered new interface driver gspca_zc3xx
[    7.522902] usbcore: registered new interface driver snd-usb-audio
[    9.012869] SGI XFS with ACLs, security attributes, no debug enabled
[    9.021331] XFS (sdc): Mounting V5 Filesystem
[    9.134892] XFS (sdc): Ending clean mount
[    9.488999] RPC: Registered named UNIX socket transport module.
[    9.489021] RPC: Registered udp transport module.
[    9.489022] RPC: Registered tcp transport module.
[    9.489023] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    9.839164] ata3.00: NCQ Send/Recv Log not supported
[    9.840528] ata3.00: NCQ Send/Recv Log not supported
[    9.840532] ata3.00: configured for UDMA/133
[    9.840552] ata3: EH complete
[   10.548483] IPv6: ADDRCONF(NETDEV_UP): enp0s20u9u1u4: link is not ready
[   10.553464] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[   10.658341] r8169 0000:02:00.0 enp2s0: link down
[   10.658419] r8169 0000:02:00.0 enp2s0: link down
[   10.658524] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[   10.809574] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   12.965356] r8169 0000:02:00.0 enp2s0: link up
[   12.965377] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
[   13.451226] TCP: request_sock_TCP: Possible SYN flooding on port 8201. Sending cookies.  Check SNMP counters.
[   13.454360] TCP: request_sock_TCP: Possible SYN flooding on port 9208. Sending cookies.  Check SNMP counters.
[   21.002836] logitech-hidpp-device 0003:046D:4026.0008: HID++ 2.0 device connected.
[   33.729308] fuse init (API version 7.26)
[   42.574867] ISO 9660 Extensions: Microsoft Joliet Level 1
[   42.587453] ISO 9660 Extensions: IEEE_P1282
[   43.746876] TCP: request_sock_TCP: Possible SYN flooding on port 8205. Sending cookies.  Check SNMP counters.
[   43.747752] TCP: request_sock_TCP: Possible SYN flooding on port 9212. Sending cookies.  Check SNMP counters.
[   44.260086] pool (2993) used greatest stack depth: 11400 bytes left
[   45.739870] TCP: request_sock_TCP: Possible SYN flooding on port 7175. Sending cookies.  Check SNMP counters.
[  200.041960] firefox (5389) used greatest stack depth: 11224 bytes left
[  217.839435] device enp2s0 entered promiscuous mode
[  358.522003] sysrq: SysRq : Show Blocked State
[  358.522112]   task                        PC stack   pid father
[  358.522179] updatedb        D11848   962    937 0x00000100
[  358.522197] Call Trace:
[  358.522206]  ? __schedule+0x2e9/0xba0
[  358.522215]  ? __down+0x84/0x110
[  358.522227]  schedule+0x2f/0x90
[  358.522230]  schedule_timeout+0x23d/0x540
[  358.522236]  ? mark_held_locks+0x56/0x80
[  358.522239]  ? _raw_spin_unlock_irq+0x29/0x40
[  358.522242]  ? __down+0x84/0x110
[  358.522245]  __down+0xac/0x110
[  358.522278]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.522282]  ? down+0x3b/0x50
[  358.522302]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.522304]  down+0x3b/0x50
[  358.522323]  xfs_buf_lock+0x4a/0x270 [xfs]
[  358.522342]  _xfs_buf_find+0x266/0xad0 [xfs]
[  358.522364]  xfs_buf_get_map+0x22/0x490 [xfs]
[  358.522382]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  358.522405]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.522425]  xfs_imap_to_bp+0x67/0xe0 [xfs]
[  358.522445]  xfs_iread+0x7e/0x1f0 [xfs]
[  358.522466]  ? xfs_iget+0xfe/0x11a0 [xfs]
[  358.522484]  xfs_iget+0x500/0x11a0 [xfs]
[  358.522508]  xfs_lookup+0x14a/0x1e0 [xfs]
[  358.522529]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  358.522534]  lookup_slow+0x131/0x210
[  358.522545]  walk_component+0x1c4/0x340
[  358.522547]  ? link_path_walk+0x68/0x530
[  358.522552]  path_lookupat+0x84/0x1f0
[  358.522557]  filename_lookup+0xb6/0x190
[  358.522563]  ? getname_flags+0x4a/0x1e0
[  358.522566]  ? __check_object_size+0xa7/0x1a0
[  358.522570]  ? strncpy_from_user+0x48/0x160
[  358.522576]  ? vfs_statx+0x73/0xe0
[  358.522578]  vfs_statx+0x73/0xe0
[  358.522582]  SYSC_newlstat+0x39/0x70
[  358.522587]  ? syscall_trace_enter+0x145/0x380
[  358.522593]  do_syscall_64+0x7a/0x220
[  358.522597]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.522599] RIP: 0033:0x7f6975344fd5
[  358.522600] RSP: 002b:00007ffd894051b8 EFLAGS: 00000246 ORIG_RAX: 0000000000000006
[  358.522603] RAX: ffffffffffffffda RBX: 000055820b3d8e49 RCX: 00007f6975344fd5
[  358.522604] RDX: 00007ffd89405230 RSI: 00007ffd89405230 RDI: 000055820b3d8e49
[  358.522606] RBP: 000055820b3c1880 R08: 0000000000000068 R09: 0000000000000068
[  358.522607] R10: 0000000000000000 R11: 0000000000000246 R12: 00007ffd89405410
[  358.522608] R13: 0000000000000006 R14: 0000000000000006 R15: 0000000000000006
[  358.522781] pool            D13304  5383   2245 0x00000000
[  358.522786] Call Trace:
[  358.522791]  ? __schedule+0x2e9/0xba0
[  358.522793]  ? mark_held_locks+0x56/0x80
[  358.522797]  ? wait_for_completion+0x112/0x1a0
[  358.522800]  schedule+0x2f/0x90
[  358.522802]  schedule_timeout+0x23d/0x540
[  358.522808]  ? mark_held_locks+0x56/0x80
[  358.522810]  ? _raw_spin_unlock_irq+0x29/0x40
[  358.522813]  ? wait_for_completion+0x112/0x1a0
[  358.522816]  wait_for_completion+0x13a/0x1a0
[  358.522819]  ? wake_up_q+0x70/0x70
[  358.522838]  ? xfs_buf_read_map+0x136/0x2f0 [xfs]
[  358.522856]  xfs_buf_submit_wait+0xad/0x530 [xfs]
[  358.522873]  xfs_buf_read_map+0x136/0x2f0 [xfs]
[  358.522894]  ? xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.522915]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.522942]  xfs_imap_to_bp+0x67/0xe0 [xfs]
[  358.522971]  xfs_iread+0x7e/0x1f0 [xfs]
[  358.523000]  ? xfs_iget+0xfe/0x11a0 [xfs]
[  358.523017]  xfs_iget+0x500/0x11a0 [xfs]
[  358.523042]  xfs_lookup+0x14a/0x1e0 [xfs]
[  358.523062]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  358.523067]  lookup_slow+0x131/0x210
[  358.523079]  walk_component+0x1c4/0x340
[  358.523081]  ? link_path_walk+0x68/0x530
[  358.523083]  ? path_init+0x405/0x740
[  358.523087]  path_lookupat+0x84/0x1f0
[  358.523093]  filename_lookup+0xb6/0x190
[  358.523099]  ? getname_flags+0x4a/0x1e0
[  358.523102]  ? __check_object_size+0xa7/0x1a0
[  358.523106]  ? strncpy_from_user+0x48/0x160
[  358.523112]  ? vfs_statx+0x73/0xe0
[  358.523114]  vfs_statx+0x73/0xe0
[  358.523119]  SYSC_newlstat+0x39/0x70
[  358.523123]  ? SyS_getdents+0x107/0x160
[  358.523125]  ? fillonedir+0x110/0x110
[  358.523129]  ? trace_hardirqs_on_caller+0xed/0x180
[  358.523132]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  358.523135]  ? trace_hardirqs_on_caller+0xed/0x180
[  358.523137]  do_syscall_64+0x7a/0x220
[  358.523140]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.523143] RIP: 0033:0x7ff973d22fd5
[  358.523144] RSP: 002b:00007ff96490fa88 EFLAGS: 00000246 ORIG_RAX: 0000000000000006
[  358.523147] RAX: ffffffffffffffda RBX: 00007ff94817e020 RCX: 00007ff973d22fd5
[  358.523148] RDX: 00007ff96490faf0 RSI: 00007ff96490faf0 RDI: 00007ff9481ea600
[  358.523149] RBP: 00007ff954228b60 R08: 0000000000100006 R09: 00007ff96490fc70
[  358.523151] R10: 0000000000000020 R11: 0000000000000246 R12: 00007ff9481ea600
[  358.523152] R13: 00007ff96490fc70 R14: 00007ff9481ea600 R15: 00007ff94812cc90
[  358.523211] TaskSchedulerFo D10920  4172   4097 0x00000000
[  358.523215] Call Trace:
[  358.523219]  ? __schedule+0x2e9/0xba0
[  358.523224]  ? __down+0x84/0x110
[  358.523227]  schedule+0x2f/0x90
[  358.523229]  schedule_timeout+0x23d/0x540
[  358.523235]  ? mark_held_locks+0x56/0x80
[  358.523237]  ? _raw_spin_unlock_irq+0x29/0x40
[  358.523240]  ? __down+0x84/0x110
[  358.523242]  __down+0xac/0x110
[  358.523262]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.523264]  ? down+0x3b/0x50
[  358.523266]  down+0x3b/0x50
[  358.523282]  xfs_buf_lock+0x4a/0x270 [xfs]
[  358.523299]  _xfs_buf_find+0x266/0xad0 [xfs]
[  358.523318]  xfs_buf_get_map+0x22/0x490 [xfs]
[  358.523335]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  358.523357]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.523375]  xfs_da_read_buf+0xd3/0x120 [xfs]
[  358.523393]  xfs_da3_node_read+0x1b/0xa0 [xfs]
[  358.523409]  xfs_da3_node_lookup_int+0x70/0x3f0 [xfs]
[  358.523412]  ? rcu_read_lock_sched_held+0x6b/0x80
[  358.523430]  xfs_dir2_node_lookup+0x62/0x230 [xfs]
[  358.523447]  xfs_dir_lookup+0x1b1/0x1c0 [xfs]
[  358.523467]  xfs_lookup+0x6f/0x1e0 [xfs]
[  358.523471]  ? __d_lookup+0x104/0x260
[  358.523490]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  358.523494]  lookup_open+0x2ca/0x750
[  358.523507]  path_openat+0x6ff/0xc80
[  358.523526]  ? xfs_iunlock+0x146/0x1d0 [xfs]
[  358.523530]  do_filp_open+0x9b/0x110
[  358.523537]  ? __alloc_fd+0xe5/0x1f0
[  358.523543]  ? _raw_spin_unlock+0x24/0x30
[  358.523548]  ? do_sys_open+0x1bd/0x250
[  358.523550]  do_sys_open+0x1bd/0x250
[  358.523556]  do_syscall_64+0x7a/0x220
[  358.523559]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.523561] RIP: 0033:0x7f0521686770
[  358.523562] RSP: 002b:00007f04ff8fb430 EFLAGS: 00000293 ORIG_RAX: 0000000000000101
[  358.523565] RAX: ffffffffffffffda RBX: 00007f04ff8fb530 RCX: 00007f0521686770
[  358.523566] RDX: 0000000000000002 RSI: 0000038422335d20 RDI: ffffffffffffff9c
[  358.523568] RBP: 00007f04ff8fb4e0 R08: 0000000000000000 R09: 0000000000000000
[  358.523569] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000002
[  358.523570] R13: 00007f04ff8fb530 R14: 000003842582eb40 R15: 00007f04ff8fb531
[  358.523581] TaskSchedulerFo D11784  4321   4097 0x00000000
[  358.523586] Call Trace:
[  358.523590]  ? __schedule+0x2e9/0xba0
[  358.523594]  ? rwsem_down_read_failed+0x147/0x190
[  358.523597]  schedule+0x2f/0x90
[  358.523599]  rwsem_down_read_failed+0x118/0x190
[  358.523608]  ? call_rwsem_down_read_failed+0x14/0x30
[  358.523609]  call_rwsem_down_read_failed+0x14/0x30
[  358.523614]  down_read+0x97/0xa0
[  358.523617]  path_openat+0x6e2/0xc80
[  358.523623]  do_filp_open+0x9b/0x110
[  358.523630]  ? __alloc_fd+0xe5/0x1f0
[  358.523648]  ? _raw_spin_unlock+0x24/0x30
[  358.523653]  ? do_sys_open+0x1bd/0x250
[  358.523655]  do_sys_open+0x1bd/0x250
[  358.523660]  do_syscall_64+0x7a/0x220
[  358.523663]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.523665] RIP: 0033:0x7f0521686770
[  358.523666] RSP: 002b:00007f04e37be380 EFLAGS: 00000293 ORIG_RAX: 0000000000000101
[  358.523669] RAX: ffffffffffffffda RBX: 00007f04e37be488 RCX: 00007f0521686770
[  358.523670] RDX: 0000000000000002 RSI: 00000384225356c0 RDI: ffffffffffffff9c
[  358.523671] RBP: 00007f04e37be430 R08: 0000000000000000 R09: 0000000000000000
[  358.523673] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000002
[  358.523674] R13: 00007f04e37be488 R14: 000003842653f930 R15: 00007f04e37be489
[  358.523683] TaskSchedulerFo D12168  4368   4097 0x00000000
[  358.523687] Call Trace:
[  358.523691]  ? __schedule+0x2e9/0xba0
[  358.523695]  ? rwsem_down_write_failed+0x2cc/0x4d0
[  358.523699]  schedule+0x2f/0x90
[  358.523701]  rwsem_down_write_failed+0x2d1/0x4d0
[  358.523709]  ? call_rwsem_down_write_failed+0x13/0x20
[  358.523711]  call_rwsem_down_write_failed+0x13/0x20
[  358.523715]  down_write_nested+0x8c/0xb0
[  358.523718]  do_unlinkat+0x132/0x310
[  358.523734]  do_syscall_64+0x7a/0x220
[  358.523737]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.523738] RIP: 0033:0x7f051b078397
[  358.523739] RSP: 002b:00007f04dcd002c8 EFLAGS: 00000206 ORIG_RAX: 0000000000000057
[  358.523742] RAX: ffffffffffffffda RBX: 000003841c212de0 RCX: 00007f051b078397
[  358.523743] RDX: 00007f04dcd002d0 RSI: 00007f04dcd002d0 RDI: 000003841c212de0
[  358.523744] RBP: 00007f04dcd004f0 R08: ffffffffffffffff R09: 0000000000000000
[  358.523746] R10: 0000000000000000 R11: 0000000000000206 R12: 00007f04dcd00500
[  358.523747] R13: 00007f04dcd00630 R14: 00007f04dcd00500 R15: 0000000000000000
[  358.523755] TaskSchedulerFo D11800  4492   4097 0x00000000
[  358.523759] Call Trace:
[  358.523762]  ? __schedule+0x2e9/0xba0
[  358.523767]  ? __down+0x84/0x110
[  358.523769]  schedule+0x2f/0x90
[  358.523771]  schedule_timeout+0x23d/0x540
[  358.523776]  ? mark_held_locks+0x56/0x80
[  358.523779]  ? _raw_spin_unlock_irq+0x29/0x40
[  358.523782]  ? __down+0x84/0x110
[  358.523784]  __down+0xac/0x110
[  358.523803]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.523805]  ? down+0x3b/0x50
[  358.523820]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.523823]  down+0x3b/0x50
[  358.523838]  xfs_buf_lock+0x4a/0x270 [xfs]
[  358.523853]  _xfs_buf_find+0x266/0xad0 [xfs]
[  358.523872]  xfs_buf_get_map+0x22/0x490 [xfs]
[  358.523888]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  358.523910]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.523925]  xfs_read_agf+0xa5/0x1e0 [xfs]
[  358.523942]  xfs_alloc_read_agf+0x59/0x220 [xfs]
[  358.523957]  xfs_alloc_fix_freelist+0x225/0x370 [xfs]
[  358.523964]  ? __lock_is_held+0x59/0xa0
[  358.523977]  ? xfs_free_extent_fix_freelist+0x52/0xb0 [xfs]
[  358.523981]  ? rcu_read_lock_sched_held+0x6b/0x80
[  358.523996]  ? xfs_perag_get+0x1ea/0x250 [xfs]
[  358.524010]  xfs_free_extent_fix_freelist+0x64/0xb0 [xfs]
[  358.524030]  xfs_free_extent+0x56/0x140 [xfs]
[  358.524052]  xfs_trans_free_extent+0x50/0x1e0 [xfs]
[  358.524072]  ? xfs_trans_add_item+0x50/0x80 [xfs]
[  358.524092]  xfs_extent_free_finish_item+0x21/0x30 [xfs]
[  358.524152]  xfs_defer_finish+0x171/0x740 [xfs]
[  358.524183]  xfs_itruncate_extents+0x113/0x470 [xfs]
[  358.524194]  ? dput.part.22+0x20/0x390
[  358.524210]  xfs_inactive_truncate+0xa0/0xf0 [xfs]
[  358.524229]  ? xfs_qm_dqattach+0x16/0x50 [xfs]
[  358.524247]  xfs_inactive+0xeb/0x100 [xfs]
[  358.524265]  xfs_fs_destroy_inode+0xb6/0x2d0 [xfs]
[  358.524269]  ? dput.part.22+0x20/0x390
[  358.524271]  __dentry_kill+0xdd/0x170
[  358.524274]  dput.part.22+0x2b2/0x390
[  358.524278]  SyS_rename+0x348/0x390
[  358.524287]  do_syscall_64+0x7a/0x220
[  358.524290]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.524292] RIP: 0033:0x7f051affa5a7
[  358.524293] RSP: 002b:00007f04db1e24a8 EFLAGS: 00000202 ORIG_RAX: 0000000000000052
[  358.524296] RAX: ffffffffffffffda RBX: 00007f04db1e2500 RCX: 00007f051affa5a7
[  358.524298] RDX: 00007f04db1e2500 RSI: 000003841eacc180 RDI: 0000038418f382a0
[  358.524299] RBP: 00007f04db1e24c0 R08: 0000000000000000 R09: 000003841ea9d988
[  358.524300] R10: 0000000000000000 R11: 0000000000000202 R12: 0000000000000000
[  358.524301] R13: 0000000000001563 R14: 00000000db1e2501 R15: 00007f04db1e2560
[  358.524311] TaskSchedulerFo D12344  6238   4097 0x00000000
[  358.524360] Call Trace:
[  358.524365]  ? __schedule+0x2e9/0xba0
[  358.524369]  ? rwsem_down_read_failed+0x147/0x190
[  358.524372]  schedule+0x2f/0x90
[  358.524374]  rwsem_down_read_failed+0x118/0x190
[  358.524382]  ? call_rwsem_down_read_failed+0x14/0x30
[  358.524384]  call_rwsem_down_read_failed+0x14/0x30
[  358.524388]  down_read+0x97/0xa0
[  358.524391]  path_openat+0x6e2/0xc80
[  358.524398]  do_filp_open+0x9b/0x110
[  358.524404]  ? __alloc_fd+0xe5/0x1f0
[  358.524410]  ? _raw_spin_unlock+0x24/0x30
[  358.524414]  ? do_sys_open+0x1bd/0x250
[  358.524417]  do_sys_open+0x1bd/0x250
[  358.524422]  do_syscall_64+0x7a/0x220
[  358.524425]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.524427] RIP: 0033:0x7f0521686770
[  358.524428] RSP: 002b:00007f05010fe380 EFLAGS: 00000293 ORIG_RAX: 0000000000000101
[  358.524431] RAX: ffffffffffffffda RBX: 00007f05010fe488 RCX: 00007f0521686770
[  358.524432] RDX: 0000000000000002 RSI: 000003841ca83120 RDI: ffffffffffffff9c
[  358.524433] RBP: 00007f05010fe430 R08: 0000000000000000 R09: 0000000000000000
[  358.524434] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000002
[  358.524436] R13: 00007f05010fe488 R14: 00000384218fd000 R15: 00007f05010fe489
[  358.524445] TaskSchedulerFo D11800  6661   4097 0x00000000
[  358.524449] Call Trace:
[  358.524453]  ? __schedule+0x2e9/0xba0
[  358.524455]  ? trace_hardirqs_on_caller+0xed/0x180
[  358.524459]  ? __down+0x84/0x110
[  358.524462]  schedule+0x2f/0x90
[  358.524464]  schedule_timeout+0x23d/0x540
[  358.524466]  ? __down+0x84/0x110
[  358.524473]  ? __down+0x84/0x110
[  358.524475]  __down+0xac/0x110
[  358.524495]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.524498]  ? down+0x3b/0x50
[  358.524513]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.524515]  down+0x3b/0x50
[  358.524540]  xfs_buf_lock+0x4a/0x270 [xfs]
[  358.524555]  _xfs_buf_find+0x266/0xad0 [xfs]
[  358.524574]  xfs_buf_get_map+0x22/0x490 [xfs]
[  358.524590]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  358.524612]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.524628]  xfs_btree_read_buf_block.constprop.36+0x6e/0xc0 [xfs]
[  358.524661]  xfs_btree_lookup_get_block+0x85/0x180 [xfs]
[  358.524696]  xfs_btree_lookup+0xd4/0x410 [xfs]
[  358.524717]  ? kmem_zone_alloc+0x61/0xe0 [xfs]
[  358.524733]  xfs_free_ag_extent+0xa3/0x970 [xfs]
[  358.524750]  xfs_free_extent+0xa5/0x140 [xfs]
[  358.524772]  xfs_trans_free_extent+0x50/0x1e0 [xfs]
[  358.524791]  ? xfs_trans_add_item+0x50/0x80 [xfs]
[  358.524811]  xfs_extent_free_finish_item+0x21/0x30 [xfs]
[  358.524826]  xfs_defer_finish+0x171/0x740 [xfs]
[  358.524848]  xfs_itruncate_extents+0x113/0x470 [xfs]
[  358.524857]  ? dput.part.22+0x20/0x390
[  358.524874]  xfs_inactive_truncate+0xa0/0xf0 [xfs]
[  358.524892]  ? xfs_qm_dqattach+0x16/0x50 [xfs]
[  358.524910]  xfs_inactive+0xeb/0x100 [xfs]
[  358.524969]  xfs_fs_destroy_inode+0xb6/0x2d0 [xfs]
[  358.524972]  ? dput.part.22+0x20/0x390
[  358.524974]  __dentry_kill+0xdd/0x170
[  358.524978]  dput.part.22+0x2b2/0x390
[  358.524982]  __fput+0x183/0x200
[  358.524988]  task_work_run+0x87/0xb0
[  358.524992]  exit_to_usermode_loop+0xa8/0xb0
[  358.524995]  do_syscall_64+0x20e/0x220
[  358.524999]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.525000] RIP: 0033:0x7f0521685dfc
[  358.525002] RSP: 002b:00007f04de39b310 EFLAGS: 00000293 ORIG_RAX: 0000000000000003
[  358.525004] RAX: 0000000000000000 RBX: 0000038423bfba20 RCX: 00007f0521685dfc
[  358.525006] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 00000000000002c9
[  358.525007] RBP: 00007f04de39b470 R08: 0000000000000000 R09: 00000000000000c5
[  358.525008] R10: 0000038423bfba50 R11: 0000000000000293 R12: 00007f04de39b500
[  358.525010] R13: 00007f04de39b630 R14: 0000038423bfba20 R15: 00000384244483c0
[  358.525018] TaskSchedulerFo D12312  6667   4097 0x00000000
[  358.525023] Call Trace:
[  358.525027]  ? __schedule+0x2e9/0xba0
[  358.525031]  ? __down+0x84/0x110
[  358.525034]  schedule+0x2f/0x90
[  358.525036]  schedule_timeout+0x23d/0x540
[  358.525042]  ? mark_held_locks+0x56/0x80
[  358.525044]  ? _raw_spin_unlock_irq+0x29/0x40
[  358.525048]  ? __down+0x84/0x110
[  358.525050]  __down+0xac/0x110
[  358.525069]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  358.525072]  ? down+0x3b/0x50
[  358.525074]  down+0x3b/0x50
[  358.525090]  xfs_buf_lock+0x4a/0x270 [xfs]
[  358.525115]  _xfs_buf_find+0x266/0xad0 [xfs]
[  358.525134]  xfs_buf_get_map+0x22/0x490 [xfs]
[  358.525151]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  358.525172]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  358.525189]  xfs_da_read_buf+0xd3/0x120 [xfs]
[  358.525207]  xfs_da3_node_read+0x1b/0xa0 [xfs]
[  358.525222]  xfs_da3_node_lookup_int+0x70/0x3f0 [xfs]
[  358.525241]  xfs_dir2_node_lookup+0x62/0x230 [xfs]
[  358.525257]  xfs_dir_lookup+0x1b1/0x1c0 [xfs]
[  358.525277]  xfs_lookup+0x6f/0x1e0 [xfs]
[  358.525280]  ? __d_lookup+0x104/0x260
[  358.525299]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  358.525303]  lookup_open+0x2ca/0x750
[  358.525316]  path_openat+0x6ff/0xc80
[  358.525334]  ? xfs_iunlock+0x146/0x1d0 [xfs]
[  358.525338]  do_filp_open+0x9b/0x110
[  358.525345]  ? __alloc_fd+0xe5/0x1f0
[  358.525350]  ? _raw_spin_unlock+0x24/0x30
[  358.525355]  ? do_sys_open+0x1bd/0x250
[  358.525357]  do_sys_open+0x1bd/0x250
[  358.525362]  do_syscall_64+0x7a/0x220
[  358.525365]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.525373] RIP: 0033:0x7f0521686770
[  358.525374] RSP: 002b:00007f04ca180430 EFLAGS: 00000293 ORIG_RAX: 0000000000000101
[  358.525387] RAX: ffffffffffffffda RBX: 00007f04ca180530 RCX: 00007f0521686770
[  358.525388] RDX: 0000000000000002 RSI: 000003841ea8c5a0 RDI: ffffffffffffff9c
[  358.525389] RBP: 00007f04ca1804e0 R08: 0000000000000000 R09: 0000000000000000
[  358.525391] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000002
[  358.525392] R13: 00007f04ca180530 R14: 00000384237946f0 R15: 00007f04ca180531
[  358.525497] worker          D12552  5885      1 0x00000000
[  358.525502] Call Trace:
[  358.525506]  ? __schedule+0x2e9/0xba0
[  358.525509]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  358.525513]  schedule+0x2f/0x90
[  358.525515]  schedule_timeout+0x1e4/0x540
[  358.525520]  ? __next_timer_interrupt+0xc0/0xc0
[  358.525526]  io_schedule_timeout+0x19/0x40
[  358.525530]  generic_file_read_iter+0x3df/0xe80
[  358.525539]  ? page_cache_tree_insert+0x130/0x130
[  358.525542]  ? down_read_nested+0x70/0xb0
[  358.525561]  xfs_file_buffered_aio_read+0x65/0x1a0 [xfs]
[  358.525579]  xfs_file_read_iter+0x64/0xc0 [xfs]
[  358.525583]  __vfs_read+0x102/0x170
[  358.525589]  vfs_read+0x9e/0x150
[  358.525593]  SyS_pread64+0x93/0xb0
[  358.525595]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  358.525599]  do_syscall_64+0x7a/0x220
[  358.525602]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.525604] RIP: 0033:0x7fecaad80873
[  358.525605] RSP: 002b:00007fec9be4d8d0 EFLAGS: 00000293 ORIG_RAX: 0000000000000011
[  358.525608] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fecaad80873
[  358.525609] RDX: 0000000000001000 RSI: 00007fec3c272000 RDI: 0000000000000011
[  358.525611] RBP: 00007fec9083a370 R08: 0000000000000000 R09: 00000000ffffffff
[  358.525613] R10: 00000000e4cbf000 R11: 0000000000000293 R12: 00007fec3c272000
[  358.525614] R13: 000055e07e7b3a08 R14: 000055e07e7b3990 R15: 00007fffa61d61b0
[  358.525659] gitkraken       D12600  6162   5851 0x00000000
[  358.525664] Call Trace:
[  358.525668]  ? __schedule+0x2e9/0xba0
[  358.525671]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  358.525676]  schedule+0x2f/0x90
[  358.525678]  schedule_timeout+0x1e4/0x540
[  358.525683]  ? __next_timer_interrupt+0xc0/0xc0
[  358.525689]  io_schedule_timeout+0x19/0x40
[  358.525692]  wait_on_page_bit+0xf5/0x240
[  358.525697]  ? page_cache_tree_insert+0x130/0x130
[  358.525703]  truncate_inode_pages_range+0x5c3/0x950
[  358.525714]  ? find_held_lock+0x34/0xa0
[  358.525719]  ? unmap_mapping_pages+0x5e/0x130
[  358.525724]  ? up_write+0x1c/0x40
[  358.525727]  ? unmap_mapping_pages+0x5e/0x130
[  358.525731]  truncate_pagecache+0x43/0x60
[  358.525750]  xfs_setattr_size+0xe3/0x340 [xfs]
[  358.525770]  xfs_vn_setattr+0x84/0xa0 [xfs]
[  358.525775]  notify_change+0x303/0x420
[  358.525780]  do_truncate+0x75/0xc0
[  358.525786]  path_openat+0x99b/0xc80
[  358.525792]  do_filp_open+0x9b/0x110
[  358.525799]  ? __alloc_fd+0xe5/0x1f0
[  358.525804]  ? _raw_spin_unlock+0x24/0x30
[  358.525809]  ? do_sys_open+0x1bd/0x250
[  358.525811]  do_sys_open+0x1bd/0x250
[  358.525817]  do_syscall_64+0x7a/0x220
[  358.525820]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  358.525822] RIP: 0033:0x7fa41019a770
[  358.525823] RSP: 002b:00007fff2f63a130 EFLAGS: 00000293 ORIG_RAX: 0000000000000101
[  358.525825] RAX: ffffffffffffffda RBX: 00007fa4114acf70 RCX: 00007fa41019a770
[  358.525827] RDX: 0000000000080241 RSI: 00007fff2f63c2c0 RDI: ffffffffffffff9c
[  358.525829] RBP: 0000000000000241 R08: 0000000000000000 R09: 0000000000000000
[  358.525830] R10: 00000000000001b6 R11: 0000000000000293 R12: 0000000000000001
[  358.525831] R13: 00007fff2f63c6c0 R14: 00007fa411af1a00 R15: 0000000000000000
[  358.525842] gitkraken       D13048  6418   5851 0x00000000
[  358.525847] Call Trace:
[  358.525850]  ? __schedule+0x2e9/0xba0
[  358.525854]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  358.525858]  schedule+0x2f/0x90
[  358.525860]  schedule_timeout+0x1e4/0x540
[  358.525864]  ? __next_timer_interrupt+0xc0/0xc0
[  358.525871]  io_schedule_timeout+0x19/0x40
[  358.525874]  __lock_page_or_retry+0x20b/0x4d0
[  358.525879]  ? page_cache_tree_insert+0x130/0x130
[  358.525885]  filemap_fault+0x58b/0xb20
[  358.525888]  ? find_held_lock+0x34/0xa0
[  358.525909]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  358.525912]  ? down_read_nested+0x70/0xb0
[  358.525930]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  358.525934]  ? __handle_mm_fault+0xf9a/0x1260
[  358.525939]  __do_fault+0x1f/0x150
[  358.525942]  __handle_mm_fault+0xd66/0x1260
[  358.525951]  handle_mm_fault+0x15e/0x350
[  358.525956]  __do_page_fault+0x28c/0x530
[  358.525967]  do_page_fault+0x32/0x290
[  358.525971]  ? page_fault+0x36/0x60
[  358.525974]  page_fault+0x4c/0x60
[  358.525977] RIP: 0033:0x7fa3f8fb45d6
[  358.525978] RSP: 002b:00007fa3f0b8aee0 EFLAGS: 00010206
[  369.965795] INFO: task pool:5383 blocked for more than 120 seconds.
[  369.965822]       Not tainted 4.16.0-rc1-amd-vega+ #8
[  369.965826] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  369.965830] pool            D13304  5383   2245 0x00000000
[  369.965837] Call Trace:
[  369.965847]  ? __schedule+0x2e9/0xba0
[  369.965851]  ? mark_held_locks+0x56/0x80
[  369.965858]  ? wait_for_completion+0x112/0x1a0
[  369.965862]  schedule+0x2f/0x90
[  369.965865]  schedule_timeout+0x23d/0x540
[  369.965874]  ? mark_held_locks+0x56/0x80
[  369.965877]  ? _raw_spin_unlock_irq+0x29/0x40
[  369.965883]  ? wait_for_completion+0x112/0x1a0
[  369.965886]  wait_for_completion+0x13a/0x1a0
[  369.965892]  ? wake_up_q+0x70/0x70
[  369.965935]  ? xfs_buf_read_map+0x136/0x2f0 [xfs]
[  369.965963]  xfs_buf_submit_wait+0xad/0x530 [xfs]
[  369.965989]  xfs_buf_read_map+0x136/0x2f0 [xfs]
[  369.966021]  ? xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  369.966055]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  369.966084]  xfs_imap_to_bp+0x67/0xe0 [xfs]
[  369.966114]  xfs_iread+0x7e/0x1f0 [xfs]
[  369.966145]  ? xfs_iget+0xfe/0x11a0 [xfs]
[  369.966172]  xfs_iget+0x500/0x11a0 [xfs]
[  369.966209]  xfs_lookup+0x14a/0x1e0 [xfs]
[  369.966240]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  369.966248]  lookup_slow+0x131/0x210
[  369.966266]  walk_component+0x1c4/0x340
[  369.966269]  ? link_path_walk+0x68/0x530
[  369.966271]  ? path_init+0x405/0x740
[  369.966278]  path_lookupat+0x84/0x1f0
[  369.966287]  filename_lookup+0xb6/0x190
[  369.966296]  ? getname_flags+0x4a/0x1e0
[  369.966301]  ? __check_object_size+0xa7/0x1a0
[  369.966307]  ? strncpy_from_user+0x48/0x160
[  369.966316]  ? vfs_statx+0x73/0xe0
[  369.966319]  vfs_statx+0x73/0xe0
[  369.966328]  SYSC_newlstat+0x39/0x70
[  369.966333]  ? SyS_getdents+0x107/0x160
[  369.966336]  ? fillonedir+0x110/0x110
[  369.966340]  ? trace_hardirqs_on_caller+0xed/0x180
[  369.966345]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  369.966350]  ? trace_hardirqs_on_caller+0xed/0x180
[  369.966354]  do_syscall_64+0x7a/0x220
[  369.966359]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  369.966362] RIP: 0033:0x7ff973d22fd5
[  369.966365] RSP: 002b:00007ff96490fa88 EFLAGS: 00000246 ORIG_RAX: 0000000000000006
[  369.966369] RAX: ffffffffffffffda RBX: 00007ff94817e020 RCX: 00007ff973d22fd5
[  369.966371] RDX: 00007ff96490faf0 RSI: 00007ff96490faf0 RDI: 00007ff9481ea600
[  369.966373] RBP: 00007ff954228b60 R08: 0000000000100006 R09: 00007ff96490fc70
[  369.966375] R10: 0000000000000020 R11: 0000000000000246 R12: 00007ff9481ea600
[  369.966377] R13: 00007ff96490fc70 R14: 00007ff9481ea600 R15: 00007ff94812cc90
[  369.966539] 
               Showing all locks held in the system:
[  369.966549] 1 lock held by khungtaskd/61:
[  369.966555]  #0:  (tasklist_lock){.+.+}, at: [<00000000cd3c33f3>] debug_show_all_locks+0x37/0x1a0
[  369.966585] 2 locks held by updatedb/962:
[  369.966587]  #0:  (&type->i_mutex_dir_key#7){++++}, at: [<0000000048bb9b27>] lookup_slow+0xe7/0x210
[  369.966599]  #1:  (&xfs_dir_ilock_class){++++}, at: [<00000000498fe697>] xfs_ilock_data_map_shared+0x2c/0x30 [xfs]
[  369.966738] 1 lock held by pool/5383:
[  369.966741]  #0:  (&type->i_mutex_dir_key#7){++++}, at: [<0000000048bb9b27>] lookup_slow+0xe7/0x210
[  369.966794] 2 locks held by TaskSchedulerFo/4170:
[  369.966797]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.966815]  #1:  (&type->i_mutex_dir_key#7){++++}, at: [<00000000f3a761ca>] path_openat+0x2fd/0xc80
[  369.966832] 2 locks held by TaskSchedulerFo/4172:
[  369.966835]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.966853]  #1:  (&type->i_mutex_dir_key#7){++++}, at: [<00000000f3a761ca>] path_openat+0x2fd/0xc80
[  369.966873] 2 locks held by TaskSchedulerFo/4321:
[  369.966876]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.966908]  #1:  (&type->i_mutex_dir_key#7){++++}, at: [<00000000b16b9a43>] path_openat+0x6e2/0xc80
[  369.966928] 3 locks held by TaskSchedulerFo/4368:
[  369.966931]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.966949]  #1:  (&type->i_mutex_dir_key#7){++++}, at: [<00000000f3a761ca>] path_openat+0x2fd/0xc80
[  369.966968]  #2:  (&xfs_dir_ilock_class){++++}, at: [<00000000498fe697>] xfs_ilock_data_map_shared+0x2c/0x30 [xfs]
[  369.967019] 4 locks held by TaskSchedulerFo/4492:
[  369.967022]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.967041]  #1:  (&type->i_mutex_dir_key#7/1){+.+.}, at: [<00000000b5a82606>] lock_rename+0xcf/0xf0
[  369.967062]  #2:  (sb_internal#2){.+.+}, at: [<0000000026118cb1>] xfs_trans_alloc+0xe2/0x120 [xfs]
[  369.967120]  #3:  (&xfs_nondir_ilock_class){++++}, at: [<00000000dbf6d50f>] xfs_inactive_truncate+0x63/0xf0 [xfs]
[  369.967174] 2 locks held by TaskSchedulerFo/6238:
[  369.967177]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.967196]  #1:  (&type->i_mutex_dir_key#7){++++}, at: [<00000000b16b9a43>] path_openat+0x6e2/0xc80
[  369.967215] 2 locks held by TaskSchedulerFo/6661:
[  369.967218]  #0:  (sb_internal#2){.+.+}, at: [<0000000026118cb1>] xfs_trans_alloc+0xe2/0x120 [xfs]
[  369.967276]  #1:  (&xfs_nondir_ilock_class){++++}, at: [<00000000dbf6d50f>] xfs_inactive_truncate+0x63/0xf0 [xfs]
[  369.967327] 2 locks held by TaskSchedulerFo/6667:
[  369.967330]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.967350]  #1:  (&type->i_mutex_dir_key#7){++++}, at: [<00000000b16b9a43>] path_openat+0x6e2/0xc80
[  369.967431] 1 lock held by worker/5885:
[  369.967436]  #0:  (&sb->s_type->i_mutex_key#21){++++}, at: [<000000005ca96b40>] xfs_ilock+0x198/0x200 [xfs]
[  369.967492] 1 lock held by CPU 0/KVM/5886:
[  369.967495]  #0:  (&vcpu->mutex){+.+.}, at: [<00000000bd620ae1>] kvm_vcpu_ioctl+0x81/0x6b0 [kvm]
[  369.967542] 3 locks held by gitkraken/6162:
[  369.967545]  #0:  (sb_writers#17){.+.+}, at: [<00000000a7c08664>] mnt_want_write+0x20/0x50
[  369.967566]  #1:  (&sb->s_type->i_mutex_key#21){++++}, at: [<00000000713e4683>] do_truncate+0x66/0xc0
[  369.967585]  #2:  (&(&ip->i_mmaplock)->mr_lock){++++}, at: [<000000002c78c313>] xfs_ilock+0x14e/0x200 [xfs]
[  369.967696] 1 lock held by gitkraken/6418:
[  369.967699]  #0:  (&(&ip->i_mmaplock)->mr_lock){++++}, at: [<00000000d14665bb>] xfs_ilock+0x17f/0x200 [xfs]

[  369.967773] =============================================

[  402.584013] TaskSchedulerFo (4173) used greatest stack depth: 10968 bytes left
[  408.578462] sysrq: SysRq : Show Blocked State
[  408.578470]   task                        PC stack   pid father
[  408.578492] kworker/u16:3   D11944   146      2 0x80000000
[  408.578501] Workqueue: writeback wb_workfn (flush-8:32)
[  408.578504] Call Trace:
[  408.578511]  ? __schedule+0x2e9/0xba0
[  408.578517]  schedule+0x2f/0x90
[  408.578520]  io_schedule+0x12/0x40
[  408.578524]  get_request+0x38a/0xc50
[  408.578530]  ? finish_wait+0x80/0x80
[  408.578535]  blk_queue_bio+0x1ab/0x730
[  408.578539]  ? generic_make_request+0xfd/0x3f0
[  408.578542]  generic_make_request+0x12f/0x3f0
[  408.578548]  ? submit_bio+0x6c/0x140
[  408.578549]  submit_bio+0x6c/0x140
[  408.578583]  xfs_submit_ioend+0x95/0x1f0 [xfs]
[  408.578601]  xfs_do_writepage+0x39d/0x7e0 [xfs]
[  408.578607]  ? __lock_is_held+0x59/0xa0
[  408.578612]  write_cache_pages+0x1cd/0x550
[  408.578629]  ? xfs_vm_readpage+0x140/0x140 [xfs]
[  408.578649]  ? xfs_vm_writepages+0x54/0xd0 [xfs]
[  408.578691]  xfs_vm_writepages+0xb1/0xd0 [xfs]
[  408.578699]  do_writepages+0x4b/0xf0
[  408.578701]  ? reacquire_held_locks+0xf0/0x180
[  408.578704]  ? writeback_sb_inodes+0x129/0x5c0
[  408.578706]  ? __lock_is_held+0x59/0xa0
[  408.578711]  ? __writeback_single_inode+0x58/0x740
[  408.578713]  __writeback_single_inode+0x58/0x740
[  408.578718]  writeback_sb_inodes+0x249/0x5c0
[  408.578728]  __writeback_inodes_wb+0x5d/0xb0
[  408.578732]  wb_writeback+0x371/0x550
[  408.578739]  ? cpumask_next+0x17/0x20
[  408.578744]  ? wb_workfn+0x24c/0x680
[  408.578746]  wb_workfn+0x24c/0x680
[  408.578753]  process_one_work+0x249/0x680
[  408.578760]  worker_thread+0x3a/0x390
[  408.578763]  ? process_one_work+0x680/0x680
[  408.578766]  kthread+0x121/0x140
[  408.578768]  ? kthread_create_worker_on_cpu+0x70/0x70
[  408.578772]  ret_from_fork+0x3a/0x50
[  408.578797] xfsaild/sdc     D13336   838      2 0x80000080
[  408.578801] Call Trace:
[  408.578805]  ? __schedule+0x2e9/0xba0
[  408.578811]  schedule+0x2f/0x90
[  408.578813]  io_schedule+0x12/0x40
[  408.578815]  get_request+0x38a/0xc50
[  408.578822]  ? finish_wait+0x80/0x80
[  408.578826]  blk_queue_bio+0x1ab/0x730
[  408.578830]  ? generic_make_request+0xfd/0x3f0
[  408.578833]  generic_make_request+0x12f/0x3f0
[  408.578839]  ? submit_bio+0x6c/0x140
[  408.578842]  ? bio_alloc_bioset+0xca/0x1d0
[  408.578844]  submit_bio+0x6c/0x140
[  408.578862]  _xfs_buf_ioapply+0x322/0x5a0 [xfs]
[  408.578883]  ? xfs_buf_submit+0x139/0x350 [xfs]
[  408.578900]  ? xfs_buf_delwri_submit_buffers+0x150/0x4d0 [xfs]
[  408.578916]  ? xfs_buf_submit+0x7d/0x350 [xfs]
[  408.578931]  xfs_buf_submit+0x7d/0x350 [xfs]
[  408.578946]  xfs_buf_delwri_submit_buffers+0x150/0x4d0 [xfs]
[  408.578967]  ? xfsaild+0x3ae/0xc40 [xfs]
[  408.578992]  ? xfsaild+0x3ae/0xc40 [xfs]
[  408.579011]  xfsaild+0x3ae/0xc40 [xfs]
[  408.579036]  ? xfs_trans_ail_cursor_first+0x80/0x80 [xfs]
[  408.579038]  ? kthread+0x121/0x140
[  408.579040]  kthread+0x121/0x140
[  408.579043]  ? kthread_create_worker_on_cpu+0x70/0x70
[  408.579046]  ret_from_fork+0x3a/0x50
[  408.579192] pool            D13304  5383   2245 0x00000000
[  408.579196] Call Trace:
[  408.579200]  ? __schedule+0x2e9/0xba0
[  408.579202]  ? mark_held_locks+0x56/0x80
[  408.579206]  ? wait_for_completion+0x112/0x1a0
[  408.579209]  schedule+0x2f/0x90
[  408.579211]  schedule_timeout+0x23d/0x540
[  408.579217]  ? mark_held_locks+0x56/0x80
[  408.579219]  ? _raw_spin_unlock_irq+0x29/0x40
[  408.579222]  ? wait_for_completion+0x112/0x1a0
[  408.579225]  wait_for_completion+0x13a/0x1a0
[  408.579228]  ? wake_up_q+0x70/0x70
[  408.579246]  ? xfs_buf_read_map+0x136/0x2f0 [xfs]
[  408.579262]  xfs_buf_submit_wait+0xad/0x530 [xfs]
[  408.579278]  xfs_buf_read_map+0x136/0x2f0 [xfs]
[  408.579298]  ? xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.579318]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.579337]  xfs_imap_to_bp+0x67/0xe0 [xfs]
[  408.579356]  xfs_iread+0x7e/0x1f0 [xfs]
[  408.579376]  ? xfs_iget+0xfe/0x11a0 [xfs]
[  408.579396]  xfs_iget+0x500/0x11a0 [xfs]
[  408.579432]  xfs_lookup+0x14a/0x1e0 [xfs]
[  408.579458]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  408.579463]  lookup_slow+0x131/0x210
[  408.579475]  walk_component+0x1c4/0x340
[  408.579477]  ? link_path_walk+0x68/0x530
[  408.579478]  ? path_init+0x405/0x740
[  408.579483]  path_lookupat+0x84/0x1f0
[  408.579488]  filename_lookup+0xb6/0x190
[  408.579494]  ? getname_flags+0x4a/0x1e0
[  408.579498]  ? __check_object_size+0xa7/0x1a0
[  408.579502]  ? strncpy_from_user+0x48/0x160
[  408.579508]  ? vfs_statx+0x73/0xe0
[  408.579510]  vfs_statx+0x73/0xe0
[  408.579515]  SYSC_newlstat+0x39/0x70
[  408.579518]  ? SyS_getdents+0x107/0x160
[  408.579520]  ? fillonedir+0x110/0x110
[  408.579523]  ? trace_hardirqs_on_caller+0xed/0x180
[  408.579527]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  408.579530]  ? trace_hardirqs_on_caller+0xed/0x180
[  408.579532]  do_syscall_64+0x7a/0x220
[  408.579536]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.579538] RIP: 0033:0x7ff973d22fd5
[  408.579540] RSP: 002b:00007ff96490fa88 EFLAGS: 00000246 ORIG_RAX: 0000000000000006
[  408.579542] RAX: ffffffffffffffda RBX: 00007ff94817e020 RCX: 00007ff973d22fd5
[  408.579544] RDX: 00007ff96490faf0 RSI: 00007ff96490faf0 RDI: 00007ff9481ea600
[  408.579545] RBP: 00007ff954228b60 R08: 0000000000100006 R09: 00007ff96490fc70
[  408.579547] R10: 0000000000000020 R11: 0000000000000246 R12: 00007ff9481ea600
[  408.579548] R13: 00007ff96490fc70 R14: 00007ff9481ea600 R15: 00007ff94812cc90
[  408.579606] TaskSchedulerFo D10920  4172   4097 0x00000000
[  408.579611] Call Trace:
[  408.579615]  ? __schedule+0x2e9/0xba0
[  408.579619]  ? __down+0x84/0x110
[  408.579622]  schedule+0x2f/0x90
[  408.579624]  schedule_timeout+0x23d/0x540
[  408.579630]  ? mark_held_locks+0x56/0x80
[  408.579632]  ? _raw_spin_unlock_irq+0x29/0x40
[  408.579636]  ? __down+0x84/0x110
[  408.579638]  __down+0xac/0x110
[  408.579660]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  408.579672]  ? down+0x3b/0x50
[  408.579687]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  408.579689]  down+0x3b/0x50
[  408.579705]  xfs_buf_lock+0x4a/0x270 [xfs]
[  408.579720]  _xfs_buf_find+0x266/0xad0 [xfs]
[  408.579739]  xfs_buf_get_map+0x22/0x490 [xfs]
[  408.579756]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  408.579779]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.579795]  xfs_btree_read_buf_block.constprop.36+0x6e/0xc0 [xfs]
[  408.579813]  xfs_btree_lookup_get_block+0x85/0x180 [xfs]
[  408.579829]  xfs_btree_lookup+0xd4/0x410 [xfs]
[  408.579833]  ? kmem_cache_alloc+0x28c/0x2f0
[  408.579854]  ? kmem_zone_alloc+0x61/0xe0 [xfs]
[  408.579870]  xfs_alloc_ag_vextent_near+0x1c6/0x1090 [xfs]
[  408.579888]  xfs_alloc_ag_vextent+0x13c/0x140 [xfs]
[  408.579902]  xfs_alloc_vextent+0x567/0x970 [xfs]
[  408.579918]  xfs_bmap_btalloc+0x2ec/0x810 [xfs]
[  408.579942]  xfs_bmapi_write+0x598/0xcc0 [xfs]
[  408.579974]  xfs_iomap_write_allocate+0x171/0x370 [xfs]
[  408.580001]  xfs_map_blocks+0x1cf/0x3f0 [xfs]
[  408.580020]  xfs_do_writepage+0x15f/0x7e0 [xfs]
[  408.580025]  ? __lock_is_held+0x59/0xa0
[  408.580030]  write_cache_pages+0x1cd/0x550
[  408.580045]  ? xfs_vm_readpage+0x140/0x140 [xfs]
[  408.580065]  ? xfs_vm_writepages+0x54/0xd0 [xfs]
[  408.580082]  xfs_vm_writepages+0xb1/0xd0 [xfs]
[  408.580089]  do_writepages+0x4b/0xf0
[  408.580092]  ? __filemap_fdatawrite_range+0xb4/0x100
[  408.580098]  ? __filemap_fdatawrite_range+0xc1/0x100
[  408.580099]  __filemap_fdatawrite_range+0xc1/0x100
[  408.580103]  ? unmap_mapping_pages+0x5e/0x130
[  408.580109]  filemap_write_and_wait_range+0x30/0x80
[  408.580128]  xfs_setattr_size+0x10b/0x340 [xfs]
[  408.580148]  xfs_vn_setattr+0x84/0xa0 [xfs]
[  408.580153]  notify_change+0x303/0x420
[  408.580158]  do_truncate+0x75/0xc0
[  408.580161]  ? rcu_read_lock_sched_held+0x6b/0x80
[  408.580167]  do_sys_ftruncate.constprop.17+0xed/0x110
[  408.580171]  do_syscall_64+0x7a/0x220
[  408.580174]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.580176] RIP: 0033:0x7f051b07e56a
[  408.580177] RSP: 002b:00007f04ff8fb518 EFLAGS: 00000246 ORIG_RAX: 000000000000004d
[  408.580181] RAX: ffffffffffffffda RBX: 00000000000000b3 RCX: 00007f051b07e56a
[  408.580182] RDX: 0000000000000020 RSI: 0000000000001647 RDI: 00000000000000b3
[  408.580184] RBP: 00007f04ff8fb550 R08: 00000000cf0a63c7 R09: 0000000074cad68c
[  408.580185] R10: 0000000000001627 R11: 0000000000000246 R12: 0000038425c1b5a0
[  408.580187] R13: 00007f04ff8fb630 R14: 00000384261a4090 R15: 0000000000001647
[  408.580196] TaskSchedulerFo D11352  4313   4097 0x00000000
[  408.580201] Call Trace:
[  408.580205]  ? __schedule+0x2e9/0xba0
[  408.580211]  schedule+0x2f/0x90
[  408.580231]  _xfs_log_force_lsn+0x213/0x370 [xfs]
[  408.580238]  ? wake_up_q+0x70/0x70
[  408.580266]  xfs_file_fsync+0x10b/0x2b0 [xfs]
[  408.580275]  do_fsync+0x38/0x60
[  408.580280]  SyS_fdatasync+0xf/0x20
[  408.580283]  do_syscall_64+0x7a/0x220
[  408.580288]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.580290] RIP: 0033:0x7f051b07cdec
[  408.580293] RSP: 002b:00007f04e4ddb480 EFLAGS: 00000293 ORIG_RAX: 000000000000004b
[  408.580296] RAX: ffffffffffffffda RBX: 00007f04e4ddb560 RCX: 00007f051b07cdec
[  408.580298] RDX: 0000000000000000 RSI: 000003841b162000 RDI: 00000000000000a0
[  408.580300] RBP: 00007f04e4ddb4c0 R08: 0000000000000000 R09: 00000384209c1138
[  408.580303] R10: 0000000000000000 R11: 0000000000000293 R12: 0000000000000000
[  408.580305] R13: 0000000000002361 R14: 00007f04e4ddb518 R15: 00007f04e4ddb560
[  408.580319] TaskSchedulerFo D11112  4314   4097 0x00000000
[  408.580325] Call Trace:
[  408.580331]  ? __schedule+0x2e9/0xba0
[  408.580338]  ? __down+0x84/0x110
[  408.580343]  schedule+0x2f/0x90
[  408.580345]  schedule_timeout+0x23d/0x540
[  408.580355]  ? mark_held_locks+0x56/0x80
[  408.580358]  ? _raw_spin_unlock_irq+0x29/0x40
[  408.580364]  ? __down+0x84/0x110
[  408.580367]  __down+0xac/0x110
[  408.580398]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  408.580402]  ? down+0x3b/0x50
[  408.580405]  down+0x3b/0x50
[  408.580429]  xfs_buf_lock+0x4a/0x270 [xfs]
[  408.580445]  _xfs_buf_find+0x266/0xad0 [xfs]
[  408.580465]  xfs_buf_get_map+0x22/0x490 [xfs]
[  408.580482]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  408.580504]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.580520]  xfs_read_agf+0xa5/0x1e0 [xfs]
[  408.580537]  xfs_alloc_read_agf+0x59/0x220 [xfs]
[  408.580552]  xfs_alloc_fix_freelist+0x225/0x370 [xfs]
[  408.580559]  ? __lock_is_held+0x59/0xa0
[  408.580574]  ? xfs_free_extent_fix_freelist+0x52/0xb0 [xfs]
[  408.580577]  ? rcu_read_lock_sched_held+0x6b/0x80
[  408.580592]  ? xfs_perag_get+0x1ea/0x250 [xfs]
[  408.580613]  xfs_free_extent_fix_freelist+0x64/0xb0 [xfs]
[  408.580647]  xfs_free_extent+0x56/0x140 [xfs]
[  408.580696]  xfs_trans_free_extent+0x50/0x1e0 [xfs]
[  408.580726]  ? xfs_trans_add_item+0x50/0x80 [xfs]
[  408.580756]  xfs_extent_free_finish_item+0x21/0x30 [xfs]
[  408.580772]  xfs_defer_finish+0x171/0x740 [xfs]
[  408.580794]  xfs_itruncate_extents+0x113/0x470 [xfs]
[  408.580820]  xfs_inactive_truncate+0xa0/0xf0 [xfs]
[  408.580840]  ? xfs_qm_dqattach+0x16/0x50 [xfs]
[  408.580859]  xfs_inactive+0xeb/0x100 [xfs]
[  408.580877]  xfs_fs_destroy_inode+0xb6/0x2d0 [xfs]
[  408.580882]  do_unlinkat+0x1ad/0x310
[  408.580889]  do_syscall_64+0x7a/0x220
[  408.580893]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.580896] RIP: 0033:0x7f051b078397
[  408.580898] RSP: 002b:00007f04e41c52a8 EFLAGS: 00000206 ORIG_RAX: 0000000000000057
[  408.580901] RAX: ffffffffffffffda RBX: 0000038424b34c00 RCX: 00007f051b078397
[  408.580903] RDX: 00007f04e41c52b0 RSI: 00007f04e41c52b0 RDI: 0000038424b34c00
[  408.580905] RBP: 00007f04e41c54d0 R08: ffffffffffffffff R09: 0000000000000000
[  408.580907] R10: 0000000000000000 R11: 0000000000000206 R12: 0000038422688848
[  408.580909] R13: 0000000006b2e550 R14: 00007f04e41c54e0 R15: 0000000000000000
[  408.580924] TaskSchedulerFo D11784  4321   4097 0x00000000
[  408.580930] Call Trace:
[  408.580937]  ? __schedule+0x2e9/0xba0
[  408.580953]  ? __down+0x84/0x110
[  408.580957]  schedule+0x2f/0x90
[  408.580960]  schedule_timeout+0x23d/0x540
[  408.580969]  ? mark_held_locks+0x56/0x80
[  408.580972]  ? _raw_spin_unlock_irq+0x29/0x40
[  408.580975]  ? __down+0x84/0x110
[  408.580979]  __down+0xac/0x110
[  408.581003]  ? _xfs_buf_find+0x266/0xad0 [xfs]
[  408.581006]  ? down+0x3b/0x50
[  408.581007]  down+0x3b/0x50
[  408.581025]  xfs_buf_lock+0x4a/0x270 [xfs]
[  408.581048]  _xfs_buf_find+0x266/0xad0 [xfs]
[  408.581068]  xfs_buf_get_map+0x22/0x490 [xfs]
[  408.581085]  xfs_buf_read_map+0x28/0x2f0 [xfs]
[  408.581109]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.581132]  xfs_read_agf+0xa5/0x1e0 [xfs]
[  408.581158]  xfs_alloc_read_agf+0x59/0x220 [xfs]
[  408.581180]  xfs_alloc_fix_freelist+0x225/0x370 [xfs]
[  408.581187]  ? __lock_is_held+0x59/0xa0
[  408.581205]  ? xfs_free_extent_fix_freelist+0x52/0xb0 [xfs]
[  408.581210]  ? rcu_read_lock_sched_held+0x6b/0x80
[  408.581234]  ? xfs_perag_get+0x1ea/0x250 [xfs]
[  408.581251]  xfs_free_extent_fix_freelist+0x64/0xb0 [xfs]
[  408.581284]  xfs_free_extent+0x56/0x140 [xfs]
[  408.581311]  xfs_trans_free_extent+0x50/0x1e0 [xfs]
[  408.581340]  ? xfs_trans_add_item+0x50/0x80 [xfs]
[  408.581363]  xfs_extent_free_finish_item+0x21/0x30 [xfs]
[  408.581379]  xfs_defer_finish+0x171/0x740 [xfs]
[  408.581400]  xfs_itruncate_extents+0x113/0x470 [xfs]
[  408.581432]  xfs_setattr_size+0x2ca/0x340 [xfs]
[  408.581462]  xfs_vn_setattr+0x84/0xa0 [xfs]
[  408.581469]  notify_change+0x303/0x420
[  408.581477]  do_truncate+0x75/0xc0
[  408.581481]  ? rcu_read_lock_sched_held+0x6b/0x80
[  408.581490]  do_sys_ftruncate.constprop.17+0xed/0x110
[  408.581496]  do_syscall_64+0x7a/0x220
[  408.581501]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.581504] RIP: 0033:0x7f051b07e56a
[  408.581506] RSP: 002b:00007f04e37be558 EFLAGS: 00000246 ORIG_RAX: 000000000000004d
[  408.581510] RAX: ffffffffffffffda RBX: 0000000000000165 RCX: 00007f051b07e56a
[  408.581512] RDX: 0000000000000000 RSI: 00000000000000c8 RDI: 0000000000000165
[  408.581514] RBP: 00007f04e37be590 R08: 0000000000000000 R09: 000000000376ed00
[  408.581516] R10: 00007f04e37be540 R11: 0000000000000246 R12: 0000000000000000
[  408.581518] R13: 0000038422d4fdc0 R14: 000003841e73e030 R15: 00000000000000c8
[  408.581532] TaskSchedulerFo D11800  4492   4097 0x00000000
[  408.581538] Call Trace:
[  408.581545]  ? __schedule+0x2e9/0xba0
[  408.581555]  schedule+0x2f/0x90
[  408.581558]  io_schedule+0x12/0x40
[  408.581563]  get_request+0x38a/0xc50
[  408.581574]  ? finish_wait+0x80/0x80
[  408.581582]  blk_queue_bio+0x1ab/0x730
[  408.581588]  ? generic_make_request+0xfd/0x3f0
[  408.581593]  generic_make_request+0x12f/0x3f0
[  408.581604]  ? submit_bio+0x6c/0x140
[  408.581607]  submit_bio+0x6c/0x140
[  408.581632]  ? xfs_setfilesize_trans_alloc.isra.13+0x73/0xc0 [xfs]
[  408.581659]  xfs_submit_ioend+0x95/0x1f0 [xfs]
[  408.581698]  xfs_do_writepage+0x39d/0x7e0 [xfs]
[  408.581708]  write_cache_pages+0x1cd/0x550
[  408.581725]  ? xfs_vm_readpage+0x140/0x140 [xfs]
[  408.581754]  ? xfs_vm_writepages+0x54/0xd0 [xfs]
[  408.581779]  xfs_vm_writepages+0xb1/0xd0 [xfs]
[  408.581790]  do_writepages+0x4b/0xf0
[  408.581796]  ? __filemap_fdatawrite_range+0xb4/0x100
[  408.581803]  ? __filemap_fdatawrite_range+0xc1/0x100
[  408.581806]  __filemap_fdatawrite_range+0xc1/0x100
[  408.581839]  xfs_release+0x11c/0x160 [xfs]
[  408.581845]  __fput+0xe9/0x200
[  408.581853]  task_work_run+0x87/0xb0
[  408.581860]  exit_to_usermode_loop+0xa8/0xb0
[  408.581864]  do_syscall_64+0x20e/0x220
[  408.581869]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.581872] RIP: 0033:0x7f0521685dfc
[  408.581874] RSP: 002b:00007f04db1e2310 EFLAGS: 00000293 ORIG_RAX: 0000000000000003
[  408.581879] RAX: 0000000000000000 RBX: 0000038423e5a1e0 RCX: 00007f0521685dfc
[  408.581880] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000200
[  408.581882] RBP: 00007f04db1e2470 R08: 0000000000000000 R09: 00000000000000c5
[  408.581884] R10: 0000038420193fc0 R11: 0000000000000293 R12: 0000038425c04780
[  408.581886] R13: 00007f04db1e2630 R14: 0000038423e5a1e0 R15: 0000038425c04780
[  408.581901] TaskSchedulerFo D11800  6661   4097 0x00000000
[  408.581908] Call Trace:
[  408.581915]  ? __schedule+0x2e9/0xba0
[  408.581918]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  408.581923]  schedule+0x2f/0x90
[  408.581924]  schedule_timeout+0x1e4/0x540
[  408.581929]  ? __next_timer_interrupt+0xc0/0xc0
[  408.581935]  io_schedule_timeout+0x19/0x40
[  408.581938]  wait_on_page_bit_common+0x13f/0x270
[  408.581943]  ? page_cache_tree_insert+0x130/0x130
[  408.581949]  __filemap_fdatawait_range+0xdc/0x170
[  408.581953]  ? __filemap_fdatawrite_range+0xc1/0x100
[  408.581955]  ? __filemap_fdatawrite_range+0xcf/0x100
[  408.581962]  filemap_write_and_wait_range+0x45/0x80
[  408.581986]  xfs_setattr_size+0x10b/0x340 [xfs]
[  408.582023]  xfs_vn_setattr+0x84/0xa0 [xfs]
[  408.582027]  notify_change+0x303/0x420
[  408.582032]  do_truncate+0x75/0xc0
[  408.582035]  ? rcu_read_lock_sched_held+0x6b/0x80
[  408.582040]  do_sys_ftruncate.constprop.17+0xed/0x110
[  408.582044]  do_syscall_64+0x7a/0x220
[  408.582047]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.582049] RIP: 0033:0x7f051b07e56a
[  408.582050] RSP: 002b:00007f04de39b558 EFLAGS: 00000246 ORIG_RAX: 000000000000004d
[  408.582053] RAX: ffffffffffffffda RBX: 0000000000000193 RCX: 00007f051b07e56a
[  408.582054] RDX: 0000038422cab3a0 RSI: 00000000000017d0 RDI: 0000000000000193
[  408.582055] RBP: 00007f04de39b590 R08: 0000000000000000 R09: 000000000376ed00
[  408.582057] R10: 00000000000002df R11: 0000000000000246 R12: 0000000000000000
[  408.582058] R13: 0000038422822aa0 R14: 00000384117e3870 R15: 00000000000017d0
[  408.582067] TaskSchedulerFo D12040  6663   4097 0x00000000
[  408.582071] Call Trace:
[  408.582075]  ? __schedule+0x2e9/0xba0
[  408.582079]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  408.582083]  schedule+0x2f/0x90
[  408.582085]  schedule_timeout+0x1e4/0x540
[  408.582089]  ? __next_timer_interrupt+0xc0/0xc0
[  408.582095]  io_schedule_timeout+0x19/0x40
[  408.582098]  generic_file_read_iter+0x3df/0xe80
[  408.582106]  ? page_cache_tree_insert+0x130/0x130
[  408.582109]  ? down_read_nested+0x70/0xb0
[  408.582133]  xfs_file_buffered_aio_read+0x65/0x1a0 [xfs]
[  408.582152]  xfs_file_read_iter+0x64/0xc0 [xfs]
[  408.582155]  __vfs_read+0x102/0x170
[  408.582163]  vfs_read+0x9e/0x150
[  408.582166]  SyS_pread64+0x93/0xb0
[  408.582169]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  408.582172]  do_syscall_64+0x7a/0x220
[  408.582176]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.582178] RIP: 0033:0x7f0521686873
[  408.582179] RSP: 002b:00007f04cbd7f3b0 EFLAGS: 00000293 ORIG_RAX: 0000000000000011
[  408.582181] RAX: ffffffffffffffda RBX: 0000000000001038 RCX: 00007f0521686873
[  408.582183] RDX: 0000000000001038 RSI: 000003841ab5c600 RDI: 0000000000000191
[  408.582184] RBP: 00007f04cbd7f410 R08: 0000000000000000 R09: 0000000000000020
[  408.582186] R10: 000000000000a42d R11: 0000000000000293 R12: 0000000000001038
[  408.582187] R13: 0000038424301a20 R14: 000000000000a42d R15: 000003841ab5c600
[  408.582288] worker          D12552  5885      1 0x00000000
[  408.582293] Call Trace:
[  408.582297]  ? __schedule+0x2e9/0xba0
[  408.582300]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  408.582304]  schedule+0x2f/0x90
[  408.582306]  schedule_timeout+0x1e4/0x540
[  408.582310]  ? __next_timer_interrupt+0xc0/0xc0
[  408.582317]  io_schedule_timeout+0x19/0x40
[  408.582319]  generic_file_read_iter+0x3df/0xe80
[  408.582327]  ? page_cache_tree_insert+0x130/0x130
[  408.582330]  ? down_read_nested+0x70/0xb0
[  408.582348]  xfs_file_buffered_aio_read+0x65/0x1a0 [xfs]
[  408.582365]  xfs_file_read_iter+0x64/0xc0 [xfs]
[  408.582368]  do_iter_readv_writev+0x16b/0x190
[  408.582373]  do_iter_read+0xcb/0x180
[  408.582376]  vfs_readv+0x80/0xd0
[  408.582379]  ? do_futex+0x48b/0xb20
[  408.582388]  ? __fget+0x111/0x200
[  408.582392]  ? do_preadv+0x9c/0xe0
[  408.582394]  do_preadv+0x9c/0xe0
[  408.582396]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  408.582400]  do_syscall_64+0x7a/0x220
[  408.582404]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.582405] RIP: 0033:0x7fecaaaa52b3
[  408.582406] RSP: 002b:00007fec9be4d8a0 EFLAGS: 00000293 ORIG_RAX: 0000000000000127
[  408.582409] RAX: ffffffffffffffda RBX: 00007fec900b4fc0 RCX: 00007fecaaaa52b3
[  408.582410] RDX: 0000000000000007 RSI: 00007fec9151bcd0 RDI: 0000000000000011
[  408.582412] RBP: 000055e07e7b39a0 R08: 0000000000000000 R09: 00000000ffffffff
[  408.582413] R10: 00000004f5dc2400 R11: 0000000000000293 R12: 00007fec900b1b90
[  408.582414] R13: 000055e07e7b3a08 R14: 000055e07e7b3990 R15: 00007fffa61d61b0
[  408.582447] gitkraken       D11944  6329   5851 0x00000000
[  408.582451] Call Trace:
[  408.582455]  ? __schedule+0x2e9/0xba0
[  408.582457]  ? mark_held_locks+0x56/0x80
[  408.582462]  ? wait_for_completion+0x112/0x1a0
[  408.582464]  schedule+0x2f/0x90
[  408.582467]  schedule_timeout+0x23d/0x540
[  408.582472]  ? mark_held_locks+0x56/0x80
[  408.582475]  ? _raw_spin_unlock_irq+0x29/0x40
[  408.582478]  ? wait_for_completion+0x112/0x1a0
[  408.582480]  wait_for_completion+0x13a/0x1a0
[  408.582484]  ? wake_up_q+0x70/0x70
[  408.582501]  ? xfs_buf_read_map+0x136/0x2f0 [xfs]
[  408.582517]  xfs_buf_submit_wait+0xad/0x530 [xfs]
[  408.582534]  xfs_buf_read_map+0x136/0x2f0 [xfs]
[  408.582553]  ? xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.582574]  xfs_trans_read_buf_map+0xc3/0x590 [xfs]
[  408.582592]  xfs_imap_to_bp+0x67/0xe0 [xfs]
[  408.582614]  xfs_iread+0x7e/0x1f0 [xfs]
[  408.582641]  ? xfs_iget+0xfe/0x11a0 [xfs]
[  408.582666]  xfs_iget+0x500/0x11a0 [xfs]
[  408.582714]  xfs_lookup+0x14a/0x1e0 [xfs]
[  408.582742]  xfs_vn_lookup+0x70/0xb0 [xfs]
[  408.582748]  lookup_slow+0x131/0x210
[  408.582769]  walk_component+0x1c4/0x340
[  408.582772]  ? link_path_walk+0x68/0x530
[  408.582774]  ? path_init+0x405/0x740
[  408.582782]  path_lookupat+0x84/0x1f0
[  408.582785]  ? __lock_acquire+0x2d4/0x1340
[  408.582794]  filename_lookup+0xb6/0x190
[  408.582805]  ? getname_flags+0x4a/0x1e0
[  408.582809]  ? __check_object_size+0xa7/0x1a0
[  408.582816]  ? strncpy_from_user+0x48/0x160
[  408.582826]  ? vfs_statx+0x73/0xe0
[  408.582830]  vfs_statx+0x73/0xe0
[  408.582839]  SYSC_newlstat+0x39/0x70
[  408.582847]  ? trace_hardirqs_on_caller+0xed/0x180
[  408.582851]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  408.582856]  ? trace_hardirqs_on_caller+0xed/0x180
[  408.582860]  do_syscall_64+0x7a/0x220
[  408.582865]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  408.582868] RIP: 0033:0x7fa40945afd5
[  408.582870] RSP: 002b:00007fa3f43ed698 EFLAGS: 00000246 ORIG_RAX: 0000000000000006
[  408.582875] RAX: ffffffffffffffda RBX: 0000050d482b2a10 RCX: 00007fa40945afd5
[  408.582877] RDX: 00007fa3f43ed6c0 RSI: 00007fa3f43ed6c0 RDI: 0000050d482b2a10
[  408.582879] RBP: 00007fa3f43ed6b0 R08: 0000050d482b2a3f R09: 0000000000000010
[  408.582881] R10: 00007fa4094a6ce0 R11: 0000000000000246 R12: 0000050d482b2a3f
[  408.582883] R13: 0000000000000027 R14: 0000050d4a0718c0 R15: 0000050d5e5a18f0
[  479.193711] TaskSchedulerFo (4172) used greatest stack depth: 10920 bytes left
[  527.238466] show_signal_msg: 37 callbacks suppressed
[  527.238479] Chrome_~dThread[5317]: segfault at 0 ip 00007fe3598d0669 sp 00007fe358090ac0 error 6
[  527.238484] Chrome_~dThread[5465]: segfault at 0 ip 00007f8675fd0669 sp 00007f8674790ac0 error 6
[  527.238564]  in libxul.so[7fe35960a000+47ac000]
[  527.238599]  in libxul.so[7f8675d0a000+47ac000]
[  596.881476] sysrq: SysRq : Show Blocked State
[  596.881486]   task                        PC stack   pid father
[  596.881513] kworker/u16:4   D11256   147      2 0x80000000
[  596.881527] Workqueue: events_unbound commit_work [drm_kms_helper]
[  596.881531] Call Trace:
[  596.881541]  ? __schedule+0x2e9/0xba0
[  596.881546]  ? _raw_spin_unlock_irqrestore+0x32/0x60
[  596.881552]  schedule+0x2f/0x90
[  596.881555]  schedule_timeout+0x1e4/0x540
[  596.881562]  ? __next_timer_interrupt+0xc0/0xc0
[  596.881567]  ? _raw_spin_unlock_irq+0x29/0x40
[  596.881572]  ? wait_for_completion_timeout+0x11f/0x1b0
[  596.881576]  wait_for_completion_timeout+0x147/0x1b0
[  596.881582]  ? wake_up_q+0x70/0x70
[  596.881592]  drm_atomic_helper_wait_for_flip_done+0x71/0xa0 [drm_kms_helper]
[  596.881641]  amdgpu_dm_atomic_commit_tail+0x872/0xdc0 [amdgpu]
[  596.881649]  ? wait_for_completion_timeout+0x76/0x1b0
[  596.881664]  commit_tail+0x3d/0x70 [drm_kms_helper]
[  596.881669]  process_one_work+0x249/0x680
[  596.881679]  worker_thread+0x3a/0x390
[  596.881684]  ? process_one_work+0x680/0x680
[  596.881687]  kthread+0x121/0x140
[  596.881691]  ? kthread_create_worker_on_cpu+0x70/0x70
[  596.881697]  ret_from_fork+0x3a/0x50
[  707.614179] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.614210] (systemd) cpuset=/ mems_allowed=0
[  707.614578] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.614580] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.614582] Call Trace:
[  707.614590]  dump_stack+0x85/0xbf
[  707.614596]  warn_alloc+0xff/0x1a0
[  707.614612]  __alloc_pages_slowpath+0x102c/0x1070
[  707.614634]  __alloc_pages_nodemask+0x383/0x410
[  707.614647]  new_slab+0x2f3/0x7f0
[  707.614658]  ___slab_alloc+0x39a/0x5d0
[  707.614666]  ? avc_alloc_node+0x20/0x290
[  707.614672]  ? __lock_acquire+0x2d4/0x1340
[  707.614680]  ? avc_alloc_node+0x20/0x290
[  707.614683]  ? avc_alloc_node+0x20/0x290
[  707.614687]  ? __slab_alloc+0x4c/0xa0
[  707.614690]  __slab_alloc+0x4c/0xa0
[  707.614697]  kmem_cache_alloc+0x24a/0x2f0
[  707.614703]  avc_alloc_node+0x20/0x290
[  707.614710]  avc_compute_av+0xff/0x2b0
[  707.614718]  avc_has_perm_noaudit+0x16a/0x210
[  707.614731]  security_get_user_sids+0x363/0x490
[  707.614753]  sel_write_user+0x142/0x220
[  707.614760]  ? sel_write_member+0x280/0x280
[  707.614764]  selinux_transaction_write+0x45/0x70
[  707.614770]  __vfs_write+0x36/0x180
[  707.614776]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.614779]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.614783]  ? __sb_start_write+0x13e/0x1a0
[  707.614787]  ? vfs_write+0x18a/0x1b0
[  707.614793]  vfs_write+0xc1/0x1b0
[  707.614799]  SyS_write+0x55/0xc0
[  707.614803]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.614810]  do_syscall_64+0x7a/0x220
[  707.614816]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.614820] RIP: 0033:0x7f6d84405ccb
[  707.614822] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.614826] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.614828] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.614831] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.614833] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.614835] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.614921] Mem-Info:
[  707.614926] active_anon:6526111 inactive_anon:315728 isolated_anon:0
                active_file:471979 inactive_file:262661 isolated_file:0
                unevictable:363 dirty:1720 writeback:4 unstable:0
                slab_reclaimable:108914 slab_unreclaimable:61905
                mapped:475052 shmem:125691 pagetables:51974 bounce:0
                free:48493 free_pcp:191 free_cma:0
[  707.614930] Node 0 active_anon:26104444kB inactive_anon:1262912kB active_file:1888208kB inactive_file:1050264kB unevictable:1452kB isolated(anon):0kB isolated(file):0kB mapped:1900208kB dirty:6880kB writeback:16kB shmem:502764kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 2244608kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[  707.614933] Node 0 DMA free:15864kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15988kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[  707.614939] lowmem_reserve[]: 0 3322 30890 30890 30890
[  707.614951] Node 0 DMA32 free:117160kB min:7264kB low:10664kB high:14064kB active_anon:3381420kB inactive_anon:0kB active_file:0kB inactive_file:48kB unevictable:0kB writepending:4kB present:3571144kB managed:3505396kB mlocked:0kB kernel_stack:0kB pagetables:6628kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[  707.614957] lowmem_reserve[]: 0 0 27567 27567 27567
[  707.614969] Node 0 Normal free:60948kB min:60284kB low:88512kB high:116740kB active_anon:22723884kB inactive_anon:1262588kB active_file:1887508kB inactive_file:1051472kB unevictable:1452kB writepending:6892kB present:29868032kB managed:28238348kB mlocked:1452kB kernel_stack:39776kB pagetables:201268kB bounce:0kB free_pcp:816kB local_pcp:0kB free_cma:0kB
[  707.614975] lowmem_reserve[]: 0 0 0 0 0
[  707.614986] Node 0 DMA: 2*4kB (U) 2*8kB (U) 0*16kB 1*32kB (U) 3*64kB (U) 2*128kB (U) 0*256kB 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15864kB
[  707.615024] Node 0 DMA32: 12*4kB (U) 9*8kB (UM) 9*16kB (UM) 11*32kB (U) 3*64kB (U) 1*128kB (U) 0*256kB 1*512kB (U) 1*1024kB (M) 0*2048kB 28*4096kB (M) = 117160kB
[  707.615066] Node 0 Normal: 134*4kB (UM) 65*8kB (U) 1745*16kB (UME) 1011*32kB (UE) 4*64kB (M) 1*128kB (M) 1*256kB (M) 0*512kB 0*1024kB 0*2048kB 0*4096kB = 61968kB
[  707.615105] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[  707.615107] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[  707.615109] 791785 total pagecache pages
[  707.615122] 3 pages in swap cache
[  707.615124] Swap cache stats: add 15, delete 12, find 8/16
[  707.615126] Free swap  = 62493180kB
[  707.615128] Total swap = 62494716kB
[  707.615264] 8363791 pages RAM
[  707.615266] 0 pages HighMem/MovableOnly
[  707.615268] 423881 pages reserved
[  707.615269] 0 pages cma reserved
[  707.615271] 0 pages hwpoisoned
[  707.615331] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.615334]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.615336]   node 0: slabs: 1142, objs: 63952, free: 0
[  707.617157] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.617160] (systemd) cpuset=/ mems_allowed=0
[  707.617168] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.617170] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.617171] Call Trace:
[  707.617178]  dump_stack+0x85/0xbf
[  707.617183]  warn_alloc+0xff/0x1a0
[  707.617199]  __alloc_pages_slowpath+0x102c/0x1070
[  707.617222]  __alloc_pages_nodemask+0x383/0x410
[  707.617233]  new_slab+0x2f3/0x7f0
[  707.617244]  ___slab_alloc+0x39a/0x5d0
[  707.617251]  ? avc_alloc_node+0x20/0x290
[  707.617256]  ? __lock_acquire+0x2d4/0x1340
[  707.617265]  ? avc_alloc_node+0x20/0x290
[  707.617268]  ? avc_alloc_node+0x20/0x290
[  707.617271]  ? __slab_alloc+0x4c/0xa0
[  707.617274]  __slab_alloc+0x4c/0xa0
[  707.617281]  kmem_cache_alloc+0x24a/0x2f0
[  707.617288]  avc_alloc_node+0x20/0x290
[  707.617294]  avc_compute_av+0xff/0x2b0
[  707.617302]  avc_has_perm_noaudit+0x16a/0x210
[  707.617315]  security_get_user_sids+0x363/0x490
[  707.617337]  sel_write_user+0x142/0x220
[  707.617344]  ? sel_write_member+0x280/0x280
[  707.617348]  selinux_transaction_write+0x45/0x70
[  707.617354]  __vfs_write+0x36/0x180
[  707.617360]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.617363]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.617366]  ? __sb_start_write+0x13e/0x1a0
[  707.617370]  ? vfs_write+0x18a/0x1b0
[  707.617376]  vfs_write+0xc1/0x1b0
[  707.617383]  SyS_write+0x55/0xc0
[  707.617386]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.617393]  do_syscall_64+0x7a/0x220
[  707.617399]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.617402] RIP: 0033:0x7f6d84405ccb
[  707.617404] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.617409] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.617411] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.617413] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.617415] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.617417] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.617434] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.617436]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.617439]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.617526] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.617528] (systemd) cpuset=/ mems_allowed=0
[  707.617535] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.617537] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.617539] Call Trace:
[  707.617544]  dump_stack+0x85/0xbf
[  707.617549]  warn_alloc+0xff/0x1a0
[  707.617564]  __alloc_pages_slowpath+0x102c/0x1070
[  707.617587]  __alloc_pages_nodemask+0x383/0x410
[  707.617597]  new_slab+0x2f3/0x7f0
[  707.617607]  ___slab_alloc+0x39a/0x5d0
[  707.617613]  ? avc_alloc_node+0x20/0x290
[  707.617617]  ? __lock_acquire+0x2d4/0x1340
[  707.617625]  ? avc_alloc_node+0x20/0x290
[  707.617628]  ? avc_alloc_node+0x20/0x290
[  707.617632]  ? __slab_alloc+0x4c/0xa0
[  707.617635]  __slab_alloc+0x4c/0xa0
[  707.617641]  kmem_cache_alloc+0x24a/0x2f0
[  707.617647]  avc_alloc_node+0x20/0x290
[  707.617653]  avc_compute_av+0xff/0x2b0
[  707.617660]  avc_has_perm_noaudit+0x16a/0x210
[  707.617673]  security_get_user_sids+0x363/0x490
[  707.617694]  sel_write_user+0x142/0x220
[  707.617701]  ? sel_write_member+0x280/0x280
[  707.617705]  selinux_transaction_write+0x45/0x70
[  707.617710]  __vfs_write+0x36/0x180
[  707.617716]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.617718]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.617722]  ? __sb_start_write+0x13e/0x1a0
[  707.617724]  ? vfs_write+0x18a/0x1b0
[  707.617731]  vfs_write+0xc1/0x1b0
[  707.617737]  SyS_write+0x55/0xc0
[  707.617740]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.617747]  do_syscall_64+0x7a/0x220
[  707.617752]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.617755] RIP: 0033:0x7f6d84405ccb
[  707.617757] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.617761] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.617763] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.617765] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.617767] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.617770] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.617785] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.617788]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.617790]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.617818] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.617820] (systemd) cpuset=/ mems_allowed=0
[  707.617827] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.617829] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.617831] Call Trace:
[  707.617835]  dump_stack+0x85/0xbf
[  707.617840]  warn_alloc+0xff/0x1a0
[  707.617856]  __alloc_pages_slowpath+0x102c/0x1070
[  707.617879]  __alloc_pages_nodemask+0x383/0x410
[  707.617890]  new_slab+0x2f3/0x7f0
[  707.617901]  ___slab_alloc+0x39a/0x5d0
[  707.617907]  ? avc_alloc_node+0x20/0x290
[  707.617911]  ? __lock_acquire+0x2d4/0x1340
[  707.617920]  ? avc_alloc_node+0x20/0x290
[  707.617922]  ? avc_alloc_node+0x20/0x290
[  707.617926]  ? __slab_alloc+0x4c/0xa0
[  707.617928]  __slab_alloc+0x4c/0xa0
[  707.617935]  kmem_cache_alloc+0x24a/0x2f0
[  707.617942]  avc_alloc_node+0x20/0x290
[  707.617948]  avc_compute_av+0xff/0x2b0
[  707.617955]  avc_has_perm_noaudit+0x16a/0x210
[  707.617967]  security_get_user_sids+0x363/0x490
[  707.617987]  sel_write_user+0x142/0x220
[  707.617994]  ? sel_write_member+0x280/0x280
[  707.617998]  selinux_transaction_write+0x45/0x70
[  707.618003]  __vfs_write+0x36/0x180
[  707.618008]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.618010]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.618014]  ? __sb_start_write+0x13e/0x1a0
[  707.618017]  ? vfs_write+0x18a/0x1b0
[  707.618023]  vfs_write+0xc1/0x1b0
[  707.618029]  SyS_write+0x55/0xc0
[  707.618032]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.618038]  do_syscall_64+0x7a/0x220
[  707.618043]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.618046] RIP: 0033:0x7f6d84405ccb
[  707.618048] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.618052] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.618054] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.618056] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.618058] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.618060] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.618076] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.618078]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.618081]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.618108] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.618110] (systemd) cpuset=/ mems_allowed=0
[  707.618116] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.618118] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.618120] Call Trace:
[  707.618124]  dump_stack+0x85/0xbf
[  707.618129]  warn_alloc+0xff/0x1a0
[  707.618144]  __alloc_pages_slowpath+0x102c/0x1070
[  707.618166]  __alloc_pages_nodemask+0x383/0x410
[  707.618177]  new_slab+0x2f3/0x7f0
[  707.618187]  ___slab_alloc+0x39a/0x5d0
[  707.618193]  ? avc_alloc_node+0x20/0x290
[  707.618197]  ? __lock_acquire+0x2d4/0x1340
[  707.618206]  ? avc_alloc_node+0x20/0x290
[  707.618208]  ? avc_alloc_node+0x20/0x290
[  707.618211]  ? __slab_alloc+0x4c/0xa0
[  707.618214]  __slab_alloc+0x4c/0xa0
[  707.618221]  kmem_cache_alloc+0x24a/0x2f0
[  707.618227]  avc_alloc_node+0x20/0x290
[  707.618233]  avc_compute_av+0xff/0x2b0
[  707.618240]  avc_has_perm_noaudit+0x16a/0x210
[  707.618252]  security_get_user_sids+0x363/0x490
[  707.618272]  sel_write_user+0x142/0x220
[  707.618279]  ? sel_write_member+0x280/0x280
[  707.618283]  selinux_transaction_write+0x45/0x70
[  707.618288]  __vfs_write+0x36/0x180
[  707.618294]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.618296]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.618299]  ? __sb_start_write+0x13e/0x1a0
[  707.618302]  ? vfs_write+0x18a/0x1b0
[  707.618308]  vfs_write+0xc1/0x1b0
[  707.618314]  SyS_write+0x55/0xc0
[  707.618317]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.618323]  do_syscall_64+0x7a/0x220
[  707.618328]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.618330] RIP: 0033:0x7f6d84405ccb
[  707.618332] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.618337] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.618339] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.618341] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.618343] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.618345] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.618361] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.618364]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.618366]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.618409] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.618411] (systemd) cpuset=/ mems_allowed=0
[  707.618418] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.618420] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.618422] Call Trace:
[  707.618427]  dump_stack+0x85/0xbf
[  707.618431]  warn_alloc+0xff/0x1a0
[  707.618447]  __alloc_pages_slowpath+0x102c/0x1070
[  707.618469]  __alloc_pages_nodemask+0x383/0x410
[  707.618479]  new_slab+0x2f3/0x7f0
[  707.618488]  ? avc_alloc_node+0x20/0x290
[  707.618491]  ___slab_alloc+0x39a/0x5d0
[  707.618498]  ? avc_alloc_node+0x20/0x290
[  707.618502]  ? __lock_acquire+0x2d4/0x1340
[  707.618510]  ? avc_alloc_node+0x20/0x290
[  707.618513]  ? avc_alloc_node+0x20/0x290
[  707.618516]  ? __slab_alloc+0x4c/0xa0
[  707.618519]  __slab_alloc+0x4c/0xa0
[  707.618526]  kmem_cache_alloc+0x24a/0x2f0
[  707.618532]  avc_alloc_node+0x20/0x290
[  707.618538]  avc_compute_av+0xff/0x2b0
[  707.618545]  avc_has_perm_noaudit+0x16a/0x210
[  707.618557]  security_get_user_sids+0x363/0x490
[  707.618577]  sel_write_user+0x142/0x220
[  707.618583]  ? sel_write_member+0x280/0x280
[  707.618588]  selinux_transaction_write+0x45/0x70
[  707.618593]  __vfs_write+0x36/0x180
[  707.618598]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.618600]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.618603]  ? __sb_start_write+0x13e/0x1a0
[  707.618606]  ? vfs_write+0x18a/0x1b0
[  707.618612]  vfs_write+0xc1/0x1b0
[  707.618618]  SyS_write+0x55/0xc0
[  707.618621]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.618627]  do_syscall_64+0x7a/0x220
[  707.618632]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.618635] RIP: 0033:0x7f6d84405ccb
[  707.618637] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.618641] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.618643] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.618646] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.618648] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.618650] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.618666] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.618668]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.618670]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.618696] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.618697] (systemd) cpuset=/ mems_allowed=0
[  707.618704] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.618706] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.618708] Call Trace:
[  707.618712]  dump_stack+0x85/0xbf
[  707.618716]  warn_alloc+0xff/0x1a0
[  707.618732]  __alloc_pages_slowpath+0x102c/0x1070
[  707.618754]  __alloc_pages_nodemask+0x383/0x410
[  707.618764]  new_slab+0x2f3/0x7f0
[  707.618774]  ___slab_alloc+0x39a/0x5d0
[  707.618781]  ? avc_alloc_node+0x20/0x290
[  707.618785]  ? __lock_acquire+0x2d4/0x1340
[  707.618794]  ? avc_alloc_node+0x20/0x290
[  707.618796]  ? avc_alloc_node+0x20/0x290
[  707.618800]  ? __slab_alloc+0x4c/0xa0
[  707.618802]  __slab_alloc+0x4c/0xa0
[  707.618809]  kmem_cache_alloc+0x24a/0x2f0
[  707.618815]  avc_alloc_node+0x20/0x290
[  707.618821]  avc_compute_av+0xff/0x2b0
[  707.618828]  avc_has_perm_noaudit+0x16a/0x210
[  707.618841]  security_get_user_sids+0x363/0x490
[  707.618861]  sel_write_user+0x142/0x220
[  707.618868]  ? sel_write_member+0x280/0x280
[  707.618872]  selinux_transaction_write+0x45/0x70
[  707.618877]  __vfs_write+0x36/0x180
[  707.618882]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.618884]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.618887]  ? __sb_start_write+0x13e/0x1a0
[  707.618890]  ? vfs_write+0x18a/0x1b0
[  707.618897]  vfs_write+0xc1/0x1b0
[  707.618902]  SyS_write+0x55/0xc0
[  707.618905]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.618912]  do_syscall_64+0x7a/0x220
[  707.618917]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.618920] RIP: 0033:0x7f6d84405ccb
[  707.618922] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.618926] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.618928] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.618930] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.618932] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.618934] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.618949] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.618952]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.618954]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.618979] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.618981] (systemd) cpuset=/ mems_allowed=0
[  707.618987] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.618989] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.618991] Call Trace:
[  707.618995]  dump_stack+0x85/0xbf
[  707.618999]  warn_alloc+0xff/0x1a0
[  707.619015]  __alloc_pages_slowpath+0x102c/0x1070
[  707.619038]  __alloc_pages_nodemask+0x383/0x410
[  707.619049]  new_slab+0x2f3/0x7f0
[  707.619059]  ___slab_alloc+0x39a/0x5d0
[  707.619066]  ? avc_alloc_node+0x20/0x290
[  707.619071]  ? __lock_acquire+0x2d4/0x1340
[  707.619079]  ? avc_alloc_node+0x20/0x290
[  707.619082]  ? avc_alloc_node+0x20/0x290
[  707.619085]  ? __slab_alloc+0x4c/0xa0
[  707.619088]  __slab_alloc+0x4c/0xa0
[  707.619095]  kmem_cache_alloc+0x24a/0x2f0
[  707.619102]  avc_alloc_node+0x20/0x290
[  707.619108]  avc_compute_av+0xff/0x2b0
[  707.619115]  avc_has_perm_noaudit+0x16a/0x210
[  707.619128]  security_get_user_sids+0x363/0x490
[  707.619147]  sel_write_user+0x142/0x220
[  707.619154]  ? sel_write_member+0x280/0x280
[  707.619158]  selinux_transaction_write+0x45/0x70
[  707.619163]  __vfs_write+0x36/0x180
[  707.619168]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.619171]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.619174]  ? __sb_start_write+0x13e/0x1a0
[  707.619177]  ? vfs_write+0x18a/0x1b0
[  707.619183]  vfs_write+0xc1/0x1b0
[  707.619189]  SyS_write+0x55/0xc0
[  707.619192]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.619199]  do_syscall_64+0x7a/0x220
[  707.619204]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.619206] RIP: 0033:0x7f6d84405ccb
[  707.619208] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.619212] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.619214] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.619216] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.619218] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.619220] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.619236] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.619238]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.619241]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.619282] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.619285] (systemd) cpuset=/ mems_allowed=0
[  707.619291] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.619294] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.619296] Call Trace:
[  707.619300]  dump_stack+0x85/0xbf
[  707.619305]  warn_alloc+0xff/0x1a0
[  707.619321]  __alloc_pages_slowpath+0x102c/0x1070
[  707.619345]  __alloc_pages_nodemask+0x383/0x410
[  707.619356]  new_slab+0x2f3/0x7f0
[  707.619366]  ___slab_alloc+0x39a/0x5d0
[  707.619373]  ? avc_alloc_node+0x20/0x290
[  707.619377]  ? __lock_acquire+0x2d4/0x1340
[  707.619386]  ? avc_alloc_node+0x20/0x290
[  707.619389]  ? avc_alloc_node+0x20/0x290
[  707.619392]  ? __slab_alloc+0x4c/0xa0
[  707.619395]  __slab_alloc+0x4c/0xa0
[  707.619402]  kmem_cache_alloc+0x24a/0x2f0
[  707.619409]  avc_alloc_node+0x20/0x290
[  707.619415]  avc_compute_av+0xff/0x2b0
[  707.619423]  avc_has_perm_noaudit+0x16a/0x210
[  707.619436]  security_get_user_sids+0x363/0x490
[  707.619456]  sel_write_user+0x142/0x220
[  707.619464]  ? sel_write_member+0x280/0x280
[  707.619468]  selinux_transaction_write+0x45/0x70
[  707.619473]  __vfs_write+0x36/0x180
[  707.619479]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.619481]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.619485]  ? __sb_start_write+0x13e/0x1a0
[  707.619487]  ? vfs_write+0x18a/0x1b0
[  707.619494]  vfs_write+0xc1/0x1b0
[  707.619500]  SyS_write+0x55/0xc0
[  707.619503]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.619510]  do_syscall_64+0x7a/0x220
[  707.619515]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.619518] RIP: 0033:0x7f6d84405ccb
[  707.619520] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.619524] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.619527] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.619529] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.619531] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.619533] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.619550] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.619552]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.619555]   node 0: slabs: 1143, objs: 64008, free: 0
[  707.619577] (systemd): page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  707.619579] (systemd) cpuset=/ mems_allowed=0
[  707.619585] CPU: 4 PID: 8005 Comm: (systemd) Not tainted 4.16.0-rc1-amd-vega+ #8
[  707.619587] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  707.619589] Call Trace:
[  707.619593]  dump_stack+0x85/0xbf
[  707.619598]  warn_alloc+0xff/0x1a0
[  707.619614]  __alloc_pages_slowpath+0x102c/0x1070
[  707.619638]  __alloc_pages_nodemask+0x383/0x410
[  707.619648]  new_slab+0x2f3/0x7f0
[  707.619659]  ___slab_alloc+0x39a/0x5d0
[  707.619665]  ? avc_alloc_node+0x20/0x290
[  707.619669]  ? __lock_acquire+0x2d4/0x1340
[  707.619678]  ? avc_alloc_node+0x20/0x290
[  707.619681]  ? avc_alloc_node+0x20/0x290
[  707.619684]  ? __slab_alloc+0x4c/0xa0
[  707.619687]  __slab_alloc+0x4c/0xa0
[  707.619694]  kmem_cache_alloc+0x24a/0x2f0
[  707.619700]  avc_alloc_node+0x20/0x290
[  707.619706]  avc_compute_av+0xff/0x2b0
[  707.619714]  avc_has_perm_noaudit+0x16a/0x210
[  707.619726]  security_get_user_sids+0x363/0x490
[  707.619745]  sel_write_user+0x142/0x220
[  707.619752]  ? sel_write_member+0x280/0x280
[  707.619756]  selinux_transaction_write+0x45/0x70
[  707.619761]  __vfs_write+0x36/0x180
[  707.619766]  ? rcu_read_lock_sched_held+0x6b/0x80
[  707.619769]  ? rcu_sync_lockdep_assert+0x2e/0x60
[  707.619772]  ? __sb_start_write+0x13e/0x1a0
[  707.619774]  ? vfs_write+0x18a/0x1b0
[  707.619781]  vfs_write+0xc1/0x1b0
[  707.619786]  SyS_write+0x55/0xc0
[  707.619789]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  707.619795]  do_syscall_64+0x7a/0x220
[  707.619800]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  707.619803] RIP: 0033:0x7f6d84405ccb
[  707.619805] RSP: 002b:00007ffd68f04090 EFLAGS: 00000293 ORIG_RAX: 0000000000000001
[  707.619809] RAX: ffffffffffffffda RBX: 000055767710ef60 RCX: 00007f6d84405ccb
[  707.619811] RDX: 0000000000000034 RSI: 000055767710ef60 RDI: 0000000000000009
[  707.619813] RBP: 0000000000000034 R08: 0000000000000000 R09: 0000557677107ad0
[  707.619815] R10: 00007f6d841b22e0 R11: 0000000000000293 R12: 0000000000001000
[  707.619817] R13: 00000000ffffffff R14: 000055767710ef60 R15: 000055767710ef60
[  707.619833] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  707.619835]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  707.619838]   node 0: slabs: 1143, objs: 64008, free: 0
[  711.982398] kworker/dying (145) used greatest stack depth: 10696 bytes left

[  713.331872] ============================================
[  713.331873] WARNING: possible recursive locking detected
[  713.331875] 4.16.0-rc1-amd-vega+ #8 Not tainted
[  713.331876] --------------------------------------------
[  713.331877] CPU 0/KVM/5886 is trying to acquire lock:
[  713.331878]  (&mm->mmap_sem){++++}, at: [<0000000033816a39>] get_user_pages_unlocked+0xe0/0x1d0
[  713.331884] 
               but task is already holding lock:
[  713.331886]  (&mm->mmap_sem){++++}, at: [<00000000ac6584cb>] get_user_pages_unlocked+0x5e/0x1d0
[  713.331889] 
               other info that might help us debug this:
[  713.331890]  Possible unsafe locking scenario:

[  713.331891]        CPU0
[  713.331892]        ----
[  713.331893]   lock(&mm->mmap_sem);
[  713.331894]   lock(&mm->mmap_sem);
[  713.331896] 
                *** DEADLOCK ***

[  713.331897]  May be due to missing lock nesting notation

[  713.331898] 3 locks held by CPU 0/KVM/5886:
[  713.331899]  #0:  (&vcpu->mutex){+.+.}, at: [<00000000bd620ae1>] kvm_vcpu_ioctl+0x81/0x6b0 [kvm]
[  713.331919]  #1:  (&kvm->srcu){....}, at: [<000000008888b6d6>] kvm_arch_vcpu_ioctl_run+0x752/0x1b90 [kvm]
[  713.331929]  #2:  (&mm->mmap_sem){++++}, at: [<00000000ac6584cb>] get_user_pages_unlocked+0x5e/0x1d0
[  713.331933] 
               stack backtrace:
[  713.331935] CPU: 0 PID: 5886 Comm: CPU 0/KVM Not tainted 4.16.0-rc1-amd-vega+ #8
[  713.331936] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  713.331937] Call Trace:
[  713.331943]  dump_stack+0x85/0xbf
[  713.331946]  __lock_acquire+0x694/0x1340
[  713.331950]  ? lock_acquire+0x9f/0x200
[  713.331951]  ? __get_user_pages+0x1b3/0x760
[  713.331953]  lock_acquire+0x9f/0x200
[  713.331955]  ? get_user_pages_unlocked+0xe0/0x1d0
[  713.331958]  down_read+0x44/0xa0
[  713.331960]  ? get_user_pages_unlocked+0xe0/0x1d0
[  713.331962]  get_user_pages_unlocked+0xe0/0x1d0
[  713.331970]  __gfn_to_pfn_memslot+0x115/0x410 [kvm]
[  713.331980]  try_async_pf+0x67/0x3b0 [kvm]
[  713.331989]  tdp_page_fault+0x13e/0x290 [kvm]
[  713.331998]  kvm_mmu_page_fault+0x59/0x140 [kvm]
[  713.332006]  kvm_arch_vcpu_ioctl_run+0x7e7/0x1b90 [kvm]
[  713.332008]  ? __lock_acquire+0x2d4/0x1340
[  713.332011]  ? _copy_to_user+0x56/0x70
[  713.332018]  ? kvm_vcpu_ioctl+0x333/0x6b0 [kvm]
[  713.332024]  kvm_vcpu_ioctl+0x333/0x6b0 [kvm]
[  713.332026]  ? do_futex+0x463/0xb20
[  713.332029]  do_vfs_ioctl+0xa5/0x6e0
[  713.332032]  SyS_ioctl+0x74/0x80
[  713.332035]  do_syscall_64+0x7a/0x220
[  713.332037]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  713.332039] RIP: 0033:0x7fecaaaa50f7
[  713.332040] RSP: 002b:00007fec9af44878 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[  713.332042] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007fecaaaa50f7
[  713.332043] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
[  713.332044] RBP: 000055e07cadfe40 R08: 000055e07cafa1f0 R09: 00000000000000ff
[  713.332046] R10: 0000000000000001 R11: 0000000000000246 R12: 000055e07e80f5d6
[  713.332047] R13: 0000000000000000 R14: 00007fecb4172000 R15: 000055e07e80f540
[  713.332056] WARNING: CPU: 0 PID: 5886 at mm/gup.c:498 __get_user_pages+0x622/0x760
[  713.332058] Modules linked in: macvtap macvlan tap nls_utf8 isofs fuse nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_rpfilter ip6t_REJECT nf_reject_ipv6 xt_conntrack ip_set nfnetlink ebtable_nat ebtable_broute bridge stp llc ip6table_nat nf_conntrack_ipv6 nf_defrag_ipv6 nf_nat_ipv6 ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 nf_nat nf_conntrack iptable_mangle iptable_raw iptable_security ebtable_filter ebtables ip6table_filter ip6_tables sunrpc xfs vfat fat libcrc32c intel_rapl x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm snd_hda_codec_realtek irqbypass snd_hda_codec_generic crct10dif_pclmul crc32_pclmul snd_hda_codec_hdmi ghash_clmulni_intel intel_cstate snd_hda_intel snd_hda_codec snd_usb_audio intel_uncore
[  713.332124]  iTCO_wdt gspca_zc3xx iTCO_vendor_support intel_rapl_perf snd_hda_core snd_usbmidi_lib gspca_main snd_rawmidi ppdev snd_hwdep v4l2_common snd_seq huawei_cdc_ncm videodev cdc_wdm snd_seq_device option cdc_ncm usb_wwan snd_pcm cdc_ether media pcspkr joydev usbnet mei_me snd_timer i2c_i801 snd mei lpc_ich shpchp parport_pc soundcore parport video binfmt_misc hid_logitech_hidpp hid_logitech_dj amdgpu uas usb_storage chash i2c_algo_bit gpu_sched drm_kms_helper ttm drm crc32c_intel r8169 mii
[  713.332177] CPU: 0 PID: 5886 Comm: CPU 0/KVM Not tainted 4.16.0-rc1-amd-vega+ #8
[  713.332179] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  713.332182] RIP: 0010:__get_user_pages+0x622/0x760
[  713.332184] RSP: 0018:ffffaadc4ff6bac8 EFLAGS: 00010202
[  713.332186] RAX: 000000000000000c RBX: 0000000000000b26 RCX: ffffaadc4ff6ba0c
[  713.332188] RDX: 000000000000000c RSI: 00007fec4da99000 RDI: ffff8ab8f66cef30
[  713.332190] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000001
[  713.332192] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[  713.332194] R13: ffff8ab8b338be10 R14: 0000000000000b26 R15: ffff8ab8b3010000
[  713.332197] FS:  00007fec9af45700(0000) GS:ffff8aba7d600000(0000) knlGS:0000000000000000
[  713.332199] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  713.332201] CR2: 00000000ab3f0000 CR3: 00000005f33ac006 CR4: 00000000001626f0
[  713.332203] Call Trace:
[  713.332208]  get_user_pages_unlocked+0xff/0x1d0
[  713.332218]  __gfn_to_pfn_memslot+0x115/0x410 [kvm]
[  713.332229]  try_async_pf+0x67/0x3b0 [kvm]
[  713.332240]  tdp_page_fault+0x13e/0x290 [kvm]
[  713.332251]  kvm_mmu_page_fault+0x59/0x140 [kvm]
[  713.332260]  kvm_arch_vcpu_ioctl_run+0x7e7/0x1b90 [kvm]
[  713.332263]  ? __lock_acquire+0x2d4/0x1340
[  713.332267]  ? _copy_to_user+0x56/0x70
[  713.332276]  ? kvm_vcpu_ioctl+0x333/0x6b0 [kvm]
[  713.332283]  kvm_vcpu_ioctl+0x333/0x6b0 [kvm]
[  713.332286]  ? do_futex+0x463/0xb20
[  713.332291]  do_vfs_ioctl+0xa5/0x6e0
[  713.332296]  SyS_ioctl+0x74/0x80
[  713.332300]  do_syscall_64+0x7a/0x220
[  713.332303]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  713.332306] RIP: 0033:0x7fecaaaa50f7
[  713.332308] RSP: 002b:00007fec9af44878 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[  713.332311] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007fecaaaa50f7
[  713.332312] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
[  713.332314] RBP: 000055e07cadfe40 R08: 000055e07cafa1f0 R09: 00000000000000ff
[  713.332317] R10: 0000000000000001 R11: 0000000000000246 R12: 000055e07e80f5d6
[  713.332318] R13: 0000000000000000 R14: 00007fecb4172000 R15: 000055e07e80f540
[  713.332324] Code: ff ff 48 85 ed 48 c7 c0 00 fe ff ff 48 0f 44 e8 e9 d8 fb ff ff 48 8b 05 8d 2b 37 01 81 e2 ff 01 00 00 48 8d 04 d0 e9 c3 fc ff ff <0f> ff e9 7f fb ff ff 48 ba 00 00 00 c0 ff 3f 00 00 4c 21 ca e9 
[  713.332386] ---[ end trace 8c8d589eee083524 ]---
[  734.175374] setroubleshootd (8080) used greatest stack depth: 10296 bytes left
[  961.090359] warn_alloc: 21 callbacks suppressed
[  961.090361] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.090368] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.090378] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.090381] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.090385] Call Trace:
[  961.090393]  dump_stack+0x85/0xbf
[  961.090400]  warn_alloc+0xff/0x1a0
[  961.090415]  __alloc_pages_slowpath+0x102c/0x1070
[  961.090434]  __alloc_pages_nodemask+0x383/0x410
[  961.090443]  new_slab+0x2f3/0x7f0
[  961.090453]  ___slab_alloc+0x39a/0x5d0
[  961.090461]  ? avc_alloc_node+0x20/0x290
[  961.090468]  ? flex_array_get_ptr+0x5/0x20
[  961.090473]  ? avtab_search_node+0xb1/0x100
[  961.090479]  ? avc_alloc_node+0x20/0x290
[  961.090483]  ? avc_alloc_node+0x20/0x290
[  961.090487]  ? __slab_alloc+0x4c/0xa0
[  961.090492]  __slab_alloc+0x4c/0xa0
[  961.090499]  kmem_cache_alloc+0x24a/0x2f0
[  961.090506]  avc_alloc_node+0x20/0x290
[  961.090513]  avc_compute_av+0xff/0x2b0
[  961.090520]  avc_has_perm_noaudit+0x16a/0x210
[  961.090533]  cred_has_capability+0x77/0x120
[  961.090540]  ? lock_acquire+0x23/0x200
[  961.090545]  ? has_ns_capability_noaudit+0x5/0x150
[  961.090553]  security_capable_noaudit+0x44/0x60
[  961.090560]  has_ns_capability_noaudit+0x7c/0x150
[  961.090566]  oom_badness+0x1da/0x250
[  961.090573]  oom_evaluate_task+0xaf/0xe0
[  961.090579]  out_of_memory+0x3e6/0x5c0
[  961.090586]  __alloc_pages_slowpath+0xc49/0x1070
[  961.090605]  __alloc_pages_nodemask+0x383/0x410
[  961.090615]  filemap_fault+0x488/0xb20
[  961.090660]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.090665]  ? down_read_nested+0x70/0xb0
[  961.090693]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.090704]  __do_fault+0x1f/0x150
[  961.090710]  __handle_mm_fault+0xd66/0x1260
[  961.090725]  handle_mm_fault+0x15e/0x350
[  961.090733]  __do_page_fault+0x28c/0x530
[  961.090743]  do_page_fault+0x32/0x290
[  961.090750]  ? page_fault+0x36/0x60
[  961.090755]  page_fault+0x4c/0x60
[  961.090760] RIP: 0033:0x324614e
[  961.090763] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.090776] warn_alloc_show_mem: 9 callbacks suppressed
[  961.090777] Mem-Info:
[  961.090785] active_anon:7213354 inactive_anon:424899 isolated_anon:0
                active_file:155 inactive_file:90 isolated_file:0
                unevictable:363 dirty:0 writeback:0 unstable:0
                slab_reclaimable:29956 slab_unreclaimable:55266
                mapped:14368 shmem:14330 pagetables:84179 bounce:0
                free:48203 free_pcp:286 free_cma:0
[  961.090793] Node 0 active_anon:28853416kB inactive_anon:1699596kB active_file:620kB inactive_file:360kB unevictable:1452kB isolated(anon):0kB isolated(file):0kB mapped:57472kB dirty:0kB writeback:0kB shmem:57320kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 0kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[  961.090797] Node 0 DMA free:15864kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15988kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[  961.090804] lowmem_reserve[]: 0 3322 30890 30890 30890
[  961.090819] Node 0 DMA32 free:117064kB min:7264kB low:10664kB high:14064kB active_anon:3363932kB inactive_anon:1640kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:3571144kB managed:3505396kB mlocked:0kB kernel_stack:0kB pagetables:19872kB bounce:0kB free_pcp:324kB local_pcp:120kB free_cma:0kB
[  961.090826] lowmem_reserve[]: 0 0 27567 27567 27567
[  961.090841] Node 0 Normal free:59884kB min:60284kB low:88512kB high:116740kB active_anon:25488900kB inactive_anon:1697956kB active_file:620kB inactive_file:928kB unevictable:1452kB writepending:0kB present:29868032kB managed:28238348kB mlocked:1452kB kernel_stack:39728kB pagetables:316844kB bounce:0kB free_pcp:820kB local_pcp:108kB free_cma:0kB
[  961.090849] lowmem_reserve[]: 0 0 0 0 0
[  961.090863] Node 0 DMA: 2*4kB (U) 2*8kB (U) 0*16kB 1*32kB (U) 3*64kB (U) 2*128kB (U) 0*256kB 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15864kB
[  961.090909] Node 0 DMA32: 34*4kB (UME) 245*8kB (UE) 127*16kB (UME) 74*32kB (UE) 45*64kB (UME) 28*128kB (UE) 9*256kB (UE) 4*512kB (ME) 5*1024kB (ME) 2*2048kB (UM) 22*4096kB (M) = 116640kB
[  961.090954] Node 0 Normal: 4278*4kB (UMEH) 1801*8kB (UMEH) 619*16kB (UMEH) 405*32kB (UMEH) 65*64kB (UME) 3*128kB (M) 0*256kB 1*512kB (M) 0*1024kB 0*2048kB 0*4096kB = 59440kB
[  961.090991] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[  961.090995] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[  961.090998] 20202 total pagecache pages
[  961.091010] 5384 pages in swap cache
[  961.091014] Swap cache stats: add 16227627, delete 16235835, find 384644/878986
[  961.091017] Free swap  = 0kB
[  961.091020] Total swap = 62494716kB
[  961.091024] 8363791 pages RAM
[  961.091027] 0 pages HighMem/MovableOnly
[  961.091030] 423881 pages reserved
[  961.091033] 0 pages cma reserved
[  961.091036] 0 pages hwpoisoned
[  961.091041] slab_out_of_memory: 21 callbacks suppressed
[  961.091042] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.091047]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.091051]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.091103] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.091106] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.091114] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.091118] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.091121] Call Trace:
[  961.091127]  dump_stack+0x85/0xbf
[  961.091133]  warn_alloc+0xff/0x1a0
[  961.091147]  __alloc_pages_slowpath+0x102c/0x1070
[  961.091167]  __alloc_pages_nodemask+0x383/0x410
[  961.091176]  new_slab+0x2f3/0x7f0
[  961.091185]  ___slab_alloc+0x39a/0x5d0
[  961.091191]  ? avc_alloc_node+0x20/0x290
[  961.091198]  ? flex_array_get_ptr+0x5/0x20
[  961.091202]  ? avtab_search_node+0xb1/0x100
[  961.091208]  ? avc_alloc_node+0x20/0x290
[  961.091212]  ? avc_alloc_node+0x20/0x290
[  961.091217]  ? __slab_alloc+0x4c/0xa0
[  961.091221]  __slab_alloc+0x4c/0xa0
[  961.091228]  kmem_cache_alloc+0x24a/0x2f0
[  961.091235]  avc_alloc_node+0x20/0x290
[  961.091241]  avc_compute_av+0xff/0x2b0
[  961.091249]  avc_has_perm_noaudit+0x16a/0x210
[  961.091260]  cred_has_capability+0x77/0x120
[  961.091265]  ? lock_acquire+0x23/0x200
[  961.091270]  ? has_ns_capability_noaudit+0x5/0x150
[  961.091277]  security_capable_noaudit+0x44/0x60
[  961.091283]  has_ns_capability_noaudit+0x7c/0x150
[  961.091288]  oom_badness+0x1da/0x250
[  961.091295]  oom_evaluate_task+0xaf/0xe0
[  961.091300]  out_of_memory+0x3e6/0x5c0
[  961.091307]  __alloc_pages_slowpath+0xc49/0x1070
[  961.091326]  __alloc_pages_nodemask+0x383/0x410
[  961.091335]  filemap_fault+0x488/0xb20
[  961.091368]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.091373]  ? down_read_nested+0x70/0xb0
[  961.091398]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.091407]  __do_fault+0x1f/0x150
[  961.091413]  __handle_mm_fault+0xd66/0x1260
[  961.091426]  handle_mm_fault+0x15e/0x350
[  961.091433]  __do_page_fault+0x28c/0x530
[  961.091444]  do_page_fault+0x32/0x290
[  961.091449]  ? page_fault+0x36/0x60
[  961.091454]  page_fault+0x4c/0x60
[  961.091458] RIP: 0033:0x324614e
[  961.091462] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.091475] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.091480]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.091484]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.091530] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.091533] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.091541] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.091544] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.091547] Call Trace:
[  961.091552]  dump_stack+0x85/0xbf
[  961.091558]  warn_alloc+0xff/0x1a0
[  961.091571]  __alloc_pages_slowpath+0x102c/0x1070
[  961.091591]  __alloc_pages_nodemask+0x383/0x410
[  961.091601]  new_slab+0x2f3/0x7f0
[  961.091611]  ___slab_alloc+0x39a/0x5d0
[  961.091617]  ? avc_alloc_node+0x20/0x290
[  961.091623]  ? flex_array_get_ptr+0x5/0x20
[  961.091627]  ? avtab_search_node+0xb1/0x100
[  961.091633]  ? avc_alloc_node+0x20/0x290
[  961.091637]  ? avc_alloc_node+0x20/0x290
[  961.091641]  ? __slab_alloc+0x4c/0xa0
[  961.091646]  __slab_alloc+0x4c/0xa0
[  961.091653]  kmem_cache_alloc+0x24a/0x2f0
[  961.091660]  avc_alloc_node+0x20/0x290
[  961.091666]  avc_compute_av+0xff/0x2b0
[  961.091673]  avc_has_perm_noaudit+0x16a/0x210
[  961.091684]  cred_has_capability+0x77/0x120
[  961.091690]  ? lock_acquire+0x23/0x200
[  961.091695]  ? has_ns_capability_noaudit+0x5/0x150
[  961.091702]  security_capable_noaudit+0x44/0x60
[  961.091708]  has_ns_capability_noaudit+0x7c/0x150
[  961.091715]  oom_badness+0x1da/0x250
[  961.091721]  oom_evaluate_task+0xaf/0xe0
[  961.091727]  out_of_memory+0x3e6/0x5c0
[  961.091735]  __alloc_pages_slowpath+0xc49/0x1070
[  961.091754]  __alloc_pages_nodemask+0x383/0x410
[  961.091763]  filemap_fault+0x488/0xb20
[  961.091795]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.091801]  ? down_read_nested+0x70/0xb0
[  961.091826]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.091836]  __do_fault+0x1f/0x150
[  961.091842]  __handle_mm_fault+0xd66/0x1260
[  961.091858]  handle_mm_fault+0x15e/0x350
[  961.091865]  __do_page_fault+0x28c/0x530
[  961.091876]  do_page_fault+0x32/0x290
[  961.091882]  ? page_fault+0x36/0x60
[  961.091887]  page_fault+0x4c/0x60
[  961.091891] RIP: 0033:0x324614e
[  961.091895] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.091909] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.091915]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.091919]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.092093] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.092097] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.092105] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.092109] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.092113] Call Trace:
[  961.092118]  dump_stack+0x85/0xbf
[  961.092124]  warn_alloc+0xff/0x1a0
[  961.092140]  __alloc_pages_slowpath+0x102c/0x1070
[  961.092163]  __alloc_pages_nodemask+0x383/0x410
[  961.092174]  new_slab+0x2f3/0x7f0
[  961.092184]  ___slab_alloc+0x39a/0x5d0
[  961.092192]  ? avc_alloc_node+0x20/0x290
[  961.092199]  ? flex_array_get_ptr+0x5/0x20
[  961.092204]  ? avtab_search_node+0xb1/0x100
[  961.092211]  ? avc_alloc_node+0x20/0x290
[  961.092214]  ? avc_alloc_node+0x20/0x290
[  961.092220]  ? __slab_alloc+0x4c/0xa0
[  961.092225]  __slab_alloc+0x4c/0xa0
[  961.092234]  kmem_cache_alloc+0x24a/0x2f0
[  961.092241]  avc_alloc_node+0x20/0x290
[  961.092249]  avc_compute_av+0xff/0x2b0
[  961.092258]  avc_has_perm_noaudit+0x16a/0x210
[  961.092272]  cred_has_capability+0x77/0x120
[  961.092278]  ? lock_acquire+0x23/0x200
[  961.092284]  ? has_ns_capability_noaudit+0x5/0x150
[  961.092292]  security_capable_noaudit+0x44/0x60
[  961.092299]  has_ns_capability_noaudit+0x7c/0x150
[  961.092307]  oom_badness+0x1da/0x250
[  961.092315]  oom_evaluate_task+0xaf/0xe0
[  961.092321]  out_of_memory+0x3e6/0x5c0
[  961.092330]  __alloc_pages_slowpath+0xc49/0x1070
[  961.092351]  __alloc_pages_nodemask+0x383/0x410
[  961.092362]  filemap_fault+0x488/0xb20
[  961.092396]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.092401]  ? down_read_nested+0x70/0xb0
[  961.092427]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.092435]  __do_fault+0x1f/0x150
[  961.092440]  __handle_mm_fault+0xd66/0x1260
[  961.092454]  handle_mm_fault+0x15e/0x350
[  961.092461]  __do_page_fault+0x28c/0x530
[  961.092472]  do_page_fault+0x32/0x290
[  961.092478]  ? page_fault+0x36/0x60
[  961.092483]  page_fault+0x4c/0x60
[  961.092487] RIP: 0033:0x324614e
[  961.092491] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.092505] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.092511]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.092515]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.092541] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.092545] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.092553] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.092557] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.092561] Call Trace:
[  961.092566]  dump_stack+0x85/0xbf
[  961.092572]  warn_alloc+0xff/0x1a0
[  961.092586]  __alloc_pages_slowpath+0x102c/0x1070
[  961.092607]  __alloc_pages_nodemask+0x383/0x410
[  961.092619]  new_slab+0x2f3/0x7f0
[  961.092630]  ___slab_alloc+0x39a/0x5d0
[  961.092637]  ? avc_alloc_node+0x20/0x290
[  961.092643]  ? flex_array_get_ptr+0x5/0x20
[  961.092647]  ? avtab_search_node+0xb1/0x100
[  961.092654]  ? avc_alloc_node+0x20/0x290
[  961.092658]  ? avc_alloc_node+0x20/0x290
[  961.092663]  ? __slab_alloc+0x4c/0xa0
[  961.092667]  __slab_alloc+0x4c/0xa0
[  961.092675]  kmem_cache_alloc+0x24a/0x2f0
[  961.092682]  avc_alloc_node+0x20/0x290
[  961.092689]  avc_compute_av+0xff/0x2b0
[  961.092697]  avc_has_perm_noaudit+0x16a/0x210
[  961.092709]  cred_has_capability+0x77/0x120
[  961.092715]  ? lock_acquire+0x23/0x200
[  961.092721]  ? has_ns_capability_noaudit+0x5/0x150
[  961.092728]  security_capable_noaudit+0x44/0x60
[  961.092734]  has_ns_capability_noaudit+0x7c/0x150
[  961.092741]  oom_badness+0x1da/0x250
[  961.092748]  oom_evaluate_task+0xaf/0xe0
[  961.092754]  out_of_memory+0x3e6/0x5c0
[  961.092763]  __alloc_pages_slowpath+0xc49/0x1070
[  961.092786]  __alloc_pages_nodemask+0x383/0x410
[  961.092798]  filemap_fault+0x488/0xb20
[  961.092832]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.092837]  ? down_read_nested+0x70/0xb0
[  961.092862]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.092872]  __do_fault+0x1f/0x150
[  961.092879]  __handle_mm_fault+0xd66/0x1260
[  961.092895]  handle_mm_fault+0x15e/0x350
[  961.092902]  __do_page_fault+0x28c/0x530
[  961.092912]  do_page_fault+0x32/0x290
[  961.092917]  ? page_fault+0x36/0x60
[  961.092923]  page_fault+0x4c/0x60
[  961.092927] RIP: 0033:0x324614e
[  961.092930] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.092945] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.092949]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.092953]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.092984] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.092988] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.092997] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.093000] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.093003] Call Trace:
[  961.093009]  dump_stack+0x85/0xbf
[  961.093014]  warn_alloc+0xff/0x1a0
[  961.093030]  __alloc_pages_slowpath+0x102c/0x1070
[  961.093050]  __alloc_pages_nodemask+0x383/0x410
[  961.093061]  new_slab+0x2f3/0x7f0
[  961.093071]  ___slab_alloc+0x39a/0x5d0
[  961.093077]  ? avc_alloc_node+0x20/0x290
[  961.093084]  ? flex_array_get_ptr+0x5/0x20
[  961.093088]  ? avtab_search_node+0xb1/0x100
[  961.093095]  ? avc_alloc_node+0x20/0x290
[  961.093100]  ? avc_alloc_node+0x20/0x290
[  961.093105]  ? __slab_alloc+0x4c/0xa0
[  961.093109]  __slab_alloc+0x4c/0xa0
[  961.093116]  kmem_cache_alloc+0x24a/0x2f0
[  961.093123]  avc_alloc_node+0x20/0x290
[  961.093130]  avc_compute_av+0xff/0x2b0
[  961.093137]  avc_has_perm_noaudit+0x16a/0x210
[  961.093148]  cred_has_capability+0x77/0x120
[  961.093153]  ? lock_acquire+0x23/0x200
[  961.093158]  ? has_ns_capability_noaudit+0x5/0x150
[  961.093165]  security_capable_noaudit+0x44/0x60
[  961.093172]  has_ns_capability_noaudit+0x7c/0x150
[  961.093178]  oom_badness+0x1da/0x250
[  961.093185]  oom_evaluate_task+0xaf/0xe0
[  961.093191]  out_of_memory+0x3e6/0x5c0
[  961.093199]  __alloc_pages_slowpath+0xc49/0x1070
[  961.093218]  __alloc_pages_nodemask+0x383/0x410
[  961.093228]  filemap_fault+0x488/0xb20
[  961.093260]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.093265]  ? down_read_nested+0x70/0xb0
[  961.093290]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.093300]  __do_fault+0x1f/0x150
[  961.093306]  __handle_mm_fault+0xd66/0x1260
[  961.093322]  handle_mm_fault+0x15e/0x350
[  961.093329]  __do_page_fault+0x28c/0x530
[  961.093340]  do_page_fault+0x32/0x290
[  961.093346]  ? page_fault+0x36/0x60
[  961.093351]  page_fault+0x4c/0x60
[  961.093355] RIP: 0033:0x324614e
[  961.093359] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.093373] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.093379]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.093382]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.093425] Chrome_ChildIOT: page allocation failure: order:0, mode:0x1000000(GFP_NOWAIT), nodemask=(null)
[  961.093429] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.093437] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.093441] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.093444] Call Trace:
[  961.093449]  dump_stack+0x85/0xbf
[  961.093455]  warn_alloc+0xff/0x1a0
[  961.093470]  __alloc_pages_slowpath+0x102c/0x1070
[  961.093490]  __alloc_pages_nodemask+0x383/0x410
[  961.093500]  new_slab+0x2f3/0x7f0
[  961.093510]  ___slab_alloc+0x39a/0x5d0
[  961.093517]  ? avc_alloc_node+0x20/0x290
[  961.093524]  ? flex_array_get_ptr+0x5/0x20
[  961.093528]  ? avtab_search_node+0xb1/0x100
[  961.093535]  ? avc_alloc_node+0x20/0x290
[  961.093538]  ? avc_alloc_node+0x20/0x290
[  961.093543]  ? __slab_alloc+0x4c/0xa0
[  961.093548]  __slab_alloc+0x4c/0xa0
[  961.093556]  kmem_cache_alloc+0x24a/0x2f0
[  961.093563]  avc_alloc_node+0x20/0x290
[  961.093571]  avc_compute_av+0xff/0x2b0
[  961.093579]  avc_has_perm_noaudit+0x16a/0x210
[  961.093592]  cred_has_capability+0x77/0x120
[  961.093598]  ? lock_acquire+0x23/0x200
[  961.093604]  ? has_ns_capability_noaudit+0x5/0x150
[  961.093612]  security_capable_noaudit+0x44/0x60
[  961.093618]  has_ns_capability_noaudit+0x7c/0x150
[  961.093625]  oom_badness+0x1da/0x250
[  961.093632]  oom_evaluate_task+0xaf/0xe0
[  961.093638]  out_of_memory+0x3e6/0x5c0
[  961.093646]  __alloc_pages_slowpath+0xc49/0x1070
[  961.093666]  __alloc_pages_nodemask+0x383/0x410
[  961.093676]  filemap_fault+0x488/0xb20
[  961.093708]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.093713]  ? down_read_nested+0x70/0xb0
[  961.093738]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.093748]  __do_fault+0x1f/0x150
[  961.093754]  __handle_mm_fault+0xd66/0x1260
[  961.093768]  handle_mm_fault+0x15e/0x350
[  961.093775]  __do_page_fault+0x28c/0x530
[  961.093786]  do_page_fault+0x32/0x290
[  961.093791]  ? page_fault+0x36/0x60
[  961.093797]  page_fault+0x4c/0x60
[  961.093801] RIP: 0033:0x324614e
[  961.093805] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.093819] SLUB: Unable to allocate memory on node -1, gfp=0x1008000(GFP_NOWAIT|__GFP_ZERO)
[  961.093824]   cache: page->ptl, object size: 72, buffer size: 72, default order: 0, min order: 0
[  961.093829]   node 0: slabs: 1704, objs: 95424, free: 0
[  961.095567] Chrome_ChildIOT invoked oom-killer: gfp_mask=0x14200ca(GFP_HIGHUSER_MOVABLE), nodemask=(null), order=0, oom_score_adj=300
[  961.095570] Chrome_ChildIOT cpuset=/ mems_allowed=0
[  961.095579] CPU: 1 PID: 6163 Comm: Chrome_ChildIOT Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  961.095582] Hardware name: Gigabyte Technology Co., Ltd. Z87M-D3H/Z87M-D3H, BIOS F11 08/12/2014
[  961.095585] Call Trace:
[  961.095591]  dump_stack+0x85/0xbf
[  961.095596]  dump_header+0x6e/0x2f9
[  961.095607]  oom_kill_process+0x21c/0x4b0
[  961.095615]  out_of_memory+0x2f7/0x5c0
[  961.095623]  __alloc_pages_slowpath+0xc49/0x1070
[  961.095644]  __alloc_pages_nodemask+0x383/0x410
[  961.095653]  filemap_fault+0x488/0xb20
[  961.095689]  ? __xfs_filemap_fault+0x73/0x2e0 [xfs]
[  961.095694]  ? down_read_nested+0x70/0xb0
[  961.095721]  __xfs_filemap_fault+0x85/0x2e0 [xfs]
[  961.095730]  __do_fault+0x1f/0x150
[  961.095735]  __handle_mm_fault+0xd66/0x1260
[  961.095750]  handle_mm_fault+0x15e/0x350
[  961.095757]  __do_page_fault+0x28c/0x530
[  961.095767]  do_page_fault+0x32/0x290
[  961.095772]  ? page_fault+0x36/0x60
[  961.095777]  page_fault+0x4c/0x60
[  961.095781] RIP: 0033:0x324614e
[  961.095785] RSP: 002b:00007fa40150bec8 EFLAGS: 00010293
[  961.095795] Mem-Info:
[  961.095802] active_anon:7213354 inactive_anon:424899 isolated_anon:0
                active_file:228 inactive_file:163 isolated_file:0
                unevictable:363 dirty:0 writeback:0 unstable:0
                slab_reclaimable:29956 slab_unreclaimable:55266
                mapped:14368 shmem:14330 pagetables:84179 bounce:0
                free:48329 free_pcp:213 free_cma:0
[  961.095809] Node 0 active_anon:28853416kB inactive_anon:1699596kB active_file:912kB inactive_file:652kB unevictable:1452kB isolated(anon):0kB isolated(file):0kB mapped:57472kB dirty:0kB writeback:0kB shmem:57320kB shmem_thp: 0kB shmem_pmdmapped: 0kB anon_thp: 0kB writeback_tmp:0kB unstable:0kB all_unreclaimable? no
[  961.095812] Node 0 DMA free:15864kB min:32kB low:44kB high:56kB active_anon:0kB inactive_anon:0kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:15988kB managed:15896kB mlocked:0kB kernel_stack:0kB pagetables:0kB bounce:0kB free_pcp:0kB local_pcp:0kB free_cma:0kB
[  961.095819] lowmem_reserve[]: 0 3322 30890 30890 30890
[  961.095830] Node 0 DMA32 free:117064kB min:7264kB low:10664kB high:14064kB active_anon:3363932kB inactive_anon:1640kB active_file:0kB inactive_file:0kB unevictable:0kB writepending:0kB present:3571144kB managed:3505396kB mlocked:0kB kernel_stack:0kB pagetables:19872kB bounce:0kB free_pcp:308kB local_pcp:120kB free_cma:0kB
[  961.095837] lowmem_reserve[]: 0 0 27567 27567 27567
[  961.095849] Node 0 Normal free:60388kB min:60284kB low:88512kB high:116740kB active_anon:25488900kB inactive_anon:1697956kB active_file:620kB inactive_file:408kB unevictable:1452kB writepending:0kB present:29868032kB managed:28238348kB mlocked:1452kB kernel_stack:39728kB pagetables:316844kB bounce:0kB free_pcp:540kB local_pcp:228kB free_cma:0kB
[  961.095856] lowmem_reserve[]: 0 0 0 0 0
[  961.095869] Node 0 DMA: 2*4kB (U) 2*8kB (U) 0*16kB 1*32kB (U) 3*64kB (U) 2*128kB (U) 0*256kB 0*512kB 1*1024kB (U) 1*2048kB (M) 3*4096kB (M) = 15864kB
[  961.095907] Node 0 DMA32: 50*4kB (UME) 249*8kB (UME) 131*16kB (UME) 75*32kB (UME) 45*64kB (UME) 28*128kB (UE) 9*256kB (UE) 4*512kB (ME) 5*1024kB (ME) 2*2048kB (UM) 22*4096kB (M) = 116832kB
[  961.095977] Node 0 Normal: 4267*4kB (UMEH) 1817*8kB (UMEH) 626*16kB (UMEH) 407*32kB (UMEH) 65*64kB (UME) 3*128kB (M) 0*256kB 1*512kB (M) 0*1024kB 0*2048kB 0*4096kB = 59700kB
[  961.096017] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=1048576kB
[  961.096020] Node 0 hugepages_total=0 hugepages_free=0 hugepages_surp=0 hugepages_size=2048kB
[  961.096023] 20202 total pagecache pages
[  961.096030] 5384 pages in swap cache
[  961.096034] Swap cache stats: add 16227627, delete 16235835, find 384644/878986
[  961.096036] Free swap  = 0kB
[  961.096039] Total swap = 62494716kB
[  961.096042] 8363791 pages RAM
[  961.096045] 0 pages HighMem/MovableOnly
[  961.096048] 423881 pages reserved
[  961.096051] 0 pages cma reserved
[  961.096054] 0 pages hwpoisoned
[  961.096057] [ pid ]   uid  tgid total_vm      rss pgtables_bytes swapents oom_score_adj name
[  961.096071] [  595]     0   595    26458       90   225280      230             0 systemd-journal
[  961.096077] [  635]     0   635    25028        5   204800      865         -1000 systemd-udevd
[  961.096082] [  797]     0   797    25520       13    98304      472             0 lvmetad
[  961.096088] [  870]     0   870    16049       17   139264       94         -1000 auditd
[  961.096093] [  872]     0   872    21122        0    69632       40             0 audispd
[  961.096098] [  880]     0   880     9652       25   122880       69             0 sedispatch
[  961.096103] [  897]    81   897    20260      421   143360      195          -900 dbus-daemon
[  961.096108] [  904]     0   904    86495        1   356352     4872             0 firewalld
[  961.096112] [  905]     0   905    70718       35   360448      230             0 sssd
[  961.096117] [  907]     0   907     4327        1    65536       34             0 mcelog
[  961.096121] [  908]   172   908    46481        2   135168       77             0 rtkit-daemon
[  961.096126] [  910]     0   910     3456        0    73728       51             0 rngd
[  961.096130] [  911]     0   911   132296        1   372736      747             0 udisksd
[  961.096134] [  918]     0   918   104464      185   307200      318             0 ModemManager
[  961.096139] [  920]     0   920     4343        0    81920      118             0 alsactl
[  961.096143] [  923]     0   923     6507        1    94208      324             0 smartd
[  961.096148] [  927]    70   927    18576        0   147456      107             0 avahi-daemon
[  961.096153] [  928]     0   928    51276        0   180224      130             0 gssproxy
[  961.096157] [  936]    70   936    18544        0   131072       86             0 avahi-daemon
[  961.096162] [  946]     0   946   116634        0   303104      431             0 abrtd
[  961.096166] [  954]   995   954    29459       28   131072       86             0 chronyd
[  961.096171] [  965]   997   965   168619        0   294912     1611             0 polkitd
[  961.096175] [  969]     0   969    72562       91   368640      497             0 sssd_be
[  961.096179] [  983]     0   983    70137       98   380928      255             0 sssd_nss
[  961.096184] [  984]     0   984    19717       52   184320      519             0 systemd-logind
[  961.096189] [  985]     0   985   105640        0   221184      365             0 accounts-daemon
[  961.096193] [  996]     0   996   200190      423   454656      485             0 NetworkManager
[  961.096198] [ 1009]     0  1009   148264       30   679936     1783             0 php-fpm
[  961.096203] [ 1011]     0  1011   440574        0   847872     5661             0 libvirtd
[  961.096207] [ 1018]     0  1018    22276        0   200704      207         -1000 sshd
[  961.096211] [ 1034]     0  1034    10631        0   114688       53             0 atd
[  961.096216] [ 1035]     0  1035    35865       20   110592      142             0 crond
[  961.096220] [ 1036]     0  1036   106017        0   225280      290             0 gdm
[  961.096224] [ 1105]     0  1105    14257        0   114688      307             0 nginx
[  961.096228] [ 1108]   984  1108    19102        0   147456      423             0 nginx
[  961.096232] [ 1109]   984  1109    19102        0   147456      423             0 nginx
[  961.096237] [ 1110]   984  1110    19102        0   147456      423             0 nginx
[  961.096241] [ 1111]   984  1111    19102        0   147456      423             0 nginx
[  961.096245] [ 1112]   984  1112    19102        0   147456      423             0 nginx
[  961.096249] [ 1114]   984  1114    19102        0   147456      423             0 nginx
[  961.096253] [ 1115]   984  1115    19102        0   147456      423             0 nginx
[  961.096257] [ 1116]   984  1116    19102        0   147456      423             0 nginx
[  961.096261] [ 1148]    27  1148   535771       25   630784    14878             0 mysqld
[  961.096265] [ 1163]  1000  1163   151898        3   606208     1814             0 php-fpm
[  961.096270] [ 1164]  1000  1164   151898        3   606208     1814             0 php-fpm
[  961.096275] [ 1165]  1000  1165   151898        3   606208     1814             0 php-fpm
[  961.096279] [ 1166]  1000  1166   151898        4   606208     1814             0 php-fpm
[  961.096284] [ 1167]  1000  1167   151898        4   606208     1814             0 php-fpm
[  961.096288] [ 1168]    48  1168   151898        3   606208     1814             0 php-fpm
[  961.096293] [ 1170]    48  1170   151898        3   606208     1814             0 php-fpm
[  961.096298] [ 1172]    48  1172   151898        3   606208     1814             0 php-fpm
[  961.096303] [ 1174]    48  1174   151898        3   606208     1815             0 php-fpm
[  961.096308] [ 1176]    48  1176   151898        4   606208     1814             0 php-fpm
[  961.096313] [ 1299]     0  1299    98056        1   294912      467             0 gdm-session-wor
[  961.096318] [ 1357]    42  1357    22365        0   200704      333             0 systemd
[  961.096323] [ 1394]    42  1394    35926       31   262144     1160             0 (sd-pam)
[  961.096327] [ 1412]    42  1412   105310        1   360448      324             0 gdm-wayland-ses
[  961.096332] [ 1422]    42  1422    18128        1   139264      230             0 dbus-daemon
[  961.096337] [ 1426]     0  1426    19834        1   204800      477             0 dhclient
[  961.096342] [ 1429]    42  1429   166365        1   425984      600             0 gnome-session-b
[  961.096347] [ 1461]    42  1461  1066357     1930  1568768    13621             0 gnome-shell
[  961.096351] [ 1517]     0  1517   106845      146   258048      277             0 upowerd
[  961.096356] [ 1616]    42  1616   350984        0   598016     2931             0 Xwayland
[  961.096361] [ 1648]    42  1648    88945        0   188416      208             0 at-spi-bus-laun
[  961.096365] [ 1653]    42  1653    18027        1   139264      132             0 dbus-daemon
[  961.096370] [ 1656]    42  1656    55770        0   200704      209             0 at-spi2-registr
[  961.096375] [ 1662]    42  1662   368517        0   385024      860             0 pulseaudio
[  961.096380] [ 1669]     0  1669    19834        1   188416      478             0 dhclient
[  961.096385] [ 1719]     0  1719     4442        1    69632       54             0 sbis3plugin
[  961.096390] [ 1720]     0  1720   172986       79   503808     1207             0 sbis3plugin
[  961.096394] [ 1874]    42  1874   122025        0   372736      426             0 xdg-permission-
[  961.096399] [ 1880]    42  1880   118285       25   200704      621             0 ibus-daemon
[  961.096404] [ 1883]    42  1883    96890        0   188416      190             0 ibus-dconf
[  961.096409] [ 1886]    42  1886   276562        0   753664     2561             0 ibus-x11
[  961.096413] [ 1888]    42  1888    96856        0   180224      181             0 ibus-portal
[  961.096418] [ 1907]     0  1907    12545        2   147456      146             0 wpa_supplicant
[  961.096423] [ 1908]     0  1908   167026        0   700416    24204             0 packagekitd
[  961.096427] [ 1912]    42  1912   297811        0   782336     2782             0 gsd-wacom
[  961.096432] [ 1915]    42  1915   314183        0   778240     2708             0 gsd-xsettings
[  961.096437] [ 1919]    42  1919   298739        0   819200     2613             0 gsd-a11y-keyboa
[  961.096442] [ 1925]     0  1925   272242       77   860160      298             0 abrt-dump-journ
[  961.096446] [ 1926]    42  1926   127618        0   393216      389             0 gsd-a11y-settin
[  961.096451] [ 1928]     0  1928   274773       77  1581056      292             0 abrt-dump-journ
[  961.096455] [ 1929]    42  1929   276462        0   761856     2565             0 gsd-clipboard
[  961.096460] [ 1931]    42  1931   338203       85   819200     2578             0 gsd-color
[  961.096464] [ 1932]    42  1932   117670        1   466944      460             0 gsd-datetime
[  961.096469] [ 1934]    42  1934   127536        1   405504      370             0 gsd-housekeepin
[  961.096474] [ 1937]    42  1937   316653        0   782336     2623             0 gsd-keyboard
[  961.096478] [ 1938]    42  1938   462650        0   905216     2778             0 gsd-media-keys
[  961.096483] [ 1944]    42  1944   108575        0   389120      359             0 gsd-mouse
[  961.096487] [ 1946]    42  1946   317782      140   815104     2546             0 gsd-power
[  961.096492] [ 1947]    42  1947   118069        0   450560      460             0 gsd-print-notif
[  961.096497] [ 1948]    42  1948   108579        1   376832      359             0 gsd-rfkill
[  961.096502] [ 1952]    42  1952   127008        0   393216      378             0 gsd-screensaver
[  961.096507] [ 1955]    42  1955   104126        0   225280      251             0 gsd-sharing
[  961.096512] [ 1958]    42  1958   153282        0   458752      493             0 gsd-smartcard
[  961.096517] [ 1960]    42  1960   138209        0   483328      470             0 gsd-sound
[  961.096521] [ 1992]    42  1992    78439        0   176128      186             0 ibus-engine-sim
[  961.096526] [ 2106]   991  2106   107665        0   258048      598             0 colord
[  961.096531] [ 2206]     0  2206   104272        1   356352      648             0 gdm-session-wor
[  961.096535] [ 2214]  1000  2214    22404        1   196608      350             0 systemd
[  961.096540] [ 2219]  1000  2219    35926       31   262144     1161             0 (sd-pam)
[  961.096545] [ 2228]  1000  2228   101359      509   217088     2118             0 gnome-keyring-d
[  961.096550] [ 2240]  1000  2240   105310        1   360448      323             0 gdm-wayland-ses
[  961.096555] [ 2242]  1000  2242    18389      206   147456      270             0 dbus-daemon
[  961.096561] [ 2245]  1000  2245   166430        0   425984      677             0 gnome-session-b
[  961.096565] [ 2308]  1000  2308   100215        1   204800      252             0 gvfsd
[  961.096570] [ 2317]  1000  2317   105644        0   192512      230             0 gvfsd-fuse
[  961.096575] [ 2369]  1000  2369  1218833    28959  1937408    18006             0 gnome-shell
[  961.096580] [ 2400]  1000  2400   369257     4606   753664     3388             0 Xwayland
[  961.096584] [ 2418]  1000  2418    88967        1   200704      207             0 at-spi-bus-laun
[  961.096589] [ 2423]  1000  2423    18058       25   151552      138             0 dbus-daemon
[  961.096594] [ 2426]  1000  2426    55771       34   200704      161             0 at-spi2-registr
[  961.096599] [ 2432]  1000  2432   573544        0   598016     1039             0 pulseaudio
[  961.096603] [ 2495]  1000  2495   122026        0   356352      428             0 xdg-permission-
[  961.096608] [ 2500]  1000  2500 25414330        0  1007616     2176             0 gnome-shell-cal
[  961.096613] [ 2501]  1000  2501   136776       25   217088      645             0 ibus-daemon
[  961.096617] [ 2508]  1000  2508    96892        1   180224      205             0 ibus-dconf
[  961.096622] [ 2511]  1000  2511   276561        0   749568     2572             0 ibus-x11
[  961.096627] [ 2512]  1000  2512 25480455        0  1196032     4272             0 evolution-sourc
[  961.096631] [ 2514]  1000  2514    96856       76   184320      118             0 ibus-portal
[  961.096637] [ 2528]   992  2528   135051      155   339968     2105             0 geoclue
[  961.096641] [ 2541]  1000  2541 25410875        0   847872    10455             0 goa-daemon
[  961.096645] [ 2542]  1000  2542   145875        0   278528      462             0 gvfs-udisks2-vo
[  961.096650] [ 2550]  1000  2550   130414       48   405504      391             0 goa-identity-se
[  961.096654] [ 2557]  1000  2557    96275        0   180224      222             0 gvfs-mtp-volume
[  961.096659] [ 2562]  1000  2562    99424        0   196608      284             0 gvfs-gphoto2-vo
[  961.096663] [ 2567]  1000  2567   121975        0   233472      286             0 gvfs-afc-volume
[  961.096668] [ 2572]  1000  2572    96384        1   176128      239             0 gvfs-goa-volume
[  961.096672] [ 2577]  1000  2577    48103        0   143360      233             0 dconf-service
[  961.096677] [ 2582]  1000  2582   127620        0   397312      401             0 gsd-mouse
[  961.096681] [ 2584]  1000  2584   317783      141   798720     2589             0 gsd-power
[  961.096685] [ 2585]  1000  2585   139105        1   466944      504             0 gsd-print-notif
[  961.096689] [ 2586]  1000  2586   163911      109   421888      314             0 gsd-rfkill
[  961.096694] [ 2587]  1000  2587   127008        1   397312      374             0 gsd-screensaver
[  961.096699] [ 2588]  1000  2588   141059      153   245760      269             0 gsd-sharing
[  961.096703] [ 2591]  1000  2591   297810        0   786432     2831             0 gsd-wacom
[  961.096707] [ 2592]  1000  2592   314188        0   786432     2732             0 gsd-xsettings
[  961.096712] [ 2601]  1000  2601   138210        0   462848      486             0 gsd-sound
[  961.096716] [ 2604]  1000  2604   153284        0   466944      496             0 gsd-smartcard
[  961.096720] [ 2605]  1000  2605    77308        0   167936      178             0 gvfsd-metadata
[  961.096724] [ 2622]  1000  2622   298784        0   790528     2651             0 gsd-a11y-keyboa
[  961.096728] [ 2624]  1000  2624   127619        0   405504      390             0 gsd-a11y-settin
[  961.096732] [ 2625]  1000  2625   276466        0   757760     2572             0 gsd-clipboard
[  961.096736] [ 2626]  1000  2626   356676       78   847872     2635             0 gsd-color
[  961.096740] [ 2627]  1000  2627   136716        0   462848      490             0 gsd-datetime
[  961.096746] [ 2631]  1000  2631   148235       30   430080      375             0 gsd-housekeepin
[  961.096751] [ 2632]  1000  2632   316654        0   802816     2637             0 gsd-keyboard
[  961.096755] [ 2634]  1000  2634   462658      119   901120     2654             0 gsd-media-keys
[  961.096759] [ 2642]     0  2642    57778       41   274432      290             0 cupsd
[  961.096764] [ 2689]  1000  2689 25484718        1  1208320    10972             0 evolution-calen
[  961.096769] [ 2692]  1000  2692    78438        1   167936      202             0 ibus-engine-sim
[  961.096775] [ 2701]  1000  2701   154397        0   479232      471             0 gsd-printer
[  961.096780] [ 2815]  1000  2815 25488050        0  1105920    10936             0 evolution-calen
[  961.096785] [ 2840]  1000  2840   142409        0   540672     3844             0 seapplet
[  961.096790] [ 2843]  1000  2843   233610        3   946176    13453             0 gnome-software
[  961.096795] [ 2854]  1000  2854    69563        0   167936      294             0 gsd-disk-utilit
[  961.096801] [ 2859]  1000  2859   527825        0   937984     4845             0 tracker-extract
[  961.096806] [ 2873]  1000  2873   179529        0   376832     2583             0 tracker-miner-a
[  961.096811] [ 2879]  1000  2879   713847     5464  1900544    23333             0 sbis3plugin
[  961.096816] [ 2885]  1000  2885 25501241        0  1105920     2902             0 evolution-alarm
[  961.096821] [ 2890]  1000  2890   187241     2153   446464     4512             0 tracker-miner-f
[  961.096826] [ 2892]  1000  2892   194144       72   364544     6816             0 tracker-store
[  961.096831] [ 2896]  1000  2896   160989        1   524288     1383             0 abrt-applet
[  961.096835] [ 2935]  1000  2935 25583039        0  1204224    13636             0 evolution-calen
[  961.096840] [ 2936]  1000  2936 25454428        1  1089536     2060             0 evolution-addre
[  961.096844] [ 2949]  1000  2949 25497686        0  1044480     2121             0 evolution-addre
[  961.096849] [ 2981]  1000  2981 29700796        0  1110016    10946             0 evolution-calen
[  961.096854] [ 2985]     0  2985    90700        0   307200      450          -900 abrt-dbus
[  961.096859] [ 3032]  1000  3032 29673911        0  1179648    11010             0 evolution-calen
[  961.096864] [ 3077]  1000  3077   150815      448   528384     1921             0 sbis3plugin
[  961.096869] [ 3128]  1000  3128   131192       83   442368      975             0 sbis3plugin
[  961.096874] [ 3151]  1000  3151   195001      550   733184     1488             0 sbis3plugin
[  961.096879] [ 3154]     0  3154   158976       79   507904      948             0 fwupd
[  961.096884] [ 3236]  1000  3236   154224       52   466944     1013             0 sbis3plugin
[  961.096888] [ 3266]  1000  3266   152621       71   417792      882             0 sbis3plugin
[  961.096892] [ 3303]  1000  3303   160997      129   618496     1213             0 sbis3plugin
[  961.096896] [ 3332]  1000  3332   127068       83   393216      980             0 sbis3plugin
[  961.096900] [ 3350]  1000  3350   138992      128   438272     1386             0 sbis3plugin
[  961.096905] [ 3470]  1000  3470   146491       82   536576     1225             0 sbis3plugin
[  961.096908] [ 3488]  1000  3488   181501      167   696320     1656             0 sbis3plugin
[  961.096912] [ 3531]  1000  3531   157828      156   585728     1188             0 sbis3plugin
[  961.096916] [ 3616]  1000  3616   179824     3660   569344     2313             0 gnome-terminal-
[  961.096919] [ 3652]  1000  3652   119249        0   229376      311             0 gvfsd-trash
[  961.096923] [ 3885]  1000  3885    33064        1    77824      528             0 bash
[  961.096927] [ 3995]  1000  3995    35225        0    98304      825             0 htop
[  961.096931] [ 4000]  1000  4000    33034        1    90112      521             0 bash
[  961.096934] [ 4097]  1000  4097    33034        1    81920      519             0 bash
[  961.096938] [ 4152]  1000  4152   450111    15829  2424832    80412             0 opera-developer
[  961.096943] [ 4155]  1000  4155   140095       17   753664     1073             0 opera-developer
[  961.096954] [ 4157]  1000  4157   140095       18   581632     1074             0 opera-developer
[  961.096959] [ 4234]  1000  4234   483183     2593  1937408    22042           200 opera-developer
[  961.096963] [ 4258]  1000  4258    33034        1    90112      520             0 bash
[  961.096967] [ 4353]  1000  4353   310442      144  1155072     2551           300 opera-developer
[  961.096971] [ 4367]  1000  4367   341701      633  2359296    10512           300 opera-developer
[  961.096975] [ 4475]  1000  4475   365043     1293  3002368    32306           300 opera-developer
[  961.096978] [ 4491]  1000  4491   340275     4731  2281472    14759           300 opera-developer
[  961.096982] [ 4530]  1000  4530   331295     4818  1654784     6027           300 opera-developer
[  961.096986] [ 4586]  1000  4586   350229     4401  2576384    18438           300 opera-developer
[  961.096990] [ 4632]  1000  4632   322178      204  1376256     4830           300 opera-developer
[  961.096994] [ 4678]  1000  4678   347408     5024  2355200    17433           300 opera-developer
[  961.096998] [ 4990]  1000  4990   327082      132  1482752     8186           300 opera-developer
[  961.097003] [ 5007]  1000  5007   330463      148  1785856    10730           300 opera-developer
[  961.097006] [ 5008]  1000  5008   338949     1616  2158592    12005           300 opera-developer
[  961.097010] [ 5039]  1000  5039   359938      463  3198976    25582           300 opera-developer
[  961.097014] [ 5057]  1000  5057   407061     5096  4861952    57366           300 opera-developer
[  961.097018] [ 5072]  1000  5072   374574     3210  4030464    41101           300 opera-developer
[  961.097022] [ 5353]  1000  5353    47155       17   188416      120             0 gconfd-2
[  961.097025] [ 5482]  1000  5482   462325    13466  2056192    13493             0 gitkraken
[  961.097029] [ 5490]  1000  5490   359317      591  3207168    23933           300 opera-developer
[  961.097033] [ 5510]  1000  5510   330629      804  1593344     6867           300 opera-developer
[  961.097037] [ 5529]  1000  5529    33034        1    81920      522             0 bash
[  961.097041] [ 5575]  1000  5575   319425      155  1343488     4217           300 opera-developer
[  961.097045] [ 5626]  1000  5626   355790      257  1253376    17719             0 virt-manager
[  961.097048] [ 5636]  1000  5636   364716     2343  3141632    28469           300 opera-developer
[  961.097053] [ 5686]  1000  5686   314401      137  1273856     3880           300 opera-developer
[  961.097056] [ 5749]  1000  5749   315438      168  1257472     3712           300 opera-developer
[  961.097060] [ 5770]  1000  5770   335699      670  2121728    10534           300 opera-developer
[  961.097066] [ 5787]  1000  5787   333147      470  2007040    10291           300 opera-developer
[  961.097072] [ 5819]     0  5819    83451        0   315392      349          -900 virtlogd
[  961.097077] [ 5820]  1000  5820   315438      135  1257472     3724           300 opera-developer
[  961.097082] [ 5850]   107  5850   809662        0  6082560   602933             0 qemu-system-x86
[  961.097087] [ 5851]  1000  5851    87284       20   577536      796             0 gitkraken
[  961.097093] [ 5853]     0  5853    16036       33   176128      117             0 systemd-machine
[  961.097098] [ 5887]  1000  5887   372212     2328  3637248    37660           300 opera-developer
[  961.097103] [ 5905]  1000  5905   344334      786  2592768    19998           300 opera-developer
[  961.097108] [ 5967]  1000  5967   335537      574  2076672    10556           300 opera-developer
[  961.097113] [ 5987]  1000  5987   341079     1891  2039808    15246           300 opera-developer
[  961.097119] [ 5996]  1000  5996   343500      865  2375680    17831           300 opera-developer
[  961.097124] [ 5998]  1000  5998   335248      668  1982464    12263           300 opera-developer
[  961.097129] [ 6046]  1000  6046   323979      115  1449984     6505           300 opera-developer
[  961.097134] [ 6123]  1000  6123   275645      132  1241088     3318           300 gitkraken
[  961.097139] [ 6162]  1000  6162   801747    21279  6172672   122790           300 gitkraken
[  961.097145] [ 6164]  1000  6164   293394       66  2379776    22245           300 gitkraken
[  961.097150] [ 6273]  1000  6273   312948      159  1257472     3744           300 opera-developer
[  961.097155] [ 6303]  1000  6303   372514     1072  3702784    35442           300 opera-developer
[  961.097161] [ 6374]  1000  6374   331482      580  1871872     9611           300 opera-developer
[  961.097167] [ 6433]  1000  6433   332738      600  1802240     9968           300 opera-developer
[  961.097172] [ 6461]  1000  6461   328365      521  1630208     6708           300 opera-developer
[  961.097177] [ 6480]  1000  6480   334765      577  2064384    10132           300 opera-developer
[  961.097182] [ 6506]  1000  6506   333659      525  2072576     9656           300 opera-developer
[  961.097188] [ 6602]  1000  6602   353507     5085  2977792    23755           300 opera-developer
[  961.097194] [ 6644]  1000  6644   357135      846  2949120    21540           300 opera-developer
[  961.097199] [ 6718]  1000  6718    33034        1    90112      518             0 bash
[  961.097204] [ 6757]  1000  6757    63864        0   319488      205             0 su
[  961.097210] [ 6781]     0  6781    33590        1    94208      530             0 bash
[  961.097215] [ 6914]  1000  6914   338360     1045  2068480    15583           300 opera-developer
[  961.097220] [ 6942]  1000  6942   315067      135  1351680     5154           300 opera-developer
[  961.097225] [ 7198]  1000  7198  1017020    29518  4673536   157598             0 firefox
[  961.097230] [ 7367]  1000  7367   476818     6221  1224704    14165             0 Web Content
[  961.097235] [ 7464]  1000  7464   514601      733  1499136    22229             0 Web Content
[  961.097240] [ 7485]  1000  7485 21500884  7426177 169730048 13444297             0 Web Content
[  961.097246] [ 7520]  1000  7520   538598     1913  1716224    39180             0 Web Content
[  961.097251] [ 7909]  1000  7909 25702733      164  1748992    10512             0 gnome-control-c
[  961.097258] [ 8000]     0  8000    36368       11   303104      267             0 sshd
[  961.097264] [ 8005]     0  8005    19773        0   192512      301             0 systemd
[  961.097269] [ 8015]     0  8015    72792       43   278528     1160             0 (sd-pam)
[  961.097275] [ 8029]     0  8029    36419       89   290816      243             0 sshd
[  961.097280] [ 8040]     0  8040    33591        0    98304      535             0 bash
[  961.097285] [ 8083]     0  8083    34830      552   102400       36             0 htop
[  961.097291] [ 8145]     0  8145    70463       46   389120      257             0 sssd_secrets
[  961.097297] [ 8207]     0  8207    69782      258   376832      157             0 sssd_kcm
[  961.097301] Out of memory: Kill process 7485 (Web Content) score 887 or sacrifice child
[  961.097433] Killed process 7485 (Web Content) total-vm:86003536kB, anon-rss:29704708kB, file-rss:0kB, shmem-rss:0kB
[  968.779412] oom_reaper: reaped process 7485 (Web Content), now anon-rss:0kB, file-rss:0kB, shmem-rss:0kB
[  984.368330] INFO: task htop:3995 blocked for more than 120 seconds.
[  984.368337]       Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  984.368341] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  984.368345] htop            D11592  3995   3885 0x00000000
[  984.368354] Call Trace:
[  984.368366]  ? __schedule+0x2e9/0xba0
[  984.368374]  ? rwsem_down_read_failed+0x147/0x190
[  984.368381]  schedule+0x2f/0x90
[  984.368385]  rwsem_down_read_failed+0x118/0x190
[  984.368395]  ? call_rwsem_down_read_failed+0x14/0x30
[  984.368399]  call_rwsem_down_read_failed+0x14/0x30
[  984.368405]  down_read+0x97/0xa0
[  984.368411]  proc_pid_cmdline_read+0xd2/0x4a0
[  984.368417]  ? debug_check_no_obj_freed+0xda/0x244
[  984.368426]  ? __vfs_read+0x36/0x170
[  984.368430]  __vfs_read+0x36/0x170
[  984.368438]  vfs_read+0x9e/0x150
[  984.368443]  SyS_read+0x55/0xc0
[  984.368449]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[  984.368454]  do_syscall_64+0x7a/0x220
[  984.368459]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[  984.368463] RIP: 0033:0x7f3b6cba5701
[  984.368466] RSP: 002b:00007ffdc08584a8 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
[  984.368470] RAX: ffffffffffffffda RBX: 00007ffdc0858570 RCX: 00007f3b6cba5701
[  984.368472] RDX: 0000000000001000 RSI: 00007ffdc0858570 RDI: 0000000000000007
[  984.368475] RBP: 0000000000001000 R08: 0000000000000004 R09: 00000000009c44db
[  984.368477] R10: 0000000000000000 R11: 0000000000000246 R12: 00007ffdc0858570
[  984.368480] R13: 0000000000000000 R14: 0000000000000007 R15: 00007ffdc0859660
[  984.368568] INFO: task qemu-system-x86:5850 blocked for more than 120 seconds.
[  984.368571]       Tainted: G        W        4.16.0-rc1-amd-vega+ #8
[  984.368573] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  984.368575] qemu-system-x86 D11096  5850      1 0x00000000
[  984.368581] Call Trace:
[  984.368586]  ? __schedule+0x2e9/0xba0
[  984.368591]  ? rwsem_down_read_failed+0x147/0x190
[  984.368595]  schedule+0x2f/0x90
[  984.368598]  rwsem_down_read_failed+0x118/0x190
[  984.368603]  ? __might_fault+0x3e/0x90
[  984.368611]  ? call_rwsem_down_read_failed+0x14/0x30
[  984.368614]  call_rwsem_down_read_failed+0x14/0x30
[  984.368620]  ? __do_page_fault+0x493/0x530
[  984.368623]  down_read+0x97/0xa0
[  984.368627]  __do_page_fault+0x493/0x530
[  984.368633]  do_page_fault+0x32/0x290
[  984.368637]  ? page_fault+0x36/0x60
[  984.368641]  page_fault+0x4c/0x60
[  984.368644] RIP: 0033:0x7fecaee63596
[  984.368647] RSP: 002b:00007fffa61d6900 EFLAGS: 00010202
[  984.368719] INFO: lockdep is turned off.
[ 1015.115568] sysrq: SysRq : Show Blocked State
[ 1015.115585]   task                        PC stack   pid father
[ 1015.116034] htop            D11592  3995   3885 0x00000000
[ 1015.116052] Call Trace:
[ 1015.116072]  ? __schedule+0x2e9/0xba0
[ 1015.116088]  ? rwsem_down_read_failed+0x147/0x190
[ 1015.116100]  schedule+0x2f/0x90
[ 1015.116110]  rwsem_down_read_failed+0x118/0x190
[ 1015.116132]  ? call_rwsem_down_read_failed+0x14/0x30
[ 1015.116142]  call_rwsem_down_read_failed+0x14/0x30
[ 1015.116157]  down_read+0x97/0xa0
[ 1015.116170]  proc_pid_cmdline_read+0xd2/0x4a0
[ 1015.116184]  ? debug_check_no_obj_freed+0xda/0x244
[ 1015.116205]  ? __vfs_read+0x36/0x170
[ 1015.116215]  __vfs_read+0x36/0x170
[ 1015.116235]  vfs_read+0x9e/0x150
[ 1015.116248]  SyS_read+0x55/0xc0
[ 1015.116260]  ? trace_hardirqs_off_thunk+0x1a/0x1c
[ 1015.116274]  do_syscall_64+0x7a/0x220
[ 1015.116287]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[ 1015.116297] RIP: 0033:0x7f3b6cba5701
[ 1015.116305] RSP: 002b:00007ffdc08584a8 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
[ 1015.116316] RAX: ffffffffffffffda RBX: 00007ffdc0858570 RCX: 00007f3b6cba5701
[ 1015.116323] RDX: 0000000000001000 RSI: 00007ffdc0858570 RDI: 0000000000000007
[ 1015.116361] RBP: 0000000000001000 R08: 0000000000000004 R09: 00000000009c44db
[ 1015.116368] R10: 0000000000000000 R11: 0000000000000246 R12: 00007ffdc0858570
[ 1015.116375] R13: 0000000000000000 R14: 0000000000000007 R15: 00007ffdc0859660
[ 1015.116598] qemu-system-x86 D11096  5850      1 0x00000000
[ 1015.116614] Call Trace:
[ 1015.116629]  ? __schedule+0x2e9/0xba0
[ 1015.116644]  ? rwsem_down_read_failed+0x147/0x190
[ 1015.116656]  schedule+0x2f/0x90
[ 1015.116666]  rwsem_down_read_failed+0x118/0x190
[ 1015.116680]  ? __might_fault+0x3e/0x90
[ 1015.116702]  ? call_rwsem_down_read_failed+0x14/0x30
[ 1015.116711]  call_rwsem_down_read_failed+0x14/0x30
[ 1015.116727]  ? __do_page_fault+0x493/0x530
[ 1015.116737]  down_read+0x97/0xa0
[ 1015.116748]  __do_page_fault+0x493/0x530
[ 1015.116766]  do_page_fault+0x32/0x290
[ 1015.116778]  ? page_fault+0x36/0x60
[ 1015.116790]  page_fault+0x4c/0x60
[ 1015.116799] RIP: 0033:0x7fecaee63596
[ 1015.116806] RSP: 002b:00007fffa61d6900 EFLAGS: 00010202
[ 1015.116825] SPICE Worker    D11080  5906      1 0x00000000
[ 1015.116843] Call Trace:
[ 1015.116855]  ? __schedule+0x2e9/0xba0
[ 1015.116870]  ? rwsem_down_write_failed_killable+0x2df/0x5a0
[ 1015.116881]  schedule+0x2f/0x90
[ 1015.116891]  rwsem_down_write_failed_killable+0x2e4/0x5a0
[ 1015.116914]  ? call_rwsem_down_write_failed_killable+0x13/0x20
[ 1015.116927]  call_rwsem_down_write_failed_killable+0x13/0x20
[ 1015.116941]  ? vm_munmap+0x4d/0xb0
[ 1015.116951]  down_write_killable+0x8a/0xd0
[ 1015.116962]  vm_munmap+0x4d/0xb0
[ 1015.116977]  SyS_munmap+0x1d/0x30
[ 1015.116990]  do_syscall_64+0x7a/0x220
[ 1015.117003]  entry_SYSCALL_64_after_hwframe+0x26/0x9b
[ 1015.117010] RIP: 0033:0x7fecaaaa8e67
[ 1015.117017] RSP: 002b:00007fec99ffe6d8 EFLAGS: 00000206 ORIG_RAX: 000000000000000b
[ 1015.117028] RAX: ffffffffffffffda RBX: 00007fec985ff010 RCX: 00007fecaaaa8e67
[ 1015.117035] RDX: 00007fec98dff000 RSI: 0000000000801000 RDI: 00007fec985ff000
[ 1015.117042] RBP: 00007febfc0e8620 R08: 00007febfc0da8b0 R09: 000000000000002f
[ 1015.117050] R10: 0000000000000020 R11: 0000000000000206 R12: 00007febfc036228
[ 1015.117057] R13: 00007febfc032ec0 R14: 000055e07e7c5a20 R15: 000055e07e7c5a20
[ 1036.273993] sysrq: SysRq : Kill All Tasks
[ 1036.288263] TaskSchedulerFo (6237) used greatest stack depth: 10160 bytes left
[ 1036.292855] gitkraken (6162) used greatest stack depth: 10040 bytes left
[ 1036.297892] NetworkManager (996) used greatest stack depth: 9880 bytes left
[ 1036.343862] audit: type=1131 audit(1521141460.644:348): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=mcelog comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.352425] audit: type=1131 audit(1521141460.652:349): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.358720] audit: type=1131 audit(1521141460.659:350): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.366880] audit: type=1131 audit(1521141460.664:351): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=rngd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.368818] audit: type=1131 audit(1521141460.669:352): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=firewalld comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.371677] audit: type=1131 audit(1521141460.672:353): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=ModemManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.378987] audit: type=1131 audit(1521141460.679:354): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.381203] audit: type=1131 audit(1521141460.681:355): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=smartd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.382731] audit: type=1131 audit(1521141460.683:356): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=accounts-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.390025] audit: type=1131 audit(1521141460.690:357): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[ 1036.998428] systemd-journald[8358]: File /var/log/journal/afc85ff429aa4899b8ecbdc84493ca50/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 1038.497518] device enp2s0 left promiscuous mode
[ 1041.766138] kauditd_printk_skb: 88 callbacks suppressed
[ 1041.766140] audit: type=1130 audit(1521141466.066:446): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=mariadb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1041.766371] audit: type=1131 audit(1521141466.066:447): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=mariadb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1042.653409] audit: type=1130 audit(1521141466.953:448): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=mariadb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1049.351914] audit: type=1131 audit(1521141473.652:449): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1060.724210] audit: type=1130 audit(1521141485.024:450): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1067.073946] audit: type=1100 audit(1521141491.374:451): pid=8388 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty2 res=success'
[ 1067.077584] audit: type=1101 audit(1521141491.377:452): pid=8388 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="root" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty2 res=success'
[ 1067.078427] audit: type=1103 audit(1521141491.378:453): pid=8388 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_unix acct="root" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty2 res=success'
[ 1067.078729] audit: type=1006 audit(1521141491.379:454): pid=8388 uid=0 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 old-auid=4294967295 auid=0 tty=tty2 old-ses=4294967295 ses=6 res=1
[ 1067.100089] audit: type=2300 audit(1521141491.400:455): pid=8388 uid=0 auid=0 ses=6 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='pam: default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty2 res=success'
[ 1067.147444] audit: type=1400 audit(1521141491.447:456): avc:  denied  { module_request } for  pid=9058 comm="(systemd)" kmod=6E65746465762D207117777655 scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[ 1067.147565] audit: type=1400 audit(1521141491.447:457): avc:  denied  { module_request } for  pid=9058 comm="(systemd)" kmod=6E65746465762D207117777655 scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[ 1067.147679] audit: type=1101 audit(1521141491.447:458): pid=9058 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="root" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1067.168635] audit: type=1400 audit(1521141491.468:459): avc:  denied  { module_request } for  pid=9058 comm="(systemd)" kmod="netdev-" scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[ 1067.168766] audit: type=1400 audit(1521141491.468:460): avc:  denied  { module_request } for  pid=9058 comm="(systemd)" kmod="netdev-" scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[ 1078.519197] kauditd_printk_skb: 10 callbacks suppressed
[ 1078.519200] audit: type=1130 audit(1521141502.819:471): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1078.519562] audit: type=1131 audit(1521141502.819:472): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1078.544986] audit: type=1130 audit(1521141502.845:473): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1091.372774] audit: type=1131 audit(1521141515.672:474): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1123.964020] sysrq: SysRq : Show Blocked State
[ 1123.972357]   task                        PC stack   pid father
[ 1164.973072] audit: type=1130 audit(1521141589.273:475): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=getty@tty3 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1168.635723] audit: type=1130 audit(1521141592.936:476): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1172.448946] audit: type=1100 audit(1521141596.749:477): pid=9119 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=? acct="mikhail" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty3 res=failed'
[ 1174.144338] audit: type=1112 audit(1521141598.444:478): pid=9119 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=login id=1000 exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty3 res=failed'
[ 1184.241030] audit: type=1100 audit(1521141608.541:479): pid=9119 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_unix acct="mikhail" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty3 res=success'
[ 1184.244737] audit: type=1101 audit(1521141608.545:480): pid=9119 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="mikhail" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty3 res=success'
[ 1184.245318] audit: type=1103 audit(1521141608.545:481): pid=9119 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_unix acct="mikhail" exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty3 res=success'
[ 1184.245611] audit: type=1006 audit(1521141608.546:482): pid=9119 uid=0 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 old-auid=4294967295 auid=1000 tty=tty3 old-ses=4294967295 ses=8 res=1
[ 1184.266104] audit: type=2300 audit(1521141608.566:483): pid=9119 uid=0 auid=1000 ses=8 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='pam: default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/bin/login" hostname=localhost.localdomain addr=? terminal=tty3 res=success'
[ 1184.294064] audit: type=1130 audit(1521141608.594:484): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1184.294175] audit: type=1131 audit(1521141608.594:485): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sysstat-collect comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1184.316734] audit: type=1400 audit(1521141608.617:486): avc:  denied  { module_request } for  pid=9128 comm="(systemd)" kmod=6E65746465762DE0FAF8767655 scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[ 1184.316855] audit: type=1400 audit(1521141608.617:487): avc:  denied  { module_request } for  pid=9128 comm="(systemd)" kmod=6E65746465762DE0FAF8767655 scontext=system_u:system_r:init_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=0
[ 1184.316960] audit: type=1101 audit(1521141608.617:488): pid=9128 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="mikhail" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1184.395783] systemd-journald[8358]: File /var/log/journal/afc85ff429aa4899b8ecbdc84493ca50/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.

  reply	other threads:[~2018-03-15 20:10 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-11 18:11 KVM hang after OOM Mikhail Gavrilov
2018-03-12  9:00 ` Kirill A. Shutemov
2018-03-12 18:56   ` Mikhail Gavrilov
2018-03-13 12:22     ` Tetsuo Handa
2018-03-15 12:34     ` Michal Hocko
2018-03-15 12:37   ` Michal Hocko
2018-03-12 10:22 ` Tetsuo Handa
2018-03-15 11:56   ` Tetsuo Handa
2018-03-15 20:10     ` Mikhail Gavrilov [this message]
2018-03-17  3:13       ` Tetsuo Handa
2018-03-19 16:23         ` Mikhail Gavrilov
2018-03-20  6:53           ` Michal Hocko
2018-03-20 12:20             ` Tetsuo Handa
     [not found]               ` <CABXGCsNBEpVoMzrhyNLKhzNxPs=9a+Z+2aUxJ8WtZ8gE+=OGSA@mail.gmail.com>
2018-03-22  8:39                 ` Michal Hocko
  -- strict thread matches above, loose matches on Subject: below --
2018-03-11 16:50 Mikhail Gavrilov

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=CABXGCsNecgRN7mn4OxZY2rqa2N4kVBw3f0s6XEvLob4uy3LOug@mail.gmail.com \
    --to=mikhail.v.gavrilov@gmail.com \
    --cc=kirill@shutemov.name \
    --cc=kvm@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=penguin-kernel@i-love.sakura.ne.jp \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.