Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Unable to create container #1218

Closed
9 tasks
jamalknight opened this issue Mar 12, 2020 · 1 comment
Closed
9 tasks

Unable to create container #1218

jamalknight opened this issue Mar 12, 2020 · 1 comment

Comments

@jamalknight
Copy link

The template below is mostly useful for bug reports and support questions. Feel free to remove anything which doesn't apply to you and add more information where it makes sense.

Also, before reporting a new issue, please make sure that:


1. Issue or feature description

Unable to create container

I am trying to install detectron2
with docker but unable to.

2. Steps to reproduce the issue

Install docker-compose
sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

Make this file executable
sudo chmod +x /usr/local/bin/docker-compose

Installing the correct version of docker (Nvidia)

distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.repo | sudo tee /etc/yum.repos.d/nvidia-docker.repo

sudo yum install -y nvidia-container-toolkit
sudo systemctl restart docker

Test nvidia-smi with the latest official CUDA image

Sudo docker run --gpus all nvidia/cuda:10.0-base nvidia-smi

Start a GPU enabled container on two GPUs

sudo docker run --gpus 1 nvidia/cuda:10.0-base nvidia-smi

Go into /docker (repository download location)
sudo USER_ID=$UID /usr/local/bin/docker-compose run detectron2

Error:
ERROR: Cannot create container for service detectron2: Unknown runtime specified nvidia

3. Information to attach (optional if deemed irrelevant)

  • Some nvidia-container information: nvidia-container-cli -k -d /dev/tty info

-- WARNING, the following logs are for debugging purposes only --

I0312 03:28:05.474185 35333 nvc.c:281] initializing library context (version=1.0.7, build=b71f87c04b8eca8a16bf60995506c35c937347d9)
I0312 03:28:05.474641 35333 nvc.c:255] using root /
I0312 03:28:05.474665 35333 nvc.c:256] using ldcache /etc/ld.so.cache
I0312 03:28:05.474709 35333 nvc.c:257] using unprivileged user 113787650:8888
W0312 03:28:05.482861 35334 nvc.c:186] failed to set inheritable capabilities
W0312 03:28:05.483001 35334 nvc.c:187] skipping kernel modules load due to failure
I0312 03:28:05.484319 35335 driver.c:133] starting driver service
I0312 03:28:05.520344 35333 nvc_info.c:438] requesting driver information with ''
I0312 03:28:05.521172 35333 nvc_info.c:152] selecting /usr/lib64/libnvoptix.so.430.50
I0312 03:28:05.521314 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-tls.so.430.50
I0312 03:28:05.521410 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-rtcore.so.430.50
I0312 03:28:05.521500 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-ptxjitcompiler.so.430.50
I0312 03:28:05.521584 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-opticalflow.so.430.50
I0312 03:28:05.521688 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-opencl.so.430.50
I0312 03:28:05.521763 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-ml.so.430.50
I0312 03:28:05.521864 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-ifr.so.430.50
I0312 03:28:05.521959 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-glvkspirv.so.430.50
I0312 03:28:05.522040 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-glsi.so.430.50
I0312 03:28:05.522114 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-glcore.so.430.50
I0312 03:28:05.522191 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-fbc.so.430.50
I0312 03:28:05.522287 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-fatbinaryloader.so.430.50
I0312 03:28:05.522352 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-encode.so.430.50
I0312 03:28:05.522444 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-eglcore.so.430.50
I0312 03:28:05.522522 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-compiler.so.430.50
I0312 03:28:05.522594 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-cfg.so.430.50
I0312 03:28:05.522658 35333 nvc_info.c:152] selecting /usr/lib64/libnvidia-cbl.so.430.50
I0312 03:28:05.522727 35333 nvc_info.c:152] selecting /usr/lib64/libnvcuvid.so.430.50
I0312 03:28:05.523422 35333 nvc_info.c:152] selecting /usr/lib64/libcuda.so.430.50
I0312 03:28:05.523778 35333 nvc_info.c:152] selecting /usr/lib64/libGLX_nvidia.so.430.50
I0312 03:28:05.523856 35333 nvc_info.c:152] selecting /usr/lib64/libGLESv2_nvidia.so.430.50
I0312 03:28:05.523924 35333 nvc_info.c:152] selecting /usr/lib64/libGLESv1_CM_nvidia.so.430.50
I0312 03:28:05.523997 35333 nvc_info.c:152] selecting /usr/lib64/libEGL_nvidia.so.430.50
W0312 03:28:05.524107 35333 nvc_info.c:303] missing library libvdpau_nvidia.so
W0312 03:28:05.524135 35333 nvc_info.c:307] missing compat32 library libnvidia-ml.so
W0312 03:28:05.524154 35333 nvc_info.c:307] missing compat32 library libnvidia-cfg.so
W0312 03:28:05.524183 35333 nvc_info.c:307] missing compat32 library libcuda.so
W0312 03:28:05.524206 35333 nvc_info.c:307] missing compat32 library libnvidia-opencl.so
W0312 03:28:05.524228 35333 nvc_info.c:307] missing compat32 library libnvidia-ptxjitcompiler.so
W0312 03:28:05.524246 35333 nvc_info.c:307] missing compat32 library libnvidia-fatbinaryloader.so
W0312 03:28:05.524272 35333 nvc_info.c:307] missing compat32 library libnvidia-compiler.so
W0312 03:28:05.524293 35333 nvc_info.c:307] missing compat32 library libvdpau_nvidia.so
W0312 03:28:05.524316 35333 nvc_info.c:307] missing compat32 library libnvidia-encode.so
W0312 03:28:05.524345 35333 nvc_info.c:307] missing compat32 library libnvidia-opticalflow.so
W0312 03:28:05.524368 35333 nvc_info.c:307] missing compat32 library libnvcuvid.so
W0312 03:28:05.524390 35333 nvc_info.c:307] missing compat32 library libnvidia-eglcore.so
W0312 03:28:05.524413 35333 nvc_info.c:307] missing compat32 library libnvidia-glcore.so
W0312 03:28:05.524439 35333 nvc_info.c:307] missing compat32 library libnvidia-tls.so
W0312 03:28:05.524462 35333 nvc_info.c:307] missing compat32 library libnvidia-glsi.so
W0312 03:28:05.524490 35333 nvc_info.c:307] missing compat32 library libnvidia-fbc.so
W0312 03:28:05.524512 35333 nvc_info.c:307] missing compat32 library libnvidia-ifr.so
W0312 03:28:05.524535 35333 nvc_info.c:307] missing compat32 library libnvidia-rtcore.so
W0312 03:28:05.524558 35333 nvc_info.c:307] missing compat32 library libnvoptix.so
W0312 03:28:05.524581 35333 nvc_info.c:307] missing compat32 library libGLX_nvidia.so
W0312 03:28:05.524608 35333 nvc_info.c:307] missing compat32 library libEGL_nvidia.so
W0312 03:28:05.524629 35333 nvc_info.c:307] missing compat32 library libGLESv2_nvidia.so
W0312 03:28:05.524652 35333 nvc_info.c:307] missing compat32 library libGLESv1_CM_nvidia.so
W0312 03:28:05.524675 35333 nvc_info.c:307] missing compat32 library libnvidia-glvkspirv.so
W0312 03:28:05.524694 35333 nvc_info.c:307] missing compat32 library libnvidia-cbl.so
I0312 03:28:05.525604 35333 nvc_info.c:233] selecting /usr/bin/nvidia-smi
I0312 03:28:05.525656 35333 nvc_info.c:233] selecting /usr/bin/nvidia-debugdump
I0312 03:28:05.525707 35333 nvc_info.c:233] selecting /usr/bin/nvidia-persistenced
I0312 03:28:05.525759 35333 nvc_info.c:233] selecting /usr/bin/nvidia-cuda-mps-control
I0312 03:28:05.525809 35333 nvc_info.c:233] selecting /usr/bin/nvidia-cuda-mps-server
I0312 03:28:05.525871 35333 nvc_info.c:370] listing device /dev/nvidiactl
I0312 03:28:05.525894 35333 nvc_info.c:370] listing device /dev/nvidia-uvm
I0312 03:28:05.525917 35333 nvc_info.c:370] listing device /dev/nvidia-uvm-tools
I0312 03:28:05.525944 35333 nvc_info.c:370] listing device /dev/nvidia-modeset
W0312 03:28:05.526698 35333 nvc_info.c:278] missing ipc /var/run/nvidia-persistenced/socket
W0312 03:28:05.527129 35333 nvc_info.c:278] missing ipc /tmp/nvidia-mps
I0312 03:28:05.527159 35333 nvc_info.c:494] requesting device information with ''
I0312 03:28:05.533475 35333 nvc_info.c:524] listing device /dev/nvidia0 (GPU-76d8aa9c-6b5c-49f7-0764-4c51b5daf712 at 00000000:03:00.0)
NVRM version: 430.50
CUDA version: 10.1

Device Index: 0
Device Minor: 0
Model: Quadro M5000
Brand: Quadro
GPU UUID: GPU-76d8aa9c-6b5c-49f7-0764-4c51b5daf712
Bus Location: 00000000:03:00.0
Architecture: 5.2
I0312 03:28:05.533657 35333 nvc.c:318] shutting down library context
I0312 03:28:05.534330 35335 driver.c:192] terminating driver service
I0312 03:28:05.547237 35333 driver.c:233] driver service terminated successfully

  • Kernel version from uname -a

Linux walrus.ala.int.uts.edu.au 3.10.0-1062.4.1.el7.x86_64 #1 SMP Wed Sep 25 09:42:57 EDT 2019 x86_64 x86_64 x86_64 GNU/Linux

  • Any relevant kernel output lines from dmesg

[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.10.0-1062.4.1.el7.x86_64 (mockbuild@x86-vm-27.build.eng.bos.redhat.com) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) ) #1 SMP Wed Sep 25 09:42:57 EDT 2019
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.10.0-1062.4.1.el7.x86_64 root=/dev/mapper/vg_animal-LogVol01 ro nofb splash=quiet crashkernel=auto rd.lvm.lv=vg_animal/LogVol01 rd.lvm.lv=vg_animal/LogVol00 rhgb quiet LANG=en_US.UTF-8 nouveau.modeset=0 rd.driver.blacklist=nouveau plymouth.ignore-udev
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c9361fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c9362000-0x00000000c9f02fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c9f03000-0x00000000c9f69fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000c9f6a000-0x00000000cac73fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000cac74000-0x00000000cb168fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000cb169000-0x00000000cb169fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000cb16a000-0x00000000cb177fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000cb178000-0x00000000ccffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000cd000000-0x00000000cdffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000202fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.8 present.
[ 0.000000] DMI: Dell Inc. Precision Tower 7810/0KJCC5, BIOS A28 10/11/2018
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x2030000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: write-back
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-E3FFF write-through
[ 0.000000] E4000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000E0000000 mask 3FFFE0000000 uncachable
[ 0.000000] 1 base 0000D0000000 mask 3FFFF0000000 uncachable
[ 0.000000] 2 base 030000000000 mask 3F8000000000 uncachable
[ 0.000000] 3 base 0000CE000000 mask 3FFFFE000000 uncachable
[ 0.000000] 4 base 0000E0000000 mask 3FFFF0000000 write-through
[ 0.000000] 5 base 0000F0000000 mask 3FFFFE000000 write-through
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WP UC- UC
[ 0.000000] e820: last_pfn = 0xcd000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fdd80-0x000fdd8f] mapped at [ffffffffff200d80]
[ 0.000000] Base memory trampoline at [ffff9c92c0098000] 98000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] BRK [0x1045870000, 0x1045870fff] PGTABLE
[ 0.000000] BRK [0x1045871000, 0x1045871fff] PGTABLE
[ 0.000000] BRK [0x1045872000, 0x1045872fff] PGTABLE
[ 0.000000] BRK [0x1045873000, 0x1045873fff] PGTABLE
[ 0.000000] BRK [0x1045874000, 0x1045874fff] PGTABLE
[ 0.000000] BRK [0x1045875000, 0x1045875fff] PGTABLE
[ 0.000000] BRK [0x1045876000, 0x1045876fff] PGTABLE
[ 0.000000] BRK [0x1045877000, 0x1045877fff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x31081000-0x34838fff]
[ 0.000000] Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 00000000000f0540 00024 (v02 DELL )
[ 0.000000] ACPI: XSDT 00000000c9f280a0 000BC (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 00000000c9f53f10 0010C (v05 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 00000000c9f281e8 2BD21 (v02 DELL CBX3 01072009 INTL 20091013)
[ 0.000000] ACPI: FACS 00000000cac72f80 00040
[ 0.000000] ACPI: APIC 00000000c9f54020 00374 (v03 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 00000000c9f54398 00044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: FIDT 00000000c9f543e0 0009C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 00000000c9f54480 0003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.000000] ACPI: UEFI 00000000c9f544c0 00042 (v01 INTEL EDK2 00000002 01000013)
[ 0.000000] ACPI: HPET 00000000c9f54508 00038 (v01 DELL CBX3 00000001 INTL 20091013)
[ 0.000000] ACPI: MSCT 00000000c9f54540 00090 (v01 DELL CBX3 00000001 INTL 20091013)
[ 0.000000] ACPI: SLIT 00000000c9f545d0 00030 (v01 DELL CBX3 00000001 INTL 20091013)
[ 0.000000] ACPI: SRAT 00000000c9f54600 01158 (v03 DELL CBX3 00000001 INTL 20091013)
[ 0.000000] ACPI: SRAT 00000000c9f55758 02358 (v03 DELL CBX3 00000002 INTL 20091013)
[ 0.000000] ACPI: WDDT 00000000c9f57ab0 00040 (v01 DELL CBX3 00000000 INTL 20091013)
[ 0.000000] ACPI: SSDT 00000000c9f57af0 11CD4 (v01 DELL PmMgt 00000001 INTL 20120913)
[ 0.000000] ACPI: NITR 00000000c9f697c8 00071 (v02 DELL CBX3 00000001 INTL 20091013)
[ 0.000000] ACPI: SLIC 00000000c9f69840 00176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.000000] ACPI: MSDM 00000000c9f699b8 00055 (v03 DELL CBX3 06222004 AMI 00010013)
[ 0.000000] ACPI: TPM2 00000000c9f69a10 00034 (v03 Tpm2Tabl 00000001 AMI 00000000)
[ 0.000000] ACPI: DMAR 00000000c9f69a48 00120 (v01 DELL CBX3 00000001 INTL 20091013)
[ 0.000000] ACPI: ASF! 00000000c9f69b68 000A0 (v32 INTEL HCG 00000001 TFSM 000F4240)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[ 0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2c -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[ 0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[ 0.000000] SRAT: PXM 0 -> APIC 0x1d -> Node 0
[ 0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x2d -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x3b -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x3d -> Node 1
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x00000000-0xcfffffff]
[ 0.000000] SRAT: Node 0 PXM 0 [mem 0x100000000-0x102fffffff]
[ 0.000000] SRAT: Node 1 PXM 1 [mem 0x1030000000-0x202fffffff]
[ 0.000000] NUMA: Initialized distance table, cnt=2
[ 0.000000] NUMA: Node 0 [mem 0x00000000-0xcfffffff] + [mem 0x100000000-0x102fffffff] -> [mem 0x00000000-0x102fffffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x102ffd9000-0x102fffffff]
[ 0.000000] NODE_DATA(1) allocated [mem 0x202ffd8000-0x202fffefff]
[ 0.000000] Reserving 168MB of memory at 608MB for crashkernel (System RAM: 130993MB)
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x202fffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
[ 0.000000] node 0: [mem 0x00100000-0xc9361fff]
[ 0.000000] node 0: [mem 0xcb169000-0xcb169fff]
[ 0.000000] node 0: [mem 0xcb178000-0xccffffff]
[ 0.000000] node 0: [mem 0x100000000-0x102fffffff]
[ 0.000000] node 1: [mem 0x1030000000-0x202fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x00001000-0x102fffffff]
[ 0.000000] On node 0 totalpages: 16757128
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3997 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 12936 pages used for memmap
[ 0.000000] DMA32 zone: 827883 pages, LIFO batch:31
[ 0.000000] Normal zone: 248832 pages used for memmap
[ 0.000000] Normal zone: 15925248 pages, LIFO batch:31
[ 0.000000] Initmem setup node 1 [mem 0x1030000000-0x202fffffff]
[ 0.000000] On node 1 totalpages: 16777216
[ 0.000000] Normal zone: 262144 pages used for memmap
[ 0.000000] Normal zone: 16777216 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x10] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0x12] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0x14] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0x16] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0x18] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x1a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x1c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0x20] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x22] lapic_id[0x22] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x24] lapic_id[0x24] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x26] lapic_id[0x26] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x28] lapic_id[0x28] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x2a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x2c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x30] lapic_id[0x30] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x32] lapic_id[0x32] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x34] lapic_id[0x34] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x36] lapic_id[0x36] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x38] lapic_id[0x38] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x3a] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x3c] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0x11] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0x13] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0x15] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0x17] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0x19] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x1b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x1d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x21] lapic_id[0x21] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x23] lapic_id[0x23] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x25] lapic_id[0x25] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x27] lapic_id[0x27] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x29] lapic_id[0x29] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x2b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x2d] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x31] lapic_id[0x31] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x33] lapic_id[0x33] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x35] lapic_id[0x35] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x37] lapic_id[0x37] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x39] lapic_id[0x39] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x3b] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x3d] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3c] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x3d] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
[ 0.000000] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
[ 0.000000] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.000000] smpboot: Allowing 56 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xc9362000-0xc9f02fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xc9f03000-0xc9f69fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xc9f6a000-0xcac73fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcac74000-0xcb168fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcb16a000-0xcb177fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcd000000-0xcdffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xce000000-0xcfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.000000] e820: [mem 0xe0000000-0xfed1bfff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:5120 nr_cpumask_bits:56 nr_cpu_ids:56 nr_node_ids:2
[ 0.000000] PERCPU: Embedded 38 pages/cpu @ffff9ca2af600000 s118784 r8192 d28672 u262144
[ 0.000000] pcpu-alloc: s118784 r8192 d28672 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 28 29
[ 0.000000] pcpu-alloc: [0] 30 31 32 33 34 35 36 37 [0] 38 39 40 41 -- -- -- --
[ 0.000000] pcpu-alloc: [1] 14 15 16 17 18 19 20 21 [1] 22 23 24 25 26 27 42 43
[ 0.000000] pcpu-alloc: [1] 44 45 46 47 48 49 50 51 [1] 52 53 54 55 -- -- -- --
[ 0.000000] Built 2 zonelists in Zone order, mobility grouping on. Total pages: 33010347
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.10.0-1062.4.1.el7.x86_64 root=/dev/mapper/vg_animal-LogVol01 ro nofb splash=quiet crashkernel=auto rd.lvm.lv=vg_animal/LogVol01 rd.lvm.lv=vg_animal/LogVol00 rhgb quiet LANG=en_US.UTF-8 nouveau.modeset=0 rd.driver.blacklist=nouveau plymouth.ignore-udev
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[ 0.000000] Memory: 7208156k/135004160k available (7756k kernel code, 866784k absent, 2420552k reserved, 5971k data, 1984k init)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=56, Nodes=2
[ 0.000000] x86/pti: Unmapping kernel while in userspace
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=56.
[ 0.000000] NR_IRQS:327936 nr_irqs:1688 0
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 536870912 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2394.569 MHz processor
[ 0.000000] [Firmware Bug]: TSC ADJUST: CPU0: -879472841472 force to 0
[ 367.278185] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.13 BogoMIPS (lpj=2394569)
[ 367.278187] pid_max: default: 57344 minimum: 448
[ 367.278309] Security Framework initialized
[ 367.278318] SELinux: Initializing.
[ 367.278354] SELinux: Starting in permissive mode
[ 367.278355] Yama: becoming mindful.
[ 367.287652] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes)
[ 367.313797] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[ 367.324911] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 367.325058] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 367.326009] Initializing cgroup subsys memory
[ 367.326024] Initializing cgroup subsys devices
[ 367.326026] Initializing cgroup subsys freezer
[ 367.326028] Initializing cgroup subsys net_cls
[ 367.326030] Initializing cgroup subsys blkio
[ 367.326031] Initializing cgroup subsys perf_event
[ 367.326034] Initializing cgroup subsys hugetlb
[ 367.326036] Initializing cgroup subsys pids
[ 367.326038] Initializing cgroup subsys net_prio
[ 367.326102] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 367.326103] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 367.326886] CPU0: Thermal monitoring enabled (TM1)
[ 367.326939] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 367.326940] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
[ 367.326941] tlb_flushall_shift: 6
[ 367.326977] FEATURE SPEC_CTRL Present
[ 367.326978] FEATURE IBPB_SUPPORT Present
[ 367.326980] Spectre V1 : Mitigation: Load fences, usercopy/swapgs barriers and __user pointer sanitization
[ 367.326982] Spectre V2 : Enabling Indirect Branch Prediction Barrier
[ 367.327086] Spectre V2 : Mitigation: Full retpoline
[ 367.327099] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 367.327118] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 367.327659] Freeing SMP alternatives: 28k freed
[ 367.329807] ACPI: Core revision 20130517
[ 367.350017] ACPI: All ACPI Tables successfully acquired
[ 367.374894] ftrace: allocating 29549 entries in 116 pages
[ 367.402700] DMAR: Host address width 46
[ 367.402703] DMAR: DRHD base: 0x000000f7ffc000 flags: 0x0
[ 367.402711] DMAR: dmar0: reg_base_addr f7ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 367.402712] DMAR: DRHD base: 0x000000f3ffd000 flags: 0x0
[ 367.402717] DMAR: dmar1: reg_base_addr f3ffd000 ver 1:0 cap 8d2008c10ef0466 ecap f0205b
[ 367.402719] DMAR: DRHD base: 0x000000f3ffc000 flags: 0x1
[ 367.402723] DMAR: dmar2: reg_base_addr f3ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 367.402725] DMAR: RMRR base: 0x000000cafd8000 end: 0x000000cafe6fff
[ 367.402727] DMAR: ATSR flags: 0x0
[ 367.402729] DMAR: RHSA base: 0x000000f3ffc000 proximity domain: 0x0
[ 367.402730] DMAR: RHSA base: 0x000000f7ffc000 proximity domain: 0x1
[ 367.402733] DMAR-IR: IOAPIC id 3 under DRHD base 0xf7ffc000 IOMMU 0
[ 367.402734] DMAR-IR: IOAPIC id 1 under DRHD base 0xf3ffc000 IOMMU 2
[ 367.402736] DMAR-IR: IOAPIC id 2 under DRHD base 0xf3ffc000 IOMMU 2
[ 367.402737] DMAR-IR: HPET id 0 under DRHD base 0xf3ffc000
[ 367.402739] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[ 367.402740] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[ 367.403660] DMAR-IR: Enabled IRQ remapping in xapic mode
[ 367.403662] IRQ remapping doesn't support X2APIC mode, disable x2apic.
[ 367.403666] Switched APIC routing to physical flat.
[ 367.404356] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 367.414360] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GHz (fam: 06, model: 4f, stepping: 01)
[ 367.414366] TSC deadline timer enabled
[ 367.414429] Performance Events: PEBS fmt2+, Broadwell events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 367.414452] ... version: 3
[ 367.414453] ... bit width: 48
[ 367.414454] ... generic registers: 4
[ 367.414456] ... value mask: 0000ffffffffffff
[ 367.414457] ... max period: 00007fffffffffff
[ 367.414458] ... fixed-purpose events: 3
[ 367.414459] ... event mask: 000000070000000f
[ 0.129390] [Firmware Bug]: TSC ADJUST differs within socket(s), fixing all errors
[ 367.422184] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 367.416362] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 OK
[ 0.248889] TSC ADJUST compensate: CPU14 observed 879483909292 warp. Adjust: -164
[ 367.448743] smpboot: Booting Node 1, Processors #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 OK
[ 367.582512] smpboot: Booting Node 0, Processors #28
[ 367.585105] 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.
[ 367.585203] #29 #30 #31 #32 #33 #34 #35 #36 #37 #38 #39 #40 #41 OK
[ 367.616450] smpboot: Booting Node 1, Processors #42 #43 #44 #45 #46 #47 #48 #49 #50 #51 #52 #53 #54 #55 OK
[ 367.649579] Brought up 56 CPUs
[ 367.649581] smpboot: Max logical packages: 2
[ 367.649584] smpboot: Total of 56 processors activated (268527.00 BogoMIPS)
[ 368.086428] node 0 initialised, 15137628 pages in 274ms
[ 368.100880] node 1 initialised, 15989539 pages in 288ms
[ 368.101216] devtmpfs: initialized
[ 368.101296] x86/mm: Memory block size: 256MB
[ 368.108754] EVM: security.selinux
[ 368.108755] EVM: security.ima
[ 368.108756] EVM: security.capability
[ 368.108864] PM: Registering ACPI NVS region [mem 0xc9f6a000-0xcac73fff] (13672448 bytes)
[ 368.110583] atomic64 test passed for x86-64 platform with CX8 and with SSE
[ 368.110587] pinctrl core: initialized pinctrl subsystem
[ 368.110653] RTC time: 1:04:14, date: 03/12/20
[ 368.110779] NET: Registered protocol family 16
[ 368.111156] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 368.111158] ACPI: bus type PCI registered
[ 368.111161] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 368.111261] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[ 368.111264] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved in E820
[ 368.111275] PCI: Using configuration type 1 for base access
[ 368.111286] dmi type 0xB1 record - unknown flag
[ 368.122576] ACPI: Added _OSI(Module Device)
[ 368.122579] ACPI: Added _OSI(Processor Device)
[ 368.122580] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 368.122581] ACPI: Added _OSI(Processor Aggregator Device)
[ 368.122583] ACPI: Added _OSI(Linux-Dell-Video)
[ 368.128674] ACPI: EC: Look up EC in DSDT
[ 368.145736] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 368.153319] ACPI: Interpreter enabled
[ 368.153335] ACPI: (supports S0 S3 S4 S5)
[ 368.153337] ACPI: Using IOAPIC for interrupt routing
[ 368.153355] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 368.153384] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 368.176467] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[ 368.176472] acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 368.178399] acpi PNP0A03:02: _OSC: platform does not support [SHPCHotplug]
[ 368.179151] acpi PNP0A03:02: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 368.179153] acpi PNP0A03:02: FADT indicates ASPM is unsupported, using BIOS configuration
[ 368.179196] PCI host bridge to bus 0000:ff
[ 368.179199] pci_bus 0000:ff: root bus resource [bus ff]
[ 368.179211] pci 0000:ff:08.0: [8086:6f80] type 00 class 0x088000
[ 368.179273] pci 0000:ff:08.2: [8086:6f32] type 00 class 0x110100
[ 368.179325] pci 0000:ff:08.3: [8086:6f83] type 00 class 0x088000
[ 368.179390] pci 0000:ff:09.0: [8086:6f90] type 00 class 0x088000
[ 368.179439] pci 0000:ff:09.2: [8086:6f33] type 00 class 0x110100
[ 368.179488] pci 0000:ff:09.3: [8086:6f93] type 00 class 0x088000
[ 368.179550] pci 0000:ff:0b.0: [8086:6f81] type 00 class 0x088000
[ 368.179598] pci 0000:ff:0b.1: [8086:6f36] type 00 class 0x110100
[ 368.179643] pci 0000:ff:0b.2: [8086:6f37] type 00 class 0x110100
[ 368.179689] pci 0000:ff:0b.3: [8086:6f76] type 00 class 0x088000
[ 368.179741] pci 0000:ff:0c.0: [8086:6fe0] type 00 class 0x088000
[ 368.179787] pci 0000:ff:0c.1: [8086:6fe1] type 00 class 0x088000
[ 368.179832] pci 0000:ff:0c.2: [8086:6fe2] type 00 class 0x088000
[ 368.179878] pci 0000:ff:0c.3: [8086:6fe3] type 00 class 0x088000
[ 368.179926] pci 0000:ff:0c.4: [8086:6fe4] type 00 class 0x088000
[ 368.179972] pci 0000:ff:0c.5: [8086:6fe5] type 00 class 0x088000
[ 368.180019] pci 0000:ff:0c.6: [8086:6fe6] type 00 class 0x088000
[ 368.180065] pci 0000:ff:0c.7: [8086:6fe7] type 00 class 0x088000
[ 368.180111] pci 0000:ff:0d.0: [8086:6fe8] type 00 class 0x088000
[ 368.180156] pci 0000:ff:0d.1: [8086:6fe9] type 00 class 0x088000
[ 368.180202] pci 0000:ff:0d.2: [8086:6fea] type 00 class 0x088000
[ 368.180246] pci 0000:ff:0d.3: [8086:6feb] type 00 class 0x088000
[ 368.180292] pci 0000:ff:0d.4: [8086:6fec] type 00 class 0x088000
[ 368.180338] pci 0000:ff:0d.5: [8086:6fed] type 00 class 0x088000
[ 368.180386] pci 0000:ff:0f.0: [8086:6ff8] type 00 class 0x088000
[ 368.180430] pci 0000:ff:0f.1: [8086:6ff9] type 00 class 0x088000
[ 368.180476] pci 0000:ff:0f.2: [8086:6ffa] type 00 class 0x088000
[ 368.180521] pci 0000:ff:0f.3: [8086:6ffb] type 00 class 0x088000
[ 368.180567] pci 0000:ff:0f.4: [8086:6ffc] type 00 class 0x088000
[ 368.180614] pci 0000:ff:0f.5: [8086:6ffd] type 00 class 0x088000
[ 368.180660] pci 0000:ff:0f.6: [8086:6ffe] type 00 class 0x088000
[ 368.180711] pci 0000:ff:10.0: [8086:6f1d] type 00 class 0x088000
[ 368.180759] pci 0000:ff:10.1: [8086:6f34] type 00 class 0x110100
[ 368.180807] pci 0000:ff:10.5: [8086:6f1e] type 00 class 0x088000
[ 368.180852] pci 0000:ff:10.6: [8086:6f7d] type 00 class 0x110100
[ 368.180897] pci 0000:ff:10.7: [8086:6f1f] type 00 class 0x088000
[ 368.180944] pci 0000:ff:12.0: [8086:6fa0] type 00 class 0x088000
[ 368.180977] pci 0000:ff:12.1: [8086:6f30] type 00 class 0x110100
[ 368.181027] pci 0000:ff:12.4: [8086:6f60] type 00 class 0x088000
[ 368.181064] pci 0000:ff:12.5: [8086:6f38] type 00 class 0x110100
[ 368.181117] pci 0000:ff:13.0: [8086:6fa8] type 00 class 0x088000
[ 368.181216] pci 0000:ff:13.1: [8086:6f71] type 00 class 0x088000
[ 368.181305] pci 0000:ff:13.2: [8086:6faa] type 00 class 0x088000
[ 368.181393] pci 0000:ff:13.3: [8086:6fab] type 00 class 0x088000
[ 368.181481] pci 0000:ff:13.6: [8086:6fae] type 00 class 0x088000
[ 368.181551] pci 0000:ff:13.7: [8086:6faf] type 00 class 0x088000
[ 368.181625] pci 0000:ff:14.0: [8086:6fb0] type 00 class 0x088000
[ 368.181709] pci 0000:ff:14.1: [8086:6fb1] type 00 class 0x088000
[ 368.181772] pci 0000:ff:14.2: [8086:6fb2] type 00 class 0x088000
[ 368.181834] pci 0000:ff:14.3: [8086:6fb3] type 00 class 0x088000
[ 368.181898] pci 0000:ff:14.4: [8086:6fbc] type 00 class 0x088000
[ 368.181947] pci 0000:ff:14.5: [8086:6fbd] type 00 class 0x088000
[ 368.181996] pci 0000:ff:14.6: [8086:6fbe] type 00 class 0x088000
[ 368.182045] pci 0000:ff:14.7: [8086:6fbf] type 00 class 0x088000
[ 368.182097] pci 0000:ff:16.0: [8086:6f68] type 00 class 0x088000
[ 368.182187] pci 0000:ff:16.1: [8086:6f79] type 00 class 0x088000
[ 368.182276] pci 0000:ff:16.2: [8086:6f6a] type 00 class 0x088000
[ 368.182365] pci 0000:ff:16.3: [8086:6f6b] type 00 class 0x088000
[ 368.182454] pci 0000:ff:16.6: [8086:6f6e] type 00 class 0x088000
[ 368.182527] pci 0000:ff:16.7: [8086:6f6f] type 00 class 0x088000
[ 368.182603] pci 0000:ff:17.0: [8086:6fd0] type 00 class 0x088000
[ 368.182695] pci 0000:ff:17.1: [8086:6fd1] type 00 class 0x088000
[ 368.182762] pci 0000:ff:17.2: [8086:6fd2] type 00 class 0x088000
[ 368.182827] pci 0000:ff:17.3: [8086:6fd3] type 00 class 0x088000
[ 368.182891] pci 0000:ff:17.4: [8086:6fb8] type 00 class 0x088000
[ 368.182941] pci 0000:ff:17.5: [8086:6fb9] type 00 class 0x088000
[ 368.182992] pci 0000:ff:17.6: [8086:6fba] type 00 class 0x088000
[ 368.183042] pci 0000:ff:17.7: [8086:6fbb] type 00 class 0x088000
[ 368.183102] pci 0000:ff:1e.0: [8086:6f98] type 00 class 0x088000
[ 368.183150] pci 0000:ff:1e.1: [8086:6f99] type 00 class 0x088000
[ 368.183199] pci 0000:ff:1e.2: [8086:6f9a] type 00 class 0x088000
[ 368.183249] pci 0000:ff:1e.3: [8086:6fc0] type 00 class 0x088000
[ 368.183288] pci 0000:ff:1e.4: [8086:6f9c] type 00 class 0x088000
[ 368.183343] pci 0000:ff:1f.0: [8086:6f88] type 00 class 0x088000
[ 368.183392] pci 0000:ff:1f.2: [8086:6f8a] type 00 class 0x088000
[ 368.183500] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus df])
[ 368.183503] acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 368.183957] acpi PNP0A03:03: _OSC: platform does not support [SHPCHotplug]
[ 368.184713] acpi PNP0A03:03: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 368.184715] acpi PNP0A03:03: FADT indicates ASPM is unsupported, using BIOS configuration
[ 368.184754] PCI host bridge to bus 0000:df
[ 368.184757] pci_bus 0000:df: root bus resource [bus df]
[ 368.184766] pci 0000:df:08.0: [8086:6f80] type 00 class 0x088000
[ 368.184814] pci 0000:df:08.2: [8086:6f32] type 00 class 0x110100
[ 368.184861] pci 0000:df:08.3: [8086:6f83] type 00 class 0x088000
[ 368.184920] pci 0000:df:09.0: [8086:6f90] type 00 class 0x088000
[ 368.184967] pci 0000:df:09.2: [8086:6f33] type 00 class 0x110100
[ 368.185013] pci 0000:df:09.3: [8086:6f93] type 00 class 0x088000
[ 368.185071] pci 0000:df:0b.0: [8086:6f81] type 00 class 0x088000
[ 368.185113] pci 0000:df:0b.1: [8086:6f36] type 00 class 0x110100
[ 368.185157] pci 0000:df:0b.2: [8086:6f37] type 00 class 0x110100
[ 368.185200] pci 0000:df:0b.3: [8086:6f76] type 00 class 0x088000
[ 368.185244] pci 0000:df:0c.0: [8086:6fe0] type 00 class 0x088000
[ 368.185287] pci 0000:df:0c.1: [8086:6fe1] type 00 class 0x088000
[ 368.185331] pci 0000:df:0c.2: [8086:6fe2] type 00 class 0x088000
[ 368.185373] pci 0000:df:0c.3: [8086:6fe3] type 00 class 0x088000
[ 368.185416] pci 0000:df:0c.4: [8086:6fe4] type 00 class 0x088000
[ 368.185459] pci 0000:df:0c.5: [8086:6fe5] type 00 class 0x088000
[ 368.185502] pci 0000:df:0c.6: [8086:6fe6] type 00 class 0x088000
[ 368.185544] pci 0000:df:0c.7: [8086:6fe7] type 00 class 0x088000
[ 368.185587] pci 0000:df:0d.0: [8086:6fe8] type 00 class 0x088000
[ 368.185629] pci 0000:df:0d.1: [8086:6fe9] type 00 class 0x088000
[ 368.185673] pci 0000:df:0d.2: [8086:6fea] type 00 class 0x088000
[ 368.185718] pci 0000:df:0d.3: [8086:6feb] type 00 class 0x088000
[ 368.185763] pci 0000:df:0d.4: [8086:6fec] type 00 class 0x088000
[ 368.185806] pci 0000:df:0d.5: [8086:6fed] type 00 class 0x088000
[ 368.185850] pci 0000:df:0f.0: [8086:6ff8] type 00 class 0x088000
[ 368.185894] pci 0000:df:0f.1: [8086:6ff9] type 00 class 0x088000
[ 368.185940] pci 0000:df:0f.2: [8086:6ffa] type 00 class 0x088000
[ 368.185983] pci 0000:df:0f.3: [8086:6ffb] type 00 class 0x088000
[ 368.186027] pci 0000:df:0f.4: [8086:6ffc] type 00 class 0x088000
[ 368.186070] pci 0000:df:0f.5: [8086:6ffd] type 00 class 0x088000
[ 368.186113] pci 0000:df:0f.6: [8086:6ffe] type 00 class 0x088000
[ 368.186157] pci 0000:df:10.0: [8086:6f1d] type 00 class 0x088000
[ 368.186200] pci 0000:df:10.1: [8086:6f34] type 00 class 0x110100
[ 368.186245] pci 0000:df:10.5: [8086:6f1e] type 00 class 0x088000
[ 368.186288] pci 0000:df:10.6: [8086:6f7d] type 00 class 0x110100
[ 368.186330] pci 0000:df:10.7: [8086:6f1f] type 00 class 0x088000
[ 368.186375] pci 0000:df:12.0: [8086:6fa0] type 00 class 0x088000
[ 368.186407] pci 0000:df:12.1: [8086:6f30] type 00 class 0x110100
[ 368.186454] pci 0000:df:12.4: [8086:6f60] type 00 class 0x088000
[ 368.186486] pci 0000:df:12.5: [8086:6f38] type 00 class 0x110100
[ 368.186535] pci 0000:df:13.0: [8086:6fa8] type 00 class 0x088000
[ 368.186618] pci 0000:df:13.1: [8086:6f71] type 00 class 0x088000
[ 368.186701] pci 0000:df:13.2: [8086:6faa] type 00 class 0x088000
[ 368.186763] pci 0000:df:13.3: [8086:6fab] type 00 class 0x088000
[ 368.186821] pci 0000:df:13.6: [8086:6fae] type 00 class 0x088000
[ 368.186866] pci 0000:df:13.7: [8086:6faf] type 00 class 0x088000
[ 368.186914] pci 0000:df:14.0: [8086:6fb0] type 00 class 0x088000
[ 368.186972] pci 0000:df:14.1: [8086:6fb1] type 00 class 0x088000
[ 368.187029] pci 0000:df:14.2: [8086:6fb2] type 00 class 0x088000
[ 368.187088] pci 0000:df:14.3: [8086:6fb3] type 00 class 0x088000
[ 368.187144] pci 0000:df:14.4: [8086:6fbc] type 00 class 0x088000
[ 368.187190] pci 0000:df:14.5: [8086:6fbd] type 00 class 0x088000
[ 368.187237] pci 0000:df:14.6: [8086:6fbe] type 00 class 0x088000
[ 368.187283] pci 0000:df:14.7: [8086:6fbf] type 00 class 0x088000
[ 368.187333] pci 0000:df:16.0: [8086:6f68] type 00 class 0x088000
[ 368.187417] pci 0000:df:16.1: [8086:6f79] type 00 class 0x088000
[ 368.187499] pci 0000:df:16.2: [8086:6f6a] type 00 class 0x088000
[ 368.187582] pci 0000:df:16.3: [8086:6f6b] type 00 class 0x088000
[ 368.187665] pci 0000:df:16.6: [8086:6f6e] type 00 class 0x088000
[ 368.187723] pci 0000:df:16.7: [8086:6f6f] type 00 class 0x088000
[ 368.187772] pci 0000:df:17.0: [8086:6fd0] type 00 class 0x088000
[ 368.187861] pci 0000:df:17.1: [8086:6fd1] type 00 class 0x088000
[ 368.187945] pci 0000:df:17.2: [8086:6fd2] type 00 class 0x088000
[ 368.188028] pci 0000:df:17.3: [8086:6fd3] type 00 class 0x088000
[ 368.188110] pci 0000:df:17.4: [8086:6fb8] type 00 class 0x088000
[ 368.188179] pci 0000:df:17.5: [8086:6fb9] type 00 class 0x088000
[ 368.188248] pci 0000:df:17.6: [8086:6fba] type 00 class 0x088000
[ 368.188319] pci 0000:df:17.7: [8086:6fbb] type 00 class 0x088000
[ 368.188399] pci 0000:df:1e.0: [8086:6f98] type 00 class 0x088000
[ 368.188468] pci 0000:df:1e.1: [8086:6f99] type 00 class 0x088000
[ 368.188536] pci 0000:df:1e.2: [8086:6f9a] type 00 class 0x088000
[ 368.188605] pci 0000:df:1e.3: [8086:6fc0] type 00 class 0x088000
[ 368.188661] pci 0000:df:1e.4: [8086:6f9c] type 00 class 0x088000
[ 368.188727] pci 0000:df:1f.0: [8086:6f88] type 00 class 0x088000
[ 368.188776] pci 0000:df:1f.2: [8086:6f8a] type 00 class 0x088000
[ 368.191846] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-de])
[ 368.191851] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 368.192043] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME AER PCIeCapability]
[ 368.192046] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[ 368.192048] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability]
[ 368.192050] acpi PNP0A08:00: _OSC: platform willing to grant []
[ 368.192053] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[ 368.192307] PCI host bridge to bus 0000:00
[ 368.192310] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 368.192312] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 368.192314] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 368.192317] pci_bus 0000:00: root bus resource [io 0x1000-0x9fff window]
[ 368.192319] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 368.192321] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf3ffbfff window]
[ 368.192323] pci_bus 0000:00: root bus resource [bus 00-de]
[ 368.192332] pci 0000:00:00.0: [8086:6f00] type 00 class 0x060000
[ 368.192460] pci 0000:00:01.0: [8086:6f02] type 01 class 0x060400
[ 368.192509] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 368.192590] pci 0000:00:01.0: System wakeup disabled by ACPI
[ 368.192631] pci 0000:00:01.1: [8086:6f03] type 01 class 0x060400
[ 368.192679] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 368.192760] pci 0000:00:01.1: System wakeup disabled by ACPI
[ 368.192801] pci 0000:00:02.0: [8086:6f04] type 01 class 0x060400
[ 368.192848] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[ 368.192925] pci 0000:00:02.0: System wakeup disabled by ACPI
[ 368.192960] pci 0000:00:03.0: [8086:6f08] type 01 class 0x060400
[ 368.193008] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 368.193083] pci 0000:00:03.0: System wakeup disabled by ACPI
[ 368.193120] pci 0000:00:03.1: [8086:6f09] type 01 class 0x060400
[ 368.193167] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[ 368.193243] pci 0000:00:03.1: System wakeup disabled by ACPI
[ 368.193278] pci 0000:00:03.2: [8086:6f0a] type 01 class 0x060400
[ 368.193325] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[ 368.193401] pci 0000:00:03.2: System wakeup disabled by ACPI
[ 368.193437] pci 0000:00:03.3: [8086:6f0b] type 01 class 0x060400
[ 368.193484] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[ 368.193561] pci 0000:00:03.3: System wakeup disabled by ACPI
[ 368.193598] pci 0000:00:05.0: [8086:6f28] type 00 class 0x088000
[ 368.193703] pci 0000:00:05.1: [8086:6f29] type 00 class 0x088000
[ 368.193825] pci 0000:00:05.2: [8086:6f2a] type 00 class 0x088000
[ 368.193930] pci 0000:00:05.4: [8086:6f2c] type 00 class 0x080020
[ 368.193938] pci 0000:00:05.4: reg 0x10: [mem 0xf323e000-0xf323efff]
[ 368.194060] pci 0000:00:11.0: [8086:8d7c] type 00 class 0xff0000
[ 368.194244] pci 0000:00:11.4: [8086:8d62] type 00 class 0x010601
[ 368.194260] pci 0000:00:11.4: reg 0x10: [io 0x9130-0x9137]
[ 368.194268] pci 0000:00:11.4: reg 0x14: [io 0x9120-0x9123]
[ 368.194277] pci 0000:00:11.4: reg 0x18: [io 0x9110-0x9117]
[ 368.194285] pci 0000:00:11.4: reg 0x1c: [io 0x9100-0x9103]
[ 368.194294] pci 0000:00:11.4: reg 0x20: [io 0x9040-0x905f]
[ 368.194302] pci 0000:00:11.4: reg 0x24: [mem 0xf323d000-0xf323d7ff]
[ 368.194343] pci 0000:00:11.4: PME# supported from D3hot
[ 368.194436] pci 0000:00:14.0: [8086:8d31] type 00 class 0x0c0330
[ 368.194453] pci 0000:00:14.0: reg 0x10: [mem 0xf3220000-0xf322ffff 64bit]
[ 368.194511] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 368.194576] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 368.194612] pci 0000:00:16.0: [8086:8d3a] type 00 class 0x078000
[ 368.194630] pci 0000:00:16.0: reg 0x10: [mem 0xf323c000-0xf323c00f 64bit]
[ 368.194691] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 368.194790] pci 0000:00:19.0: [8086:153a] type 00 class 0x020000
[ 368.194805] pci 0000:00:19.0: reg 0x10: [mem 0xf3200000-0xf321ffff]
[ 368.194813] pci 0000:00:19.0: reg 0x14: [mem 0xf3239000-0xf3239fff]
[ 368.194821] pci 0000:00:19.0: reg 0x18: [io 0x9020-0x903f]
[ 368.194877] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 368.194933] pci 0000:00:19.0: System wakeup disabled by ACPI
[ 368.194970] pci 0000:00:1a.0: [8086:8d2d] type 00 class 0x0c0320
[ 368.194987] pci 0000:00:1a.0: reg 0x10: [mem 0xf3238000-0xf32383ff]
[ 368.195068] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 368.195135] pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 368.195172] pci 0000:00:1b.0: [8086:8d20] type 00 class 0x040300
[ 368.195189] pci 0000:00:1b.0: reg 0x10: [mem 0xf3230000-0xf3233fff 64bit]
[ 368.195256] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 368.195343] pci 0000:00:1c.0: [8086:8d10] type 01 class 0x060400
[ 368.195408] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 368.195467] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 368.195505] pci 0000:00:1c.1: [8086:8d12] type 01 class 0x060400
[ 368.195569] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 368.195629] pci 0000:00:1c.1: System wakeup disabled by ACPI
[ 368.195674] pci 0000:00:1d.0: [8086:8d26] type 00 class 0x0c0320
[ 368.195691] pci 0000:00:1d.0: reg 0x10: [mem 0xf3237000-0xf32373ff]
[ 368.195774] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 368.195841] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 368.195878] pci 0000:00:1f.0: [8086:8d44] type 00 class 0x060100
[ 368.196054] pci 0000:00:1f.2: [8086:8d02] type 00 class 0x010601
[ 368.196068] pci 0000:00:1f.2: reg 0x10: [io 0x9090-0x9097]
[ 368.196075] pci 0000:00:1f.2: reg 0x14: [io 0x9080-0x9083]
[ 368.196083] pci 0000:00:1f.2: reg 0x18: [io 0x9070-0x9077]
[ 368.196090] pci 0000:00:1f.2: reg 0x1c: [io 0x9060-0x9063]
[ 368.196097] pci 0000:00:1f.2: reg 0x20: [io 0x9000-0x901f]
[ 368.196105] pci 0000:00:1f.2: reg 0x24: [mem 0xf3236000-0xf32367ff]
[ 368.196140] pci 0000:00:1f.2: PME# supported from D3hot
[ 368.196226] pci 0000:00:1f.3: [8086:8d22] type 00 class 0x0c0500
[ 368.196240] pci 0000:00:1f.3: reg 0x10: [mem 0xf3235000-0xf32350ff 64bit]
[ 368.196260] pci 0000:00:1f.3: reg 0x20: [io 0x0580-0x059f]
[ 368.196483] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 368.196614] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 368.196760] pci 0000:03:00.0: [10de:13f0] type 00 class 0x030000
[ 368.196777] pci 0000:03:00.0: reg 0x10: [mem 0xf2000000-0xf2ffffff]
[ 368.196787] pci 0000:03:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[ 368.196797] pci 0000:03:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[ 368.196805] pci 0000:03:00.0: reg 0x24: [io 0x8000-0x807f]
[ 368.196812] pci 0000:03:00.0: reg 0x30: [mem 0xf3000000-0xf307ffff pref]
[ 368.196888] pci 0000:03:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x16 link at 0000:00:02.0 (capable of 126.016 Gb/s with 8 GT/s x16 link)
[ 368.196936] pci 0000:03:00.1: [10de:0fbb] type 00 class 0x040300
[ 368.196947] pci 0000:03:00.1: reg 0x10: [mem 0xf3080000-0xf3083fff]
[ 368.197072] pci 0000:00:02.0: PCI bridge to [bus 03]
[ 368.197075] pci 0000:00:02.0: bridge window [io 0x8000-0x8fff]
[ 368.197078] pci 0000:00:02.0: bridge window [mem 0xf2000000-0xf30fffff]
[ 368.197082] pci 0000:00:02.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 368.197211] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 368.197341] pci 0000:00:03.1: PCI bridge to [bus 05]
[ 368.197473] pci 0000:00:03.2: PCI bridge to [bus 06]
[ 368.197625] pci 0000:07:00.0: [1179:0115] type 00 class 0x010802
[ 368.197639] pci 0000:07:00.0: reg 0x10: [mem 0xf3100000-0xf3103fff 64bit]
[ 368.199749] pci 0000:00:03.3: PCI bridge to [bus 07]
[ 368.199757] pci 0000:00:03.3: bridge window [mem 0xf3100000-0xf31fffff]
[ 368.199814] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 368.199887] pci 0000:09:00.0: [104c:8240] type 01 class 0x060400
[ 368.200020] pci 0000:09:00.0: supports D1 D2
[ 368.201744] pci 0000:00:1c.1: PCI bridge to [bus 09-0a]
[ 368.201908] pci 0000:09:00.0: PCI bridge to [bus 0a]
[ 368.202011] pci_bus 0000:00: on NUMA node 0
[ 368.202501] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus e0-fe])
[ 368.202505] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 368.202672] acpi PNP0A08:01: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME AER PCIeCapability]
[ 368.202675] acpi PNP0A08:01: _OSC: not requesting control; platform does not support [PCIeCapability]
[ 368.202678] acpi PNP0A08:01: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability]
[ 368.202679] acpi PNP0A08:01: _OSC: platform willing to grant []
[ 368.202681] acpi PNP0A08:01: _OSC failed (AE_SUPPORT); disabling ASPM
[ 368.202830] PCI host bridge to bus 0000:e0
[ 368.202833] pci_bus 0000:e0: root bus resource [io 0xa000-0xffff window]
[ 368.202836] pci_bus 0000:e0: root bus resource [mem 0xf4000000-0xf7ffbfff window]
[ 368.202838] pci_bus 0000:e0: root bus resource [bus e0-fe]
[ 368.202849] pci 0000:e0:05.0: [8086:6f28] type 00 class 0x088000
[ 368.202942] pci 0000:e0:05.1: [8086:6f29] type 00 class 0x088000
[ 368.203051] pci 0000:e0:05.2: [8086:6f2a] type 00 class 0x088000
[ 368.203139] pci 0000:e0:05.4: [8086:6f2c] type 00 class 0x080020
[ 368.203147] pci 0000:e0:05.4: reg 0x10: [mem 0xf7f00000-0xf7f00fff]
[ 368.203249] pci_bus 0000:e0: on NUMA node 1
[ 368.203515] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[ 368.203561] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[ 368.203603] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[ 368.203646] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
[ 368.203688] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 10 11 12 14 15)
[ 368.203733] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 368.203776] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[ 368.203820] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[ 368.204080] vgaarb: device added: PCI:0000:03:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 368.204083] vgaarb: loaded
[ 368.204084] vgaarb: bridge control possible 0000:03:00.0
[ 368.204207] SCSI subsystem initialized
[ 368.204237] ACPI: bus type USB registered
[ 368.204254] usbcore: registered new interface driver usbfs
[ 368.204262] usbcore: registered new interface driver hub
[ 368.204414] usbcore: registered new device driver usb
[ 368.204656] EDAC MC: Ver: 3.0.0
[ 368.204955] PCI: Using ACPI for IRQ routing
[ 368.210251] PCI: pci_cache_line_size set to 64 bytes
[ 368.210442] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[ 368.210444] e820: reserve RAM buffer [mem 0xc9362000-0xcbffffff]
[ 368.210446] e820: reserve RAM buffer [mem 0xcb16a000-0xcbffffff]
[ 368.210447] e820: reserve RAM buffer [mem 0xcd000000-0xcfffffff]
[ 368.210601] NetLabel: Initializing
[ 368.210603] NetLabel: domain hash size = 128
[ 368.210604] NetLabel: protocols = UNLABELED CIPSOv4
[ 368.210621] NetLabel: unlabeled traffic allowed by default
[ 368.210781] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 368.210787] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 368.212832] amd_nb: Cannot enumerate AMD northbridges
[ 368.212956] Switched to clocksource hpet
[ 368.218774] pnp: PnP ACPI init
[ 368.218791] ACPI: bus type PNP registered
[ 368.219058] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 368.219216] system 00:01: [io 0x0500-0x057f] has been reserved
[ 368.219219] system 00:01: [io 0x0400-0x047f] could not be reserved
[ 368.219221] system 00:01: [io 0x0580-0x059f] has been reserved
[ 368.219223] system 00:01: [io 0x0600-0x061f] has been reserved
[ 368.219225] system 00:01: [io 0x0880-0x0883] has been reserved
[ 368.219227] system 00:01: [io 0x0800-0x081f] has been reserved
[ 368.219232] system 00:01: [mem 0xfed1c000-0xfed3ffff] could not be reserved
[ 368.219234] system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
[ 368.219236] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[ 368.219239] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
[ 368.219241] system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
[ 368.219243] system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
[ 368.219245] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
[ 368.219249] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 368.219374] system 00:02: [io 0x0a00-0x0a3f] has been reserved
[ 368.219377] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 368.219566] pnp 00:03: [dma 0 disabled]
[ 368.219624] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
[ 368.220188] pnp: PnP ACPI: found 4 devices
[ 368.220190] ACPI: bus type PNP unregistered
[ 368.226626] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
[ 368.226630] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
[ 368.226632] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 08] add_size 200000 add_align 100000
[ 368.226656] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[ 368.226658] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[ 368.226661] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 368.226664] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[ 368.226666] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[ 368.226668] pci 0000:00:1c.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[ 368.226675] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf3300000-0xf34fffff]
[ 368.226680] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf3500000-0xf36fffff 64bit pref]
[ 368.226683] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 368.226686] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 368.226694] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 368.226701] pci 0000:00:02.0: PCI bridge to [bus 03]
[ 368.226704] pci 0000:00:02.0: bridge window [io 0x8000-0x8fff]
[ 368.226708] pci 0000:00:02.0: bridge window [mem 0xf2000000-0xf30fffff]
[ 368.226711] pci 0000:00:02.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 368.226715] pci 0000:00:03.0: PCI bridge to [bus 04]
[ 368.226722] pci 0000:00:03.1: PCI bridge to [bus 05]
[ 368.226729] pci 0000:00:03.2: PCI bridge to [bus 06]
[ 368.226736] pci 0000:00:03.3: PCI bridge to [bus 07]
[ 368.226739] pci 0000:00:03.3: bridge window [mem 0xf3100000-0xf31fffff]
[ 368.226745] pci 0000:00:1c.0: PCI bridge to [bus 08]
[ 368.226748] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 368.226752] pci 0000:00:1c.0: bridge window [mem 0xf3300000-0xf34fffff]
[ 368.226756] pci 0000:00:1c.0: bridge window [mem 0xf3500000-0xf36fffff 64bit pref]
[ 368.226762] pci 0000:09:00.0: PCI bridge to [bus 0a]
[ 368.226781] pci 0000:00:1c.1: PCI bridge to [bus 09-0a]
[ 368.226792] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 368.226794] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 368.226796] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 368.226798] pci_bus 0000:00: resource 7 [io 0x1000-0x9fff window]
[ 368.226801] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 368.226803] pci_bus 0000:00: resource 9 [mem 0xe0000000-0xf3ffbfff window]
[ 368.226805] pci_bus 0000:03: resource 0 [io 0x8000-0x8fff]
[ 368.226807] pci_bus 0000:03: resource 1 [mem 0xf2000000-0xf30fffff]
[ 368.226809] pci_bus 0000:03: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
[ 368.226812] pci_bus 0000:07: resource 1 [mem 0xf3100000-0xf31fffff]
[ 368.226814] pci_bus 0000:08: resource 0 [io 0x1000-0x1fff]
[ 368.226816] pci_bus 0000:08: resource 1 [mem 0xf3300000-0xf34fffff]
[ 368.226818] pci_bus 0000:08: resource 2 [mem 0xf3500000-0xf36fffff 64bit pref]
[ 368.226822] pci_bus 0000:e0: resource 4 [io 0xa000-0xffff window]
[ 368.226824] pci_bus 0000:e0: resource 5 [mem 0xf4000000-0xf7ffbfff window]
[ 368.226892] NET: Registered protocol family 2
[ 368.227649] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[ 368.228453] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 368.228637] TCP: Hash tables configured (established 524288 bind 65536)
[ 368.228679] TCP: reno registered
[ 368.228812] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[ 368.229315] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[ 368.229885] NET: Registered protocol family 1
[ 368.257064] pci 0000:03:00.0: Boot video device
[ 368.257070] PCI: CLS mismatch (64 != 32), using 64 bytes
[ 368.257153] Unpacking initramfs...
[ 369.015019] Freeing initrd memory: 57056k freed
[ 369.034408] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 369.034414] software IO TLB [mem 0xc5362000-0xc9362000] (64MB) mapped at [ffff9c9385362000-ffff9c9389361fff]
[ 369.034616] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 369.034618] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 369.034619] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 369.034620] RAPL PMU: hw unit of domain dram 2^-16 Joules
[ 369.040618] sha1_ssse3: Using AVX2 optimized SHA-1 implementation
[ 369.040683] sha256_ssse3: Using AVX2 optimized SHA-256 implementation
[ 369.041584] futex hash table entries: 16384 (order: 8, 1048576 bytes)
[ 369.041778] Initialise system trusted keyring
[ 369.041809] audit: initializing netlink socket (disabled)
[ 369.041823] type=2000 audit(1583975054.530:1): initialized
[ 369.068302] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 369.068304] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 369.069735] zpool: loaded
[ 369.069737] zbud: loaded
[ 369.070126] VFS: Disk quotas dquot_6.5.2
[ 369.070176] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 369.070407] msgmni has been set to 32768
[ 369.070478] Key type big_key registered
[ 369.070482] SELinux: Registering netfilter hooks
[ 369.072207] NET: Registered protocol family 38
[ 369.072211] Key type asymmetric registered
[ 369.072214] Asymmetric key parser 'x509' registered
[ 369.072249] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[ 369.072383] io scheduler noop registered
[ 369.072387] io scheduler deadline registered (default)
[ 369.072421] io scheduler cfq registered
[ 369.072424] io scheduler mq-deadline registered
[ 369.072427] io scheduler kyber registered
[ 369.074121] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 369.074134] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 369.074234] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 369.074328] intel_idle: MWAIT substates: 0x2120
[ 369.074330] intel_idle: v0.4.1 model 0x4F
[ 369.074653] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 369.074989] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[ 369.074993] ACPI: Power Button [PWRB]
[ 369.075030] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 369.075033] ACPI: Power Button [PWRF]
[ 369.075075] ACPI: Requesting acpi_cpufreq
[ 369.083240] GHES: HEST is not enabled!
[ 369.083328] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 369.103985] 00:03: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 369.104536] Non-volatile memory driver v1.3
[ 369.104563] Linux agpgart interface v0.103
[ 369.130703] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 2)
[ 369.165654] crash memory driver: version 1.1
[ 369.165974] rdac: device handler registered
[ 369.166015] hp_sw: device handler registered
[ 369.166018] emc: device handler registered
[ 369.166121] alua: device handler registered
[ 369.166159] libphy: Fixed MDIO Bus: probed
[ 369.166199] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 369.166203] ehci-pci: EHCI PCI platform driver
[ 369.166450] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 369.166508] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 369.166520] ehci-pci 0000:00:1a.0: debug port 2
[ 369.170439] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 369.170453] ehci-pci 0000:00:1a.0: irq 18, io mem 0xf3238000
[ 369.175879] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 369.175931] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 3.10
[ 369.175933] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 369.175935] usb usb1: Product: EHCI Host Controller
[ 369.175937] usb usb1: Manufacturer: Linux 3.10.0-1062.4.1.el7.x86_64 ehci_hcd
[ 369.175939] usb usb1: SerialNumber: 0000:00:1a.0
[ 369.176048] hub 1-0:1.0: USB hub found
[ 369.176054] hub 1-0:1.0: 2 ports detected
[ 369.176306] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 369.176349] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 369.176360] ehci-pci 0000:00:1d.0: debug port 2
[ 369.180265] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 369.180270] ehci-pci 0000:00:1d.0: irq 18, io mem 0xf3237000
[ 369.185877] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 369.185915] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 3.10
[ 369.185917] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 369.185919] usb usb2: Product: EHCI Host Controller
[ 369.185921] usb usb2: Manufacturer: Linux 3.10.0-1062.4.1.el7.x86_64 ehci_hcd
[ 369.185923] usb usb2: SerialNumber: 0000:00:1d.0
[ 369.186016] hub 2-0:1.0: USB hub found
[ 369.186021] hub 2-0:1.0: 2 ports detected
[ 369.186154] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 369.186160] ohci-pci: OHCI PCI platform driver
[ 369.186207] uhci_hcd: USB Universal Host Controller Interface driver
[ 369.186367] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 369.186410] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 369.187488] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 369.187493] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 369.187520] xhci_hcd 0000:00:14.0: irq 27 for MSI/MSI-X
[ 369.187648] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 3.10
[ 369.187650] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 369.187652] usb usb3: Product: xHCI Host Controller
[ 369.187654] usb usb3: Manufacturer: Linux 3.10.0-1062.4.1.el7.x86_64 xhci-hcd
[ 369.187656] usb usb3: SerialNumber: 0000:00:14.0
[ 369.187746] hub 3-0:1.0: USB hub found
[ 369.187764] hub 3-0:1.0: 15 ports detected
[ 369.189603] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 369.189637] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 369.189641] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 369.189674] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 3.10
[ 369.189677] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 369.189679] usb usb4: Product: xHCI Host Controller
[ 369.189681] usb usb4: Manufacturer: Linux 3.10.0-1062.4.1.el7.x86_64 xhci-hcd
[ 369.189683] usb usb4: SerialNumber: 0000:00:14.0
[ 369.189772] hub 4-0:1.0: USB hub found
[ 369.189785] hub 4-0:1.0: 6 ports detected
[ 369.190666] usbcore: registered new interface driver usbserial_generic
[ 369.190673] usbserial: USB Serial support registered for generic
[ 369.190716] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 369.191293] i8042: Warning: Keylock active
[ 369.193838] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 369.193842] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 369.193918] mousedev: PS/2 mouse device common for all mice
[ 369.194083] rtc_cmos 00:00: RTC can wake from S4
[ 369.194208] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[ 369.194238] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 369.194300] intel_pstate: Intel P-state driver initializing
[ 369.195374] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 369.197468] cpuidle: using governor menu
[ 369.198336] hidraw: raw HID events driver (C) Jiri Kosina
[ 369.198537] usbcore: registered new interface driver usbhid
[ 369.198539] usbhid: USB HID core driver
[ 369.198878] drop_monitor: Initializing network drop monitor service
[ 369.199072] TCP: cubic registered
[ 369.199078] Initializing XFRM netlink socket
[ 369.199336] NET: Registered protocol family 10
[ 369.199961] NET: Registered protocol family 17
[ 369.199972] mpls_gso: MPLS GSO support
[ 369.204964] intel_rdt: Intel RDT L3 allocation detected
[ 369.204968] intel_rdt: Intel RDT L3DATA allocation detected
[ 369.204970] intel_rdt: Intel RDT L3CODE allocation detected
[ 369.204973] intel_rdt: Intel RDT L3 monitoring detected
[ 369.204981] mce: Using 22 MCE banks
[ 369.205084] microcode: sig=0x406f1, pf=0x1, revision=0xb00002e
[ 369.205576] microcode: Microcode Update Driver: v2.01 tigran@aivazian.fsnet.co.uk, Peter Oruba
[ 369.205795] PM: Hibernation image not present or could not be loaded.
[ 369.205800] Loading compiled-in X.509 certificates
[ 369.206725] Loaded X.509 cert 'Red Hat Enterprise Linux Driver Update Program (key 3): bf57f3e87362bc7229d9f465321773dfd1f77a80'
[ 369.207625] Loaded X.509 cert 'Red Hat Enterprise Linux kpatch signing key: 4d38fd864ebe18c5f0b72e3852e2014c3a676fc8'
[ 369.208527] Loaded X.509 cert 'Red Hat Enterprise Linux kernel signing key: 161f03554a1e5ae08342b00397e3b9ef42cfbd2b'
[ 369.208558] registered taskstats version 1
[ 369.212276] Key type trusted registered
[ 369.215648] Key type encrypted registered
[ 369.245004] Magic number: 12:497:53
[ 369.245327] memory memory218: hash matches
[ 369.245355] memory memory85: hash matches
[ 369.245451] rtc_cmos 00:00: setting system clock to 2020-03-12 01:04:15 UTC (1583975055)
[ 369.246950] Freeing unused kernel memory: 1984k freed
[ 369.247559] Write protecting the kernel read-only data: 12288k
[ 369.249467] Freeing unused kernel memory: 424k freed
[ 369.251656] Freeing unused kernel memory: 556k freed
[ 369.258079] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.258787] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.258810] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.261474] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 369.261725] systemd[1]: Detected architecture x86-64.
[ 369.261732] systemd[1]: Running in initial RAM disk.
[ 369.261778] systemd[1]: Set hostname to <walrus.ala.int.uts.edu.au>.
[ 369.319615] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.319652] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.319708] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.319797] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.320923] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.321172] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.321658] random: systemd: uninitialized urandom read (16 bytes read)
[ 369.327197] systemd[1]: [/run/systemd/generator/dev-mapper-vg_animal\x2dLogVol01.device.d/timeout.conf:3] Unknown lvalue 'JobRunningTimeoutSec' in section 'Unit'
[ 369.328512] systemd[1]: Created slice Root Slice.
[ 369.328677] systemd[1]: Created slice System Slice.
[ 369.328743] systemd[1]: Listening on udev Kernel Socket.
[ 369.328767] systemd[1]: Reached target Slices.
[ 369.328784] systemd[1]: Reached target Timers.
[ 369.328802] systemd[1]: Reached target Swap.
[ 369.328951] systemd[1]: Listening on Journal Socket.
[ 369.329775] systemd[1]: Starting Journal Service...
[ 369.330711] systemd[1]: Starting Apply Kernel Variables...
[ 369.331600] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[ 369.332530] systemd[1]: Starting dracut cmdline hook...
[ 369.332604] systemd[1]: Listening on udev Control Socket.
[ 369.332635] systemd[1]: Reached target Sockets.
[ 369.333417] systemd[1]: Starting Setup Virtual Console...
[ 369.333451] systemd[1]: Reached target Local File Systems.
[ 369.334518] systemd[1]: Started Apply Kernel Variables.
[ 369.335080] systemd[1]: Started Create list of required static device nodes for the current kernel.
[ 369.336019] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 369.340596] systemd[1]: Started Create Static Device Nodes in /dev.
[ 369.388530] systemd[1]: Started Journal Service.
[ 369.487929] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 369.497909] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 369.500912] usb 3-5: new full-speed USB device number 2 using xhci_hcd
[ 369.571414] device-mapper: uevent: version 1.0.3
[ 369.571553] device-mapper: ioctl: 4.37.1-ioctl (2018-04-03) initialised: dm-devel@redhat.com
[ 369.612229] usb 1-1: New USB device found, idVendor=8087, idProduct=800a, bcdDevice= 0.05
[ 369.612236] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 369.612522] hub 1-1:1.0: USB hub found
[ 369.612600] hub 1-1:1.0: 6 ports detected
[ 369.622231] usb 2-1: New USB device found, idVendor=8087, idProduct=8002, bcdDevice= 0.05
[ 369.622236] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 369.622516] hub 2-1:1.0: USB hub found
[ 369.622599] hub 2-1:1.0: 8 ports detected
[ 369.628216] usb 3-5: New USB device found, idVendor=056a, idProduct=0315, bcdDevice= 1.00
[ 369.628221] usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 369.628225] usb 3-5: Product: Intuos5 touch M
[ 369.628228] usb 3-5: Manufacturer: Wacom Co.,Ltd.
[ 369.733640] pps_core: LinuxPPS API ver. 1 registered
[ 369.733644] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti giometti@linux.it
[ 369.737082] PTP clock support registered
[ 369.737897] usb 4-2: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[ 369.739541] IPMI message handler: version 39.2
[ 369.742894] ipmi device interface
[ 369.743517] nvme nvme0: pci function 0000:07:00.0
[ 369.743747] nvme 0000:07:00.0: irq 29 for MSI/MSI-X
[ 369.749200] usb 4-2: New USB device found, idVendor=0424, idProduct=5537, bcdDevice=60.80
[ 369.749205] usb 4-2: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[ 369.749209] usb 4-2: Product: USB5537B
[ 369.749212] usb 4-2: Manufacturer: SMSC
[ 369.749937] hub 4-2:1.0: USB hub found
[ 369.750462] hub 4-2:1.0: 7 ports detected
[ 369.765931] libata version 3.00 loaded.
[ 369.777954] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 369.777959] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 369.778410] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 369.778443] e1000e 0000:00:19.0: irq 30 for MSI/MSI-X
[ 369.840645] Request for unknown module key 'The ELRepo Project (http://elrepo.org): ELRepo.org Secure Boot Key: f365ad3481a7b20e3427b61b2a26635b83fe427b' err -11
[ 369.840658] nvidia: loading out-of-tree module taints kernel.
[ 369.840664] nvidia: module license 'NVIDIA' taints kernel.
[ 369.840666] Disabling lock debugging due to kernel taint
[ 369.861860] usb 3-8: new high-speed USB device number 3 using xhci_hcd
[ 369.866847] e1000e 0000:00:19.0 (unregistered net_device) (uninitialized): registered PHC clock
[ 369.920530] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[ 369.946353] nvme 0000:07:00.0: irq 29 for MSI/MSI-X
[ 369.946363] nvme 0000:07:00.0: irq 31 for MSI/MSI-X
[ 369.946374] nvme 0000:07:00.0: irq 32 for MSI/MSI-X
[ 369.946383] nvme 0000:07:00.0: irq 33 for MSI/MSI-X
[ 369.946402] nvme 0000:07:00.0: irq 34 for MSI/MSI-X
[ 369.946412] nvme 0000:07:00.0: irq 35 for MSI/MSI-X
[ 369.946422] nvme 0000:07:00.0: irq 36 for MSI/MSI-X
[ 369.946432] nvme 0000:07:00.0: irq 37 for MSI/MSI-X
[ 369.947430] nvme0n1: p1 p2 p3
[ 369.948187] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 18:66:da:3e:ae:e6
[ 369.948190] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 369.948241] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
[ 369.948307] ahci 0000:00:11.4: version 3.0
[ 369.948519] ahci 0000:00:11.4: irq 38 for MSI/MSI-X
[ 369.948559] ahci 0000:00:11.4: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x3 impl SATA mode
[ 369.948563] ahci 0000:00:11.4: flags: 64bit ncq pm led clo pio slum part ems apst
[ 369.951385] scsi host0: ahci
[ 369.951543] scsi host1: ahci
[ 369.951660] scsi host2: ahci
[ 369.951759] scsi host3: ahci
[ 369.951812] ata1: SATA max UDMA/133 abar m2048@0xf323d000 port 0xf323d100 irq 38
[ 369.951815] ata2: SATA max UDMA/133 abar m2048@0xf323d000 port 0xf323d180 irq 38
[ 369.951817] ata3: DUMMY
[ 369.951818] ata4: DUMMY
[ 369.952046] ahci 0000:00:1f.2: irq 39 for MSI/MSI-X
[ 369.952077] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x1 impl SATA mode
[ 369.952080] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
[ 369.952688] scsi host4: ahci
[ 369.952843] scsi host5: ahci
[ 369.953005] scsi host6: ahci
[ 369.953122] scsi host7: ahci
[ 369.953170] ata5: SATA max UDMA/133 abar m2048@0xf3236000 port 0xf3236100 irq 39
[ 369.953171] ata6: DUMMY
[ 369.953173] ata7: DUMMY
[ 369.953174] ata8: DUMMY
[ 369.961767] random: fast init done
[ 369.985176] usb 3-8: New USB device found, idVendor=0424, idProduct=2137, bcdDevice=60.80
[ 369.985180] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 369.985182] usb 3-8: Product: USB2137B
[ 369.985184] usb 3-8: Manufacturer: SMSC
[ 369.985550] hub 3-8:1.0: USB hub found
[ 369.985568] hub 3-8:1.0: 7 ports detected
[ 370.003128] nvidia-nvlink: Nvlink Core is being initialized, major device number 240
[ 370.003762] vgaarb: device changed decodes: PCI:0000:03:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[ 370.036900] tsc: Refined TSC clocksource calibration: 2394.455 MHz
[ 370.037053] Switched to clocksource tsc
[ 370.105239] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 430.50 Thu Sep 5 22:36:31 CDT 2019
[ 370.106496] Request for unknown module key 'The ELRepo Project (http://elrepo.org): ELRepo.org Secure Boot Key: f365ad3481a7b20e3427b61b2a26635b83fe427b' err -11
[ 370.110809] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 430.50 Thu Sep 5 22:39:50 CDT 2019
[ 370.112852] Request for unknown module key 'The ELRepo Project (http://elrepo.org): ELRepo.org Secure Boot Key: f365ad3481a7b20e3427b61b2a26635b83fe427b' err -11
[ 370.114279] [drm] [nvidia-drm] [GPU ID 0x00000300] Loading driver
[ 370.114283] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:03:00.0 on minor 0
[ 370.256883] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 370.257888] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 370.257892] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 370.258875] ata5.00: ATA-9: ST4000DM000-1F2168, CC54, max UDMA/133
[ 370.258883] ata5.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 370.259753] ata5.00: configured for UDMA/133
[ 370.259867] ata2.00: ATAPI: HL-DT-ST BD-RE BH40N, A1B0, max UDMA/100
[ 370.260165] usb 3-8.1: new high-speed USB device number 4 using xhci_hcd
[ 370.260602] ata1.00: ATAPI: PLDS DVD+/-RW DS-8ABSH, LD11, max UDMA/133
[ 370.260690] ata2.00: configured for UDMA/100
[ 370.261406] ata1.00: configured for UDMA/133
[ 370.269469] scsi 0:0:0:0: CD-ROM PLDS DVD+-RW DS-8ABSH LD11 PQ: 0 ANSI: 5
[ 370.284881] scsi 1:0:0:0: CD-ROM HL-DT-ST BD-RE BH40N A1B0 PQ: 0 ANSI: 5
[ 370.309789] sr 1:0:0:0: [sr1] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 370.309795] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 370.310000] sr 1:0:0:0: Attached scsi CD-ROM sr1
[ 370.310337] scsi 4:0:0:0: Direct-Access ATA ST4000DM000-1F21 CC54 PQ: 0 ANSI: 5
[ 370.313524] sr 0:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 370.313706] sr 0:0:0:0: Attached scsi CD-ROM sr0
[ 370.338397] sd 4:0:0:0: [sda] 7814037168 512-byte logical blocks: (4.00 TB/3.63 TiB)
[ 370.338403] sd 4:0:0:0: [sda] 4096-byte physical blocks
[ 370.338598] sd 4:0:0:0: [sda] Write Protect is off
[ 370.338605] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 370.338710] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 370.352577] sda: sda1 sda2 sda3
[ 370.353085] sd 4:0:0:0: [sda] Attached SCSI disk
[ 370.361648] usb 3-8.1: New USB device found, idVendor=413c, idProduct=1010, bcdDevice=32.98
[ 370.361655] usb 3-8.1: New USB device strings: Mfr=0, Product=11, SerialNumber=0
[ 370.361659] usb 3-8.1: Product: USB 2.0 Hub [MTT]
[ 370.362259] hub 3-8.1:1.0: USB hub found
[ 370.363808] hub 3-8.1:1.0: 4 ports detected
[ 370.439817] usb 3-8.2: new low-speed USB device number 5 using xhci_hcd
[ 370.527858] usb 3-8.2: New USB device found, idVendor=0461, idProduct=4d51, bcdDevice= 7.17
[ 370.527865] usb 3-8.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 370.527870] usb 3-8.2: Product: DELL Laser Mouse
[ 370.533095] input: DELL Laser Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8.2/3-8.2:1.0/input/input3
[ 370.533262] hid-generic 0003:0461:4D51.0001: input,hidraw0: USB HID v1.11 Mouse [DELL Laser Mouse] on usb-0000:00:14.0-8.2/input0
[ 370.639814] usb 3-8.1.4: new low-speed USB device number 6 using xhci_hcd
[ 370.732437] usb 3-8.1.4: New USB device found, idVendor=413c, idProduct=2110, bcdDevice= 0.06
[ 370.732444] usb 3-8.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 370.732449] usb 3-8.1.4: Product: Dell Wired Multimedia Keyboard
[ 370.732453] usb 3-8.1.4: Manufacturer: Dell
[ 370.744123] input: Dell Dell Wired Multimedia Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8.1/3-8.1.4/3-8.1.4:1.0/input/input4
[ 370.795052] hid-generic 0003:413C:2110.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell Wired Multimedia Keyboard] on usb-0000:00:14.0-8.1.4/input0
[ 370.806452] input: Dell Dell Wired Multimedia Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8.1/3-8.1.4/3-8.1.4:1.1/input/input5
[ 370.857042] hid-generic 0003:413C:2110.0003: input,hiddev0,hidraw2: USB HID v1.10 Mouse [Dell Dell Wired Multimedia Keyboard] on usb-0000:00:14.0-8.1.4/input1
[ 370.973972] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 371.298737] systemd-journald[379]: Received SIGTERM from PID 1 (systemd).
[ 371.372767] SELinux: 2048 avtab hash slots, 112851 rules.
[ 371.463367] SELinux: 2048 avtab hash slots, 112851 rules.
[ 371.496939] SELinux: 8 users, 14 roles, 5050 types, 318 bools, 1 sens, 1024 cats
[ 371.496942] SELinux: 130 classes, 112851 rules
[ 371.501393] SELinux: Completing initialization.
[ 371.501394] SELinux: Setting up existing superblocks.
[ 371.514769] type=1403 audit(1583975057.768:2): policy loaded auid=4294967295 ses=4294967295
[ 371.518533] systemd[1]: Successfully loaded SELinux policy in 161.901ms.
[ 371.525316] random: crng init done
[ 371.539538] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 371.539624] systemd[1]: Inserted module 'ip_tables'
[ 371.575622] systemd[1]: Relabelled /dev, /run and /sys/fs/cgroup in 33.907ms.
[ 371.738600] EXT4-fs (dm-0): re-mounted. Opts: (null)
[ 371.747262] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.3)
[ 371.762427] systemd-journald[1886]: Received request to flush runtime journal from PID 1
[ 372.711686] sr 0:0:0:0: Attached scsi generic sg0 type 5
[ 372.711933] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 372.712191] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 372.712537] mei_me 0000:00:16.0: irq 40 for MSI/MSI-X
[ 372.729641] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 372.759087] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 372.771499] snd_hda_intel 0000:00:1b.0: irq 41 for MSI/MSI-X
[ 372.771588] snd_hda_intel 0000:03:00.1: Disabling MSI
[ 372.771639] snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
[ 372.771704] cryptd: max_cpu_qlen set to 1000
[ 372.782989] AVX2 version of gcm_enc/dec engaged.
[ 372.782991] AES CTR mode by8 optimization enabled
[ 372.786330] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[ 372.786390] alg: No test for __generic-gcm-aes-aesni (__driver-generic-gcm-aes-aesni)
[ 372.797383] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
[ 372.797388] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 372.797391] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[ 372.797394] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 372.797396] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 372.797400] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x1a
[ 372.797402] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 372.841705] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 372.841805] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 372.842128] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 372.842283] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 372.846186] intel_rapl: Found RAPL domain package
[ 372.846194] intel_rapl: Found RAPL domain dram
[ 372.846196] intel_rapl: DRAM domain energy unit 15300pj
[ 372.846213] intel_rapl: Found RAPL domain package
[ 372.846224] intel_rapl: Found RAPL domain dram
[ 372.846226] intel_rapl: DRAM domain energy unit 15300pj
[ 372.854014] EDAC sbridge: Seeking for: PCI ID 8086:6fa0
[ 372.854030] EDAC sbridge: Seeking for: PCI ID 8086:6fa0
[ 372.854046] EDAC sbridge: Seeking for: PCI ID 8086:6fa0
[ 372.854059] EDAC sbridge: Seeking for: PCI ID 8086:6f60
[ 372.854065] EDAC sbridge: Seeking for: PCI ID 8086:6f60
[ 372.854074] EDAC sbridge: Seeking for: PCI ID 8086:6f60
[ 372.854080] EDAC sbridge: Seeking for: PCI ID 8086:6fa8
[ 372.854086] EDAC sbridge: Seeking for: PCI ID 8086:6fa8
[ 372.854095] EDAC sbridge: Seeking for: PCI ID 8086:6fa8
[ 372.854102] EDAC sbridge: Seeking for: PCI ID 8086:6f71
[ 372.854108] EDAC sbridge: Seeking for: PCI ID 8086:6f71
[ 372.854116] EDAC sbridge: Seeking for: PCI ID 8086:6f71
[ 372.854122] EDAC sbridge: Seeking for: PCI ID 8086:6faa
[ 372.854129] EDAC sbridge: Seeking for: PCI ID 8086:6faa
[ 372.854137] EDAC sbridge: Seeking for: PCI ID 8086:6faa
[ 372.854144] EDAC sbridge: Seeking for: PCI ID 8086:6fab
[ 372.854150] EDAC sbridge: Seeking for: PCI ID 8086:6fab
[ 372.854158] EDAC sbridge: Seeking for: PCI ID 8086:6fab
[ 372.854165] EDAC sbridge: Seeking for: PCI ID 8086:6fac
[ 372.854180] EDAC sbridge: Seeking for: PCI ID 8086:6fad
[ 372.854196] EDAC sbridge: Seeking for: PCI ID 8086:6f68
[ 372.854203] EDAC sbridge: Seeking for: PCI ID 8086:6f68
[ 372.854211] EDAC sbridge: Seeking for: PCI ID 8086:6f68
[ 372.854217] EDAC sbridge: Seeking for: PCI ID 8086:6f79
[ 372.854224] EDAC sbridge: Seeking for: PCI ID 8086:6f79
[ 372.854232] EDAC sbridge: Seeking for: PCI ID 8086:6f79
[ 372.854238] EDAC sbridge: Seeking for: PCI ID 8086:6f6a
[ 372.854245] EDAC sbridge: Seeking for: PCI ID 8086:6f6a
[ 372.854253] EDAC sbridge: Seeking for: PCI ID 8086:6f6a
[ 372.854259] EDAC sbridge: Seeking for: PCI ID 8086:6f6b
[ 372.854266] EDAC sbridge: Seeking for: PCI ID 8086:6f6b
[ 372.854275] EDAC sbridge: Seeking for: PCI ID 8086:6f6b
[ 372.854280] EDAC sbridge: Seeking for: PCI ID 8086:6f6c
[ 372.854295] EDAC sbridge: Seeking for: PCI ID 8086:6f6d
[ 372.854311] EDAC sbridge: Seeking for: PCI ID 8086:6ffc
[ 372.854316] EDAC sbridge: Seeking for: PCI ID 8086:6ffc
[ 372.854325] EDAC sbridge: Seeking for: PCI ID 8086:6ffc
[ 372.854332] EDAC sbridge: Seeking for: PCI ID 8086:6ffd
[ 372.854337] EDAC sbridge: Seeking for: PCI ID 8086:6ffd
[ 372.854346] EDAC sbridge: Seeking for: PCI ID 8086:6ffd
[ 372.854353] EDAC sbridge: Seeking for: PCI ID 8086:6faf
[ 372.854360] EDAC sbridge: Seeking for: PCI ID 8086:6faf
[ 372.854368] EDAC sbridge: Seeking for: PCI ID 8086:6faf
[ 372.854487] EDAC MC0: Giving out device to 'sb_edac.c' 'Broadwell SrcID#1_Ha#0': DEV 0000:ff:12.0
[ 372.854583] EDAC MC1: Giving out device to 'sb_edac.c' 'Broadwell SrcID#0_Ha#0': DEV 0000:df:12.0
[ 372.854680] EDAC MC2: Giving out device to 'sb_edac.c' 'Broadwell SrcID#1_Ha#1': DEV 0000:ff:12.4
[ 372.854785] EDAC MC3: Giving out device to 'sb_edac.c' 'Broadwell SrcID#0_Ha#1': DEV 0000:df:12.4
[ 372.854786] EDAC sbridge: Ver: 1.1.2
[ 372.939303] EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null)
[ 372.940308] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[ 372.975937] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input11
[ 372.975988] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input12
[ 372.976033] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input13
[ 372.976076] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input14
[ 373.365781] iTCO_vendor_support: vendor-support=0
[ 373.367403] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 373.367451] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 373.378210] Adding 32767996k swap on /dev/mapper/vg_animal-LogVol00. Priority:-2 extents:1 across:32767996k SSFS
[ 373.729974] input: Wacom Intuos Pro M Pen as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/input/input15
[ 373.730413] input: Wacom Intuos Pro M Finger as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.1/input/input16
[ 373.730483] usbcore: registered new interface driver wacom
[ 374.227167] type=1305 audit(1583975060.480:3): audit_pid=3367 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[ 374.252104] RPC: Registered named UNIX socket transport module.
[ 374.252107] RPC: Registered udp transport module.
[ 374.252108] RPC: Registered tcp transport module.
[ 374.252109] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 374.429839] FS-Cache: Loaded
[ 374.437139] CacheFiles: Loaded
[ 374.494810] FS-Cache: Cache "mycache" added (type cachefiles)
[ 374.494815] CacheFiles: File cache on nvme0n1p2 registered
[ 374.515062] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[ 374.580299] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[ 374.682741] e1000e 0000:00:19.0: irq 30 for MSI/MSI-X
[ 374.783676] e1000e 0000:00:19.0: irq 30 for MSI/MSI-X
[ 374.783785] IPv6: ADDRCONF(NETDEV_UP): enp0s25: link is not ready
[ 377.802497] e1000e: enp0s25 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[ 377.802557] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s25: link becomes ready
[ 384.014020] FS-Cache: Netfs 'nfs' registered for caching
[ 384.350427] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 384.369932] Ebtables v2.0 registered
[ 384.987956] L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[ 385.067224] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 385.077008] tun: Universal TUN/TAP device driver, 1.6
[ 385.077012] tun: (C) 1999-2004 Max Krasnyansky maxk@qualcomm.com
[ 385.078302] virbr0: port 1(virbr0-nic) entered blocking state
[ 385.078305] virbr0: port 1(virbr0-nic) entered disabled state
[ 385.078379] device virbr0-nic entered promiscuous mode
[ 385.209534] virbr0: port 1(virbr0-nic) entered blocking state
[ 385.209539] virbr0: port 1(virbr0-nic) entered listening state
[ 385.209623] IPv6: ADDRCONF(NETDEV_UP): virbr0: link is not ready
[ 385.287448] virbr0: port 1(virbr0-nic) entered disabled state
[ 393.764795] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 394.482317] pmd_set_huge: Cannot satisfy [mem 0xf0000000-0xf0200000] with a huge-page mapping due to MTRR override.
[ 403.755515] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 413.754993] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 423.754592] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 433.754144] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 443.752613] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 453.752407] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 463.751266] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 473.750400] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 483.751121] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 492.626634] nvidia 0000:03:00.0: irq 43 for MSI/MSI-X
[ 514.838195] fuse init (API version 7.23)
[ 526.362136] TCP: lp registered
[ 1466.239135] TECH PREVIEW: Overlay filesystem may not be fully supported.
Please review provided documentation for limitations.
[ 1466.353996] Bridge firewalling registered
[ 1466.430163] Netfilter messages via NETLINK v0.30.
[ 1466.436481] ctnetlink v0.93: registering with nfnetlink.
[ 1466.480756] IPv6: ADDRCONF(NETDEV_UP): docker0: link is not ready
[ 1466.523685] IPv6: ADDRCONF(NETDEV_UP): br-d2e4a8adddae: link is not ready
[ 1868.275988] docker0: port 1(veth7cc37de) entered blocking state
[ 1868.275996] docker0: port 1(veth7cc37de) entered disabled state
[ 1868.276152] device veth7cc37de entered promiscuous mode
[ 1868.276492] IPv6: ADDRCONF(NETDEV_UP): veth7cc37de: link is not ready
[ 1868.545841] Request for unknown module key 'The ELRepo Project (http://elrepo.org): ELRepo.org Secure Boot Key: f365ad3481a7b20e3427b61b2a26635b83fe427b' err -11
[ 1868.582805] nvidia-uvm: Loaded the UVM driver in 8 mode, major device number 237
[ 1868.964855] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 1868.964874] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 1868.964958] IPv6: ADDRCONF(NETDEV_CHANGE): veth7cc37de: link becomes ready
[ 1868.965144] docker0: port 1(veth7cc37de) entered blocking state
[ 1868.965149] docker0: port 1(veth7cc37de) entered forwarding state
[ 1868.965316] IPv6: ADDRCONF(NETDEV_CHANGE): docker0: link becomes ready
[ 1869.382971] docker0: port 1(veth7cc37de) entered disabled state
[ 1869.407317] docker0: port 1(veth7cc37de) entered disabled state
[ 1869.411661] device veth7cc37de left promiscuous mode
[ 1869.411681] docker0: port 1(veth7cc37de) entered disabled state
[ 1912.698504] docker0: port 1(veth7b570fb) entered blocking state
[ 1912.698512] docker0: port 1(veth7b570fb) entered disabled state
[ 1912.698665] device veth7b570fb entered promiscuous mode
[ 1912.699078] IPv6: ADDRCONF(NETDEV_UP): veth7b570fb: link is not ready
[ 1913.005732] docker0: port 1(veth7b570fb) entered disabled state
[ 1913.012108] device veth7b570fb left promiscuous mode
[ 1913.012126] docker0: port 1(veth7b570fb) entered disabled state
[ 1928.666836] docker0: port 1(veth954cc79) entered blocking state
[ 1928.666845] docker0: port 1(veth954cc79) entered disabled state
[ 1928.667027] device veth954cc79 entered promiscuous mode
[ 1928.667412] IPv6: ADDRCONF(NETDEV_UP): veth954cc79: link is not ready
[ 1928.990148] docker0: port 1(veth954cc79) entered disabled state
[ 1928.996429] device veth954cc79 left promiscuous mode
[ 1928.996450] docker0: port 1(veth954cc79) entered disabled state
[ 1966.545288] docker0: port 1(veth54158d9) entered blocking state
[ 1966.545297] docker0: port 1(veth54158d9) entered disabled state
[ 1966.545462] device veth54158d9 entered promiscuous mode
[ 1966.545814] IPv6: ADDRCONF(NETDEV_UP): veth54158d9: link is not ready
[ 1966.865416] docker0: port 1(veth54158d9) entered disabled state
[ 1966.873900] device veth54158d9 left promiscuous mode
[ 1966.873919] docker0: port 1(veth54158d9) entered disabled state
[ 2224.974454] docker0: port 1(vethf8e02ed) entered blocking state
[ 2224.974463] docker0: port 1(vethf8e02ed) entered disabled state
[ 2224.974633] device vethf8e02ed entered promiscuous mode
[ 2224.975033] IPv6: ADDRCONF(NETDEV_UP): vethf8e02ed: link is not ready
[ 2225.293214] docker0: port 1(vethf8e02ed) entered disabled state
[ 2225.300809] device vethf8e02ed left promiscuous mode
[ 2225.300829] docker0: port 1(vethf8e02ed) entered disabled state
[ 2987.910940] docker0: port 1(veth59fd65b) entered blocking state
[ 2987.910949] docker0: port 1(veth59fd65b) entered disabled state
[ 2987.911131] device veth59fd65b entered promiscuous mode
[ 2987.911587] IPv6: ADDRCONF(NETDEV_UP): veth59fd65b: link is not ready
[ 2988.408356] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 2988.408389] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 2988.408470] IPv6: ADDRCONF(NETDEV_CHANGE): veth59fd65b: link becomes ready
[ 2988.408643] docker0: port 1(veth59fd65b) entered blocking state
[ 2988.408649] docker0: port 1(veth59fd65b) entered forwarding state
[ 2988.821139] docker0: port 1(veth59fd65b) entered disabled state
[ 2988.838690] docker0: port 1(veth59fd65b) entered disabled state
[ 2988.843089] device veth59fd65b left promiscuous mode
[ 2988.843109] docker0: port 1(veth59fd65b) entered disabled state
[ 4353.334615] docker0: port 1(vethe921fa2) entered blocking state
[ 4353.334623] docker0: port 1(vethe921fa2) entered disabled state
[ 4353.334767] device vethe921fa2 entered promiscuous mode
[ 4353.335040] IPv6: ADDRCONF(NETDEV_UP): vethe921fa2: link is not ready
[ 4353.830601] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 4353.831132] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 4353.831221] IPv6: ADDRCONF(NETDEV_CHANGE): vethe921fa2: link becomes ready
[ 4353.831487] docker0: port 1(vethe921fa2) entered blocking state
[ 4353.831495] docker0: port 1(vethe921fa2) entered forwarding state
[ 4354.244245] docker0: port 1(vethe921fa2) entered disabled state
[ 4354.269650] docker0: port 1(vethe921fa2) entered disabled state
[ 4354.274049] device vethe921fa2 left promiscuous mode
[ 4354.274069] docker0: port 1(vethe921fa2) entered disabled state
[ 6195.689546] docker0: port 1(veth03aa2eb) entered blocking state
[ 6195.689555] docker0: port 1(veth03aa2eb) entered disabled state
[ 6195.689741] device veth03aa2eb entered promiscuous mode
[ 6195.690123] IPv6: ADDRCONF(NETDEV_UP): veth03aa2eb: link is not ready
[ 6196.050392] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6196.050425] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 6196.050506] IPv6: ADDRCONF(NETDEV_CHANGE): veth03aa2eb: link becomes ready
[ 6196.050753] docker0: port 1(veth03aa2eb) entered blocking state
[ 6196.050762] docker0: port 1(veth03aa2eb) entered forwarding state
[ 6196.197135] docker0: port 1(veth03aa2eb) entered disabled state
[ 6196.219079] docker0: port 1(veth03aa2eb) entered disabled state
[ 6196.223534] device veth03aa2eb left promiscuous mode
[ 6196.223554] docker0: port 1(veth03aa2eb) entered disabled state
[ 6245.073258] docker0: port 1(veth0c5ffef) entered blocking state
[ 6245.073266] docker0: port 1(veth0c5ffef) entered disabled state
[ 6245.073424] device veth0c5ffef entered promiscuous mode
[ 6245.073742] IPv6: ADDRCONF(NETDEV_UP): veth0c5ffef: link is not ready
[ 6245.423162] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6245.423198] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 6245.423333] IPv6: ADDRCONF(NETDEV_CHANGE): veth0c5ffef: link becomes ready
[ 6245.423590] docker0: port 1(veth0c5ffef) entered blocking state
[ 6245.423597] docker0: port 1(veth0c5ffef) entered forwarding state
[ 6245.567844] docker0: port 1(veth0c5ffef) entered disabled state
[ 6245.592493] docker0: port 1(veth0c5ffef) entered disabled state
[ 6245.597183] device veth0c5ffef left promiscuous mode
[ 6245.597209] docker0: port 1(veth0c5ffef) entered disabled state
[ 6257.125082] lockd: server mdcislalanfs01.adsroot.uts.edu.au not responding, still trying
[ 6260.134975] lockd: server mdcislalanfs01.adsroot.uts.edu.au OK
[ 6949.830363] docker0: port 1(vethe873127) entered blocking state
[ 6949.830370] docker0: port 1(vethe873127) entered disabled state
[ 6949.830504] device vethe873127 entered promiscuous mode
[ 6949.830886] IPv6: ADDRCONF(NETDEV_UP): vethe873127: link is not ready
[ 6950.183280] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 6950.183310] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 6950.183387] IPv6: ADDRCONF(NETDEV_CHANGE): vethe873127: link becomes ready
[ 6950.183570] docker0: port 1(vethe873127) entered blocking state
[ 6950.183575] docker0: port 1(vethe873127) entered forwarding state
[ 6950.654040] docker0: port 1(vethe873127) entered disabled state
[ 6950.677186] docker0: port 1(vethe873127) entered disabled state
[ 6950.681549] device vethe873127 left promiscuous mode
[ 6950.681568] docker0: port 1(vethe873127) entered disabled state
[ 6951.096100] docker0: port 1(veth3d78bf6) entered blocking state
[ 6951.096107] docker0: port 1(veth3d78bf6) entered disabled state
[ 6951.096273] device veth3d78bf6 entered promiscuous mode
[ 6951.096584] IPv6: ADDRCONF(NETDEV_UP): veth3d78bf6: link is not ready
[ 6951.096590] docker0: port 1(veth3d78bf6) entered blocking state
[ 6951.096594] docker0: port 1(veth3d78bf6) entered forwarding state
[ 6951.096862] docker0: port 1(veth3d78bf6) entered disabled state
[ 6951.442413] IPv6: ADDRCONF(NETDEV_CHANGE): veth3d78bf6: link becomes ready
[ 6951.442594] docker0: port 1(veth3d78bf6) entered blocking state
[ 6951.442600] docker0: port 1(veth3d78bf6) entered forwarding state
[ 6951.848271] docker0: port 1(veth3d78bf6) entered disabled state
[ 6951.870434] docker0: port 1(veth3d78bf6) entered disabled state
[ 6951.874627] device veth3d78bf6 left promiscuous mode
[ 6951.874658] docker0: port 1(veth3d78bf6) entered disabled state
[ 6953.160384] docker0: port 1(vethbf3059b) entered blocking state
[ 6953.160393] docker0: port 1(vethbf3059b) entered disabled state
[ 6953.160620] device vethbf3059b entered promiscuous mode
[ 6953.161118] IPv6: ADDRCONF(NETDEV_UP): vethbf3059b: link is not ready
[ 6953.161130] docker0: port 1(vethbf3059b) entered blocking state
[ 6953.161136] docker0: port 1(vethbf3059b) entered forwarding state
[ 6953.161460] docker0: port 1(vethbf3059b) entered disabled state
[ 6953.519212] IPv6: ADDRCONF(NETDEV_CHANGE): vethbf3059b: link becomes ready
[ 6953.519405] docker0: port 1(vethbf3059b) entered blocking state
[ 6953.519410] docker0: port 1(vethbf3059b) entered forwarding state
[ 6958.621819] docker0: port 1(vethbf3059b) entered disabled state
[ 6958.647250] docker0: port 1(vethbf3059b) entered disabled state
[ 6958.651938] device vethbf3059b left promiscuous mode
[ 6958.651959] docker0: port 1(vethbf3059b) entered disabled state
[ 6959.745010] docker0: port 1(veth8ffdfc9) entered blocking state
[ 6959.745019] docker0: port 1(veth8ffdfc9) entered disabled state
[ 6959.745251] device veth8ffdfc9 entered promiscuous mode
[ 6959.745726] IPv6: ADDRCONF(NETDEV_UP): veth8ffdfc9: link is not ready
[ 6959.745737] docker0: port 1(veth8ffdfc9) entered blocking state
[ 6959.745742] docker0: port 1(veth8ffdfc9) entered forwarding state
[ 6959.746058] docker0: port 1(veth8ffdfc9) entered disabled state
[ 6960.109918] IPv6: ADDRCONF(NETDEV_CHANGE): veth8ffdfc9: link becomes ready
[ 6960.110112] docker0: port 1(veth8ffdfc9) entered blocking state
[ 6960.110117] docker0: port 1(veth8ffdfc9) entered forwarding state
[ 7022.980961] docker0: port 1(veth8ffdfc9) entered disabled state
[ 7023.005093] docker0: port 1(veth8ffdfc9) entered disabled state
[ 7023.009941] device veth8ffdfc9 left promiscuous mode
[ 7023.009962] docker0: port 1(veth8ffdfc9) entered disabled state
[ 7056.203817] docker0: port 1(veth00f1eee) entered blocking state
[ 7056.203825] docker0: port 1(veth00f1eee) entered disabled state
[ 7056.204005] device veth00f1eee entered promiscuous mode
[ 7056.204345] IPv6: ADDRCONF(NETDEV_UP): veth00f1eee: link is not ready
[ 7056.578358] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 7056.578389] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 7056.578467] IPv6: ADDRCONF(NETDEV_CHANGE): veth00f1eee: link becomes ready
[ 7056.578657] docker0: port 1(veth00f1eee) entered blocking state
[ 7056.578662] docker0: port 1(veth00f1eee) entered forwarding state
[ 7070.677793] docker0: port 1(veth00f1eee) entered disabled state
[ 7070.700852] docker0: port 1(veth00f1eee) entered disabled state
[ 7070.704829] device veth00f1eee left promiscuous mode
[ 7070.704847] docker0: port 1(veth00f1eee) entered disabled state
[ 7072.095750] docker0: port 1(veth5ae4a7b) entered blocking state
[ 7072.095758] docker0: port 1(veth5ae4a7b) entered disabled state
[ 7072.095969] device veth5ae4a7b entered promiscuous mode
[ 7072.096334] IPv6: ADDRCONF(NETDEV_UP): veth5ae4a7b: link is not ready
[ 7072.096343] docker0: port 1(veth5ae4a7b) entered blocking state
[ 7072.096347] docker0: port 1(veth5ae4a7b) entered forwarding state
[ 7072.097347] docker0: port 1(veth5ae4a7b) entered disabled state
[ 7072.453742] IPv6: ADDRCONF(NETDEV_CHANGE): veth5ae4a7b: link becomes ready
[ 7072.453919] docker0: port 1(veth5ae4a7b) entered blocking state
[ 7072.453924] docker0: port 1(veth5ae4a7b) entered forwarding state
[ 7080.936493] docker0: port 1(veth5ae4a7b) entered disabled state
[ 7080.963644] docker0: port 1(veth5ae4a7b) entered disabled state
[ 7080.968135] device veth5ae4a7b left promiscuous mode
[ 7080.968154] docker0: port 1(veth5ae4a7b) entered disabled state
[ 7081.608242] docker0: port 1(vethd497571) entered blocking state
[ 7081.608250] docker0: port 1(vethd497571) entered disabled state
[ 7081.608422] device vethd497571 entered promiscuous mode
[ 7081.608737] IPv6: ADDRCONF(NETDEV_UP): vethd497571: link is not ready
[ 7081.608745] docker0: port 1(vethd497571) entered blocking state
[ 7081.608749] docker0: port 1(vethd497571) entered forwarding state
[ 7081.939065] docker0: port 1(vethd497571) entered disabled state
[ 7081.971225] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 7081.971269] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 7081.971345] IPv6: ADDRCONF(NETDEV_CHANGE): vethd497571: link becomes ready
[ 7081.971556] docker0: port 1(vethd497571) entered blocking state
[ 7081.971564] docker0: port 1(vethd497571) entered forwarding state
[ 7085.596816] docker0: port 1(vethd497571) entered disabled state
[ 7085.619582] docker0: port 1(vethd497571) entered disabled state
[ 7085.624196] device vethd497571 left promiscuous mode
[ 7085.624219] docker0: port 1(vethd497571) entered disabled state
[ 7086.958155] docker0: port 1(vethd38613f) entered blocking state
[ 7086.958161] docker0: port 1(vethd38613f) entered disabled state
[ 7086.958362] device vethd38613f entered promiscuous mode
[ 7086.958606] IPv6: ADDRCONF(NETDEV_UP): vethd38613f: link is not ready
[ 7086.958613] docker0: port 1(vethd38613f) entered blocking state
[ 7086.958616] docker0: port 1(vethd38613f) entered forwarding state
[ 7086.958816] docker0: port 1(vethd38613f) entered disabled state
[ 7087.308034] IPv6: ADDRCONF(NETDEV_CHANGE): vethd38613f: link becomes ready
[ 7087.308205] docker0: port 1(vethd38613f) entered blocking state
[ 7087.308210] docker0: port 1(vethd38613f) entered forwarding state
[ 7707.836767] perf: interrupt took too long (2502 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
[ 7921.568733] docker0: port 1(vethd38613f) entered disabled state
[ 7921.595691] docker0: port 1(vethd38613f) entered disabled state
[ 7921.600166] device vethd38613f left promiscuous mode
[ 7921.600185] docker0: port 1(vethd38613f) entered disabled state
[ 8389.248075] docker0: port 1(vethb254554) entered blocking state
[ 8389.248083] docker0: port 1(vethb254554) entered disabled state
[ 8389.248269] device vethb254554 entered promiscuous mode
[ 8389.248627] IPv6: ADDRCONF(NETDEV_UP): vethb254554: link is not ready
[ 8389.732078] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 8389.732182] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 8389.732261] IPv6: ADDRCONF(NETDEV_CHANGE): vethb254554: link becomes ready
[ 8389.732430] docker0: port 1(vethb254554) entered blocking state
[ 8389.732435] docker0: port 1(vethb254554) entered forwarding state
[ 8390.123741] docker0: port 1(vethb254554) entered disabled state
[ 8390.145688] docker0: port 1(vethb254554) entered disabled state
[ 8390.150204] device vethb254554 left promiscuous mode
[ 8390.150224] docker0: port 1(vethb254554) entered disabled state

  • Driver information from nvidia-smi -a

==============NVSMI LOG==============

Timestamp : Thu Mar 12 14:29:39 2020
Driver Version : 430.50
CUDA Version : 10.1

Attached GPUs : 1
GPU 00000000:03:00.0
Product Name : Quadro M5000
Product Brand : Quadro
Display Mode : Enabled
Display Active : Enabled
Persistence Mode : Disabled
Accounting Mode : Disabled
Accounting Mode Buffer Size : 4000
Driver Model
Current : N/A
Pending : N/A
Serial Number : 0321116068305
GPU UUID : GPU-76d8aa9c-6b5c-49f7-0764-4c51b5daf712
Minor Number : 0
VBIOS Version : 84.04.88.00.05
MultiGPU Board : No
Board ID : 0x300
GPU Part Number : N/A
Inforom Version
Image Version : G400.0500.00.04
OEM Object : 1.1
ECC Object : 3.0
Power Management Object : N/A
GPU Operation Mode
Current : N/A
Pending : N/A
GPU Virtualization Mode
Virtualization Mode : None
Host VGPU Mode : N/A
IBMNPU
Relaxed Ordering Mode : N/A
PCI
Bus : 0x03
Device : 0x00
Domain : 0x0000
Device Id : 0x13F010DE
Bus Id : 00000000:03:00.0
Sub System Id : 0x115210DE
GPU Link Info
PCIe Generation
Max : 3
Current : 1
Link Width
Max : 16x
Current : 16x
Bridge Chip
Type : N/A
Firmware : N/A
Replays Since Reset : 0
Replay Number Rollovers : 0
Tx Throughput : 1000 KB/s
Rx Throughput : 1000 KB/s
Fan Speed : 39 %
Performance State : P5
Clocks Throttle Reasons
Idle : Not Active
Applications Clocks Setting : Not Active
SW Power Cap : Not Active
HW Slowdown : Not Active
HW Thermal Slowdown : N/A
HW Power Brake Slowdown : N/A
Sync Boost : Not Active
SW Thermal Slowdown : Not Active
Display Clock Setting : Not Active
FB Memory Usage
Total : 8126 MiB
Used : 394 MiB
Free : 7732 MiB
BAR1 Memory Usage
Total : 256 MiB
Used : 6 MiB
Free : 250 MiB
Compute Mode : Default
Utilization
Gpu : 0 %
Memory : 2 %
Encoder : 0 %
Decoder : 0 %
Encoder Stats
Active Sessions : 0
Average FPS : 0
Average Latency : 0
FBC Stats
Active Sessions : 0
Average FPS : 0
Average Latency : 0
Ecc Mode
Current : Disabled
Pending : Disabled
ECC Errors
Volatile
Single Bit
Device Memory : N/A
Register File : N/A
L1 Cache : N/A
L2 Cache : N/A
Texture Memory : N/A
Texture Shared : N/A
CBU : N/A
Total : N/A
Double Bit
Device Memory : N/A
Register File : N/A
L1 Cache : N/A
L2 Cache : N/A
Texture Memory : N/A
Texture Shared : N/A
CBU : N/A
Total : N/A
Aggregate
Single Bit
Device Memory : N/A
Register File : N/A
L1 Cache : N/A
L2 Cache : N/A
Texture Memory : N/A
Texture Shared : N/A
CBU : N/A
Total : N/A
Double Bit
Device Memory : N/A
Register File : N/A
L1 Cache : N/A
L2 Cache : N/A
Texture Memory : N/A
Texture Shared : N/A
CBU : N/A
Total : N/A
Retired Pages
Single Bit ECC : N/A
Double Bit ECC : N/A
Pending Page Blacklist : N/A
Temperature
GPU Current Temp : 43 C
GPU Shutdown Temp : 105 C
GPU Slowdown Temp : 100 C
GPU Max Operating Temp : N/A
Memory Current Temp : N/A
Memory Max Operating Temp : N/A
Power Readings
Power Management : Supported
Power Draw : 20.28 W
Power Limit : 150.00 W
Default Power Limit : 150.00 W
Enforced Power Limit : 150.00 W
Min Power Limit : 10.00 W
Max Power Limit : 150.00 W
Clocks
Graphics : 645 MHz
SM : 645 MHz
Memory : 810 MHz
Video : 594 MHz
Applications Clocks
Graphics : 861 MHz
Memory : 3305 MHz
Default Applications Clocks
Graphics : 861 MHz
Memory : 3305 MHz
Max Clocks
Graphics : 1126 MHz
SM : 1126 MHz
Memory : 3305 MHz
Video : 1036 MHz
Max Customer Boost Clocks
Graphics : N/A
Clock Policy
Auto Boost : On
Auto Boost Default : On
Processes
Process ID : 5393
Type : G
Name : /usr/bin/X
Used GPU Memory : 146 MiB
Process ID : 6049
Type : G
Name : /usr/bin/gnome-shell
Used GPU Memory : 68 MiB
Process ID : 7295
Type : G
Name : /opt/google/chrome/chrome --type=gpu-process --field-trial-handle=18074400901091367377,16901912342755136609,131072 --enable-crash-reporter=c3a06803-8188-4e2b-aa77-71b9353478a7, --gpu-preferences=KAAAAAAAAAAgAAAgAAAAAAAAYAAAAAAAEAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAA --service-request-channel-token=6400751660685336161
Used GPU Memory : 141 MiB
Process ID : 21666
Type : G
Name : /usr/lib/slack/slack --type=gpu-process --field-trial-handle=12384906358617047773,16696484511359812753,131072 --disable-features=LayoutNG,SpareRendererForSitePerProcess --gpu-preferences=IAAAAAAAAAAgAAAgAAAAAAAAYAAAAAAACAAAAAAAAAAIAAAAAAAAAA== --service-request-channel-token=9725958383469491855
Used GPU Memory : 31 MiB

  • Docker version from docker version

Client: Docker Engine - Community
Version: 19.03.5
API version: 1.40
Go version: go1.12.12
Git commit: 633a0ea
Built: Wed Nov 13 07:25:41 2019
OS/Arch: linux/amd64
Experimental: false
Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.40/version: dial unix /var/run/docker.sock: connect: permission denied

  • NVIDIA packages version from dpkg -l '*nvidia*' or rpm -qa '*nvidia*'

nvidia-x11-drv-libs-430.50-1.el7_7.elrepo.x86_64
yum-plugin-nvidia-1.0.2-1.el7.elrepo.noarch
nvidia-container-toolkit-1.0.5-2.x86_64
libnvidia-container1-1.0.7-1.x86_64
nvidia-x11-drv-430.50-1.el7_7.elrepo.x86_64
kmod-nvidia-430.50-1.el7_7.elrepo.x86_64
libnvidia-container-tools-1.0.7-1.x86_64

  • NVIDIA container library version from nvidia-container-cli -V

version: 1.0.7
build date: 2020-01-21T19:05+0000
build revision: b71f87c04b8eca8a16bf60995506c35c937347d9
build compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-39)
build platform: x86_64
build flags: -D_GNU_SOURCE -D_FORTIFY_SOURCE=2 -DNDEBUG -std=gnu11 -O2 -g -fdata-sections -ffunction-sections -fstack-protector -fno-strict-aliasing -fvisibility=hidden -Wall -Wextra -Wcast-align -Wpointer-arith -Wmissing-prototypes -Wnonnull -Wwrite-strings -Wlogical-op -Wformat=2 -Wmissing-format-attribute -Winit-self -Wshadow -Wstrict-prototypes -Wunreachable-code -Wconversion -Wsign-conversion -Wno-unknown-warning-option -Wno-format-extra-args -Wno-gnu-alignof-expression -Wl,-zrelro -Wl,-znow -Wl,-zdefs -Wl,--gc-sections

  • NVIDIA container library logs (see troubleshooting)

  • Docker command, image and tag used

@RenaudWasTaken
Copy link
Contributor

I'm a bit confused with what you are doing but here is some advice:

  • If you want to set the default runtime (or a runtime) you will need the nvidia-docker2 package
  • You shouldn't be messing with runtimes if you have --gpus on your CLI

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants