Re: [PATCH] drm/scheduler: fix setting the priorty for entities

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

 



Am 04.08.2018 06:12, schrieb Dieter Nützel:
Am 04.08.2018 05:27, schrieb Dieter Nützel:
Am 03.08.2018 13:09, schrieb Christian König:
Am 03.08.2018 um 03:08 schrieb Dieter Nützel:
Hello Christian, AMD guys,

this one _together_ with these series
[PATCH 1/7] drm/amdgpu: use new scheduler load balancing for VMs
https://lists.freedesktop.org/archives/amd-gfx/2018-August/024802.html

on top of
amd-staging-drm-next 53d5f1e4a6d9

freeze whole system (Intel Xeon X3470, RX580) during _first_ mouse move.
Same for sddm login or first move in KDE Plasma 5.
NO logs so far. - Expected?

Not even remotely, can you double check which patch from the "[PATCH
1/7] drm/amdgpu: use new scheduler load balancing for VMs" series is
causing the issue?

Ups,

_both_ 'series' on top of

bf1fd52b0632 (origin/amd-staging-drm-next) drm/amdgpu: move gem
definitions into amdgpu_gem header

works without a hitch.

But I have new (latest) µcode from openSUSE Tumbleweed.
kernel-firmware-20180730-35.1.src.rpm

Tested-by: Dieter Nützel <Dieter@xxxxxxxxxxxxx>

I take this back.

Last much longer.
Mouse freeze.
Could grep a dmesg with remote phone ;-)

See the attachment.
Dieter

Argh, shi...
wrong dmesg version.

Should be this one. (For sure...)
Dieter


Thanks,
Christian.


Greetings,
Dieter

Am 01.08.2018 16:27, schrieb Christian König:
Since we now deal with multiple rq we need to update all of them, not
just the current one.

Signed-off-by: Christian König <christian.koenig@xxxxxxx>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c   |  3 +--
 drivers/gpu/drm/scheduler/gpu_scheduler.c | 36 ++++++++++++++++++++-----------
 include/drm/gpu_scheduler.h               |  5 ++---
 3 files changed, 26 insertions(+), 18 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
index df6965761046..9fcc14e2dfcf 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
@@ -407,12 +407,11 @@ void amdgpu_ctx_priority_override(struct amdgpu_ctx *ctx,
     for (i = 0; i < adev->num_rings; i++) {
         ring = adev->rings[i];
         entity = &ctx->rings[i].entity;
-        rq = &ring->sched.sched_rq[ctx_prio];

         if (ring->funcs->type == AMDGPU_RING_TYPE_KIQ)
             continue;

-        drm_sched_entity_set_rq(entity, rq);
+        drm_sched_entity_set_priority(entity, ctx_prio);
     }
 }

diff --git a/drivers/gpu/drm/scheduler/gpu_scheduler.c
b/drivers/gpu/drm/scheduler/gpu_scheduler.c
index 05dc6ecd4003..85908c7f913e 100644
--- a/drivers/gpu/drm/scheduler/gpu_scheduler.c
+++ b/drivers/gpu/drm/scheduler/gpu_scheduler.c
@@ -419,29 +419,39 @@ static void drm_sched_entity_clear_dep(struct
dma_fence *f, struct dma_fence_cb
 }

 /**
- * drm_sched_entity_set_rq - Sets the run queue for an entity
+ * drm_sched_entity_set_rq_priority - helper for drm_sched_entity_set_priority
+ */
+static void drm_sched_entity_set_rq_priority(struct drm_sched_rq **rq,
+                         enum drm_sched_priority priority)
+{
+    *rq = &(*rq)->sched->sched_rq[priority];
+}
+
+/**
+ * drm_sched_entity_set_priority - Sets priority of the entity
  *
  * @entity: scheduler entity
- * @rq: scheduler run queue
+ * @priority: scheduler priority
  *
- * Sets the run queue for an entity and removes the entity from the previous
- * run queue in which was present.
+ * Update the priority of runqueus used for the entity.
  */
-void drm_sched_entity_set_rq(struct drm_sched_entity *entity,
-                 struct drm_sched_rq *rq)
+void drm_sched_entity_set_priority(struct drm_sched_entity *entity,
+                   enum drm_sched_priority priority)
 {
-    if (entity->rq == rq)
-        return;
-
-    BUG_ON(!rq);
+    unsigned int i;

     spin_lock(&entity->rq_lock);
+
+    for (i = 0; i < entity->num_rq_list; ++i)
+ drm_sched_entity_set_rq_priority(&entity->rq_list[i], priority);
+
     drm_sched_rq_remove_entity(entity->rq, entity);
-    entity->rq = rq;
-    drm_sched_rq_add_entity(rq, entity);
+    drm_sched_entity_set_rq_priority(&entity->rq, priority);
+    drm_sched_rq_add_entity(entity->rq, entity);
+
     spin_unlock(&entity->rq_lock);
 }
-EXPORT_SYMBOL(drm_sched_entity_set_rq);
+EXPORT_SYMBOL(drm_sched_entity_set_priority);

 /**
  * drm_sched_dependency_optimized
diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
index 0c4cfe689d4c..22c0f88f7d8f 100644
--- a/include/drm/gpu_scheduler.h
+++ b/include/drm/gpu_scheduler.h
@@ -298,9 +298,8 @@ void drm_sched_entity_fini(struct drm_sched_entity *entity);
 void drm_sched_entity_destroy(struct drm_sched_entity *entity);
 void drm_sched_entity_push_job(struct drm_sched_job *sched_job,
                    struct drm_sched_entity *entity);
-void drm_sched_entity_set_rq(struct drm_sched_entity *entity,
-                 struct drm_sched_rq *rq);
-
+void drm_sched_entity_set_priority(struct drm_sched_entity *entity,
+                   enum drm_sched_priority priority);
 struct drm_sched_fence *drm_sched_fence_create(
     struct drm_sched_entity *s_entity, void *owner);
 void drm_sched_fence_scheduled(struct drm_sched_fence *fence);
_______________________________________________
dri-devel mailing list
dri-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/dri-devel

_______________________________________________
dri-devel mailing list
dri-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/dri-devel
[    0.000000] microcode: microcode updated early to revision 0x7, date = 2013-08-20
[    0.000000] Linux version 4.18.0-rc1-1.g7262353-default+ (dieter@SunWave1) (gcc version 8.1.1 20180719 [gcc-8-branch revision 262874] (SUSE Linux)) #1 SMP PREEMPT Sat Aug 4 02:15:21 CEST 2018
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.18.0-rc1-1.g7262353-default+ root=UUID=e19dd5e4-9df9-4ed6-8962-2d8f4993b6a5 video=1920x1080 noresume splash=silent quiet showopts nopti nospectre_v2
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009b7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009b800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000d0000-0x00000000000d7fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f7affff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f7b0000-0x000000007f7bbfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007f7bc000-0x000000007f7bcfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007f7bd000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fecfffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000067fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: FUJITSU                          PRIMERGY TX150 S7             /D2759, BIOS 6.00 Rev. 1.19.2759.A1           09/26/2012
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x680000 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-C7FFF write-protect
[    0.000000]   C8000-DFFFF uncachable
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 100000000 mask F00000000 write-back
[    0.000000]   2 base 200000000 mask E00000000 write-back
[    0.000000]   3 base 400000000 mask E00000000 write-back
[    0.000000]   4 base 600000000 mask F80000000 write-back
[    0.000000]   5 base 0FE000000 mask FFE000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0x7f7b0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f97c0-0x000f97cf] mapped at [(____ptrval____)]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [(____ptrval____)] 95000 size 24576
[    0.000000] Kernel/User page tables isolation: disabled on command line.
[    0.000000] BRK [0x2e1802000, 0x2e1802fff] PGTABLE
[    0.000000] BRK [0x2e1803000, 0x2e1803fff] PGTABLE
[    0.000000] BRK [0x2e1804000, 0x2e1804fff] PGTABLE
[    0.000000] BRK [0x2e1805000, 0x2e1805fff] PGTABLE
[    0.000000] BRK [0x2e1806000, 0x2e1806fff] PGTABLE
[    0.000000] BRK [0x2e1807000, 0x2e1807fff] PGTABLE
[    0.000000] BRK [0x2e1808000, 0x2e1808fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x3620b000-0x370fcfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F9790 000024 (v02 PTLTD )
[    0.000000] ACPI: XSDT 0x000000007F7B4206 00010C (v01 PTLTD  ? XSDT   00060000  LTP 00000000)
[    0.000000] ACPI: FACP 0x000000007F7B9D07 0000F4 (v03 FTS    D2759/Ax 00060000 FTS  000F4240)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/32 (20180531/tbfadt-569)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm2ControlBlock: 8/32 (20180531/tbfadt-569)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/PmTimerBlock: 32/24 (20180531/tbfadt-569)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/32 (20180531/tbfadt-569)
[    0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20180531/tbfadt-674)
[    0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm2ControlBlock: 32, using default 8 (20180531/tbfadt-674)
[    0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/PmTimerBlock: 24, using default 32 (20180531/tbfadt-674)
[    0.000000] ACPI: DSDT 0x000000007F7B4312 005981 (v01 FTS    D2759    00060000 MSFT 03000001)
[    0.000000] ACPI: FACS 0x000000007F7BCFC0 000040
[    0.000000] ACPI: FACS 0x000000007F7BCFC0 000040
[    0.000000] ACPI: TCPA 0x000000007F7B9DFB 000032 (v01 Phoeni x        00060000 TL   00000000)
[    0.000000] ACPI: EINJ 0x000000007F7B9E2D 0001B0 (v01 PTL    WHEAPTL  00060000 PTL  00000001)
[    0.000000] ACPI: HEST 0x000000007F7B9FDD 000268 (v01 PTL    WHEAPTL  00060000 PTL  00000001)
[    0.000000] ACPI: BERT 0x000000007F7BA245 000030 (v01 PTL    WHEAPTL  00060000 PTL  00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA275 0000EB (v01 wheaos wheaosc  00060000 MSFT 03000001)
[    0.000000] ACPI: ERST 0x000000007F7BA360 000270 (v01 PTL    WHEAPTL  00060000 PTL  00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA5D0 00009E (v01 FSC    CST_PR00 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA66E 00009E (v01 FSC    CST_PR01 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA70C 00009E (v01 FSC    CST_PR02 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA7AA 00009E (v01 FSC    CST_PR03 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA848 00009E (v01 FSC    CST_PR04 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA8E6 00009E (v01 FSC    CST_PR05 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BA984 00009E (v01 FSC    CST_PR06 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BAA22 00009E (v01 FSC    CST_PR07 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BAAC0 000263 (v01 FSC    PST_PR00 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BAD23 000263 (v01 FSC    PST_PR01 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BAF86 000263 (v01 FSC    PST_PR02 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BB1E9 000263 (v01 FSC    PST_PR03 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BB44C 000263 (v01 FSC    PST_PR04 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BB6AF 000263 (v01 FSC    PST_PR05 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BB912 000263 (v01 FSC    PST_PR06 00060000  CSF 00000001)
[    0.000000] ACPI: SSDT 0x000000007F7BBB75 000263 (v01 FSC    PST_PR07 00060000  CSF 00000001)
[    0.000000] ACPI: SPCR 0x000000007F7BBDD8 000050 (v01 PTLTD  $UCRTBL$ 00060000 PTL  00000001)
[    0.000000] ACPI: DMAR 0x000000007F7BBE28 000080 (v01 Intel  OEMDMAR  00060000 LOHR 00000001)
[    0.000000] ACPI: MCFG 0x000000007F7BBEA8 00003C (v01 PTLTD    MCFG   00060000  LTP 00000000)
[    0.000000] ACPI: HPET 0x000000007F7BBEE4 000038 (v01 PTLTD  HPETTBL  00060000  LTP 00000001)
[    0.000000] ACPI: APIC 0x000000007F7BBF1C 0000BC (v01 PTLTD  ? APIC   00060000  LTP 00000000)
[    0.000000] ACPI: BOOT 0x000000007F7BBFD8 000028 (v01 PTLTD  $SBFTBL$ 00060000  LTP 00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000067fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x67ffd5000-0x67ffeafff]
[    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-0x000000067fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009afff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000007f7affff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000067fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000067fffffff]
[    0.000000] On node 0 totalpages: 6289226
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3994 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 8095 pages used for memmap
[    0.000000]   DMA32 zone: 518064 pages, LIFO batch:31
[    0.000000]   Normal zone: 90112 pages used for memmap
[    0.000000]   Normal zone: 5767168 pages, LIFO batch:31
[    0.000000] Reserved but unavailable: 102 pages
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] 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 high edge)
[    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] ACPI: SPCR: SPCR table version 1
[    0.000000] ACPI: SPCR: Unexpected SPCR Access Width.  Defaulting to byte size
[    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 0x0009b000-0x0009bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000cffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000d0000-0x000d7fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000d8000-0x000e3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f7b0000-0x7f7bbfff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f7bc000-0x7f7bcfff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f7bd000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-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] [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] random: get_random_bytes called from start_kernel+0x93/0x4cc with crng_init=0
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 46 pages/cpu @(____ptrval____) s148248 r8192 d31976 u262144
[    0.000000] pcpu-alloc: s148248 r8192 d31976 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 6190934
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.18.0-rc1-1.g7262353-default+ root=UUID=e19dd5e4-9df9-4ed6-8962-2d8f4993b6a5 video=1920x1080 noresume splash=silent quiet showopts nopti nospectre_v2
[    0.000000] log_buf_len individual max cpu contribution: 32768 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 229376 bytes
[    0.000000] log_buf_len min size: 262144 bytes
[    0.000000] log_buf_len: 524288 bytes
[    0.000000] early log buf free: 248900(94%)
[    0.000000] Memory: 2138348K/25156904K available (10252K kernel code, 1507K rwdata, 3492K rodata, 1972K init, 1320K bss, 501404K reserved, 0K cma-reserved)
[    0.000000] ftrace: allocating 34233 entries in 134 pages
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS: 33024, nr_irqs: 488, preallocated irqs: 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] ACPI: Core revision 20180531
[    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 36
[    0.000000] DMAR: DRHD base: 0x000000fed14000 flags: 0x1
[    0.000000] DMAR: dmar0: reg_base_addr fed14000 ver 1:0 cap c90780106f0462 ecap f02062
[    0.000000] DMAR: RMRR base: 0x0000007f7f9000 end: 0x0000007f7f9fff
[    0.000000] DMAR: RMRR base: 0x0000007f7fa000 end: 0x0000007f7fafff
[    0.000000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.020000] tsc: Fast TSC calibration using PIT
[    0.024000] tsc: Detected 2926.014 MHz processor
[    0.024000] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2a2d4159f89, max_idle_ns: 440795269049 ns
[    0.024000] Calibrating delay loop (skipped), value calculated using timer frequency.. 5852.02 BogoMIPS (lpj=11704056)
[    0.024000] pid_max: default: 32768 minimum: 301
[    0.024000] Security Framework initialized
[    0.024000] AppArmor: AppArmor initialized
[    0.034145] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.038156] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.038312] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.038456] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.038677] CPU: Physical Processor ID: 0
[    0.038677] CPU: Processor Core ID: 0
[    0.038685] mce: CPU supports 9 MCE banks
[    0.038691] CPU0: Thermal monitoring enabled (TM1)
[    0.038698] process: using mwait in idle threads
[    0.038701] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[    0.038701] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.038703] Speculative Store Bypass: Vulnerable
[    0.038788] Freeing SMP alternatives memory: 32K
[    0.044000] smpboot: CPU0: Intel(R) Xeon(R) CPU           X3470  @ 2.93GHz (family: 0x6, model: 0x1e, stepping: 0x5)
[    0.064017] Performance Events: PEBS fmt1+, Nehalem events, 16-deep LBR, Intel PMU driver.
[    0.064053] core: CPU erratum AAJ80 worked around
[    0.064054] core: CPUID marked event: 'bus cycles' unavailable
[    0.064058] ... version:                3
[    0.064059] ... bit width:              48
[    0.064060] ... generic registers:      4
[    0.064062] ... value mask:             0000ffffffffffff
[    0.064063] ... max period:             000000007fffffff
[    0.064064] ... fixed-purpose events:   3
[    0.064065] ... event mask:             000000070000000f
[    0.068011] Hierarchical SRCU implementation.
[    0.076240] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.080017] smp: Bringing up secondary CPUs ...
[    0.104058] x86: Booting SMP configuration:
[    0.104061] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.250506] smp: Brought up 1 node, 8 CPUs
[    0.250506] smpboot: Max logical packages: 1
[    0.250506] smpboot: Total of 8 processors activated (46816.22 BogoMIPS)
[    0.260011] node 0 initialised, 5629288 pages in 4ms
[    0.260706] devtmpfs: initialized
[    0.260706] x86/mm: Memory block size: 128MB
[    0.264037] PM: Registering ACPI NVS region [mem 0x7f7bc000-0x7f7bcfff] (4096 bytes)
[    0.264102] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.264102] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.264112] pinctrl core: initialized pinctrl subsystem
[    0.264160] RTC time:  3:11:05, date: 08/04/18
[    0.264252] NET: Registered protocol family 16
[    0.264347] audit: initializing netlink subsys (disabled)
[    0.264356] audit: type=2000 audit(1533352264.264:1): state=initialized audit_enabled=0 res=1
[    0.264356] cpuidle: using governor ladder
[    0.264356] cpuidle: using governor menu
[    0.264356] Simple Boot Flag at 0x50 set to 0x1
[    0.264356] ACPI: bus type PCI registered
[    0.264356] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.264356] PCI: MMCONFIG for domain 0000 [bus 00-11] at [mem 0xe0000000-0xe11fffff] (base 0xe0000000)
[    0.264356] PCI: MMCONFIG at [mem 0xe0000000-0xe11fffff] reserved in E820
[    0.264356] PCI: Using configuration type 1 for base access
[    0.264400] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.264400] mtrr: probably your BIOS does not setup all CPUs.
[    0.264401] mtrr: corrected configuration.
[    0.264401] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.264401] ACPI: Added _OSI(Module Device)
[    0.264401] ACPI: Added _OSI(Processor Device)
[    0.264401] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.264401] ACPI: Added _OSI(Processor Aggregator Device)
[    0.264401] ACPI: Added _OSI(Linux-Dell-Video)
[    0.269710] ACPI: 18 ACPI AML tables successfully acquired and loaded
[    0.283596] ACPI: Interpreter enabled
[    0.283612] ACPI: (supports S0 S1 S4 S5)
[    0.283613] ACPI: Using IOAPIC for interrupt routing
[    0.283646] [Firmware Warn]: HEST: Duplicated hardware error source ID: 9.
[    0.283661] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.283825] ACPI: Enabled 11 GPEs in block 00 to 3F
[    0.289501] ACPI: PCI Root Bridge [CPU0] (domain 0000 [bus ff])
[    0.289506] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.289510] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.289518] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.289567] PCI host bridge to bus 0000:ff
[    0.289569] pci_bus 0000:ff: root bus resource [bus ff]
[    0.289575] pci 0000:ff:00.0: [8086:2c50] type 00 class 0x060000
[    0.289623] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
[    0.289671] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
[    0.289710] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
[    0.289750] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
[    0.289788] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
[    0.289826] pci 0000:ff:03.2: [8086:2c9a] type 00 class 0x060000
[    0.289865] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
[    0.289904] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
[    0.289942] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
[    0.289980] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
[    0.290017] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
[    0.290056] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
[    0.290095] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
[    0.290132] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
[    0.290171] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
[    0.290242] ACPI: PCI Root Bridge [CPU1] (domain 0000 [bus fe])
[    0.290246] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.290250] acpi PNP0A03:01: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.290258] acpi PNP0A03:01: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.290303] PCI host bridge to bus 0000:fe
[    0.290305] pci_bus 0000:fe: root bus resource [bus fe]
[    0.290428] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3d])
[    0.290432] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.290436] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.290444] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-11] only partially covers this bridge
[    0.290532] acpi PNP0A08:00: ignoring host bridge window [mem 0x000c8000-0x000dffff window] (conflicts with Video ROM [mem 0x000c0000-0x000cebff])
[    0.290775] PCI host bridge to bus 0000:00
[    0.290776] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.290778] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.290779] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.290780] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
[    0.290781] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff window]
[    0.290782] pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfedfffff window]
[    0.290783] pci_bus 0000:00: root bus resource [mem 0xfef00000-0xffbfffff window]
[    0.290784] pci_bus 0000:00: root bus resource [bus 00-3d]
[    0.290791] pci 0000:00:00.0: [8086:d130] type 00 class 0x060000
[    0.290887] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
[    0.290910] pci 0000:00:03.0: enabling Extended Tags
[    0.290939] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.291038] pci 0000:00:05.0: [8086:d13a] type 01 class 0x060400
[    0.291060] pci 0000:00:05.0: enabling Extended Tags
[    0.291088] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.291185] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
[    0.291305] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
[    0.291421] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
[    0.291535] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
[    0.291640] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
[    0.291738] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
[    0.291852] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[    0.291871] pci 0000:00:1a.0: reg 0x10: [mem 0xb0002000-0xb00023ff]
[    0.291946] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.292049] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[    0.292114] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.292217] pci 0000:00:1c.6: [8086:3b4e] type 01 class 0x060400
[    0.292282] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.292384] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[    0.292404] pci 0000:00:1d.0: reg 0x10: [mem 0xb0003000-0xb00033ff]
[    0.292479] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.292575] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.292707] pci 0000:00:1f.0: [8086:3b14] type 00 class 0x060100
[    0.292890] pci 0000:00:1f.2: [8086:3b22] type 00 class 0x010601
[    0.292906] pci 0000:00:1f.2: reg 0x10: [io  0x1870-0x1877]
[    0.292912] pci 0000:00:1f.2: reg 0x14: [io  0x1864-0x1867]
[    0.292918] pci 0000:00:1f.2: reg 0x18: [io  0x1868-0x186f]
[    0.292924] pci 0000:00:1f.2: reg 0x1c: [io  0x1860-0x1863]
[    0.292930] pci 0000:00:1f.2: reg 0x20: [io  0x1820-0x183f]
[    0.292937] pci 0000:00:1f.2: reg 0x24: [mem 0xb0004000-0xb00047ff]
[    0.292973] pci 0000:00:1f.2: PME# supported from D3hot
[    0.293062] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[    0.293078] pci 0000:00:1f.3: reg 0x10: [mem 0xb0005000-0xb00050ff 64bit]
[    0.293095] pci 0000:00:1f.3: reg 0x20: [io  0x1840-0x185f]
[    0.293244] pci 0000:01:00.0: [1002:67df] type 00 class 0x030000
[    0.293268] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.293277] pci 0000:01:00.0: reg 0x18: [mem 0xb0400000-0xb05fffff 64bit pref]
[    0.293283] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
[    0.293289] pci 0000:01:00.0: reg 0x24: [mem 0xb0140000-0xb017ffff]
[    0.293295] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.293301] pci 0000:01:00.0: enabling Extended Tags
[    0.293353] pci 0000:01:00.0: supports D1 D2
[    0.293354] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.293434] pci 0000:01:00.1: [1002:aaf0] type 00 class 0x040300
[    0.293453] pci 0000:01:00.1: reg 0x10: [mem 0xb0100000-0xb0103fff 64bit]
[    0.293484] pci 0000:01:00.1: enabling Extended Tags
[    0.293523] pci 0000:01:00.1: supports D1 D2
[    0.308032] pci 0000:00:03.0: PCI bridge to [bus 01]
[    0.308037] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
[    0.308041] pci 0000:00:03.0:   bridge window [mem 0xb0100000-0xb01fffff]
[    0.308047] pci 0000:00:03.0:   bridge window [mem 0xb0400000-0xcfffffff 64bit pref]
[    0.308109] pci 0000:00:05.0: PCI bridge to [bus 02]
[    0.308176] pci 0000:05:00.0: [1000:0072] type 00 class 0x010700
[    0.308202] pci 0000:05:00.0: reg 0x10: [io  0x3000-0x30ff]
[    0.308216] pci 0000:05:00.0: reg 0x14: [mem 0xb0200000-0xb0203fff 64bit]
[    0.308230] pci 0000:05:00.0: reg 0x1c: [mem 0xb0240000-0xb027ffff 64bit]
[    0.308248] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.308256] pci 0000:05:00.0: enabling Extended Tags
[    0.308327] pci 0000:05:00.0: supports D1 D2
[    0.308356] pci 0000:05:00.0: reg 0x174: [mem 0x00000000-0x00003fff 64bit]
[    0.308357] pci 0000:05:00.0: VF(n) BAR0 space: [mem 0x00000000-0x0003ffff 64bit] (contains BAR0 for 16 VFs)
[    0.308370] pci 0000:05:00.0: reg 0x17c: [mem 0x00000000-0x0003ffff 64bit]
[    0.308372] pci 0000:05:00.0: VF(n) BAR2 space: [mem 0x00000000-0x003fffff 64bit] (contains BAR2 for 16 VFs)
[    0.320025] pci 0000:00:1c.0: PCI bridge to [bus 05]
[    0.320031] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.320036] pci 0000:00:1c.0:   bridge window [mem 0xb0200000-0xb02fffff]
[    0.320128] pci 0000:06:00.0: [8086:10d3] type 00 class 0x020000
[    0.320167] pci 0000:06:00.0: reg 0x10: [mem 0xb0320000-0xb033ffff]
[    0.320198] pci 0000:06:00.0: reg 0x18: [io  0x4000-0x401f]
[    0.320214] pci 0000:06:00.0: reg 0x1c: [mem 0xb0300000-0xb0303fff]
[    0.320360] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.332029] pci 0000:00:1c.6: PCI bridge to [bus 06]
[    0.332034] pci 0000:00:1c.6:   bridge window [io  0x4000-0x4fff]
[    0.332039] pci 0000:00:1c.6:   bridge window [mem 0xb0300000-0xb03fffff]
[    0.332068] pci_bus 0000:11: extended config space not accessible
[    0.332143] pci 0000:00:1e.0: PCI bridge to [bus 11] (subtractive decode)
[    0.332150] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.332152] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.332153] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.332154] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xdfffffff window] (subtractive decode)
[    0.332155] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xfebfffff window] (subtractive decode)
[    0.332156] pci 0000:00:1e.0:   bridge window [mem 0xfed00000-0xfedfffff window] (subtractive decode)
[    0.332157] pci 0000:00:1e.0:   bridge window [mem 0xfef00000-0xffbfffff window] (subtractive decode)
[    0.332404] ACPI: PCI Interrupt Link [LNKA] (IRQs 9 10 11) *5
[    0.332486] ACPI: PCI Interrupt Link [LNKB] (IRQs 9 10 *11)
[    0.332571] ACPI: PCI Interrupt Link [LNKC] (IRQs 9 10 *11)
[    0.332641] ACPI: PCI Interrupt Link [LNKD] (IRQs 9 10 11) *0, disabled.
[    0.332723] ACPI: PCI Interrupt Link [LNKE] (IRQs 9 10 *11)
[    0.332804] ACPI: PCI Interrupt Link [LNKF] (IRQs 9 *10 11)
[    0.332885] ACPI: PCI Interrupt Link [LNKG] (IRQs *9 10 11)
[    0.332956] ACPI: PCI Interrupt Link [LNKH] (IRQs 9 10 11) *0, disabled.
[    0.336009] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.336011] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.336012] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.336013] vgaarb: loaded
[    0.336082] SCSI subsystem initialized
[    0.336096] libata version 3.00 loaded.
[    0.336096] pps_core: LinuxPPS API ver. 1 registered
[    0.336096] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[    0.336096] PTP clock support registered
[    0.336096] EDAC MC: Ver: 3.0.0
[    0.336118] PCI: Using ACPI for IRQ routing
[    0.336284] PCI: pci_cache_line_size set to 64 bytes
[    0.336332] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.336333] e820: reserve RAM buffer [mem 0x0009b800-0x0009ffff]
[    0.336334] e820: reserve RAM buffer [mem 0x7f7b0000-0x7fffffff]
[    0.336422] NetLabel: Initializing
[    0.336423] NetLabel:  domain hash size = 128
[    0.336423] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.336439] NetLabel:  unlabeled traffic allowed by default
[    0.336442] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
[    0.336442] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 24, 25, 26, 27, 28, 0
[    0.336442] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.336442] hpet: hpet2 irq 24 for MSI
[    0.336442] hpet: hpet3 irq 25 for MSI
[    0.336442] hpet: hpet4 irq 26 for MSI
[    0.336442] hpet: hpet5 irq 27 for MSI
[    0.336442] hpet: hpet6 irq 28 for MSI
[    0.336442] clocksource: Switched to clocksource tsc-early
[    0.347866] VFS: Disk quotas dquot_6.6.0
[    0.347888] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.347990] AppArmor: AppArmor Filesystem Enabled
[    0.348010] pnp: PnP ACPI init
[    0.348196] system 00:00: [mem 0xe0000000-0xefffffff window] has been reserved
[    0.348201] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.348557] system 00:01: [io  0x0200-0x020f] has been reserved
[    0.348559] system 00:01: [io  0x04d0-0x04d1] has been reserved
[    0.348560] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.348562] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.348563] system 00:01: [io  0x0810-0x081f] has been reserved
[    0.348564] system 00:01: [io  0x0ca0-0x0ca1] has been reserved
[    0.348566] system 00:01: [io  0x0ca4-0x0ca7] has been reserved
[    0.348567] system 00:01: [io  0x0ca8-0x0cab] has been reserved
[    0.348568] system 00:01: [io  0x0cae-0x0caf] has been reserved
[    0.348570] system 00:01: [io  0x0e00-0x0e7f] has been reserved
[    0.348571] system 00:01: [io  0x1000-0x107f] has been reserved
[    0.348573] system 00:01: [io  0x1100-0x110f] has been reserved
[    0.348574] system 00:01: [io  0x1180-0x11ff] has been reserved
[    0.348575] system 00:01: [io  0xfe00] has been reserved
[    0.348577] system 00:01: [io  0xff00] has been reserved
[    0.348578] system 00:01: [mem 0xfe710000-0xfe711fff] has been reserved
[    0.348580] system 00:01: [mem 0xfe713000-0xfe713fff] has been reserved
[    0.348581] system 00:01: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.348583] system 00:01: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.348584] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.348588] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.348623] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.348923] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.349139] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.349214] pnp: PnP ACPI: found 5 devices
[    0.354931] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.354958] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000 add_align 100000
[    0.354965] pci 0000:00:1c.6: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000 add_align 100000
[    0.354979] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
[    0.354982] pci 0000:00:1c.6: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
[    0.354985] pci 0000:01:00.0: BAR 6: assigned [mem 0xb0120000-0xb013ffff pref]
[    0.354987] pci 0000:00:03.0: PCI bridge to [bus 01]
[    0.354989] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
[    0.354991] pci 0000:00:03.0:   bridge window [mem 0xb0100000-0xb01fffff]
[    0.354993] pci 0000:00:03.0:   bridge window [mem 0xb0400000-0xcfffffff 64bit pref]
[    0.354997] pci 0000:00:05.0: PCI bridge to [bus 02]
[    0.355004] pci 0000:05:00.0: BAR 6: assigned [mem 0xb0280000-0xb02fffff pref]
[    0.355006] pci 0000:05:00.0: BAR 9: no space for [mem size 0x00400000 64bit]
[    0.355008] pci 0000:05:00.0: BAR 9: failed to assign [mem size 0x00400000 64bit]
[    0.355009] pci 0000:05:00.0: BAR 7: no space for [mem size 0x00040000 64bit]
[    0.355010] pci 0000:05:00.0: BAR 7: failed to assign [mem size 0x00040000 64bit]
[    0.355012] pci 0000:00:1c.0: PCI bridge to [bus 05]
[    0.355013] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.355017] pci 0000:00:1c.0:   bridge window [mem 0xb0200000-0xb02fffff]
[    0.355019] pci 0000:00:1c.0:   bridge window [mem 0x80000000-0x801fffff 64bit pref]
[    0.355023] pci 0000:00:1c.6: PCI bridge to [bus 06]
[    0.355025] pci 0000:00:1c.6:   bridge window [io  0x4000-0x4fff]
[    0.355029] pci 0000:00:1c.6:   bridge window [mem 0xb0300000-0xb03fffff]
[    0.355031] pci 0000:00:1c.6:   bridge window [mem 0x80200000-0x803fffff 64bit pref]
[    0.355035] pci 0000:00:1e.0: PCI bridge to [bus 11]
[    0.355044] pci_bus 0000:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    0.355045] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.355046] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.355047] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.355048] pci_bus 0000:00: resource 7 [mem 0x80000000-0xdfffffff window]
[    0.355049] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff window]
[    0.355051] pci_bus 0000:00: resource 9 [mem 0xfed00000-0xfedfffff window]
[    0.355052] pci_bus 0000:00: resource 10 [mem 0xfef00000-0xffbfffff window]
[    0.355053] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.355054] pci_bus 0000:01: resource 1 [mem 0xb0100000-0xb01fffff]
[    0.355055] pci_bus 0000:01: resource 2 [mem 0xb0400000-0xcfffffff 64bit pref]
[    0.355056] pci_bus 0000:05: resource 0 [io  0x3000-0x3fff]
[    0.355057] pci_bus 0000:05: resource 1 [mem 0xb0200000-0xb02fffff]
[    0.355058] pci_bus 0000:05: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
[    0.355060] pci_bus 0000:06: resource 0 [io  0x4000-0x4fff]
[    0.355061] pci_bus 0000:06: resource 1 [mem 0xb0300000-0xb03fffff]
[    0.355062] pci_bus 0000:06: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
[    0.355063] pci_bus 0000:11: resource 4 [io  0x0000-0x0cf7 window]
[    0.355064] pci_bus 0000:11: resource 5 [io  0x0d00-0xffff window]
[    0.355065] pci_bus 0000:11: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.355066] pci_bus 0000:11: resource 7 [mem 0x80000000-0xdfffffff window]
[    0.355067] pci_bus 0000:11: resource 8 [mem 0xf0000000-0xfebfffff window]
[    0.355068] pci_bus 0000:11: resource 9 [mem 0xfed00000-0xfedfffff window]
[    0.355070] pci_bus 0000:11: resource 10 [mem 0xfef00000-0xffbfffff window]
[    0.355147] NET: Registered protocol family 2
[    0.355277] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes)
[    0.355449] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.356040] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.356294] TCP: Hash tables configured (established 262144 bind 65536)
[    0.356347] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    0.356550] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    0.356787] NET: Registered protocol family 1
[    0.357272] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.357279] pci 0000:01:00.1: Linked as a consumer to 0000:01:00.0
[    0.357319] PCI: CLS 32 bytes, default 64
[    0.357353] Unpacking initramfs...
[    0.592009] random: fast init done
[    0.592010] random: fast init done
[    1.890122] Freeing initrd memory: 15304K
[    1.890188] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.890191] software IO TLB [mem 0x7b7b0000-0x7f7b0000] (64MB) mapped at [(____ptrval____)-(____ptrval____)]
[    1.890472] Scanning for low memory corruption every 60 seconds
[    1.891126] Initialise system trusted keyrings
[    1.891186] workingset: timestamp_bits=37 max_order=23 bucket_order=0
[    1.891241] zbud: loaded
[    1.891498] pstore: using deflate compression
[    1.892464] Key type asymmetric registered
[    1.892465] Asymmetric key parser 'x509' registered
[    1.892482] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    1.892515] io scheduler noop registered
[    1.892515] io scheduler deadline registered
[    1.892529] io scheduler cfq registered (default)
[    1.892529] io scheduler mq-deadline registered
[    1.892530] io scheduler kyber registered
[    1.893199] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
[    1.893199] vesafb: scrolling: redraw
[    1.893201] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    1.893214] vesafb: framebuffer at 0xc0000000, mapped to 0x(____ptrval____), using 8128k, total 8128k
[    2.156561] Console: switching to colour frame buffer device 240x67
[    2.418839] fb0: VESA VGA frame buffer device
[    2.418853] intel_idle: MWAIT substates: 0x1120
[    2.418853] intel_idle: v0.4.1 model 0x1E
[    2.419099] intel_idle: lapic_timer_reliable_states 0x2
[    2.419366] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.419426] pstore: Registered erst as persistent store backend
[    2.419427] GHES: HEST is not enabled!
[    2.419494] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.440026] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.460619] 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.461995] Non-volatile memory driver v1.3
[    2.462014] Linux agpgart interface v0.103
[    2.463506] ahci 0000:00:1f.2: version 3.0
[    2.473944] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.473952] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pmp pio slum part ems apst 
[    2.533026] scsi host0: ahci
[    2.533651] scsi host1: ahci
[    2.534261] scsi host2: ahci
[    2.534686] scsi host3: ahci
[    2.535139] scsi host4: ahci
[    2.535691] scsi host5: ahci
[    2.535778] ata1: SATA max UDMA/133 abar m2048@0xb0004000 port 0xb0004100 irq 29
[    2.535781] ata2: SATA max UDMA/133 abar m2048@0xb0004000 port 0xb0004180 irq 29
[    2.535783] ata3: SATA max UDMA/133 abar m2048@0xb0004000 port 0xb0004200 irq 29
[    2.535785] ata4: SATA max UDMA/133 abar m2048@0xb0004000 port 0xb0004280 irq 29
[    2.535788] ata5: SATA max UDMA/133 abar m2048@0xb0004000 port 0xb0004300 irq 29
[    2.535790] ata6: SATA max UDMA/133 abar m2048@0xb0004000 port 0xb0004380 irq 29
[    2.535844] i8042: PNP: No PS/2 controller found.
[    2.535844] i8042: Probing ports directly.
[    2.861652] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.862127] mousedev: PS/2 mouse device common for all mice
[    2.874747] ata1: SATA link down (SStatus 0 SControl 300)
[    2.874793] rtc_cmos 00:02: RTC can wake from S4
[    2.892469] ata2: SATA link down (SStatus 0 SControl 300)
[    2.892528] rtc_cmos 00:02: registered as rtc0
[    2.892580] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.892606] IR NEC protocol handler initialized
[    2.892607] IR RC5(x/sz) protocol handler initialized
[    2.892607] IR RC6 protocol handler initialized
[    2.892608] IR JVC protocol handler initialized
[    2.892609] IR Sony protocol handler initialized
[    2.892609] IR SANYO protocol handler initialized
[    2.892610] IR Sharp protocol handler initialized
[    2.892610] IR MCE Keyboard/mouse protocol handler initialized
[    2.892611] IR XMP protocol handler initialized
[    2.893568] ledtrig-cpu: registered to indicate activity on CPUs
[    2.893604] hidraw: raw HID events driver (C) Jiri Kosina
[    2.893803] NET: Registered protocol family 10
[    2.899056] Segment Routing with IPv6
[    2.900324] microcode: sig=0x106e5, pf=0x2, revision=0x7
[    2.900700] microcode: Microcode Update Driver: v2.2.
[    2.900721] sched_clock: Marking stable (2900687580, 0)->(3269126720, -368439140)
[    2.900987] registered taskstats version 1
[    2.900989] Loading compiled-in X.509 certificates
[    2.901007] zswap: loaded using pool lzo/zbud
[    2.904043] Key type big_key registered
[    2.905655] Key type encrypted registered
[    2.905658] AppArmor: AppArmor sha1 policy hashing enabled
[    2.906073]   Magic number: 14:243:158
[    2.906122] acpi device:25: hash matches
[    2.906236] rtc_cmos 00:02: setting system clock to 2018-08-04 03:11:08 UTC (1533352268)
[    2.907781] ata4: SATA link down (SStatus 0 SControl 300)
[    2.907806] ata6: SATA link down (SStatus 0 SControl 300)
[    2.907822] ata3: SATA link down (SStatus 0 SControl 300)
[    2.908108] tsc: Refined TSC clocksource calibration: 2925.981 MHz
[    2.908118] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2a2d228446b, max_idle_ns: 440795275274 ns
[    2.908195] clocksource: Switched to clocksource tsc
[    3.068153] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.069942] ata5.00: ATAPI: Optiarc DVD RW AD-7230S, 1.83, max UDMA/100
[    3.072140] ata5.00: configured for UDMA/100
[    3.074482] scsi 4:0:0:0: CD-ROM            Optiarc  DVD RW AD-7230S  1.83 PQ: 0 ANSI: 5
[    3.103309] Freeing unused kernel memory: 1972K
[    3.103311] Write protecting the kernel read-only data: 16384k
[    3.104108] Freeing unused kernel memory: 2008K
[    3.105386] Freeing unused kernel memory: 604K
[    3.114051] pstore: crypto_comp_decompress failed, ret = -22!
[    3.115132] pstore: decompression failed: -22
[    3.120887] systemd[1]: systemd 237 running in system mode. (+PAM -AUDIT +SELINUX -IMA +APPARMOR -SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[    3.140580] systemd[1]: Detected architecture x86-64.
[    3.140583] systemd[1]: Running in initial RAM disk.
[    3.147384] systemd[1]: Set hostname to <SunWave1>.
[    3.185590] random: systemd: uninitialized urandom read (16 bytes read)
[    3.185602] systemd[1]: Reached target Timers.
[    3.185641] random: systemd: uninitialized urandom read (16 bytes read)
[    3.185949] systemd[1]: Created slice System Slice.
[    3.185966] random: systemd: uninitialized urandom read (16 bytes read)
[    3.186002] systemd[1]: Listening on udev Kernel Socket.
[    3.186075] systemd[1]: Listening on Journal Audit Socket.
[    3.186090] systemd[1]: Reached target Slices.
[    3.186147] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.190610] alua: device handler registered
[    3.190949] emc: device handler registered
[    3.191320] rdac: device handler registered
[    3.193703] device-mapper: uevent: version 1.0.3
[    3.193798] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@xxxxxxxxxx
[    3.195291] scsi 4:0:0:0: Attached scsi generic sg0 type 5
[    3.427742] ACPI: bus type USB registered
[    3.427770] usbcore: registered new interface driver usbfs
[    3.427784] usbcore: registered new interface driver hub
[    3.428113] usbcore: registered new device driver usb
[    3.430853] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.433296] ehci-pci: EHCI PCI platform driver
[    3.433535] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.433542] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.433554] ehci-pci 0000:00:1a.0: debug port 2
[    3.437477] ehci-pci 0000:00:1a.0: cache line size of 32 is not supported
[    3.437496] ehci-pci 0000:00:1a.0: irq 21, io mem 0xb0002000
[    3.439359] mpt3sas version 25.100.00.00 loaded
[    3.439456] mpt3sas 0000:05:00.0: can't disable ASPM; OS doesn't have ASPM control
[    3.440103] mpt2sas_cm0: 64 BIT PCI BUS DMA ADDRESSING SUPPORTED, total mem (24675420 kB)
[    3.452211] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.452309] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
[    3.452311] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.452312] usb usb1: Product: EHCI Host Controller
[    3.452313] usb usb1: Manufacturer: Linux 4.18.0-rc1-1.g7262353-default+ ehci_hcd
[    3.452315] usb usb1: SerialNumber: 0000:00:1a.0
[    3.452465] hub 1-0:1.0: USB hub found
[    3.452475] hub 1-0:1.0: 2 ports detected
[    3.452846] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.452853] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.452865] ehci-pci 0000:00:1d.0: debug port 2
[    3.459417] ehci-pci 0000:00:1d.0: cache line size of 32 is not supported
[    3.459440] ehci-pci 0000:00:1d.0: irq 20, io mem 0xb0003000
[    3.461676] sr 4:0:0:0: [sr0] scsi3-mmc drive: 32x/32x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.461679] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.461831] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    3.472165] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.472248] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.18
[    3.472251] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.472252] usb usb2: Product: EHCI Host Controller
[    3.472254] usb usb2: Manufacturer: Linux 4.18.0-rc1-1.g7262353-default+ ehci_hcd
[    3.472255] usb usb2: SerialNumber: 0000:00:1d.0
[    3.472403] hub 2-0:1.0: USB hub found
[    3.472418] hub 2-0:1.0: 2 ports detected
[    3.483348] [drm] amdgpu kernel modesetting enabled.
[    3.485012] AMD IOMMUv2 driver by Joerg Roedel <jroedel@xxxxxxx>
[    3.485013] AMD IOMMUv2 functionality not available on this system
[    3.486741] CRAT table not found
[    3.486743] Virtual CRAT table created for CPU
[    3.486744] Parsing CRAT table with 1 nodes
[    3.486745] Creating topology SYSFS entries
[    3.486761] Topology: Add CPU node
[    3.486762] Finished initializing topology
[    3.486821] kfd kfd: Initialized module
[    3.486984] checking generic (c0000000 7f0000) vs hw (c0000000 10000000)
[    3.486985] fb: switching to amdgpudrmfb from VESA VGA
[    3.497582] mpt2sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[    3.497594] mpt2sas_cm0: MSI-X vectors supported: 1, no of cores: 8, max_msix_vectors: -1
[    3.497657] mpt2sas0-msix0: PCI-MSI-X enabled: IRQ 30
[    3.497659] mpt2sas_cm0: iomem(0x00000000b0200000), mapped(0x(____ptrval____)), size(16384)
[    3.497660] mpt2sas_cm0: ioport(0x0000000000003000), size(256)
[    3.502545] random: crng init done
[    3.502546] random: 7 urandom warning(s) missed due to ratelimiting
[    3.554460] mpt2sas_cm0: CurrentHostPageSize is 0: Setting default host page size to 4k
[    3.554463] mpt2sas_cm0: sending message unit reset !!
[    3.556091] mpt2sas_cm0: message unit reset: SUCCESS
[    3.593253] mpt2sas_cm0: Allocated physical memory: size(1687 kB)
[    3.593255] mpt2sas_cm0: Current Controller Queue Depth(3364),Max Controller Queue Depth(3432)
[    3.593255] mpt2sas_cm0: Scatter Gather Elements per IO(128)
[    3.639064] mpt2sas_cm0: LSISAS2008: FWVersion(20.00.07.00), ChipRevision(0x03), BiosVersion(07.39.02.00)
[    3.639065] mpt2sas_cm0: Protocol=(
[    3.639065] Initiator
[    3.639065] ,Target
[    3.639066] ), 
[    3.639066] Capabilities=(
[    3.639067] TLR
[    3.639067] ,EEDP
[    3.639067] ,Snapshot Buffer
[    3.639068] ,Diag Trace Buffer
[    3.639068] ,Task Set Full
[    3.639068] ,NCQ
[    3.639069] )
[    3.639283] scsi host6: Fusion MPT SAS Host
[    3.639529] mpt2sas_cm0: sending port enable !!
[    3.642200] mpt2sas_cm0: host_add: handle(0x0001), sas_addr(0x500605b00650fca0), phys(8)
[    3.656103] mpt2sas_cm0: port enable: SUCCESS
[    3.657634] scsi 6:0:0:0: Direct-Access     ATA      Samsung SSD 840  6B0Q PQ: 0 ANSI: 6
[    3.657638] scsi 6:0:0:0: SATA: handle(0x000a), sas_addr(0x4433221101000000), phy(1), device_name(0x50025385a013b40d)
[    3.657639] scsi 6:0:0:0: enclosure logical id (0x500605b00650fca0), slot(2) 
[    3.657857] scsi 6:0:0:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[    3.658682] sd 6:0:0:0: Attached scsi generic sg1 type 0
[    3.659966] scsi 6:0:1:0: Direct-Access     ATA      Samsung SSD 840  6B0Q PQ: 0 ANSI: 6
[    3.659969] scsi 6:0:1:0: SATA: handle(0x0009), sas_addr(0x4433221100000000), phy(0), device_name(0x50025385a023b094)
[    3.659970] scsi 6:0:1:0: enclosure logical id (0x500605b00650fca0), slot(3) 
[    3.660155] scsi 6:0:1:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[    3.660244] sd 6:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    3.660843] sd 6:0:1:0: Attached scsi generic sg2 type 0
[    3.661436] sd 6:0:0:0: [sda] Write Protect is off
[    3.661438] sd 6:0:0:0: [sda] Mode Sense: 7f 00 10 08
[    3.661711] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    3.662001] sd 6:0:1:0: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    3.662827] scsi 6:0:2:0: Direct-Access     ATA      ST3160318AS      CC49 PQ: 0 ANSI: 6
[    3.662830] scsi 6:0:2:0: SATA: handle(0x000b), sas_addr(0x4433221102000000), phy(2), device_name(0x5000c5001fd96bdf)
[    3.662831] scsi 6:0:2:0: enclosure logical id (0x500605b00650fca0), slot(1) 
[    3.662922] scsi 6:0:2:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[    3.663200] sd 6:0:1:0: [sdb] Write Protect is off
[    3.663202] sd 6:0:1:0: [sdb] Mode Sense: 7f 00 10 08
[    3.663541] sd 6:0:1:0: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    3.665420]  sda: sda1
[    3.665556] sd 6:0:2:0: Attached scsi generic sg3 type 0
[    3.666912]  sdb: sdb1
[    3.667583] scsi 6:0:3:0: Direct-Access     ATA      ST3160318AS      CC49 PQ: 0 ANSI: 6
[    3.667586] scsi 6:0:3:0: SATA: handle(0x000c), sas_addr(0x4433221103000000), phy(3), device_name(0x5000c5001fd9ce51)
[    3.667587] scsi 6:0:3:0: enclosure logical id (0x500605b00650fca0), slot(0) 
[    3.667673] scsi 6:0:3:0: atapi(n), ncq(y), asyn_notify(n), smart(y), fua(y), sw_preserve(y)
[    3.668606] sd 6:0:0:0: [sda] Attached SCSI disk
[    3.669597] sd 6:0:2:0: [sdc] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[    3.670004] sd 6:0:1:0: [sdb] Attached SCSI disk
[    3.670330] sd 6:0:3:0: Attached scsi generic sg4 type 0
[    3.674426] sd 6:0:3:0: [sdd] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[    3.713333] sd 6:0:2:0: [sdc] Write Protect is off
[    3.713334] sd 6:0:2:0: [sdc] Mode Sense: 7f 00 10 08
[    3.717515] sd 6:0:2:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    3.718740] sd 6:0:3:0: [sdd] Write Protect is off
[    3.718742] sd 6:0:3:0: [sdd] Mode Sense: 7f 00 10 08
[    3.722847] sd 6:0:3:0: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    3.752806]  sdc: sdc1
[    3.752909] Console: switching to colour dummy device 80x25
[    3.753298] [drm] initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1DA2:0xE366 0xE7).
[    3.753310] [drm] register mmio base: 0xB0140000
[    3.753311] [drm] register mmio size: 262144
[    3.753321] [drm] add ip block number 0 <vi_common>
[    3.753322] [drm] add ip block number 1 <gmc_v8_0>
[    3.753322] [drm] add ip block number 2 <tonga_ih>
[    3.753323] [drm] add ip block number 3 <powerplay>
[    3.753324] [drm] add ip block number 4 <dm>
[    3.753325] [drm] add ip block number 5 <gfx_v8_0>
[    3.753326] [drm] add ip block number 6 <sdma_v3_0>
[    3.753326] [drm] add ip block number 7 <uvd_v6_0>
[    3.753327] [drm] add ip block number 8 <vce_v3_0>
[    3.753331] kfd kfd: skipped device 1002:67df, PCI rejects atomics
[    3.753340] [drm] UVD is enabled in VM mode
[    3.753341] [drm] UVD ENC is enabled in VM mode
[    3.753343] [drm] VCE enabled in VM mode
[    3.756398] ATOM BIOS: 113-1E3660U-O51
[    3.756427] [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
[    3.756465] amdgpu 0000:01:00.0: VRAM: 8192M 0x000000F400000000 - 0x000000F5FFFFFFFF (8192M used)
[    3.756466] amdgpu 0000:01:00.0: GART: 256M 0x0000000000000000 - 0x000000000FFFFFFF
[    3.756471] [drm] Detected VRAM RAM=8192M, BAR=256M
[    3.756472] [drm] RAM width 256bits GDDR5
[    3.756609] [TTM] Zone  kernel: Available graphics memory: 12337710 kiB
[    3.756610] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    3.756610] [TTM] Initializing pool allocator
[    3.756615] [TTM] Initializing DMA pool allocator
[    3.756647] [drm] amdgpu: 8192M of VRAM memory ready
[    3.756648] [drm] amdgpu: 8192M of GTT memory ready.
[    3.756658] [drm] GART: num cpu pages 65536, num gpu pages 65536
[    3.756712] [drm] PCIE GART of 256M enabled (table at 0x000000F4007E9000).
[    3.756830] [drm] Chained IB support enabled!
[    3.758048]  sdd: sdd1
[    3.758568] [drm] Found UVD firmware Version: 1.130 Family ID: 16
[    3.759874] [drm] Found VCE firmware Version: 53.26 Binary ID: 3
[    3.785694] sd 6:0:2:0: [sdc] Attached SCSI disk
[    3.791070] sd 6:0:3:0: [sdd] Attached SCSI disk
[    3.792701] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.808026] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.816333] [drm] DM_PPLIB: values for Engine clock
[    3.816335] [drm] DM_PPLIB:	 300000
[    3.816335] [drm] DM_PPLIB:	 600000
[    3.816335] [drm] DM_PPLIB:	 900000
[    3.816336] [drm] DM_PPLIB:	 1145000
[    3.816336] [drm] DM_PPLIB:	 1215000
[    3.816336] [drm] DM_PPLIB:	 1257000
[    3.816337] [drm] DM_PPLIB:	 1300000
[    3.816337] [drm] DM_PPLIB:	 1411000
[    3.816338] [drm] DM_PPLIB: Validation clocks:
[    3.816338] [drm] DM_PPLIB:    engine_max_clock: 141100
[    3.816339] [drm] DM_PPLIB:    memory_max_clock: 200000
[    3.816339] [drm] DM_PPLIB:    level           : 8
[    3.816340] [drm] DM_PPLIB: values for Memory clock
[    3.816341] [drm] DM_PPLIB:	 300000
[    3.816341] [drm] DM_PPLIB:	 1000000
[    3.816341] [drm] DM_PPLIB:	 2000000
[    3.816342] [drm] DM_PPLIB: Validation clocks:
[    3.816342] [drm] DM_PPLIB:    engine_max_clock: 141100
[    3.816343] [drm] DM_PPLIB:    memory_max_clock: 200000
[    3.816343] [drm] DM_PPLIB:    level           : 8
[    3.825106] md/raid1:md0: active with 2 out of 2 mirrors
[    3.827050] md0: detected capacity change from 0 to 119377559552
[    3.840119] [drm] Display Core initialized with v3.1.60!
[    3.865510] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.865511] [drm] Driver supports precise vblank timestamp query.
[    3.888166] EXT4-fs (md0): mounted filesystem with ordered data mode. Opts: (null)
[    3.893858] [drm] UVD and UVD ENC initialized successfully.
[    3.948414] usb 1-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
[    3.948416] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.948691] hub 1-1:1.0: USB hub found
[    3.948784] hub 1-1:1.0: 6 ports detected
[    3.964459] usb 2-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
[    3.964461] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.964738] hub 2-1:1.0: USB hub found
[    3.964788] hub 2-1:1.0: 8 ports detected
[    3.993813] [drm] VCE initialized successfully.
[    3.996618] [drm] fb mappable at 0xC0D11000
[    3.996619] [drm] vram apper at 0xC0000000
[    3.996620] [drm] size 8294400
[    3.996621] [drm] fb depth is 24
[    3.996621] [drm]    pitch is 7680
[    3.996727] fbcon: amdgpudrmfb (fb0) is primary device
[    4.033796] Console: switching to colour frame buffer device 240x67
[    4.038929] amdgpu 0000:01:00.0: fb0: amdgpudrmfb frame buffer device
[    4.060941] [drm] Initialized amdgpu 3.27.0 20150101 for 0000:01:00.0 on minor 0
[    4.160323] systemd-journald[206]: Received SIGTERM from PID 1 (systemd).
[    4.172598] systemd: 20 output lines suppressed due to ratelimiting
[    4.232418] systemd[1]: systemd 237 running in system mode. (+PAM -AUDIT +SELINUX -IMA +APPARMOR -SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[    4.236091] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    4.252120] usb 2-1.4: new full-speed USB device number 3 using ehci-pci
[    4.252408] systemd[1]: Detected architecture x86-64.
[    4.252877] systemd[1]: Set hostname to <SunWave1>.
[    4.349973] usb 1-1.1: New USB device found, idVendor=04a9, idProduct=220d, bcdDevice= 1.00
[    4.349975] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.349980] usb 1-1.1: Product: CanoScan
[    4.349981] usb 1-1.1: Manufacturer: Canon
[    4.365959] usb 2-1.4: New USB device found, idVendor=0e8f, idProduct=0008, bcdDevice= 1.09
[    4.365961] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.365962] usb 2-1.4: Product: PS(R) Gamepad
[    4.365963] usb 2-1.4: Manufacturer: Gasia Co.,Ltd
[    4.380226] systemd[1]: nss-lookup.target: Dependency Before=nss-lookup.target dropped
[    4.428015] usb 1-1.3: new full-speed USB device number 4 using ehci-pci
[    4.432157] systemd[1]: Stopped Switch Root.
[    4.432258] systemd[1]: systemd-journald.service: Service has no hold-off time, scheduling restart.
[    4.432329] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    4.432338] systemd[1]: Stopped Journal Service.
[    4.433278] systemd[1]: Starting Journal Service...
[    4.433818] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.444025] usb 2-1.6: new full-speed USB device number 4 using ehci-pci
[    4.467413] EXT4-fs (md0): re-mounted. Opts: discard,nobarrier
[    4.477010] systemd-journald[539]: Received request to flush runtime journal from PID 1
[    4.539446] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c52e, bcdDevice=23.01
[    4.539448] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.539449] usb 1-1.3: Product: USB Receiver
[    4.539450] usb 1-1.3: Manufacturer: Logitech
[    4.558204] acpi_cpufreq: P-state transition latency capped at 20 uS
[    4.567287] ACPI: AC Adapter [PSD] (on-line)
[    4.567733] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    4.567772] ACPI: Power Button [PWRB]
[    4.567822] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    4.567865] ACPI: Power Button [PWRF]
[    4.575497] ipmi message handler version 39.2
[    4.577677] ipmi device interface
[    4.603489] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (INTERRUPT)
[    4.603533] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
[    4.603553] EDAC i7core: Driver loaded, 1 memory controller(s) found.
[    4.604249] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    4.604869] input: PC Speaker as /devices/platform/pcspkr/input/input3
[    4.618305] IPMI System Interface driver.
[    4.618329] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[    4.618331] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[    4.618332] ipmi_si: Adding SMBIOS-specified kcs state machine
[    4.618367] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[    4.618415] ipmi_si IPI0001:00: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[    4.618417] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[    4.618419] ipmi_si: Adding ACPI-specified kcs state machine
[    4.618473] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[    4.620042] usb 1-1.4: new low-speed USB device number 5 using ehci-pci
[    4.636466] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    4.636468] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    4.636858] e1000e 0000:06:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    4.666820] usb 2-1.6: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice=52.76
[    4.666831] usb 2-1.6: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.694931] e1000e 0000:06:00.0 0000:06:00.0 (uninitialized): registered PHC clock
[    4.704046] iTCO_vendor_support: vendor-support=0
[    4.705867] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[    4.711243] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    4.711299] iTCO_wdt: Found a 3420 TCO device (Version=2, TCOBASE=0x1060)
[    4.711782] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    4.732673] usbcore: registered new interface driver usbhid
[    4.732675] usbhid: USB HID core driver
[    4.734167] usb 1-1.4: New USB device found, idVendor=04b4, idProduct=0060, bcdDevice= 0.01
[    4.734170] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.734171] usb 1-1.4: Product: USB Device
[    4.734172] usb 1-1.4: Manufacturer: Areson
[    4.736751] input: Gasia Co.,Ltd PS(R) Gamepad as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/0003:0E8F:0008.0001/input/input4
[    4.736828] hid-generic 0003:0E8F:0008.0001: input,hidraw0: USB HID v1.10 Joystick [Gasia Co.,Ltd PS(R) Gamepad] on usb-0000:00:1d.0-1.4/input0
[    4.737003] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C52E.0002/input/input5
[    4.740578] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    4.740580] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
[    4.741208] input: Areson USB Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:04B4:0060.0004/input/input6
[    4.752034] e1000e 0000:06:00.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:19:99:77:b8:0c
[    4.752037] e1000e 0000:06:00.0 eth0: Intel(R) PRO/1000 Network Connection
[    4.752123] e1000e 0000:06:00.0 eth0: MAC: 3, PHY: 8, PBA No: 313132-030
[    4.754212] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card0/input7
[    4.769312] Bluetooth: Core ver 2.22
[    4.769329] NET: Registered protocol family 31
[    4.769330] Bluetooth: HCI device and connection manager initialized
[    4.769333] Bluetooth: HCI socket layer initialized
[    4.769335] Bluetooth: L2CAP socket layer initialized
[    4.769342] Bluetooth: SCO socket layer initialized
[    4.779349] usbcore: registered new interface driver btusb
[    4.786340] md/raid1:md1: active with 2 out of 2 mirrors
[    4.800275] hid-generic 0003:046D:C52E.0002: input,hidraw1: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1a.0-1.3/input0
[    4.800355] hid-generic 0003:04B4:0060.0004: input,hidraw2: USB HID v1.00 Mouse [Areson USB Device] on usb-0000:00:1a.0-1.4/input0
[    4.800394] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card0/input8
[    4.800475] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card0/input9
[    4.800539] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card0/input10
[    4.800578] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0003/input/input13
[    4.800605] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card0/input11
[    4.800675] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0003/input/input14
[    4.800699] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card0/input12
[    4.802844] hid-generic 0003:04B4:0060.0005: hiddev96,hidraw3: USB HID v1.00 Device [Areson USB Device] on usb-0000:00:1a.0-1.4/input1
[    4.814601] md1: detected capacity change from 0 to 159905742848
[    4.860308] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0003/input/input15
[    4.860528] hid-generic 0003:046D:C52E.0003: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1.3/input1
[    4.938039] ipmi_si IPI0001:00: Found new BMC (man_id: 0x002880, prod_id: 0x0246, dev_id: 0x02)
[    5.328613] EXT4-fs (md1): barriers disabled
[    5.344525] EXT4-fs (md1): mounted filesystem with ordered data mode. Opts: nobarrier
[    5.613471] ipmi_si IPI0001:00: IPMI kcs interface initialized
[    5.616997] IPMI SSIF Interface driver
[    5.621835] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.621837] Bluetooth: BNEP filters: protocol multicast
[    5.621841] Bluetooth: BNEP socket layer initialized
[    6.106666] No iBFT detected.
[    9.057110] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[    9.082114] NET: Registered protocol family 17
[   10.831642] FS-Cache: Loaded
[   10.872192] RPC: Registered named UNIX socket transport module.
[   10.872194] RPC: Registered udp transport module.
[   10.872194] RPC: Registered tcp transport module.
[   10.872195] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   10.925581] FS-Cache: Netfs 'nfs' registered for caching
[   10.928946] Key type dns_resolver registered
[   10.971712] NFS: Registering the id_resolver key type
[   10.971720] Key type id_resolver registered
[   10.971721] Key type id_legacy registered
[   28.914920] Bluetooth: RFCOMM TTY layer initialized
[   28.914944] Bluetooth: RFCOMM socket layer initialized
[   28.914950] Bluetooth: RFCOMM ver 1.11
[   29.983215] fuse init (API version 7.27)
[ 2561.027575] perf: interrupt took too long (2519 > 2500), lowering kernel.perf_event_max_sample_rate to 79250
[ 2725.254267] usb 2-1.6: USB disconnect, device number 4
[ 2728.292964] usb 2-1.6: new full-speed USB device number 5 using ehci-pci
[ 2729.223765] usb 2-1.6: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice=52.76
[ 2729.223769] usb 2-1.6: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2729.432064] Bluetooth: hci0: hardware error 0x37
[ 2792.560167] usb 1-1.3: USB disconnect, device number 4
[ 2795.888172] usb 1-1.1: USB disconnect, device number 3
[ 2798.448162] usb 1-1.4: USB disconnect, device number 5
[ 2804.807794] usb 1-1.1: new full-speed USB device number 6 using ehci-pci
[ 2804.917655] usb 1-1.1: New USB device found, idVendor=04a9, idProduct=220d, bcdDevice= 1.00
[ 2804.917660] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2804.917662] usb 1-1.1: Product: CanoScan
[ 2804.917665] usb 1-1.1: Manufacturer: Canon
[ 2810.951659] usb 1-1.3: new full-speed USB device number 7 using ehci-pci
[ 2811.063710] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c52e, bcdDevice=23.01
[ 2811.063715] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2811.063717] usb 1-1.3: Product: USB Receiver
[ 2811.063719] usb 1-1.3: Manufacturer: Logitech
[ 2811.065923] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C52E.0006/input/input20
[ 2811.124262] hid-generic 0003:046D:C52E.0006: input,hidraw1: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1a.0-1.3/input0
[ 2811.127082] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0007/input/input21
[ 2811.127386] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0007/input/input22
[ 2811.184060] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0007/input/input23
[ 2811.184645] hid-generic 0003:046D:C52E.0007: input,hiddev96,hidraw2: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1.3/input1
[ 2829.127359] usb 1-1.4: new low-speed USB device number 8 using ehci-pci
[ 2829.241638] usb 1-1.4: New USB device found, idVendor=04b4, idProduct=0060, bcdDevice= 0.01
[ 2829.241642] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2829.241645] usb 1-1.4: Product: USB Device
[ 2829.241647] usb 1-1.4: Manufacturer: Areson
[ 2829.246227] input: Areson USB Device as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:04B4:0060.0008/input/input28
[ 2829.304057] hid-generic 0003:04B4:0060.0008: input,hidraw3: USB HID v1.00 Mouse [Areson USB Device] on usb-0000:00:1a.0-1.4/input0
[ 2829.307196] hid-generic 0003:04B4:0060.0009: hiddev97,hidraw4: USB HID v1.00 Device [Areson USB Device] on usb-0000:00:1a.0-1.4/input1
[ 2954.485566] INFO: task kworker/u16:2:6546 blocked for more than 480 seconds.
[ 2954.485569]       Not tainted 4.18.0-rc1-1.g7262353-default+ #1
[ 2954.485570] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[ 2954.485571] kworker/u16:2   D    0  6546      2 0x80000000
[ 2954.485583] Workqueue: events_unbound commit_work [drm_kms_helper]
[ 2954.485584] Call Trace:
[ 2954.485591]  ? __schedule+0x2a4/0x8b0
[ 2954.485593]  ? common_interrupt+0xa/0xf
[ 2954.485594]  schedule+0x2f/0x90
[ 2954.485596]  schedule_timeout+0x29e/0x3c0
[ 2954.485661]  ? dce110_timing_generator_get_position+0x5b/0x70 [amdgpu]
[ 2954.485698]  ? dce110_timing_generator_get_crtc_scanoutpos+0x70/0xb0 [amdgpu]
[ 2954.485702]  dma_fence_default_wait+0x22f/0x2a0
[ 2954.485703]  ? dma_fence_release+0xa0/0xa0
[ 2954.485704]  dma_fence_wait_timeout+0x38/0x110
[ 2954.485706]  reservation_object_wait_timeout_rcu+0x1f5/0x380
[ 2954.485743]  amdgpu_dm_do_flip+0x112/0x340 [amdgpu]
[ 2954.485782]  amdgpu_dm_atomic_commit_tail+0x69a/0xcf0 [amdgpu]
[ 2954.485784]  ? wait_for_completion_timeout+0x5b/0x180
[ 2954.485786]  ? put_prev_entity+0x2a/0x580
[ 2954.485788]  ? __switch_to+0xa3/0x4e0
[ 2954.485792]  commit_tail+0x3d/0x70 [drm_kms_helper]
[ 2954.485794]  process_one_work+0x19e/0x380
[ 2954.485796]  ? rescuer_thread+0x330/0x330
[ 2954.485796]  worker_thread+0x30/0x380
[ 2954.485798]  ? rescuer_thread+0x330/0x330
[ 2954.485798]  kthread+0x113/0x130
[ 2954.485800]  ? kthread_create_worker_on_cpu+0x70/0x70
[ 2954.485801]  ret_from_fork+0x1f/0x40
_______________________________________________
dri-devel mailing list
dri-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.freedesktop.org/mailman/listinfo/dri-devel

[Index of Archives]     [Linux DRI Users]     [Linux Intel Graphics]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux