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

Bug#1021918: debian-installer: Kernel module blacklisting inconsistent



Pascal Hambourg <pascal@plouf.fr.eu.org> writes:

> On 17/10/2022 at 13:13, Olaf Meeuwissen wrote:
>> I recently tried this version with hardware that triggers loading of the
>> mt7921e kernel module.  Loading the module fails due to a firmware file
>> load error but the installer starts okay.  However, the installer later
>> crashes when probing for network hardware (when it tries to rmmod the
>> kernel module).
>
> How does the installer crash exactly ? Kernel panic ? Freeze ? Error ?

Freeze.  Even after ten minutes the network hardware probe does not
complete.  FWIW, I have seen an error log as well but that may have
been with Devuan's preview installer for daedalus.

You can still switch VTs but trying to `poweroff` or `reboot` after
starting a shell on VT2 or VT3 will also freeze.  The last bit of the
error can be seen on VT4.

I've attached the installer's syslog.  /dev/sdc is the installer ISO.
The other disks, /dev/sda, /dev/sdb and /dev/nmve0n1 are the machine's
internal disks.  I just ran the installer after the machine was already
installed with the workaround I mentioned in the original bug report.

The error starts at

  Oct 19 23:06:13 check-missing-firmware: removing and loading kernel module mt7921e

and looks like what I've seen on VT4.

>> The first issue I ran into was that the documented[1] way to blacklist
>> kernel modules is no longer correct
>>   [1]:
>> https://www.debian.org/releases/testing/amd64/ch05s03.en.html#module-blacklist
>> Instead of
>>    mt7921e.blacklist=yes
>> I had to use
>>    modprobe.blacklist=mt7921e
>
> /lib/debian-installer-startup.d/S02module-params has the following comment:
>
> # Before udev is started, parse kernel command word for module params of
> # the form module.param=value and register them so they will be used when
> # modules are loaded. Also check for modules to be blacklisted.
>
> But udev is actually started earlier, so the first method does not
> work with modules included in initrd.gz (e.g. storage drivers).

In that case, shouldn't that be mentioned in the installation manual?
Actually, a single method that works for *all* modules, whether in the
initrd.gz or installed later is much preferred.

> However it should work with network driver modules which are installed
> much later.

You may want to double check how the kernel command parse results are
used then.

Or maybe the mt7921e module is in the initrd.gz?
Just checked, it is not.

>> However, upon booting I saw a pile of ATA bus and I/O errors that made
>> me suspicious.  The disk is brand new and a smartmontools extended test
>> reports no errors.
>> I found a /etc/modprobe.d/blacklist.local.conf file with
>>    blacklist modprobe
>
> This is a minor bug in
> /lib/debian-installer-startup.d/S02module-params which can be easily
> fixed. However, it should not have any actual impact as "modprobe"
> does not match any kernel module name or alias.

Strange, because removing it made those ATA bus and I/O errors go away,
reproducibly at that.

>> For completeness' sake, the /etc/default/grub file included
>>    GRUB_CMDLINE_LINUX="modprobe.blacklist=mt7921e"
>
> As expected.

I have since removed that blacklist statement and installed
firmware-misc-nonfree.  That makes the firmware load without any
trouble.

>> Seeing that the kernel boot argument is added correctly to the GRUB
>> configuration, there is no need to create a file in /etc/modprobe.d/.
>> In addition, the installation manual needs to be updated to use the
>> correct syntax.
>
> If I understand correctly, this is how things work:
>
> The kernel runs /init.
> /init runs /lib/debian-installer/start-udev which starts udevd.
> udevd gets hotplug events and calls modprobe to load matching modules
> included in initrd.gz.
> Then /init exec's /bin/busybox init.

Since there is no mt7921e module in the initrd.gz, in fact no modules
matching mt7, it should not have been loaded at this point according to
your understanding.

> busybox init reads /etc/inittab and runs /sbin/debian-installer-startup.
> debian-installer-startup runs
> /lib/debian-installer-startup.d/S02module-params.
> /lib/debian-installer-startup.d/S02module-params calls
> /bin/register-module for each module parameter or blacklist in the
> kernel command line.

That appears to work but blacklisting syntax is *not* as documented in
the installation manual.

> register-module writes module blacklists in
> /etc/modprobe.d/blacklist.local.conf and module parameters in
> /etc/modprobe.d/local.conf.

The blacklist.local.conf file is created as documented but using the
alternative syntax I had to use leads to the oxymoronic

  blacklist modprobe

entry, trying to tell modprobe to blacklist itself :-)

You mentioned above that's a minor bug and easily fixed.  If so, then
please fix it.

> Later, network driver modules are installed and loaded.

Seeing that the module is not in initrd.gz, this is where it would be
loaded according to your understanding.  Does this step happen *before*
the installer screen appears?  If yes, that is in agreement with what I
have seen.  If no, and network driver modules are installed and loaded
at the network hardware probe step of the installer then that does *not*
correspond to what I have seen.  That is to say, unless I blacklist the
module with modprobe.blacklist=mt7921e, I see piles or firmware loading
error fly by before the installer screen appears, asking me to select a
language.

> Later, /usr/bin/grub-installer calls /bin/user-params which retrieves
> kernel parameters after "--" or "---" in the command line and writes
> them to grub2/linux_cmdline in debconf and GRUB_CMDLINE_LINUX in
> /etc/default/grub.

I put it after the "--" and it did end up in GRUB_CMDLINE_LINUX.

> So indeed kernel module parameters and blacklists may be duplicated in
> /etc/modprobe.d and GRUB_CMDLINE_LINUX. To avoid duplication they
> should be inserted before "---" in the installer command line.

That should be documented then as well, including where the kernel
module parameters inserted before the "--" end up, in a modprobe.d file
or the GRUB_CMDLINE_LINUX variable.

Actually, reading the installation manual info, I found myself wondering
whether I should put it before or after.  After was easier to navigate
to in the editor so that's what I went with.

Hope this helps,
--
Olaf Meeuwissen
Oct 19 23:05:39 syslogd started: BusyBox v1.35.0
Oct 19 23:05:39 kernel: klogd started: BusyBox v1.35.0 (Debian 1:1.35.0-2)
Oct 19 23:05:39 kernel: [    0.000000] Linux version 5.19.0-1-amd64 (debian-kernel@lists.debian.org) (gcc-11 (Debian 11.3.0-5) 11.3.0, GNU ld (GNU Binutils for Debian) 2.38.90.20220713) #1 SMP PREEMPT_DYNAMIC Debian 5.19.6-1 (2022-09-01)
Oct 19 23:05:39 kernel: [    0.000000] Command line: BOOT_IMAGE=/install.amd/vmlinuz vga=788 --- quiet
Oct 19 23:05:39 kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Oct 19 23:05:39 kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Oct 19 23:05:39 kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Oct 19 23:05:39 kernel: [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Oct 19 23:05:39 kernel: [    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Oct 19 23:05:39 kernel: [    0.000000] signal: max sigframe size: 1776
Oct 19 23:05:39 kernel: [    0.000000] BIOS-provided physical RAM map:
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x0000000009bff000-0x0000000009ffffff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x00000000cb0eefff] usable
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cb0ef000-0x00000000cc60bfff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cc60c000-0x00000000cc627fff] ACPI data
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cc628000-0x00000000cc628fff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cc629000-0x00000000cc657fff] ACPI data
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cc658000-0x00000000cc80bfff] ACPI NVS
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cc80c000-0x00000000cd180fff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cd181000-0x00000000cd1fefff] type 20
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000cd1ff000-0x00000000cdffffff] usable
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000ce000000-0x00000000cfffffff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000080f33ffff] usable
Oct 19 23:05:39 kernel: [    0.000000] BIOS-e820: [mem 0x000000080f340000-0x00000008501fffff] reserved
Oct 19 23:05:39 kernel: [    0.000000] NX (Execute Disable) protection: active
Oct 19 23:05:39 kernel: [    0.000000] efi: EFI v2.70 by American Megatrends
Oct 19 23:05:39 kernel: [    0.000000] efi: ACPI=0xcc657000 ACPI 2.0=0xcc657014 TPMFinalLog=0xcc7c6000 SMBIOS=0xcd022000 SMBIOS 3.0=0xcd021000 MEMATTR=0xc9f44118 ESRT=0xca556d98 MOKvar=0xc70de000 
Oct 19 23:05:39 kernel: [    0.000000] secureboot: Secure boot disabled
Oct 19 23:05:39 kernel: [    0.000000] SMBIOS 3.2.0 present.
Oct 19 23:05:39 kernel: [    0.000000] DMI: BESSTAR TECH LIMITED HM90/HM90, BIOS 5.16 10/13/2021
Oct 19 23:05:39 kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Oct 19 23:05:39 kernel: [    0.000000] tsc: Detected 3293.848 MHz processor
Oct 19 23:05:39 kernel: [    0.000129] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Oct 19 23:05:39 kernel: [    0.000131] e820: remove [mem 0x000a0000-0x000fffff] usable
Oct 19 23:05:39 kernel: [    0.000137] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
Oct 19 23:05:39 kernel: [    0.000269] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Oct 19 23:05:39 kernel: [    0.000439] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
Oct 19 23:05:39 kernel: [    0.000447] last_pfn = 0xce000 max_arch_pfn = 0x400000000
Oct 19 23:05:39 kernel: [    0.003779] esrt: Reserving ESRT space from 0x00000000ca556d98 to 0x00000000ca556dd0.
Oct 19 23:05:39 kernel: [    0.003788] e820: update [mem 0xca556000-0xca556fff] usable ==> reserved
Oct 19 23:05:39 kernel: [    0.003803] e820: update [mem 0xc70de000-0xc70e0fff] usable ==> reserved
Oct 19 23:05:39 kernel: [    0.003835] Using GB pages for direct mapping
Oct 19 23:05:39 kernel: [    0.004401] RAMDISK: [mem 0x35281000-0x36937fff]
Oct 19 23:05:39 kernel: [    0.004404] ACPI: Early table checksum verification disabled
Oct 19 23:05:39 kernel: [    0.004406] ACPI: RSDP 0x00000000CC657014 000024 (v02 ALASKA)
Oct 19 23:05:39 kernel: [    0.004409] ACPI: XSDT 0x00000000CC656728 0000DC (v01 ALASKA A M I    01072009 AMI  01000013)
Oct 19 23:05:39 kernel: [    0.004413] ACPI: FACP 0x00000000CC64B000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
Oct 19 23:05:39 kernel: [    0.004417] ACPI: DSDT 0x00000000CC642000 00837B (v02 ALASKA A M I    01072009 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004419] ACPI: FACS 0x00000000CC7C4000 000040
Oct 19 23:05:39 kernel: [    0.004421] ACPI: MSDM 0x00000000CC655000 000055 (v03 ALASKA A M I    01072009 AMI  01000013)
Oct 19 23:05:39 kernel: [    0.004423] ACPI: SSDT 0x00000000CC64D000 007216 (v02 AMD    AmdTable 00000002 MSFT 04000000)
Oct 19 23:05:39 kernel: [    0.004425] ACPI: IVRS 0x00000000CC64C000 0001A4 (v02 AMD    AmdTable 00000001 AMD  00000000)
Oct 19 23:05:39 kernel: [    0.004427] ACPI: FIDT 0x00000000CC641000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
Oct 19 23:05:39 kernel: [    0.004429] ACPI: MCFG 0x00000000CC640000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
Oct 19 23:05:39 kernel: [    0.004431] ACPI: HPET 0x00000000CC63F000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
Oct 19 23:05:39 kernel: [    0.004433] ACPI: SSDT 0x00000000CC63E000 000228 (v01 AMD    STD3     00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004435] ACPI: VFCT 0x00000000CC630000 00D484 (v01 ALASKA A M I    00000001 AMD  31504F47)
Oct 19 23:05:39 kernel: [    0.004437] ACPI: TPM2 0x00000000CC62E000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
Oct 19 23:05:39 kernel: [    0.004439] ACPI: SSDT 0x00000000CC62A000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
Oct 19 23:05:39 kernel: [    0.004441] ACPI: CRAT 0x00000000CC629000 000F28 (v01 AMD    AmdTable 00000001 AMD  00000001)
Oct 19 23:05:39 kernel: [    0.004443] ACPI: CDIT 0x00000000CC627000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
Oct 19 23:05:39 kernel: [    0.004445] ACPI: BGRT 0x00000000CC62F000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
Oct 19 23:05:39 kernel: [    0.004447] ACPI: SSDT 0x00000000CC626000 000139 (v01 AMD    AmdTable 00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004448] ACPI: SSDT 0x00000000CC625000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004450] ACPI: SSDT 0x00000000CC623000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004452] ACPI: SSDT 0x00000000CC61F000 0030C8 (v01 AMD    AmdTable 00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004454] ACPI: WSMT 0x00000000CC61E000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
Oct 19 23:05:39 kernel: [    0.004456] ACPI: APIC 0x00000000CC61D000 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
Oct 19 23:05:39 kernel: [    0.004458] ACPI: SSDT 0x00000000CC61C000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004460] ACPI: SSDT 0x00000000CC61B000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
Oct 19 23:05:39 kernel: [    0.004462] ACPI: FPDT 0x00000000CC61A000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
Oct 19 23:05:39 kernel: [    0.004463] ACPI: Reserving FACP table memory at [mem 0xcc64b000-0xcc64b113]
Oct 19 23:05:39 kernel: [    0.004464] ACPI: Reserving DSDT table memory at [mem 0xcc642000-0xcc64a37a]
Oct 19 23:05:39 kernel: [    0.004465] ACPI: Reserving FACS table memory at [mem 0xcc7c4000-0xcc7c403f]
Oct 19 23:05:39 kernel: [    0.004466] ACPI: Reserving MSDM table memory at [mem 0xcc655000-0xcc655054]
Oct 19 23:05:39 kernel: [    0.004466] ACPI: Reserving SSDT table memory at [mem 0xcc64d000-0xcc654215]
Oct 19 23:05:39 kernel: [    0.004467] ACPI: Reserving IVRS table memory at [mem 0xcc64c000-0xcc64c1a3]
Oct 19 23:05:39 kernel: [    0.004468] ACPI: Reserving FIDT table memory at [mem 0xcc641000-0xcc64109b]
Oct 19 23:05:39 kernel: [    0.004468] ACPI: Reserving MCFG table memory at [mem 0xcc640000-0xcc64003b]
Oct 19 23:05:39 kernel: [    0.004469] ACPI: Reserving HPET table memory at [mem 0xcc63f000-0xcc63f037]
Oct 19 23:05:39 kernel: [    0.004469] ACPI: Reserving SSDT table memory at [mem 0xcc63e000-0xcc63e227]
Oct 19 23:05:39 kernel: [    0.004470] ACPI: Reserving VFCT table memory at [mem 0xcc630000-0xcc63d483]
Oct 19 23:05:39 kernel: [    0.004470] ACPI: Reserving TPM2 table memory at [mem 0xcc62e000-0xcc62e04b]
Oct 19 23:05:39 kernel: [    0.004471] ACPI: Reserving SSDT table memory at [mem 0xcc62a000-0xcc62d9f3]
Oct 19 23:05:39 kernel: [    0.004472] ACPI: Reserving CRAT table memory at [mem 0xcc629000-0xcc629f27]
Oct 19 23:05:39 kernel: [    0.004472] ACPI: Reserving CDIT table memory at [mem 0xcc627000-0xcc627028]
Oct 19 23:05:39 kernel: [    0.004473] ACPI: Reserving BGRT table memory at [mem 0xcc62f000-0xcc62f037]
Oct 19 23:05:39 kernel: [    0.004474] ACPI: Reserving SSDT table memory at [mem 0xcc626000-0xcc626138]
Oct 19 23:05:39 kernel: [    0.004474] ACPI: Reserving SSDT table memory at [mem 0xcc625000-0xcc625d36]
Oct 19 23:05:39 kernel: [    0.004475] ACPI: Reserving SSDT table memory at [mem 0xcc623000-0xcc6240a4]
Oct 19 23:05:39 kernel: [    0.004475] ACPI: Reserving SSDT table memory at [mem 0xcc61f000-0xcc6220c7]
Oct 19 23:05:39 kernel: [    0.004476] ACPI: Reserving WSMT table memory at [mem 0xcc61e000-0xcc61e027]
Oct 19 23:05:39 kernel: [    0.004477] ACPI: Reserving APIC table memory at [mem 0xcc61d000-0xcc61d0dd]
Oct 19 23:05:39 kernel: [    0.004477] ACPI: Reserving SSDT table memory at [mem 0xcc61c000-0xcc61c07c]
Oct 19 23:05:39 kernel: [    0.004478] ACPI: Reserving SSDT table memory at [mem 0xcc61b000-0xcc61b516]
Oct 19 23:05:39 kernel: [    0.004478] ACPI: Reserving FPDT table memory at [mem 0xcc61a000-0xcc61a043]
Oct 19 23:05:39 kernel: [    0.004529] No NUMA configuration found
Oct 19 23:05:39 kernel: [    0.004530] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
Oct 19 23:05:39 kernel: [    0.004537] NODE_DATA(0) allocated [mem 0x80f315000-0x80f33ffff]
Oct 19 23:05:39 kernel: [    0.004792] Zone ranges:
Oct 19 23:05:39 kernel: [    0.004792]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Oct 19 23:05:39 kernel: [    0.004793]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Oct 19 23:05:39 kernel: [    0.004794]   Normal   [mem 0x0000000100000000-0x000000080f33ffff]
Oct 19 23:05:39 kernel: [    0.004795]   Device   empty
Oct 19 23:05:39 kernel: [    0.004796] Movable zone start for each node
Oct 19 23:05:39 kernel: [    0.004797] Early memory node ranges
Oct 19 23:05:39 kernel: [    0.004798]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
Oct 19 23:05:39 kernel: [    0.004799]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
Oct 19 23:05:39 kernel: [    0.004799]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
Oct 19 23:05:39 kernel: [    0.004800]   node   0: [mem 0x000000000a20d000-0x00000000cb0eefff]
Oct 19 23:05:39 kernel: [    0.004801]   node   0: [mem 0x00000000cd1ff000-0x00000000cdffffff]
Oct 19 23:05:39 kernel: [    0.004801]   node   0: [mem 0x0000000100000000-0x000000080f33ffff]
Oct 19 23:05:39 kernel: [    0.004804] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
Oct 19 23:05:39 kernel: [    0.004807] On node 0, zone DMA: 1 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.004831] On node 0, zone DMA: 96 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.005047] On node 0, zone DMA32: 1025 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.010423] On node 0, zone DMA32: 13 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.010520] On node 0, zone DMA32: 8464 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.010839] On node 0, zone Normal: 8192 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.010865] On node 0, zone Normal: 3264 pages in unavailable ranges
Oct 19 23:05:39 kernel: [    0.011127] ACPI: PM-Timer IO Port: 0x808
Oct 19 23:05:39 kernel: [    0.011133] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Oct 19 23:05:39 kernel: [    0.011144] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
Oct 19 23:05:39 kernel: [    0.011148] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
Oct 19 23:05:39 kernel: [    0.011150] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 19 23:05:39 kernel: [    0.011151] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Oct 19 23:05:39 kernel: [    0.011154] ACPI: Using ACPI (MADT) for SMP configuration information
Oct 19 23:05:39 kernel: [    0.011155] ACPI: HPET id: 0x10228201 base: 0xfed00000
Oct 19 23:05:39 kernel: [    0.011167] e820: update [mem 0xc805b000-0xc81bafff] usable ==> reserved
Oct 19 23:05:39 kernel: [    0.011177] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
Oct 19 23:05:39 kernel: [    0.011195] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Oct 19 23:05:39 kernel: [    0.011197] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Oct 19 23:05:39 kernel: [    0.011198] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
Oct 19 23:05:39 kernel: [    0.011199] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
Oct 19 23:05:39 kernel: [    0.011200] PM: hibernation: Registered nosave memory: [mem 0xc70de000-0xc70e0fff]
Oct 19 23:05:39 kernel: [    0.011202] PM: hibernation: Registered nosave memory: [mem 0xc805b000-0xc81bafff]
Oct 19 23:05:39 kernel: [    0.011203] PM: hibernation: Registered nosave memory: [mem 0xca556000-0xca556fff]
Oct 19 23:05:39 kernel: [    0.011204] PM: hibernation: Registered nosave memory: [mem 0xcb0ef000-0xcc60bfff]
Oct 19 23:05:39 kernel: [    0.011205] PM: hibernation: Registered nosave memory: [mem 0xcc60c000-0xcc627fff]
Oct 19 23:05:39 kernel: [    0.011205] PM: hibernation: Registered nosave memory: [mem 0xcc628000-0xcc628fff]
Oct 19 23:05:39 kernel: [    0.011206] PM: hibernation: Registered nosave memory: [mem 0xcc629000-0xcc657fff]
Oct 19 23:05:39 kernel: [    0.011206] PM: hibernation: Registered nosave memory: [mem 0xcc658000-0xcc80bfff]
Oct 19 23:05:39 kernel: [    0.011207] PM: hibernation: Registered nosave memory: [mem 0xcc80c000-0xcd180fff]
Oct 19 23:05:39 kernel: [    0.011207] PM: hibernation: Registered nosave memory: [mem 0xcd181000-0xcd1fefff]
Oct 19 23:05:39 kernel: [    0.011208] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xcfffffff]
Oct 19 23:05:39 kernel: [    0.011209] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
Oct 19 23:05:39 kernel: [    0.011209] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
Oct 19 23:05:39 kernel: [    0.011210] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
Oct 19 23:05:39 kernel: [    0.011210] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
Oct 19 23:05:39 kernel: [    0.011211] [mem 0xd0000000-0xefffffff] available for PCI devices
Oct 19 23:05:39 kernel: [    0.011213] Booting paravirtualized kernel on bare hardware
Oct 19 23:05:39 kernel: [    0.011215] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Oct 19 23:05:39 kernel: [    0.014073] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
Oct 19 23:05:39 kernel: [    0.014652] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
Oct 19 23:05:39 kernel: [    0.014659] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
Oct 19 23:05:39 kernel: [    0.014661] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Oct 19 23:05:39 kernel: [    0.014691] Fallback order for Node 0: 0 
Oct 19 23:05:39 kernel: [    0.014694] Built 1 zonelists, mobility grouping on.  Total pages: 8107625
Oct 19 23:05:39 kernel: [    0.014695] Policy zone: Normal
Oct 19 23:05:39 kernel: [    0.014696] Kernel command line: BOOT_IMAGE=/install.amd/vmlinuz vga=788 --- quiet
Oct 19 23:05:39 kernel: [    0.014735] Unknown kernel command line parameters "--- BOOT_IMAGE=/install.amd/vmlinuz vga=788", will be passed to user space.
Oct 19 23:05:39 kernel: [    0.018057] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Oct 19 23:05:39 kernel: [    0.019729] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Oct 19 23:05:39 kernel: [    0.019778] mem auto-init: stack:off, heap alloc:on, heap free:off
Oct 19 23:05:39 kernel: [    0.047841] Memory: 3299024K/32945924K available (12294K kernel code, 2226K rwdata, 8704K rodata, 2724K init, 5424K bss, 777656K reserved, 0K cma-reserved)
Oct 19 23:05:39 kernel: [    0.048534] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Oct 19 23:05:39 kernel: [    0.048562] ftrace: allocating 39031 entries in 153 pages
Oct 19 23:05:39 kernel: [    0.053688] ftrace: allocated 153 pages with 4 groups
Oct 19 23:05:39 kernel: [    0.054208] Dynamic Preempt: voluntary
Oct 19 23:05:39 kernel: [    0.054271] rcu: Preemptible hierarchical RCU implementation.
Oct 19 23:05:39 kernel: [    0.054272] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
Oct 19 23:05:39 kernel: [    0.054273] 	Trampoline variant of Tasks RCU enabled.
Oct 19 23:05:39 kernel: [    0.054273] 	Rude variant of Tasks RCU enabled.
Oct 19 23:05:39 kernel: [    0.054274] 	Tracing variant of Tasks RCU enabled.
Oct 19 23:05:39 kernel: [    0.054274] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Oct 19 23:05:39 kernel: [    0.054275] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Oct 19 23:05:39 kernel: [    0.057392] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
Oct 19 23:05:39 kernel: [    0.057560] rcu: srcu_init: Setting srcu_struct sizes based on contention.
Oct 19 23:05:39 kernel: [    0.057606] random: crng init done
Oct 19 23:05:39 kernel: [    0.057625] Console: colour dummy device 80x25
Oct 19 23:05:39 kernel: [    0.057635] printk: console [tty0] enabled
Oct 19 23:05:39 kernel: [    0.057649] ACPI: Core revision 20220331
Oct 19 23:05:39 kernel: [    0.057811] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Oct 19 23:05:39 kernel: [    0.057828] APIC: Switch to symmetric I/O mode setup
Oct 19 23:05:39 kernel: [    0.058459] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
Oct 19 23:05:39 kernel: [    0.058460] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
Oct 19 23:05:39 kernel: [    0.058461] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
Oct 19 23:05:39 kernel: [    0.058462] AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
Oct 19 23:05:39 kernel: [    0.058699] Switched APIC routing to physical flat.
Oct 19 23:05:39 kernel: [    0.059273] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 19 23:05:39 kernel: [    0.077830] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f7a98c406a, max_idle_ns: 440795202126 ns
Oct 19 23:05:39 kernel: [    0.077840] Calibrating delay loop (skipped), value calculated using timer frequency.. 6587.69 BogoMIPS (lpj=13175392)
Oct 19 23:05:39 kernel: [    0.077842] pid_max: default: 32768 minimum: 301
Oct 19 23:05:39 kernel: [    0.080812] LSM: Security Framework initializing
Oct 19 23:05:39 kernel: [    0.080831] landlock: Up and running.
Oct 19 23:05:39 kernel: [    0.080831] Yama: disabled by default; enable with sysctl kernel.yama.*
Oct 19 23:05:39 kernel: [    0.080863] AppArmor: AppArmor initialized
Oct 19 23:05:39 kernel: [    0.080865] TOMOYO Linux initialized
Oct 19 23:05:39 kernel: [    0.080872] LSM support for eBPF active
Oct 19 23:05:39 kernel: [    0.080990] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Oct 19 23:05:39 kernel: [    0.081092] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Oct 19 23:05:39 kernel: [    0.081382] x86/cpu: User Mode Instruction Prevention (UMIP) activated
Oct 19 23:05:39 kernel: [    0.081440] LVT offset 1 assigned for vector 0xf9
Oct 19 23:05:39 kernel: [    0.081542] LVT offset 2 assigned for vector 0xf4
Oct 19 23:05:39 kernel: [    0.081568] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Oct 19 23:05:39 kernel: [    0.081568] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
Oct 19 23:05:39 kernel: [    0.081575] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Oct 19 23:05:39 kernel: [    0.081577] Spectre V2 : Mitigation: Retpolines
Oct 19 23:05:39 kernel: [    0.081577] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Oct 19 23:05:39 kernel: [    0.081578] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Oct 19 23:05:39 kernel: [    0.081579] Spectre V2 : Enabling Speculation Barrier for firmware calls
Oct 19 23:05:39 kernel: [    0.081579] RETBleed: Mitigation: untrained return thunk
Oct 19 23:05:39 kernel: [    0.081580] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Oct 19 23:05:39 kernel: [    0.081581] Spectre V2 : Selecting STIBP always-on mode to complement retbleed mitigation
Oct 19 23:05:39 kernel: [    0.081582] Spectre V2 : User space: Mitigation: STIBP always-on protection
Oct 19 23:05:39 kernel: [    0.081583] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Oct 19 23:05:39 kernel: [    0.086642] Freeing SMP alternatives memory: 32K
Oct 19 23:05:39 kernel: [    0.195152] smpboot: CPU0: AMD Ryzen 9 4900H with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)
Oct 19 23:05:39 kernel: [    0.195267] cblist_init_generic: Setting adjustable number of callback queues.
Oct 19 23:05:39 kernel: [    0.195271] cblist_init_generic: Setting shift to 4 and lim to 1.
Oct 19 23:05:39 kernel: [    0.195287] cblist_init_generic: Setting shift to 4 and lim to 1.
Oct 19 23:05:39 kernel: [    0.195298] cblist_init_generic: Setting shift to 4 and lim to 1.
Oct 19 23:05:39 kernel: [    0.195311] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Oct 19 23:05:39 kernel: [    0.195318] ... version:                0
Oct 19 23:05:39 kernel: [    0.195318] ... bit width:              48
Oct 19 23:05:39 kernel: [    0.195319] ... generic registers:      6
Oct 19 23:05:39 kernel: [    0.195319] ... value mask:             0000ffffffffffff
Oct 19 23:05:39 kernel: [    0.195320] ... max period:             00007fffffffffff
Oct 19 23:05:39 kernel: [    0.195321] ... fixed-purpose events:   0
Oct 19 23:05:39 kernel: [    0.195321] ... event mask:             000000000000003f
Oct 19 23:05:39 kernel: [    0.195390] rcu: Hierarchical SRCU implementation.
Oct 19 23:05:39 kernel: [    0.195391] rcu: 	Max phase no-delay instances is 1000.
Oct 19 23:05:39 kernel: [    0.195735] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Oct 19 23:05:39 kernel: [    0.195865] smp: Bringing up secondary CPUs ...
Oct 19 23:05:39 kernel: [    0.195936] x86: Booting SMP configuration:
Oct 19 23:05:39 kernel: [    0.195937] .... node  #0, CPUs:        #1
Oct 19 23:05:39 kernel: [    0.197835] Spectre V2 : Update user space SMT mitigation: STIBP always-on
Oct 19 23:05:39 kernel: [    0.197835]   #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
Oct 19 23:05:39 kernel: [    0.228042] smp: Brought up 1 node, 16 CPUs
Oct 19 23:05:39 kernel: [    0.228042] smpboot: Max logical packages: 1
Oct 19 23:05:39 kernel: [    0.228042] smpboot: Total of 16 processors activated (105403.13 BogoMIPS)
Oct 19 23:05:39 kernel: [    0.265857] node 0 deferred pages initialised in 36ms
Oct 19 23:05:39 kernel: [    0.266637] devtmpfs: initialized
Oct 19 23:05:39 kernel: [    0.266637] x86/mm: Memory block size: 128MB
Oct 19 23:05:39 kernel: [    0.267415] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
Oct 19 23:05:39 kernel: [    0.267415] ACPI: PM: Registering ACPI NVS region [mem 0xcc658000-0xcc80bfff] (1785856 bytes)
Oct 19 23:05:39 kernel: [    0.267415] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Oct 19 23:05:39 kernel: [    0.267415] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Oct 19 23:05:39 kernel: [    0.267415] pinctrl core: initialized pinctrl subsystem
Oct 19 23:05:39 kernel: [    0.269868] NET: Registered PF_NETLINK/PF_ROUTE protocol family
Oct 19 23:05:39 kernel: [    0.270250] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Oct 19 23:05:39 kernel: [    0.270607] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Oct 19 23:05:39 kernel: [    0.270956] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Oct 19 23:05:39 kernel: [    0.270972] audit: initializing netlink subsys (disabled)
Oct 19 23:05:39 kernel: [    0.270988] audit: type=2000 audit(1666220733.212:1): state=initialized audit_enabled=0 res=1
Oct 19 23:05:39 kernel: [    0.270988] thermal_sys: Registered thermal governor 'fair_share'
Oct 19 23:05:39 kernel: [    0.270988] thermal_sys: Registered thermal governor 'bang_bang'
Oct 19 23:05:39 kernel: [    0.270988] thermal_sys: Registered thermal governor 'step_wise'
Oct 19 23:05:39 kernel: [    0.270988] thermal_sys: Registered thermal governor 'user_space'
Oct 19 23:05:39 kernel: [    0.270988] thermal_sys: Registered thermal governor 'power_allocator'
Oct 19 23:05:39 kernel: [    0.270988] cpuidle: using governor ladder
Oct 19 23:05:39 kernel: [    0.270988] cpuidle: using governor menu
Oct 19 23:05:39 kernel: [    0.270988] HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB
Oct 19 23:05:39 kernel: [    0.270988] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 19 23:05:39 kernel: [    0.270988] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
Oct 19 23:05:39 kernel: [    0.270988] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
Oct 19 23:05:39 kernel: [    0.270988] PCI: Using configuration type 1 for base access
Oct 19 23:05:39 kernel: [    0.270988] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Oct 19 23:05:39 kernel: [    0.270988] HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB
Oct 19 23:05:39 kernel: [    0.270988] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Oct 19 23:05:39 kernel: [    0.270988] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Oct 19 23:05:39 kernel: [    0.273993] ACPI: Added _OSI(Module Device)
Oct 19 23:05:39 kernel: [    0.273997] ACPI: Added _OSI(Processor Device)
Oct 19 23:05:39 kernel: [    0.273999] ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 19 23:05:39 kernel: [    0.274001] ACPI: Added _OSI(Processor Aggregator Device)
Oct 19 23:05:39 kernel: [    0.274003] ACPI: Added _OSI(Linux-Dell-Video)
Oct 19 23:05:39 kernel: [    0.274005] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Oct 19 23:05:39 kernel: [    0.274007] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Oct 19 23:05:39 kernel: [    0.276511] ACPI: 10 ACPI AML tables successfully acquired and loaded
Oct 19 23:05:39 kernel: [    0.277480] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Oct 19 23:05:39 kernel: [    0.282279] ACPI: Interpreter enabled
Oct 19 23:05:39 kernel: [    0.282291] ACPI: PM: (supports S0 S3 S4 S5)
Oct 19 23:05:39 kernel: [    0.282292] ACPI: Using IOAPIC for interrupt routing
Oct 19 23:05:39 kernel: [    0.282434] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 19 23:05:39 kernel: [    0.282435] PCI: Using E820 reservations for host bridge windows
Oct 19 23:05:39 kernel: [    0.282734] ACPI: Enabled 5 GPEs in block 00 to 1F
Oct 19 23:05:39 kernel: [    0.284078] ACPI: PM: Power Resource [P0S0]
Oct 19 23:05:39 kernel: [    0.284095] ACPI: PM: Power Resource [P3S0]
Oct 19 23:05:39 kernel: [    0.284146] ACPI: PM: Power Resource [P0S1]
Oct 19 23:05:39 kernel: [    0.284161] ACPI: PM: Power Resource [P3S1]
Oct 19 23:05:39 kernel: [    0.288498] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 19 23:05:39 kernel: [    0.288503] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Oct 19 23:05:39 kernel: [    0.288550] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
Oct 19 23:05:39 kernel: [    0.288633] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Oct 19 23:05:39 kernel: [    0.288639] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
Oct 19 23:05:39 kernel: [    0.288846] PCI host bridge to bus 0000:00
Oct 19 23:05:39 kernel: [    0.288847] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Oct 19 23:05:39 kernel: [    0.288849] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Oct 19 23:05:39 kernel: [    0.288850] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Oct 19 23:05:39 kernel: [    0.288851] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Oct 19 23:05:39 kernel: [    0.288851] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
Oct 19 23:05:39 kernel: [    0.288852] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]
Oct 19 23:05:39 kernel: [    0.288853] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
Oct 19 23:05:39 kernel: [    0.288854] pci_bus 0000:00: root bus resource [bus 00-ff]
Oct 19 23:05:39 kernel: [    0.288865] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.288933] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
Oct 19 23:05:39 kernel: [    0.289003] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.289056] pci 0000:00:01.2: [1022:1634] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289109] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289172] pci 0000:00:01.3: [1022:1634] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289192] pci 0000:00:01.3: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.289225] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289287] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.289337] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289387] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289447] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289467] pci 0000:00:02.2: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.289499] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289561] pci 0000:00:02.3: [1022:1634] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289581] pci 0000:00:02.3: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.289613] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289682] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.289731] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289750] pci 0000:00:08.1: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.289776] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289833] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400
Oct 19 23:05:39 kernel: [    0.289853] pci 0000:00:08.2: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.289879] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.289953] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
Oct 19 23:05:39 kernel: [    0.290051] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
Oct 19 23:05:39 kernel: [    0.290154] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290188] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290222] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290254] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290285] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290316] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290347] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290379] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000
Oct 19 23:05:39 kernel: [    0.290498] pci 0000:01:00.0: [2646:500d] type 00 class 0x010802
Oct 19 23:05:39 kernel: [    0.290515] pci 0000:01:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit]
Oct 19 23:05:39 kernel: [    0.290720] pci 0000:00:01.2: PCI bridge to [bus 01]
Oct 19 23:05:39 kernel: [    0.290723] pci 0000:00:01.2:   bridge window [mem 0xfcf00000-0xfcffffff]
Oct 19 23:05:39 kernel: [    0.290765] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
Oct 19 23:05:39 kernel: [    0.290780] pci 0000:02:00.0: reg 0x10: [io  0xf000-0xf0ff]
Oct 19 23:05:39 kernel: [    0.290802] pci 0000:02:00.0: reg 0x18: [mem 0xfce04000-0xfce04fff 64bit]
Oct 19 23:05:39 kernel: [    0.290815] pci 0000:02:00.0: reg 0x20: [mem 0xfce00000-0xfce03fff 64bit]
Oct 19 23:05:39 kernel: [    0.290899] pci 0000:02:00.0: supports D1 D2
Oct 19 23:05:39 kernel: [    0.290900] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.291003] pci 0000:00:01.3: PCI bridge to [bus 02]
Oct 19 23:05:39 kernel: [    0.291005] pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
Oct 19 23:05:39 kernel: [    0.291007] pci 0000:00:01.3:   bridge window [mem 0xfce00000-0xfcefffff]
Oct 19 23:05:39 kernel: [    0.291048] pci 0000:03:00.0: [14c3:0608] type 00 class 0x028000
Oct 19 23:05:39 kernel: [    0.291065] pci 0000:03:00.0: reg 0x10: [mem 0xe0300000-0xe03fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.291076] pci 0000:03:00.0: reg 0x18: [mem 0xe0400000-0xe0403fff 64bit pref]
Oct 19 23:05:39 kernel: [    0.291087] pci 0000:03:00.0: reg 0x20: [mem 0xe0404000-0xe0404fff 64bit pref]
Oct 19 23:05:39 kernel: [    0.291156] pci 0000:03:00.0: supports D1 D2
Oct 19 23:05:39 kernel: [    0.291157] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.291250] pci 0000:00:02.1: PCI bridge to [bus 03]
Oct 19 23:05:39 kernel: [    0.291256] pci 0000:00:02.1:   bridge window [mem 0xe0300000-0xe04fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.291309] pci 0000:04:00.0: [8086:15f3] type 00 class 0x020000
Oct 19 23:05:39 kernel: [    0.291323] pci 0000:04:00.0: reg 0x10: [mem 0xfca00000-0xfcafffff]
Oct 19 23:05:39 kernel: [    0.291345] pci 0000:04:00.0: reg 0x1c: [mem 0xfcb00000-0xfcb03fff]
Oct 19 23:05:39 kernel: [    0.291367] pci 0000:04:00.0: reg 0x30: [mem 0xfc900000-0xfc9fffff pref]
Oct 19 23:05:39 kernel: [    0.291434] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.291522] pci 0000:00:02.2: PCI bridge to [bus 04]
Oct 19 23:05:39 kernel: [    0.291525] pci 0000:00:02.2:   bridge window [mem 0xfc900000-0xfcbfffff]
Oct 19 23:05:39 kernel: [    0.291567] pci 0000:05:00.0: [1106:3483] type 00 class 0x0c0330
Oct 19 23:05:39 kernel: [    0.291582] pci 0000:05:00.0: reg 0x10: [mem 0xfcd00000-0xfcd00fff 64bit]
Oct 19 23:05:39 kernel: [    0.291648] pci 0000:05:00.0: PME# supported from D0 D3cold
Oct 19 23:05:39 kernel: [    0.291703] pci 0000:00:02.3: PCI bridge to [bus 05]
Oct 19 23:05:39 kernel: [    0.291707] pci 0000:00:02.3:   bridge window [mem 0xfcd00000-0xfcdfffff]
Oct 19 23:05:39 kernel: [    0.291758] pci 0000:06:00.0: [1002:1636] type 00 class 0x030000
Oct 19 23:05:39 kernel: [    0.291768] pci 0000:06:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.291775] pci 0000:06:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.291780] pci 0000:06:00.0: reg 0x20: [io  0xe000-0xe0ff]
Oct 19 23:05:39 kernel: [    0.291784] pci 0000:06:00.0: reg 0x24: [mem 0xfc800000-0xfc87ffff]
Oct 19 23:05:39 kernel: [    0.291792] pci 0000:06:00.0: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.291801] pci 0000:06:00.0: BAR 0: assigned to efifb
Oct 19 23:05:39 kernel: [    0.291835] pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.291866] pci 0000:06:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Oct 19 23:05:39 kernel: [    0.291903] pci 0000:06:00.1: [1002:1637] type 00 class 0x040300
Oct 19 23:05:39 kernel: [    0.291910] pci 0000:06:00.1: reg 0x10: [mem 0xfc8c8000-0xfc8cbfff]
Oct 19 23:05:39 kernel: [    0.291929] pci 0000:06:00.1: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.291954] pci 0000:06:00.1: PME# supported from D1 D2 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.291997] pci 0000:06:00.2: [1022:15df] type 00 class 0x108000
Oct 19 23:05:39 kernel: [    0.292009] pci 0000:06:00.2: reg 0x18: [mem 0xfc700000-0xfc7fffff]
Oct 19 23:05:39 kernel: [    0.292018] pci 0000:06:00.2: reg 0x24: [mem 0xfc8ce000-0xfc8cffff]
Oct 19 23:05:39 kernel: [    0.292025] pci 0000:06:00.2: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292092] pci 0000:06:00.3: [1022:1639] type 00 class 0x0c0330
Oct 19 23:05:39 kernel: [    0.292103] pci 0000:06:00.3: reg 0x10: [mem 0xfc600000-0xfc6fffff 64bit]
Oct 19 23:05:39 kernel: [    0.292125] pci 0000:06:00.3: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292151] pci 0000:06:00.3: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.292196] pci 0000:06:00.4: [1022:1639] type 00 class 0x0c0330
Oct 19 23:05:39 kernel: [    0.292206] pci 0000:06:00.4: reg 0x10: [mem 0xfc500000-0xfc5fffff 64bit]
Oct 19 23:05:39 kernel: [    0.292227] pci 0000:06:00.4: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292254] pci 0000:06:00.4: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.292299] pci 0000:06:00.5: [1022:15e2] type 00 class 0x048000
Oct 19 23:05:39 kernel: [    0.292306] pci 0000:06:00.5: reg 0x10: [mem 0xfc880000-0xfc8bffff]
Oct 19 23:05:39 kernel: [    0.292325] pci 0000:06:00.5: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292350] pci 0000:06:00.5: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.292391] pci 0000:06:00.6: [1022:15e3] type 00 class 0x040300
Oct 19 23:05:39 kernel: [    0.292398] pci 0000:06:00.6: reg 0x10: [mem 0xfc8c0000-0xfc8c7fff]
Oct 19 23:05:39 kernel: [    0.292417] pci 0000:06:00.6: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292441] pci 0000:06:00.6: PME# supported from D0 D3hot D3cold
Oct 19 23:05:39 kernel: [    0.292483] pci 0000:06:00.7: [1022:15e4] type 00 class 0x118000
Oct 19 23:05:39 kernel: [    0.292495] pci 0000:06:00.7: reg 0x18: [mem 0xfc400000-0xfc4fffff]
Oct 19 23:05:39 kernel: [    0.292503] pci 0000:06:00.7: reg 0x24: [mem 0xfc8cc000-0xfc8cdfff]
Oct 19 23:05:39 kernel: [    0.292510] pci 0000:06:00.7: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292594] pci 0000:00:08.1: PCI bridge to [bus 06]
Oct 19 23:05:39 kernel: [    0.292597] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
Oct 19 23:05:39 kernel: [    0.292598] pci 0000:00:08.1:   bridge window [mem 0xfc400000-0xfc8fffff]
Oct 19 23:05:39 kernel: [    0.292601] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.292633] pci 0000:07:00.0: [1022:7901] type 00 class 0x010601
Oct 19 23:05:39 kernel: [    0.292659] pci 0000:07:00.0: reg 0x24: [mem 0xfcc01000-0xfcc017ff]
Oct 19 23:05:39 kernel: [    0.292666] pci 0000:07:00.0: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292722] pci 0000:07:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Oct 19 23:05:39 kernel: [    0.292756] pci 0000:07:00.1: [1022:7901] type 00 class 0x010601
Oct 19 23:05:39 kernel: [    0.292781] pci 0000:07:00.1: reg 0x24: [mem 0xfcc00000-0xfcc007ff]
Oct 19 23:05:39 kernel: [    0.292789] pci 0000:07:00.1: enabling Extended Tags
Oct 19 23:05:39 kernel: [    0.292861] pci 0000:00:08.2: PCI bridge to [bus 07]
Oct 19 23:05:39 kernel: [    0.292864] pci 0000:00:08.2:   bridge window [mem 0xfcc00000-0xfccfffff]
Oct 19 23:05:39 kernel: [    0.293181] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293212] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293238] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293270] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293299] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293323] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293347] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.293370] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Oct 19 23:05:39 kernel: [    0.294440] iommu: Default domain type: Translated 
Oct 19 23:05:39 kernel: [    0.294440] iommu: DMA domain TLB invalidation policy: lazy mode 
Oct 19 23:05:39 kernel: [    0.294440] EDAC MC: Ver: 3.0.0
Oct 19 23:05:39 kernel: [    0.294440] Registered efivars operations
Oct 19 23:05:39 kernel: [    0.294440] NetLabel: Initializing
Oct 19 23:05:39 kernel: [    0.294440] NetLabel:  domain hash size = 128
Oct 19 23:05:39 kernel: [    0.294440] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Oct 19 23:05:39 kernel: [    0.294440] NetLabel:  unlabeled traffic allowed by default
Oct 19 23:05:39 kernel: [    0.294440] PCI: Using ACPI for IRQ routing
Oct 19 23:05:39 kernel: [    0.299135] PCI: pci_cache_line_size set to 64 bytes
Oct 19 23:05:39 kernel: [    0.299267] Expanded resource Reserved due to conflict with PCI Bus 0000:00
Oct 19 23:05:39 kernel: [    0.299268] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]
Oct 19 23:05:39 kernel: [    0.299270] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
Oct 19 23:05:39 kernel: [    0.299270] e820: reserve RAM buffer [mem 0xc70de000-0xc7ffffff]
Oct 19 23:05:39 kernel: [    0.299271] e820: reserve RAM buffer [mem 0xc805b000-0xcbffffff]
Oct 19 23:05:39 kernel: [    0.299272] e820: reserve RAM buffer [mem 0xca556000-0xcbffffff]
Oct 19 23:05:39 kernel: [    0.299272] e820: reserve RAM buffer [mem 0xcb0ef000-0xcbffffff]
Oct 19 23:05:39 kernel: [    0.299273] e820: reserve RAM buffer [mem 0xce000000-0xcfffffff]
Oct 19 23:05:39 kernel: [    0.299273] e820: reserve RAM buffer [mem 0x80f340000-0x80fffffff]
Oct 19 23:05:39 kernel: [    0.299283] pci 0000:06:00.0: vgaarb: setting as boot VGA device
Oct 19 23:05:39 kernel: [    0.299283] pci 0000:06:00.0: vgaarb: bridge control possible
Oct 19 23:05:39 kernel: [    0.299283] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Oct 19 23:05:39 kernel: [    0.299283] vgaarb: loaded
Oct 19 23:05:39 kernel: [    0.299283] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Oct 19 23:05:39 kernel: [    0.299283] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Oct 19 23:05:39 kernel: [    0.301841] clocksource: Switched to clocksource tsc-early
Oct 19 23:05:39 kernel: [    0.307993] VFS: Disk quotas dquot_6.6.0
Oct 19 23:05:39 kernel: [    0.308004] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 19 23:05:39 kernel: [    0.308105] AppArmor: AppArmor Filesystem Enabled
Oct 19 23:05:39 kernel: [    0.308118] pnp: PnP ACPI init
Oct 19 23:05:39 kernel: [    0.308225] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
Oct 19 23:05:39 kernel: [    0.308395] system 00:02: [io  0x0a00-0x0a1f] has been reserved
Oct 19 23:05:39 kernel: [    0.308397] system 00:02: [io  0x0a20-0x0a2f] has been reserved
Oct 19 23:05:39 kernel: [    0.308398] system 00:02: [io  0x0a30-0x0a3f] has been reserved
Oct 19 23:05:39 kernel: [    0.308524] system 00:03: [io  0x04d0-0x04d1] has been reserved
Oct 19 23:05:39 kernel: [    0.308526] system 00:03: [io  0x040b] has been reserved
Oct 19 23:05:39 kernel: [    0.308526] system 00:03: [io  0x04d6] has been reserved
Oct 19 23:05:39 kernel: [    0.308527] system 00:03: [io  0x0c00-0x0c01] has been reserved
Oct 19 23:05:39 kernel: [    0.308528] system 00:03: [io  0x0c14] has been reserved
Oct 19 23:05:39 kernel: [    0.308529] system 00:03: [io  0x0c50-0x0c51] has been reserved
Oct 19 23:05:39 kernel: [    0.308530] system 00:03: [io  0x0c52] has been reserved
Oct 19 23:05:39 kernel: [    0.308531] system 00:03: [io  0x0c6c] has been reserved
Oct 19 23:05:39 kernel: [    0.308532] system 00:03: [io  0x0c6f] has been reserved
Oct 19 23:05:39 kernel: [    0.308532] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
Oct 19 23:05:39 kernel: [    0.308533] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
Oct 19 23:05:39 kernel: [    0.308534] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
Oct 19 23:05:39 kernel: [    0.308535] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
Oct 19 23:05:39 kernel: [    0.308536] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
Oct 19 23:05:39 kernel: [    0.308537] system 00:03: [io  0x0800-0x089f] has been reserved
Oct 19 23:05:39 kernel: [    0.308538] system 00:03: [io  0x0b00-0x0b0f] has been reserved
Oct 19 23:05:39 kernel: [    0.308538] system 00:03: [io  0x0b20-0x0b3f] has been reserved
Oct 19 23:05:39 kernel: [    0.308539] system 00:03: [io  0x0900-0x090f] has been reserved
Oct 19 23:05:39 kernel: [    0.308540] system 00:03: [io  0x0910-0x091f] has been reserved
Oct 19 23:05:39 kernel: [    0.308541] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
Oct 19 23:05:39 kernel: [    0.308542] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
Oct 19 23:05:39 kernel: [    0.308544] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
Oct 19 23:05:39 kernel: [    0.308545] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
Oct 19 23:05:39 kernel: [    0.308546] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
Oct 19 23:05:39 kernel: [    0.308547] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
Oct 19 23:05:39 kernel: [    0.308548] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
Oct 19 23:05:39 kernel: [    0.308860] pnp: PnP ACPI: found 5 devices
Oct 19 23:05:39 kernel: [    0.316231] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Oct 19 23:05:39 kernel: [    0.316347] NET: Registered PF_INET protocol family
Oct 19 23:05:39 kernel: [    0.316600] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319020] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319054] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319219] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319479] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319542] TCP: Hash tables configured (established 262144 bind 65536)
Oct 19 23:05:39 kernel: [    0.319678] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319755] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319826] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Oct 19 23:05:39 kernel: [    0.319902] NET: Registered PF_UNIX/PF_LOCAL protocol family
Oct 19 23:05:39 kernel: [    0.319906] NET: Registered PF_XDP protocol family
Oct 19 23:05:39 kernel: [    0.319925] pci 0000:00:01.2: PCI bridge to [bus 01]
Oct 19 23:05:39 kernel: [    0.319930] pci 0000:00:01.2:   bridge window [mem 0xfcf00000-0xfcffffff]
Oct 19 23:05:39 kernel: [    0.319934] pci 0000:00:01.3: PCI bridge to [bus 02]
Oct 19 23:05:39 kernel: [    0.319936] pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
Oct 19 23:05:39 kernel: [    0.319938] pci 0000:00:01.3:   bridge window [mem 0xfce00000-0xfcefffff]
Oct 19 23:05:39 kernel: [    0.319942] pci 0000:00:02.1: PCI bridge to [bus 03]
Oct 19 23:05:39 kernel: [    0.319945] pci 0000:00:02.1:   bridge window [mem 0xe0300000-0xe04fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.319949] pci 0000:00:02.2: PCI bridge to [bus 04]
Oct 19 23:05:39 kernel: [    0.319951] pci 0000:00:02.2:   bridge window [mem 0xfc900000-0xfcbfffff]
Oct 19 23:05:39 kernel: [    0.319954] pci 0000:00:02.3: PCI bridge to [bus 05]
Oct 19 23:05:39 kernel: [    0.319956] pci 0000:00:02.3:   bridge window [mem 0xfcd00000-0xfcdfffff]
Oct 19 23:05:39 kernel: [    0.319962] pci 0000:00:08.1: PCI bridge to [bus 06]
Oct 19 23:05:39 kernel: [    0.319963] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
Oct 19 23:05:39 kernel: [    0.319965] pci 0000:00:08.1:   bridge window [mem 0xfc400000-0xfc8fffff]
Oct 19 23:05:39 kernel: [    0.319966] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.319969] pci 0000:00:08.2: PCI bridge to [bus 07]
Oct 19 23:05:39 kernel: [    0.319971] pci 0000:00:08.2:   bridge window [mem 0xfcc00000-0xfccfffff]
Oct 19 23:05:39 kernel: [    0.319976] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
Oct 19 23:05:39 kernel: [    0.319977] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
Oct 19 23:05:39 kernel: [    0.319978] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Oct 19 23:05:39 kernel: [    0.319979] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Oct 19 23:05:39 kernel: [    0.319980] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
Oct 19 23:05:39 kernel: [    0.319981] pci_bus 0000:00: resource 9 [mem 0xd0000000-0xfebfffff window]
Oct 19 23:05:39 kernel: [    0.319982] pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
Oct 19 23:05:39 kernel: [    0.319983] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
Oct 19 23:05:39 kernel: [    0.319984] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
Oct 19 23:05:39 kernel: [    0.319985] pci_bus 0000:02: resource 1 [mem 0xfce00000-0xfcefffff]
Oct 19 23:05:39 kernel: [    0.319986] pci_bus 0000:03: resource 2 [mem 0xe0300000-0xe04fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.319987] pci_bus 0000:04: resource 1 [mem 0xfc900000-0xfcbfffff]
Oct 19 23:05:39 kernel: [    0.319988] pci_bus 0000:05: resource 1 [mem 0xfcd00000-0xfcdfffff]
Oct 19 23:05:39 kernel: [    0.319989] pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
Oct 19 23:05:39 kernel: [    0.319990] pci_bus 0000:06: resource 1 [mem 0xfc400000-0xfc8fffff]
Oct 19 23:05:39 kernel: [    0.319990] pci_bus 0000:06: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
Oct 19 23:05:39 kernel: [    0.319992] pci_bus 0000:07: resource 1 [mem 0xfcc00000-0xfccfffff]
Oct 19 23:05:39 kernel: [    0.320246] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0
Oct 19 23:05:39 kernel: [    0.320256] pci 0000:06:00.3: extending delay after power-on from D3hot to 20 msec
Oct 19 23:05:39 kernel: [    0.320351] pci 0000:06:00.4: extending delay after power-on from D3hot to 20 msec
Oct 19 23:05:39 kernel: [    0.320397] PCI: CLS 64 bytes, default 64
Oct 19 23:05:39 kernel: [    0.320407] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
Oct 19 23:05:39 kernel: [    0.320436] pci 0000:00:00.2: can't derive routing for PCI INT A
Oct 19 23:05:39 kernel: [    0.320436] pci 0000:00:00.2: PCI INT A: not connected
Oct 19 23:05:39 kernel: [    0.320453] pci 0000:00:01.0: Adding to iommu group 0
Oct 19 23:05:39 kernel: [    0.320460] pci 0000:00:01.2: Adding to iommu group 1
Oct 19 23:05:39 kernel: [    0.320467] pci 0000:00:01.3: Adding to iommu group 2
Oct 19 23:05:39 kernel: [    0.320477] pci 0000:00:02.0: Adding to iommu group 3
Oct 19 23:05:39 kernel: [    0.320479] Trying to unpack rootfs image as initramfs...
Oct 19 23:05:39 kernel: [    0.320485] pci 0000:00:02.1: Adding to iommu group 4
Oct 19 23:05:39 kernel: [    0.320492] pci 0000:00:02.2: Adding to iommu group 5
Oct 19 23:05:39 kernel: [    0.320500] pci 0000:00:02.3: Adding to iommu group 6
Oct 19 23:05:39 kernel: [    0.320515] pci 0000:00:08.0: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320522] pci 0000:00:08.1: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320527] pci 0000:00:08.2: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320538] pci 0000:00:14.0: Adding to iommu group 8
Oct 19 23:05:39 kernel: [    0.320544] pci 0000:00:14.3: Adding to iommu group 8
Oct 19 23:05:39 kernel: [    0.320569] pci 0000:00:18.0: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320574] pci 0000:00:18.1: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320581] pci 0000:00:18.2: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320587] pci 0000:00:18.3: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320593] pci 0000:00:18.4: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320599] pci 0000:00:18.5: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320605] pci 0000:00:18.6: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320611] pci 0000:00:18.7: Adding to iommu group 9
Oct 19 23:05:39 kernel: [    0.320618] pci 0000:01:00.0: Adding to iommu group 10
Oct 19 23:05:39 kernel: [    0.320625] pci 0000:02:00.0: Adding to iommu group 11
Oct 19 23:05:39 kernel: [    0.320632] pci 0000:03:00.0: Adding to iommu group 12
Oct 19 23:05:39 kernel: [    0.320640] pci 0000:04:00.0: Adding to iommu group 13
Oct 19 23:05:39 kernel: [    0.320646] pci 0000:05:00.0: Adding to iommu group 14
Oct 19 23:05:39 kernel: [    0.320653] pci 0000:06:00.0: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320656] pci 0000:06:00.1: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320659] pci 0000:06:00.2: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320662] pci 0000:06:00.3: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320665] pci 0000:06:00.4: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320668] pci 0000:06:00.5: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320671] pci 0000:06:00.6: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320674] pci 0000:06:00.7: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320677] pci 0000:07:00.0: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.320680] pci 0000:07:00.1: Adding to iommu group 7
Oct 19 23:05:39 kernel: [    0.322123] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
Oct 19 23:05:39 kernel: [    0.322126] AMD-Vi: Extended features (0x206d73ef22254ade): PPR X2APIC NX GT IA GA PC GA_vAPIC
Oct 19 23:05:39 kernel: [    0.322130] AMD-Vi: Interrupt remapping enabled
Oct 19 23:05:39 kernel: [    0.322131] AMD-Vi: Virtual APIC enabled
Oct 19 23:05:39 kernel: [    0.322131] AMD-Vi: X2APIC enabled
Oct 19 23:05:39 kernel: [    0.322324] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 19 23:05:39 kernel: [    0.322326] software IO TLB: mapped [mem 0x00000000c30ab000-0x00000000c70ab000] (64MB)
Oct 19 23:05:39 kernel: [    0.322355] LVT offset 0 assigned for vector 0x400
Oct 19 23:05:39 kernel: [    0.322820] perf: AMD IBS detected (0x000003ff)
Oct 19 23:05:39 kernel: [    0.322824] amd_uncore: 4  amd_df counters detected
Oct 19 23:05:39 kernel: [    0.322827] amd_uncore: 6  amd_l3 counters detected
Oct 19 23:05:39 kernel: [    0.323428] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
Oct 19 23:05:39 kernel: [    0.323878] Initialise system trusted keyrings
Oct 19 23:05:39 kernel: [    0.323885] Key type blacklist registered
Oct 19 23:05:39 kernel: [    0.323950] workingset: timestamp_bits=36 max_order=23 bucket_order=0
Oct 19 23:05:39 kernel: [    0.324724] zbud: loaded
Oct 19 23:05:39 kernel: [    0.324905] integrity: Platform Keyring initialized
Oct 19 23:05:39 kernel: [    0.324906] Key type asymmetric registered
Oct 19 23:05:39 kernel: [    0.324907] Asymmetric key parser 'x509' registered
Oct 19 23:05:39 kernel: [    0.548750] Freeing initrd memory: 23260K
Oct 19 23:05:39 kernel: [    0.552299] alg: self-tests for CTR-KDF (hmac(sha256)) passed
Oct 19 23:05:39 kernel: [    0.552328] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
Oct 19 23:05:39 kernel: [    0.552436] io scheduler mq-deadline registered
Oct 19 23:05:39 kernel: [    0.554455] pcieport 0000:00:01.2: PME: Signaling with IRQ 26
Oct 19 23:05:39 kernel: [    0.554588] pcieport 0000:00:01.3: PME: Signaling with IRQ 27
Oct 19 23:05:39 kernel: [    0.554703] pcieport 0000:00:02.1: PME: Signaling with IRQ 28
Oct 19 23:05:39 kernel: [    0.554813] pcieport 0000:00:02.2: PME: Signaling with IRQ 29
Oct 19 23:05:39 kernel: [    0.554923] pcieport 0000:00:02.3: PME: Signaling with IRQ 30
Oct 19 23:05:39 kernel: [    0.555006] pcieport 0000:00:08.1: PME: Signaling with IRQ 31
Oct 19 23:05:39 kernel: [    0.555135] pcieport 0000:00:08.2: PME: Signaling with IRQ 32
Oct 19 23:05:39 kernel: [    0.555210] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 19 23:05:39 kernel: [    0.555261] Monitor-Mwait will be used to enter C-1 state
Oct 19 23:05:39 kernel: [    0.555282] ACPI: \_SB_.PLTF.P000: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.555289] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.555517] ACPI: \_SB_.PLTF.P001: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.555522] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.555686] ACPI: \_SB_.PLTF.P002: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.555692] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.555869] ACPI: \_SB_.PLTF.P003: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.555875] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.556053] ACPI: \_SB_.PLTF.P004: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.556059] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.556233] ACPI: \_SB_.PLTF.P005: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.556239] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.556415] ACPI: \_SB_.PLTF.P006: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.556420] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.556649] ACPI: \_SB_.PLTF.P007: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.556654] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.556837] ACPI: \_SB_.PLTF.P008: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.556843] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557021] ACPI: \_SB_.PLTF.P009: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557027] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557112] ACPI: \_SB_.PLTF.P00A: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557116] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557212] ACPI: \_SB_.PLTF.P00B: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557217] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557335] ACPI: \_SB_.PLTF.P00C: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557340] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557453] ACPI: \_SB_.PLTF.P00D: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557457] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557524] ACPI: \_SB_.PLTF.P00E: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557528] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557642] ACPI: \_SB_.PLTF.P00F: Found 3 idle states
Oct 19 23:05:39 kernel: [    0.557646] ACPI: FW issue: working around C-state latencies out of order
Oct 19 23:05:39 kernel: [    0.557900] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 19 23:05:39 kernel: [    0.557952] 00:04: ttyS0 at I/O 0x3f8 (irq = 3, base_baud = 115200) is a 16450
Oct 19 23:05:39 kernel: [    0.558991] Linux agpgart interface v0.103
Oct 19 23:05:39 kernel: [    0.617810] AMD-Vi: AMD IOMMUv2 loaded and initialized
Oct 19 23:05:39 kernel: [    0.618995] i8042: PNP: No PS/2 controller found.
Oct 19 23:05:39 kernel: [    0.618996] i8042: Probing ports directly.
Oct 19 23:05:39 kernel: [    0.619864] i8042: No controller found
Oct 19 23:05:39 kernel: [    0.619939] mousedev: PS/2 mouse device common for all mice
Oct 19 23:05:39 kernel: [    0.619969] rtc_cmos 00:01: RTC can wake from S4
Oct 19 23:05:39 kernel: [    0.620202] rtc_cmos 00:01: registered as rtc0
Oct 19 23:05:39 kernel: [    0.620231] rtc_cmos 00:01: setting system clock to 2022-10-19T23:05:34 UTC (1666220734)
Oct 19 23:05:39 kernel: [    0.620241] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Oct 19 23:05:39 kernel: [    0.620479] ledtrig-cpu: registered to indicate activity on CPUs
Oct 19 23:05:39 kernel: [    0.620579] efifb: probing for efifb
Oct 19 23:05:39 kernel: [    0.620585] efifb: framebuffer at 0xd0000000, using 1984k, total 1984k
Oct 19 23:05:39 kernel: [    0.620586] efifb: mode is 800x600x32, linelength=3328, pages=1
Oct 19 23:05:39 kernel: [    0.620587] efifb: scrolling: redraw
Oct 19 23:05:39 kernel: [    0.620587] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 19 23:05:39 kernel: [    0.620664] Console: switching to colour frame buffer device 100x37
Oct 19 23:05:39 kernel: [    0.620951] fb0: EFI VGA frame buffer device
Oct 19 23:05:39 kernel: [    0.627600] NET: Registered PF_INET6 protocol family
Oct 19 23:05:39 kernel: [    0.629898] Segment Routing with IPv6
Oct 19 23:05:39 kernel: [    0.629905] In-situ OAM (IOAM) with IPv6
Oct 19 23:05:39 kernel: [    0.629919] mip6: Mobile IPv6
Oct 19 23:05:39 kernel: [    0.629919] NET: Registered PF_PACKET protocol family
Oct 19 23:05:39 kernel: [    0.630003] mpls_gso: MPLS GSO support
Oct 19 23:05:39 kernel: [    0.631562] microcode: CPU0: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631569] microcode: CPU1: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631588] microcode: CPU2: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631598] microcode: CPU3: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631619] microcode: CPU4: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631629] microcode: CPU5: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631649] microcode: CPU6: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631659] microcode: CPU7: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631681] microcode: CPU8: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631692] microcode: CPU9: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631698] microcode: CPU10: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631704] microcode: CPU11: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631723] microcode: CPU12: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631733] microcode: CPU13: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631738] microcode: CPU14: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631744] microcode: CPU15: patch_level=0x08600106
Oct 19 23:05:39 kernel: [    0.631748] microcode: Microcode Update Driver: v2.2.
Oct 19 23:05:39 kernel: [    0.632032] resctrl: L3 allocation detected
Oct 19 23:05:39 kernel: [    0.632034] resctrl: MB allocation detected
Oct 19 23:05:39 kernel: [    0.632034] resctrl: L3 monitoring detected
Oct 19 23:05:39 kernel: [    0.632037] IPI shorthand broadcast: enabled
Oct 19 23:05:39 kernel: [    0.632051] sched_clock: Marking stable (631768469, 254179)->(634101970, -2079322)
Oct 19 23:05:39 kernel: [    0.632506] registered taskstats version 1
Oct 19 23:05:39 kernel: [    0.632510] Loading compiled-in X.509 certificates
Oct 19 23:05:39 kernel: [    0.665015] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
Oct 19 23:05:39 kernel: [    0.665039] Loaded X.509 cert 'Debian Secure Boot Signer 2022 - linux: 14011249c2675ea8e5148542202005810584b25f'
Oct 19 23:05:39 kernel: [    0.666113] zswap: loaded using pool lzo/zbud
Oct 19 23:05:39 kernel: [    0.666512] Key type ._fscrypt registered
Oct 19 23:05:39 kernel: [    0.666515] Key type .fscrypt registered
Oct 19 23:05:39 kernel: [    0.666516] Key type fscrypt-provisioning registered
Oct 19 23:05:39 kernel: [    0.667911] Key type encrypted registered
Oct 19 23:05:39 kernel: [    0.667914] AppArmor: AppArmor sha1 policy hashing enabled
Oct 19 23:05:39 kernel: [    0.668312] ima: Allocated hash algorithm: sha256
Oct 19 23:05:39 kernel: [    0.798159] ima: No architecture policies found
Oct 19 23:05:39 kernel: [    0.798193] evm: Initialising EVM extended attributes:
Oct 19 23:05:39 kernel: [    0.798194] evm: security.selinux
Oct 19 23:05:39 kernel: [    0.798197] evm: security.SMACK64 (disabled)
Oct 19 23:05:39 kernel: [    0.798199] evm: security.SMACK64EXEC (disabled)
Oct 19 23:05:39 kernel: [    0.798200] evm: security.SMACK64TRANSMUTE (disabled)
Oct 19 23:05:39 kernel: [    0.798201] evm: security.SMACK64MMAP (disabled)
Oct 19 23:05:39 kernel: [    0.798202] evm: security.apparmor
Oct 19 23:05:39 kernel: [    0.798204] evm: security.ima
Oct 19 23:05:39 kernel: [    0.798205] evm: security.capability
Oct 19 23:05:39 kernel: [    0.798206] evm: HMAC attrs: 0x1
Oct 19 23:05:39 kernel: [    0.854938] Freeing unused decrypted memory: 2036K
Oct 19 23:05:39 kernel: [    0.855347] Freeing unused kernel image (initmem) memory: 2724K
Oct 19 23:05:39 kernel: [    0.865062] Write protecting the kernel read-only data: 24576k
Oct 19 23:05:39 kernel: [    0.865958] Freeing unused kernel image (text/rodata gap) memory: 2040K
Oct 19 23:05:39 kernel: [    0.866392] Freeing unused kernel image (rodata/data gap) memory: 1536K
Oct 19 23:05:39 kernel: [    0.894304] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Oct 19 23:05:39 kernel: [    0.894309] Run /init as init process
Oct 19 23:05:39 kernel: [    0.894311]   with arguments:
Oct 19 23:05:39 kernel: [    0.894311]     /init
Oct 19 23:05:39 kernel: [    0.894312]     ---
Oct 19 23:05:39 kernel: [    0.894313]   with environment:
Oct 19 23:05:39 kernel: [    0.894313]     HOME=/
Oct 19 23:05:39 kernel: [    0.894314]     TERM=linux
Oct 19 23:05:39 kernel: [    0.894314]     BOOT_IMAGE=/install.amd/vmlinuz
Oct 19 23:05:39 kernel: [    0.894314]     vga=788
Oct 19 23:05:39 kernel: [    0.947401] hid: raw HID events driver (C) Jiri Kosina
Oct 19 23:05:39 kernel: [    0.947623] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
Oct 19 23:05:39 kernel: [    0.947843] acpi device:14: registered as cooling_device16
Oct 19 23:05:39 kernel: [    0.947870] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:00/input/input0
Oct 19 23:05:39 kernel: [    0.950278] pcie_mp2_amd 0000:06:00.7: enabling device (0000 -> 0002)
Oct 19 23:05:39 kernel: [    0.957383] SCSI subsystem initialized
Oct 19 23:05:39 kernel: [    0.961195] nvme 0000:01:00.0: platform quirk: setting simple suspend
Oct 19 23:05:39 kernel: [    0.961240] nvme nvme0: pci function 0000:01:00.0
Oct 19 23:05:39 kernel: [    0.961250] ACPI: bus type USB registered
Oct 19 23:05:39 kernel: [    0.961266] usbcore: registered new interface driver usbfs
Oct 19 23:05:39 kernel: [    0.961273] usbcore: registered new interface driver hub
Oct 19 23:05:39 kernel: [    0.961291] usbcore: registered new device driver usb
Oct 19 23:05:39 kernel: [    0.968893] libata version 3.00 loaded.
Oct 19 23:05:39 kernel: [    0.971205] nvme nvme0: missing or invalid SUBNQN field.
Oct 19 23:05:39 kernel: [    1.006736] nvme nvme0: 8/0/0 default/read/poll queues
Oct 19 23:05:39 kernel: [    1.009694]  nvme0n1: p1 p2 p3
Oct 19 23:05:39 kernel: [    1.013376] ahci 0000:07:00.0: version 3.0
Oct 19 23:05:39 kernel: [    1.013507] ahci 0000:07:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
Oct 19 23:05:39 kernel: [    1.013509] ahci 0000:07:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
Oct 19 23:05:39 kernel: [    1.013630] scsi host0: ahci
Oct 19 23:05:39 kernel: [    1.013673] ata1: SATA max UDMA/133 abar m2048@0xfcc01000 port 0xfcc01100 irq 45
Oct 19 23:05:39 kernel: [    1.013777] ahci 0000:07:00.1: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
Oct 19 23:05:39 kernel: [    1.013779] ahci 0000:07:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
Oct 19 23:05:39 kernel: [    1.013930] scsi host1: ahci
Oct 19 23:05:39 kernel: [    1.014050] scsi host2: ahci
Oct 19 23:05:39 kernel: [    1.014133] ata2: SATA max UDMA/133 abar m2048@0xfcc00000 port 0xfcc00100 irq 47
Oct 19 23:05:39 kernel: [    1.014139] ata3: SATA max UDMA/133 abar m2048@0xfcc00000 port 0xfcc00180 irq 48
Oct 19 23:05:39 kernel: [    1.020173] xhci_hcd 0000:05:00.0: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.020179] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 1
Oct 19 23:05:39 kernel: [    1.020262] xhci_hcd 0000:05:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000040000000890
Oct 19 23:05:39 kernel: [    1.020385] xhci_hcd 0000:05:00.0: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.020387] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 2
Oct 19 23:05:39 kernel: [    1.020388] xhci_hcd 0000:05:00.0: Host supports USB 3.0 SuperSpeed
Oct 19 23:05:39 kernel: [    1.020416] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
Oct 19 23:05:39 kernel: [    1.020417] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 19 23:05:39 kernel: [    1.020418] usb usb1: Product: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.020419] usb usb1: Manufacturer: Linux 5.19.0-1-amd64 xhci-hcd
Oct 19 23:05:39 kernel: [    1.020420] usb usb1: SerialNumber: 0000:05:00.0
Oct 19 23:05:39 kernel: [    1.020486] hub 1-0:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.020491] hub 1-0:1.0: 1 port detected
Oct 19 23:05:39 kernel: [    1.020552] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
Oct 19 23:05:39 kernel: [    1.020554] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 19 23:05:39 kernel: [    1.020554] usb usb2: Product: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.020555] usb usb2: Manufacturer: Linux 5.19.0-1-amd64 xhci-hcd
Oct 19 23:05:39 kernel: [    1.020556] usb usb2: SerialNumber: 0000:05:00.0
Oct 19 23:05:39 kernel: [    1.020602] hub 2-0:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.020607] hub 2-0:1.0: 4 ports detected
Oct 19 23:05:39 kernel: [    1.020708] xhci_hcd 0000:06:00.3: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.020711] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 3
Oct 19 23:05:39 kernel: [    1.020791] xhci_hcd 0000:06:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
Oct 19 23:05:39 kernel: [    1.021028] xhci_hcd 0000:06:00.3: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.021029] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 4
Oct 19 23:05:39 kernel: [    1.021031] xhci_hcd 0000:06:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Oct 19 23:05:39 kernel: [    1.021050] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
Oct 19 23:05:39 kernel: [    1.021051] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 19 23:05:39 kernel: [    1.021052] usb usb3: Product: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.021052] usb usb3: Manufacturer: Linux 5.19.0-1-amd64 xhci-hcd
Oct 19 23:05:39 kernel: [    1.021053] usb usb3: SerialNumber: 0000:06:00.3
Oct 19 23:05:39 kernel: [    1.021107] hub 3-0:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.021112] hub 3-0:1.0: 4 ports detected
Oct 19 23:05:39 kernel: [    1.021278] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Oct 19 23:05:39 kernel: [    1.021291] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
Oct 19 23:05:39 kernel: [    1.021292] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 19 23:05:39 kernel: [    1.021293] usb usb4: Product: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.021293] usb usb4: Manufacturer: Linux 5.19.0-1-amd64 xhci-hcd
Oct 19 23:05:39 kernel: [    1.021294] usb usb4: SerialNumber: 0000:06:00.3
Oct 19 23:05:39 kernel: [    1.021345] hub 4-0:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.021349] hub 4-0:1.0: 2 ports detected
Oct 19 23:05:39 kernel: [    1.021473] xhci_hcd 0000:06:00.4: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.021476] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 5
Oct 19 23:05:39 kernel: [    1.021553] xhci_hcd 0000:06:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
Oct 19 23:05:39 kernel: [    1.021783] xhci_hcd 0000:06:00.4: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.021785] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 6
Oct 19 23:05:39 kernel: [    1.021786] xhci_hcd 0000:06:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Oct 19 23:05:39 kernel: [    1.021805] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
Oct 19 23:05:39 kernel: [    1.021806] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 19 23:05:39 kernel: [    1.021807] usb usb5: Product: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.021808] usb usb5: Manufacturer: Linux 5.19.0-1-amd64 xhci-hcd
Oct 19 23:05:39 kernel: [    1.021808] usb usb5: SerialNumber: 0000:06:00.4
Oct 19 23:05:39 kernel: [    1.021861] hub 5-0:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.021866] hub 5-0:1.0: 4 ports detected
Oct 19 23:05:39 kernel: [    1.021995] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
Oct 19 23:05:39 kernel: [    1.022007] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
Oct 19 23:05:39 kernel: [    1.022008] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 19 23:05:39 kernel: [    1.022008] usb usb6: Product: xHCI Host Controller
Oct 19 23:05:39 kernel: [    1.022009] usb usb6: Manufacturer: Linux 5.19.0-1-amd64 xhci-hcd
Oct 19 23:05:39 kernel: [    1.022010] usb usb6: SerialNumber: 0000:06:00.4
Oct 19 23:05:39 kernel: [    1.022056] hub 6-0:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.022060] hub 6-0:1.0: 2 ports detected
Oct 19 23:05:39 kernel: [    1.266632] usb 1-1: new high-speed USB device number 2 using xhci_hcd
Oct 19 23:05:39 kernel: [    1.269921] usb 5-2: new high-speed USB device number 2 using xhci_hcd
Oct 19 23:05:39 kernel: [    1.318284] ata1: SATA link down (SStatus 0 SControl 300)
Oct 19 23:05:39 kernel: [    1.338137] tsc: Refined TSC clocksource calibration: 3319.156 MHz
Oct 19 23:05:39 kernel: [    1.338150] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2fd7fcc69a4, max_idle_ns: 440795366315 ns
Oct 19 23:05:39 kernel: [    1.338206] clocksource: Switched to clocksource tsc
Oct 19 23:05:39 kernel: [    1.416521] usb 1-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
Oct 19 23:05:39 kernel: [    1.416529] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Oct 19 23:05:39 kernel: [    1.416533] usb 1-1: Product: USB2.0 Hub
Oct 19 23:05:39 kernel: [    1.417359] hub 1-1:1.0: USB hub found
Oct 19 23:05:39 kernel: [    1.417664] hub 1-1:1.0: 4 ports detected
Oct 19 23:05:39 kernel: [    1.428176] usb 5-2: New USB device found, idVendor=0781, idProduct=5150, bcdDevice= 0.10
Oct 19 23:05:39 kernel: [    1.428184] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Oct 19 23:05:39 kernel: [    1.428188] usb 5-2: Product: Cruzer Mini
Oct 19 23:05:39 kernel: [    1.428191] usb 5-2: Manufacturer: SanDisk Corporation
Oct 19 23:05:39 kernel: [    1.428193] usb 5-2: SerialNumber: SNDK4D8B9416CE400206
Oct 19 23:05:39 kernel: [    1.481860] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Oct 19 23:05:39 kernel: [    1.481982] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Oct 19 23:05:39 kernel: [    1.482459] ata3.00: ATA-11: SanDisk SDSSDH3 1T00, 415020RL, max UDMA/133
Oct 19 23:05:39 kernel: [    1.482608] ata2.00: ATA-11: SanDisk SDSSDH3 1T00, 415020RL, max UDMA/133
Oct 19 23:05:39 kernel: [    1.482992] ata3.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Oct 19 23:05:39 kernel: [    1.483185] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Oct 19 23:05:39 kernel: [    1.484507] ata3.00: Features: Dev-Sleep
Oct 19 23:05:39 kernel: [    1.484702] ata2.00: Features: Dev-Sleep
Oct 19 23:05:39 kernel: [    1.487704] ata3.00: configured for UDMA/133
Oct 19 23:05:39 kernel: [    1.487927] ata2.00: configured for UDMA/133
Oct 19 23:05:39 kernel: [    1.498392] scsi 1:0:0:0: Direct-Access     ATA      SanDisk SDSSDH3  20RL PQ: 0 ANSI: 5
Oct 19 23:05:39 kernel: [    1.499167] scsi 2:0:0:0: Direct-Access     ATA      SanDisk SDSSDH3  20RL PQ: 0 ANSI: 5
Oct 19 23:05:39 kernel: [    1.503703] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Oct 19 23:05:39 kernel: [    1.503715] sd 1:0:0:0: [sda] Write Protect is off
Oct 19 23:05:39 kernel: [    1.503720] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 19 23:05:39 kernel: [    1.503736] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 19 23:05:39 kernel: [    1.503736] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Oct 19 23:05:39 kernel: [    1.503755] sd 2:0:0:0: [sdb] Write Protect is off
Oct 19 23:05:39 kernel: [    1.503756] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
Oct 19 23:05:39 kernel: [    1.503757] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Oct 19 23:05:39 kernel: [    1.503772] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 19 23:05:39 kernel: [    1.503791] sd 2:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
Oct 19 23:05:39 kernel: [    1.539570]  sdb: sdb1 sdb2 sdb3
Oct 19 23:05:39 kernel: [    1.539685] sd 2:0:0:0: [sdb] Attached SCSI disk
Oct 19 23:05:39 kernel: [    1.539771]  sda: sda1 sda2 sda3
Oct 19 23:05:39 kernel: [    1.540004] sd 1:0:0:0: [sda] Attached SCSI disk
Oct 19 23:05:39 kernel: [    1.553869] usb 5-3: new full-speed USB device number 3 using xhci_hcd
Oct 19 23:05:39 kernel: [    1.714482] usb 1-1.2: new full-speed USB device number 3 using xhci_hcd
Oct 19 23:05:39 kernel: [    1.722924] usb 5-3: New USB device found, idVendor=0d8c, idProduct=0014, bcdDevice= 1.00
Oct 19 23:05:39 kernel: [    1.722933] usb 5-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 19 23:05:39 kernel: [    1.722936] usb 5-3: Product: USB Audio Device
Oct 19 23:05:39 kernel: [    1.722939] usb 5-3: Manufacturer: C-Media Electronics Inc.
Oct 19 23:05:39 kernel: [    1.827595] usb 1-1.2: New USB device found, idVendor=248a, idProduct=8367, bcdDevice= 1.00
Oct 19 23:05:39 kernel: [    1.827603] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 19 23:05:39 kernel: [    1.827607] usb 1-1.2: Product: Wireless Receiver
Oct 19 23:05:39 kernel: [    1.827609] usb 1-1.2: Manufacturer: Telink
Oct 19 23:05:39 kernel: [    1.849980] usbcore: registered new interface driver usbhid
Oct 19 23:05:39 kernel: [    1.849985] usbhid: USB HID core driver
Oct 19 23:05:39 kernel: [    1.851820] input: C-Media Electronics Inc. USB Audio Device as /devices/pci0000:00/0000:00:08.1/0000:06:00.4/usb5/5-3/5-3:1.3/0003:0D8C:0014.0001/input/input1
Oct 19 23:05:39 kernel: [    1.857857] usb 5-4: new high-speed USB device number 4 using xhci_hcd
Oct 19 23:05:39 kernel: [    1.909924] usb 1-1.4: new full-speed USB device number 4 using xhci_hcd
Oct 19 23:05:39 kernel: [    1.910069] hid-generic 0003:0D8C:0014.0001: input,hidraw0: USB HID v1.00 Device [C-Media Electronics Inc. USB Audio Device] on usb-0000:06:00.4-3/input3
Oct 19 23:05:39 kernel: [    1.910366] input: Telink Wireless Receiver Mouse as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:248A:8367.0002/input/input2
Oct 19 23:05:39 kernel: [    1.910511] input: Telink Wireless Receiver Consumer Control as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:248A:8367.0002/input/input3
Oct 19 23:05:39 kernel: [    1.969935] input: Telink Wireless Receiver System Control as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:248A:8367.0002/input/input4
Oct 19 23:05:39 kernel: [    1.970069] hid-generic 0003:248A:8367.0002: input,hidraw1: USB HID v1.11 Mouse [Telink Wireless Receiver] on usb-0000:05:00.0-1.2/input0
Oct 19 23:05:39 kernel: [    1.970280] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:248A:8367.0003/input/input5
Oct 19 23:05:39 kernel: [    2.009548] usb 5-4: New USB device found, idVendor=0e8d, idProduct=0608, bcdDevice= 1.00
Oct 19 23:05:39 kernel: [    2.009556] usb 5-4: New USB device strings: Mfr=5, Product=6, SerialNumber=7
Oct 19 23:05:39 kernel: [    2.009559] usb 5-4: Product: Wireless_Device
Oct 19 23:05:39 kernel: [    2.009562] usb 5-4: Manufacturer: MediaTek Inc.
Oct 19 23:05:39 kernel: [    2.009564] usb 5-4: SerialNumber: 000000000
Oct 19 23:05:39 kernel: [    2.018990] usb 1-1.4: New USB device found, idVendor=25a7, idProduct=fa61, bcdDevice= 6.23
Oct 19 23:05:39 kernel: [    2.018996] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 19 23:05:39 kernel: [    2.018999] usb 1-1.4: Product: 2.4G Receiver
Oct 19 23:05:39 kernel: [    2.019001] usb 1-1.4: Manufacturer: Compx
Oct 19 23:05:39 kernel: [    2.020115] usb-storage 5-2:1.0: USB Mass Storage device detected
Oct 19 23:05:39 kernel: [    2.020208] scsi host3: usb-storage 5-2:1.0
Oct 19 23:05:39 kernel: [    2.020262] usbcore: registered new interface driver usb-storage
Oct 19 23:05:39 kernel: [    2.021239] usbcore: registered new interface driver uas
Oct 19 23:05:39 kernel: [    2.023303] input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:25A7:FA61.0004/input/input6
Oct 19 23:05:39 kernel: [    2.034144] hid-generic 0003:248A:8367.0003: input,hidraw2: USB HID v1.11 Keyboard [Telink Wireless Receiver] on usb-0000:05:00.0-1.2/input1
Oct 19 23:05:39 kernel: [    2.094088] hid-generic 0003:25A7:FA61.0004: input,hidraw3: USB HID v1.10 Keyboard [Compx 2.4G Receiver] on usb-0000:05:00.0-1.4/input0
Oct 19 23:05:39 kernel: [    2.099104] input: Compx 2.4G Receiver Mouse as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:25A7:FA61.0005/input/input7
Oct 19 23:05:39 kernel: [    2.105848] clocksource: timekeeping watchdog on CPU3: Marking clocksource 'tsc' as unstable because the skew is too large:
Oct 19 23:05:39 kernel: [    2.105854] clocksource:                       'hpet' wd_nsec: 515926535 wd_now: 1bf8120 wd_last: 14ec927 mask: ffffffff
Oct 19 23:05:39 kernel: [    2.105859] clocksource:                       'tsc' cs_nsec: 511986774 cs_now: 1e852c795f cs_last: 1e1fe23c76 mask: ffffffffffffffff
Oct 19 23:05:39 kernel: [    2.105862] clocksource:                       'tsc' is current clocksource.
Oct 19 23:05:39 kernel: [    2.105870] tsc: Marking TSC unstable due to clocksource watchdog
Oct 19 23:05:39 kernel: [    2.105881] TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
Oct 19 23:05:39 kernel: [    2.105883] sched_clock: Marking unstable (2105626902, 254242)<-(2107960342, -2079322)
Oct 19 23:05:39 kernel: [    2.106104] clocksource: Checking clocksource tsc synchronization from CPU 4 to CPUs 0,3,5-6,9,15.
Oct 19 23:05:39 kernel: [    2.106202] clocksource: Switched to clocksource hpet
Oct 19 23:05:39 kernel: [    2.118054] cmedia_hs100b 0003:0D8C:0014.0001: Fixing CMedia HS-100B report descriptor
Oct 19 23:05:39 kernel: [    2.118100] input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:25A7:FA61.0005/input/input8
Oct 19 23:05:39 kernel: [    2.118171] input: C-Media Electronics Inc. USB Audio Device as /devices/pci0000:00/0000:00:08.1/0000:06:00.4/usb5/5-3/5-3:1.3/0003:0D8C:0014.0001/input/input12
Oct 19 23:05:39 kernel: [    2.118205] input: Compx 2.4G Receiver Consumer Control as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:25A7:FA61.0005/input/input9
Oct 19 23:05:39 kernel: [    2.178371] cmedia_hs100b 0003:0D8C:0014.0001: input,hidraw0: USB HID v1.00 Device [C-Media Electronics Inc. USB Audio Device] on usb-0000:06:00.4-3/input3
Oct 19 23:05:39 kernel: [    2.238583] input: Compx 2.4G Receiver System Control as /devices/pci0000:00/0000:00:02.3/0000:05:00.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:25A7:FA61.0005/input/input10
Oct 19 23:05:39 kernel: [    2.238831] hid-generic 0003:25A7:FA61.0005: input,hiddev0,hidraw4: USB HID v1.10 Mouse [Compx 2.4G Receiver] on usb-0000:05:00.0-1.4/input1
Oct 19 23:05:39 kernel: [    3.036164] scsi 3:0:0:0: Direct-Access     SanDisk  Cruzer Mini      0.1  PQ: 0 ANSI: 2
Oct 19 23:05:39 kernel: [    3.036941] sd 3:0:0:0: [sdc] 1000944 512-byte logical blocks: (512 MB/489 MiB)
Oct 19 23:05:39 kernel: [    3.037331] sd 3:0:0:0: [sdc] Write Protect is off
Oct 19 23:05:39 kernel: [    3.037334] sd 3:0:0:0: [sdc] Mode Sense: 03 00 00 00
Oct 19 23:05:39 kernel: [    3.037705] sd 3:0:0:0: [sdc] No Caching mode page found
Oct 19 23:05:39 kernel: [    3.037706] sd 3:0:0:0: [sdc] Assuming drive cache: write through
Oct 19 23:05:39 kernel: [    3.039832]  sdc: sdc1 sdc2
Oct 19 23:05:39 kernel: [    3.039937] sd 3:0:0:0: [sdc] Attached SCSI removable disk
Oct 19 23:05:39 kernel: [    5.751908] pcie_mp2_amd 0000:06:00.7: Failed to discover, sensors not enabled
Oct 19 23:05:39 kernel: [    5.751913] pcie_mp2_amd: probe of 0000:06:00.7 failed with error -95
Oct 19 23:05:39 entropy-source: haveged not needed: rdrand CPU flag detected
Oct 19 23:05:39 reopen-console: Looking at console tty1 from /proc/consoles
Oct 19 23:05:39 reopen-console:    Adding tty0 to possible consoles list
Oct 19 23:05:39 reopen-console: Found no preferred console. Picking tty1
Oct 19 23:05:39 reopen-console: Adding inittab entry for tty1
Oct 19 23:05:39 reopen-console: Restarting init to start d-i on the console(s) we found
Oct 19 23:05:39 init: reloading /etc/inittab
Oct 19 23:05:39 init: starting pid 384, tty '/dev/tty4': '/usr/bin/tail -f /var/log/syslog'
Oct 19 23:05:39 init: starting pid 385, tty '/dev/tty1': '/sbin/debian-installer'
Oct 19 23:05:39 debconf: Setting debconf/language to en
Oct 19 23:05:39 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:39 main-menu[401]: INFO: Menu item 'localechooser' selected
Oct 19 23:05:40 debconf: Setting debconf/language to en
Oct 19 23:05:42 localechooser: info: Language = 'C'
Oct 19 23:05:42 localechooser: info: line=C;0;;C;en;
Oct 19 23:05:42 localechooser: info: Set debian-installer/language = 'en'
Oct 19 23:05:42 localechooser: info: Default locale = 'C'
Oct 19 23:05:42 localechooser: info: Set debian-installer/consoledisplay = ''
Oct 19 23:05:42 debconf: Setting debconf/language to en
Oct 19 23:05:45 localechooser: info: Set debian-installer/country = 'JP'
Oct 19 23:05:45 localechooser: info: Set debian-installer/locale = 'C'
Oct 19 23:05:45 localechooser: info: System locale (debian-installer/locale) = 'C'
Oct 19 23:05:45 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:45 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:45 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:45 main-menu[401]: INFO: Menu item 'brltty-udeb' selected
Oct 19 23:05:45 main-menu[401]: WARNING **: Unable to set title for brltty-udeb.
Oct 19 23:05:45 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:45 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:45 main-menu[401]: INFO: Menu item 'console-setup-udeb' selected
Oct 19 23:05:47 main-menu[401]: (process:1219): setupcon: gzip is not accessible. Will not save cached keyboard map.
Oct 19 23:05:47 main-menu[401]: (process:1219): setupcon: gzip is not accessible. Will not save cached keyboard map.
Oct 19 23:05:47 main-menu[401]: (process:1219): setupcon: gzip is not accessible. Will not save cached keyboard map.
Oct 19 23:05:47 main-menu[401]: (process:1219): setupcon: gzip is not accessible. Will not save cached keyboard map.
Oct 19 23:05:47 main-menu[401]: (process:1219): /bin/setupcon: line 717: can't create /etc/console-setup/cached_setup_keyboard.sh: nonexistent directory
Oct 19 23:05:47 main-menu[401]: (process:1219): /bin/setupcon: line 725: can't create /etc/console-setup/cached_setup_font.sh: nonexistent directory
Oct 19 23:05:47 main-menu[401]: (process:1219): /bin/setupcon: line 743: can't create /etc/console-setup/cached_setup_terminal.sh: nonexistent directory
Oct 19 23:05:47 main-menu[401]: (process:1219): chmod: /etc/console-setup/cached_setup_keyboard.sh: No such file or directory
Oct 19 23:05:47 main-menu[401]: (process:1219): chmod: /etc/console-setup/cached_setup_font.sh: No such file or directory
Oct 19 23:05:47 main-menu[401]: (process:1219): chmod: /etc/console-setup/cached_setup_terminal.sh: No such file or directory
Oct 19 23:05:47 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:47 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:47 main-menu[401]: INFO: Menu item 'cdrom-detect' selected
Oct 19 23:05:47 net/hw-detect.hotplug: Detected hotpluggable network interface lo
Oct 19 23:05:47 apt-install: Queueing package udev for later installation
Oct 19 23:05:47 apt-install: Queueing package pciutils for later installation
Oct 19 23:05:47 apt-install: Queueing package usbutils for later installation
Oct 19 23:05:47 hw-detect: skipping check-missing-firmware as requested by the caller
Oct 19 23:05:47 cdrom-detect: Searching for Debian installation media...
Oct 19 23:05:47 cdrom-detect: Devices: ''
Oct 19 23:05:48 cdrom-detect: Devices: ''
Oct 19 23:05:49 cdrom-detect: Devices: ''
Oct 19 23:05:50 cdrom-detect: Devices: ''
Oct 19 23:05:51 cdrom-detect: Devices: ''
Oct 19 23:05:52 cdrom-detect: Devices: ''
Oct 19 23:05:53 cdrom-detect: Devices: ''
Oct 19 23:05:54 cdrom-detect: Devices: ''
Oct 19 23:05:56 cdrom-detect: Devices: ''
Oct 19 23:05:57 cdrom-detect: CD-ROM mount succeeded: device=/dev/sdc1 fstype=iso9660
Oct 19 23:05:57 kernel: [   23.407163] ISO 9660 Extensions: Microsoft Joliet Level 3
Oct 19 23:05:57 kernel: [   23.408300] ISO 9660 Extensions: RRIP_1991A
Oct 19 23:05:57 cdrom-detect: Detected CD 'Debian GNU/Linux bookworm-DI-alpha1 "Bookworm" - Official RC amd64 NETINST 20220920-12:26'
Oct 19 23:05:57 cdrom-detect: Detected CD with 'testing' (bookworm) distribution
Oct 19 23:05:57 anna-install: Queueing udeb eject-udeb for later installation
Oct 19 23:05:57 anna-install: Queueing udeb apt-mirror-setup for later installation
Oct 19 23:05:57 anna-install: Queueing udeb apt-cdrom-setup for later installation
Oct 19 23:05:57 anna-install: Queueing udeb bookworm-support for later installation
Oct 19 23:05:57 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:57 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:05:57 main-menu[401]: INFO: Menu item 'load-cdrom' selected
Oct 19 23:05:57 cdrom-retriever: warning: File /cdrom/dists/bookworm/main/debian-installer/binary-amd64/Packages does not exist.
Oct 19 23:05:57 cdrom-retriever: warning: Unable to find contrib/debian-installer/binary-amd64/Packages in /cdrom/dists/bookworm/Release.
Oct 19 23:05:57 cdrom-retriever: warning: Unable to find contrib/debian-installer/binary-amd64/Packages.gz in /cdrom/dists/bookworm/Release.
Oct 19 23:05:57 anna[3133]: DEBUG: resolver (fat-modules): package doesn't exist (ignored)
Oct 19 23:05:57 anna[3133]: DEBUG: resolver (scsi-modules): package doesn't exist (ignored)
Oct 19 23:05:57 anna[3133]: DEBUG: resolver (fat-modules): package doesn't exist (ignored)
Oct 19 23:05:57 anna[3133]: DEBUG: resolver (scsi-modules): package doesn't exist (ignored)
Oct 19 23:05:57 anna[3133]: DEBUG: retrieving apt-cdrom-setup 1:0.171
Oct 19 23:05:57 anna[3133]: DEBUG: retrieving apt-mirror-setup 1:0.171
Oct 19 23:05:57 anna[3133]: DEBUG: retrieving apt-setup-udeb 1:0.171
Oct 19 23:05:57 anna[3133]: DEBUG: retrieving base-installer 1.208
Oct 19 23:05:57 anna[3133]: DEBUG: retrieving bootstrap-base 1.208
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving btrfs-progs-udeb 5.19-1
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving choose-mirror-bin 2.114
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving clock-setup 0.157
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving debian-archive-keyring-udeb 2021.1.1
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving di-utils-mapdevfs 1.142
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving debootstrap-udeb 1.0.127
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving dmidecode-udeb 3.4-1
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving dosfstools-udeb 4.2-1
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving e2fsprogs-udeb 1.46.5-2
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving finish-install 2.110
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving fuse-udeb 2.9.9-5
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving libfuse2-udeb 2.9.9-5
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving gpgv-udeb 2.2.39-1
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving grub-installer 1.185
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving grub-mount-udeb 2.06-3
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving disk-detect 1.150
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving ethdetect 1.150
Oct 19 23:05:58 anna[3133]: DEBUG: retrieving jfsutils-udeb 1.1.15-5
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving kickseed-common 0.63
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libbsd0-udeb 0.11.6-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libgcrypt20-udeb 1.10.1-2
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libgpg-error0-udeb 1.45-2
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libinih1-udeb 55-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libmd0-udeb 1.0.4-2
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libnl-3-200-udeb 3.7.0-0.2+b1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libnl-genl-3-200-udeb 3.7.0-0.2+b1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving liburcu8-udeb 0.13.2-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libzstd1-udeb 1.5.2+dfsg-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libdevmapper1.02.1-udeb 2:1.02.185-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving liblzo2-2-udeb 2.10-2
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving mdadm-udeb 4.2-4
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving ndisc6-udeb 1.0.5-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving rdnssd-udeb 1.0.5-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving netcfg 1.180
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving nobootloader 1.65
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving ntfs-3g-udeb 1:2022.5.17-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving open-iscsi-udeb 2.1.7-2
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libisns-udeb 0.101-0.2
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving os-prober-udeb 1.81
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libparted-fs-resize0-udeb 3.5-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving libparted2-udeb 3.5-1
Oct 19 23:05:59 anna[3133]: DEBUG: retrieving partman-auto 159
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-auto-raid 48
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-base 220
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-utils 220
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-basicfilesystems 158
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-basicmethods 74
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-btrfs 56
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-efi 96
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-ext3 110
Oct 19 23:06:00 anna[3133]: DEBUG: retrieving partman-iscsi 72
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving partman-jfs 62
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving partman-md 102
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving partman-partitioning 141
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving partman-target 124
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving partman-xfs 68
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving pkgsel 0.75
Oct 19 23:06:01 anna[3133]: DEBUG: retrieving network-preseed 1.112
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving rdate-udeb 1:1.11-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving tzsetup-udeb 1:0.117
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving user-setup-udeb 1.90
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving eject-udeb 2.38.1-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving libmount1-udeb 2.38.1-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving wide-dhcpv6-client-udeb 20080615-23
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving libiw30-udeb 30~pre9-13.1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving wpasupplicant-udeb 2:2.10-9+b1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving xfsprogs-udeb 5.19.0-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving btrfs-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving crypto-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving efi-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:02 anna[3133]: DEBUG: retrieving ext4-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:03 anna[3133]: DEBUG: retrieving jfs-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:03 anna[3133]: DEBUG: retrieving loop-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:03 anna[3133]: DEBUG: retrieving md-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:03 anna[3133]: DEBUG: retrieving mtd-core-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:03 anna[3133]: DEBUG: retrieving nic-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:04 anna[3133]: DEBUG: retrieving nic-pcmcia-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:04 anna[3133]: DEBUG: retrieving nic-shared-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:04 anna[3133]: DEBUG: retrieving nic-usb-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:04 anna[3133]: DEBUG: retrieving nic-wireless-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:05 anna[3133]: DEBUG: retrieving xfs-modules-5.19.0-1-amd64-di 5.19.6-1
Oct 19 23:06:05 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:06:05 main-menu[401]: INFO: Falling back to the package description for brltty-udeb
Oct 19 23:06:05 main-menu[401]: INFO: Menu item 'ethdetect' selected
Oct 19 23:06:06 kernel: [   32.333014] pps_core: LinuxPPS API ver. 1 registered
Oct 19 23:06:06 kernel: [   32.333018] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Oct 19 23:06:06 kernel: [   32.335062] PTP clock support registered
Oct 19 23:06:06 kernel: [   32.343252] Intel(R) 2.5G Ethernet Linux Driver
Oct 19 23:06:06 kernel: [   32.343256] Copyright(c) 2018 Intel Corporation.
Oct 19 23:06:06 kernel: [   32.343383] igc 0000:04:00.0: PCIe PTM not supported by PCIe bus/controller
Oct 19 23:06:06 net/hw-detect.hotplug: Detected hotpluggable network interface lo
Oct 19 23:06:06 kernel: [   32.367176] r8169 0000:02:00.0 eth0: RTL8168h/8111h, 1c:83:41:30:c9:29, XID 541, IRQ 69
Oct 19 23:06:06 kernel: [   32.367180] r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Oct 19 23:06:06 kernel: [   32.386272] r8169 0000:02:00.0 eno1: renamed from eth0
Oct 19 23:06:06 kernel: [   32.388103] pps pps0: new PPS source ptp0
Oct 19 23:06:06 kernel: [   32.388133] igc 0000:04:00.0 (unnamed net_device) (uninitialized): PHC added
Oct 19 23:06:06 net/hw-detect.hotplug: Detected hotpluggable network interface eno1
Oct 19 23:06:06 kernel: [   32.430471] cfg80211: Loading compiled-in X.509 certificates for regulatory database
Oct 19 23:06:06 kernel: [   32.430506] igc 0000:04:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
Oct 19 23:06:06 kernel: [   32.430515] igc 0000:04:00.0 eth0: MAC: 1c:83:41:30:ca:01
Oct 19 23:06:06 kernel: [   32.430823] cfg80211: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
Oct 19 23:06:06 kernel: [   32.431258] cfg80211: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
Oct 19 23:06:06 kernel: [   32.431572] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Oct 19 23:06:06 kernel: [   32.431630] platform regulatory.0: firmware: direct-loading firmware regulatory.db
Oct 19 23:06:06 kernel: [   32.431656] platform regulatory.0: firmware: direct-loading firmware regulatory.db.p7s
Oct 19 23:06:06 kernel: [   32.431945] igc 0000:04:00.0 enp4s0: renamed from eth0
Oct 19 23:06:06 net/hw-detect.hotplug: Detected hotpluggable network interface enp4s0
Oct 19 23:06:06 kernel: [   32.499110] mt7921e 0000:03:00.0: enabling device (0000 -> 0002)
Oct 19 23:06:06 kernel: [   32.517913] mt7921e 0000:03:00.0: ASIC revision: 79610010
Oct 19 23:06:06 kernel: [   32.602192] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.602196] firmware_class: See https://wiki.debian.org/Firmware for information about missing firmware
Oct 19 23:06:06 kernel: [   32.602202] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.602203] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:06 kernel: [   32.685580] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.685595] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.685596] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:06 kernel: [   32.773653] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.773666] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.773667] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:06 kernel: [   32.858162] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.858187] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.858191] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:06 kernel: [   32.942178] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.942202] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   32.942206] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:06 kernel: [   33.026272] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   33.026297] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   33.026300] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:06 kernel: [   33.109895] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   33.109907] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:06 kernel: [   33.109909] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:07 kernel: [   33.193961] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:07 kernel: [   33.193974] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:07 kernel: [   33.193976] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:07 kernel: [   33.278034] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:07 kernel: [   33.278060] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:07 kernel: [   33.278063] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:07 kernel: [   33.362152] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:07 kernel: [   33.362177] mt7921e 0000:03:00.0: firmware: failed to load mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin (-2)
Oct 19 23:06:07 kernel: [   33.362180] mt7921e 0000:03:00.0: Direct firmware load for mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin failed with error -2
Oct 19 23:06:07 kernel: [   33.443973] mt7921e 0000:03:00.0: hardware init failed
Oct 19 23:06:07 check-missing-firmware: looking at dmesg for the first time
Oct 19 23:06:07 check-missing-firmware: saving timestamp for a later use: [   33.443973]
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: looking for firmware file mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin requested by mt7921e
Oct 19 23:06:07 check-missing-firmware: missing firmware files (mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin) for mt7921e
Oct 19 23:06:08 kernel: [   34.140088] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:08 kernel: [   34.154477] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:08 kernel: [   34.217665] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:08 kernel: [   34.230114] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1p2 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1p2 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1p3 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1p3 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda2 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda2 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda3 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda3 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb2 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb2 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb3 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb3 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc1 on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc1 on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/nvme0n1 on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sda on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /media: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdb on /media failed: Invalid argument
Oct 19 23:06:13 main-menu[401]: (process:4770): mount: mounting /dev/sdc on /media failed: Device or resource busy
Oct 19 23:06:13 main-menu[401]: (process:4770): umount: can't unmount /medi
Oct 19 23:06:13 kernel: [   39.700014] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:13 kernel: [   39.714481] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:13 kernel: [   39.775374] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:13 kernel: [   39.787307] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Oct 19 23:06:13 check-missing-firmware: removing and loading kernel module mt7921e
Oct 19 23:06:13 kernel: [   40.024088] BUG: unable to handle page fault for address: 0000000000006500
Oct 19 23:06:13 kernel: [   40.024092] #PF: supervisor write access in kernel mode
Oct 19 23:06:13 kernel: [   40.024094] #PF: error_code(0x0002) - not-present page
Oct 19 23:06:13 kernel: [   40.024095] PGD 26a57a067 P4D 26a57a067 PUD 118532067 PMD 0 
Oct 19 23:06:13 kernel: [   40.024098] Oops: 0002 [#1] PREEMPT SMP NOPTI
Oct 19 23:06:13 kernel: [   40.024100] CPU: 6 PID: 5954 Comm: modprobe Not tainted 5.19.0-1-amd64 #1  Debian 5.19.6-1
Oct 19 23:06:13 kernel: [   40.024102] Hardware name: BESSTAR TECH LIMITED HM90/HM90, BIOS 5.16 10/13/2021
Oct 19 23:06:13 kernel: [   40.024103] RIP: 0010:try_to_grab_pending+0x2d/0x180
Oct 19 23:06:13 kernel: [   40.024107] Code: 00 00 41 55 41 54 55 48 89 d5 53 48 89 fb 9c 58 0f 1f 40 00 48 89 c2 fa 0f 1f 44 00 00 48 89 55 00 40 84 f6 0f 85 a6 00 00 00 <f0> 48 0f ba 2b 00 72 0d 31 c0 5b 5d 41 5c 41 5d e9 0e a6 b4 00 e8
Oct 19 23:06:13 kernel: [   40.024109] RSP: 0018:ffffbba9c1c47d70 EFLAGS: 00010046
Oct 19 23:06:13 kernel: [   40.024111] RAX: 0000000000000246 RBX: 0000000000006500 RCX: 0000000000000000
Oct 19 23:06:13 kernel: [   40.024112] RDX: 0000000000000246 RSI: 0000000000000000 RDI: 0000000000006500
Oct 19 23:06:13 kernel: [   40.024113] RBP: ffffbba9c1c47d98 R08: 0000000000000000 R09: 000000008020001b
Oct 19 23:06:13 kernel: [   40.024114] R10: 0000000000000032 R11: ffff9f26503df400 R12: 0000000000006500
Oct 19 23:06:13 kernel: [   40.024115] R13: ffff9f2658904c80 R14: ffff9f264162e000 R15: ffffffffc0769128
Oct 19 23:06:13 kernel: [   40.024116] FS:  00007f9566c85740(0000) GS:ffff9f2d2f780000(0000) knlGS:0000000000000000
Oct 19 23:06:13 kernel: [   40.024117] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Oct 19 23:06:13 kernel: [   40.024118] CR2: 0000000000006500 CR3: 0000000111da8000 CR4: 0000000000350ee0
Oct 19 23:06:13 kernel: [   40.024120] Call Trace:
Oct 19 23:06:13 kernel: [   40.024121]  <TASK>
Oct 19 23:06:13 kernel: [   40.024124]  __cancel_work_timer+0x3c/0x190
Oct 19 23:06:13 kernel: [   40.024128]  ? __kernfs_remove.part.0+0x190/0x2b0
Oct 19 23:06:13 kernel: [   40.024131]  mt7921_pci_remove+0x2c/0x110 [mt7921e]
Oct 19 23:06:13 kernel: [   40.024134]  pci_device_remove+0x36/0xa0
Oct 19 23:06:13 kernel: [   40.024137]  device_release_driver_internal+0x1aa/0x230
Oct 19 23:06:13 kernel: [   40.024141]  driver_detach+0x44/0x90
Oct 19 23:06:13 kernel: [   40.024142]  bus_remove_driver+0x55/0xe0
Oct 19 23:06:13 kernel: [   40.024144]  pci_unregister_driver+0x2a/0xb0
Oct 19 23:06:13 kernel: [   40.024146]  __do_sys_delete_module+0x194/0x2a0
Oct 19 23:06:13 kernel: [   40.024148]  ? fpregs_assert_state_consistent+0x22/0x50
Oct 19 23:06:13 kernel: [   40.024151]  ? exit_to_user_mode_prepare+0x3c/0x1d0
Oct 19 23:06:13 kernel: [   40.024154]  do_syscall_64+0x3b/0xc0
Oct 19 23:06:13 kernel: [   40.024157]  entry_SYSCALL_64_after_hwframe+0x63/0xcd
Oct 19 23:06:13 kernel: [   40.024160] RIP: 0033:0x7f9566d92977
Oct 19 23:06:13 kernel: [   40.024161] Code: 73 01 c3 48 8b 0d 99 74 0e 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 b8 b0 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 69 74 0e 00 f7 d8 64 89 01 48
Oct 19 23:06:13 kernel: [   40.024163] RSP: 002b:00007fff54f24e28 EFLAGS: 00000206 ORIG_RAX: 00000000000000b0
Oct 19 23:06:13 kernel: [   40.024164] RAX: ffffffffffffffda RBX: 00000000004dae00 RCX: 00007f9566d92977
Oct 19 23:06:13 kernel: [   40.024165] RDX: 0000000000000000 RSI: 0000000000000800 RDI: 00000000004dae68
Oct 19 23:06:13 kernel: [   40.024166] RBP: 00000000004dae68 R08: 1999999999999999 R09: 0000000000000000
Oct 19 23:06:13 kernel: [   40.024167] R10: 00007f9566c9abc0 R11: 0000000000000206 R12: 0000000000000000
Oct 19 23:06:13 kernel: [   40.024168] R13: 00000000004dae00 R14: 0000000000000000 R15: 0000000000000000
Oct 19 23:06:13 kernel: [   40.024170]  </TASK>
Oct 19 23:06:13 kernel: [   40.024171] Modules linked in: nls_ascii nls_cp437 vfat fat mt7921e(-) mt7921_common mt76_connac_lib mt76 mac80211 libarc4 cfg80211 r8169 realtek mdio_devres igc libphy ptp rfkill pps_core isofs cdrom hid_cmedia uas usb_storage hid_generic usbhid sd_mod xhci_pci xhci_hcd ahci libahci libata nvme usbcore nvme_core scsi_mod t10_pi crc64_rocksoft crc32_pclmul crc64 amd_sfh scsi_common usb_common crc_t10dif i2c_hid_acpi crct10dif_common i2c_hid video hid
Oct 19 23:06:13 kernel: [   40.024195] CR2: 0000000000006500
Oct 19 23:06:13 kernel: [   40.024196] ---[ end trace 0000000000000000 ]---
Oct 19 23:06:13 kernel: [   40.024197] RIP: 0010:try_to_grab_pending+0x2d/0x180
Oct 19 23:06:13 kernel: [   40.024199] Code: 00 00 41 55 41 54 55 48 89 d5 53 48 89 fb 9c 58 0f 1f 40 00 48 89 c2 fa 0f 1f 44 00 00 48 89 55 00 40 84 f6 0f 85 a6 00 00 00 <f0> 48 0f ba 2b 00 72 0d 31 c0 5b 5d 41 5c 41 5d e9 0e a6 b4 00 e8
Oct 19 23:06:13 kernel: [   40.024200] RSP: 0018:ffffbba9c1c47d70 EFLAGS: 00010046
Oct 19 23:06:13 kernel: [   40.024201] RAX: 0000000000000246 RBX: 0000000000006500 RCX: 0000000000000000
Oct 19 23:06:13 kernel: [   40.024202] RDX: 0000000000000246 RSI: 0000000000000000 RDI: 0000000000006500
Oct 19 23:06:13 kernel: [   40.024203] RBP: ffffbba9c1c47d98 R08: 0000000000000000 R09: 000000008020001b
Oct 19 23:06:13 kernel: [   40.024204] R10: 0000000000000032 R11: ffff9f26503df400 R12: 0000000000006500
Oct 19 23:06:13 kernel: [   40.024205] R13: ffff9f2658904c80 R14: ffff9f264162e000 R15: ffffffffc0769128
Oct 19 23:06:13 kernel: [   40.024206] FS:  00007f9566c85740(0000) GS:ffff9f2d2f780000(0000) knlGS:0000000000000000
Oct 19 23:06:13 kernel: [   40.024207] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Oct 19 23:06:13 kernel: [   40.024208] CR2: 0000000000006500 CR3: 0000000111da8000 CR4: 0000000000350ee0
Oct 19 23:06:37 kernel: [   64.026097] usb 3-2: new high-speed USB device number 2 using xhci_hcd
Oct 19 23:06:38 kernel: [   64.181550] usb 3-2: New USB device found, idVendor=056e, idProduct=6036, bcdDevice= 1.00
Oct 19 23:06:38 kernel: [   64.182339] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Oct 19 23:06:38 kernel: [   64.182927] usb 3-2: Product: MF-SU2B
Oct 19 23:06:38 kernel: [   64.183369] usb 3-2: Manufacturer: ELECOM
Oct 19 23:06:38 kernel: [   64.183799] usb 3-2: SerialNumber: 07005A6D39DFF802
Oct 19 23:06:38 kernel: [   64.184436] usb-storage 3-2:1.0: USB Mass Storage device detected
Oct 19 23:06:38 kernel: [   64.185140] scsi host4: usb-storage 3-2:1.0
Oct 19 23:06:39 kernel: [   65.212717] scsi 4:0:0:0: Direct-Access     ELECOM   MF-SU2B          PMAP PQ: 0 ANSI: 6
Oct 19 23:06:39 kernel: [   66.058284] sd 4:0:0:0: [sdd] 15654912 512-byte logical blocks: (8.02 GB/7.46 GiB)
Oct 19 23:06:39 kernel: [   66.059752] sd 4:0:0:0: [sdd] Write Protect is off
Oct 19 23:06:39 kernel: [   66.060158] sd 4:0:0:0: [sdd] Mode Sense: 23 00 00 00
Oct 19 23:06:39 kernel: [   66.061301] sd 4:0:0:0: [sdd] No Caching mode page found
Oct 19 23:06:39 kernel: [   66.061687] sd 4:0:0:0: [sdd] Assuming drive cache: write through
Oct 19 23:06:39 kernel: [   66.065619]  sdd: sdd1 sdd2 sdd3
Oct 19 23:06:39 kernel: [   66.066305] sd 4:0:0:0: [sdd] Attached SCSI removable disk
Oct 19 23:06:57 init: starting pid 382, tty '/dev/tty2': '-/bin/sh'
Oct 19 23:07:45 kernel: [  131.682857] EXT4-fs (sdd3): mounting ext2 file system using the ext4 subsystem
Oct 19 23:07:45 kernel: [  131.714616] EXT4-fs (sdd3): mounted filesystem without journal. Quota mode: none.

Reply to: