You are not logged in.

#1 2020-02-14 09:51:21

scippie
Member
Registered: 2019-06-07
Posts: 127

[SOLVED] cpu speed/governor 'weird' since last update

Note: Laptop, intel i9 5Ghz.

Sorry for the bad title, I don't know how to better describe it. Suggestions are welcome!

I am quite sure I got a kernel update yesterday when I updated my Arch installation.
Usually, I reboot afterwards, but yesterday, I was in the middle of a game so I didn't reboot.
So I can't tell if it has to do with the update or not, but I guess it does.

Today, when I turned on my laptop, the cpu part of my i3block no longer worked.
I wrote the script myself: it normally shows the load average and the currently selected max. cpu frequency. With the scroll wheel, I can change that max. frequency so that games that don't idle (but should) no longer unnecessarily heat up my cpu.

The script relies on the following command to show the max. frequency:

$ cpupower frequency-info
analyzing CPU 0:
  driver: intel_pstate
  CPUs which run at the same hardware frequency: 0
  CPUs which need to have their frequency coordinated by software: 0
  maximum transition latency:  Cannot determine or is not supported.
  hardware limits: 800 MHz - 5.00 GHz
  available cpufreq governors: performance powersave
  Unable to determine current policy
  current CPU frequency: Unable to call hardware
  current CPU frequency: 925 MHz (asserted by call to kernel)
  boost state support:
    Supported: yes
    Active: yes

Normally, the currently set min/max. CPU frequency shows in the current policy line. It should be "current policy: frequency should be within 800 MHz and 5.00 GHz." after a reboot because I don't change the frequency at boot. Now it shows "Unable to determine current policy".

To set the max. frequency, I use: # cpupower frequency-set -u 5.0Ghz (or something else)
When executed now, this command doesn't give errors but it doesn't seem to do anything as the laptop is clearly not faster and the results stays the same.

The cpupower-gui application also no longer starts (I tell this because it gives errors that might help):

$ cpupower-gui
Traceback (most recent call last):
  File "/usr/share/cpupower-gui/cpupower_gui/window.py", line 133, in on_cpu_changed
    self.upd_sliders()
  File "/usr/share/cpupower-gui/cpupower_gui/window.py", line 107, in upd_sliders
    self._read_settings(cpu)
  File "/usr/share/cpupower-gui/cpupower_gui/window.py", line 244, in _read_settings
    self.governor = HELPER.get_cpu_governor(cpu)
  File "/usr/lib/python3.8/site-packages/dbus/proxies.py", line 141, in __call__
    return self._connection.call_blocking(self._named_service,
  File "/usr/lib/python3.8/site-packages/dbus/connection.py", line 652, in call_blocking
    reply_message = self.send_message_with_reply_and_block(
dbus.exceptions.DBusException: org.freedesktop.DBus.Python.OSError: Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/dbus/service.py", line 711, in _message_cb
    retval = candidate_method(self, *args, **keywords)
  File "/usr/lib/cpupower-gui/cpupower-gui-helper", line 235, in get_cpu_governor
    return read_governor(cpu)
  File "/usr/lib/cpupower-gui/cpupower-gui-helper", line 144, in read_governor
    governor = sys_file.readline().strip()
OSError: [Errno 22] Invalid argument

Traceback (most recent call last):
  File "/usr/share/cpupower-gui/cpupower_gui/main.py", line 93, in do_activate
    win = CpupowerGuiWindow(application=self)
  File "/usr/share/cpupower-gui/cpupower_gui/window.py", line 72, in __init__
    self._read_settings(self._get_active_cpu())
  File "/usr/share/cpupower-gui/cpupower_gui/window.py", line 244, in _read_settings
    self.governor = HELPER.get_cpu_governor(cpu)
  File "/usr/lib/python3.8/site-packages/dbus/proxies.py", line 141, in __call__
    return self._connection.call_blocking(self._named_service,
  File "/usr/lib/python3.8/site-packages/dbus/connection.py", line 652, in call_blocking
    reply_message = self.send_message_with_reply_and_block(
dbus.exceptions.DBusException: org.freedesktop.DBus.Python.OSError: Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/dbus/service.py", line 711, in _message_cb
    retval = candidate_method(self, *args, **keywords)
  File "/usr/lib/cpupower-gui/cpupower-gui-helper", line 235, in get_cpu_governor
    return read_governor(cpu)
  File "/usr/lib/cpupower-gui/cpupower-gui-helper", line 144, in read_governor
    governor = sys_file.readline().strip()
OSError: [Errno 22] Invalid argument

I have a feeling that my CPU is stuck at running at low(est) frequency or something like that, because the game I am currently playing is clearly stuttering and unresponsive.

After searching a while, I just noticed that it has to do with the governor. The error messages of cpupower-gui made that clear to me.
After changing it manually to "performance" with: # cpupower frequency-set -g performance, my laptop is running fine again, at full speed. But after a reboot, it is bad again.

Can anyone help me solve this? Where should I go looking next?

Last edited by scippie (2020-02-14 10:13:23)

Offline

#2 2020-02-14 09:59:28

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,415

Re: [SOLVED] cpu speed/governor 'weird' since last update

Manually setting frequencies has always been a hack/not guaranteed on intel_pstate afaik so I wonder how that originally worked.

But if  it's not selecting any policy that is indeed weird, it should default to powersave and not "nothing".

If you just want to switch the governor at boot cpupower comes with a systemd service that you can configure to set the desired cpupower parameters during boot: https://wiki.archlinux.org/index.php/CP … g#cpupower

Last edited by V1del (2020-02-14 10:08:51)

Offline

#3 2020-02-14 10:12:06

scippie
Member
Registered: 2019-06-07
Posts: 127

Re: [SOLVED] cpu speed/governor 'weird' since last update

V1del wrote:

Manually setting frequencies has always been a hack/not guaranteed on intel_pstate afaik so I wonder how that originally worked.

It has performed perfectly for me. Seems I am just lucky...
It also works perfectly on my work laptop (different brand, intel i7) which gets a whopping 10+ hours battery life if I take it to conferences and use it on minimal frequency and low backlight and is only used for email and bash stuff at that moment.

V1del wrote:

If you just want to switch the governor at boot cpupower comes with a systemd service that you can configure to set the desired cpupower parameters during boot: https://wiki.archlinux.org/index.php/CP … g#cpupower

Thanks, that helped. I am sorry that I still miss these kind of obvious things in de wiki.

Still though, I wonder why it only started being a problem today, and why it doesn't have a stable governor at boot anyway.

I guess I can mark this as solved though. Thanks!

Last edited by scippie (2020-02-14 10:14:27)

Offline

#4 2020-02-14 10:17:34

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,415

Re: [SOLVED] cpu speed/governor 'weird' since last update

Yes it should be using powersave by default, so that is indeed weird, anything in the kernel logs? Do you use some other daemon that may be incidentally set this incorrectly?

Offline

#5 2020-02-14 10:42:42

scippie
Member
Registered: 2019-06-07
Posts: 127

Re: [SOLVED] cpu speed/governor 'weird' since last update

V1del wrote:

anything in the kernel logs?

$ dmesg
[    0.000000] microcode: microcode updated early to revision 0xca, date = 2019-10-03
[    0.000000] Linux version 5.5.3-arch1-1 (linux@archlinux) (gcc version 9.2.1 20200130 (Arch Linux 9.2.1+20200130-2)) #1 SMP PREEMPT Tue, 11 Feb 2020 15:35:41 +0000
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3f8954c5-c7c7-4f8b-ab2c-a6d04a710cf4 rw loglevel=3 quiet acpi_osi=! acpi_osi=Linux
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    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] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000047457fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000047458000-0x0000000047d57fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000047d58000-0x000000005df6efff] usable
[    0.000000] BIOS-e820: [mem 0x000000005df6f000-0x000000005e16efff] type 20
[    0.000000] BIOS-e820: [mem 0x000000005e16f000-0x000000005f59efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005f59f000-0x000000005fc8efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000005fc8f000-0x000000005fd0efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000005fd0f000-0x000000005fd0ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005fd10000-0x000000006d7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff600000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000008907fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.60 by INSYDE Corp.
[    0.000000] efi:  ACPI=0x5fd0e000  ACPI 2.0=0x5fd0e014  SMBIOS=0x5e322000  SMBIOS 3.0=0x5e320000  ESRT=0x5e31e818  MEMATTR=0x4e359018 
[    0.000000] SMBIOS 3.0.1 present.
[    0.000000] DMI: Notebook                         PB50_70RF,RD,RC                 /PB50_70RF,RD,RC                 , BIOS 1.07.13 02/01/2019
[    0.000000] tsc: Detected 2400.000 MHz processor
[    0.000036] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000041] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000057] last_pfn = 0x890800 max_arch_pfn = 0x400000000
[    0.000066] MTRR default type: write-back
[    0.000068] MTRR fixed ranges enabled:
[    0.000071]   00000-9FFFF write-back
[    0.000073]   A0000-BFFFF uncachable
[    0.000075]   C0000-FFFFF write-protect
[    0.000077] MTRR variable ranges enabled:
[    0.000081]   0 base 0080000000 mask 7F80000000 uncachable
[    0.000084]   1 base 0070000000 mask 7FF0000000 uncachable
[    0.000086]   2 base 006C000000 mask 7FFC000000 uncachable
[    0.000088]   3 base 006A000000 mask 7FFE000000 uncachable
[    0.000090]   4 base 0069000000 mask 7FFF000000 uncachable
[    0.000093]   5 base 2000000000 mask 6000000000 uncachable
[    0.000095]   6 base 1000000000 mask 7000000000 uncachable
[    0.000097]   7 base 4000000000 mask 4000000000 uncachable
[    0.000098]   8 disabled
[    0.000100]   9 disabled
[    0.001004] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001457] last_pfn = 0x5fd10 max_arch_pfn = 0x400000000
[    0.018793] esrt: Reserving ESRT space from 0x000000005e31e818 to 0x000000005e31e8a0.
[    0.018815] check: Scanning 1 areas for low memory corruption
[    0.018823] Using GB pages for direct mapping
[    0.018826] BRK [0x595801000, 0x595801fff] PGTABLE
[    0.018830] BRK [0x595802000, 0x595802fff] PGTABLE
[    0.018832] BRK [0x595803000, 0x595803fff] PGTABLE
[    0.018916] BRK [0x595804000, 0x595804fff] PGTABLE
[    0.018919] BRK [0x595805000, 0x595805fff] PGTABLE
[    0.019297] BRK [0x595806000, 0x595806fff] PGTABLE
[    0.019398] BRK [0x595807000, 0x595807fff] PGTABLE
[    0.019547] BRK [0x595808000, 0x595808fff] PGTABLE
[    0.019747] BRK [0x595809000, 0x595809fff] PGTABLE
[    0.019862] BRK [0x59580a000, 0x59580afff] PGTABLE
[    0.020038] Secure boot could not be determined
[    0.020040] RAMDISK: [mem 0x36823000-0x37408fff]
[    0.020055] ACPI: Early table checksum verification disabled
[    0.020060] ACPI: RSDP 0x000000005FD0E014 000024 (v02 INSYDE)
[    0.020066] ACPI: XSDT 0x000000005FCBD188 0000C4 (v01 INSYDE H2O BIOS 00000001      01000013)
[    0.020076] ACPI: FACP 0x000000005FCFA000 00010C (v05 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020085] ACPI: DSDT 0x000000005FCC5000 0316BA (v02 INTEL  SKL      00000000 INTL 20160422)
[    0.020091] ACPI: FACS 0x000000005FBED000 000040
[    0.020095] ACPI: UEFI 0x000000005FD0D000 000236 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020101] ACPI: SSDT 0x000000005FD0B000 001B1C (v02 CpuRef CpuSsdt  00003000 INTL 20160422)
[    0.020106] ACPI: SSDT 0x000000005FD07000 0035B2 (v02 SaSsdt SaSsdt   00003000 INTL 20160422)
[    0.020111] ACPI: SSDT 0x000000005FD05000 001881 (v02 PegSsd PegSsdt  00001000 INTL 20160422)
[    0.020116] ACPI: UEFI 0x000000005FD04000 000042 (v01 INTEL  CFL      00000002      01000013)
[    0.020121] ACPI: LPIT 0x000000005FD02000 000094 (v01 INTEL  CFL      00000002      01000013)
[    0.020126] ACPI: WSMT 0x000000005FD01000 000028 (v01 INTEL  CFL      00000002      01000013)
[    0.020131] ACPI: SSDT 0x000000005FCFF000 00166A (v02 INTEL  PtidDevc 00001000 INTL 20160422)
[    0.020137] ACPI: DBGP 0x000000005FCFE000 000034 (v01 INSYDE          00000002 ACPI 00040000)
[    0.020142] ACPI: DBG2 0x000000005FCFD000 000061 (v00 INSYDE          00000002 ACPI 00040000)
[    0.020147] ACPI: SSDT 0x000000005FCFC000 000444 (v02 Intel  PerfTune 00001000 INTL 20160422)
[    0.020152] ACPI: ASF! 0x000000005FCFB000 0000A5 (v32 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020158] ACPI: HPET 0x000000005FCF9000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020163] ACPI: APIC 0x000000005FCF8000 00012C (v03 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020168] ACPI: MCFG 0x000000005FCF7000 00003C (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020173] ACPI: DMAR 0x000000005FCC4000 0000A8 (v01 INTEL  EDK2     00000002      01000013)
[    0.020178] ACPI: SSDT 0x000000005FCC0000 003685 (v01 Insyde NvdTable 00001000 INTL 20160422)
[    0.020183] ACPI: FPDT 0x000000005FCBF000 000044 (v01 INTEL  CFL      00000002      01000013)
[    0.020188] ACPI: BGRT 0x000000005FCBE000 000038 (v01 INSYDE H2O BIOS 00000001 ACPI 00040000)
[    0.020204] ACPI: Local APIC address 0xfee00000
[    0.020739] No NUMA configuration found
[    0.020740] Faking a node at [mem 0x0000000000000000-0x00000008907fffff]
[    0.020748] NODE_DATA(0) allocated [mem 0x8907fc000-0x8907fffff]
[    0.020834] Zone ranges:
[    0.020835]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.020838]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.020840]   Normal   [mem 0x0000000100000000-0x00000008907fffff]
[    0.020842]   Device   empty
[    0.020843] Movable zone start for each node
[    0.020845] Early memory node ranges
[    0.020847]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.020848]   node   0: [mem 0x0000000000100000-0x0000000047457fff]
[    0.020850]   node   0: [mem 0x0000000047d58000-0x000000005df6efff]
[    0.020851]   node   0: [mem 0x000000005fd0f000-0x000000005fd0ffff]
[    0.020853]   node   0: [mem 0x0000000100000000-0x00000008907fffff]
[    0.021639] Zeroed struct page in unavailable ranges: 41458 pages
[    0.021641] Initmem setup node 0 [mem 0x0000000000001000-0x00000008907fffff]
[    0.021644] On node 0 totalpages: 8314382
[    0.021645]   DMA zone: 64 pages used for memmap
[    0.021646]   DMA zone: 22 pages reserved
[    0.021648]   DMA zone: 3998 pages, LIFO batch:0
[    0.021778]   DMA32 zone: 5914 pages used for memmap
[    0.021779]   DMA32 zone: 378480 pages, LIFO batch:63
[    0.040987]   Normal zone: 123936 pages used for memmap
[    0.040988]   Normal zone: 7931904 pages, LIFO batch:63
[    0.218190] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.218244] Reserving Intel graphics memory at [mem 0x69800000-0x6d7fffff]
[    0.218727] ACPI: PM-Timer IO Port: 0x1808
[    0.218729] ACPI: Local APIC address 0xfee00000
[    0.218738] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.218739] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.218740] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.218740] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.218741] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.218742] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.218743] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.218744] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.218745] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.218745] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.218746] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.218747] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.218748] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.218749] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.218750] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.218751] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.218810] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.218812] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.218814] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.218816] ACPI: IRQ0 used by override.
[    0.218817] ACPI: IRQ9 used by override.
[    0.218820] Using ACPI (MADT) for SMP configuration information
[    0.218821] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.218829] e820: update [mem 0x4d4f6000-0x4d7cffff] usable ==> reserved
[    0.218839] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.218863] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.218866] PM: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.218868] PM: Registered nosave memory: [mem 0x47458000-0x47d57fff]
[    0.218870] PM: Registered nosave memory: [mem 0x4d4f6000-0x4d7cffff]
[    0.218872] PM: Registered nosave memory: [mem 0x5df6f000-0x5e16efff]
[    0.218873] PM: Registered nosave memory: [mem 0x5e16f000-0x5f59efff]
[    0.218874] PM: Registered nosave memory: [mem 0x5f59f000-0x5fc8efff]
[    0.218874] PM: Registered nosave memory: [mem 0x5fc8f000-0x5fd0efff]
[    0.218877] PM: Registered nosave memory: [mem 0x5fd10000-0x6d7fffff]
[    0.218877] PM: Registered nosave memory: [mem 0x6d800000-0xdfffffff]
[    0.218878] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.218879] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[    0.218880] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.218881] PM: Registered nosave memory: [mem 0xfe011000-0xfed0ffff]
[    0.218881] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.218882] PM: Registered nosave memory: [mem 0xfed1a000-0xfed83fff]
[    0.218883] PM: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
[    0.218884] PM: Registered nosave memory: [mem 0xfed85000-0xfedfffff]
[    0.218884] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.218885] PM: Registered nosave memory: [mem 0xfee01000-0xff5fffff]
[    0.218886] PM: Registered nosave memory: [mem 0xff600000-0xffffffff]
[    0.218888] [mem 0x6d800000-0xdfffffff] available for PCI devices
[    0.218889] Booting paravirtualized kernel on bare hardware
[    0.218893] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.385283] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:16 nr_node_ids:1
[    0.385794] percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u262144
[    0.385803] pcpu-alloc: s196608 r8192 d28672 u262144 alloc=1*2097152
[    0.385804] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.385836] Built 1 zonelists, mobility grouping on.  Total pages: 8184446
[    0.385837] Policy zone: Normal
[    0.385839] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3f8954c5-c7c7-4f8b-ab2c-a6d04a710cf4 rw loglevel=3 quiet acpi_osi=! acpi_osi=Linux
[    0.388526] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.389802] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.389984] mem auto-init: stack:byref_all, heap alloc:on, heap free:off
[    0.490787] Memory: 32506724K/33257528K available (12291K kernel code, 1344K rwdata, 4272K rodata, 1664K init, 3388K bss, 750804K reserved, 0K cma-reserved)
[    0.491014] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.491032] ftrace: allocating 38777 entries in 152 pages
[    0.515713] ftrace: allocated 152 pages with 3 groups
[    0.515877] rcu: Preemptible hierarchical RCU implementation.
[    0.515878] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.515879] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
[    0.515880] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.515882] 	Tasks RCU enabled.
[    0.515883] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.515884] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.520080] NR_IRQS: 20736, nr_irqs: 2184, preallocated irqs: 16
[    0.520623] random: get_random_bytes called from start_kernel+0x390/0x56b with crng_init=0
[    0.520660] Console: colour dummy device 80x25
[    0.520665] printk: console [tty0] enabled
[    0.520691] ACPI: Core revision 20191018
[    0.521047] APIC: Switch to symmetric I/O mode setup
[    0.521049] DMAR: Host address width 39
[    0.521051] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.521058] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.521059] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.521064] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.521065] DMAR: RMRR base: 0x0000005f57c000 end: 0x0000005f59bfff
[    0.521067] DMAR: RMRR base: 0x00000069000000 end: 0x0000006d7fffff
[    0.521069] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.521070] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.521071] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.523659] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.523660] x2apic enabled
[    0.523685] Switched APIC routing to cluster x2apic.
[    0.530496] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22983777dd9, max_idle_ns: 440795300422 ns
[    0.530503] Calibrating delay loop (skipped), value calculated using timer frequency.. 4801.00 BogoMIPS (lpj=8000000)
[    0.530506] pid_max: default: 32768 minimum: 301
[    0.533833] LSM: Security Framework initializing
[    0.533833] Yama: becoming mindful.
[    0.533833] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.533833] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.533833] *** VALIDATE tmpfs ***
[    0.533833] *** VALIDATE proc ***
[    0.533833] *** VALIDATE cgroup1 ***
[    0.533833] *** VALIDATE cgroup2 ***
[    0.533833] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.533833] process: using mwait in idle threads
[    0.533833] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.533833] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.533833] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.533833] Spectre V2 : Mitigation: Enhanced IBRS
[    0.533833] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.533833] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.533833] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.533833] TAA: Mitigation: TSX disabled
[    0.533833] Freeing SMP alternatives memory: 32K
[    0.533833] TSC deadline timer enabled
[    0.533833] smpboot: CPU0: Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[    0.550537] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.550553] ... version:                4
[    0.550554] ... bit width:              48
[    0.550555] ... generic registers:      4
[    0.550556] ... value mask:             0000ffffffffffff
[    0.550558] ... max period:             00007fffffffffff
[    0.550559] ... fixed-purpose events:   3
[    0.550560] ... event mask:             000000070000000f
[    0.557197] rcu: Hierarchical SRCU implementation.
[    0.580998] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.587199] smp: Bringing up secondary CPUs ...
[    0.627218] x86: Booting SMP configuration:
[    0.627220] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    1.192724] smp: Brought up 1 node, 16 CPUs
[    1.192724] smpboot: Max logical packages: 1
[    1.192724] smpboot: Total of 16 processors activated (76830.00 BogoMIPS)
[    1.195150] devtmpfs: initialized
[    1.195150] x86/mm: Memory block size: 128MB
[    1.204985] PM: Registering ACPI NVS region [mem 0x5f59f000-0x5fc8efff] (7274496 bytes)
[    1.204985] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    1.204985] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    1.204985] pinctrl core: initialized pinctrl subsystem
[    1.204985] PM: RTC time: 10:06:57, date: 2020-02-14
[    1.204985] thermal_sys: Registered thermal governor 'fair_share'
[    1.204985] thermal_sys: Registered thermal governor 'bang_bang'
[    1.204985] thermal_sys: Registered thermal governor 'step_wise'
[    1.204985] thermal_sys: Registered thermal governor 'user_space'
[    1.204985] thermal_sys: Registered thermal governor 'power_allocator'
[    1.204985] NET: Registered protocol family 16
[    1.204985] audit: initializing netlink subsys (disabled)
[    1.204985] audit: type=2000 audit(1581674816.673:1): state=initialized audit_enabled=0 res=1
[    1.204985] cpuidle: using governor ladder
[    1.204985] cpuidle: using governor menu
[    1.204985] ACPI: bus type PCI registered
[    1.204985] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.204985] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    1.204985] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    1.204985] PCI: Using configuration type 1 for base access
[    1.214134] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    1.216121] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    1.216121] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    1.220750] ACPI: Disabled all _OSI OS vendors
[    1.220752] ACPI: Added _OSI(Module Device)
[    1.220754] ACPI: Added _OSI(Processor Device)
[    1.220756] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.220757] ACPI: Added _OSI(Processor Aggregator Device)
[    1.220759] ACPI: Added _OSI(Linux-Dell-Video)
[    1.220761] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    1.220763] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.220771] ACPI: Added _OSI(Linux)
[    1.303646] ACPI: 7 ACPI AML tables successfully acquired and loaded
[    1.311120] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query honored via cmdline
[    1.379712] ACPI: Dynamic OEM Table Load:
[    1.379735] ACPI: SSDT 0xFFFF9512AB912500 0000F4 (v02 PmRef  Cpu0Psd  00003000 INTL 20160422)
[    1.382028] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    1.383510] ACPI: Dynamic OEM Table Load:
[    1.383519] ACPI: SSDT 0xFFFF9512AB91FC00 000400 (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    1.386096] ACPI: Dynamic OEM Table Load:
[    1.386104] ACPI: SSDT 0xFFFF9512AC64A800 00053F (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    1.389411] ACPI: Dynamic OEM Table Load:
[    1.389421] ACPI: SSDT 0xFFFF9512AC64A000 0005FC (v02 PmRef  ApIst    00003000 INTL 20160422)
[    1.392395] ACPI: Dynamic OEM Table Load:
[    1.392406] ACPI: SSDT 0xFFFF9512AB903000 000AB0 (v02 PmRef  ApPsd    00003000 INTL 20160422)
[    1.396205] ACPI: Dynamic OEM Table Load:
[    1.396212] ACPI: SSDT 0xFFFF9512AB91DC00 00030A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    1.409697] ACPI: EC: EC started
[    1.409698] ACPI: EC: interrupt blocked
[    1.413581] ACPI: \_SB_.PCI0.LPCB.EC__: Used as first EC
[    1.413585] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x3, IRQ=-1, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.413587] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions
[    1.413588] ACPI: Interpreter enabled
[    1.413682] ACPI: (supports S0 S3 S4 S5)
[    1.413683] ACPI: Using IOAPIC for interrupt routing
[    1.413758] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.414505] ACPI: Enabled 6 GPEs in block 00 to 7F
[    1.417397] ACPI: Power Resource [PG00] (on)
[    1.442514] ACPI: Power Resource [V0PR] (on)
[    1.442760] ACPI: Power Resource [V1PR] (on)
[    1.442990] ACPI: Power Resource [V2PR] (on)
[    1.445760] ACPI: Power Resource [WRST] (on)
[    1.450990] ACPI: Power Resource [PIN] (off)
[    1.451907] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    1.451917] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.453619] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    1.456599] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
[    1.461735] PCI host bridge to bus 0000:00
[    1.461738] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.461740] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    1.461742] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.461744] pci_bus 0000:00: root bus resource [mem 0x6d800000-0xdfffffff window]
[    1.461746] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    1.461748] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    1.461750] pci_bus 0000:00: root bus resource [bus 00-fe]
[    1.461765] pci 0000:00:00.0: [8086:3e20] type 00 class 0x060000
[    1.463789] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    1.463865] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.466018] pci 0000:00:02.0: [8086:3e9b] type 00 class 0x030000
[    1.466035] pci 0000:00:02.0: reg 0x10: [mem 0x604a000000-0x604affffff 64bit]
[    1.466045] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x4007ffffff 64bit pref]
[    1.466051] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    1.466080] pci 0000:00:02.0: BAR 2: assigned to efifb
[    1.468183] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000
[    1.468213] pci 0000:00:12.0: reg 0x10: [mem 0x604b20b000-0x604b20bfff 64bit]
[    1.470303] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330
[    1.470329] pci 0000:00:14.0: reg 0x10: [mem 0x84600000-0x8460ffff 64bit]
[    1.470415] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    1.472530] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000
[    1.472557] pci 0000:00:14.2: reg 0x10: [mem 0x604b204000-0x604b205fff 64bit]
[    1.472572] pci 0000:00:14.2: reg 0x18: [mem 0x604b20a000-0x604b20afff 64bit]
[    1.474638] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000
[    1.474669] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.476792] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000
[    1.476823] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.479003] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000
[    1.479032] pci 0000:00:16.0: reg 0x10: [mem 0x604b207000-0x604b207fff 64bit]
[    1.479130] pci 0000:00:16.0: PME# supported from D3hot
[    1.481229] pci 0000:00:17.0: [8086:a353] type 00 class 0x010601
[    1.481254] pci 0000:00:17.0: reg 0x10: [mem 0x84610000-0x84611fff]
[    1.481264] pci 0000:00:17.0: reg 0x14: [mem 0x84614000-0x846140ff]
[    1.481274] pci 0000:00:17.0: reg 0x18: [io  0x5080-0x5087]
[    1.481283] pci 0000:00:17.0: reg 0x1c: [io  0x5088-0x508b]
[    1.481293] pci 0000:00:17.0: reg 0x20: [io  0x5060-0x507f]
[    1.481303] pci 0000:00:17.0: reg 0x24: [mem 0x84613000-0x846137ff]
[    1.481368] pci 0000:00:17.0: PME# supported from D3hot
[    1.483556] pci 0000:00:1b.0: [8086:a340] type 01 class 0x060400
[    1.485591] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    1.485621] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
[    1.487792] pci 0000:00:1b.4: [8086:a32c] type 01 class 0x060400
[    1.487909] pci 0000:00:1b.4: PME# supported from D0 D3hot D3cold
[    1.487935] pci 0000:00:1b.4: PTM enabled (root), 4ns granularity
[    1.490116] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400
[    1.490231] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.490256] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    1.492445] pci 0000:00:1d.5: [8086:a335] type 01 class 0x060400
[    1.492559] pci 0000:00:1d.5: PME# supported from D0 D3hot D3cold
[    1.492584] pci 0000:00:1d.5: PTM enabled (root), 4ns granularity
[    1.494748] pci 0000:00:1d.6: [8086:a336] type 01 class 0x060400
[    1.494862] pci 0000:00:1d.6: PME# supported from D0 D3hot D3cold
[    1.494888] pci 0000:00:1d.6: PTM enabled (root), 4ns granularity
[    1.497025] pci 0000:00:1d.7: [8086:a337] type 01 class 0x060400
[    1.497140] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    1.497165] pci 0000:00:1d.7: PTM enabled (root), 4ns granularity
[    1.499336] pci 0000:00:1f.0: [8086:a30d] type 00 class 0x060100
[    1.501667] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300
[    1.501742] pci 0000:00:1f.3: reg 0x10: [mem 0x604b200000-0x604b203fff 64bit]
[    1.501826] pci 0000:00:1f.3: reg 0x20: [mem 0x604b100000-0x604b1fffff 64bit]
[    1.501977] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    1.504229] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500
[    1.504260] pci 0000:00:1f.4: reg 0x10: [mem 0x604b206000-0x604b2060ff 64bit]
[    1.504292] pci 0000:00:1f.4: reg 0x20: [io  0x5040-0x505f]
[    1.506409] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000
[    1.506429] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    1.508568] pci 0000:01:00.0: [10de:1f10] type 00 class 0x030000
[    1.508614] pci 0000:01:00.0: reg 0x10: [mem 0x83000000-0x83ffffff]
[    1.508635] pci 0000:01:00.0: reg 0x14: [mem 0x70000000-0x7fffffff 64bit pref]
[    1.508657] pci 0000:01:00.0: reg 0x1c: [mem 0x80000000-0x81ffffff 64bit pref]
[    1.508671] pci 0000:01:00.0: reg 0x24: [io  0x4000-0x407f]
[    1.508686] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.508805] pci 0000:01:00.0: PME# supported from D0 D3hot
[    1.509053] pci 0000:01:00.1: [10de:10f9] type 00 class 0x040300
[    1.509086] pci 0000:01:00.1: reg 0x10: [mem 0x84000000-0x84003fff]
[    1.509351] pci 0000:01:00.2: [10de:1ada] type 00 class 0x0c0330
[    1.509390] pci 0000:01:00.2: reg 0x10: [mem 0x604b000000-0x604b03ffff 64bit pref]
[    1.509424] pci 0000:01:00.2: reg 0x1c: [mem 0x604b040000-0x604b04ffff 64bit pref]
[    1.509540] pci 0000:01:00.2: PME# supported from D0 D3hot
[    1.509665] pci 0000:01:00.3: [10de:1adb] type 00 class 0x0c8000
[    1.509697] pci 0000:01:00.3: reg 0x10: [mem 0x84004000-0x84004fff]
[    1.509864] pci 0000:01:00.3: PME# supported from D0 D3hot
[    1.510036] pci 0000:00:01.0: PCI bridge to [bus 01-05]
[    1.510039] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    1.510043] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x840fffff]
[    1.510047] pci 0000:00:01.0:   bridge window [mem 0x604b000000-0x604b0fffff 64bit pref]
[    1.510160] pci 0000:06:00.0: [8086:15e7] type 01 class 0x060400
[    1.510232] pci 0000:06:00.0: enabling Extended Tags
[    1.510367] pci 0000:06:00.0: supports D1 D2
[    1.510369] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.510451] pci 0000:06:00.0: PTM enabled, 4ns granularity
[    1.510625] pci 0000:00:1b.0: PCI bridge to [bus 06-6f]
[    1.510631] pci 0000:00:1b.0:   bridge window [mem 0x88000000-0xb60fffff]
[    1.510637] pci 0000:00:1b.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    1.510713] pci 0000:07:00.0: [8086:15e7] type 01 class 0x060400
[    1.510789] pci 0000:07:00.0: enabling Extended Tags
[    1.510908] pci 0000:07:00.0: supports D1 D2
[    1.510910] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.511050] pci 0000:07:01.0: [8086:15e7] type 01 class 0x060400
[    1.511125] pci 0000:07:01.0: enabling Extended Tags
[    1.511240] pci 0000:07:01.0: supports D1 D2
[    1.511241] pci 0000:07:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.511377] pci 0000:07:02.0: [8086:15e7] type 01 class 0x060400
[    1.511452] pci 0000:07:02.0: enabling Extended Tags
[    1.511565] pci 0000:07:02.0: supports D1 D2
[    1.511566] pci 0000:07:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.511730] pci 0000:06:00.0: PCI bridge to [bus 07-6f]
[    1.511740] pci 0000:06:00.0:   bridge window [mem 0x88000000-0xb60fffff]
[    1.511747] pci 0000:06:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    1.511822] pci 0000:08:00.0: [8086:15e8] type 00 class 0x088000
[    1.511859] pci 0000:08:00.0: reg 0x10: [mem 0xb6000000-0xb603ffff]
[    1.511872] pci 0000:08:00.0: reg 0x14: [mem 0xb6040000-0xb6040fff]
[    1.511942] pci 0000:08:00.0: enabling Extended Tags
[    1.512062] pci 0000:08:00.0: supports D1 D2
[    1.512064] pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.512262] pci 0000:07:00.0: PCI bridge to [bus 08]
[    1.512272] pci 0000:07:00.0:   bridge window [mem 0xb6000000-0xb60fffff]
[    1.512340] pci 0000:07:01.0: PCI bridge to [bus 09-6e]
[    1.512350] pci 0000:07:01.0:   bridge window [mem 0x88000000-0xb5efffff]
[    1.512358] pci 0000:07:01.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    1.512435] pci 0000:6f:00.0: [8086:15e9] type 00 class 0x0c0330
[    1.512475] pci 0000:6f:00.0: reg 0x10: [mem 0xb5f00000-0xb5f0ffff]
[    1.512562] pci 0000:6f:00.0: enabling Extended Tags
[    1.512694] pci 0000:6f:00.0: supports D1 D2
[    1.512696] pci 0000:6f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.512796] pci 0000:6f:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x4 link at 0000:07:02.0 (capable of 31.504 Gb/s with 8 GT/s x4 link)
[    1.512919] pci 0000:07:02.0: PCI bridge to [bus 6f]
[    1.512929] pci 0000:07:02.0:   bridge window [mem 0xb5f00000-0xb5ffffff]
[    1.513053] pci 0000:70:00.0: [144d:a808] type 00 class 0x010802
[    1.513088] pci 0000:70:00.0: reg 0x10: [mem 0x84500000-0x84503fff 64bit]
[    1.513419] pci 0000:00:1b.4: PCI bridge to [bus 70]
[    1.513424] pci 0000:00:1b.4:   bridge window [mem 0x84500000-0x845fffff]
[    1.513519] pci 0000:71:00.0: [144d:a808] type 00 class 0x010802
[    1.513553] pci 0000:71:00.0: reg 0x10: [mem 0x84400000-0x84403fff 64bit]
[    1.523884] pci 0000:00:1d.0: PCI bridge to [bus 71]
[    1.523890] pci 0000:00:1d.0:   bridge window [mem 0x84400000-0x844fffff]
[    1.523980] pci 0000:72:00.0: [10ec:8168] type 00 class 0x020000
[    1.524015] pci 0000:72:00.0: reg 0x10: [io  0x3000-0x30ff]
[    1.524046] pci 0000:72:00.0: reg 0x18: [mem 0x84304000-0x84304fff 64bit]
[    1.524066] pci 0000:72:00.0: reg 0x20: [mem 0x84300000-0x84303fff 64bit]
[    1.524191] pci 0000:72:00.0: supports D1 D2
[    1.524193] pci 0000:72:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.524392] pci 0000:00:1d.5: PCI bridge to [bus 72]
[    1.524396] pci 0000:00:1d.5:   bridge window [io  0x3000-0x3fff]
[    1.524399] pci 0000:00:1d.5:   bridge window [mem 0x84300000-0x843fffff]
[    1.524553] pci 0000:73:00.0: [10ec:525a] type 00 class 0xff0000
[    1.524594] pci 0000:73:00.0: reg 0x14: [mem 0x84200000-0x84200fff]
[    1.524800] pci 0000:73:00.0: supports D1 D2
[    1.524802] pci 0000:73:00.0: PME# supported from D1 D2 D3hot D3cold
[    1.525038] pci 0000:00:1d.6: PCI bridge to [bus 73]
[    1.525043] pci 0000:00:1d.6:   bridge window [mem 0x84200000-0x842fffff]
[    1.525142] pci 0000:74:00.0: [8086:2723] type 00 class 0x028000
[    1.525195] pci 0000:74:00.0: reg 0x10: [mem 0x84100000-0x84103fff 64bit]
[    1.525386] pci 0000:74:00.0: PME# supported from D0 D3hot D3cold
[    1.525603] pci 0000:00:1d.7: PCI bridge to [bus 74]
[    1.525608] pci 0000:00:1d.7:   bridge window [mem 0x84100000-0x841fffff]
[    1.838479] ACPI: EC: interrupt unblocked
[    1.838502] ACPI: EC: event unblocked
[    1.838557] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x3, IRQ=-1, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.838559] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions and events
[    1.838716] iommu: Default domain type: Translated 
[    1.838741] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.838741] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.838741] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.838741] pci 0000:00:02.0: vgaarb: no bridge control possible
[    1.838741] pci 0000:01:00.0: vgaarb: bridge control possible
[    1.838741] vgaarb: loaded
[    1.838741] ACPI: bus type USB registered
[    1.838741] usbcore: registered new interface driver usbfs
[    1.838741] usbcore: registered new interface driver hub
[    1.838741] usbcore: registered new device driver usb
[    1.838741] pps_core: LinuxPPS API ver. 1 registered
[    1.838741] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.838741] PTP clock support registered
[    1.838741] EDAC MC: Ver: 3.0.0
[    1.838741] Registered efivars operations
[    1.838741] PCI: Using ACPI for IRQ routing
[    1.869015] PCI: pci_cache_line_size set to 64 bytes
[    1.869347] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    1.869349] e820: reserve RAM buffer [mem 0x47458000-0x47ffffff]
[    1.869350] e820: reserve RAM buffer [mem 0x4d4f6000-0x4fffffff]
[    1.869351] e820: reserve RAM buffer [mem 0x5df6f000-0x5fffffff]
[    1.869353] e820: reserve RAM buffer [mem 0x5fd10000-0x5fffffff]
[    1.869354] e820: reserve RAM buffer [mem 0x890800000-0x893ffffff]
[    1.869499] NetLabel: Initializing
[    1.869500] NetLabel:  domain hash size = 128
[    1.869501] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.869529] NetLabel:  unlabeled traffic allowed by default
[    1.870550] clocksource: Switched to clocksource tsc-early
[    1.888987] *** VALIDATE bpf ***
[    1.889143] VFS: Disk quotas dquot_6.6.0
[    1.889172] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.889207] *** VALIDATE ramfs ***
[    1.889213] *** VALIDATE hugetlbfs ***
[    1.889271] pnp: PnP ACPI init
[    1.889962] system 00:00: [io  0x1800-0x18fe] has been reserved
[    1.889965] system 00:00: [mem 0xfd000000-0xfd69ffff] has been reserved
[    1.889968] system 00:00: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[    1.889970] system 00:00: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    1.889973] system 00:00: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    1.889975] system 00:00: [mem 0xfe200000-0xfe7fffff] has been reserved
[    1.889978] system 00:00: [mem 0xff000000-0xffffffff] could not be reserved
[    1.889986] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.890891] system 00:01: [io  0x2000-0x20fe] has been reserved
[    1.890900] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.891045] pnp 00:02: disabling [io  0x3322-0x3323] because it overlaps 0000:00:1d.5 BAR 13 [io  0x3000-0x3fff]
[    1.891107] system 00:02: [io  0x0680-0x069f] has been reserved
[    1.891110] system 00:02: [io  0x164e-0x164f] has been reserved
[    1.891116] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.891153] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.891398] system 00:04: [io  0x1854-0x1857] has been reserved
[    1.891404] system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.891460] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[    1.891489] pnp 00:06: Plug and Play ACPI device, IDs PNP0f13 (active)
[    1.892274] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
[    1.892277] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
[    1.892279] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
[    1.892282] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
[    1.892284] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
[    1.892287] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
[    1.892289] system 00:07: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    1.892291] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.892298] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.210779] pnp: PnP ACPI: found 8 devices
[    2.217669] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.217729] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    2.217741] pci 0000:07:01.0: bridge window [io  0x1000-0x0fff] to [bus 09-6e] add_size 1000
[    2.217746] pci 0000:06:00.0: bridge window [io  0x1000-0x0fff] to [bus 07-6f] add_size 1000
[    2.217752] pci 0000:00:1b.0: bridge window [io  0x1000-0x0fff] to [bus 06-6f] add_size 2000
[    2.217768] pci 0000:00:15.0: BAR 0: assigned [mem 0x4008000000-0x4008000fff 64bit]
[    2.217790] pci 0000:00:15.1: BAR 0: assigned [mem 0x4008001000-0x4008001fff 64bit]
[    2.217813] pci 0000:00:1b.0: BAR 13: assigned [io  0x6000-0x7fff]
[    2.217818] pci 0000:01:00.0: BAR 6: assigned [mem 0x82000000-0x8207ffff pref]
[    2.217822] pci 0000:00:01.0: PCI bridge to [bus 01-05]
[    2.217825] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    2.217830] pci 0000:00:01.0:   bridge window [mem 0x70000000-0x840fffff]
[    2.217834] pci 0000:00:01.0:   bridge window [mem 0x604b000000-0x604b0fffff 64bit pref]
[    2.217841] pci 0000:06:00.0: BAR 13: assigned [io  0x6000-0x6fff]
[    2.217845] pci 0000:07:01.0: BAR 13: assigned [io  0x6000-0x6fff]
[    2.217848] pci 0000:07:00.0: PCI bridge to [bus 08]
[    2.217858] pci 0000:07:00.0:   bridge window [mem 0xb6000000-0xb60fffff]
[    2.217870] pci 0000:07:01.0: PCI bridge to [bus 09-6e]
[    2.217873] pci 0000:07:01.0:   bridge window [io  0x6000-0x6fff]
[    2.217880] pci 0000:07:01.0:   bridge window [mem 0x88000000-0xb5efffff]
[    2.217885] pci 0000:07:01.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    2.217893] pci 0000:07:02.0: PCI bridge to [bus 6f]
[    2.217900] pci 0000:07:02.0:   bridge window [mem 0xb5f00000-0xb5ffffff]
[    2.217911] pci 0000:06:00.0: PCI bridge to [bus 07-6f]
[    2.217915] pci 0000:06:00.0:   bridge window [io  0x6000-0x6fff]
[    2.217921] pci 0000:06:00.0:   bridge window [mem 0x88000000-0xb60fffff]
[    2.217926] pci 0000:06:00.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    2.217934] pci 0000:00:1b.0: PCI bridge to [bus 06-6f]
[    2.217937] pci 0000:00:1b.0:   bridge window [io  0x6000-0x7fff]
[    2.217942] pci 0000:00:1b.0:   bridge window [mem 0x88000000-0xb60fffff]
[    2.217946] pci 0000:00:1b.0:   bridge window [mem 0x6000000000-0x6049ffffff 64bit pref]
[    2.217953] pci 0000:00:1b.4: PCI bridge to [bus 70]
[    2.217958] pci 0000:00:1b.4:   bridge window [mem 0x84500000-0x845fffff]
[    2.217966] pci 0000:00:1d.0: PCI bridge to [bus 71]
[    2.217971] pci 0000:00:1d.0:   bridge window [mem 0x84400000-0x844fffff]
[    2.217980] pci 0000:00:1d.5: PCI bridge to [bus 72]
[    2.217983] pci 0000:00:1d.5:   bridge window [io  0x3000-0x3fff]
[    2.217988] pci 0000:00:1d.5:   bridge window [mem 0x84300000-0x843fffff]
[    2.217997] pci 0000:00:1d.6: PCI bridge to [bus 73]
[    2.218002] pci 0000:00:1d.6:   bridge window [mem 0x84200000-0x842fffff]
[    2.218010] pci 0000:00:1d.7: PCI bridge to [bus 74]
[    2.218015] pci 0000:00:1d.7:   bridge window [mem 0x84100000-0x841fffff]
[    2.218027] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    2.218029] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    2.218032] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    2.218034] pci_bus 0000:00: resource 7 [mem 0x6d800000-0xdfffffff window]
[    2.218036] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    2.218038] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[    2.218041] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    2.218043] pci_bus 0000:01: resource 1 [mem 0x70000000-0x840fffff]
[    2.218045] pci_bus 0000:01: resource 2 [mem 0x604b000000-0x604b0fffff 64bit pref]
[    2.218047] pci_bus 0000:06: resource 0 [io  0x6000-0x7fff]
[    2.218049] pci_bus 0000:06: resource 1 [mem 0x88000000-0xb60fffff]
[    2.218052] pci_bus 0000:06: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    2.218054] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.218056] pci_bus 0000:07: resource 1 [mem 0x88000000-0xb60fffff]
[    2.218058] pci_bus 0000:07: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    2.218060] pci_bus 0000:08: resource 1 [mem 0xb6000000-0xb60fffff]
[    2.218062] pci_bus 0000:09: resource 0 [io  0x6000-0x6fff]
[    2.218064] pci_bus 0000:09: resource 1 [mem 0x88000000-0xb5efffff]
[    2.218067] pci_bus 0000:09: resource 2 [mem 0x6000000000-0x6049ffffff 64bit pref]
[    2.218069] pci_bus 0000:6f: resource 1 [mem 0xb5f00000-0xb5ffffff]
[    2.218071] pci_bus 0000:70: resource 1 [mem 0x84500000-0x845fffff]
[    2.218073] pci_bus 0000:71: resource 1 [mem 0x84400000-0x844fffff]
[    2.218075] pci_bus 0000:72: resource 0 [io  0x3000-0x3fff]
[    2.218077] pci_bus 0000:72: resource 1 [mem 0x84300000-0x843fffff]
[    2.218079] pci_bus 0000:73: resource 1 [mem 0x84200000-0x842fffff]
[    2.218081] pci_bus 0000:74: resource 1 [mem 0x84100000-0x841fffff]
[    2.218436] NET: Registered protocol family 2
[    2.218737] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    2.219090] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    2.219693] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    2.219838] TCP: Hash tables configured (established 262144 bind 65536)
[    2.219968] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    2.220144] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    2.220409] NET: Registered protocol family 1
[    2.220417] NET: Registered protocol family 44
[    2.220438] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.222481] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    2.222580] pci 0000:01:00.2: D0 power state depends on 0000:01:00.0
[    2.223226] pci 0000:01:00.3: D0 power state depends on 0000:01:00.0
[    2.223309] pci 0000:06:00.0: CLS mismatch (64 != 128), using 64 bytes
[    2.224382] Trying to unpack rootfs image as initramfs...
[    2.501065] Freeing initrd memory: 12184K
[    2.537216] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.537220] software IO TLB: mapped [mem 0x592c4000-0x5d2c4000] (64MB)
[    2.537698] check: Scanning for low memory corruption every 60 seconds
[    2.538523] Initialise system trusted keyrings
[    2.538542] Key type blacklist registered
[    2.538623] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    2.540925] zbud: loaded
[    2.550189] Key type asymmetric registered
[    2.550192] Asymmetric key parser 'x509' registered
[    2.550203] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    2.550306] io scheduler mq-deadline registered
[    2.550308] io scheduler kyber registered
[    2.550353] io scheduler bfq registered
[    2.553107] pcieport 0000:00:01.0: PME: Signaling with IRQ 122
[    2.553295] pcieport 0000:00:1b.0: PME: Signaling with IRQ 123
[    2.553337] pcieport 0000:00:1b.0: pciehp: Slot #16 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[    2.553928] pcieport 0000:00:1b.4: PME: Signaling with IRQ 124
[    2.554386] pcieport 0000:00:1d.0: PME: Signaling with IRQ 125
[    2.554850] pcieport 0000:00:1d.5: PME: Signaling with IRQ 126
[    2.555298] pcieport 0000:00:1d.6: PME: Signaling with IRQ 127
[    2.555760] pcieport 0000:00:1d.7: PME: Signaling with IRQ 128
[    2.556619] pcieport 0000:07:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[    2.557121] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.557272] efifb: probing for efifb
[    2.557308] efifb: showing boot graphics
[    2.566391] efifb: framebuffer at 0x4000000000, using 32448k, total 32448k
[    2.566393] efifb: mode is 3840x2160x32, linelength=15360, pages=1
[    2.566394] efifb: scrolling: redraw
[    2.566396] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.566470] fbcon: Deferring console take-over
[    2.566472] fb0: EFI VGA frame buffer device
[    2.566487] intel_idle: MWAIT substates: 0x11142120
[    2.566489] intel_idle: v0.4.1 model 0x9E
[    2.568257] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.568397] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.570633] ACPI: Power Button [PWRB]
[    2.570719] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    2.577314] ACPI: Sleep Button [SLPB]
[    2.577394] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    2.580659] ACPI: Lid Switch [LID0]
[    2.580762] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    2.580877] ACPI: Power Button [PWRF]
[    2.583627] ACPI: Invalid active0 threshold
[    2.583976] thermal LNXTHERM:00: registered as thermal_zone0
[    2.583979] ACPI: Thermal Zone [TZ0] (47 C)
[    2.584443] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.585522] hpet_acpi_add: no address or irqs in _CRS
[    2.585571] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    2.585573] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    2.588442] nvme nvme0: pci function 0000:70:00.0
[    2.588535] nvme nvme1: pci function 0000:71:00.0
[    2.588609] usbcore: registered new interface driver usbserial_generic
[    2.588615] usbserial: USB Serial support registered for generic
[    2.588643] rtc_cmos 00:03: RTC can wake from S4
[    2.590236] rtc_cmos 00:03: registered as rtc0
[    2.590263] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram
[    2.590361] intel_pstate: Intel P-state driver initializing
[    2.590426] intel_pstate: Disabling energy efficiency optimization
[    2.591757] intel_pstate: HWP enabled
[    2.592281] ledtrig-cpu: registered to indicate activity on CPUs
[    2.592462] intel_pmc_core intel_pmc_core.0:  initialized
[    2.592535] drop_monitor: Initializing network drop monitor service
[    2.592766] NET: Registered protocol family 10
[    2.603200] Segment Routing with IPv6
[    2.603229] NET: Registered protocol family 17
[    2.605506] RAS: Correctable Errors collector initialized.
[    2.605588] microcode: sig=0x906ed, pf=0x20, revision=0xca
[    2.606128] microcode: Microcode Update Driver: v2.2.
[    2.606132] IPI shorthand broadcast: enabled
[    2.606141] sched_clock: Marking stable (2596178222, 9944056)->(2640038512, -33916234)
[    2.606425] registered taskstats version 1
[    2.606436] Loading compiled-in X.509 certificates
[    2.612358] Loaded X.509 cert 'Build time autogenerated kernel key: 2d782a3843704ec46ac9e765c6011fb362399917'
[    2.612446] zswap: loaded using pool lzo/zbud
[    2.612746] Key type ._fscrypt registered
[    2.612748] Key type .fscrypt registered
[    2.622638] Key type big_key registered
[    2.625274] PM:   Magic number: 8:151:123
[    2.625308] acpi LNXSYBUS:01: hash matches
[    2.625344] memory memory268: hash matches
[    2.625636] rtc_cmos 00:03: setting system clock to 2020-02-14T10:06:58 UTC (1581674818)
[    2.801501] nvme nvme1: missing or invalid SUBNQN field.
[    2.801531] nvme nvme0: missing or invalid SUBNQN field.
[    2.801541] nvme nvme1: Shutdown timeout set to 8 seconds
[    2.801575] nvme nvme0: Shutdown timeout set to 8 seconds
[    2.825345] nvme nvme0: 16/0/0 default/read/poll queues
[    2.826765] nvme nvme1: 16/0/0 default/read/poll queues
[    2.835919]  nvme0n1: p1 p2 p3 p4 p5
[    2.837270]  nvme1n1: p1
[    2.840304] Freeing unused decrypted memory: 2040K
[    2.840919] Freeing unused kernel image (initmem) memory: 1664K
[    2.860661] Write protecting the kernel read-only data: 20480k
[    2.861921] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    2.862670] Freeing unused kernel image (rodata/data gap) memory: 1872K
[    2.871193] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.871194] Run /init as init process
[    2.952629] fbcon: Taking over console
[    2.952687] Console: switching to colour frame buffer device 480x135
[    2.998258] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    3.547194] tsc: Refined TSC clocksource calibration: 2400.045 MHz
[    3.547200] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x229861d5f13, max_idle_ns: 440795248083 ns
[    3.622089] clocksource: Switched to clocksource tsc
[    3.626223] i8042: Detected active multiplexing controller, rev 1.1
[    3.629764] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.629788] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    3.629859] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    3.629923] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    3.630013] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    3.630189] SCSI subsystem initialized
[    3.630279] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.630283] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.631351] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[    3.631355] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.631514] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.05
[    3.631516] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.631517] usb usb1: Product: xHCI Host Controller
[    3.631518] usb usb1: Manufacturer: Linux 5.5.3-arch1-1 xhci-hcd
[    3.631519] usb usb1: SerialNumber: 0000:00:14.0
[    3.631607] hub 1-0:1.0: USB hub found
[    3.631623] hub 1-0:1.0: 16 ports detected
[    3.633040] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.633042] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.633046] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    3.633066] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.05
[    3.633066] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.633067] usb usb2: Product: xHCI Host Controller
[    3.633068] usb usb2: Manufacturer: Linux 5.5.3-arch1-1 xhci-hcd
[    3.633068] usb usb2: SerialNumber: 0000:00:14.0
[    3.633120] hub 2-0:1.0: USB hub found
[    3.633130] hub 2-0:1.0: 8 ports detected
[    3.633848] libata version 3.00 loaded.
[    3.634266] usb: port power management may be unreliable
[    3.634777] xhci_hcd 0000:01:00.2: xHCI Host Controller
[    3.634781] xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 3
[    3.635224] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.635433] xhci_hcd 0000:01:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[    3.635569] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.05
[    3.635570] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.635571] usb usb3: Product: xHCI Host Controller
[    3.635571] usb usb3: Manufacturer: Linux 5.5.3-arch1-1 xhci-hcd
[    3.635572] usb usb3: SerialNumber: 0000:01:00.2
[    3.635628] hub 3-0:1.0: USB hub found
[    3.635634] hub 3-0:1.0: 2 ports detected
[    3.635848] ahci 0000:00:17.0: version 3.0
[    3.635876] xhci_hcd 0000:01:00.2: xHCI Host Controller
[    3.635878] xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 4
[    3.635879] xhci_hcd 0000:01:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[    3.635898] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.635908] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.05
[    3.635909] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.635909] usb usb4: Product: xHCI Host Controller
[    3.635910] usb usb4: Manufacturer: Linux 5.5.3-arch1-1 xhci-hcd
[    3.635910] usb usb4: SerialNumber: 0000:01:00.2
[    3.635972] hub 4-0:1.0: USB hub found
[    3.635981] hub 4-0:1.0: 4 ports detected
[    3.636006] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    3.636007] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst 
[    3.636308] scsi host0: ahci
[    3.636360] ata1: SATA max UDMA/133 abar m2048@0x84613000 port 0x84613100 irq 169
[    3.636529] xhci_hcd 0000:6f:00.0: xHCI Host Controller
[    3.636532] xhci_hcd 0000:6f:00.0: new USB bus registered, assigned bus number 5
[    3.637639] xhci_hcd 0000:6f:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
[    3.637786] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.05
[    3.637787] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.637787] usb usb5: Product: xHCI Host Controller
[    3.637788] usb usb5: Manufacturer: Linux 5.5.3-arch1-1 xhci-hcd
[    3.637788] usb usb5: SerialNumber: 0000:6f:00.0
[    3.637895] hub 5-0:1.0: USB hub found
[    3.637904] hub 5-0:1.0: 2 ports detected
[    3.638063] xhci_hcd 0000:6f:00.0: xHCI Host Controller
[    3.638064] xhci_hcd 0000:6f:00.0: new USB bus registered, assigned bus number 6
[    3.638079] xhci_hcd 0000:6f:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    3.638102] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.05
[    3.638102] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.638103] usb usb6: Product: xHCI Host Controller
[    3.638103] usb usb6: Manufacturer: Linux 5.5.3-arch1-1 xhci-hcd
[    3.638104] usb usb6: SerialNumber: 0000:6f:00.0
[    3.638187] hub 6-0:1.0: USB hub found
[    3.638212] hub 6-0:1.0: 2 ports detected
[    3.951188] ata1: SATA link down (SStatus 4 SControl 300)
[    3.960584] usb 1-7: new full-speed USB device number 2 using xhci_hcd
[    4.062137] EXT4-fs (nvme0n1p5): mounted filesystem with ordered data mode. Opts: (null)
[    4.100578] random: fast init done
[    4.101729] usb 1-7: New USB device found, idVendor=06cb, idProduct=00c7, bcdDevice= 0.00
[    4.101730] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[    4.101731] usb 1-7: SerialNumber: 78c2898c21e3
[    4.167431] systemd[1]: systemd 244.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    4.184051] systemd[1]: Detected architecture x86-64.
[    4.214053] systemd[1]: Set hostname to <arch-bto3>.
[    4.216726] systemd[1]: Couldn't move remaining userspace processes, ignoring: Input/output error
[    4.223927] usb 1-8: new full-speed USB device number 3 using xhci_hcd
[    4.312707] systemd[1]: Created slice system-getty.slice.
[    4.312813] systemd[1]: Created slice system-modprobe.slice.
[    4.312923] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    4.313036] systemd[1]: Created slice User and Session Slice.
[    4.313062] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    4.313079] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.313191] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.313202] systemd[1]: Reached target Local Encrypted Volumes.
[    4.313206] systemd[1]: Reached target Login Prompts.
[    4.313214] systemd[1]: Reached target Remote File Systems.
[    4.313218] systemd[1]: Reached target Slices.
[    4.313223] systemd[1]: Reached target Swap.
[    4.313249] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    4.313447] systemd[1]: Listening on LVM2 metadata daemon socket.
[    4.313664] systemd[1]: Listening on LVM2 poll daemon socket.
[    4.314400] systemd[1]: Listening on Process Core Dump Socket.
[    4.314424] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    4.314479] systemd[1]: Listening on Journal Audit Socket.
[    4.314513] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.314550] systemd[1]: Listening on Journal Socket.
[    4.314584] systemd[1]: Listening on udev Control Socket.
[    4.314606] systemd[1]: Listening on udev Kernel Socket.
[    4.314954] systemd[1]: Mounting Huge Pages File System...
[    4.315353] systemd[1]: Mounting POSIX Message Queue File System...
[    4.315775] systemd[1]: Mounting Kernel Debug File System...
[    4.316422] systemd[1]: Mounting Temporary Directory (/tmp)...
[    4.316930] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    4.317362] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    4.317920] systemd[1]: Starting Set Up Additional Binary Formats...
[    4.317937] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    4.318947] systemd[1]: Starting Journal Service...
[    4.319614] systemd[1]: Starting Load Kernel Modules...
[    4.320056] systemd[1]: Starting Remount Root and Kernel File Systems...
[    4.320471] systemd[1]: Starting udev Coldplug all Devices...
[    4.321638] systemd[1]: Mounted Huge Pages File System.
[    4.321788] systemd[1]: Mounted POSIX Message Queue File System.
[    4.321900] systemd[1]: Mounted Kernel Debug File System.
[    4.322098] systemd[1]: Mounted Temporary Directory (/tmp).
[    4.322492] systemd[1]: Started Create list of static device nodes for the current kernel.
[    4.322645] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 394 (systemd-binfmt)
[    4.323248] systemd[1]: Mounting Arbitrary Executable File Formats File System...
[    4.323782] random: lvm: uninitialized urandom read (4 bytes read)
[    4.325432] systemd[1]: Mounted Arbitrary Executable File Formats File System.
[    4.326208] systemd[1]: Started LVM2 metadata daemon.
[    4.328415] systemd[1]: Started Set Up Additional Binary Formats.
[    4.328636] EXT4-fs (nvme0n1p5): re-mounted. Opts: (null)
[    4.329506] systemd[1]: Started Remount Root and Kernel File Systems.
[    4.329614] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[    4.329917] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    4.330652] systemd[1]: Starting Load/Save Random Seed...
[    4.330669] systemd[1]: Condition check resulted in Create System Users being skipped.
[    4.331224] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.341942] systemd[1]: Started Create Static Device Nodes in /dev.
[    4.342713] systemd[1]: Starting udev Kernel Device Manager...
[    4.350168] systemd[1]: Started Load Kernel Modules.
[    4.350288] systemd[1]: Condition check resulted in FUSE Control File System being skipped.
[    4.350771] systemd[1]: Mounting Kernel Configuration File System...
[    4.351201] systemd[1]: Starting Apply Kernel Variables...
[    4.352059] systemd[1]: Mounted Kernel Configuration File System.
[    4.356565] systemd[1]: Started Apply Kernel Variables.
[    4.368395] usb 1-8: New USB device found, idVendor=048d, idProduct=8910, bcdDevice= 0.01
[    4.368396] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.368397] usb 1-8: Product: ITE Device(829x)
[    4.368397] usb 1-8: Manufacturer: ITE Tech. Inc.
[    4.368564] systemd[1]: Started udev Coldplug all Devices.
[    4.490508] usb 1-9: new high-speed USB device number 4 using xhci_hcd
[    4.494675] systemd[1]: Started Journal Service.
[    4.494760] audit: type=1130 audit(1581674820.366:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.500076] systemd-journald[395]: Received client request to flush runtime journal.
[    4.516111] audit: type=1130 audit(1581674820.386:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.522927] usb 1-9: New USB device found, idVendor=5986, idProduct=9102, bcdDevice= 6.01
[    4.522929] usb 1-9: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    4.522930] usb 1-9: Product: BisonCam,NB Pro
[    4.522931] usb 1-9: Manufacturer: Sonix Technology Co., Ltd.
[    4.538874] wmi_bus wmi_bus-PNP0C14:01: WQ data block query control method not found
[    4.538876] wmi_bus wmi_bus-PNP0C14:01: WQ data block query control method not found
[    4.538877] wmi_bus wmi_bus-PNP0C14:01: WQ data block query control method not found
[    4.538878] wmi_bus wmi_bus-PNP0C14:01: WQ data block query control method not found
[    4.539072] acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:04)
[    4.541698] ACPI: AC Adapter [AC] (on-line)
[    4.568048] random: mktemp: uninitialized urandom read (6 bytes read)
[    4.568069] random: mktemp: uninitialized urandom read (6 bytes read)
[    4.591173] audit: type=1130 audit(1581674820.463:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.591277] hid: raw HID events driver (C) Jiri Kosina
[    4.592283] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.592343] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.592401] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    4.592886] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.596702] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.597364] IPMI message handler: version 39.2
[    4.597911] Linux agpgart interface v0.103
[    4.600171] ipmi device interface
[    4.600296] intel-spi 0000:00:1f.5: mx25l12805d (16384 Kbytes)
[    4.605394] Creating 1 MTD partitions on "0000:00:1f.5":
[    4.605397] 0x000000000000-0x000001000000 : "BIOS"
[    4.606746] input: PC Speaker as /devices/platform/pcspkr/input/input10
[    4.612366] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[    4.612367] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    4.612368] RAPL PMU: hw unit of domain package 2^-14 Joules
[    4.612368] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    4.612369] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    4.612369] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    4.621720] libphy: r8169: probed
[    4.621857] r8169 0000:72:00.0 eth0: RTL8168h/8111h, 80:fa:5b:75:75:48, XID 541, IRQ 189
[    4.621858] r8169 0000:72:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    4.624840] cryptd: max_cpu_qlen set to 1000
[    4.630416] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.633413] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.633700] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    4.633701] cfg80211: failed to load regulatory.db
[    4.650511] usb 1-14: new full-speed USB device number 5 using xhci_hcd
[    4.684625] audit: type=1130 audit(1581674820.556:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.709448] audit: type=1130 audit(1581674820.579:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-c521b264\x2dac48\x2d4010\x2db531\x2d78e8e1a27129 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.711658] audit: type=1130 audit(1581674820.583:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-28EC\x2dCBCE comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.716536] EXT4-fs (nvme1n1p1): mounted filesystem with ordered data mode. Opts: (null)
[    4.717591] AVX2 version of gcm_enc/dec engaged.
[    4.717591] AES CTR mode by8 optimization enabled
[    4.718819] snd_hda_intel 0000:01:00.1: Disabling MSI
[    4.718825] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    4.720990] Intel(R) Wireless WiFi driver for Linux
[    4.720991] Copyright(c) 2003- 2015 Intel Corporation
[    4.724788] iwlwifi 0000:74:00.0: Direct firmware load for iwlwifi-cc-a0-52.ucode failed with error -2
[    4.724803] iwlwifi 0000:74:00.0: Direct firmware load for iwlwifi-cc-a0-51.ucode failed with error -2
[    4.725942] iwlwifi 0000:74:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 58.3.35.22
[    4.725945] iwlwifi 0000:74:00.0: Found debug destination: EXTERNAL_DRAM
[    4.725946] iwlwifi 0000:74:00.0: Found debug configuration: 0
[    4.726124] iwlwifi 0000:74:00.0: loaded firmware version 50.3e391d3e.0 op_mode iwlmvm
[    4.739798] audit: type=1130 audit(1581674820.609:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.744764] audit: type=1127 audit(1581674820.616:9): pid=624 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
[    4.747306] audit: type=1130 audit(1581674820.619:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.794956] usb 1-14: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01
[    4.794958] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.831041] nvidia: loading out-of-tree module taints kernel.
[    4.831048] nvidia: module license 'NVIDIA' taints kernel.
[    4.831048] Disabling lock debugging due to kernel taint
[    4.877649] battery: ACPI: Battery Slot [BAT0] (battery present)
[    4.941626] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    4.941874] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    4.948345] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[    5.060145] checking generic (4000000000 1fb0000) vs hw (604a000000 1000000)
[    5.060146] checking generic (4000000000 1fb0000) vs hw (4000000000 8000000)
[    5.060147] fb0: switching to inteldrmfb from EFI VGA
[    5.060235] Console: switching to colour dummy device 80x25
[    5.060248] i915 0000:00:02.0: vgaarb: deactivate vga console
[    5.061937] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    5.061938] [drm] Driver supports precise vblank timestamp query.
[    5.062708] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    5.064678] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[    5.067979] nvidia-nvlink: Nvlink Core is being initialized, major device number 239
[    5.068314] nvidia 0000:01:00.0: enabling device (0106 -> 0107)
[    5.068385] nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[    5.075590] [drm] Initialized i915 1.6.0 20191101 for 0000:00:02.0 on minor 0
[    5.078379] ACPI: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
[    5.078533] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input12
[    5.079828] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.080345] acpi device:1c: registered as cooling_device16
[    5.080440] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input13
[    5.080755] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    5.089100] fbcon: i915drmfb (fb0) is primary device
[    5.110646] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  440.59  Thu Jan 30 01:00:41 UTC 2020
[    5.307409] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  440.59  Thu Jan 30 00:59:18 UTC 2020
[    5.307425] iwlwifi 0000:74:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340
[    5.318532] iwlwifi 0000:74:00.0: Applying debug destination EXTERNAL_DRAM
[    5.318795] iwlwifi 0000:74:00.0: Allocated 0x00400000 bytes for firmware monitor.
[    5.322740] iTCO_vendor_support: vendor-support=0
[    5.324524] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    5.324587] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    5.324659] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    5.351853] r8169 0000:72:00.0 enp114s0: renamed from eth0
[    5.433222] Generic FE-GE Realtek PHY r8169-7200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-7200:00, irq=IGNORE)
[    5.500507] random: crng init done
[    5.500508] random: 7 urandom warning(s) missed due to ratelimiting
[    5.536886] iwlwifi 0000:74:00.0: base HW address: dc:71:96:89:81:59
[    5.559113] r8169 0000:72:00.0 enp114s0: Link is Down
[    5.559658] thermal thermal_zone3: failed to read out thermal zone (-61)
[    5.562061] iwlwifi 0000:74:00.0 wlp116s0: renamed from wlan0
[    5.693684] iwlwifi 0000:74:00.0: Applying debug destination EXTERNAL_DRAM
[    5.844814] iwlwifi 0000:74:00.0: FW already configured (0) - re-configuring
[    5.900625] mc: Linux media interface: v0.10
[    5.901364] intel_rapl_common: Found RAPL domain package
[    5.901364] intel_rapl_common: Found RAPL domain core
[    5.901365] intel_rapl_common: Found RAPL domain uncore
[    5.901366] intel_rapl_common: Found RAPL domain dram
[    5.907398] usbcore: registered new interface driver usbhid
[    5.907398] usbhid: USB HID core driver
[    5.924230] iwlwifi 0000:74:00.0: Applying debug destination EXTERNAL_DRAM
[    5.933341] psmouse serio2: synaptics: queried max coordinates: x [..5662], y [..4730]
[    6.051677] hid-generic 0003:048D:8910.0001: hiddev0,hidraw0: USB HID v1.10 Device [ITE Tech. Inc. ITE Device(829x)] on usb-0000:00:14.0-8/input0
[    6.054704] Bluetooth: Core ver 2.22
[    6.054713] videodev: Linux video capture interface: v2.00
[    6.054717] NET: Registered protocol family 31
[    6.054718] Bluetooth: HCI device and connection manager initialized
[    6.054720] Bluetooth: HCI socket layer initialized
[    6.054722] Bluetooth: L2CAP socket layer initialized
[    6.054723] Bluetooth: SCO socket layer initialized
[    6.055030] psmouse serio2: synaptics: queried min coordinates: x [1278..], y [1122..]
[    6.055032] psmouse serio2: synaptics: Your touchpad (PNP: 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.
[    6.075669] iwlwifi 0000:74:00.0: FW already configured (0) - re-configuring
[    6.202748] usbcore: registered new interface driver btusb
[    6.203840] Bluetooth: hci0: Firmware revision 0.0 build 111 week 53 2019
[    6.209756] psmouse serio2: synaptics: Touchpad model: 1, fw: 9.32, id: 0x1e2a1, caps: 0xf00223/0x840300/0x2e800/0x500000, board id: 3449, fw id: 2864695
[    6.209926] uvcvideo: Found UVC 1.00 device BisonCam,NB Pro (5986:9102)
[    6.216442] kauditd_printk_skb: 21 callbacks suppressed
[    6.216442] audit: type=1130 audit(1581674822.086:32): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bluetooth comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.216588] uvcvideo 1-9:1.0: Entity type for entity Extension 3 was not initialized!
[    6.216589] uvcvideo 1-9:1.0: Entity type for entity Processing 2 was not initialized!
[    6.216590] uvcvideo 1-9:1.0: Entity type for entity Camera 1 was not initialized!
[    6.216646] input: BisonCam,NB Pro: BisonCam,NB Pr as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0/input/input21
[    6.216745] usbcore: registered new interface driver uvcvideo
[    6.216746] USB Video Class driver (1.1.1)
[    6.221629] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    6.221629] Bluetooth: BNEP filters: protocol multicast
[    6.221650] Bluetooth: BNEP socket layer initialized
[    6.253671] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input11
[    6.256078] mousedev: PS/2 mouse device common for all mice
[    6.260322] NET: Registered protocol family 38
[    6.275023] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[    6.275064] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[    6.275101] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[    6.275156] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
[    6.275190] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18
[    6.275249] input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input19
[    6.275290] input: HDA NVidia HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input20
[    6.344283] BUG: Bad page map in process systemd-udevd  pte:6000112803e00001 pmd:85f0ee067
[    6.344284] addr:000055a327a40000 vm_flags:00100073 anon_vma:ffff9512a67787e8 mapping:0000000000000000 index:55a327a40
[    6.344287] file:(null) fault:0x0 mmap:0x0 readpage:0x0
[    6.344288] CPU: 7 PID: 422 Comm: systemd-udevd Tainted: P           OE     5.5.3-arch1-1 #1
[    6.344289] Hardware name: Notebook                         PB50_70RF,RD,RC                 /PB50_70RF,RD,RC                 , BIOS 1.07.13 02/01/2019
[    6.344289] Call Trace:
[    6.344293]  dump_stack+0x66/0x90
[    6.344295]  print_bad_pte.cold+0x6a/0xd2
[    6.344298]  ? preempt_count_add+0x68/0xa0
[    6.344300]  ? _raw_spin_lock+0x13/0x30
[    6.344301]  vm_normal_page+0xbe/0xd0
[    6.344302]  copy_page_range+0x92d/0x10b0
[    6.344305]  dup_mm+0x3d3/0x570
[    6.344307]  copy_process+0x166c/0x1b80
[    6.344309]  _do_fork+0x94/0x3f0
[    6.344310]  __x64_sys_clone+0x81/0xa0
[    6.344312]  do_syscall_64+0x4e/0x150
[    6.344314]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[    6.344315] RIP: 0033:0x7f57f7404c6f
[    6.344316] Code: ed 0f 85 f4 00 00 00 64 4c 8b 0c 25 10 00 00 00 45 31 c0 4d 8d 91 d0 02 00 00 31 d2 31 f6 bf 11 00 20 01 b8 38 00 00 00 0f 05 <48> 3d 00 f0 ff ff 0f 87 8d 00 00 00 41 89 c5 85 c0 0f 85 9a 00 00
[    6.344316] RSP: 002b:00007ffc2ef2edf0 EFLAGS: 00000246 ORIG_RAX: 0000000000000038
[    6.344317] RAX: ffffffffffffffda RBX: 0000000000000025 RCX: 00007f57f7404c6f
[    6.344317] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000001200011
[    6.344318] RBP: 0000000000000000 R08: 0000000000000000 R09: 00007f57f6681840
[    6.344318] R10: 00007f57f6681b10 R11: 0000000000000246 R12: 0000000000000000
[    6.344319] R13: 00007ffc2ef2efac R14: 0000000000000020 R15: 0000000000000001
[    6.344323] general protection fault: 0000 [#1] PREEMPT SMP NOPTI
[    6.344324] CPU: 7 PID: 422 Comm: systemd-udevd Tainted: P    B      OE     5.5.3-arch1-1 #1
[    6.344324] Hardware name: Notebook                         PB50_70RF,RD,RC                 /PB50_70RF,RD,RC                 , BIOS 1.07.13 02/01/2019
[    6.344325] RIP: 0010:copy_page_range+0xe18/0x10b0
[    6.344326] Code: ff ff 4c 89 ef e8 58 f2 00 00 e9 8b fd ff ff 48 be ff ff ff ff ff ff ff 03 48 21 f3 48 89 d9 48 c1 e1 06 48 03 0d b8 91 f6 00 <48> 8b 79 08 48 8d 77 ff 83 e7 01 48 0f 44 f1 48 8b 7e 08 4c 8d 47
[    6.344327] RSP: 0018:ffffb08c8084bbd0 EFLAGS: 00010207
[    6.344327] RAX: 000000000000001c RBX: 0000757fffe4ffff RCX: 001d524a793fffc0
[    6.344328] RDX: 0000000000100073 RSI: 03ffffffffffffff RDI: e715000036000000
[    6.344328] RBP: e715000036000000 R08: 0000000000000000 R09: 000000000000001c
[    6.344328] R10: 0000000000000438 R11: 0000000000008fe8 R12: ffff9512a90e7700
[    6.344329] R13: ffff95129f0ee208 R14: 0000000000000008 R15: fffff24aa17c3ba8
[    6.344330] FS:  00007f57f6681840(0000) GS:ffff9512b05c0000(0000) knlGS:0000000000000000
[    6.344330] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    6.344330] CR2: 000055a3271e40d0 CR3: 0000000867ba8003 CR4: 00000000003606e0
[    6.344331] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[    6.344331] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[    6.344332] Call Trace:
[    6.344334]  dup_mm+0x3d3/0x570
[    6.344336]  copy_process+0x166c/0x1b80
[    6.344337]  _do_fork+0x94/0x3f0
[    6.344339]  __x64_sys_clone+0x81/0xa0
[    6.344340]  do_syscall_64+0x4e/0x150
[    6.344341]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[    6.344342] RIP: 0033:0x7f57f7404c6f
[    6.344343] Code: ed 0f 85 f4 00 00 00 64 4c 8b 0c 25 10 00 00 00 45 31 c0 4d 8d 91 d0 02 00 00 31 d2 31 f6 bf 11 00 20 01 b8 38 00 00 00 0f 05 <48> 3d 00 f0 ff ff 0f 87 8d 00 00 00 41 89 c5 85 c0 0f 85 9a 00 00
[    6.344343] RSP: 002b:00007ffc2ef2edf0 EFLAGS: 00000246 ORIG_RAX: 0000000000000038
[    6.344344] RAX: ffffffffffffffda RBX: 0000000000000025 RCX: 00007f57f7404c6f
[    6.344344] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000001200011
[    6.344344] RBP: 0000000000000000 R08: 0000000000000000 R09: 00007f57f6681840
[    6.344345] R10: 00007f57f6681b10 R11: 0000000000000246 R12: 0000000000000000
[    6.344345] R13: 00007ffc2ef2efac R14: 0000000000000020 R15: 0000000000000001
[    6.344346] Modules linked in: acpi_cpufreq(-) cmac algif_hash algif_skcipher af_alg joydev mousedev bnep uvcvideo videobuf2_vmalloc btusb videobuf2_memops videobuf2_v4l2 btrtl videobuf2_common btbcm btintel hid_generic bluetooth videodev ecdh_generic ecc intel_rapl_msr mc usbhid intel_rapl_common mei_hdcp x86_pkg_temp_thermal intel_powerclamp iTCO_wdt ucsi_ccg(+) iTCO_vendor_support snd_sof_pci kvm_intel typec_ucsi snd_sof_intel_byt snd_sof_intel_ipc typec snd_sof_xtensa_dsp snd_sof_intel_hda_common snd_soc_hdac_hda snd_sof_intel_hda nvidia_drm(POE+) snd_sof wmi_bmof intel_wmi_thunderbolt mxm_wmi nvidia_modeset(POE) iwlmvm snd_hda_ext_core snd_soc_acpi_intel_match snd_soc_acpi kvm snd_hda_codec_hdmi ledtrig_audio irqbypass nvidia(POE) i915 mac80211 snd_soc_core crct10dif_pclmul crc32_pclmul ghash_clmulni_intel libarc4 snd_compress nls_iso8859_1 ac97_bus nls_cp437 snd_pcm_dmaengine i2c_algo_bit vfat fat iwlwifi drm_kms_helper snd_hda_intel aesni_intel snd_intel_dspcfg crypto_simd cfg80211
[    6.344362]  snd_hda_codec cryptd glue_helper drm intel_cstate intel_uncore snd_hda_core intel_rapl_perf r8169 snd_hwdep snd_pcm pcspkr input_leds ofpart cmdlinepart psmouse intel_gtt intel_spi_pci ipmi_devintf snd_timer intel_spi agpgart ipmi_msghandler i2c_hid mei_me spi_nor snd realtek syscopyarea intel_lpss_pci sysfillrect sysimgblt intel_lpss thunderbolt(+) mtd libphy rfkill i2c_i801 mei soundcore intel_pch_thermal hid i2c_nvidia_gpu fb_sys_fops idma64 battery ac wmi evdev mac_hid coretemp msr crypto_user ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 ahci libahci rtsx_pci_sdmmc mmc_core libata serio_raw atkbd libps2 xhci_pci scsi_mod crc32c_intel rtsx_pci xhci_hcd i8042 serio
[    6.344379] ---[ end trace 8a31399faabb27e9 ]---
[    6.344380] RIP: 0010:copy_page_range+0xe18/0x10b0
[    6.344381] Code: ff ff 4c 89 ef e8 58 f2 00 00 e9 8b fd ff ff 48 be ff ff ff ff ff ff ff 03 48 21 f3 48 89 d9 48 c1 e1 06 48 03 0d b8 91 f6 00 <48> 8b 79 08 48 8d 77 ff 83 e7 01 48 0f 44 f1 48 8b 7e 08 4c 8d 47
[    6.344381] RSP: 0018:ffffb08c8084bbd0 EFLAGS: 00010207
[    6.344381] RAX: 000000000000001c RBX: 0000757fffe4ffff RCX: 001d524a793fffc0
[    6.344382] RDX: 0000000000100073 RSI: 03ffffffffffffff RDI: e715000036000000
[    6.344382] RBP: e715000036000000 R08: 0000000000000000 R09: 000000000000001c
[    6.344383] R10: 0000000000000438 R11: 0000000000008fe8 R12: ffff9512a90e7700
[    6.344383] R13: ffff95129f0ee208 R14: 0000000000000008 R15: fffff24aa17c3ba8
[    6.344384] FS:  00007f57f6681840(0000) GS:ffff9512b05c0000(0000) knlGS:0000000000000000
[    6.344384] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[    6.344384] CR2: 000055a3271e40d0 CR3: 0000000867ba8003 CR4: 00000000003606e0
[    6.344385] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[    6.344385] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[    6.344386] note: systemd-udevd[422] exited with preempt_count 2
[    7.001498] Console: switching to colour frame buffer device 480x135
[    7.002317] audit: type=1130 audit(1581674822.873:33): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    7.049812] i915 0000:00:02.0: fb0: i915drmfb frame buffer device
[    7.084723] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[    7.084724] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[    7.163539] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
[    7.163540] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.163541] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x14/0x0/0x0/0x0/0x0)
[    7.163541] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    7.163542] snd_hda_codec_realtek hdaudioC0D0:    dig-out=0x1e/0x0
[    7.163542] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    7.163543] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    7.163543] snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
[    7.163544] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    7.183263] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input24
[    7.183376] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input25
[    7.183467] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26
[    7.183547] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[    7.183604] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[    7.183700] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[    7.183797] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[    7.183886] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
[    7.250073] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20191018/nsarguments-59)
[    8.112922] broken atomic modeset userspace detected, disabling atomic
[   11.211731] audit: type=1131 audit(1581674827.083:34): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.793432] audit: type=1103 audit(1581674827.663:35): pid=1122 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   11.803288] audit: type=1130 audit(1581674827.673:36): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@975 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.808984] audit: type=1101 audit(1581674827.679:37): pid=1126 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="lightdm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.808986] audit: type=1006 audit(1581674827.679:38): pid=1126 uid=0 old-auid=4294967295 auid=975 tty=(none) old-ses=4294967295 ses=1 res=1
[   11.810035] audit: type=1105 audit(1581674827.679:39): pid=1126 uid=0 auid=975 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="lightdm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.846990] audit: type=1130 audit(1581674827.716:40): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@975 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   11.849775] audit: type=1105 audit(1581674827.719:41): pid=1122 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   11.930822] fuse: init (API version 7.31)
[   11.930862] *** VALIDATE fuse ***
[   11.930865] *** VALIDATE fuse ***
[   15.035256] audit: type=1131 audit(1581674830.906:42): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   35.114305] audit: type=1100 audit(1581674850.986:43): pid=1161 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_tally2,pam_shells,pam_unix,pam_permit,pam_gnome_keyring acct="dirk" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   35.131637] audit: type=1101 audit(1581674851.003:44): pid=1161 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="dirk" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   35.145084] audit: type=1106 audit(1581674851.016:45): pid=1122 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   35.145145] audit: type=1104 audit(1581674851.016:46): pid=1122 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   35.148024] audit: type=1103 audit(1581674851.019:47): pid=1161 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_tally2,pam_shells,pam_unix,pam_permit,pam_gnome_keyring acct="dirk" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
[   35.148095] audit: type=1006 audit(1581674851.019:48): pid=1161 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   35.159563] audit: type=1130 audit(1581674851.029:49): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   35.163305] audit: type=1101 audit(1581674851.033:50): pid=1173 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_tally2,pam_access,pam_unix,pam_permit,pam_time acct="dirk" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   35.163394] audit: type=1006 audit(1581674851.033:51): pid=1173 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
[   35.164243] audit: type=1105 audit(1581674851.036:52): pid=1173 uid=0 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="dirk" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   35.177345] iwlwifi 0000:74:00.0: Applying debug destination EXTERNAL_DRAM
[   35.328442] iwlwifi 0000:74:00.0: FW already configured (0) - re-configuring
[   35.710483] Bluetooth: RFCOMM TTY layer initialized
[   35.710487] Bluetooth: RFCOMM socket layer initialized
[   35.710495] Bluetooth: RFCOMM ver 1.11
[   38.617082] wlp116s0: authenticate with b0:7f:b9:3e:46:2e
[   38.619656] wlp116s0: send auth to b0:7f:b9:3e:46:2e (try 1/3)
[   38.643652] wlp116s0: authenticated
[   38.643840] wlp116s0: associate with b0:7f:b9:3e:46:2e (try 1/3)
[   38.647851] wlp116s0: RX AssocResp from b0:7f:b9:3e:46:2e (capab=0x1411 status=0 aid=4)
[   38.650756] wlp116s0: associated
[   38.679833] IPv6: ADDRCONF(NETDEV_CHANGE): wlp116s0: link becomes ready
[   38.681698] wlp116s0: Limiting TX power to 27 (30 - 3) dBm as advertised by b0:7f:b9:3e:46:2e
[   40.571644] kauditd_printk_skb: 7 callbacks suppressed
[   40.571645] audit: type=1130 audit(1581674856.443:60): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   45.250955] audit: type=1131 audit(1581674861.123:61): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@975 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   45.256803] audit: type=1131 audit(1581674861.126:62): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@975 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   51.021900] audit: type=1131 audit(1581674866.893:63): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   66.705466] audit: type=1131 audit(1581674882.576:64): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=blueman-mechanism comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   87.197325] thunderbolt 0000:08:00.0: failed to send driver ready to ICM
[   87.197630] thunderbolt: probe of 0000:08:00.0 failed with error -110
[   87.277412] audit: type=1130 audit(1581674903.149:65): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=tlp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

Can you maybe look at this for me? I see error messages starting at 6.344283 but I don't know how important they are...
If you need more, just ask!

Offline

#6 2020-02-14 11:13:01

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,415

Re: [SOLVED] cpu speed/governor 'weird' since last update

You really shouldn't override acpi values unless you are absolutely certain they are needed, that could well be contributing. You should also set up microcode loading.

If these don't fix these issues you might see a kernel regression. But if that is the only noticeable impact, I'd say simply forcing the governor via cpupower during early boot should be fine. This could also be a side effect of the glibc 2.31 update, which seems to have done some quite invasive changes.

Last edited by V1del (2020-02-14 11:17:49)

Offline

#7 2020-02-14 11:29:03

scippie
Member
Registered: 2019-06-07
Posts: 127

Re: [SOLVED] cpu speed/governor 'weird' since last update

V1del wrote:

You really shouldn't override acpi values unless you are absolutely certain they are needed, that could well be contributing.

I have done one override that is needed for the keyboard backlight (Clevo) so that I can turn it down when it's dark. It is very bright and blue otherwise.

V1del wrote:

You should also set up microcode loading.

Aargh... I really thought I did that when I installed my system. I followed the installation guide (even though this is my 5the system with Arch) and I was so certain that it started. I will look into this asap!

Offline

#8 2020-02-14 11:40:30

scippie
Member
Registered: 2019-06-07
Posts: 127

Re: [SOLVED] cpu speed/governor 'weird' since last update

I just fixed microcode loading. I really don't understand why it wasn't there in the first place (although I remember that I had trouble installing Arch on this machine as I hadn't noticed that you had to specifically manually pacstrap the kernel now where that wasn't the case earlier, so maybe the intel-ucode didn't install either because of forgetting the kernel at first).

Shutting down the system to reboot it made the system go into an unrecoverable kernel crash. I had to power down manually.
After that, the system rebooted perfectly without any errors (even the disk was still fine) in the kernel log, so I guess having the microcode updates was necessary for my system.

I hate things like this: I was so certain that I installed the microcode because I know why it may be important and I never think of checking the logs to see if it is actually loading.

Thanks again for your help. Very much appreciated!

Offline

Board footer

Powered by FluxBB