You are not logged in.

#1 2017-09-24 23:20:49

areuz
Member
Registered: 2016-09-16
Posts: 60

QEMU GPU Passthrough IOMMU group error persists

I just got my HP Spectre x360 (bl102nc), and I'm trying to set up QEMU with KVM, IOMMU and a GPU passthrough for the MX150 GPU.

After 2 days of work, I did this:
Enable IOMMU
Install linux-vfio

Set following GRUB kernel parameters:

linux /vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet intel_iommu=on pcie_acs_override=id:10de:1d10 loglevel=3
initrd  /initramfs-linux-vfio.img

I also tried override=downstream

Installed ovmf_git and copied files (vars_x64 and code_x64) to /media/Storage/Virtual/

And finally my QEMU launch script (I'm not going the virt-manager route, because I though this would be easier to debug - which I hope it still will be)

 qemu-system-x86_64 \
  -boot order=d \
  -drive if=pflash,format=raw,file=/media/Storage/Virtual/ovmf_vars_x64.bin \
  -drive if=pflash,format=raw,readonly,file=/media/Storage/Virtual/ovmf_code_x64.bin \
  -drive file="/media/Storage/Virtual/win_10.qcow2",aio=native,cache.direct=on \
  -cdrom "/media/Storage/Virtual/Win10_1703_SingleLang_EnglishInternational_x64.iso" \
  -m 8192 \
  -smp 4,sockets=1,cores=4,threads=1 \
  -cpu host,kvm=off,hv_relaxed,hv_spinlocks=0x1fff,hv_vapic,hv_time \
  -vga virtio -display gtk,gl=on \
  -machine type=q35,accel=kvm  \
  -enable-kvm \
  -device intel-iommu -usbdevice tablet \
  -device vfio-pci,host=01:00.0 \
  -soundhw hda \
  -net nic -net user \
  | sudo tee /var/log/WinQEMU.log

Launched as:

sudo qemu.sh

Also, I'm doing this before installing Windows, but I don't think that matters (I just have it set as cdrom ISO and default boot).

The error I'm getting is:

qemu-system-x86_64: -device vfio-pci,host=01:00.0: vfio error: 0000:01:00.0: group 7 is not viable
Please ensure all devices within the iommu_group are bound to their vfio bus driver.

Which is exactly what i was getting before installing and switching to linux-vfio.

Any suggestions and requests are welcome, I would really appreciate it! smile

P.S.: One thing I should mention, I didn't install the nvidia driver, so I don't have to blacklist it; dunno if that is a problem;

EDIT: Some more info I realized might help
The GPU ID I'm mentioning is from:

lspci -nn | grep NVIDIA
01:00.0 3D controller [0302]: NVIDIA Corporation GP108 [GeForce MX150] [10de:1d10] (rev a1)

And of course I followed some of the basic steps from:
https://wiki.archlinux.org/index.php/PC … h_via_OVMF & https://dominicm.com/gpu-passthrough-qemu-arch-linux/
like:

#/etc/modprobe.d/vfio.conf
options vfio-pci ids=10de:1d10
#/etc/mkinitcpio.conf
MODULES="vfio vfio_iommu_type1 vfio_pci vfio_virqfd i915"
HOOKS="base udev autodetect modconf block filesystems keyboard fsck"

Last edited by areuz (2017-09-24 23:58:30)


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#2 2017-09-25 09:57:00

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

Still haven't been able to solve this issue, some more info though:

#lspci -k
#Well, some of it:
00:00.0 Host bridge: Intel Corporation Device 5914 (rev 08)
	Subsystem: Hewlett-Packard Company Device 827f
00:02.0 VGA compatible controller: Intel Corporation Device 5917 (rev 07)
	Subsystem: Hewlett-Packard Company Device 827f
	Kernel driver in use: i915
	Kernel modules: i915
01:00.0 3D controller: NVIDIA Corporation GP108 [GeForce MX150] (rev a1)
	Subsystem: Hewlett-Packard Company GP108 [GeForce MX150]
	Kernel driver in use: vfio-pci <---------------- this was actually important
	Kernel modules: nouveau

Other devices on the same group:

IOMMU Group 7 00:1c.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #1 [8086:9d10] (rev f1)
IOMMU Group 7 00:1c.4 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 [8086:9d14] (rev f1)
IOMMU Group 7 00:1c.6 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #7 [8086:9d16] (rev f1)
IOMMU Group 7 00:1c.7 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #8 [8086:9d17] (rev f1)
IOMMU Group 7 01:00.0 3D controller [0302]: NVIDIA Corporation GP108 [GeForce MX150] [10de:1d10] (rev a1)
IOMMU Group 7 3b:00.0 Network controller [0280]: Intel Corporation Wireless 8265 / 8275 [8086:24fd] (rev 78)
IOMMU Group 7 3c:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader [10ec:525a] (rev 01)

Just to clarify, I'm using the correct kernel:

#uname -r
4.12.13-1-vfio

Found a way to check if the ACS override is recognized and used

#dmesg | grep IOMMU
[    0.000000] Warning: PCIe ACS overrides enabled; This may allow non-IOMMU protected peer-to-peer DMA
[    0.000000] DMAR: IOMMU enabled
[    0.036961] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1

If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#3 2017-09-25 12:20:28

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,958

Re: QEMU GPU Passthrough IOMMU group error persists

You may have overlooked a device that also needs to be handled by vfio, please post full  lspci -nnk


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#4 2017-09-25 13:47:19

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

What do you mean another device?

#lspci -nnk

00:00.0 Host bridge [0600]: Intel Corporation Device [8086:5914] (rev 08)
	Subsystem: Hewlett-Packard Company Device [103c:827f]
00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:5917] (rev 07)
	Subsystem: Hewlett-Packard Company Device [103c:827f]
	Kernel driver in use: i915
	Kernel modules: i915
00:04.0 Signal processing controller [1180]: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem [8086:1903] (rev 08)
	Subsystem: Hewlett-Packard Company Skylake Processor Thermal Subsystem [103c:827f]
	Kernel driver in use: proc_thermal
	Kernel modules: processor_thermal_device
00:13.0 Non-VGA unclassified device [0000]: Intel Corporation Device [8086:9d35] (rev 21)
	Subsystem: Hewlett-Packard Company Device [103c:827f]
	Kernel driver in use: intel_ish_ipc
	Kernel modules: intel_ish_ipc
00:14.0 USB controller [0c03]: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller [8086:9d2f] (rev 21)
	Subsystem: Hewlett-Packard Company Sunrise Point-LP USB 3.0 xHCI Controller [103c:827f]
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci
00:14.2 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Thermal subsystem [8086:9d31] (rev 21)
	Subsystem: Hewlett-Packard Company Sunrise Point-LP Thermal subsystem [103c:827f]
	Kernel driver in use: intel_pch_thermal
	Kernel modules: intel_pch_thermal
00:15.0 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #0 [8086:9d60] (rev 21)
	Subsystem: Hewlett-Packard Company Sunrise Point-LP Serial IO I2C Controller [103c:827f]
	Kernel driver in use: intel-lpss
	Kernel modules: intel_lpss_pci
00:16.0 Communication controller [0780]: Intel Corporation Sunrise Point-LP CSME HECI #1 [8086:9d3a] (rev 21)
	Subsystem: Hewlett-Packard Company Sunrise Point-LP CSME HECI [103c:827f]
	Kernel driver in use: mei_me
	Kernel modules: mei_me
00:1c.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #1 [8086:9d10] (rev f1)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.4 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 [8086:9d14] (rev f1)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.6 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #7 [8086:9d16] (rev f1)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1c.7 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #8 [8086:9d17] (rev f1)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1d.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #9 [8086:9d18] (rev f1)
	Kernel driver in use: pcieport
	Kernel modules: shpchp
00:1f.0 ISA bridge [0601]: Intel Corporation Device [8086:9d4e] (rev 21)
	Subsystem: Hewlett-Packard Company Device [103c:827f]
00:1f.2 Memory controller [0580]: Intel Corporation Sunrise Point-LP PMC [8086:9d21] (rev 21)
	Subsystem: Hewlett-Packard Company Sunrise Point-LP PMC [103c:827f]
	Kernel driver in use: intel_pmc_core
00:1f.3 Audio device [0403]: Intel Corporation Device [8086:9d71] (rev 21)
	Subsystem: Hewlett-Packard Company Device [103c:827f]
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel, snd_soc_skl
00:1f.4 SMBus [0c05]: Intel Corporation Sunrise Point-LP SMBus [8086:9d23] (rev 21)
	Subsystem: Hewlett-Packard Company Sunrise Point-LP SMBus [103c:827f]
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801
01:00.0 3D controller [0302]: NVIDIA Corporation GP108 [GeForce MX150] [10de:1d10] (rev a1)
	Subsystem: Hewlett-Packard Company GP108 [GeForce MX150] [103c:827f]
	Kernel driver in use: vfio-pci
	Kernel modules: nouveau
3b:00.0 Network controller [0280]: Intel Corporation Wireless 8265 / 8275 [8086:24fd] (rev 78)
	Subsystem: Intel Corporation Wireless 8265 / 8275 [8086:1010]
	Kernel driver in use: iwlwifi
	Kernel modules: iwlwifi
3c:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader [10ec:525a] (rev 01)
	Subsystem: Hewlett-Packard Company RTS525A PCI Express Card Reader [103c:827f]
	Kernel driver in use: rtsx_pci
	Kernel modules: rtsx_pci
3d:00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961 [144d:a804]
	Subsystem: Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961 [144d:a801]
	Kernel driver in use: nvme
	Kernel modules: nvme

If you mean another device in (in my case) group 7, then yes... but I don't want/can't pass through those devices - that is why I went with rebuilding the kernel using ACS Patch from linux-vfio package.
(Script that I found somewhere I can't remeber):

for d in /sys/kernel/iommu_groups/*/devices/*; do
  n=${d#*/iommu_groups/*};
  n=${n%%/*};
  printf 'IOMMU Group %s ' "$n";
  lspci -nns "${d##*/}";
done;

## OUTPUT

IOMMU Group 0 00:00.0 Host bridge [0600]: Intel Corporation Device [8086:5914] (rev 08)
IOMMU Group 1 00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:5917] (rev 07)
IOMMU Group 2 00:04.0 Signal processing controller [1180]: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem [8086:1903] (rev 08)
IOMMU Group 3 00:13.0 Non-VGA unclassified device [0000]: Intel Corporation Device [8086:9d35] (rev 21)
IOMMU Group 4 00:14.0 USB controller [0c03]: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller [8086:9d2f] (rev 21)
IOMMU Group 4 00:14.2 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Thermal subsystem [8086:9d31] (rev 21)
IOMMU Group 5 00:15.0 Signal processing controller [1180]: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #0 [8086:9d60] (rev 21)
IOMMU Group 6 00:16.0 Communication controller [0780]: Intel Corporation Sunrise Point-LP CSME HECI #1 [8086:9d3a] (rev 21)
IOMMU Group 7 00:1c.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #1 [8086:9d10] (rev f1)
IOMMU Group 7 00:1c.4 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 [8086:9d14] (rev f1)
IOMMU Group 7 00:1c.6 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #7 [8086:9d16] (rev f1)
IOMMU Group 7 00:1c.7 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #8 [8086:9d17] (rev f1)
IOMMU Group 7 01:00.0 3D controller [0302]: NVIDIA Corporation GP108 [GeForce MX150] [10de:1d10] (rev a1)
IOMMU Group 7 3b:00.0 Network controller [0280]: Intel Corporation Wireless 8265 / 8275 [8086:24fd] (rev 78)
IOMMU Group 7 3c:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader [10ec:525a] (rev 01)
IOMMU Group 8 00:1d.0 PCI bridge [0604]: Intel Corporation Sunrise Point-LP PCI Express Root Port #9 [8086:9d18] (rev f1)
IOMMU Group 8 3d:00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961 [144d:a804]
IOMMU Group 9 00:1f.0 ISA bridge [0601]: Intel Corporation Device [8086:9d4e] (rev 21)
IOMMU Group 9 00:1f.2 Memory controller [0580]: Intel Corporation Sunrise Point-LP PMC [8086:9d21] (rev 21)
IOMMU Group 9 00:1f.3 Audio device [0403]: Intel Corporation Device [8086:9d71] (rev 21)
IOMMU Group 9 00:1f.4 SMBus [0c05]: Intel Corporation Sunrise Point-LP SMBus [8086:9d23] (rev 21)

Last edited by areuz (2017-09-25 13:49:18)


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#5 2017-09-26 11:23:55

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,958

Re: QEMU GPU Passthrough IOMMU group error persists

I was thinking about a HDMI audio device, but couldn't remember if nvidia does use a separate device for it (AMD does) .

That output is useful, you prob found it here : https://wiki.archlinux.org/index.php/PC … _are_valid .

No sign of a device you overlooked , try

pcie_acs_override = id:10de:1d10

Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#6 2017-09-26 12:05:22

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

Ehm, dunno if you missed it, or wanted me to add a space between the equals, but I already tried all of those combinations... still the same error message.

Oh, and I was wondering if the ACS patch doesn't only apply to PCIe devices - the MX150 is PCIe compatible, I just don't know ho HP implemented it in this notebook.


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#7 2017-09-26 12:37:57

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,958

Re: QEMU GPU Passthrough IOMMU group error persists

I missed that you had tried it, sorry.

The userguide for your laptop doesn't give details, but the maintenance and repair guide does show some , see http://h10032.www1.hp.com/ctg/Manual/c05357610
Your nvidia card is : NVIDIA N17S-GTR-S (GeForce MX150) with 2048 MB of dedicated video memory

The system board replacement section indicates there should be a non-windows version of this laptop.
Unfortunately no block diagram of the motherboard or the intel chipset used .

You have configured intel-ucode and installed most recent uefi firmware ?

please post full dmesg / journalctl .


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#8 2017-09-26 12:46:42

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

No I have not - honestly because I'm not at all skilled in microcode/firmware tweaking.
If you can point me to a wiki/guide, that would be great.

Anyway, here are the dmesg and journalctl outputs right after boot & starting Xserver (with i3wm):
$dmesg

[areuz@Qbit ~]$ dmesg 
[    0.000000] Linux version 4.12.13-1-vfio (areuz@Qbit) (gcc version 7.2.0 (GCC) ) #1 SMP PREEMPT Sun Sep 24 23:52:11 CEST 2017
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet splash intel_iommu=on pcie_acs_override=downstream loglevel=3
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000061ab0fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000061ab1000-0x0000000061ab1fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000061ab2000-0x0000000061ab2fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000061ab3000-0x0000000069b25fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000069b26000-0x000000006a9ebfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006a9ec000-0x000000006aa4bfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006aa4c000-0x000000006aefbfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006aefc000-0x000000006b315fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006b316000-0x000000006b3fefff] type 20
[    0.000000] BIOS-e820: [mem 0x000000006b3ff000-0x000000006b3fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006b400000-0x000000006fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000048effffff] usable
[    0.000000] Warning: PCIe ACS overrides enabled; This may allow non-IOMMU protected peer-to-peer DMA
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0x6aa07000  ACPI=0x6aa07000  SMBIOS=0x6b284000  SMBIOS 3.0=0x6b283000  ESRT=0x6794bc18  MEMATTR=0x68442018 
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: HP HP Spectre x360 Convertible 15-bl1XX/827F, BIOS F.20 06/28/2017
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x48f000 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-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0080000000 mask 7F80000000 uncachable
[    0.000000]   1 base 0070000000 mask 7FF0000000 uncachable
[    0.000000]   2 base 006C000000 mask 7FFC000000 uncachable
[    0.000000]   3 base 006B800000 mask 7FFF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0x6b400 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x000000006794bc18 to 0x000000006794bc50.
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff9c73c0097000] 97000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x2c5d5f000, 0x2c5d5ffff] PGTABLE
[    0.000000] BRK [0x2c5d60000, 0x2c5d60fff] PGTABLE
[    0.000000] BRK [0x2c5d61000, 0x2c5d61fff] PGTABLE
[    0.000000] BRK [0x2c5d62000, 0x2c5d62fff] PGTABLE
[    0.000000] BRK [0x2c5d63000, 0x2c5d63fff] PGTABLE
[    0.000000] BRK [0x2c5d64000, 0x2c5d64fff] PGTABLE
[    0.000000] BRK [0x2c5d65000, 0x2c5d65fff] PGTABLE
[    0.000000] BRK [0x2c5d66000, 0x2c5d66fff] PGTABLE
[    0.000000] BRK [0x2c5d67000, 0x2c5d67fff] PGTABLE
[    0.000000] Secure boot could not be determined
[    0.000000] RAMDISK: [mem 0x3703d000-0x37815fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000006AA07000 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x000000006AA070D0 00011C (v01 HPQOEM SLIC-MPC 01072009 HP   00010013)
[    0.000000] ACPI: FACP 0x000000006AA3B050 000114 (v06 HPQOEM SLIC-MPC 01072009 HP   00010013)
[    0.000000] ACPI: DSDT 0x000000006AA07278 033DD2 (v02 HPQOEM 827F     01072009 ACPI 20160422)
[    0.000000] ACPI: FACS 0x000000006AEC9F00 000040
[    0.000000] ACPI: APIC 0x000000006AA3B168 0000BC (v03 HPQOEM 827F     01072009 HP   00010013)
[    0.000000] ACPI: FPDT 0x000000006AA3B228 000044 (v01 HPQOEM 827F     01072009 HP   00010013)
[    0.000000] ACPI: FIDT 0x000000006AA3B270 00009C (v01 HPQOEM 827F     01072009 HP   00010013)
[    0.000000] ACPI: MCFG 0x000000006AA3B310 00003C (v01 HPQOEM 827F     01072009 HP   00000097)
[    0.000000] ACPI: SSDT 0x000000006AA3B350 000359 (v01 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: SSDT 0x000000006AA3B6B0 0065C0 (v02 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: MSDM 0x000000006AA41C70 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00010013)
[    0.000000] ACPI: SSDT 0x000000006AA41CC8 003147 (v02 HPQOEM 827F     00003000 ACPI 20160422)
[    0.000000] ACPI: HPET 0x000000006AA44E10 000038 (v01 HPQOEM 827F     00000001 HP   0000005F)
[    0.000000] ACPI: SSDT 0x000000006AA44E48 000024 (v02 HPQOEM 827F     00000000 ACPI 20160422)
[    0.000000] ACPI: UEFI 0x000000006AA44E70 000042 (v01 HPQOEM 827F     00000002 HP   01000013)
[    0.000000] ACPI: SSDT 0x000000006AA44EB8 000EDE (v02 HPQOEM 827F     00003000 ACPI 20160422)
[    0.000000] ACPI: LPIT 0x000000006AA45D98 000094 (v01 HPQOEM 827F     00000000 HP   0000005F)
[    0.000000] ACPI: SSDT 0x000000006AA45E30 000141 (v02 HPQOEM 827F     00000000 ACPI 20160422)
[    0.000000] ACPI: SSDT 0x000000006AA45F78 00029F (v02 HPQOEM 827F     00000000 ACPI 20160422)
[    0.000000] ACPI: SSDT 0x000000006AA46218 0011E7 (v02 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: SSDT 0x000000006AA47400 0002B6 (v02 HPQOEM 827F     00000000 ACPI 20160422)
[    0.000000] ACPI: DBGP 0x000000006AA476B8 000034 (v01 HPQOEM 827F     00000002 HP   0000005F)
[    0.000000] ACPI: DBG2 0x000000006AA476F0 000054 (v00 HPQOEM 827F     00000002 HP   0000005F)
[    0.000000] ACPI: SSDT 0x000000006AA47748 000D86 (v02 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: SSDT 0x000000006AA484D0 000715 (v02 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: SSDT 0x000000006AA48BE8 00039B (v02 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: DMAR 0x000000006AA48F88 0000CC (v01 HPQOEM 827F     00000001 HP   00000001)
[    0.000000] ACPI: NHLT 0x000000006AA49058 00002D (v00 HPQOEM 827F     00000002 HP   01000013)
[    0.000000] ACPI: SSDT 0x000000006AA49088 000066 (v01 HPQOEM 827F     00000001 ACPI 20160422)
[    0.000000] ACPI: TPM2 0x000000006AA490F0 000034 (v03 HPQOEM 827F     00000001 HP   00000000)
[    0.000000] ACPI: SSDT 0x000000006AA49128 001CA9 (v01 HPQOEM 827F     00001000 ACPI 20160422)
[    0.000000] ACPI: ASF! 0x000000006AA4ADD8 0000A0 (v32 HPQOEM 827F     00000001 HP   000F4240)
[    0.000000] ACPI: WSMT 0x000000006AA4AE78 000028 (v01 HPQOEM 827F     01072009 HP   00010013)
[    0.000000] ACPI: BGRT 0x000000006AA4AEA0 000038 (v01 HPQOEM 827F     01072009 HP   00010013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000048effffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x48effb000-0x48effffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000048effffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.000000]   node   0: [mem 0x0000000000059000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000061ab0fff]
[    0.000000]   node   0: [mem 0x0000000061ab3000-0x0000000069b25fff]
[    0.000000]   node   0: [mem 0x000000006b3ff000-0x000000006b3fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000048effffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000048effffff]
[    0.000000] On node 0 totalpages: 4164289
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 23 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 6701 pages used for memmap
[    0.000000]   DMA32 zone: 428837 pages, LIFO batch:31
[    0.000000]   Normal zone: 58304 pages used for memmap
[    0.000000]   Normal zone: 3731456 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics memory at 0x000000006c000000-0x000000006fffffff
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    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: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x61ab1000-0x61ab1fff]
[    0.000000] PM: Registered nosave memory: [mem 0x61ab2000-0x61ab2fff]
[    0.000000] PM: Registered nosave memory: [mem 0x69b26000-0x6a9ebfff]
[    0.000000] PM: Registered nosave memory: [mem 0x6a9ec000-0x6aa4bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x6aa4c000-0x6aefbfff]
[    0.000000] PM: Registered nosave memory: [mem 0x6aefc000-0x6b315fff]
[    0.000000] PM: Registered nosave memory: [mem 0x6b316000-0x6b3fefff]
[    0.000000] PM: Registered nosave memory: [mem 0x6b400000-0x6fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x70000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0x70000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 35 pages/cpu @ffff9c784ec00000 s106328 r8192 d28840 u262144
[    0.000000] pcpu-alloc: s106328 r8192 d28840 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4099197
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet splash intel_iommu=on pcie_acs_override=downstream loglevel=3
[    0.000000] DMAR: IOMMU enabled
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 16275332K/16657156K available (6543K kernel code, 1124K rwdata, 2048K rodata, 1324K init, 912K bss, 381824K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] ftrace: allocating 27933 entries in 110 pages
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS:8448 nr_irqs:2048 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.000000] hpet clockevent registered
[    0.003333] tsc: Detected 2000.000 MHz processor
[    0.003333] Calibrating delay loop (skipped), value calculated using timer frequency.. 3985.00 BogoMIPS (lpj=6640000)
[    0.003333] pid_max: default: 32768 minimum: 301
[    0.003333] ACPI: Core revision 20170303
[    0.032382] ACPI: 15 ACPI AML tables successfully acquired and loaded
[    0.033061] Security Framework initialized
[    0.033062] Yama: becoming mindful.
[    0.033540] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.035364] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.036108] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.036115] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.036260] CPU: Physical Processor ID: 0
[    0.036260] CPU: Processor Core ID: 0
[    0.036263] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.036263] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.036267] mce: CPU supports 10 MCE banks
[    0.036273] CPU0: Thermal monitoring enabled (TM1)
[    0.036286] process: using mwait in idle threads
[    0.036287] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.036287] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.036390] Freeing SMP alternatives memory: 24K
[    0.037194] smpboot: Max logical packages: 2
[    0.037198] DMAR: Host address width 39
[    0.037199] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.037203] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.037203] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.037205] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.037206] DMAR: RMRR base: 0x0000006a142000 end: 0x0000006a161fff
[    0.037207] DMAR: RMRR base: 0x0000006b800000 end: 0x0000006fffffff
[    0.037208] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.037209] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.037209] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.037210] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[    0.037210] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[    0.038544] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.038545] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.043133] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.076185] TSC deadline timer enabled
[    0.076190] smpboot: CPU0: Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (family: 0x6, model: 0x8e, stepping: 0xa)
[    0.086694] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.086746] ... version:                4
[    0.086746] ... bit width:              48
[    0.086746] ... generic registers:      4
[    0.086747] ... value mask:             0000ffffffffffff
[    0.086747] ... max period:             00007fffffffffff
[    0.086747] ... fixed-purpose events:   3
[    0.086747] ... event mask:             000000070000000f
[    0.106798] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.113343] smp: Bringing up secondary CPUs ...
[    0.140044] x86: Booting SMP configuration:
[    0.140049] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.883365] smp: Brought up 1 node, 8 CPUs
[    0.883365] smpboot: Total of 8 processors activated (31890.29 BogoMIPS)
[    0.886757] sched_clock: Marking stable (886666579, 0)->(889735232, -3068653)
[    0.887083] devtmpfs: initialized
[    0.887114] x86/mm: Memory block size: 128MB
[    0.889367] PM: Registering ACPI NVS region [mem 0x61ab1000-0x61ab1fff] (4096 bytes)
[    0.889368] PM: Registering ACPI NVS region [mem 0x6aa4c000-0x6aefbfff] (4915200 bytes)
[    0.889438] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.889444] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.889491] pinctrl core: initialized pinctrl subsystem
[    0.889592] RTC time: 12:46:58, date: 09/26/17
[    0.890351] NET: Registered protocol family 16
[    0.890470] cpuidle: using governor ladder
[    0.890485] cpuidle: using governor menu
[    0.890486] PCCT header not found.
[    0.890523] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.890524] ACPI: bus type PCI registered
[    0.890525] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.890575] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.890576] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.890584] PCI: Using configuration type 1 for base access
[    0.891214] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.891214] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.891347] ACPI: Added _OSI(Module Device)
[    0.891347] ACPI: Added _OSI(Processor Device)
[    0.891348] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.891348] ACPI: Added _OSI(Processor Aggregator Device)
[    0.897271] ACPI: Executed 36 blocks of module-level executable AML code
[    0.923770] ACPI: Dynamic OEM Table Load:
[    0.923780] ACPI: SSDT 0xFFFF9C783BC24000 0005CD (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    0.923974] ACPI: Executed 1 blocks of module-level executable AML code
[    0.924079] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.925792] ACPI: Dynamic OEM Table Load:
[    0.925800] ACPI: SSDT 0xFFFF9C783BF86800 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    0.925968] ACPI: Executed 1 blocks of module-level executable AML code
[    0.926186] ACPI: Dynamic OEM Table Load:
[    0.926190] ACPI: SSDT 0xFFFF9C783BF79600 000115 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160422)
[    0.926307] ACPI: Executed 1 blocks of module-level executable AML code
[    0.926389] ACPI: Dynamic OEM Table Load:
[    0.926393] ACPI: SSDT 0xFFFF9C783BF7B200 0001A4 (v02 PmRef  HwpLvt   00003000 INTL 20160422)
[    0.926506] ACPI: Executed 1 blocks of module-level executable AML code
[    0.926907] ACPI: Dynamic OEM Table Load:
[    0.926913] ACPI: SSDT 0xFFFF9C783BC22000 00065C (v02 PmRef  ApIst    00003000 INTL 20160422)
[    0.927284] ACPI: Executed 1 blocks of module-level executable AML code
[    0.927450] ACPI: Dynamic OEM Table Load:
[    0.927455] ACPI: SSDT 0xFFFF9C783BF79A00 000197 (v02 PmRef  ApHwp    00003000 INTL 20160422)
[    0.927590] ACPI: Executed 1 blocks of module-level executable AML code
[    0.927766] ACPI: Dynamic OEM Table Load:
[    0.927770] ACPI: SSDT 0xFFFF9C783BF78400 00018A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    0.927901] ACPI: Executed 1 blocks of module-level executable AML code
[    0.931013] ACPI : EC: EC started
[    0.931014] ACPI : EC: interrupt blocked
[    0.961435] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
[    0.961436] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.961437] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
[    0.961437] ACPI: Interpreter enabled
[    0.961467] ACPI: (supports S0 S3 S4 S5)
[    0.961468] ACPI: Using IOAPIC for interrupt routing
[    0.961492] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.965007] ACPI: Power Resource [WRST] (on)
[    0.965232] ACPI: Power Resource [WRST] (on)
[    0.965453] ACPI: Power Resource [WRST] (on)
[    0.965674] ACPI: Power Resource [WRST] (on)
[    0.965893] ACPI: Power Resource [WRST] (on)
[    0.965924] ACPI: Power Resource [PC01] (on)
[    0.966701] ACPI: Power Resource [WRST] (on)
[    0.966931] ACPI: Power Resource [WRST] (on)
[    0.967151] ACPI: Power Resource [WRST] (on)
[    0.967372] ACPI: Power Resource [WRST] (on)
[    0.967694] ACPI: Power Resource [WRST] (on)
[    0.968222] ACPI: Power Resource [WRST] (on)
[    0.968510] ACPI: Power Resource [WRST] (on)
[    0.968731] ACPI: Power Resource [WRST] (on)
[    0.968954] ACPI: Power Resource [WRST] (on)
[    0.969180] ACPI: Power Resource [WRST] (on)
[    0.969403] ACPI: Power Resource [WRST] (on)
[    0.970249] ACPI: Power Resource [WRST] (on)
[    0.970469] ACPI: Power Resource [WRST] (on)
[    0.970690] ACPI: Power Resource [WRST] (on)
[    0.981118] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.981121] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.981236] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME AER]
[    0.981342] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
[    0.981343] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.981798] PCI host bridge to bus 0000:00
[    0.981799] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.981800] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.981801] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.981801] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.981802] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.981803] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.981803] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[    0.981804] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.981804] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.981805] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.981805] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.981806] pci_bus 0000:00: root bus resource [mem 0x70000000-0xdfffffff window]
[    0.981806] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.981807] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.981813] pci 0000:00:00.0: [8086:5914] type 00 class 0x060000
[    0.982044] pci 0000:00:02.0: [8086:5917] type 00 class 0x030000
[    0.982052] pci 0000:00:02.0: reg 0x10: [mem 0xdb000000-0xdbffffff 64bit]
[    0.982056] pci 0000:00:02.0: reg 0x18: [mem 0x70000000-0x7fffffff 64bit pref]
[    0.982060] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.982160] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[    0.982169] pci 0000:00:04.0: reg 0x10: [mem 0xdd420000-0xdd427fff 64bit]
[    0.982333] pci 0000:00:13.0: [8086:9d35] type 00 class 0x000000
[    0.982349] pci 0000:00:13.0: reg 0x10: [mem 0xdd434000-0xdd434fff 64bit]
[    0.982504] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
[    0.982520] pci 0000:00:14.0: reg 0x10: [mem 0xdd410000-0xdd41ffff 64bit]
[    0.982580] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.982701] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.982724] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
[    0.982740] pci 0000:00:14.2: reg 0x10: [mem 0xdd433000-0xdd433fff 64bit]
[    0.982891] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
[    0.982933] pci 0000:00:15.0: reg 0x10: [mem 0xdd432000-0xdd432fff 64bit]
[    0.983121] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
[    0.983133] pci 0000:00:16.0: reg 0x10: [mem 0xdd431000-0xdd431fff 64bit]
[    0.983177] pci 0000:00:16.0: PME# supported from D3hot
[    0.983313] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
[    0.983362] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.983456] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.983483] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400
[    0.983540] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.983635] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.983656] pci 0000:00:1c.6: [8086:9d16] type 01 class 0x060400
[    0.983716] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.983812] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.983831] pci 0000:00:1c.7: [8086:9d17] type 01 class 0x060400
[    0.983890] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.983985] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.984004] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400
[    0.984056] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.984165] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.984210] pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100
[    0.984390] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
[    0.984397] pci 0000:00:1f.2: reg 0x10: [mem 0xdd42c000-0xdd42ffff]
[    0.984519] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380
[    0.984537] pci 0000:00:1f.3: reg 0x10: [mem 0xdd428000-0xdd42bfff 64bit]
[    0.984559] pci 0000:00:1f.3: reg 0x20: [mem 0xdd400000-0xdd40ffff 64bit]
[    0.984600] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.984735] pci 0000:00:1f.3: System wakeup disabled by ACPI
[    0.984760] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
[    0.984806] pci 0000:00:1f.4: reg 0x10: [mem 0xdd430000-0xdd4300ff 64bit]
[    0.984875] pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
[    0.985070] pci 0000:01:00.0: [10de:1d10] type 00 class 0x030200
[    0.985087] pci 0000:01:00.0: reg 0x10: [mem 0xdc000000-0xdcffffff]
[    0.985098] pci 0000:01:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.985107] pci 0000:01:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
[    0.985113] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.985120] pci 0000:01:00.0: reg 0x30: [mem 0xdd000000-0xdd07ffff pref]
[    0.985233] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.985257] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.985259] pci 0000:00:1c.0:   bridge window [io  0xe000-0xefff]
[    0.985261] pci 0000:00:1c.0:   bridge window [mem 0xdc000000-0xdd0fffff]
[    0.985264] pci 0000:00:1c.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
[    0.985330] pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
[    0.985334] pci 0000:00:1c.4:   bridge window [mem 0xc4000000-0xda0fffff]
[    0.985337] pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
[    0.985676] pci 0000:3b:00.0: [8086:24fd] type 00 class 0x028000
[    0.985714] pci 0000:3b:00.0: reg 0x10: [mem 0xdd300000-0xdd301fff 64bit]
[    0.985915] pci 0000:3b:00.0: PME# supported from D0 D3hot D3cold
[    0.986009] pci 0000:3b:00.0: System wakeup disabled by ACPI
[    0.993787] pci 0000:00:1c.6: PCI bridge to [bus 3b]
[    0.993793] pci 0000:00:1c.6:   bridge window [mem 0xdd300000-0xdd3fffff]
[    0.993994] pci 0000:3c:00.0: [10ec:525a] type 00 class 0xff0000
[    0.994027] pci 0000:3c:00.0: reg 0x14: [mem 0xdd200000-0xdd200fff]
[    0.994210] pci 0000:3c:00.0: supports D1 D2
[    0.994212] pci 0000:3c:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.994319] pci 0000:3c:00.0: System wakeup disabled by ACPI
[    1.003591] pci 0000:00:1c.7: PCI bridge to [bus 3c]
[    1.003596] pci 0000:00:1c.7:   bridge window [mem 0xdd200000-0xdd2fffff]
[    1.003722] pci 0000:3d:00.0: [144d:a804] type 00 class 0x010802
[    1.003749] pci 0000:3d:00.0: reg 0x10: [mem 0xdd100000-0xdd103fff 64bit]
[    1.003963] pci 0000:3d:00.0: System wakeup disabled by ACPI
[    1.013542] pci 0000:00:1d.0: PCI bridge to [bus 3d]
[    1.013547] pci 0000:00:1d.0:   bridge window [mem 0xdd100000-0xdd1fffff]
[    1.018435] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.018493] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    1.018548] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.018601] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.018655] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.018708] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.018761] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.018815] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    1.020331] ACPI: Enabled 5 GPEs in block 00 to 7F
[    1.020503] ACPI : EC: interrupt unblocked
[    1.020518] ACPI : EC: event unblocked
[    1.020530] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.020531] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    1.020613] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.020615] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.020619] pci 0000:00:02.0: vgaarb: bridge control possible
[    1.020620] vgaarb: loaded
[    1.020660] EDAC MC: Ver: 3.0.0
[    1.021122] Registered efivars operations
[    1.045029] PCI: Using ACPI for IRQ routing
[    1.068237] PCI: pci_cache_line_size set to 64 bytes
[    1.068950] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    1.068950] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    1.068951] e820: reserve RAM buffer [mem 0x61ab1000-0x63ffffff]
[    1.068951] e820: reserve RAM buffer [mem 0x69b26000-0x6bffffff]
[    1.068952] e820: reserve RAM buffer [mem 0x6b400000-0x6bffffff]
[    1.068953] e820: reserve RAM buffer [mem 0x48f000000-0x48fffffff]
[    1.068997] NetLabel: Initializing
[    1.068997] NetLabel:  domain hash size = 128
[    1.068998] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.069006] NetLabel:  unlabeled traffic allowed by default
[    1.069072] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.069075] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    1.071114] clocksource: Switched to clocksource hpet
[    1.076266] VFS: Disk quotas dquot_6.6.0
[    1.076278] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.076314] pnp: PnP ACPI init
[    1.076459] system 00:00: [io  0x0680-0x069f] has been reserved
[    1.076460] system 00:00: [io  0xffff] has been reserved
[    1.076461] system 00:00: [io  0xffff] has been reserved
[    1.076462] system 00:00: [io  0xffff] has been reserved
[    1.076462] system 00:00: [io  0x1800-0x18fe] has been reserved
[    1.076463] system 00:00: [io  0x164e-0x164f] has been reserved
[    1.076465] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.076527] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.076550] system 00:02: [io  0x1854-0x1857] has been reserved
[    1.076551] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.076612] pnp 00:03: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
[    1.076627] pnp 00:04: Plug and Play ACPI device, IDs SYN3244 SYN1e00 SYN0002 PNP0f13 (active)
[    1.076760] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.076761] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.076761] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.076762] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    1.076762] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.076763] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[    1.076764] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    1.076765] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    1.076765] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.076766] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[    1.076767] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.076790] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[    1.076791] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[    1.076791] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[    1.076792] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    1.076793] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[    1.076794] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    1.076794] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[    1.076795] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.076989] system 00:07: [io  0xff00-0xfffe] has been reserved
[    1.076990] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.077667] system 00:08: [mem 0xfe029000-0xfe029fff] has been reserved
[    1.077668] system 00:08: [mem 0xfe028000-0xfe028fff] has been reserved
[    1.077669] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.078792] pnp: PnP ACPI: found 9 devices
[    1.086232] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.086245] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 02-3a] add_size 1000
[    1.086262] pci 0000:00:1c.4: BAR 13: assigned [io  0x2000-0x2fff]
[    1.086263] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.086264] pci 0000:00:1c.0:   bridge window [io  0xe000-0xefff]
[    1.086267] pci 0000:00:1c.0:   bridge window [mem 0xdc000000-0xdd0fffff]
[    1.086269] pci 0000:00:1c.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
[    1.086272] pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
[    1.086274] pci 0000:00:1c.4:   bridge window [io  0x2000-0x2fff]
[    1.086276] pci 0000:00:1c.4:   bridge window [mem 0xc4000000-0xda0fffff]
[    1.086278] pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
[    1.086301] pci 0000:00:1c.6: PCI bridge to [bus 3b]
[    1.086303] pci 0000:00:1c.6:   bridge window [mem 0xdd300000-0xdd3fffff]
[    1.086308] pci 0000:00:1c.7: PCI bridge to [bus 3c]
[    1.086311] pci 0000:00:1c.7:   bridge window [mem 0xdd200000-0xdd2fffff]
[    1.086316] pci 0000:00:1d.0: PCI bridge to [bus 3d]
[    1.086318] pci 0000:00:1d.0:   bridge window [mem 0xdd100000-0xdd1fffff]
[    1.086323] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.086324] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.086324] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.086325] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    1.086326] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    1.086326] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    1.086327] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[    1.086327] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[    1.086328] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[    1.086328] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[    1.086329] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[    1.086330] pci_bus 0000:00: resource 15 [mem 0x70000000-0xdfffffff window]
[    1.086330] pci_bus 0000:00: resource 16 [mem 0xfd000000-0xfe7fffff window]
[    1.086331] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    1.086331] pci_bus 0000:01: resource 1 [mem 0xdc000000-0xdd0fffff]
[    1.086332] pci_bus 0000:01: resource 2 [mem 0xb0000000-0xc1ffffff 64bit pref]
[    1.086333] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    1.086333] pci_bus 0000:02: resource 1 [mem 0xc4000000-0xda0fffff]
[    1.086334] pci_bus 0000:02: resource 2 [mem 0x80000000-0xa1ffffff 64bit pref]
[    1.086334] pci_bus 0000:3b: resource 1 [mem 0xdd300000-0xdd3fffff]
[    1.086335] pci_bus 0000:3c: resource 1 [mem 0xdd200000-0xdd2fffff]
[    1.086335] pci_bus 0000:3d: resource 1 [mem 0xdd100000-0xdd1fffff]
[    1.086430] NET: Registered protocol family 2
[    1.086532] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    1.086663] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    1.086775] TCP: Hash tables configured (established 131072 bind 65536)
[    1.086799] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    1.086833] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    1.086881] NET: Registered protocol family 1
[    1.086888] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.087409] PCI: CLS 64 bytes, default 64
[    1.087428] Unpacking initramfs...
[    1.167381] Freeing initrd memory: 8036K
[    1.167408] DMAR: ACPI device "device:75" under DMAR at fed91000 as 00:15.0
[    1.167416] DMAR: No ATSR found
[    1.167942] DMAR: dmar0: Using Queued invalidation
[    1.168007] dmar0: Allocated order 8 PASID table.
[    1.168067] DMAR: dmar1: Using Queued invalidation
[    1.168194] DMAR: Setting RMRR:
[    1.168257] DMAR: Setting identity map for device 0000:00:02.0 [0x6b800000 - 0x6fffffff]
[    1.168283] DMAR: Setting identity map for device 0000:00:14.0 [0x6a142000 - 0x6a161fff]
[    1.168287] DMAR: Prepare 0-16MiB unity mapping for LPC
[    1.168307] DMAR: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
[    1.168463] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    1.168492] iommu: Adding device 0000:00:00.0 to group 0
[    1.168496] iommu: Adding device 0000:00:02.0 to group 1
[    1.168501] iommu: Adding device 0000:00:04.0 to group 2
[    1.168506] iommu: Adding device 0000:00:13.0 to group 3
[    1.168515] iommu: Adding device 0000:00:14.0 to group 4
[    1.168519] iommu: Adding device 0000:00:14.2 to group 4
[    1.168525] iommu: Adding device 0000:00:15.0 to group 5
[    1.168531] iommu: Adding device 0000:00:16.0 to group 6
[    1.168557] iommu: Adding device 0000:00:1c.0 to group 7
[    1.168569] iommu: Adding device 0000:00:1c.4 to group 7
[    1.168580] iommu: Adding device 0000:00:1c.6 to group 7
[    1.168591] iommu: Adding device 0000:00:1c.7 to group 7
[    1.168601] iommu: Adding device 0000:00:1d.0 to group 8
[    1.168612] iommu: Adding device 0000:00:1f.0 to group 9
[    1.168617] iommu: Adding device 0000:00:1f.2 to group 9
[    1.168622] iommu: Adding device 0000:00:1f.3 to group 9
[    1.168628] iommu: Adding device 0000:00:1f.4 to group 9
[    1.168633] iommu: Adding device 0000:01:00.0 to group 7
[    1.168639] iommu: Adding device 0000:3b:00.0 to group 7
[    1.168644] iommu: Adding device 0000:3c:00.0 to group 7
[    1.168650] iommu: Adding device 0000:3d:00.0 to group 8
[    1.169714] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x396d519840e, max_idle_ns: 881590569543 ns
[    1.169917] Scanning for low memory corruption every 60 seconds
[    1.170309] Initialise system trusted keyrings
[    1.170315] Key type blacklist registered
[    1.170356] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[    1.170914] zbud: loaded
[    1.171943] Key type asymmetric registered
[    1.171949] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    1.171991] io scheduler noop registered
[    1.171992] io scheduler deadline registered
[    1.172005] io scheduler cfq registered (default)
[    1.172006] io scheduler mq-deadline registered
[    1.172006] io scheduler kyber registered
[    1.172018] io scheduler bfq registered
[    1.172701] efifb: probing for efifb
[    1.172709] efifb: framebuffer at 0x70000000, using 1920k, total 1920k
[    1.172709] efifb: mode is 800x600x32, linelength=3200, pages=1
[    1.172709] efifb: scrolling: redraw
[    1.172710] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.173354] Console: switching to colour frame buffer device 100x37
[    1.173913] fb0: EFI VGA frame buffer device
[    1.173916] intel_idle: MWAIT substates: 0x11142120
[    1.173917] intel_idle: v0.4.1 model 0x8E
[    1.174211] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.174971] GHES: HEST is not enabled!
[    1.175024] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.175385] Linux agpgart interface v0.103
[    1.175766] rtc_cmos 00:01: RTC can wake from S4
[    1.176131] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    1.176222] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.176227] intel_pstate: Intel P-state driver initializing
[    1.177464] intel_pstate: HWP enabled
[    1.177764] ledtrig-cpu: registered to indicate activity on CPUs
[    1.177847] vlv2_plat_clk vlv2_plat_clk: vlv2_plat_clk initialized
[    1.177855] intel_pmc_core 0000:00:1f.2: enabling device (0000 -> 0002)
[    1.178008] NET: Registered protocol family 10
[    1.180816] Segment Routing with IPv6
[    1.180826] NET: Registered protocol family 17
[    1.181296] RAS: Correctable Errors collector initialized.
[    1.181312] microcode: sig=0x806ea, pf=0x80, revision=0x64
[    1.181690] microcode: Microcode Update Driver: v2.2.
[    1.182069] registered taskstats version 1
[    1.182072] Loading compiled-in X.509 certificates
[    1.182082] zswap: loaded using pool lzo/zbud
[    1.183457]   Magic number: 1:481:785
[    1.183680] rtc_cmos 00:01: setting system clock to 2017-09-26 12:46:58 UTC (1506430018)
[    1.184077] PM: Hibernation image not present or could not be loaded.
[    1.184863] Freeing unused kernel memory: 1324K
[    1.184864] Write protecting the kernel read-only data: 10240k
[    1.185221] Freeing unused kernel memory: 1636K
[    1.249047] VFIO - User Level meta-driver version: 0.3
[    1.268056] vfio_pci: add [10de:1d10[ffff:ffff]] class 0x000000/00000000
[    1.272197] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.273024] ACPI: Lid Switch [LID0]
[    1.273056] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.273058] ACPI: Power Button [PWRB]
[    1.273113] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.273114] ACPI: Power Button [PWRF]
[    1.280923] [drm] Memory usable by graphics device = 4096M
[    1.280924] [drm] VT-d active for gfx access
[    1.280925] checking generic (70000000 1e0000) vs hw (70000000 10000000)
[    1.280926] fb: switching to inteldrmfb from EFI VGA
[    1.280939] Console: switching to colour dummy device 80x25
[    1.281052] [drm] Replacing VGA console driver
[    1.286679] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.286680] [drm] Driver supports precise vblank timestamp query.
[    1.288411] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_01.bin (v1.1)
[    1.288751] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.301960] [drm] Initialized i915 1.6.0 20170403 for 0000:00:02.0 on minor 0
[    1.303698] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.304008] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
[    1.304036] ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
[    1.304055] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:24/LNXVIDEO:01/input/input4
[    1.326898] fbcon: inteldrmfb (fb0) is primary device
[    2.185070] clocksource: Switched to clocksource tsc
[    2.371686] [drm] RC6 on
[    2.606660] Console: switching to colour frame buffer device 480x135
[    2.645673] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    2.697064] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.702347] rtsx_pci 0000:3c:00.0: enabling device (0000 -> 0002)
[    2.705311] ACPI: bus type USB registered
[    2.705330] usbcore: registered new interface driver usbfs
[    2.705336] usbcore: registered new interface driver hub
[    2.705360] usbcore: registered new device driver usb
[    2.705759] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.705799] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.705916] nvme nvme0: pci function 0000:3d:00.0
[    2.706773] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.706778] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    2.707887] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[    2.707891] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    2.708053] hub 1-0:1.0: USB hub found
[    2.708065] hub 1-0:1.0: 12 ports detected
[    2.710437] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.710439] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    2.710544] hub 2-0:1.0: USB hub found
[    2.710553] hub 2-0:1.0: 6 ports detected
[    2.710729] usb: port power management may be unreliable
[    2.786214] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
[    2.945700]  nvme0n1: p1 p2 p3 p4 p5
[    3.034739] random: fast init done
[    3.049828] EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null)
[    3.084535] usb 1-5: new high-speed USB device number 2 using xhci_hcd
[    3.119342] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.126896] systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    3.127325] systemd[1]: Detected architecture x86-64.
[    3.127809] systemd[1]: Set hostname to <Qbit>.
[    3.196795] systemd[1]: Configuration file /.config/System/ssh/sshd.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
[    3.196802] systemd[1]: Configuration file /.config/System/ssh/sshd.socket is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
[    3.205500] systemd[1]: Listening on Journal Socket.
[    3.205578] systemd[1]: Listening on LVM2 metadata daemon socket.
[    3.208103] systemd[1]: Listening on udev Kernel Socket.
[    3.208146] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.208159] systemd[1]: Reached target Remote File Systems.
[    3.218206] EXT4-fs (nvme0n1p1): re-mounted. Opts: data=ordered
[    3.245773] systemd-journald[247]: Received request to flush runtime journal from PID 1
[    3.430843] ACPI: AC Adapter [ADP1] (on-line)
[    3.432479] input: Intel Virtual Button driver as /devices/platform/INT33D6:00/input/input7
[    3.433055] input: HP Wireless hotkeys as /devices/virtual/input/input8
[    3.447137] Bluetooth: Core ver 2.22
[    3.447149] NET: Registered protocol family 31
[    3.447150] Bluetooth: HCI device and connection manager initialized
[    3.447154] Bluetooth: HCI socket layer initialized
[    3.447156] Bluetooth: L2CAP socket layer initialized
[    3.447162] Bluetooth: SCO socket layer initialized
[    3.450321] Bluetooth: HCI UART driver ver 2.3
[    3.450322] Bluetooth: HCI UART protocol H4 registered
[    3.450323] Bluetooth: HCI UART protocol BCSP registered
[    3.450336] Bluetooth: HCI UART protocol LL registered
[    3.450337] Bluetooth: HCI UART protocol ATH3K registered
[    3.450337] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    3.450361] Bluetooth: HCI UART protocol Intel registered
[    3.450371] Bluetooth: HCI UART protocol Broadcom registered
[    3.450372] Bluetooth: HCI UART protocol QCA registered
[    3.450372] Bluetooth: HCI UART protocol AG6XX registered
[    3.450373] Bluetooth: HCI UART protocol Marvell registered
[    3.452043] hidraw: raw HID events driver (C) Jiri Kosina
[    3.454481] usb 1-7: new full-speed USB device number 3 using xhci_hcd
[    3.456490] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    3.457370] thermal LNXTHERM:00: registered as thermal_zone4
[    3.457371] ACPI: Thermal Zone [TZ01] (44 C)
[    3.468254] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    3.468998] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    3.470285] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    3.470424] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    3.475686] intel_ish_ipc 0000:00:13.0: enabling device (0000 -> 0002)
[    3.494547] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0x1A, rev-id 16)
[    3.584624] ucsi_acpi: probe of USBC000:00 failed with error -110
[    3.646463] media: Linux media interface: v0.10
[    3.649015] Linux video capture interface: v2.00
[    3.652402] uvcvideo: Found UVC 1.00 device HP TrueVision FHD RGB-IR (064e:3401)
[    3.659823] uvcvideo 1-5:1.0: Entity type for entity Extension 4 was not initialized!
[    3.659824] uvcvideo 1-5:1.0: Entity type for entity Extension 3 was not initialized!
[    3.659826] uvcvideo 1-5:1.0: Entity type for entity Processing 2 was not initialized!
[    3.659827] uvcvideo 1-5:1.0: Entity type for entity Camera 1 was not initialized!
[    3.659879] input: HP TrueVision FHD RGB-IR as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input9
[    3.659918] usbcore: registered new interface driver uvcvideo
[    3.659918] USB Video Class driver (1.1.1)
[    4.237966] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.252011] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    4.252017] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    4.252384] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops vgt_balloon_space [i915])
[    4.252635] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.252666] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.256808] ACPI: Battery Slot [BAT0] (battery present)
[    4.261367] wmi: Mapper loaded
[    4.279471] input: PC Speaker as /devices/platform/pcspkr/input/input10
[    4.279719] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC295: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
[    4.279721] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.279723] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    4.279723] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    4.279724] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    4.279726] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    4.279727] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    4.322510] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    4.322511] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    4.322512] RAPL PMU: hw unit of domain package 2^-14 Joules
[    4.322513] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    4.322513] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    4.322514] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    4.325411] Adding 4194300k swap on /dev/nvme0n1p3.  Priority:-1 extents:1 across:4194300k SSFS
[    4.345691] EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Opts: data=ordered
[    4.352823] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    4.352858] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    4.352887] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    4.352922] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.352950] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.352976] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    4.353003] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[    4.353880] Intel(R) Wireless WiFi driver for Linux
[    4.353881] Copyright(c) 2003- 2015 Intel Corporation
[    4.354379] iwlwifi 0000:3b:00.0: enabling device (0000 -> 0002)
[    4.354545] EXT4-fs (nvme0n1p5): mounted filesystem with ordered data mode. Opts: data=ordered
[    4.356914] MXM: GUID detected in BIOS
[    4.356952] ACPI Warning: \_SB.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20170303/nsarguments-95)
[    4.357018] ACPI Warning: \_SB.PCI0.RP01.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20170303/nsarguments-95)
[    4.357076] ACPI Warning: \_SB.PCI0.RP01.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20170303/nsarguments-95)
[    4.357337] vfio-pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[    4.357340] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.RP01.PEGP handle
[    4.357341] nouveau: detected PR support, will not use DSM
[    4.359569] iwlwifi 0000:3b:00.0: Direct firmware load for iwlwifi-8265-30.ucode failed with error -2
[    4.359583] iwlwifi 0000:3b:00.0: Direct firmware load for iwlwifi-8265-29.ucode failed with error -2
[    4.359592] iwlwifi 0000:3b:00.0: Direct firmware load for iwlwifi-8265-28.ucode failed with error -2
[    4.359974] AVX2 version of gcm_enc/dec engaged.
[    4.359975] AES CTR mode by8 optimization enabled
[    4.361696] iwlwifi 0000:3b:00.0: capa flags index 3 larger than supported by driver
[    4.362172] iwlwifi 0000:3b:00.0: loaded firmware version 27.541033.0 op_mode iwlmvm
[    4.380498] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=4
[    4.384254] usbcore: registered new interface driver btusb
[    4.385237] Bluetooth: hci0: Bootloader revision 0.0 build 26 week 38 2015
[    4.386284] Bluetooth: hci0: Device revision is 16
[    4.386284] Bluetooth: hci0: Secure boot is enabled
[    4.386285] Bluetooth: hci0: OTP lock is enabled
[    4.386285] Bluetooth: hci0: API lock is enabled
[    4.386286] Bluetooth: hci0: Debug lock is disabled
[    4.386287] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    4.387541] iwlwifi 0000:3b:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
[    4.388547] Bluetooth: hci0: Found device firmware: intel/ibt-12-16.sfi
[    4.390248] iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
[    4.391308] iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
[    4.404720] iTCO_vendor_support: vendor-support=0
[    4.405151] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    4.405316] iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[    4.405433] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    4.409146] ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
[    4.409151] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409159] ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409210] ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
[    4.409212] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409217] ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409261] ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
[    4.409263] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409268] ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409308] input: HP WMI hotkeys as /devices/virtual/input/input19
[    4.409417] ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
[    4.409420] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409425] ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409463] ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
[    4.409465] ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.409470] ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
[    4.417404] intel_rapl: Found RAPL domain package
[    4.417405] intel_rapl: Found RAPL domain core
[    4.417406] intel_rapl: Found RAPL domain uncore
[    4.417407] intel_rapl: Found RAPL domain dram
[    4.460048] random: crng init done
[    4.514437] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    4.514699] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    4.514722] thermal thermal_zone8: failed to read out thermal zone (-5)
[    4.516494] iwlwifi 0000:3b:00.0 wlo1: renamed from wlan0
[    4.530065] input: ELAN22CA:00 04F3:22CA as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN22CA:00/0018:04F3:22CA.0005/input/input20
[    4.530126] input: ELAN22CA:00 04F3:22CA Pen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN22CA:00/0018:04F3:22CA.0005/input/input23
[    4.530165] hid-multitouch 0018:04F3:22CA.0005: input,hidraw0: I2C HID v1.00 Device [ELAN22CA:00 04F3:22CA] on i2c-ELAN22CA:00
[    4.531719] mousedev: PS/2 mouse device common for all mice
[    4.600367] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[    4.629930] iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
[    4.630435] iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
[    4.660289] intel-vbtn INT33D6:00: unknown event index 0xcd
[    4.746882] iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
[    4.747535] iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
[    4.830338] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[    5.092081] wlo1: authenticate with 10:fe:ed:89:1c:71
[    5.102771] wlo1: send auth to 10:fe:ed:89:1c:71 (try 1/3)
[    5.111709] wlo1: authenticated
[    5.114461] wlo1: associate with 10:fe:ed:89:1c:71 (try 1/3)
[    5.121859] wlo1: RX AssocResp from 10:fe:ed:89:1c:71 (capab=0x431 status=0 aid=1)
[    5.126674] wlo1: associated
[    5.126701] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[    5.180138] psmouse serio1: synaptics: queried max coordinates: x [..5612], y [..4708]
[    5.217387] psmouse serio1: synaptics: queried min coordinates: x [1330..], y [1146..]
[    5.217400] psmouse serio1: synaptics: Your touchpad (PNP: SYN3244 SYN1e00 SYN0002 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.
[    5.294154] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.2, id: 0x1e2b1, caps: 0xf00123/0x840300/0x12e800/0x400000, board id: 3270, fw id: 2452168
[    5.343485] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input13
[    6.009298] Bluetooth: hci0: Waiting for firmware download to complete
[    6.009303] Bluetooth: hci0: Firmware loaded in 1586945 usecs
[    6.009427] Bluetooth: hci0: Waiting for device to boot
[    6.021330] Bluetooth: hci0: Device booted in 11662 usecs
[    6.021588] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
[    6.024330] Bluetooth: hci0: Applying Intel DDC parameters completed

$journalctl --boot=-0

-- Logs begin at Sat 2017-09-23 15:14:38 CEST, end at Tue 2017-09-26 14:47:38 CEST. --
Sep 26 14:47:00 Qbit kernel: Linux version 4.12.13-1-vfio (areuz@Qbit) (gcc version 7.2.0 (GCC) ) #1 SMP PREEMPT Sun Sep 24 23:52:11 CEST 2017
Sep 26 14:47:00 Qbit kernel: Command line: BOOT_IMAGE=/vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet splash intel_iommu=on pcie_acs_override=downstream loglevel=3
Sep 26 14:47:00 Qbit kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Sep 26 14:47:00 Qbit kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Sep 26 14:47:00 Qbit kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Sep 26 14:47:00 Qbit kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Sep 26 14:47:00 Qbit kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Sep 26 14:47:00 Qbit kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Sep 26 14:47:00 Qbit kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Sep 26 14:47:00 Qbit kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Sep 26 14:47:00 Qbit kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Sep 26 14:47:00 Qbit kernel: e820: BIOS-provided physical RAM map:
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000061ab0fff] usable
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000061ab1000-0x0000000061ab1fff] ACPI NVS
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000061ab2000-0x0000000061ab2fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000061ab3000-0x0000000069b25fff] usable
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000069b26000-0x000000006a9ebfff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000006a9ec000-0x000000006aa4bfff] ACPI data
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000006aa4c000-0x000000006aefbfff] ACPI NVS
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000006aefc000-0x000000006b315fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000006b316000-0x000000006b3fefff] type 20
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000006b3ff000-0x000000006b3fffff] usable
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x000000006b400000-0x000000006fffffff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Sep 26 14:47:00 Qbit kernel: BIOS-e820: [mem 0x0000000100000000-0x000000048effffff] usable
Sep 26 14:47:00 Qbit kernel: Warning: PCIe ACS overrides enabled; This may allow non-IOMMU protected peer-to-peer DMA
Sep 26 14:47:00 Qbit kernel: NX (Execute Disable) protection: active
Sep 26 14:47:00 Qbit kernel: efi: EFI v2.60 by American Megatrends
Sep 26 14:47:00 Qbit kernel: efi:  ACPI 2.0=0x6aa07000  ACPI=0x6aa07000  SMBIOS=0x6b284000  SMBIOS 3.0=0x6b283000  ESRT=0x6794bc18  MEMATTR=0x68442018 
Sep 26 14:47:00 Qbit kernel: SMBIOS 3.0.0 present.
Sep 26 14:47:00 Qbit kernel: DMI: HP HP Spectre x360 Convertible 15-bl1XX/827F, BIOS F.20 06/28/2017
Sep 26 14:47:00 Qbit kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 26 14:47:00 Qbit kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 26 14:47:00 Qbit kernel: e820: last_pfn = 0x48f000 max_arch_pfn = 0x400000000
Sep 26 14:47:00 Qbit kernel: MTRR default type: write-back
Sep 26 14:47:00 Qbit kernel: MTRR fixed ranges enabled:
Sep 26 14:47:00 Qbit kernel:   00000-9FFFF write-back
Sep 26 14:47:00 Qbit kernel:   A0000-BFFFF uncachable
Sep 26 14:47:00 Qbit kernel:   C0000-FFFFF write-protect
Sep 26 14:47:00 Qbit kernel: MTRR variable ranges enabled:
Sep 26 14:47:00 Qbit kernel:   0 base 0080000000 mask 7F80000000 uncachable
Sep 26 14:47:00 Qbit kernel:   1 base 0070000000 mask 7FF0000000 uncachable
Sep 26 14:47:00 Qbit kernel:   2 base 006C000000 mask 7FFC000000 uncachable
Sep 26 14:47:00 Qbit kernel:   3 base 006B800000 mask 7FFF800000 uncachable
Sep 26 14:47:00 Qbit kernel:   4 disabled
vSep 26 14:47:00 Qbit kernel:   5 disabled
Sep 26 14:47:00 Qbit kernel:   6 disabled
Sep 26 14:47:00 Qbit kernel:   7 disabled
Sep 26 14:47:00 Qbit kernel:   8 disabled
Sep 26 14:47:00 Qbit kernel:   9 disabled
Sep 26 14:47:00 Qbit kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Sep 26 14:47:00 Qbit kernel: e820: last_pfn = 0x6b400 max_arch_pfn = 0x400000000
Sep 26 14:47:00 Qbit kernel: esrt: Reserving ESRT space from 0x000000006794bc18 to 0x000000006794bc50.
Sep 26 14:47:00 Qbit kernel: Scanning 1 areas for low memory corruption
Sep 26 14:47:00 Qbit kernel: Base memory trampoline at [ffff9c73c0097000] 97000 size 24576
Sep 26 14:47:00 Qbit kernel: Using GB pages for direct mapping
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d5f000, 0x2c5d5ffff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d60000, 0x2c5d60fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d61000, 0x2c5d61fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d62000, 0x2c5d62fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d63000, 0x2c5d63fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d64000, 0x2c5d64fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d65000, 0x2c5d65fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d66000, 0x2c5d66fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: BRK [0x2c5d67000, 0x2c5d67fff] PGTABLE
Sep 26 14:47:00 Qbit kernel: Secure boot could not be determined
Sep 26 14:47:00 Qbit kernel: RAMDISK: [mem 0x3703d000-0x37815fff]
Sep 26 14:47:00 Qbit kernel: ACPI: Early table checksum verification disabled
Sep 26 14:47:00 Qbit kernel: ACPI: RSDP 0x000000006AA07000 000024 (v02 HPQOEM)
Sep 26 14:47:00 Qbit kernel: ACPI: XSDT 0x000000006AA070D0 00011C (v01 HPQOEM SLIC-MPC 01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: FACP 0x000000006AA3B050 000114 (v06 HPQOEM SLIC-MPC 01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: DSDT 0x000000006AA07278 033DD2 (v02 HPQOEM 827F     01072009 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: FACS 0x000000006AEC9F00 000040
Sep 26 14:47:00 Qbit kernel: ACPI: APIC 0x000000006AA3B168 0000BC (v03 HPQOEM 827F     01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: FPDT 0x000000006AA3B228 000044 (v01 HPQOEM 827F     01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: FIDT 0x000000006AA3B270 00009C (v01 HPQOEM 827F     01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: MCFG 0x000000006AA3B310 00003C (v01 HPQOEM 827F     01072009 HP   00000097)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA3B350 000359 (v01 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA3B6B0 0065C0 (v02 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: MSDM 0x000000006AA41C70 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA41CC8 003147 (v02 HPQOEM 827F     00003000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: HPET 0x000000006AA44E10 000038 (v01 HPQOEM 827F     00000001 HP   0000005F)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA44E48 000024 (v02 HPQOEM 827F     00000000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: UEFI 0x000000006AA44E70 000042 (v01 HPQOEM 827F     00000002 HP   01000013)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA44EB8 000EDE (v02 HPQOEM 827F     00003000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: LPIT 0x000000006AA45D98 000094 (v01 HPQOEM 827F     00000000 HP   0000005F)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA45E30 000141 (v02 HPQOEM 827F     00000000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA45F78 00029F (v02 HPQOEM 827F     00000000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA46218 0011E7 (v02 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA47400 0002B6 (v02 HPQOEM 827F     00000000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: DBGP 0x000000006AA476B8 000034 (v01 HPQOEM 827F     00000002 HP   0000005F)
Sep 26 14:47:00 Qbit kernel: ACPI: DBG2 0x000000006AA476F0 000054 (v00 HPQOEM 827F     00000002 HP   0000005F)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA47748 000D86 (v02 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA484D0 000715 (v02 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA48BE8 00039B (v02 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: DMAR 0x000000006AA48F88 0000CC (v01 HPQOEM 827F     00000001 HP   00000001)
Sep 26 14:47:00 Qbit kernel: ACPI: NHLT 0x000000006AA49058 00002D (v00 HPQOEM 827F     00000002 HP   01000013)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA49088 000066 (v01 HPQOEM 827F     00000001 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: TPM2 0x000000006AA490F0 000034 (v03 HPQOEM 827F     00000001 HP   00000000)
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0x000000006AA49128 001CA9 (v01 HPQOEM 827F     00001000 ACPI 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: ASF! 0x000000006AA4ADD8 0000A0 (v32 HPQOEM 827F     00000001 HP   000F4240)
Sep 26 14:47:00 Qbit kernel: ACPI: WSMT 0x000000006AA4AE78 000028 (v01 HPQOEM 827F     01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: BGRT 0x000000006AA4AEA0 000038 (v01 HPQOEM 827F     01072009 HP   00010013)
Sep 26 14:47:00 Qbit kernel: ACPI: Local APIC address 0xfee00000
Sep 26 14:47:00 Qbit kernel: No NUMA configuration found
Sep 26 14:47:00 Qbit kernel: Faking a node at [mem 0x0000000000000000-0x000000048effffff]
Sep 26 14:47:00 Qbit kernel: NODE_DATA(0) allocated [mem 0x48effb000-0x48effffff]
Sep 26 14:47:00 Qbit kernel: Zone ranges:
Sep 26 14:47:00 Qbit kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Sep 26 14:47:00 Qbit kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Sep 26 14:47:00 Qbit kernel:   Normal   [mem 0x0000000100000000-0x000000048effffff]
Sep 26 14:47:00 Qbit kernel:   Device   empty
Sep 26 14:47:00 Qbit kernel: Movable zone start for each node
Sep 26 14:47:00 Qbit kernel: Early memory node ranges
Sep 26 14:47:00 Qbit kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Sep 26 14:47:00 Qbit kernel:   node   0: [mem 0x0000000000059000-0x000000000009dfff]
Sep 26 14:47:00 Qbit kernel:   node   0: [mem 0x0000000000100000-0x0000000061ab0fff]
Sep 26 14:47:00 Qbit kernel:   node   0: [mem 0x0000000061ab3000-0x0000000069b25fff]
Sep 26 14:47:00 Qbit kernel:   node   0: [mem 0x000000006b3ff000-0x000000006b3fffff]
Sep 26 14:47:00 Qbit kernel:   node   0: [mem 0x0000000100000000-0x000000048effffff]
Sep 26 14:47:00 Qbit kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000048effffff]
Sep 26 14:47:00 Qbit kernel: On node 0 totalpages: 4164289
Sep 26 14:47:00 Qbit kernel:   DMA zone: 64 pages used for memmap
Sep 26 14:47:00 Qbit kernel:   DMA zone: 23 pages reserved
Sep 26 14:47:00 Qbit kernel:   DMA zone: 3996 pages, LIFO batch:0
Sep 26 14:47:00 Qbit kernel:   DMA32 zone: 6701 pages used for memmap
Sep 26 14:47:00 Qbit kernel:   DMA32 zone: 428837 pages, LIFO batch:31
Sep 26 14:47:00 Qbit kernel:   Normal zone: 58304 pages used for memmap
Sep 26 14:47:00 Qbit kernel:   Normal zone: 3731456 pages, LIFO batch:31
Sep 26 14:47:00 Qbit kernel: Reserving Intel graphics memory at 0x000000006c000000-0x000000006fffffff
Sep 26 14:47:00 Qbit kernel: ACPI: PM-Timer IO Port: 0x1808
Sep 26 14:47:00 Qbit kernel: ACPI: Local APIC address 0xfee00000
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Sep 26 14:47:00 Qbit kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Sep 26 14:47:00 Qbit kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 26 14:47:00 Qbit kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Sep 26 14:47:00 Qbit kernel: ACPI: IRQ0 used by override.
Sep 26 14:47:00 Qbit kernel: ACPI: IRQ9 used by override.
Sep 26 14:47:00 Qbit kernel: Using ACPI (MADT) for SMP configuration information
Sep 26 14:47:00 Qbit kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Sep 26 14:47:00 Qbit kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x61ab1000-0x61ab1fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x61ab2000-0x61ab2fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x69b26000-0x6a9ebfff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x6a9ec000-0x6aa4bfff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x6aa4c000-0x6aefbfff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x6aefc000-0x6b315fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x6b316000-0x6b3fefff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x6b400000-0x6fffffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0x70000000-0xdfffffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfedfffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Sep 26 14:47:00 Qbit kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Sep 26 14:47:00 Qbit kernel: e820: [mem 0x70000000-0xdfffffff] available for PCI devices
Sep 26 14:47:00 Qbit kernel: Booting paravirtualized kernel on bare hardware
Sep 26 14:47:00 Qbit kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Sep 26 14:47:00 Qbit kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
Sep 26 14:47:00 Qbit kernel: percpu: Embedded 35 pages/cpu @ffff9c784ec00000 s106328 r8192 d28840 u262144
Sep 26 14:47:00 Qbit kernel: pcpu-alloc: s106328 r8192 d28840 u262144 alloc=1*2097152
Sep 26 14:47:00 Qbit kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Sep 26 14:47:00 Qbit kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4099197
Sep 26 14:47:00 Qbit kernel: Policy zone: Normal
Sep 26 14:47:00 Qbit kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet splash intel_iommu=on pcie_acs_override=downstream loglevel=3
Sep 26 14:47:00 Qbit kernel: DMAR: IOMMU enabled
Sep 26 14:47:00 Qbit kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Sep 26 14:47:00 Qbit kernel: Calgary: detecting Calgary via BIOS EBDA area
Sep 26 14:47:00 Qbit kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Sep 26 14:47:00 Qbit kernel: Memory: 16275332K/16657156K available (6543K kernel code, 1124K rwdata, 2048K rodata, 1324K init, 912K bss, 381824K reserved, 0K cma-reserved)
Sep 26 14:47:00 Qbit kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Sep 26 14:47:00 Qbit kernel: ftrace: allocating 27933 entries in 110 pages
Sep 26 14:47:00 Qbit kernel: Preemptible hierarchical RCU implementation.
Sep 26 14:47:00 Qbit kernel:         RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
Sep 26 14:47:00 Qbit kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Sep 26 14:47:00 Qbit kernel: NR_IRQS:8448 nr_irqs:2048 16
Sep 26 14:47:00 Qbit kernel: Console: colour dummy device 80x25
Sep 26 14:47:00 Qbit kernel: console [tty0] enabled
Sep 26 14:47:00 Qbit kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Sep 26 14:47:00 Qbit kernel: hpet clockevent registered
Sep 26 14:47:00 Qbit kernel: tsc: Detected 2000.000 MHz processor
Sep 26 14:47:00 Qbit kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3985.00 BogoMIPS (lpj=6640000)
Sep 26 14:47:00 Qbit kernel: pid_max: default: 32768 minimum: 301
Sep 26 14:47:00 Qbit kernel: ACPI: Core revision 20170303
Sep 26 14:47:00 Qbit kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
Sep 26 14:47:00 Qbit kernel: Security Framework initialized
Sep 26 14:47:00 Qbit kernel: Yama: becoming mindful.
Sep 26 14:47:00 Qbit kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Sep 26 14:47:00 Qbit kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Sep 26 14:47:00 Qbit kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Sep 26 14:47:00 Qbit kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
Sep 26 14:47:00 Qbit kernel: CPU: Physical Processor ID: 0
Sep 26 14:47:00 Qbit kernel: CPU: Processor Core ID: 0
Sep 26 14:47:00 Qbit kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Sep 26 14:47:00 Qbit kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Sep 26 14:47:00 Qbit kernel: mce: CPU supports 10 MCE banks
Sep 26 14:47:00 Qbit kernel: CPU0: Thermal monitoring enabled (TM1)
Sep 26 14:47:00 Qbit kernel: process: using mwait in idle threads
Sep 26 14:47:00 Qbit kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Sep 26 14:47:00 Qbit kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Sep 26 14:47:00 Qbit kernel: Freeing SMP alternatives memory: 24K
Sep 26 14:47:00 Qbit kernel: smpboot: Max logical packages: 2
Sep 26 14:47:00 Qbit kernel: DMAR: Host address width 39
Sep 26 14:47:00 Qbit kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Sep 26 14:47:00 Qbit kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
Sep 26 14:47:00 Qbit kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Sep 26 14:47:00 Qbit kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Sep 26 14:47:00 Qbit kernel: DMAR: RMRR base: 0x0000006a142000 end: 0x0000006a161fff
Sep 26 14:47:00 Qbit kernel: DMAR: RMRR base: 0x0000006b800000 end: 0x0000006fffffff
Sep 26 14:47:00 Qbit kernel: DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
Sep 26 14:47:00 Qbit kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Sep 26 14:47:00 Qbit kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Sep 26 14:47:00 Qbit kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Sep 26 14:47:00 Qbit kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Sep 26 14:47:00 Qbit kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Sep 26 14:47:00 Qbit kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Sep 26 14:47:00 Qbit kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Sep 26 14:47:00 Qbit kernel: TSC deadline timer enabled
Sep 26 14:47:00 Qbit kernel: smpboot: CPU0: Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (family: 0x6, model: 0x8e, stepping: 0xa)
Sep 26 14:47:00 Qbit kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Sep 26 14:47:00 Qbit kernel: ... version:                4
Sep 26 14:47:00 Qbit kernel: ... bit width:              48
Sep 26 14:47:00 Qbit kernel: ... generic registers:      4
Sep 26 14:47:00 Qbit kernel: ... value mask:             0000ffffffffffff
Sep 26 14:47:00 Qbit kernel: ... max period:             00007fffffffffff
Sep 26 14:47:00 Qbit kernel: ... fixed-purpose events:   3
Sep 26 14:47:00 Qbit kernel: ... event mask:             000000070000000f
Sep 26 14:47:00 Qbit kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Sep 26 14:47:00 Qbit kernel: smp: Bringing up secondary CPUs ...
Sep 26 14:47:00 Qbit kernel: x86: Booting SMP configuration:
Sep 26 14:47:00 Qbit kernel: .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
Sep 26 14:47:00 Qbit kernel: smp: Brought up 1 node, 8 CPUs
Sep 26 14:47:00 Qbit kernel: smpboot: Total of 8 processors activated (31890.29 BogoMIPS)
Sep 26 14:47:00 Qbit kernel: sched_clock: Marking stable (886666579, 0)->(889735232, -3068653)
Sep 26 14:47:00 Qbit kernel: devtmpfs: initialized
Sep 26 14:47:00 Qbit kernel: x86/mm: Memory block size: 128MB
Sep 26 14:47:00 Qbit kernel: PM: Registering ACPI NVS region [mem 0x61ab1000-0x61ab1fff] (4096 bytes)
Sep 26 14:47:00 Qbit kernel: PM: Registering ACPI NVS region [mem 0x6aa4c000-0x6aefbfff] (4915200 bytes)
Sep 26 14:47:00 Qbit kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Sep 26 14:47:00 Qbit kernel: futex hash table entries: 2048 (order: 5, 131072 bytes)
Sep 26 14:47:00 Qbit kernel: pinctrl core: initialized pinctrl subsystem
Sep 26 14:47:00 Qbit kernel: RTC time: 12:46:58, date: 09/26/17
Sep 26 14:47:00 Qbit kernel: NET: Registered protocol family 16
Sep 26 14:47:00 Qbit kernel: cpuidle: using governor ladder
Sep 26 14:47:00 Qbit kernel: cpuidle: using governor menu
Sep 26 14:47:00 Qbit kernel: PCCT header not found.
Sep 26 14:47:00 Qbit kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Sep 26 14:47:00 Qbit kernel: ACPI: bus type PCI registered
Sep 26 14:47:00 Qbit kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 26 14:47:00 Qbit kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Sep 26 14:47:00 Qbit kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Sep 26 14:47:00 Qbit kernel: PCI: Using configuration type 1 for base access
Sep 26 14:47:00 Qbit kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Sep 26 14:47:00 Qbit kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Sep 26 14:47:00 Qbit kernel: ACPI: Added _OSI(Module Device)
Sep 26 14:47:00 Qbit kernel: ACPI: Added _OSI(Processor Device)
Sep 26 14:47:00 Qbit kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 26 14:47:00 Qbit kernel: ACPI: Added _OSI(Processor Aggregator Device)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 36 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BC24000 0005CD (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BF86800 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BF79600 000115 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BF7B200 0001A4 (v02 PmRef  HwpLvt   00003000 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BC22000 00065C (v02 PmRef  ApIst    00003000 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BF79A00 000197 (v02 PmRef  ApHwp    00003000 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI: Dynamic OEM Table Load:
Sep 26 14:47:00 Qbit kernel: ACPI: SSDT 0xFFFF9C783BF78400 00018A (v02 PmRef  ApCst    00003000 INTL 20160422)
Sep 26 14:47:00 Qbit kernel: ACPI: Executed 1 blocks of module-level executable AML code
Sep 26 14:47:00 Qbit kernel: ACPI : EC: EC started
Sep 26 14:47:00 Qbit kernel: ACPI : EC: interrupt blocked
Sep 26 14:47:00 Qbit kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
Sep 26 14:47:00 Qbit kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 26 14:47:00 Qbit kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
Sep 26 14:47:00 Qbit kernel: ACPI: Interpreter enabled
Sep 26 14:47:00 Qbit kernel: ACPI: (supports S0 S3 S4 S5)
Sep 26 14:47:00 Qbit kernel: ACPI: Using IOAPIC for interrupt routing
Sep 26 14:47:00 Qbit kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [PC01] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: Power Resource [WRST] (on)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Sep 26 14:47:00 Qbit kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Sep 26 14:47:00 Qbit kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME AER]
Sep 26 14:47:00 Qbit kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
Sep 26 14:47:00 Qbit kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Sep 26 14:47:00 Qbit kernel: PCI host bridge to bus 0000:00
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0x70000000-0xdfffffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:00.0: [8086:5914] type 00 class 0x060000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: [8086:5917] type 00 class 0x030000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: reg 0x10: [mem 0xdb000000-0xdbffffff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: reg 0x18: [mem 0x70000000-0x7fffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:04.0: reg 0x10: [mem 0xdd420000-0xdd427fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:13.0: [8086:9d35] type 00 class 0x000000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:13.0: reg 0x10: [mem 0xdd434000-0xdd434fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330
Sep 26 14:47:00 Qbit kernel: pci 0000:00:14.0: reg 0x10: [mem 0xdd410000-0xdd41ffff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:14.2: reg 0x10: [mem 0xdd433000-0xdd433fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:15.0: reg 0x10: [mem 0xdd432000-0xdd432fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:16.0: reg 0x10: [mem 0xdd431000-0xdd431fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:16.0: PME# supported from D3hot
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6: [8086:9d16] type 01 class 0x060400
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7: [8086:9d17] type 01 class 0x060400
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xdd42c000-0xdd42ffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xdd428000-0xdd42bfff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xdd400000-0xdd40ffff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.3: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xdd430000-0xdd4300ff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: [10de:1d10] type 00 class 0x030200
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: reg 0x10: [mem 0xdc000000-0xdcffffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: reg 0x30: [mem 0xdd000000-0xdd07ffff pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:01:00.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0:   bridge window [io  0xe000-0xefff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0:   bridge window [mem 0xdc000000-0xdd0fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4:   bridge window [mem 0xc4000000-0xda0fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:3b:00.0: [8086:24fd] type 00 class 0x028000
Sep 26 14:47:00 Qbit kernel: pci 0000:3b:00.0: reg 0x10: [mem 0xdd300000-0xdd301fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:3b:00.0: PME# supported from D0 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:3b:00.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6: PCI bridge to [bus 3b]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6:   bridge window [mem 0xdd300000-0xdd3fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:3c:00.0: [10ec:525a] type 00 class 0xff0000
Sep 26 14:47:00 Qbit kernel: pci 0000:3c:00.0: reg 0x14: [mem 0xdd200000-0xdd200fff]
Sep 26 14:47:00 Qbit kernel: pci 0000:3c:00.0: supports D1 D2
Sep 26 14:47:00 Qbit kernel: pci 0000:3c:00.0: PME# supported from D1 D2 D3hot D3cold
Sep 26 14:47:00 Qbit kernel: pci 0000:3c:00.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7: PCI bridge to [bus 3c]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7:   bridge window [mem 0xdd200000-0xdd2fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:3d:00.0: [144d:a804] type 00 class 0x010802
Sep 26 14:47:00 Qbit kernel: pci 0000:3d:00.0: reg 0x10: [mem 0xdd100000-0xdd103fff 64bit]
Sep 26 14:47:00 Qbit kernel: pci 0000:3d:00.0: System wakeup disabled by ACPI
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0: PCI bridge to [bus 3d]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0:   bridge window [mem 0xdd100000-0xdd1fffff]
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
Sep 26 14:47:00 Qbit kernel: ACPI: Enabled 5 GPEs in block 00 to 7F
Sep 26 14:47:00 Qbit kernel: ACPI : EC: interrupt unblocked
Sep 26 14:47:00 Qbit kernel: ACPI : EC: event unblocked
Sep 26 14:47:00 Qbit kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Sep 26 14:47:00 Qbit kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Sep 26 14:47:00 Qbit kernel: vgaarb: loaded
Sep 26 14:47:00 Qbit kernel: EDAC MC: Ver: 3.0.0
Sep 26 14:47:00 Qbit kernel: Registered efivars operations
Sep 26 14:47:00 Qbit kernel: PCI: Using ACPI for IRQ routing
Sep 26 14:47:00 Qbit kernel: PCI: pci_cache_line_size set to 64 bytes
Sep 26 14:47:00 Qbit kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Sep 26 14:47:00 Qbit kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Sep 26 14:47:00 Qbit kernel: e820: reserve RAM buffer [mem 0x61ab1000-0x63ffffff]
Sep 26 14:47:00 Qbit kernel: e820: reserve RAM buffer [mem 0x69b26000-0x6bffffff]
Sep 26 14:47:00 Qbit kernel: e820: reserve RAM buffer [mem 0x6b400000-0x6bffffff]
Sep 26 14:47:00 Qbit kernel: e820: reserve RAM buffer [mem 0x48f000000-0x48fffffff]
Sep 26 14:47:00 Qbit kernel: NetLabel: Initializing
Sep 26 14:47:00 Qbit kernel: NetLabel:  domain hash size = 128
Sep 26 14:47:00 Qbit kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Sep 26 14:47:00 Qbit kernel: NetLabel:  unlabeled traffic allowed by default
Sep 26 14:47:00 Qbit kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Sep 26 14:47:00 Qbit kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Sep 26 14:47:00 Qbit kernel: clocksource: Switched to clocksource hpet
Sep 26 14:47:00 Qbit kernel: VFS: Disk quotas dquot_6.6.0
Sep 26 14:47:00 Qbit kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 26 14:47:00 Qbit kernel: pnp: PnP ACPI init
Sep 26 14:47:00 Qbit kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:00: [io  0xffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:00: [io  0xffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:00: [io  0xffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:00: [io  0x1800-0x18fe] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 26 14:47:00 Qbit kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Sep 26 14:47:00 Qbit kernel: system 00:02: [io  0x1854-0x1857] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Sep 26 14:47:00 Qbit kernel: pnp 00:03: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
Sep 26 14:47:00 Qbit kernel: pnp 00:04: Plug and Play ACPI device, IDs SYN3244 SYN1e00 SYN0002 PNP0f13 (active)
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 26 14:47:00 Qbit kernel: system 00:07: [io  0xff00-0xfffe] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 26 14:47:00 Qbit kernel: system 00:08: [mem 0xfe029000-0xfe029fff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:08: [mem 0xfe028000-0xfe028fff] has been reserved
Sep 26 14:47:00 Qbit kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Sep 26 14:47:00 Qbit kernel: pnp: PnP ACPI: found 9 devices
Sep 26 14:47:00 Qbit kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 02-3a] add_size 1000
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: BAR 13: assigned [io  0x2000-0x2fff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0:   bridge window [io  0xe000-0xefff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0:   bridge window [mem 0xdc000000-0xdd0fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4: PCI bridge to [bus 02-3a]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4:   bridge window [io  0x2000-0x2fff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4:   bridge window [mem 0xc4000000-0xda0fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6: PCI bridge to [bus 3b]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.6:   bridge window [mem 0xdd300000-0xdd3fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7: PCI bridge to [bus 3c]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1c.7:   bridge window [mem 0xdd200000-0xdd2fffff]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0: PCI bridge to [bus 3d]
Sep 26 14:47:00 Qbit kernel: pci 0000:00:1d.0:   bridge window [mem 0xdd100000-0xdd1fffff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 15 [mem 0x70000000-0xdfffffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:00: resource 16 [mem 0xfd000000-0xfe7fffff window]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:01: resource 1 [mem 0xdc000000-0xdd0fffff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:01: resource 2 [mem 0xb0000000-0xc1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:02: resource 1 [mem 0xc4000000-0xda0fffff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:02: resource 2 [mem 0x80000000-0xa1ffffff 64bit pref]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:3b: resource 1 [mem 0xdd300000-0xdd3fffff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:3c: resource 1 [mem 0xdd200000-0xdd2fffff]
Sep 26 14:47:00 Qbit kernel: pci_bus 0000:3d: resource 1 [mem 0xdd100000-0xdd1fffff]
Sep 26 14:47:00 Qbit kernel: NET: Registered protocol family 2
Sep 26 14:47:00 Qbit kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Sep 26 14:47:00 Qbit kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Sep 26 14:47:00 Qbit kernel: TCP: Hash tables configured (established 131072 bind 65536)
Sep 26 14:47:00 Qbit kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes)
Sep 26 14:47:00 Qbit kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Sep 26 14:47:00 Qbit kernel: NET: Registered protocol family 1
Sep 26 14:47:00 Qbit kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Sep 26 14:47:00 Qbit kernel: PCI: CLS 64 bytes, default 64
Sep 26 14:47:00 Qbit kernel: Unpacking initramfs...
Sep 26 14:47:00 Qbit kernel: Freeing initrd memory: 8036K
Sep 26 14:47:00 Qbit kernel: DMAR: ACPI device "device:75" under DMAR at fed91000 as 00:15.0
Sep 26 14:47:00 Qbit kernel: DMAR: No ATSR found
Sep 26 14:47:00 Qbit kernel: DMAR: dmar0: Using Queued invalidation
Sep 26 14:47:00 Qbit kernel: dmar0: Allocated order 8 PASID table.
Sep 26 14:47:00 Qbit kernel: DMAR: dmar1: Using Queued invalidation
Sep 26 14:47:00 Qbit kernel: DMAR: Setting RMRR:
Sep 26 14:47:00 Qbit kernel: DMAR: Setting identity map for device 0000:00:02.0 [0x6b800000 - 0x6fffffff]
Sep 26 14:47:00 Qbit kernel: DMAR: Setting identity map for device 0000:00:14.0 [0x6a142000 - 0x6a161fff]
Sep 26 14:47:00 Qbit kernel: DMAR: Prepare 0-16MiB unity mapping for LPC
Sep 26 14:47:00 Qbit kernel: DMAR: Setting identity map for device 0000:00:1f.0 [0x0 - 0xffffff]
Sep 26 14:47:00 Qbit kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:00.0 to group 0
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:02.0 to group 1
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:04.0 to group 2
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:13.0 to group 3
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:14.0 to group 4
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:14.2 to group 4
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:15.0 to group 5
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:16.0 to group 6
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1c.0 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1c.4 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1c.6 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1c.7 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1d.0 to group 8
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1f.0 to group 9
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1f.2 to group 9
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1f.3 to group 9
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:00:1f.4 to group 9
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:01:00.0 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:3b:00.0 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:3c:00.0 to group 7
Sep 26 14:47:00 Qbit kernel: iommu: Adding device 0000:3d:00.0 to group 8
Sep 26 14:47:00 Qbit kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x396d519840e, max_idle_ns: 881590569543 ns
Sep 26 14:47:00 Qbit kernel: Scanning for low memory corruption every 60 seconds
Sep 26 14:47:00 Qbit kernel: Initialise system trusted keyrings
Sep 26 14:47:00 Qbit kernel: Key type blacklist registered
Sep 26 14:47:00 Qbit kernel: workingset: timestamp_bits=40 max_order=22 bucket_order=0
Sep 26 14:47:00 Qbit kernel: zbud: loaded
Sep 26 14:47:00 Qbit kernel: Key type asymmetric registered
Sep 26 14:47:00 Qbit kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 26 14:47:00 Qbit kernel: io scheduler noop registered
Sep 26 14:47:00 Qbit kernel: io scheduler deadline registered
Sep 26 14:47:00 Qbit kernel: io scheduler cfq registered (default)
Sep 26 14:47:00 Qbit kernel: io scheduler mq-deadline registered
Sep 26 14:47:00 Qbit kernel: io scheduler kyber registered
Sep 26 14:47:00 Qbit kernel: io scheduler bfq registered
Sep 26 14:47:00 Qbit kernel: efifb: probing for efifb
Sep 26 14:47:00 Qbit kernel: efifb: framebuffer at 0x70000000, using 1920k, total 1920k
Sep 26 14:47:00 Qbit kernel: efifb: mode is 800x600x32, linelength=3200, pages=1
Sep 26 14:47:00 Qbit kernel: efifb: scrolling: redraw
Sep 26 14:47:00 Qbit kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Sep 26 14:47:00 Qbit kernel: Console: switching to colour frame buffer device 100x37
Sep 26 14:47:00 Qbit kernel: fb0: EFI VGA frame buffer device
Sep 26 14:47:00 Qbit kernel: intel_idle: MWAIT substates: 0x11142120
Sep 26 14:47:00 Qbit kernel: intel_idle: v0.4.1 model 0x8E
Sep 26 14:47:00 Qbit kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Sep 26 14:47:00 Qbit kernel: GHES: HEST is not enabled!
Sep 26 14:47:00 Qbit kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Sep 26 14:47:00 Qbit kernel: Linux agpgart interface v0.103
Sep 26 14:47:00 Qbit kernel: rtc_cmos 00:01: RTC can wake from S4
Sep 26 14:47:00 Qbit kernel: rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
Sep 26 14:47:00 Qbit kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Sep 26 14:47:00 Qbit kernel: intel_pstate: Intel P-state driver initializing
Sep 26 14:47:00 Qbit kernel: intel_pstate: HWP enabled
Sep 26 14:47:00 Qbit kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 26 14:47:00 Qbit kernel: vlv2_plat_clk vlv2_plat_clk: vlv2_plat_clk initialized
Sep 26 14:47:00 Qbit kernel: intel_pmc_core 0000:00:1f.2: enabling device (0000 -> 0002)
Sep 26 14:47:00 Qbit kernel: NET: Registered protocol family 10
Sep 26 14:47:00 Qbit kernel: Segment Routing with IPv6
Sep 26 14:47:00 Qbit kernel: NET: Registered protocol family 17
Sep 26 14:47:00 Qbit kernel: RAS: Correctable Errors collector initialized.
Sep 26 14:47:00 Qbit kernel: microcode: sig=0x806ea, pf=0x80, revision=0x64
Sep 26 14:47:00 Qbit kernel: microcode: Microcode Update Driver: v2.2.
Sep 26 14:47:00 Qbit kernel: registered taskstats version 1
Sep 26 14:47:00 Qbit kernel: Loading compiled-in X.509 certificates
Sep 26 14:47:00 Qbit kernel: zswap: loaded using pool lzo/zbud
Sep 26 14:47:00 Qbit kernel:   Magic number: 1:481:785
Sep 26 14:47:00 Qbit kernel: rtc_cmos 00:01: setting system clock to 2017-09-26 12:46:58 UTC (1506430018)
Sep 26 14:47:00 Qbit kernel: PM: Hibernation image not present or could not be loaded.
Sep 26 14:47:00 Qbit kernel: Freeing unused kernel memory: 1324K
Sep 26 14:47:00 Qbit kernel: Write protecting the kernel read-only data: 10240k
Sep 26 14:47:00 Qbit kernel: Freeing unused kernel memory: 1636K
Sep 26 14:47:00 Qbit kernel: VFIO - User Level meta-driver version: 0.3
Sep 26 14:47:00 Qbit kernel: vfio_pci: add [10de:1d10[ffff:ffff]] class 0x000000/00000000
Sep 26 14:47:00 Qbit kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Sep 26 14:47:00 Qbit kernel: ACPI: Lid Switch [LID0]
Sep 26 14:47:00 Qbit kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Sep 26 14:47:00 Qbit kernel: ACPI: Power Button [PWRB]
Sep 26 14:47:00 Qbit kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Sep 26 14:47:00 Qbit kernel: ACPI: Power Button [PWRF]
Sep 26 14:47:00 Qbit kernel: [drm] Memory usable by graphics device = 4096M
Sep 26 14:47:00 Qbit kernel: [drm] VT-d active for gfx access
Sep 26 14:47:00 Qbit kernel: checking generic (70000000 1e0000) vs hw (70000000 10000000)
Sep 26 14:47:00 Qbit kernel: fb: switching to inteldrmfb from EFI VGA
Sep 26 14:47:00 Qbit kernel: Console: switching to colour dummy device 80x25
Sep 26 14:47:00 Qbit kernel: [drm] Replacing VGA console driver
Sep 26 14:47:00 Qbit kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Sep 26 14:47:00 Qbit kernel: [drm] Driver supports precise vblank timestamp query.
Sep 26 14:47:00 Qbit kernel: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_01.bin (v1.1)
Sep 26 14:47:00 Qbit kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Sep 26 14:47:00 Qbit kernel: [drm] Initialized i915 1.6.0 20170403 for 0000:00:02.0 on minor 0
Sep 26 14:47:00 Qbit kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Sep 26 14:47:00 Qbit kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
Sep 26 14:47:00 Qbit kernel: ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
Sep 26 14:47:00 Qbit kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:24/LNXVIDEO:01/input/input4
Sep 26 14:47:00 Qbit kernel: fbcon: inteldrmfb (fb0) is primary device
Sep 26 14:47:00 Qbit kernel: clocksource: Switched to clocksource tsc
Sep 26 14:47:00 Qbit kernel: [drm] RC6 on
Sep 26 14:47:00 Qbit kernel: Console: switching to colour frame buffer device 480x135
Sep 26 14:47:00 Qbit kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Sep 26 14:47:00 Qbit kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Sep 26 14:47:00 Qbit kernel: rtsx_pci 0000:3c:00.0: enabling device (0000 -> 0002)
Sep 26 14:47:00 Qbit kernel: ACPI: bus type USB registered
Sep 26 14:47:00 Qbit kernel: usbcore: registered new interface driver usbfs
Sep 26 14:47:00 Qbit kernel: usbcore: registered new interface driver hub
Sep 26 14:47:00 Qbit kernel: usbcore: registered new device driver usb
Sep 26 14:47:00 Qbit kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Sep 26 14:47:00 Qbit kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Sep 26 14:47:00 Qbit kernel: nvme nvme0: pci function 0000:3d:00.0
Sep 26 14:47:00 Qbit kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 26 14:47:00 Qbit kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Sep 26 14:47:00 Qbit kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
Sep 26 14:47:00 Qbit kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Sep 26 14:47:00 Qbit kernel: hub 1-0:1.0: USB hub found
Sep 26 14:47:00 Qbit kernel: hub 1-0:1.0: 12 ports detected
Sep 26 14:47:00 Qbit kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Sep 26 14:47:00 Qbit kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Sep 26 14:47:00 Qbit kernel: hub 2-0:1.0: USB hub found
Sep 26 14:47:00 Qbit kernel: hub 2-0:1.0: 6 ports detected
Sep 26 14:47:00 Qbit kernel: usb: port power management may be unreliable
Sep 26 14:47:00 Qbit kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input5
Sep 26 14:47:00 Qbit kernel:  nvme0n1: p1 p2 p3 p4 p5
Sep 26 14:47:00 Qbit kernel: random: fast init done
Sep 26 14:47:00 Qbit kernel: EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null)
Sep 26 14:47:00 Qbit kernel: usb 1-5: new high-speed USB device number 2 using xhci_hcd
Sep 26 14:47:00 Qbit kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Sep 26 14:47:00 Qbit systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
Sep 26 14:47:00 Qbit systemd[1]: Detected architecture x86-64.
Sep 26 14:47:00 Qbit systemd[1]: Set hostname to <Qbit>.
Sep 26 14:47:00 Qbit systemd[1]: Configuration file /.config/System/ssh/sshd.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
Sep 26 14:47:00 Qbit systemd[1]: Configuration file /.config/System/ssh/sshd.socket is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
Sep 26 14:47:00 Qbit systemd[1]: Listening on Journal Socket.
Sep 26 14:47:00 Qbit systemd[1]: Listening on LVM2 metadata daemon socket.
Sep 26 14:47:00 Qbit systemd[1]: Listening on udev Kernel Socket.
Sep 26 14:47:00 Qbit systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Sep 26 14:47:00 Qbit systemd[1]: Reached target Remote File Systems.
Sep 26 14:47:00 Qbit kernel: EXT4-fs (nvme0n1p1): re-mounted. Opts: data=ordered
Sep 26 14:47:00 Qbit systemd-journald[247]: Journal started
Sep 26 14:47:00 Qbit systemd-journald[247]: Runtime journal (/run/log/journal/f166a2445912437fbcb1a494446ffb44) is 8.0M, max 799.9M, 791.9M free.
Sep 26 14:47:00 Qbit systemd-sysusers[249]: Two or more conflicting lines for lp configured, ignoring.
Sep 26 14:47:00 Qbit systemd-sysusers[249]: Two or more conflicting lines for kvm configured, ignoring.
Sep 26 14:47:00 Qbit systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 26 14:47:00 Qbit systemd-journald[247]: Time spent on flushing to /var is 87.823ms for 709 entries.
Sep 26 14:47:00 Qbit systemd-journald[247]: System journal (/var/log/journal/f166a2445912437fbcb1a494446ffb44) is 112.0M, max 1.4G, 1.3G free.
Sep 26 14:47:00 Qbit systemd[1]: Started udev Kernel Device Manager.
Sep 26 14:47:00 Qbit systemd[1]: Started Flush Journal to Persistent Storage.
Sep 26 14:47:00 Qbit systemd[1]: Started Rebuild Hardware Database.
Sep 26 14:47:00 Qbit systemd[1]: Starting udev Coldplug all Devices...
Sep 26 14:47:00 Qbit systemd[1]: Started udev Coldplug all Devices.
Sep 26 14:47:00 Qbit kernel: ACPI: AC Adapter [ADP1] (on-line)
Sep 26 14:47:00 Qbit kernel: input: Intel Virtual Button driver as /devices/platform/INT33D6:00/input/input7
Sep 26 14:47:00 Qbit kernel: input: HP Wireless hotkeys as /devices/virtual/input/input8
Sep 26 14:47:00 Qbit kernel: Bluetooth: Core ver 2.22
Sep 26 14:47:00 Qbit kernel: NET: Registered protocol family 31
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI device and connection manager initialized
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI socket layer initialized
Sep 26 14:47:00 Qbit kernel: Bluetooth: L2CAP socket layer initialized
Sep 26 14:47:00 Qbit kernel: Bluetooth: SCO socket layer initialized
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART driver ver 2.3
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol H4 registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol BCSP registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol LL registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol ATH3K registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol Three-wire (H5) registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol Intel registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol Broadcom registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol QCA registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol AG6XX registered
Sep 26 14:47:00 Qbit kernel: Bluetooth: HCI UART protocol Marvell registered
Sep 26 14:47:00 Qbit kernel: hidraw: raw HID events driver (C) Jiri Kosina
Sep 26 14:47:00 Qbit kernel: usb 1-7: new full-speed USB device number 3 using xhci_hcd
Sep 26 14:47:00 Qbit kernel: (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Sep 26 14:47:00 Qbit kernel: thermal LNXTHERM:00: registered as thermal_zone4
Sep 26 14:47:00 Qbit kernel: ACPI: Thermal Zone [TZ01] (44 C)
Sep 26 14:47:00 Qbit systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Sep 26 14:47:00 Qbit systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Sep 26 14:47:00 Qbit systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Sep 26 14:47:00 Qbit kernel: (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Sep 26 14:47:00 Qbit kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Sep 26 14:47:00 Qbit kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Sep 26 14:47:00 Qbit kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
Sep 26 14:47:00 Qbit kernel: intel_ish_ipc 0000:00:13.0: enabling device (0000 -> 0002)
Sep 26 14:47:00 Qbit kernel: tpm_tis MSFT0101:00: 2.0 TPM (device-id 0x1A, rev-id 16)
Sep 26 14:47:00 Qbit kernel: ucsi_acpi: probe of USBC000:00 failed with error -110
Sep 26 14:47:00 Qbit kernel: media: Linux media interface: v0.10
Sep 26 14:47:00 Qbit kernel: Linux video capture interface: v2.00
Sep 26 14:47:00 Qbit kernel: uvcvideo: Found UVC 1.00 device HP TrueVision FHD RGB-IR (064e:3401)
Sep 26 14:47:00 Qbit kernel: uvcvideo 1-5:1.0: Entity type for entity Extension 4 was not initialized!
Sep 26 14:47:00 Qbit kernel: uvcvideo 1-5:1.0: Entity type for entity Extension 3 was not initialized!
Sep 26 14:47:00 Qbit kernel: uvcvideo 1-5:1.0: Entity type for entity Processing 2 was not initialized!
Sep 26 14:47:00 Qbit kernel: uvcvideo 1-5:1.0: Entity type for entity Camera 1 was not initialized!
Sep 26 14:47:00 Qbit kernel: input: HP TrueVision FHD RGB-IR as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input9
Sep 26 14:47:00 Qbit kernel: usbcore: registered new interface driver uvcvideo
Sep 26 14:47:00 Qbit kernel: USB Video Class driver (1.1.1)
Sep 26 14:47:01 Qbit kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Sep 26 14:47:01 Qbit kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 26 14:47:01 Qbit kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Sep 26 14:47:01 Qbit kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops vgt_balloon_space [i915])
Sep 26 14:47:01 Qbit kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Sep 26 14:47:01 Qbit kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Sep 26 14:47:01 Qbit kernel: ACPI: Battery Slot [BAT0] (battery present)
Sep 26 14:47:01 Qbit kernel: wmi: Mapper loaded
Sep 26 14:47:01 Qbit kernel: input: PC Speaker as /devices/platform/pcspkr/input/input10
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC295: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
Sep 26 14:47:01 Qbit kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Sep 26 14:47:01 Qbit systemd[1]: Found device /dev/disk/by-uuid/4670979c-47c0-494f-b232-23844cd49d1d.
Sep 26 14:47:01 Qbit systemd[1]: Found device /dev/disk/by-uuid/cdb5930e-4c2a-4f11-9d4e-d08869930ede.
Sep 26 14:47:01 Qbit systemd[1]: Found device /dev/disk/by-uuid/bb7acf97-3a94-4451-bb1c-ce45a3b890b3.
Sep 26 14:47:01 Qbit systemd[1]: Found device /dev/disk/by-uuid/C075-6275.
Sep 26 14:47:01 Qbit systemd[1]: Starting File System Check on /dev/disk/by-uuid/C075-6275...
Sep 26 14:47:01 Qbit systemd[1]: Starting File System Check on /dev/disk/by-uuid/bb7acf97-3a94-4451-bb1c-ce45a3b890b3...
Sep 26 14:47:01 Qbit systemd[1]: Starting File System Check on /dev/disk/by-uuid/cdb5930e-4c2a-4f11-9d4e-d08869930ede...
Sep 26 14:47:01 Qbit systemd[1]: Activating swap /dev/disk/by-uuid/4670979c-47c0-494f-b232-23844cd49d1d...
Sep 26 14:47:01 Qbit kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
Sep 26 14:47:01 Qbit kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Sep 26 14:47:01 Qbit kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Sep 26 14:47:01 Qbit kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Sep 26 14:47:01 Qbit kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Sep 26 14:47:01 Qbit kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Sep 26 14:47:01 Qbit systemd[1]: Activated swap /dev/disk/by-uuid/4670979c-47c0-494f-b232-23844cd49d1d.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Swap.
Sep 26 14:47:01 Qbit kernel: Adding 4194300k swap on /dev/nvme0n1p3.  Priority:-1 extents:1 across:4194300k SSFS
Sep 26 14:47:01 Qbit systemd[1]: Mounting Temporary Directory (/tmp)...
Sep 26 14:47:01 Qbit systemd[1]: Mounted Temporary Directory (/tmp).
Sep 26 14:47:01 Qbit systemd-fsck[297]: /dev/nvme0n1p4: clean, 11950/655360 files, 313536/2621440 blocks
Sep 26 14:47:01 Qbit systemd-fsck[296]: /dev/nvme0n1p5: clean, 38302/29343744 files, 8888559/117373265 blocks
Sep 26 14:47:01 Qbit systemd[1]: Started File System Check on /dev/disk/by-uuid/cdb5930e-4c2a-4f11-9d4e-d08869930ede.
Sep 26 14:47:01 Qbit systemd[1]: Mounting /home...
Sep 26 14:47:01 Qbit systemd[1]: Started File System Check on /dev/disk/by-uuid/bb7acf97-3a94-4451-bb1c-ce45a3b890b3.
Sep 26 14:47:01 Qbit systemd-udevd[282]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Sep 26 14:47:01 Qbit systemd[1]: Mounting /media/Storage...
Sep 26 14:47:01 Qbit systemd[1]: Mounted /home.
Sep 26 14:47:01 Qbit kernel: EXT4-fs (nvme0n1p4): mounted filesystem with ordered data mode. Opts: data=ordered
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
Sep 26 14:47:01 Qbit kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
Sep 26 14:47:01 Qbit kernel: Intel(R) Wireless WiFi driver for Linux
Sep 26 14:47:01 Qbit kernel: Copyright(c) 2003- 2015 Intel Corporation
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: enabling device (0000 -> 0002)
Sep 26 14:47:01 Qbit kernel: EXT4-fs (nvme0n1p5): mounted filesystem with ordered data mode. Opts: data=ordered
Sep 26 14:47:01 Qbit kernel: MXM: GUID detected in BIOS
Sep 26 14:47:01 Qbit kernel: ACPI Warning: \_SB.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20170303/nsarguments-95)
Sep 26 14:47:01 Qbit kernel: ACPI Warning: \_SB.PCI0.RP01.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20170303/nsarguments-95)
Sep 26 14:47:01 Qbit systemd[1]: Mounted /media/Storage.
Sep 26 14:47:01 Qbit kernel: ACPI Warning: \_SB.PCI0.RP01.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20170303/nsarguments-95)
Sep 26 14:47:01 Qbit kernel: vfio-pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
Sep 26 14:47:01 Qbit kernel: VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.RP01.PEGP handle
Sep 26 14:47:01 Qbit kernel: nouveau: detected PR support, will not use DSM
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: Direct firmware load for iwlwifi-8265-30.ucode failed with error -2
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: Direct firmware load for iwlwifi-8265-29.ucode failed with error -2
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: Direct firmware load for iwlwifi-8265-28.ucode failed with error -2
Sep 26 14:47:01 Qbit kernel: AVX2 version of gcm_enc/dec engaged.
Sep 26 14:47:01 Qbit kernel: AES CTR mode by8 optimization enabled
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: capa flags index 3 larger than supported by driver
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: loaded firmware version 27.541033.0 op_mode iwlmvm
Sep 26 14:47:01 Qbit systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 26 14:47:01 Qbit systemd-fsck[295]: fsck.fat 4.1 (2017-01-24)
Sep 26 14:47:01 Qbit systemd-fsck[295]: /dev/nvme0n1p2: 352 files, 127582/403266 clusters
Sep 26 14:47:01 Qbit systemd[1]: Started File System Check on /dev/disk/by-uuid/C075-6275.
Sep 26 14:47:01 Qbit systemd[1]: Mounting /boot...
Sep 26 14:47:01 Qbit kernel: ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=4
Sep 26 14:47:01 Qbit systemd[1]: Starting Load/Save RF Kill Switch Status...
Sep 26 14:47:01 Qbit kernel: usbcore: registered new interface driver btusb
Sep 26 14:47:01 Qbit systemd[1]: Mounted /boot.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Local File Systems.
Sep 26 14:47:01 Qbit systemd[1]: Starting Rebuild Dynamic Linker Cache...
Sep 26 14:47:01 Qbit systemd[1]: Starting Create Volatile Files and Directories...
Sep 26 14:47:01 Qbit systemd[1]: Starting Rebuild Journal Catalog...
Sep 26 14:47:01 Qbit systemd[1]: Started Create Volatile Files and Directories.
Sep 26 14:47:01 Qbit systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 26 14:47:01 Qbit systemd[1]: Starting Network Time Synchronization...
Sep 26 14:47:01 Qbit systemd[1]: Started Rebuild Journal Catalog.
Sep 26 14:47:01 Qbit systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: Bootloader revision 0.0 build 26 week 38 2015
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: Device revision is 16
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: Secure boot is enabled
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: OTP lock is enabled
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: API lock is enabled
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: Debug lock is disabled
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
Sep 26 14:47:01 Qbit kernel: Bluetooth: hci0: Found device firmware: intel/ibt-12-16.sfi
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
Sep 26 14:47:01 Qbit kernel: iTCO_vendor_support: vendor-support=0
Sep 26 14:47:01 Qbit kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Sep 26 14:47:01 Qbit kernel: iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Sep 26 14:47:01 Qbit kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: input: HP WMI hotkeys as /devices/virtual/input/input19
Sep 26 14:47:01 Qbit kernel: ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Field [D128] at 1152 exceeds Buffer [NULL] size 160 (bits) (20170303/dsopcode-236)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\HWMC] (Node ffff9c783e15d7a8), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: ACPI Error: Method parse/execution failed [\_SB.WMID.WMAA] (Node ffff9c783e15e7d0), AE_AML_BUFFER_LIMIT (20170303/psparse-543)
Sep 26 14:47:01 Qbit kernel: intel_rapl: Found RAPL domain package
Sep 26 14:47:01 Qbit kernel: intel_rapl: Found RAPL domain core
Sep 26 14:47:01 Qbit kernel: intel_rapl: Found RAPL domain uncore
Sep 26 14:47:01 Qbit kernel: intel_rapl: Found RAPL domain dram
Sep 26 14:47:01 Qbit systemd[1]: Reached target Sound Card.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Bluetooth.
Sep 26 14:47:01 Qbit systemd[1]: Started Load/Save RF Kill Switch Status.
Sep 26 14:47:01 Qbit systemd[1]: Started Rebuild Dynamic Linker Cache.
Sep 26 14:47:01 Qbit systemd[1]: Starting Update is Completed...
Sep 26 14:47:01 Qbit systemd[1]: Started Update is Completed.
Sep 26 14:47:01 Qbit kernel: random: crng init done
Sep 26 14:47:01 Qbit kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Sep 26 14:47:01 Qbit systemd-udevd[265]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
Sep 26 14:47:01 Qbit kernel: (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Sep 26 14:47:01 Qbit kernel: thermal thermal_zone8: failed to read out thermal zone (-5)
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0 wlo1: renamed from wlan0
Sep 26 14:47:01 Qbit kernel: input: ELAN22CA:00 04F3:22CA as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN22CA:00/0018:04F3:22CA.0005/input/input20
Sep 26 14:47:01 Qbit kernel: input: ELAN22CA:00 04F3:22CA Pen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-7/i2c-ELAN22CA:00/0018:04F3:22CA.0005/input/input23
Sep 26 14:47:01 Qbit kernel: hid-multitouch 0018:04F3:22CA.0005: input,hidraw0: I2C HID v1.00 Device [ELAN22CA:00 04F3:22CA] on i2c-ELAN22CA:00
Sep 26 14:47:01 Qbit kernel: mousedev: PS/2 mouse device common for all mice
Sep 26 14:47:01 Qbit systemd[1]: Started Network Time Synchronization.
Sep 26 14:47:01 Qbit systemd[1]: Reached target System Initialization.
Sep 26 14:47:01 Qbit systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 26 14:47:01 Qbit systemd[1]: Listening on sshd.socket.
Sep 26 14:47:01 Qbit systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Sockets.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Basic System.
Sep 26 14:47:01 Qbit systemd[1]: Starting Login Service...
Sep 26 14:47:01 Qbit systemd[1]: Started D-Bus System Message Bus.
Sep 26 14:47:01 Qbit systemd-logind[396]: Configuration file /etc/systemd/logind.conf is marked executable. Please remove executable permission bits. Proceeding anyway.
Sep 26 14:47:01 Qbit systemd-logind[396]: Configuration file /etc/systemd/logind.conf is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
Sep 26 14:47:01 Qbit systemd[1]: Starting Connection service...
Sep 26 14:47:01 Qbit systemd[1]: Starting Save/Restore Sound Card State...
Sep 26 14:47:01 Qbit systemd[1]: Reached target System Time Synchronized.
Sep 26 14:47:01 Qbit systemd[1]: Started Daily rotation of log files.
Sep 26 14:47:01 Qbit systemd[1]: Started Daily man-db cache update.
Sep 26 14:47:01 Qbit systemd[1]: Started Daily verification of password and group files.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Timers.
Sep 26 14:47:01 Qbit systemd[1]: Started Login Service.
Sep 26 14:47:01 Qbit systemd-logind[396]: New seat seat0.
Sep 26 14:47:01 Qbit systemd[1]: Started Save/Restore Sound Card State.
Sep 26 14:47:01 Qbit systemd-logind[396]: Watching system buttons on /dev/input/event2 (Power Button)
Sep 26 14:47:01 Qbit systemd[1]: Started Connection service.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Network.
Sep 26 14:47:01 Qbit connmand[398]: Connection Manager version 1.35
Sep 26 14:47:01 Qbit systemd[1]: Starting Permit User Sessions...
Sep 26 14:47:01 Qbit systemd[1]: Started Permit User Sessions.
Sep 26 14:47:01 Qbit systemd[1]: Started Getty on tty1.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Login Prompts.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Multi-User System.
Sep 26 14:47:01 Qbit systemd[1]: Reached target Graphical Interface.
Sep 26 14:47:01 Qbit systemd[1]: Startup finished in 3.102s (kernel) + 1.484s (userspace) = 7.652s.
Sep 26 14:47:01 Qbit connmand[398]: Checking loopback interface settings
Sep 26 14:47:01 Qbit connmand[398]: System hostname is Qbit
Sep 26 14:47:01 Qbit dbus[397]: [system] Activating via systemd: service name='net.connman.vpn' unit='connman-vpn.service'
Sep 26 14:47:01 Qbit systemd[1]: Starting ConnMan VPN service...
Sep 26 14:47:01 Qbit connmand[398]: __connman_inet_get_pnp_nameservers: Cannot read /proc/net/pnp Failed to open file “/proc/net/pnp”: No such file or directory
Sep 26 14:47:01 Qbit dbus[397]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service'
Sep 26 14:47:01 Qbit connmand[398]: Cannot create /var/run/connman/resolv.conf falling back to /etc/resolv.conf
Sep 26 14:47:01 Qbit dbus[397]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Sep 26 14:47:01 Qbit connmand[398]: lo {newlink} index 1 address 00:00:00:00:00:00 mtu 65536
Sep 26 14:47:01 Qbit connmand[398]: lo {newlink} index 1 operstate 0 <UNKNOWN>
Sep 26 14:47:01 Qbit connmand[398]: wlo1 {create} index 2 type 1 <ETHER>
Sep 26 14:47:01 Qbit connmand[398]: wlo1 {update} flags 4098 <DOWN>
Sep 26 14:47:01 Qbit connmand[398]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:01 Qbit connmand[398]: wlo1 {newlink} index 2 operstate 2 <DOWN>
Sep 26 14:47:01 Qbit connmand[398]: get_nfs_server_ip: File /proc/net/pnp doesn't exist
Sep 26 14:47:01 Qbit connmand[398]: get_nfs_server_ip: File /proc/net/pnp doesn't exist
Sep 26 14:47:01 Qbit connmand[398]: Adding interface wlo1 [ wifi ]
Sep 26 14:47:01 Qbit systemd[1]: Starting Hostname Service...
Sep 26 14:47:01 Qbit systemd[1]: Starting WPA supplicant...
Sep 26 14:47:01 Qbit dbus[397]: [system] Successfully activated service 'net.connman.vpn'
Sep 26 14:47:01 Qbit systemd[1]: Started ConnMan VPN service.
Sep 26 14:47:01 Qbit connman-vpnd[413]: Connection Manager VPN daemon version 1.35
Sep 26 14:47:01 Qbit connman-vpnd[413]: lo {newlink} index 1 operstate 0 <UNKNOWN>
Sep 26 14:47:01 Qbit connman-vpnd[413]: wlo1 {create} index 2 type 1 <ETHER>
Sep 26 14:47:01 Qbit connman-vpnd[413]: wlo1 {update} flags 4098 <DOWN>
Sep 26 14:47:01 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:01 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 operstate 2 <DOWN>
Sep 26 14:47:01 Qbit dbus[397]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Sep 26 14:47:01 Qbit wpa_supplicant[415]: Successfully initialized wpa_supplicant
Sep 26 14:47:01 Qbit systemd[1]: Started WPA supplicant.
Sep 26 14:47:01 Qbit systemd-logind[396]: Watching system buttons on /dev/input/event1 (Power Button)
Sep 26 14:47:01 Qbit systemd-logind[396]: Watching system buttons on /dev/input/event0 (Lid Switch)
Sep 26 14:47:01 Qbit kernel: nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
Sep 26 14:47:01 Qbit kernel: iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
Sep 26 14:47:01 Qbit kernel: intel-vbtn INT33D6:00: unknown event index 0xcd
Sep 26 14:47:02 Qbit kernel: iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
Sep 26 14:47:02 Qbit kernel: iwlwifi 0000:3b:00.0: L1 Enabled - LTR Enabled
Sep 26 14:47:02 Qbit dbus[397]: [system] Successfully activated service 'org.freedesktop.hostname1'
Sep 26 14:47:02 Qbit systemd[1]: Started Hostname Service.
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {update} flags 36931 <UP,RUNNING>
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 operstate 0 <UNKNOWN>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {update} flags 36931 <UP,RUNNING>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 operstate 0 <UNKNOWN>
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {update} flags 36867 <UP>
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 operstate 2 <DOWN>
Sep 26 14:47:02 Qbit kernel: IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {update} flags 36867 <UP>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 operstate 2 <DOWN>
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 operstate 2 <DOWN>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 operstate 2 <DOWN>
Sep 26 14:47:02 Qbit wpa_supplicant[415]: WPS: Converting push_button to virtual_push_button for WPS 2.0 compliance
Sep 26 14:47:02 Qbit systemd-logind[396]: Watching system buttons on /dev/input/event6 (Intel Virtual Button driver)
Sep 26 14:47:02 Qbit systemd-logind[396]: Watching system buttons on /dev/input/event5 (AT Translated Set 2 keyboard)
Sep 26 14:47:02 Qbit connmand[398]: Skipping disconnect of 486f6d65204e6574776f726b20322e3447487a_managed_psk, network is connecting.
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: SME: Trying to authenticate with 10:fe:ed:89:1c:71 (SSID='Home Network 2.4GHz' freq=2412 MHz)
Sep 26 14:47:02 Qbit kernel: wlo1: authenticate with 10:fe:ed:89:1c:71
Sep 26 14:47:02 Qbit kernel: wlo1: send auth to 10:fe:ed:89:1c:71 (try 1/3)
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: Trying to associate with 10:fe:ed:89:1c:71 (SSID='Home Network 2.4GHz' freq=2412 MHz)
Sep 26 14:47:02 Qbit kernel: wlo1: authenticated
Sep 26 14:47:02 Qbit kernel: wlo1: associate with 10:fe:ed:89:1c:71 (try 1/3)
Sep 26 14:47:02 Qbit kernel: wlo1: RX AssocResp from 10:fe:ed:89:1c:71 (capab=0x431 status=0 aid=1)
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {update} flags 102403 <UP,LOWER_UP>
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: Associated with 10:fe:ed:89:1c:71
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 operstate 5 <DORMANT>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {add} route fe80:: gw :: scope 0 <UNIVERSE>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {RX} 1 packets 113 bytes
Sep 26 14:47:02 Qbit kernel: wlo1: associated
Sep 26 14:47:02 Qbit kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {TX} 0 packets 0 bytes
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {update} flags 102403 <UP,LOWER_UP>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 operstate 5 <DORMANT>
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: WPA: Key negotiation completed with 10:fe:ed:89:1c:71 [PTK=CCMP GTK=CCMP]
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: CTRL-EVENT-CONNECTED - Connection to 10:fe:ed:89:1c:71 completed [id=0 id_str=]
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {update} flags 102467 <UP,RUNNING,LOWER_UP>
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {RX} 2 packets 306 bytes
Sep 26 14:47:02 Qbit connman-vpnd[413]: wlo1 {newlink} index 2 operstate 6 <UP>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {TX} 2 packets 288 bytes
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {update} flags 102467 <UP,RUNNING,LOWER_UP>
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 address 1C:4D:70:09:72:D9 mtu 1500
Sep 26 14:47:02 Qbit connmand[398]: wlo1 {newlink} index 2 operstate 6 <UP>
Sep 26 14:47:02 Qbit wpa_supplicant[415]: wlo1: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-70 noise=9999 txrate=1000
Sep 26 14:47:02 Qbit kernel: psmouse serio1: synaptics: queried max coordinates: x [..5612], y [..4708]
Sep 26 14:47:02 Qbit kernel: psmouse serio1: synaptics: queried min coordinates: x [1330..], y [1146..]
Sep 26 14:47:02 Qbit kernel: psmouse serio1: synaptics: Your touchpad (PNP: SYN3244 SYN1e00 SYN0002 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.
Sep 26 14:47:02 Qbit kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.2, id: 0x1e2b1, caps: 0xf00123/0x840300/0x12e800/0x400000, board id: 3270, fw id: 2452168
Sep 26 14:47:02 Qbit kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input13
Sep 26 14:47:03 Qbit kernel: Bluetooth: hci0: Waiting for firmware download to complete
Sep 26 14:47:03 Qbit kernel: Bluetooth: hci0: Firmware loaded in 1586945 usecs
Sep 26 14:47:03 Qbit kernel: Bluetooth: hci0: Waiting for device to boot
Sep 26 14:47:03 Qbit kernel: Bluetooth: hci0: Device booted in 11662 usecs
Sep 26 14:47:03 Qbit kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-12-16.ddc
Sep 26 14:47:03 Qbit kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Sep 26 14:47:03 Qbit connmand[398]: wlo1 {add} address 192.168.1.105/24 label wlo1 family 2
Sep 26 14:47:03 Qbit connmand[398]: wlo1 {add} route 192.168.1.0 gw 0.0.0.0 scope 253 <LINK>
Sep 26 14:47:03 Qbit connmand[398]: wlo1 {add} route 192.168.1.1 gw 0.0.0.0 scope 253 <LINK>
Sep 26 14:47:03 Qbit connmand[398]: wlo1 {add} route 0.0.0.0 gw 192.168.1.1 scope 0 <UNIVERSE>
Sep 26 14:47:03 Qbit connmand[398]: wlo1 {add} route 212.227.81.55 gw 192.168.1.1 scope 0 <UNIVERSE>
Sep 26 14:47:03 Qbit connmand[398]: wlo1 {del} route 212.227.81.55 gw 192.168.1.1 scope 0 <UNIVERSE>
Sep 26 14:47:07 Qbit login[402]: pam_unix(login:session): session opened for user areuz by LOGIN(uid=0)
Sep 26 14:47:07 Qbit systemd[1]: Created slice User Slice of areuz.
Sep 26 14:47:07 Qbit systemd[1]: Starting User Manager for UID 1000...
Sep 26 14:47:07 Qbit systemd-logind[396]: New session c1 of user areuz.
Sep 26 14:47:07 Qbit systemd[1]: Started Session c1 of user areuz.
Sep 26 14:47:07 Qbit systemd[442]: pam_unix(systemd-user:session): session opened for user areuz by (uid=0)
Sep 26 14:47:07 Qbit systemd[442]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Sep 26 14:47:07 Qbit systemd[442]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Sep 26 14:47:07 Qbit login[402]: LOGIN ON tty1 BY areuz
Sep 26 14:47:07 Qbit systemd[442]: Listening on Sound System.
Sep 26 14:47:07 Qbit systemd[442]: Listening on GnuPG network certificate management daemon.
Sep 26 14:47:07 Qbit systemd[442]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Sep 26 14:47:07 Qbit systemd[442]: Starting D-Bus User Message Bus Socket.
Sep 26 14:47:07 Qbit systemd[442]: Reached target Paths.
Sep 26 14:47:07 Qbit systemd[442]: Reached target Timers.
Sep 26 14:47:07 Qbit systemd[442]: Listening on GnuPG cryptographic agent and passphrase cache.
Sep 26 14:47:07 Qbit systemd[442]: Listening on D-Bus User Message Bus Socket.
Sep 26 14:47:07 Qbit systemd[442]: Reached target Sockets.
Sep 26 14:47:07 Qbit systemd[442]: Reached target Basic System.
Sep 26 14:47:07 Qbit systemd[442]: Reached target Default.
Sep 26 14:47:07 Qbit systemd[442]: Startup finished in 17ms.
Sep 26 14:47:07 Qbit systemd[1]: Started User Manager for UID 1000.
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit dbus[397]: [system] Rejected send message, 0 matched rules; type="error", sender=":1.0" (uid=0 pid=396 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.17" (uid=1000 pid=481 comm="/usr/lib/xorg-server/Xorg -nolisten tcp :0 vt1 -au")
Sep 26 14:47:08 Qbit systemd[442]: Started D-Bus User Message Bus.
Sep 26 14:47:14 Qbit kernel: intel-vbtn INT33D6:00: unknown event index 0xcd
Sep 26 14:47:32 Qbit systemd-timesyncd[374]: Synchronized to time server 213.151.245.66:123 (2.arch.pool.ntp.org).
Sep 26 14:47:37 Qbit dbus-daemon[565]: Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service'
Sep 26 14:47:37 Qbit systemd[442]: Starting Accessibility services bus...
Sep 26 14:47:37 Qbit dbus-daemon[565]: Successfully activated service 'org.a11y.Bus'
Sep 26 14:47:37 Qbit systemd[442]: Started Accessibility services bus.
Sep 26 14:47:37 Qbit at-spi-bus-launcher[1920]: Activating service name='org.a11y.atspi.Registry'
Sep 26 14:47:37 Qbit at-spi-bus-launcher[1920]: Successfully activated service 'org.a11y.atspi.Registry'
Sep 26 14:47:37 Qbit org.a11y.atspi.Registry[1924]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Sep 26 14:47:37 Qbit systemd[442]: Starting Sound Service...
Sep 26 14:47:37 Qbit dbus[397]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
Sep 26 14:47:37 Qbit systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Sep 26 14:47:37 Qbit dbus[397]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Sep 26 14:47:37 Qbit systemd[1]: Started RealtimeKit Scheduling Policy Service.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Successfully called chroot.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Successfully dropped privileges.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Successfully limited resources.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Running.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Canary thread running.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Watchdog thread running.
Sep 26 14:47:37 Qbit dbus[397]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
Sep 26 14:47:37 Qbit systemd[1]: Starting Authorization Manager...
Sep 26 14:47:37 Qbit polkitd[1964]: Started polkitd version 0.114
Sep 26 14:47:37 Qbit polkitd[1964]: Loading rules from directory /etc/polkit-1/rules.d
Sep 26 14:47:37 Qbit polkitd[1964]: Loading rules from directory /usr/share/polkit-1/rules.d
Sep 26 14:47:37 Qbit polkitd[1964]: Finished loading, compiling and executing 2 rules
Sep 26 14:47:37 Qbit dbus[397]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Sep 26 14:47:37 Qbit systemd[1]: Started Authorization Manager.
Sep 26 14:47:37 Qbit polkitd[1964]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Successfully made thread 1959 of process 1959 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Supervising 1 threads of 1 processes of 1 users.
Sep 26 14:47:37 Qbit pulseaudio[1959]: W: [pulseaudio] sink.c: Default and alternate sample rates are the same.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Supervising 1 threads of 1 processes of 1 users.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Successfully made thread 1997 of process 1959 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Supervising 2 threads of 1 processes of 1 users.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Supervising 2 threads of 1 processes of 1 users.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Successfully made thread 1998 of process 1959 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
Sep 26 14:47:37 Qbit rtkit-daemon[1961]: Supervising 3 threads of 1 processes of 1 users.
Sep 26 14:47:37 Qbit systemd[442]: Started Sound Service.
Sep 26 14:47:38 Qbit dbus[397]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
Sep 26 14:47:38 Qbit systemd[1]: Starting Daemon for power management...
Sep 26 14:47:38 Qbit dbus[397]: [system] Successfully activated service 'org.freedesktop.UPower'
Sep 26 14:47:38 Qbit systemd[1]: Started Daemon for power management.

Last edited by areuz (2017-09-26 12:57:53)


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#9 2017-09-26 13:26:34

Lone_Wolf
Forum Moderator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,958

Re: QEMU GPU Passthrough IOMMU group error persists

https://wiki.archlinux.org/index.php/Microcode

updating intel microcode may not be needed for your laptop now, but no one can predict when that will be needed.

The latest firmware version for your laptop is  F.20 Rev.A , released on aug 8 2017 .

[    0.000000] DMI: HP HP Spectre x360 Convertible 15-bl1XX/827F, BIOS F.20 06/28/2017

looks like HP didn't update the firmware before shipping.

https://support.hp.com/us-en/drivers/se … l/18164445

boot to windows 10, select the firmware, download and execute .
It should detect whether it's newer then the installed version.

Last edited by Lone_Wolf (2017-09-26 13:27:01)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#10 2017-09-30 20:46:27

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

I'm so sorry, I was overwhelmed with work and didn't have any time to dedicate to this issue - I hope you are still subscribed to this topic.
So, can you explain how to update the Firmware on Arch, I do not have Windows installed anymore... or just link a page that explains it, I can't find anything... or rather complicated stuff that I do not understand and can't decide which method to use.

I went ahead and installed the intel-ucode and enabled it in grub.cfg - gonna restart now, see if it was updated and report if anything changed.

$dmesg | grep microcode
[    0.000000] microcode: microcode updated early to revision 0x66, date = 2017-05-23
[    1.182640] microcode: sig=0x806ea, pf=0x80, revision=0x66
[    1.183012] microcode: Microcode Update Driver: v2.2

Still getting the error

qemu-system-x86_64: -device vfio-pci,host=01:00.0: vfio error: 0000:01:00.0: group 7 is not viable
Please ensure all devices within the iommu_group are bound to their vfio bus driver.

BTW.: forgot to also disclose that I'm getting a permission denied when starting QEMU (for /dev/vfio/7) - which I currently overcome by $chmod 777, I hope that doesn't screw anything up~

Last edited by areuz (2017-09-30 20:51:04)


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#11 2017-09-30 21:01:14

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

My attempt on the firmware update, using this guide: https://h30434.www3.hp.com/t5/Notebook- … -p/4869835

Tho when I unpacked the .exe (7z e ./sp81667.exe) I just got another .exe file, that I couldn't extract anymore (named 0827FF20_WIN.EXE)

Last edited by areuz (2017-09-30 21:01:45)


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#12 2017-10-02 19:48:29

dramm
Member
Registered: 2017-07-17
Posts: 13

Re: QEMU GPU Passthrough IOMMU group error persists

Any news in your issue?

I also have a Spectre x360 15'', but it's the bl075nr.
I want to install Arch on it but I'm afraid I'll face similar problems...

Offline

#13 2017-10-02 22:02:51

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

Sadly, no, I haven't gotten anywhere with this issue because it doesn't really make sense to me, and low level hw drivers and configuration is absolutely not my thing.
Though if you are interested I have come across other issues with this particular notebook (I don't have answers to a lot of them, but it could be a good heads up).


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

#14 2017-10-03 14:20:12

dramm
Member
Registered: 2017-07-17
Posts: 13

Re: QEMU GPU Passthrough IOMMU group error persists

I'm certanly interested. When you have the time PM/email me. big_smile

Offline

#15 2017-10-03 20:34:36

blahhumbug
Member
Registered: 2016-10-08
Posts: 64

Re: QEMU GPU Passthrough IOMMU group error persists

You mentioned trying pcie_acs_override=downstream, but have you tried using both downstream and id:10de:1d10?

I'm not 100% sure if you can list the option twice, but both root-ports and multi-function/SRIOV endpoints have ACS configuration registers, and the override might need to be applied to both.

Offline

#16 2017-10-03 22:11:35

areuz
Member
Registered: 2016-09-16
Posts: 60

Re: QEMU GPU Passthrough IOMMU group error persists

I was testing your idea, but seems like my whole setup stopped working right now. The file /dev/vfio/7 is not being created. The vfio kernel driver is not adding any devices at all:

$dmesg | grep vfio
[    0.000000] Linux version 4.12.13-1-vfio (areuz@Qbit) (gcc version 7.2.0 (GCC) ) #1 SMP PREEMPT Sun Sep 24 23:52:11 CEST 2017
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet intel_iommu=on pcie_acs_override=downstream loglevel=3
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-vfio root=UUID=f70892af-a7e8-41cd-b9e6-2f9c97698c57 rw quiet intel_iommu=on pcie_acs_override=downstream loglevel=3

As you see.. no devices added what so ever - but I haven't changed any config settings.

modprobe/vfio.conf is still

options vfio-pci ids=10de:1d10

mkinitcpio.conf (i reran it, just in case the image got overwritten or something

# vim:set ft=sh
MODULES="vfio vfio_iommu_type1 vfio_pci vfio_virqfd i915"
BINARIES=""
FILES=""
HOOKS="base udev autodetect modconf block filesystems keyboard fsck"

And you saw the grub line... still all the same, though the device is not getting the vfio driver added to it anymore:

$lspci -nnk;
01:00.0 3D controller [0302]: NVIDIA Corporation GP108 [GeForce MX150] [10de:1d10] (rev a1)
	Subsystem: Hewlett-Packard Company GP108 [GeForce MX150] [103c:827f]
	Kernel modules: nouveau

I'm actually more confused than before.

EDIT:
Last time I was updating with 'yaourt -Syyu --aur --noconfirm', the process failed at the end of making a new version of linux-vfio (come command no found stuff), I will rerun it overnight and see if that caused these problems.

Oh.. by the comments this seems like a common bug

==> Starting package_linux-vfio-headers()...
install: cannot stat 'Documentation/DocBook/Makefile': No such file or directory
==> ERROR: A failure occurred in package_linux-vfio-headers().

Probably gonna wait with the update until this gets a solution/fix... meanwhile I'll try to rebuild he last version.

EDIT 2:
Can't find the old linux-vfio package in cache, no Idea why yaourt didn't add it there - so I'm unable to rebuild atm.

Last edited by areuz (2017-10-03 22:24:30)


If I'm not a bush, I'm not no one.
Dotfiles Git

Offline

Board footer

Powered by FluxBB