Re: x86 - clang / objtool status

From: Sedat Dilek
Date: Fri Jul 19 2019 - 07:38:05 EST


On Thu, Jul 18, 2019 at 10:40 PM Thomas Gleixner <tglx@xxxxxxxxxxxxx> wrote:
>
> Folks,
>
> after picking up Josh's objtool updates I gave clang a test ride again.
>
> clan is built with https://github.com/ClangBuiltLinux/tc-build.git
>
> That's using the llvm master branch. top commit is:
>
> 0c99d19470b ("[OPENMP]Fix sharing of threadprivate variables with TLS support.")
>
> I merged
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/urgent
>
> into the tip of Linus tree to pick up the latest objtool changes.
>
> Here are the results for different configs:
>
> 1) defconfig
>
> objtool warnings:
>
> drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o: warning: objtool: .altinstr_replacement+0x88: redundant UACCESS disable
>
>
> 2) debian distro config
>
> objtool warnings:
>
> drivers/gpu/drm/amd/amdgpu/atom.o: warning: objtool: atom_op_move() falls through to next function atom_op_and()
> drivers/infiniband/hw/hfi1/platform.o: warning: objtool: tune_serdes() falls through to next function apply_tx_lanes()
> drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o: warning: objtool: .altinstr_replacement+0x86: redundant UACCESS disable
> drivers/gpu/drm/radeon/evergreen_cs.o: warning: objtool: evergreen_cs_parse() falls through to next function evergreen_dma_cs_parse()
>
> Build fails with:
>
> clang-10: error: unknown argument: '-mpreferred-stack-boundary=4'
> make[5]: *** [linux/scripts/Makefile.build:279: drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_resource.o] Error 1
>
>
> 3) allmodconfig:
>
> objtool warnings:
>
> arch/x86/kernel/signal.o: warning: objtool: x32_setup_rt_frame()+0x255: call to memset() with UACCESS enabled
> arch/x86/kernel/signal.o: warning: objtool: __setup_rt_frame()+0x254: call to memset() with UACCESS enabled
> arch/x86/ia32/ia32_signal.o: warning: objtool: ia32_setup_rt_frame()+0x247: call to memset() with UACCESS enabled
>
> mm/kasan/common.o: warning: objtool: kasan_report()+0x52: call to __stack_chk_fail() with UACCESS enabled
> drivers/ata/sata_dwc_460ex.o: warning: objtool: sata_dwc_bmdma_start_by_tag()+0x3a0: can't find switch jump table
>
> lib/ubsan.o: warning: objtool: __ubsan_handle_type_mismatch()+0x88: call to memset() with UACCESS enabled
> lib/ubsan.o: warning: objtool: ubsan_type_mismatch_common()+0x610: call to __stack_chk_fail() with UACCESS enabled
> lib/ubsan.o: warning: objtool: __ubsan_handle_type_mismatch_v1()+0x88: call to memset() with UACCESS enabled
> drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o: warning: objtool: .altinstr_replacement+0x56: redundant UACCESS disable
>
> Build fails with:
>
> ERROR: "__compiletime_assert_2801" [drivers/net/wireless/intel/iwlwifi/iwlwifi.ko] undefined!
> ERROR: "__compiletime_assert_2446" [drivers/net/wireless/intel/iwlwifi/iwlwifi.ko] undefined!
> ERROR: "__compiletime_assert_2452" [drivers/net/wireless/intel/iwlwifi/iwlwifi.ko] undefined!
> ERROR: "__compiletime_assert_2790" [drivers/net/wireless/intel/iwlwifi/iwlwifi.ko] undefined!
>
> This also emits a boatload of warnings like this:
>
> linux/fs/nfs/dir.c:451:34: warning: variable 'wq' is uninitialized when used within its own initialization
> [-Wuninitialized]
> DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
> ^~
> linux/include/linux/wait.h:74:63: note: expanded from macro 'DECLARE_WAIT_QUEUE_HEAD_ONSTACK'
> struct wait_queue_head name = __WAIT_QUEUE_HEAD_INIT_ONSTACK(name)
> ~~~~ ^~~~
> linux/include/linux/wait.h:72:33: note: expanded from macro '__WAIT_QUEUE_HEAD_INIT_ONSTACK'
> ({ init_waitqueue_head(&name); name; })
>
> Thanks,
>
> tglx
>

Hi Thomas,

Thanks for the feedback.

The last days I tried several iterations of Josh's "v0", v1 and v2.

First of all I find out that it is possible to download and apply the
series (here: v2) from patchwork (see [1]).
I highly appreciate to have this in Josh's Git [2].

BTW, what is/was the base for the patchset?
I tried next-20190712 as this was the base in Josh's Git.
Later next-20190717 and next-20190718.
Please clarify.

With v2 applied on top of next-20190718 and an adapted/customized
kernel-config based on an official Debian/experimental 5.0.2 kernel I
fell over exactly the same 4 objtool warnings.

drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o: warning: objtool:
.altinstr_replacement+0x86: redundant UACCESS disable

drivers/gpu/drm/radeon/atom.o: warning: objtool: atom_op_move() falls
through to next function atom_op_and()
drivers/gpu/drm/radeon/evergreen_cs.o: warning: objtool:
evergreen_cs_parse() falls through to next function
evergreen_dma_cs_parse()
drivers/infiniband/hw/hfi1/platform.o: warning: objtool: tune_serdes()
falls through to next function apply_tx_lanes()

Kconfigs?
I highly appreciate to turn off AMDGPU if you do not need it.

Yes, I know all the patches mentioned in this thread as reading the
ClangBuiltLinux (CBL) mailing-list and following the CBL issue-tracker
(being a part of the project).
To get/attract more followers all these patches should be placed
somewhere (preferable Git) and/or be easily pickable.
Or at least a list or be tagged in patchwork.
I have no idea for an ideal patch-management in this topic.

I can boot into QEMU.
But on bare metal it looks like BPF and systemd-udevd/systemd-journald
do end in a maintenance mode.
I saved the dmesg-log.

Kernel-config, dmesg-log and systemd-log attached.

I have not tried with Debian/buster GCC v8 and/or dropping Josh's
objtool patchset.
I am building with a pre-release of Clang v9-pre and linking with LLD v9-pre.

As a recommendation:
apt.llvm.org offers binaries for Debian/buster.
I can send you my APT stuff if you like.

Regards,
- Sedat -

[0] https://lore.kernel.org/patchwork/project/lkml/list/?series=402470
[1] https://lore.kernel.org/patchwork/series/402470/mbox/
[2] https://git.kernel.org/pub/scm/linux/kernel/git/jpoimboe/linux.git/log/?h=objtool-many-fixes
[Thu Jul 18 17:11:52 2019] Linux version 5.2.0-4-amd64-cbl-asmgoto (sedat.dilek@xxxxxxxxx@iniza) (ClangBuiltLinux clang version 9.0.0 (git://github.com/llvm/llvm-project 42816107f78e6ce345e68960ff2183d1cabfe815) (based on LLVM 9.0.0svn)) #4~buster+dileks1 SMP 2019-07-18
[Thu Jul 18 17:11:52 2019] Command line: initrd=\initrd.img-5.2.0-4-amd64-cbl-asmgoto root=UUID=4c2aa544-6e86-44d2-9329-572623867b3d ro intel_iommu=on
[Thu Jul 18 17:11:52 2019] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[Thu Jul 18 17:11:52 2019] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[Thu Jul 18 17:11:52 2019] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[Thu Jul 18 17:11:52 2019] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[Thu Jul 18 17:11:52 2019] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[Thu Jul 18 17:11:52 2019] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[Thu Jul 18 17:11:52 2019] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[Thu Jul 18 17:11:52 2019] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[Thu Jul 18 17:11:52 2019] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[Thu Jul 18 17:11:52 2019] BIOS-provided physical RAM map:
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000000059000-0x000000000009cfff] usable
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x000000000009d000-0x00000000000fffff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000040400000-0x0000000085566fff] usable
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000085567000-0x0000000085567fff] ACPI NVS
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000085568000-0x0000000085568fff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000085569000-0x000000008eeabfff] usable
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x000000008eeac000-0x000000008ff2bfff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x000000008ff2c000-0x000000008ff99fff] ACPI NVS
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x000000008ff9a000-0x000000008fffefff] ACPI data
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x000000008ffff000-0x000000008fffffff] usable
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000090000000-0x0000000097ffffff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000098600000-0x000000009c7fffff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
[Thu Jul 18 17:11:52 2019] BIOS-e820: [mem 0x0000000100000000-0x00000004627fffff] usable
[Thu Jul 18 17:11:52 2019] NX (Execute Disable) protection: active
[Thu Jul 18 17:11:52 2019] efi: EFI v2.50 by Lenovo
[Thu Jul 18 17:11:52 2019] efi: TPMFinalLog=0x8ff92000 SMBIOS=0x8f0d8000 SMBIOS 3.0=0x8f0d5000 ACPI=0x8fffe000 ACPI 2.0=0x8fffe014 ESRT=0x8efa2000 MEMATTR=0x89d15018 TPMEventLog=0x856a4018
[Thu Jul 18 17:11:52 2019] SMBIOS 3.0.0 present.
[Thu Jul 18 17:11:52 2019] DMI: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:11:52 2019] tsc: Detected 2900.000 MHz processor
[Thu Jul 18 17:11:52 2019] tsc: Detected 2899.886 MHz TSC
[Thu Jul 18 17:11:52 2019] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[Thu Jul 18 17:11:52 2019] e820: remove [mem 0x000a0000-0x000fffff] usable
[Thu Jul 18 17:11:52 2019] last_pfn = 0x462800 max_arch_pfn = 0x400000000
[Thu Jul 18 17:11:52 2019] MTRR default type: write-back
[Thu Jul 18 17:11:52 2019] MTRR fixed ranges enabled:
[Thu Jul 18 17:11:52 2019] 00000-9FFFF write-back
[Thu Jul 18 17:11:52 2019] A0000-BFFFF uncachable
[Thu Jul 18 17:11:52 2019] C0000-FFFFF write-protect
[Thu Jul 18 17:11:52 2019] MTRR variable ranges enabled:
[Thu Jul 18 17:11:52 2019] 0 base 00C0000000 mask 7FC0000000 uncachable
[Thu Jul 18 17:11:52 2019] 1 base 00A0000000 mask 7FE0000000 uncachable
[Thu Jul 18 17:11:52 2019] 2 base 009C000000 mask 7FFC000000 uncachable
[Thu Jul 18 17:11:52 2019] 3 base 009A000000 mask 7FFE000000 uncachable
[Thu Jul 18 17:11:52 2019] 4 disabled
[Thu Jul 18 17:11:52 2019] 5 disabled
[Thu Jul 18 17:11:52 2019] 6 disabled
[Thu Jul 18 17:11:52 2019] 7 disabled
[Thu Jul 18 17:11:52 2019] 8 disabled
[Thu Jul 18 17:11:52 2019] 9 disabled
[Thu Jul 18 17:11:52 2019] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[Thu Jul 18 17:11:52 2019] last_pfn = 0x90000 max_arch_pfn = 0x400000000
[Thu Jul 18 17:11:52 2019] esrt: Reserving ESRT space from 0x000000008efa2000 to 0x000000008efa2088.
[Thu Jul 18 17:11:52 2019] Using GB pages for direct mapping
[Thu Jul 18 17:11:52 2019] BRK [0x31ea01000, 0x31ea01fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea02000, 0x31ea02fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea03000, 0x31ea03fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea04000, 0x31ea04fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea05000, 0x31ea05fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea06000, 0x31ea06fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea07000, 0x31ea07fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea08000, 0x31ea08fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea09000, 0x31ea09fff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea0a000, 0x31ea0afff] PGTABLE
[Thu Jul 18 17:11:52 2019] BRK [0x31ea0b000, 0x31ea0bfff] PGTABLE
[Thu Jul 18 17:11:52 2019] Secure boot disabled
[Thu Jul 18 17:11:52 2019] RAMDISK: [mem 0x7d310000-0x7fffefff]
[Thu Jul 18 17:11:52 2019] ACPI: Early table checksum verification disabled
[Thu Jul 18 17:11:52 2019] ACPI: RSDP 0x000000008FFFE014 000024 (v02 LENOVO)
[Thu Jul 18 17:11:52 2019] ACPI: XSDT 0x000000008FFC1188 00010C (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: FACP 0x000000008FFF5000 0000F4 (v05 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: DSDT 0x000000008FFCF000 0212CE (v02 LENOVO SKL 00000000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: FACS 0x000000008FF3D000 000040
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFFC000 0003CC (v02 LENOVO Tpm2Tabl 00001000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: TPM2 0x000000008FFFB000 000034 (v03 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: UEFI 0x000000008FF53000 000042 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFF7000 0030B0 (v02 LENOVO SaSsdt 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFF6000 0005B6 (v02 LENOVO PerfTune 00001000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: HPET 0x000000008FFF4000 000038 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: APIC 0x000000008FFF3000 0000BC (v03 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: MCFG 0x000000008FFF2000 00003C (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: ECDT 0x000000008FFF1000 000053 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFCE000 00021C (v01 LENOVO Rmv_Batt 00001000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFCC000 00174F (v02 LENOVO ProjSsdt 00000010 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: BOOT 0x000000008FFCB000 000028 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: BATB 0x000000008FFCA000 00004A (v02 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: SLIC 0x000000008FFC9000 000176 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFC7000 0017AE (v02 LENOVO CpuSsdt 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFC6000 00056D (v02 LENOVO CtdpB 00001000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFC5000 000634 (v02 LENOVO UsbCTabl 00001000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: WSMT 0x000000008FFC4000 000028 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFC3000 000141 (v02 LENOVO HdaDsp 00000000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0x000000008FFC2000 0004C5 (v02 LENOVO TbtTypeC 00000000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: DBGP 0x000000008FFFD000 000034 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: DBG2 0x000000008FFC0000 000054 (v00 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: MSDM 0x000000008FFBF000 000055 (v03 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: DMAR 0x000000008FFBE000 0000A8 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: ASF! 0x000000008FFBD000 0000A0 (v32 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: FPDT 0x000000008FFBC000 000044 (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: UEFI 0x000000008FF3A000 00013E (v01 LENOVO TP-N1Q 00001580 PTEC 00000002)
[Thu Jul 18 17:11:52 2019] ACPI: BGRT 0x000000008FFBB000 000038 (v01 LENOVO TP-N1Q 00001580 PTEC 00001580)
[Thu Jul 18 17:11:52 2019] ACPI: Local APIC address 0xfee00000
[Thu Jul 18 17:11:52 2019] No NUMA configuration found
[Thu Jul 18 17:11:52 2019] Faking a node at [mem 0x0000000000000000-0x00000004627fffff]
[Thu Jul 18 17:11:52 2019] NODE_DATA(0) allocated [mem 0x4627fb000-0x4627fffff]
[Thu Jul 18 17:11:52 2019] Zone ranges:
[Thu Jul 18 17:11:52 2019] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[Thu Jul 18 17:11:52 2019] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[Thu Jul 18 17:11:52 2019] Normal [mem 0x0000000100000000-0x00000004627fffff]
[Thu Jul 18 17:11:52 2019] Device empty
[Thu Jul 18 17:11:52 2019] Movable zone start for each node
[Thu Jul 18 17:11:52 2019] Early memory node ranges
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x0000000000001000-0x0000000000057fff]
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x0000000000059000-0x000000000009cfff]
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x0000000000100000-0x000000003fffffff]
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x0000000040400000-0x0000000085566fff]
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x0000000085569000-0x000000008eeabfff]
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x000000008ffff000-0x000000008fffffff]
[Thu Jul 18 17:11:52 2019] node 0: [mem 0x0000000100000000-0x00000004627fffff]
[Thu Jul 18 17:11:52 2019] Zeroed struct page in unavailable ranges: 5562 pages
[Thu Jul 18 17:11:52 2019] Initmem setup node 0 [mem 0x0000000000001000-0x00000004627fffff]
[Thu Jul 18 17:11:52 2019] On node 0 totalpages: 4133446
[Thu Jul 18 17:11:52 2019] DMA zone: 64 pages used for memmap
[Thu Jul 18 17:11:52 2019] DMA zone: 22 pages reserved
[Thu Jul 18 17:11:52 2019] DMA zone: 3995 pages, LIFO batch:0
[Thu Jul 18 17:11:52 2019] DMA32 zone: 9067 pages used for memmap
[Thu Jul 18 17:11:52 2019] DMA32 zone: 580267 pages, LIFO batch:63
[Thu Jul 18 17:11:52 2019] Normal zone: 55456 pages used for memmap
[Thu Jul 18 17:11:52 2019] Normal zone: 3549184 pages, LIFO batch:63
[Thu Jul 18 17:11:52 2019] Reserving Intel graphics memory at [mem 0x9a800000-0x9c7fffff]
[Thu Jul 18 17:11:52 2019] ACPI: PM-Timer IO Port: 0x1808
[Thu Jul 18 17:11:52 2019] ACPI: Local APIC address 0xfee00000
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[Thu Jul 18 17:11:52 2019] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[Thu Jul 18 17:11:52 2019] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[Thu Jul 18 17:11:52 2019] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[Thu Jul 18 17:11:52 2019] ACPI: IRQ0 used by override.
[Thu Jul 18 17:11:52 2019] ACPI: IRQ9 used by override.
[Thu Jul 18 17:11:52 2019] Using ACPI (MADT) for SMP configuration information
[Thu Jul 18 17:11:52 2019] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[Thu Jul 18 17:11:52 2019] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x0009d000-0x000fffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x40000000-0x403fffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x85567000-0x85567fff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x85568000-0x85568fff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x8eeac000-0x8ff2bfff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x8ff2c000-0x8ff99fff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x8ff9a000-0x8fffefff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x90000000-0x97ffffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x98000000-0x985fffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x98600000-0x9c7fffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0x9c800000-0xefffffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0xf4000000-0xfe00ffff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
[Thu Jul 18 17:11:52 2019] PM: Registered nosave memory: [mem 0xfe011000-0xffffffff]
[Thu Jul 18 17:11:52 2019] [mem 0x9c800000-0xefffffff] available for PCI devices
[Thu Jul 18 17:11:52 2019] Booting paravirtualized kernel on bare hardware
[Thu Jul 18 17:11:52 2019] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[Thu Jul 18 17:11:52 2019] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[Thu Jul 18 17:11:52 2019] percpu: Embedded 52 pages/cpu s175896 r8192 d28904 u524288
[Thu Jul 18 17:11:52 2019] pcpu-alloc: s175896 r8192 d28904 u524288 alloc=1*2097152
[Thu Jul 18 17:11:52 2019] pcpu-alloc: [0] 0 1 2 3
[Thu Jul 18 17:11:52 2019] Built 1 zonelists, mobility grouping on. Total pages: 4068837
[Thu Jul 18 17:11:52 2019] Policy zone: Normal
[Thu Jul 18 17:11:52 2019] Kernel command line: initrd=\initrd.img-5.2.0-4-amd64-cbl-asmgoto root=UUID=4c2aa544-6e86-44d2-9329-572623867b3d ro intel_iommu=on
[Thu Jul 18 17:11:52 2019] DMAR: IOMMU enabled
[Thu Jul 18 17:11:52 2019] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[Thu Jul 18 17:11:52 2019] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[Thu Jul 18 17:11:52 2019] mem auto-init: stack:off, heap alloc:off, heap free:off
[Thu Jul 18 17:11:52 2019] Calgary: detecting Calgary via BIOS EBDA area
[Thu Jul 18 17:11:52 2019] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[Thu Jul 18 17:11:52 2019] Memory: 16028148K/16533784K available (12291K kernel code, 1119K rwdata, 3584K rodata, 1708K init, 852K bss, 505636K reserved, 0K cma-reserved)
[Thu Jul 18 17:11:52 2019] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[Thu Jul 18 17:11:52 2019] Kernel/User page tables isolation: enabled
[Thu Jul 18 17:11:52 2019] ftrace: allocating 30801 entries in 121 pages
[Thu Jul 18 17:11:52 2019] rcu: Hierarchical RCU implementation.
[Thu Jul 18 17:11:52 2019] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
[Thu Jul 18 17:11:52 2019] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[Thu Jul 18 17:11:52 2019] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[Thu Jul 18 17:11:52 2019] NR_IRQS: 33024, nr_irqs: 1024, preallocated irqs: 16
[Thu Jul 18 17:11:52 2019] random: crng done (trusting CPU's manufacturer)
[Thu Jul 18 17:11:52 2019] Console: colour dummy device 80x25
[Thu Jul 18 17:11:52 2019] printk: console [tty0] enabled
[Thu Jul 18 17:11:52 2019] ACPI: Core revision 20190703
[Thu Jul 18 17:11:52 2019] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[Thu Jul 18 17:11:52 2019] APIC: Switch to symmetric I/O mode setup
[Thu Jul 18 17:11:52 2019] DMAR: Host address width 39
[Thu Jul 18 17:11:52 2019] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[Thu Jul 18 17:11:52 2019] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[Thu Jul 18 17:11:52 2019] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[Thu Jul 18 17:11:52 2019] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[Thu Jul 18 17:11:52 2019] DMAR: RMRR base: 0x0000008f49f000 end: 0x0000008f4befff
[Thu Jul 18 17:11:52 2019] DMAR: RMRR base: 0x0000009a000000 end: 0x0000009c7fffff
[Thu Jul 18 17:11:52 2019] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[Thu Jul 18 17:11:52 2019] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[Thu Jul 18 17:11:52 2019] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[Thu Jul 18 17:11:52 2019] DMAR-IR: Enabled IRQ remapping in x2apic mode
[Thu Jul 18 17:11:52 2019] x2apic enabled
[Thu Jul 18 17:11:52 2019] Switched APIC routing to cluster x2apic.
[Thu Jul 18 17:11:52 2019] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[Thu Jul 18 17:11:52 2019] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
[Thu Jul 18 17:11:52 2019] Calibrating delay loop (skipped), value calculated using timer frequency.. 5799.77 BogoMIPS (lpj=11599544)
[Thu Jul 18 17:11:52 2019] pid_max: default: 32768 minimum: 301
[Thu Jul 18 17:11:52 2019] LSM: Security Framework initializing
[Thu Jul 18 17:11:52 2019] Yama: becoming mindful.
[Thu Jul 18 17:11:52 2019] AppArmor: AppArmor initialized
[Thu Jul 18 17:11:52 2019] TOMOYO Linux initialized
[Thu Jul 18 17:11:52 2019] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[Thu Jul 18 17:11:52 2019] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[Thu Jul 18 17:11:52 2019] *** VALIDATE shmem ***
[Thu Jul 18 17:11:52 2019] *** VALIDATE proc ***
[Thu Jul 18 17:11:52 2019] *** VALIDATE cgroup1 ***
[Thu Jul 18 17:11:52 2019] *** VALIDATE cgroup2 ***
[Thu Jul 18 17:11:52 2019] mce: CPU0: Thermal monitoring enabled (TM1)
[Thu Jul 18 17:11:52 2019] process: using mwait in idle threads
[Thu Jul 18 17:11:52 2019] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[Thu Jul 18 17:11:52 2019] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[Thu Jul 18 17:11:52 2019] Spectre V2 : Mitigation: Full generic retpoline
[Thu Jul 18 17:11:52 2019] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[Thu Jul 18 17:11:52 2019] Spectre V2 : Enabling Restricted Speculation for firmware calls
[Thu Jul 18 17:11:52 2019] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[Thu Jul 18 17:11:52 2019] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[Thu Jul 18 17:11:52 2019] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[Thu Jul 18 17:11:52 2019] MDS: Mitigation: Clear CPU buffers
[Thu Jul 18 17:11:52 2019] Freeing SMP alternatives memory: 28K
[Thu Jul 18 17:11:52 2019] TSC deadline timer enabled
[Thu Jul 18 17:11:52 2019] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[Thu Jul 18 17:11:52 2019] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[Thu Jul 18 17:11:52 2019] ... version: 4
[Thu Jul 18 17:11:52 2019] ... bit width: 48
[Thu Jul 18 17:11:52 2019] ... generic registers: 4
[Thu Jul 18 17:11:52 2019] ... value mask: 0000ffffffffffff
[Thu Jul 18 17:11:52 2019] ... max period: 00007fffffffffff
[Thu Jul 18 17:11:52 2019] ... fixed-purpose events: 3
[Thu Jul 18 17:11:52 2019] ... event mask: 000000070000000f
[Thu Jul 18 17:11:52 2019] rcu: Hierarchical SRCU implementation.
[Thu Jul 18 17:11:52 2019] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[Thu Jul 18 17:11:52 2019] smp: Bringing up secondary CPUs ...
[Thu Jul 18 17:11:52 2019] x86: Booting SMP configuration:
[Thu Jul 18 17:11:52 2019] .... node #0, CPUs: #1 #2
[Thu Jul 18 17:11:52 2019] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[Thu Jul 18 17:11:52 2019] #3
[Thu Jul 18 17:11:52 2019] smp: Brought up 1 node, 4 CPUs
[Thu Jul 18 17:11:52 2019] smpboot: Max logical packages: 1
[Thu Jul 18 17:11:52 2019] smpboot: Total of 4 processors activated (23199.08 BogoMIPS)
[Thu Jul 18 17:11:52 2019] devtmpfs: initialized
[Thu Jul 18 17:11:52 2019] x86/mm: Memory block size: 128MB
[Thu Jul 18 17:11:52 2019] PM: Registering ACPI NVS region [mem 0x85567000-0x85567fff] (4096 bytes)
[Thu Jul 18 17:11:52 2019] PM: Registering ACPI NVS region [mem 0x8ff2c000-0x8ff99fff] (450560 bytes)
[Thu Jul 18 17:11:52 2019] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[Thu Jul 18 17:11:52 2019] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[Thu Jul 18 17:11:52 2019] *** VALIDATE debugfs ***
[Thu Jul 18 17:11:52 2019] *** VALIDATE tracefs ***
[Thu Jul 18 17:11:52 2019] pinctrl core: initialized pinctrl subsystem
[Thu Jul 18 17:11:52 2019] NET: Registered protocol family 16
[Thu Jul 18 17:11:52 2019] audit: initializing netlink subsys (disabled)
[Thu Jul 18 17:11:52 2019] audit: type=2000 audit(1563469911.036:1): state=initialized audit_enabled=0 res=1
[Thu Jul 18 17:11:52 2019] cpuidle: using governor ladder
[Thu Jul 18 17:11:52 2019] cpuidle: using governor menu
[Thu Jul 18 17:11:52 2019] Simple Boot Flag at 0x47 set to 0x1
[Thu Jul 18 17:11:52 2019] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[Thu Jul 18 17:11:52 2019] ACPI: bus type PCI registered
[Thu Jul 18 17:11:52 2019] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[Thu Jul 18 17:11:52 2019] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[Thu Jul 18 17:11:52 2019] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[Thu Jul 18 17:11:52 2019] PCI: Using configuration type 1 for base access
[Thu Jul 18 17:11:52 2019] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[Thu Jul 18 17:11:52 2019] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[Thu Jul 18 17:11:52 2019] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[Thu Jul 18 17:11:52 2019] alg: No test for lzo-rle (lzo-rle-generic)
[Thu Jul 18 17:11:52 2019] alg: No test for lzo-rle (lzo-rle-scomp)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(Module Device)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(Processor Device)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(3.0 _SCP Extensions)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(Processor Aggregator Device)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(Linux-Dell-Video)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[Thu Jul 18 17:11:52 2019] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[Thu Jul 18 17:11:52 2019] ACPI: 11 ACPI AML tables successfully acquired and loaded
[Thu Jul 18 17:11:52 2019] ACPI: EC: EC started
[Thu Jul 18 17:11:52 2019] ACPI: EC: interrupt blocked
[Thu Jul 18 17:11:52 2019] ACPI: \: Used as first EC
[Thu Jul 18 17:11:52 2019] ACPI: \: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[Thu Jul 18 17:11:52 2019] ACPI: EC: Boot ECDT EC used to handle transactions
[Thu Jul 18 17:11:52 2019] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A018FC95800 0006F6 (v02 PmRef Cpu0Ist 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: \_PR_.PR00: _OSC native thermal LVT Acked
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A018FF73000 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A018FF6E0C0 0000BA (v02 PmRef Cpu0Hwp 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A018FC94000 000628 (v02 PmRef HwpLvt 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A019033E000 000D14 (v02 PmRef ApIst 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A018FF72400 000317 (v02 PmRef ApHwp 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: Dynamic OEM Table Load:
[Thu Jul 18 17:11:52 2019] ACPI: SSDT 0xFFFF9A018FF73800 00030A (v02 PmRef ApCst 00003000 INTL 20160527)
[Thu Jul 18 17:11:52 2019] ACPI: Interpreter enabled
[Thu Jul 18 17:11:52 2019] ACPI: (supports S0 S3 S4 S5)
[Thu Jul 18 17:11:52 2019] ACPI: Using IOAPIC for interrupt routing
[Thu Jul 18 17:11:52 2019] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[Thu Jul 18 17:11:52 2019] ACPI: Enabled 7 GPEs in block 00 to 7F
[Thu Jul 18 17:11:52 2019] ACPI: Power Resource [PUBS] (on)
[Thu Jul 18 17:11:52 2019] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
[Thu Jul 18 17:11:52 2019] ACPI: Power Resource [WRST] (on)
[Thu Jul 18 17:11:52 2019] ACPI: Power Resource [WRST] (on)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[Thu Jul 18 17:11:52 2019] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[Thu Jul 18 17:11:52 2019] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME AER PCIeCapability]
[Thu Jul 18 17:11:52 2019] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[Thu Jul 18 17:11:52 2019] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[Thu Jul 18 17:11:52 2019] acpi PNP0A08:00: _OSC: platform willing to grant [LTR]
[Thu Jul 18 17:11:52 2019] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[Thu Jul 18 17:11:52 2019] PCI host bridge to bus 0000:00
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0x9c800000-0xefffffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: root bus resource [bus 00-3e]
[Thu Jul 18 17:11:52 2019] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: reg 0x10: [mem 0xeb000000-0xebffffff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: reg 0x20: [io 0xe000-0xe03f]
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: BAR 2: assigned to efifb
[Thu Jul 18 17:11:52 2019] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
[Thu Jul 18 17:11:52 2019] pci 0000:00:14.0: reg 0x10: [mem 0xec220000-0xec22ffff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:14.0: PME# supported from D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
[Thu Jul 18 17:11:52 2019] pci 0000:00:14.2: reg 0x10: [mem 0xec248000-0xec248fff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
[Thu Jul 18 17:11:52 2019] pci 0000:00:15.0: reg 0x10: [mem 0xec249000-0xec249fff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
[Thu Jul 18 17:11:52 2019] pci 0000:00:16.0: reg 0x10: [mem 0xec24a000-0xec24afff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:16.0: PME# supported from D3hot
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: [8086:9d16] type 01 class 0x060400
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: Intel SPT PCH root port ACS workaround enabled
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: Intel SPT PCH root port ACS workaround enabled
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: [8086:9d1a] type 01 class 0x060400
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: Intel SPT PCH root port ACS workaround enabled
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.2: reg 0x10: [mem 0xec244000-0xec247fff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040300
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.3: reg 0x10: [mem 0xec240000-0xec243fff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.3: reg 0x20: [mem 0xec230000-0xec23ffff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.4: reg 0x10: [mem 0xec24b000-0xec24b0ff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.6: [8086:15d8] type 00 class 0x020000
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.6: reg 0x10: [mem 0xec200000-0xec21ffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: PCI bridge to [bus 02]
[Thu Jul 18 17:11:52 2019] pci 0000:04:00.0: [8086:24fd] type 00 class 0x028000
[Thu Jul 18 17:11:52 2019] pci 0000:04:00.0: reg 0x10: [mem 0xec100000-0xec101fff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: PCI bridge to [bus 04]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: bridge window [mem 0xec100000-0xec1fffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: PCI bridge to [bus 05-3d]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: bridge window [mem 0xd4000000-0xea0fffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: bridge window [mem 0xb0000000-0xd1ffffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci 0000:3e:00.0: [17aa:0004] type 00 class 0x010802
[Thu Jul 18 17:11:52 2019] pci 0000:3e:00.0: reg 0x10: [mem 0xec000000-0xec003fff 64bit]
[Thu Jul 18 17:11:52 2019] pci 0000:3e:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8 GT/s x2 link at 0000:00:1d.2 (capable of 31.504 Gb/s with 8 GT/s x4 link)
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: PCI bridge to [bus 3e]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: bridge window [mem 0xec000000-0xec0fffff]
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[Thu Jul 18 17:11:52 2019] ACPI: EC: interrupt unblocked
[Thu Jul 18 17:11:52 2019] ACPI: EC: event unblocked
[Thu Jul 18 17:11:52 2019] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[Thu Jul 18 17:11:52 2019] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions and events
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=mem,locks=none
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: vgaarb: bridge control possible
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: vgaarb: setting as boot device
[Thu Jul 18 17:11:52 2019] vgaarb: loaded
[Thu Jul 18 17:11:52 2019] pps_core: LinuxPPS API ver. 1 registered
[Thu Jul 18 17:11:52 2019] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[Thu Jul 18 17:11:52 2019] PTP clock support registered
[Thu Jul 18 17:11:52 2019] EDAC MC: Ver: 3.0.0
[Thu Jul 18 17:11:52 2019] Registered efivars operations
[Thu Jul 18 17:11:52 2019] PCI: Using ACPI for IRQ routing
[Thu Jul 18 17:11:52 2019] PCI: pci_cache_line_size set to 64 bytes
[Thu Jul 18 17:11:52 2019] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[Thu Jul 18 17:11:52 2019] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
[Thu Jul 18 17:11:52 2019] e820: reserve RAM buffer [mem 0x85567000-0x87ffffff]
[Thu Jul 18 17:11:52 2019] e820: reserve RAM buffer [mem 0x8eeac000-0x8fffffff]
[Thu Jul 18 17:11:52 2019] e820: reserve RAM buffer [mem 0x462800000-0x463ffffff]
[Thu Jul 18 17:11:52 2019] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[Thu Jul 18 17:11:52 2019] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[Thu Jul 18 17:11:52 2019] clocksource: Switched to clocksource tsc-early
[Thu Jul 18 17:11:52 2019] *** VALIDATE bpf ***
[Thu Jul 18 17:11:52 2019] VFS: Disk quotas dquot_6.6.0
[Thu Jul 18 17:11:52 2019] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[Thu Jul 18 17:11:52 2019] *** VALIDATE ramfs ***
[Thu Jul 18 17:11:52 2019] *** VALIDATE hugetlbfs ***
[Thu Jul 18 17:11:52 2019] AppArmor: AppArmor Filesystem Enabled
[Thu Jul 18 17:11:52 2019] pnp: PnP ACPI init
[Thu Jul 18 17:11:52 2019] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfd000000-0xfdabffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfdad0000-0xfdadffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfdb00000-0xfdffffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfe036000-0xfe03bfff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfe03d000-0xfe3fffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:01: [mem 0xfe410000-0xfe7fffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] system 00:02: [io 0xff00-0xfffe] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] system 00:03: [io 0x0680-0x069f] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:03: [io 0xffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:03: [io 0xffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:03: [io 0xffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:03: [io 0x1800-0x18fe] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:03: [io 0x164e-0x164f] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[Thu Jul 18 17:11:52 2019] system 00:05: [io 0x1854-0x1857] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] pnp 00:06: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
[Thu Jul 18 17:11:52 2019] pnp 00:07: Plug and Play ACPI device, IDs LEN006f PNP0f13 (active)
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x1800-0x189f] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0800-0x087f] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0880-0x08ff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0900-0x097f] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0980-0x09ff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0a00-0x0a7f] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0a80-0x0aff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0b00-0x0b7f] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x0b80-0x0bff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x15e0-0x15ef] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x1600-0x167f] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [io 0x1640-0x165f] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xf0000000-0xf3ffffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xfed10000-0xfed13fff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xfeb00000-0xfebfffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:08: [mem 0xeffe0000-0xefffffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfed10000-0xfed17fff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfed90000-0xfed93fff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xfee00000-0xfeefffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: [mem 0xeffe0000-0xefffffff] has been reserved
[Thu Jul 18 17:11:52 2019] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[Thu Jul 18 17:11:52 2019] system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0b: [mem 0x000f0000-0x000fffff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0b: [mem 0x00100000-0x9c7fffff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0b: [mem 0xfec00000-0xfed3ffff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0b: [mem 0xfed4c000-0xffffffff] could not be reserved
[Thu Jul 18 17:11:52 2019] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[Thu Jul 18 17:11:52 2019] pnp: PnP ACPI: found 12 devices
[Thu Jul 18 17:11:52 2019] thermal_sys: Registered thermal governor 'fair_share'
[Thu Jul 18 17:11:52 2019] thermal_sys: Registered thermal governor 'bang_bang'
[Thu Jul 18 17:11:52 2019] thermal_sys: Registered thermal governor 'step_wise'
[Thu Jul 18 17:11:52 2019] thermal_sys: Registered thermal governor 'user_space'
[Thu Jul 18 17:11:52 2019] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 02] add_size 1000
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: bridge window [io 0x1000-0x0fff] to [bus 05-3d] add_size 1000
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: BAR 14: assigned [mem 0x9c800000-0x9c9fffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: BAR 15: assigned [mem 0x9ca00000-0x9cbfffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: BAR 13: assigned [io 0x3000-0x3fff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: PCI bridge to [bus 02]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: bridge window [mem 0x9c800000-0x9c9fffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.0: bridge window [mem 0x9ca00000-0x9cbfffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: PCI bridge to [bus 04]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1c.6: bridge window [mem 0xec100000-0xec1fffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: PCI bridge to [bus 05-3d]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: bridge window [mem 0xd4000000-0xea0fffff]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.0: bridge window [mem 0xb0000000-0xd1ffffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: PCI bridge to [bus 3e]
[Thu Jul 18 17:11:52 2019] pci 0000:00:1d.2: bridge window [mem 0xec000000-0xec0fffff]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 20 [mem 0x9c800000-0xefffffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:00: resource 21 [mem 0xfd000000-0xfe7fffff window]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:02: resource 1 [mem 0x9c800000-0x9c9fffff]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:02: resource 2 [mem 0x9ca00000-0x9cbfffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:04: resource 1 [mem 0xec100000-0xec1fffff]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:05: resource 1 [mem 0xd4000000-0xea0fffff]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:05: resource 2 [mem 0xb0000000-0xd1ffffff 64bit pref]
[Thu Jul 18 17:11:52 2019] pci_bus 0000:3e: resource 1 [mem 0xec000000-0xec0fffff]
[Thu Jul 18 17:11:52 2019] NET: Registered protocol family 2
[Thu Jul 18 17:11:52 2019] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[Thu Jul 18 17:11:52 2019] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[Thu Jul 18 17:11:52 2019] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[Thu Jul 18 17:11:52 2019] TCP: Hash tables configured (established 131072 bind 65536)
[Thu Jul 18 17:11:52 2019] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Thu Jul 18 17:11:52 2019] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[Thu Jul 18 17:11:52 2019] NET: Registered protocol family 1
[Thu Jul 18 17:11:52 2019] NET: Registered protocol family 44
[Thu Jul 18 17:11:52 2019] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[Thu Jul 18 17:11:52 2019] PCI: CLS 0 bytes, default 64
[Thu Jul 18 17:11:52 2019] Trying to unpack rootfs image as initramfs...
[Thu Jul 18 17:11:53 2019] Freeing initrd memory: 46012K
[Thu Jul 18 17:11:53 2019] DMAR: No ATSR found
[Thu Jul 18 17:11:53 2019] DMAR: dmar0: Using Queued invalidation
[Thu Jul 18 17:11:53 2019] DMAR: dmar1: Using Queued invalidation
[Thu Jul 18 17:11:53 2019] pci 0000:00:00.0: Adding to iommu group 0
[Thu Jul 18 17:11:53 2019] pci 0000:00:02.0: Adding to iommu group 1
[Thu Jul 18 17:11:53 2019] pci 0000:00:14.0: Adding to iommu group 2
[Thu Jul 18 17:11:53 2019] pci 0000:00:14.2: Adding to iommu group 2
[Thu Jul 18 17:11:53 2019] pci 0000:00:15.0: Adding to iommu group 3
[Thu Jul 18 17:11:53 2019] pci 0000:00:16.0: Adding to iommu group 4
[Thu Jul 18 17:11:53 2019] pci 0000:00:1c.0: Adding to iommu group 5
[Thu Jul 18 17:11:53 2019] pci 0000:00:1c.6: Adding to iommu group 6
[Thu Jul 18 17:11:53 2019] pci 0000:00:1d.0: Adding to iommu group 7
[Thu Jul 18 17:11:53 2019] pci 0000:00:1d.2: Adding to iommu group 8
[Thu Jul 18 17:11:53 2019] pci 0000:00:1f.0: Adding to iommu group 9
[Thu Jul 18 17:11:53 2019] pci 0000:00:1f.2: Adding to iommu group 9
[Thu Jul 18 17:11:53 2019] pci 0000:00:1f.3: Adding to iommu group 9
[Thu Jul 18 17:11:53 2019] pci 0000:00:1f.4: Adding to iommu group 9
[Thu Jul 18 17:11:53 2019] pci 0000:00:1f.6: Adding to iommu group 9
[Thu Jul 18 17:11:53 2019] pci 0000:04:00.0: Adding to iommu group 10
[Thu Jul 18 17:11:53 2019] pci 0000:3e:00.0: Adding to iommu group 11
[Thu Jul 18 17:11:53 2019] DMAR: Intel(R) Virtualization Technology for Directed I/O
[Thu Jul 18 17:11:53 2019] Initialise system trusted keyrings
[Thu Jul 18 17:11:53 2019] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[Thu Jul 18 17:11:53 2019] zbud: loaded
[Thu Jul 18 17:11:53 2019] *** VALIDATE devpts ***
[Thu Jul 18 17:11:53 2019] Key type asymmetric registered
[Thu Jul 18 17:11:53 2019] Asymmetric key parser 'x509' registered
[Thu Jul 18 17:11:53 2019] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[Thu Jul 18 17:11:53 2019] io scheduler mq-deadline registered
[Thu Jul 18 17:11:53 2019] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[Thu Jul 18 17:11:53 2019] efifb: probing for efifb
[Thu Jul 18 17:11:53 2019] efifb: framebuffer at 0xa0000000, using 5120k, total 5120k
[Thu Jul 18 17:11:53 2019] efifb: mode is 1280x1024x32, linelength=5120, pages=1
[Thu Jul 18 17:11:53 2019] efifb: scrolling: redraw
[Thu Jul 18 17:11:53 2019] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[Thu Jul 18 17:11:53 2019] Console: switching to colour frame buffer device 160x64
[Thu Jul 18 17:11:53 2019] fb0: EFI VGA frame buffer device
[Thu Jul 18 17:11:53 2019] intel_idle: MWAIT substates: 0x11142120
[Thu Jul 18 17:11:53 2019] intel_idle: v0.4.1 model 0x8E
[Thu Jul 18 17:11:53 2019] intel_idle: lapic_timer_reliable_states 0xffffffff
[Thu Jul 18 17:11:53 2019] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[Thu Jul 18 17:11:53 2019] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[Thu Jul 18 17:11:53 2019] Linux agpgart interface v0.103
[Thu Jul 18 17:11:53 2019] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@xxxxxxx>
[Thu Jul 18 17:11:53 2019] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[Thu Jul 18 17:11:53 2019] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[Thu Jul 18 17:11:53 2019] serio: i8042 KBD port at 0x60,0x64 irq 1
[Thu Jul 18 17:11:53 2019] serio: i8042 AUX port at 0x60,0x64 irq 12
[Thu Jul 18 17:11:53 2019] mousedev: PS/2 mouse device common for all mice
[Thu Jul 18 17:11:53 2019] rtc_cmos 00:04: RTC can wake from S4
[Thu Jul 18 17:11:53 2019] rtc_cmos 00:04: registered as rtc0
[Thu Jul 18 17:11:53 2019] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[Thu Jul 18 17:11:53 2019] intel_pstate: Intel P-state driver initializing
[Thu Jul 18 17:11:53 2019] intel_pstate: HWP enabled
[Thu Jul 18 17:11:53 2019] ledtrig-cpu: registered to indicate activity on CPUs
[Thu Jul 18 17:11:53 2019] NET: Registered protocol family 10
[Thu Jul 18 17:11:53 2019] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[Thu Jul 18 17:11:53 2019] Segment Routing with IPv6
[Thu Jul 18 17:11:53 2019] mip6: Mobile IPv6
[Thu Jul 18 17:11:53 2019] NET: Registered protocol family 17
[Thu Jul 18 17:11:53 2019] mpls_gso: MPLS GSO support
[Thu Jul 18 17:11:53 2019] microcode: sig=0x806e9, pf=0x80, revision=0xb4
[Thu Jul 18 17:11:53 2019] microcode: Microcode Update Driver: v2.2.
[Thu Jul 18 17:11:53 2019] sched_clock: Marking stable (1478380675, -3388759)->(1482419720, -7427804)
[Thu Jul 18 17:11:53 2019] registered taskstats version 1
[Thu Jul 18 17:11:53 2019] Loading compiled-in X.509 certificates
[Thu Jul 18 17:11:53 2019] zswap: loaded using pool lzo/zbud
[Thu Jul 18 17:11:53 2019] *** VALIDATE pstore ***
[Thu Jul 18 17:11:53 2019] AppArmor: AppArmor sha1 policy hashing enabled
[Thu Jul 18 17:11:53 2019] rtc_cmos 00:04: setting system clock to 2019-07-18T17:11:53 UTC (1563469913)
[Thu Jul 18 17:11:53 2019] Freeing unused kernel image memory: 1708K
[Thu Jul 18 17:11:53 2019] Write protecting the kernel read-only data: 18432k
[Thu Jul 18 17:11:53 2019] Freeing unused kernel image memory: 2036K
[Thu Jul 18 17:11:53 2019] Freeing unused kernel image memory: 512K
[Thu Jul 18 17:11:53 2019] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[Thu Jul 18 17:11:53 2019] x86/mm: Checking user space page tables
[Thu Jul 18 17:11:53 2019] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[Thu Jul 18 17:11:53 2019] Run /init as init process
[Thu Jul 18 17:11:53 2019] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[Thu Jul 18 17:11:53 2019] ACPI: Sleep Button [SLPB]
[Thu Jul 18 17:11:53 2019] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
[Thu Jul 18 17:11:53 2019] ACPI: Lid Switch [LID]
[Thu Jul 18 17:11:53 2019] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[Thu Jul 18 17:11:53 2019] ACPI: Power Button [PWRF]
[Thu Jul 18 17:11:53 2019] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[Thu Jul 18 17:11:53 2019] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[Thu Jul 18 17:11:53 2019] ACPI: bus type USB registered
[Thu Jul 18 17:11:53 2019] usbcore: registered new interface driver usbfs
[Thu Jul 18 17:11:53 2019] thermal LNXTHERM:00: registered as thermal_zone0
[Thu Jul 18 17:11:53 2019] usbcore: registered new interface driver hub
[Thu Jul 18 17:11:53 2019] ACPI: Thermal Zone [THM0] (60 C)
[Thu Jul 18 17:11:53 2019] usbcore: registered new device driver usb
[Thu Jul 18 17:11:53 2019] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[Thu Jul 18 17:11:53 2019] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[Thu Jul 18 17:11:53 2019] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[Thu Jul 18 17:11:53 2019] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: xHCI Host Controller
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[Thu Jul 18 17:11:53 2019] nvme nvme0: pci function 0000:3e:00.0
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[Thu Jul 18 17:11:53 2019] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[Thu Jul 18 17:11:53 2019] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.02
[Thu Jul 18 17:11:53 2019] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[Thu Jul 18 17:11:53 2019] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Thu Jul 18 17:11:53 2019] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[Thu Jul 18 17:11:53 2019] usb usb1: Product: xHCI Host Controller
[Thu Jul 18 17:11:53 2019] usb usb1: Manufacturer: Linux 5.2.0-4-amd64-cbl-asmgoto xhci-hcd
[Thu Jul 18 17:11:53 2019] usb usb1: SerialNumber: 0000:00:14.0
[Thu Jul 18 17:11:53 2019] hub 1-0:1.0: USB hub found
[Thu Jul 18 17:11:53 2019] cryptd: max_cpu_qlen set to 1000
[Thu Jul 18 17:11:53 2019] hub 1-0:1.0: 12 ports detected
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: xHCI Host Controller
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[Thu Jul 18 17:11:53 2019] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[Thu Jul 18 17:11:53 2019] AVX2 version of gcm_enc/dec engaged.
[Thu Jul 18 17:11:53 2019] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.02
[Thu Jul 18 17:11:53 2019] AES CTR mode by8 optimization enabled
[Thu Jul 18 17:11:53 2019] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[Thu Jul 18 17:11:53 2019] usb usb2: Product: xHCI Host Controller
[Thu Jul 18 17:11:53 2019] usb usb2: Manufacturer: Linux 5.2.0-4-amd64-cbl-asmgoto xhci-hcd
[Thu Jul 18 17:11:53 2019] usb usb2: SerialNumber: 0000:00:14.0
[Thu Jul 18 17:11:53 2019] hub 2-0:1.0: USB hub found
[Thu Jul 18 17:11:53 2019] hub 2-0:1.0: 6 ports detected
[Thu Jul 18 17:11:53 2019] usb: port power management may be unreliable
[Thu Jul 18 17:11:53 2019] i915 0000:00:02.0: enabling device (0006 -> 0007)
[Thu Jul 18 17:11:53 2019] BUG: kernel NULL pointer dereference, address: 0000000000000000
[Thu Jul 18 17:11:53 2019] #PF: supervisor instruction fetch in kernel mode
[Thu Jul 18 17:11:53 2019] #PF: error_code(0x0010) - not-present page
[Thu Jul 18 17:11:53 2019] PGD 0 P4D 0
[Thu Jul 18 17:11:53 2019] Oops: 0010 [#1] SMP PTI
[Thu Jul 18 17:11:53 2019] CPU: 1 PID: 140 Comm: systemd-udevd Not tainted 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:11:53 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:11:53 2019] RIP: 0010:0x0
[Thu Jul 18 17:11:53 2019] Code: Bad RIP value.
[Thu Jul 18 17:11:53 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:11:53 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:11:53 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:11:53 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:11:53 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:11:53 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:11:53 2019] FS: 00007f79934cdd40(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:11:53 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:11:53 2019] CR2: ffffffffffffffd6 CR3: 0000000445e9e002 CR4: 00000000003606e0
[Thu Jul 18 17:11:53 2019] Call Trace:
[Thu Jul 18 17:11:53 2019] i915_gemfs_init+0x84/0xd0 [i915]
[Thu Jul 18 17:11:53 2019] i915_gem_init_early+0x7f/0xa0 [i915]
[Thu Jul 18 17:11:53 2019] i915_driver_probe+0x223/0x1650 [i915]
[Thu Jul 18 17:11:53 2019] ? __kernfs_new_node+0x1a0/0x200
[Thu Jul 18 17:11:53 2019] ? _cond_resched+0x1a/0x50
[Thu Jul 18 17:11:53 2019] ? mutex_lock+0x12/0x30
[Thu Jul 18 17:11:53 2019] ? acpi_dev_found+0x5a/0x70
[Thu Jul 18 17:11:53 2019] i915_pci_probe+0x13e/0x170 [i915]
[Thu Jul 18 17:11:53 2019] pci_device_probe+0x196/0x240
[Thu Jul 18 17:11:53 2019] really_probe+0x205/0x6b0
[Thu Jul 18 17:11:53 2019] driver_probe_device+0x9c/0x130
[Thu Jul 18 17:11:53 2019] device_driver_attach+0x66/0xa0
[Thu Jul 18 17:11:53 2019] __driver_attach+0x42/0x1f0
[Thu Jul 18 17:11:53 2019] ? driver_attach+0x20/0x20
[Thu Jul 18 17:11:53 2019] bus_for_each_dev+0x93/0xd0
[Thu Jul 18 17:11:53 2019] bus_add_driver+0x138/0x220
[Thu Jul 18 17:11:53 2019] ? 0xffffffffc07f3000
[Thu Jul 18 17:11:53 2019] driver_register+0x7e/0x110
[Thu Jul 18 17:11:53 2019] do_one_initcall+0xf9/0x280
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x34/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x40/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x34/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x40/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x34/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x40/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x34/0x70
[Thu Jul 18 17:11:53 2019] ? __switch_to_asm+0x40/0x70
[Thu Jul 18 17:11:53 2019] ? vunmap_page_range+0x1e2/0x2b0
[Thu Jul 18 17:11:53 2019] ? free_unref_page_commit+0x93/0x170
[Thu Jul 18 17:11:53 2019] ? _cond_resched+0x1a/0x50
[Thu Jul 18 17:11:53 2019] ? kmem_cache_alloc_trace+0x3f/0x230
[Thu Jul 18 17:11:53 2019] do_init_module+0x60/0x230
[Thu Jul 18 17:11:53 2019] load_module+0x30c0/0x33f0
[Thu Jul 18 17:11:53 2019] ? kernel_read_file_from_fd+0x46/0x80
[Thu Jul 18 17:11:53 2019] __se_sys_finit_module+0x102/0x110
[Thu Jul 18 17:11:53 2019] do_syscall_64+0x59/0x90
[Thu Jul 18 17:11:53 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:11:53 2019] RIP: 0033:0x7f7993cb7f59
[Thu Jul 18 17:11:53 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:11:53 2019] RSP: 002b:00007ffc0d6b98b8 EFLAGS: 00000246 ORIG_RAX: 0000000000000139
[Thu Jul 18 17:11:53 2019] RAX: ffffffffffffffda RBX: 000055bbe9da11a0 RCX: 00007f7993cb7f59
[Thu Jul 18 17:11:53 2019] RDX: 0000000000000000 RSI: 00007f7993bbccad RDI: 000000000000000e
[Thu Jul 18 17:11:53 2019] RBP: 00007f7993bbccad R08: 0000000000000000 R09: 0000000000000000
[Thu Jul 18 17:11:53 2019] R10: 000000000000000e R11: 0000000000000246 R12: 0000000000000000
[Thu Jul 18 17:11:53 2019] R13: 000055bbe9da60f0 R14: 0000000000020000 R15: 000055bbe9da11a0
[Thu Jul 18 17:11:53 2019] Modules linked in: fjes(-) aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e(+) i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:11:53 2019] CR2: 0000000000000000
[Thu Jul 18 17:11:53 2019] ---[ end trace 53bbf085e4e9924e ]---
[Thu Jul 18 17:11:53 2019] RIP: 0010:0x0
[Thu Jul 18 17:11:53 2019] Code: Bad RIP value.
[Thu Jul 18 17:11:53 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:11:53 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:11:53 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:11:53 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:11:53 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:11:53 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:11:53 2019] FS: 00007f79934cdd40(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:11:53 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:11:53 2019] CR2: ffffffffffffffd6 CR3: 0000000445e9e002 CR4: 00000000003606e0
[Thu Jul 18 17:11:53 2019] nvme nvme0: 4/0/0 default/read/poll queues
[Thu Jul 18 17:11:53 2019] nvme0n1: p1 p2 p3 p4 p5 p6
[Thu Jul 18 17:11:53 2019] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[Thu Jul 18 17:11:54 2019] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 54:e1:ad:a0:6b:a0
[Thu Jul 18 17:11:54 2019] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[Thu Jul 18 17:11:54 2019] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: 1000FF-0FF
[Thu Jul 18 17:11:54 2019] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[Thu Jul 18 17:11:54 2019] usb 1-1: new low-speed USB device number 2 using xhci_hcd
[Thu Jul 18 17:11:54 2019] raid6: avx2x4 gen() 21242 MB/s
[Thu Jul 18 17:11:54 2019] mce: CPU3: Core temperature above threshold, cpu clock throttled (total events = 1)
[Thu Jul 18 17:11:54 2019] mce: CPU1: Core temperature above threshold, cpu clock throttled (total events = 1)
[Thu Jul 18 17:11:54 2019] mce: CPU1: Package temperature above threshold, cpu clock throttled (total events = 1)
[Thu Jul 18 17:11:54 2019] mce: CPU0: Package temperature above threshold, cpu clock throttled (total events = 1)
[Thu Jul 18 17:11:54 2019] mce: CPU2: Package temperature above threshold, cpu clock throttled (total events = 1)
[Thu Jul 18 17:11:54 2019] mce: CPU3: Package temperature above threshold, cpu clock throttled (total events = 1)
[Thu Jul 18 17:11:54 2019] mce: CPU0: Package temperature/speed normal
[Thu Jul 18 17:11:54 2019] mce: CPU2: Package temperature/speed normal
[Thu Jul 18 17:11:54 2019] mce: CPU1: Core temperature/speed normal
[Thu Jul 18 17:11:54 2019] mce: CPU3: Core temperature/speed normal
[Thu Jul 18 17:11:54 2019] mce: CPU1: Package temperature/speed normal
[Thu Jul 18 17:11:54 2019] mce: CPU3: Package temperature/speed normal
[Thu Jul 18 17:11:54 2019] raid6: avx2x4 xor() 17297 MB/s
[Thu Jul 18 17:11:54 2019] raid6: avx2x2 gen() 26436 MB/s
[Thu Jul 18 17:11:54 2019] raid6: avx2x2 xor() 20489 MB/s
[Thu Jul 18 17:11:54 2019] tsc: Refined TSC clocksource calibration: 2903.979 MHz
[Thu Jul 18 17:11:54 2019] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dbf1ca37e, max_idle_ns: 440795233019 ns
[Thu Jul 18 17:11:54 2019] raid6: avx2x1 gen() 22419 MB/s
[Thu Jul 18 17:11:54 2019] raid6: avx2x1 xor() 13560 MB/s
[Thu Jul 18 17:11:54 2019] raid6: sse2x4 gen() 12200 MB/s
[Thu Jul 18 17:11:54 2019] raid6: sse2x4 xor() 8631 MB/s
[Thu Jul 18 17:11:54 2019] raid6: sse2x2 gen() 10903 MB/s
[Thu Jul 18 17:11:54 2019] raid6: sse2x2 xor() 7873 MB/s
[Thu Jul 18 17:11:54 2019] raid6: sse2x1 gen() 9413 MB/s
[Thu Jul 18 17:11:54 2019] raid6: sse2x1 xor() 6255 MB/s
[Thu Jul 18 17:11:54 2019] raid6: using algorithm avx2x2 gen() 26436 MB/s
[Thu Jul 18 17:11:54 2019] raid6: .... xor() 20489 MB/s, rmw enabled
[Thu Jul 18 17:11:54 2019] raid6: using avx2x2 recovery algorithm
[Thu Jul 18 17:11:54 2019] clocksource: Switched to clocksource tsc
[Thu Jul 18 17:11:54 2019] xor: automatically using best checksumming function avx
[Thu Jul 18 17:11:54 2019] async_tx: api initialized (async)
[Thu Jul 18 17:11:54 2019] device-mapper: uevent: version 1.0.3
[Thu Jul 18 17:11:54 2019] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@xxxxxxxxxx
[Thu Jul 18 17:11:54 2019] usb 1-1: New USB device found, idVendor=046a, idProduct=0023, bcdDevice= 2.20
[Thu Jul 18 17:11:54 2019] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[Thu Jul 18 17:11:54 2019] hidraw: raw HID events driver (C) Jiri Kosina
[Thu Jul 18 17:11:55 2019] usbcore: registered new interface driver usbhid
[Thu Jul 18 17:11:55 2019] usbhid: USB HID core driver
[Thu Jul 18 17:11:55 2019] input: HID 046a:0023 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:046A:0023.0001/input/input6
[Thu Jul 18 17:11:55 2019] cherry 0003:046A:0023.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 046a:0023] on usb-0000:00:14.0-1/input0
[Thu Jul 18 17:11:55 2019] input: HID 046a:0023 as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046A:0023.0002/input/input7
[Thu Jul 18 17:11:55 2019] usb 2-3: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[Thu Jul 18 17:11:55 2019] cherry 0003:046A:0023.0002: input,hidraw1: USB HID v1.11 Device [HID 046a:0023] on usb-0000:00:14.0-1/input1
[Thu Jul 18 17:11:55 2019] usb 2-3: New USB device found, idVendor=0bda, idProduct=0316, bcdDevice= 2.04
[Thu Jul 18 17:11:55 2019] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[Thu Jul 18 17:11:55 2019] usb 2-3: Product: USB3.0-CRW
[Thu Jul 18 17:11:55 2019] usb 2-3: Manufacturer: Generic
[Thu Jul 18 17:11:55 2019] usb 2-3: SerialNumber: 20120501030900000
[Thu Jul 18 17:11:55 2019] SCSI subsystem initialized
[Thu Jul 18 17:11:55 2019] usb-storage 2-3:1.0: USB Mass Storage device detected
[Thu Jul 18 17:11:55 2019] scsi host0: usb-storage 2-3:1.0
[Thu Jul 18 17:11:55 2019] usbcore: registered new interface driver usb-storage
[Thu Jul 18 17:11:55 2019] usbcore: registered new interface driver uas
[Thu Jul 18 17:11:55 2019] usb 1-2: new low-speed USB device number 3 using xhci_hcd
[Thu Jul 18 17:11:55 2019] psmouse serio1: synaptics: queried max coordinates: x [..5676], y [..4690]
[Thu Jul 18 17:11:55 2019] psmouse serio1: synaptics: queried min coordinates: x [1266..], y [1162..]
[Thu Jul 18 17:11:55 2019] psmouse serio1: synaptics: Trying to set up SMBus access
[Thu Jul 18 17:11:55 2019] usb 1-2: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[Thu Jul 18 17:11:55 2019] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[Thu Jul 18 17:11:55 2019] usb 1-2: Product: USB Optical Mouse
[Thu Jul 18 17:11:55 2019] usb 1-2: Manufacturer: Logitech
[Thu Jul 18 17:11:55 2019] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:046D:C077.0003/input/input8
[Thu Jul 18 17:11:55 2019] hid-generic 0003:046D:C077.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-2/input0
[Thu Jul 18 17:11:55 2019] usb 1-3: new full-speed USB device number 4 using xhci_hcd
[Thu Jul 18 17:11:55 2019] usb 1-3: New USB device found, idVendor=058f, idProduct=9540, bcdDevice= 1.20
[Thu Jul 18 17:11:55 2019] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[Thu Jul 18 17:11:55 2019] usb 1-3: Product: EMV Smartcard Reader
[Thu Jul 18 17:11:55 2019] usb 1-3: Manufacturer: Generic
[Thu Jul 18 17:11:55 2019] usb 1-7: new full-speed USB device number 5 using xhci_hcd
[Thu Jul 18 17:11:55 2019] usb 1-7: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[Thu Jul 18 17:11:55 2019] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[Thu Jul 18 17:11:56 2019] usb 1-8: new high-speed USB device number 6 using xhci_hcd
[Thu Jul 18 17:11:56 2019] scsi 0:0:0:0: Direct-Access Generic- SD/MMC 1.00 PQ: 0 ANSI: 6
[Thu Jul 18 17:11:56 2019] sd 0:0:0:0: [sda] Attached SCSI removable disk
[Thu Jul 18 17:11:56 2019] usb 1-8: New USB device found, idVendor=13d3, idProduct=5619, bcdDevice=16.20
[Thu Jul 18 17:11:56 2019] usb 1-8: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[Thu Jul 18 17:11:56 2019] usb 1-8: Product: Integrated Camera
[Thu Jul 18 17:11:56 2019] usb 1-8: Manufacturer: AzureWave
[Thu Jul 18 17:11:56 2019] usb 1-8: SerialNumber: NULL
[Thu Jul 18 17:11:56 2019] usb 1-9: new full-speed USB device number 7 using xhci_hcd
[Thu Jul 18 17:11:56 2019] usb 1-9: New USB device found, idVendor=138a, idProduct=0097, bcdDevice= 1.64
[Thu Jul 18 17:11:56 2019] usb 1-9: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[Thu Jul 18 17:11:56 2019] usb 1-9: SerialNumber: decd885354aa
[Thu Jul 18 17:12:03 2019] NET: Registered protocol family 38
[Thu Jul 18 17:12:03 2019] Btrfs loaded, crc32c=crc32c-intel
[Thu Jul 18 17:12:03 2019] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[Thu Jul 18 17:12:03 2019] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[Thu Jul 18 17:12:03 2019] systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
[Thu Jul 18 17:12:03 2019] *** VALIDATE autofs ***
[Thu Jul 18 17:12:03 2019] systemd[1]: Inserted module 'autofs4'
[Thu Jul 18 17:12:04 2019] systemd[1]: systemd 241 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)
[Thu Jul 18 17:12:04 2019] systemd[1]: Detected architecture x86-64.
[Thu Jul 18 17:12:04 2019] systemd[1]: Set hostname to <iniza>.
[Thu Jul 18 17:12:04 2019] systemd[1]: Failed to bump fs.file-max, ignoring: Invalid argument
[Thu Jul 18 17:12:04 2019] systemd[1]: /lib/systemd/system/rpc-statd.service:13: PIDFile= references path below legacy directory /var/run/, updating /var/run/rpc.statd.pid \xe2\x86\x92 /run/rpc.statd.pid; please update the unit file accordingly.
[Thu Jul 18 17:12:04 2019] systemd[1]: Listening on Syslog Socket.
[Thu Jul 18 17:12:04 2019] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[Thu Jul 18 17:12:04 2019] systemd[1]: Reached target Swap.
[Thu Jul 18 17:12:04 2019] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[Thu Jul 18 17:12:04 2019] systemd[1]: Created slice User and Session Slice.
[Thu Jul 18 17:12:04 2019] RPC: Registered named UNIX socket transport module.
[Thu Jul 18 17:12:04 2019] RPC: Registered udp transport module.
[Thu Jul 18 17:12:04 2019] RPC: Registered tcp transport module.
[Thu Jul 18 17:12:04 2019] RPC: Registered tcp NFSv4.1 backchannel transport module.
[Thu Jul 18 17:12:04 2019] EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#2] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 1 PID: 403 Comm: (journald) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb3958038bcb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb3958038bd60 RBX: ffffb395800e1038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb3958038bd40 RSI: 00000000000000ac RDI: ffffb3958038bce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb3958038bcd0 R08: 0000000000000000 R09: ffffb3958038bf58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb3958038beb8 R14: 0000000000000000 R15: ffffb3958038bce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044e5bc006 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadef9ca20 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadef9ca20 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadf03bd40 R08: 000055cadf0bdca0 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0bdd00 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e9924f ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044e5bc006 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#3] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 1 PID: 418 Comm: (journald) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb3958038bcb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb3958038bd60 RBX: ffffb39580101038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb3958038bd40 RSI: 00000000000000ac RDI: ffffb3958038bce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb3958038bcd0 R08: 0000000000000000 R09: ffffb3958038bf58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb3958038beb8 R14: 0000000000000000 R15: ffffb3958038bce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044cb20001 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadf0ca0f0 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadf0ca0f0 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadef9c5c0 R08: 000055cadf03f420 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf03f480 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99250 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044cb20001 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[Thu Jul 18 17:12:04 2019] lp: driver loaded but no devices found
[Thu Jul 18 17:12:04 2019] ppdev: user-space parallel port driver
[Thu Jul 18 17:12:04 2019] i2c /dev entries driver
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#4] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 1 PID: 430 Comm: (journald) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb3958030fcb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb3958030fd60 RBX: ffffb395800e1038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb3958030fd40 RSI: 00000000000000ac RDI: ffffb3958030fce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb3958030fcd0 R08: 0000000000000000 R09: ffffb3958030ff58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb3958030feb8 R14: 0000000000000000 R15: ffffb3958030fce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 0000000447174005 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadefa1840 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadefa1840 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadefda030 R08: 000055cadf0bd5e0 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0bd640 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99251 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 0000000447174005 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#5] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 1 PID: 431 Comm: (journald) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802b7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802b7d60 RBX: ffffb39580101038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802b7d40 RSI: 00000000000000ac RDI: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802b7cd0 R08: 0000000000000000 R09: ffffb395802b7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802b7eb8 R14: 0000000000000000 R15: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044a01e002 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? pagevec_lru_move_fn+0xde/0x100
[Thu Jul 18 17:12:04 2019] ? lru_add_page_tail+0x2b0/0x2b0
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadef9d9b0 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadef9d9b0 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadef9cd60 R08: 000055cadefd6de0 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadefd6e40 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99252 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044a01e002 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#6] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 3 PID: 435 Comm: (journald) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802b7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802b7d60 RBX: ffffb395800d1038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802b7d40 RSI: 00000000000000ac RDI: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802b7cd0 R08: 0000000000000000 R09: ffffb395802b7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802b7eb8 R14: 0000000000000000 R15: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044a01e001 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadf0ca0f0 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadf0ca0f0 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadf0c5290 R08: 000055cadefd7360 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadefd73c0 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99253 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044a01e001 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] systemd[436]: systemd-udevd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#7] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 3 PID: 436 Comm: (md-udevd) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802e7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802e7d60 RBX: ffffb39580135038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802e7d40 RSI: 00000000000000ac RDI: ffffb395802e7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802e7cd0 R08: 0000000000000000 R09: ffffb395802e7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802e7eb8 R14: 0000000000000000 R15: ffffb395802e7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 00000004448c8004 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadef9d9b0 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadef9d9b0 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadf09e490 R08: 000055cadf0c1db0 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0c1e10 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99254 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 00000004448c8004 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] systemd[437]: systemd-udevd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#8] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 3 PID: 437 Comm: (md-udevd) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802e7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802e7d60 RBX: ffffb39580149038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802e7d40 RSI: 00000000000000ac RDI: ffffb395802e7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802e7cd0 R08: 0000000000000000 R09: ffffb395802e7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802e7eb8 R14: 0000000000000000 R15: ffffb395802e7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044eaea006 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadf0ca0f0 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadf0ca0f0 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadf0a14b0 R08: 000055cadf0c1db0 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0c1e10 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99255 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044eaea006 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] systemd[438]: systemd-udevd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#9] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 3 PID: 438 Comm: (md-udevd) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802b7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802b7d60 RBX: ffffb395800f9038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802b7d40 RSI: 00000000000000ac RDI: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802b7cd0 R08: 0000000000000000 R09: ffffb395802b7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802b7eb8 R14: 0000000000000000 R15: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044eaea004 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadef9dc90 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadef9dc90 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadf0c22d0 R08: 000055cadf0be860 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0be8c0 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99256 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044eaea004 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] systemd[439]: systemd-udevd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#10] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 1 PID: 439 Comm: (md-udevd) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802b7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802b7d60 RBX: ffffb39580159038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802b7d40 RSI: 00000000000000ac RDI: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802b7cd0 R08: 0000000000000000 R09: ffffb395802b7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802b7eb8 R14: 0000000000000000 R15: ffffb395802b7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044eaea001 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadef9db20 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadef9db20 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadefda220 R08: 000055cadf0c7d60 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0c7dc0 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99257 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044eaea001 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] systemd[440]: systemd-udevd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:12:04 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:12:04 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:12:04 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:12:04 2019] Oops: 0000 [#11] SMP PTI
[Thu Jul 18 17:12:04 2019] CPU: 3 PID: 440 Comm: (md-udevd) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:12:04 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:12:04 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:12:04 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395802e7cb8 EFLAGS: 00010246
[Thu Jul 18 17:12:04 2019] RAX: ffffb395802e7d60 RBX: ffffb39580125038 RCX: 0000000000000002
[Thu Jul 18 17:12:04 2019] RDX: ffffb395802e7d40 RSI: 00000000000000ac RDI: ffffb395802e7ce0
[Thu Jul 18 17:12:04 2019] RBP: ffffb395802e7cd0 R08: 0000000000000000 R09: ffffb395802e7f58
[Thu Jul 18 17:12:04 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:12:04 2019] R13: ffffb395802e7eb8 R14: 0000000000000000 R15: ffffb395802e7ce0
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370 CR3: 000000044eaea002 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] Call Trace:
[Thu Jul 18 17:12:04 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:12:04 2019] ? mem_cgroup_commit_charge+0x8c/0x120
[Thu Jul 18 17:12:04 2019] ? wp_page_copy+0x4e1/0x7c0
[Thu Jul 18 17:12:04 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:12:04 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:12:04 2019] ? do_wp_page+0x32b/0x5d0
[Thu Jul 18 17:12:04 2019] ? handle_mm_fault+0x90d/0xbf0
[Thu Jul 18 17:12:04 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:12:04 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:12:04 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:12:04 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:12:04 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:12:04 2019] RSP: 002b:00007ffc2b18e4a8 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:12:04 2019] RAX: ffffffffffffffda RBX: 000055cadef9dd00 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:12:04 2019] RDX: 000055cadef9dd00 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:12:04 2019] RBP: 000055cadef95920 R08: 000055cadf0c7d60 R09: 00000000c000003e
[Thu Jul 18 17:12:04 2019] R10: 000055cadf0c7dc0 R11: 0000000000000246 R12: 00007ffc2b18e500
[Thu Jul 18 17:12:04 2019] R13: 00007ffc2b18e4f8 R14: 00007fbdcbcce7f8 R15: 000000000000002c
[Thu Jul 18 17:12:04 2019] Modules linked in: i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:12:04 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:12:04 2019] ---[ end trace 53bbf085e4e99258 ]---
[Thu Jul 18 17:12:04 2019] RIP: 0010:0x0
[Thu Jul 18 17:12:04 2019] Code: Bad RIP value.
[Thu Jul 18 17:12:04 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:12:04 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:12:04 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:12:04 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:12:04 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:12:04 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:12:04 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192580000(0000) knlGS:0000000000000000
[Thu Jul 18 17:12:04 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:12:04 2019] CR2: ffffffffffffffd6 CR3: 000000044eaea002 CR4: 00000000003606e0
[Thu Jul 18 17:12:04 2019] systemd[441]: plymouth-start.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:12:04 2019] systemd[443]: plymouth-start.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:04 2019] systemd[1]: lvm2-lvmpolld.service: Succeeded.
[Thu Jul 18 17:13:34 2019] systemd[1]: dev-disk-by\x2duuid-3a8a7f5f\x2d28c5\x2d46f8\x2dad80\x2d5e288f1f7dd3.device: Job dev-disk-by\x2duuid-3a8a7f5f\x2d28c5\x2d46f8\x2dad80\x2d5e288f1f7dd3.device/start timed out.
[Thu Jul 18 17:13:34 2019] systemd[1]: Timed out waiting for device /dev/disk/by-uuid/3a8a7f5f-28c5-46f8-ad80-5e288f1f7dd3.
[Thu Jul 18 17:13:34 2019] systemd[1]: Dependency failed for /boot.
[Thu Jul 18 17:13:34 2019] systemd[1]: Dependency failed for Local File Systems.
[Thu Jul 18 17:13:34 2019] systemd[1]: local-fs.target: Job local-fs.target/start failed with result 'dependency'.
[Thu Jul 18 17:13:34 2019] systemd[1]: local-fs.target: Triggering OnFailure= dependencies.
[Thu Jul 18 17:13:34 2019] systemd[1]: Dependency failed for /boot/efi.
[Thu Jul 18 17:13:34 2019] systemd[1]: boot-efi.mount: Job boot-efi.mount/start failed with result 'dependency'.
[Thu Jul 18 17:13:34 2019] systemd[1]: boot.mount: Job boot.mount/start failed with result 'dependency'.
[Thu Jul 18 17:13:34 2019] systemd[1]: Dependency failed for File System Check on /dev/disk/by-uuid/3a8a7f5f-28c5-46f8-ad80-5e288f1f7dd3.
[Thu Jul 18 17:13:34 2019] systemd[444]: nfs-config.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[445]: console-setup.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[446]: binfmt-support.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[447]: plymouth-read-write.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[448]: apparmor.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[454]: systemd-tmpfiles-setup.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[457]: proc-sys-fs-binfmt_misc.mount: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd-tmpfiles[454]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:1] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher \xe2\x86\x92 /run/speech-dispatcher; please update the tmpfiles.d/ drop-in file accordingly.
[Thu Jul 18 17:13:34 2019] systemd-tmpfiles[454]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:2] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/.cache \xe2\x86\x92 /run/speech-dispatcher/.cache; please update the tmpfiles.d/ drop-in file accordingly.
[Thu Jul 18 17:13:34 2019] systemd-tmpfiles[454]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:3] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/.speech-dispatcher \xe2\x86\x92 /run/speech-dispatcher/.speech-dispatcher; please update the tmpfiles.d/ drop-in file accordingly.
[Thu Jul 18 17:13:34 2019] systemd-tmpfiles[454]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:4] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/.cache/speech-dispatcher \xe2\x86\x92 /run/speech-dispatcher/.cache/speech-dispatcher; please update the tmpfiles.d/ drop-in file accordingly.
[Thu Jul 18 17:13:34 2019] systemd-tmpfiles[454]: [/usr/lib/tmpfiles.d/speech-dispatcher.conf:5] Line references path below legacy directory /var/run/, updating /var/run/speech-dispatcher/log \xe2\x86\x92 /run/speech-dispatcher/log; please update the tmpfiles.d/ drop-in file accordingly.
[Thu Jul 18 17:13:34 2019] systemd[459]: nfs-idmapd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.342:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=465 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.346:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=464 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.350:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=468 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.354:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=463 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.358:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld-akonadi" pid=462 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.358:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld-akonadi///usr/sbin/mysqld" pid=462 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.358:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=469 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.366:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=472 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.366:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=472 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] audit: type=1400 audit(1563462814.366:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=472 comm="apparmor_parser"
[Thu Jul 18 17:13:34 2019] systemd[478]: rpcbind.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[479]: systemd-update-utmp.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[480]: systemd-update-utmp-runlevel.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[482]: networking.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] BUG: unable to handle page fault for address: ffffffff9d803370
[Thu Jul 18 17:13:34 2019] #PF: supervisor read access in kernel mode
[Thu Jul 18 17:13:34 2019] #PF: error_code(0x0000) - not-present page
[Thu Jul 18 17:13:34 2019] PGD 31e40e067 P4D 31e40e067 PUD 31e40f063 PMD 4462a0063 PTE 800ffffce21fc062
[Thu Jul 18 17:13:34 2019] Oops: 0000 [#12] SMP PTI
[Thu Jul 18 17:13:34 2019] CPU: 1 PID: 481 Comm: (haveged) Tainted: G D 5.2.0-4-amd64-cbl-asmgoto #4~buster+dileks1
[Thu Jul 18 17:13:34 2019] Hardware name: LENOVO 20HDCTO1WW/20HDCTO1WW, BIOS N1QET83W (1.58 ) 04/18/2019
[Thu Jul 18 17:13:34 2019] RIP: 0010:___bpf_prog_run+0x40/0x14f0
[Thu Jul 18 17:13:34 2019] Code: f3 eb 24 48 83 f8 38 0f 84 a9 0c 00 00 48 83 f8 39 0f 85 8a 14 00 00 0f 1f 00 48 0f bf 43 02 48 8d 1c c3 48 83 c3 08 0f b6 33 <48> 8b 04 f5 10 2e 80 9d 48 83 f8 3b 7f 62 48 83 f8 1e 0f 8f c8 00
[Thu Jul 18 17:13:34 2019] RSP: 0018:ffffb395802e7cb8 EFLAGS: 00010246
[Thu Jul 18 17:13:34 2019] RAX: ffffb395802e7d60 RBX: ffffb395800d1038 RCX: 0000000000000002
[Thu Jul 18 17:13:34 2019] RDX: ffffb395802e7d40 RSI: 00000000000000ac RDI: ffffb395802e7ce0
[Thu Jul 18 17:13:34 2019] RBP: ffffb395802e7cd0 R08: 0000000000000000 R09: ffffb395802e7f58
[Thu Jul 18 17:13:34 2019] R10: 0000000000000000 R11: ffffffff9cdb8140 R12: 000000007fff0000
[Thu Jul 18 17:13:34 2019] R13: ffffb395802e7eb8 R14: 0000000000000000 R15: ffffb395802e7ce0
[Thu Jul 18 17:13:34 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:13:34 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:13:34 2019] CR2: ffffffff9d803370 CR3: 000000044e5b8002 CR4: 00000000003606e0
[Thu Jul 18 17:13:34 2019] Call Trace:
[Thu Jul 18 17:13:34 2019] __bpf_prog_run32+0x44/0x70
[Thu Jul 18 17:13:34 2019] ? cpa_flush+0x69/0x1a0
[Thu Jul 18 17:13:34 2019] seccomp_run_filters+0x54/0x110
[Thu Jul 18 17:13:34 2019] __seccomp_filter+0xf7/0x6e0
[Thu Jul 18 17:13:34 2019] ? bpf_prepare_filter+0x4c5/0x4d0
[Thu Jul 18 17:13:34 2019] ? seccomp_run_filters+0x110/0x110
[Thu Jul 18 17:13:34 2019] syscall_trace_enter+0x182/0x290
[Thu Jul 18 17:13:34 2019] ? speculation_ctrl_update_current+0x51/0x60
[Thu Jul 18 17:13:34 2019] do_syscall_64+0x30/0x90
[Thu Jul 18 17:13:34 2019] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[Thu Jul 18 17:13:34 2019] RIP: 0033:0x7fbdcbe9df59
[Thu Jul 18 17:13:34 2019] Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 07 6f 0c 00 f7 d8 64 89 01 48
[Thu Jul 18 17:13:34 2019] RSP: 002b:00007ffc2b18e548 EFLAGS: 00000246 ORIG_RAX: 000000000000013d
[Thu Jul 18 17:13:34 2019] RAX: ffffffffffffffda RBX: 000055cadf0aab00 RCX: 00007fbdcbe9df59
[Thu Jul 18 17:13:34 2019] RDX: 000055cadf0aab00 RSI: 0000000000000000 RDI: 0000000000000001
[Thu Jul 18 17:13:34 2019] RBP: 000055cadf0b6f30 R08: 000055cadf0c4a70 R09: 000000004000003e
[Thu Jul 18 17:13:34 2019] R10: 000055cadf0c4ad0 R11: 0000000000000246 R12: 000055cadd639e10
[Thu Jul 18 17:13:34 2019] R13: 000000007fff0000 R14: 00007ffc2b18e580 R15: 0000000000000000
[Thu Jul 18 17:13:34 2019] Modules linked in: binfmt_misc i2c_dev parport_pc ppdev lp parport nfsd auth_rpcgss nfs_acl lockd grace sunrpc efivarfs ip_tables x_tables autofs4 ext4 crc32c_generic mbcache crc16 jbd2 btrfs zstd_decompress zstd_compress algif_skcipher af_alg sd_mod uas usb_storage scsi_mod hid_cherry hid_generic usbhid hid dm_crypt dm_mod raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear md_mod crct10dif_pclmul crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 glue_helper crypto_simd i915(+) cryptd e1000e i2c_algo_bit nvme xhci_pci psmouse drm_kms_helper xhci_hcd i2c_i801 nvme_core intel_lpss_pci intel_lpss drm usbcore thermal wmi video button
[Thu Jul 18 17:13:34 2019] CR2: ffffffff9d803370
[Thu Jul 18 17:13:34 2019] ---[ end trace 53bbf085e4e99259 ]---
[Thu Jul 18 17:13:34 2019] RIP: 0010:0x0
[Thu Jul 18 17:13:34 2019] Code: Bad RIP value.
[Thu Jul 18 17:13:34 2019] RSP: 0018:ffffb395803178d0 EFLAGS: 00010202
[Thu Jul 18 17:13:34 2019] RAX: ffffffff9dad26b0 RBX: ffff9a01862ea7a0 RCX: 00000000000001de
[Thu Jul 18 17:13:34 2019] RDX: ffffb395803178e0 RSI: ffffb395803178dc RDI: ffff9a01854ca800
[Thu Jul 18 17:13:34 2019] RBP: ffffb39580317910 R08: 00000000ffffff9c R09: ffff9a019242c000
[Thu Jul 18 17:13:34 2019] R10: 00000000000019a7 R11: 0000000000000000 R12: ffff9a0185f50830
[Thu Jul 18 17:13:34 2019] R13: ffff9a0185f54cb0 R14: ffff9a0185f50000 R15: ffff9a0185f50000
[Thu Jul 18 17:13:34 2019] FS: 00007fbdcace3940(0000) GS:ffff9a0192480000(0000) knlGS:0000000000000000
[Thu Jul 18 17:13:34 2019] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[Thu Jul 18 17:13:34 2019] CR2: ffffffffffffffd6 CR3: 000000044e5b8002 CR4: 00000000003606e0
[Thu Jul 18 17:13:34 2019] systemd[536]: nfs-mountd.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[538]: nfs-server.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:34 2019] systemd[539]: nfs-server.service: Failed to connect stdout to the journal socket, ignoring: Connection refused
[Thu Jul 18 17:13:35 2019] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[Thu Jul 18 17:13:35 2019] NFSD: Using legacy client tracking operations.
[Thu Jul 18 17:13:35 2019] NFSD: starting 90-second grace period (net f00000a8)

Attachment: config-5.2.0-4-amd64-cbl-asmgoto
Description: Binary data

UNIT LOAD ACTIVE SUB DESCRIPTION
â haveged.service loaded failed failed Entropy daemon using the HAVEGE algorithm
â systemd-journald.service loaded failed failed Journal Service
â systemd-udevd.service loaded failed failed udev Kernel Device Manager
â systemd-journald-audit.socket loaded failed failed Journal Audit Socket
â systemd-journald-dev-log.socket loaded failed failed Journal Socket (/dev/log)
â systemd-journald.socket loaded failed failed Journal Socket
â systemd-udevd-control.socket loaded failed failed udev Control Socket
â systemd-udevd-kernel.socket loaded failed failed udev Kernel Socket

LOAD = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB = The low-level unit activation state, values depend on unit type.

8 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.