* Re: [BUG] rtw88_8723de: Wi-Fi and Bluetooth fail after warm reboot
2026-07-31 20:30 ` Lovekesh Solanki
@ 2026-08-01 8:00 ` Snake Pilot
2026-08-01 16:09 ` Lovekesh Solanki
0 siblings, 1 reply; 6+ messages in thread
From: Snake Pilot @ 2026-08-01 8:00 UTC (permalink / raw)
To: Lovekesh Solanki; +Cc: linux-wireless, pkshih, linux-usb, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 5436 bytes --]
Hello Lovekesh,
Thank you for the diagnostic patch. I applied it to the Debian 7.1.3-1
source and rebuilt the affected bluetooth, btusb/btrtl, and rtw88 modules.
The test boot used kernel 7.1.3+deb14-amd64. The kernel taint was 12288 due
to the locally built, unsigned modules.
I started from a cold boot where both Wi-Fi and Bluetooth worked, disabled
the existing shutdown workaround for this reboot, and performed a normal
warm reboot to the same patched kernel.
The warm reboot reproduced both failures. At the actual warm shutdown
(01:35:26), the previous-boot journal shows that the Bluetooth core shutdown
path and Realtek callback did run and reported success:
Bluetooth: hci0: diag: hci_dev_shutdown: HCI_UP=1 HCI_UNREGISTER=0
shutdown_cb=btrtl_shutdown_realtek [btrtl]
Bluetooth: hci0: diag: calling vendor shutdown callback
Bluetooth: hci0: diag: btrtl_shutdown_realtek: sending HCI_OP_RESET
Bluetooth: hci0: diag: btrtl_shutdown_realtek: HCI_OP_RESET completed OK
Bluetooth: hci0: diag: vendor shutdown returned 0
However, there is no `btusb: diag: device_shutdown()` message and no
`diag: btusb_disconnect` message in that boot journal.
While checking why the btusb shutdown message was absent, I noticed that
`usb_register_driver()` unconditionally assigns:
new_driver->driver.shutdown = usb_shutdown_interface;
Therefore the diagnostic callback assigned through
`btusb_driver.driver.shutdown` is overwritten during USB driver registration.
USB interface drivers expose their own callback through the top-level
`struct usb_driver.shutdown` member instead (for example, uas_driver). A
follow-up diagnostic callback would need the `struct usb_interface *`
signature and this registration:
static void btusb_shutdown(struct usb_interface *intf)
...
.shutdown = btusb_shutdown,
This explains the missing btusb shutdown log, although it does not by itself
explain or fix the retained hardware state. I can test a corrected diagnostic
or a specific USB reset/shutdown sequence if useful.
For completeness, an identical successful HCI shutdown sequence also appears
once during initial boot at 01:30:57. The sequence at 01:35:26 is the one from
the tested warm shutdown.
On the next boot, Bluetooth again failed to enumerate with error -71. The
rtw88 diagnostic logging showed:
rtw88_8723de 0000:02:00.0: diag: pre-toggle REG_SYS_PW_CTRL=0x12,
poll offset=0x5 want=0x0
rtw88_8723de 0000:02:00.0: diag: post-toggle REG_SYS_PW_CTRL=0x1a,
retry poll read=0x01
rtw88_8723de 0000:02:00.0: mac power on failed
rtw88_8723de 0000:02:00.0: probe with driver rtw88_8723de failed
with error -16
No Wi-Fi interface was created and the Bluetooth USB interfaces were absent.
I had to use the 30-second complete power-off procedure to recover the combo
device afterward.
I attached `journal-kernel-previous.txt`, which is the requested complete
`journalctl -k -b -1` output. I also attached `journal-kernel-current.txt`
because it contains the rtw88 register diagnostics and the reproduced -71/-16
failures from the boot immediately following that shutdown.
Regards,
Snake
El vie, 31 jul 2026 a la(s) 2:30 p.m., Lovekesh Solanki
(lovekeshsolanki00@gmail.com) escribió:
>
> Thanks for additional testing and logs,
>
> On Fri, Jul 31, 2026 at 03:58:32AM -0600, Snake Pilot wrote:
> > Module unloaded Extra delay Wi-Fi Bluetooth
> > ------------------------------------------------------------------------
> > rtw88_8723de 0 seconds failed (-16) failed (-71)
> > rtw88_8723de 1 second failed (-16) failed (-71)
> > rtw88_8723de 3 seconds failed (-16) failed (-71)
> > rtw88_8723de 5 seconds failed (-16) failed (-71)
> >
> > btusb 0 seconds worked worked
> > btusb 1 second worked worked
> > btusb 3 seconds worked worked
> > btusb 5 seconds worked worked
> I'd say this rules out anything in rtw88 and we should focus on btusb,
> since unloading it fixed both functions.
>
> > No Wi-Fi interface appeared, and Bluetooth remained absent. Thus, the PCI bus
> > reset did not recover the device after the failure had occurred.
> Yeah and with -71 above seems like chip isn't answering read descriptors
> at all.
>
> The previous boot journal there's no other bluetooth activity logged
> after boot, so a graceful bluetooth shutdown doesn't seem to be
> happening on a warm reboot, but it does work when you explicitely unbind
> it.
>
> Problem could be in the power state chip may be left in a state warm
> reboot cannot clear.
>
> A somewhat similar issue with the Qualcomm QCA6390 combo 7e7bbddd029b
> ("qca6390 enable failure after warm reboot"), where they fixed it by
> simply making sure chip got proper reset/shutdown command before
> restart. This could also work for our case but needs confirmation.
>
> I'm attaching a small patch that just adds extra logging around the
> shutdown path for this chip to see what's been invoked and what not
> before a warm reboot and if it even completes.
>
> Could you apply it and perform a simple warm reboot and send the
> journalctl -k -b -1 after it?
>
> Regards,
> Lovekesh
>
[-- Attachment #2: journal-kernel-previous.txt --]
[-- Type: text/plain, Size: 109920 bytes --]
ago 01 01:30:52 test-laptop kernel: Linux version 7.1.3+deb14-amd64 (debian-kernel@lists.debian.org) (x86_64-linux-gnu-gcc-15 (Debian 15.3.0-1) 15.3.0, GNU ld (GNU Binutils for Debian) 2.46.50.20260617) #1 SMP PREEMPT_DYNAMIC Debian 7.1.3-1 (2026-07-04)
ago 01 01:30:52 test-laptop kernel: Command line: BOOT_IMAGE=/vmlinuz-7.1.3+deb14-amd64 root=UUID=<redacted-uuid> ro rootflags=subvol=@
ago 01 01:30:52 test-laptop kernel: BIOS-provided physical RAM map:
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000002cfff] System RAM
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000000002d000-0x000000000002dfff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000000002e000-0x000000000002efff] System RAM
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000000002f000-0x0000000000034fff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x0000000000035000-0x0000000000087fff] System RAM
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x0000000000088000-0x00000000000fffff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000079fadfff] System RAM
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x0000000079fae000-0x000000007b59dfff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000007b59e000-0x000000007bc8dfff] ACPI NVS
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000007bc8e000-0x000000007bd0dfff] ACPI data
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000007bd0e000-0x000000007bd0efff] System RAM
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x000000007bd0f000-0x000000007f7fffff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [gap 0x000000007f800000-0x00000000dfffffff]
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [gap 0x00000000f0000000-0x00000000fdffffff]
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [gap 0x00000000fe011000-0x00000000fed0ffff]
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [gap 0x00000000fed1a000-0x00000000fed83fff]
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [gap 0x00000000fed85000-0x00000000fedfffff]
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [gap 0x00000000fee01000-0x00000000ff2fffff]
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x00000000ff300000-0x00000000ffffffff] device reserved
ago 01 01:30:52 test-laptop kernel: BIOS-e820: [mem 0x0000000100000000-0x000000027e7fffff] System RAM
ago 01 01:30:52 test-laptop kernel: NX (Execute Disable) protection: active
ago 01 01:30:52 test-laptop kernel: APIC: Static calls initialized
ago 01 01:30:52 test-laptop kernel: efi: EFI v2.6 by INSYDE Corp.
ago 01 01:30:52 test-laptop kernel: efi: TPMFinalLog=0x7b575000 ACPI=0x7bd0d000 ACPI 2.0=0x7bd0d014 SMBIOS=0x7a807000 SMBIOS 3.0=0x7a804000 ESRT=0x7a800818 MEMATTR=0x6a823018 MOKvar=0x7a7ef000 INITRD=0x5edacd18 RNG=0x7bc9c018 TPMEventLog=0x7bc97018
ago 01 01:30:52 test-laptop kernel: random: crng init done
ago 01 01:30:52 test-laptop kernel: efi: Remove mem64: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
ago 01 01:30:52 test-laptop kernel: e820: remove [mem 0xe0000000-0xefffffff] device reserved
ago 01 01:30:52 test-laptop kernel: efi: Not removing mem65: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
ago 01 01:30:52 test-laptop kernel: efi: Not removing mem66: MMIO range=[0xfed10000-0xfed19fff] (40KB) from e820 map
ago 01 01:30:52 test-laptop kernel: efi: Not removing mem67: MMIO range=[0xfed84000-0xfed84fff] (4KB) from e820 map
ago 01 01:30:52 test-laptop kernel: efi: Not removing mem68: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
ago 01 01:30:52 test-laptop kernel: efi: Remove mem69: MMIO range=[0xff300000-0xffffffff] (13MB) from e820 map
ago 01 01:30:52 test-laptop kernel: e820: remove [mem 0xff300000-0xffffffff] device reserved
ago 01 01:30:52 test-laptop kernel: secureboot: Secure boot disabled
ago 01 01:30:52 test-laptop kernel: DMI: SMBIOS 3.0.1 present.
ago 01 01:30:52 test-laptop kernel: DMI: HP HP Laptop 15-da1xxx/8532, BIOS F.48 04/26/2024
ago 01 01:30:52 test-laptop kernel: DMI: Memory slots populated: 1/2
ago 01 01:30:52 test-laptop kernel: tsc: Detected 2300.000 MHz processor
ago 01 01:30:52 test-laptop kernel: tsc: Detected 2299.968 MHz TSC
ago 01 01:30:52 test-laptop kernel: e820: update [mem 0x00000000-0x00000fff] System RAM ==> device reserved
ago 01 01:30:52 test-laptop kernel: e820: remove [mem 0x000a0000-0x000fffff] System RAM
ago 01 01:30:52 test-laptop kernel: last_pfn = 0x27e800 max_arch_pfn = 0x400000000
ago 01 01:30:52 test-laptop kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
ago 01 01:30:52 test-laptop kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
ago 01 01:30:52 test-laptop kernel: last_pfn = 0x7bd0f max_arch_pfn = 0x400000000
ago 01 01:30:52 test-laptop kernel: esrt: Reserving ESRT space from 0x000000007a800818 to 0x000000007a800850.
ago 01 01:30:52 test-laptop kernel: Using GB pages for direct mapping
ago 01 01:30:52 test-laptop kernel: RAMDISK: [mem 0x592fc000-0x5ae76fff]
ago 01 01:30:52 test-laptop kernel: ACPI: Early table checksum verification disabled
ago 01 01:30:52 test-laptop kernel: ACPI: RSDP 0x000000007BD0D014 000024 (v02 HPQOEM)
ago 01 01:30:52 test-laptop kernel: ACPI: XSDT 0x000000007BCEB188 000124 (v01 HPQOEM SLIC-MPC 00000002 HP 01000013)
ago 01 01:30:52 test-laptop kernel: ACPI: FACP 0x000000007BCE7000 00010C (v05 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: DSDT 0x000000007BCA3000 0409AB (v02 HPQOEM SLIC-MPC 00000000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: FACS 0x000000007BC4C000 000040
ago 01 01:30:52 test-laptop kernel: ACPI: UEFI 0x000000007BD0C000 000236 (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BD08000 0031C6 (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BD06000 001B5F (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BD05000 0000F5 (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: UEFI 0x000000007BD04000 000042 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: IHIS 0x000000007BD03000 000038 (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BD02000 00045A (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BD01000 000046 (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: TPM2 0x000000007BD00000 000034 (v03 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCFF000 000169 (v01 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCF8000 006957 (v01 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: MSDM 0x000000007BCF7000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCF3000 003D8D (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: LPIT 0x000000007BCF2000 000094 (v01 HPQOEM INSYDE 00000000 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: WSMT 0x000000007BCF1000 000028 (v01 HPQOEM INSYDE 00000000 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCF0000 000C2F (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCEE000 00149F (v02 HPQOEM INSYDE 00000000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: DBGP 0x000000007BCED000 000034 (v01 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: DBG2 0x000000007BCEC000 000054 (v00 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCEA000 000B9F (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: ASF! 0x000000007BCE9000 0000A5 (v32 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: ECDT 0x000000007BCE8000 000069 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: HPET 0x000000007BCE6000 000038 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: APIC 0x000000007BCE5000 00012C (v03 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: MCFG 0x000000007BCE4000 00003C (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCA2000 0000DB (v01 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BCA1000 000F38 (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: DMAR 0x000000007BCA0000 0000A8 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0x000000007BC9F000 000723 (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: FPDT 0x000000007BC9E000 000044 (v01 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: BGRT 0x000000007BC9D000 000038 (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving FACP table memory at [mem 0x7bce7000-0x7bce710b]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving DSDT table memory at [mem 0x7bca3000-0x7bce39aa]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving FACS table memory at [mem 0x7bc4c000-0x7bc4c03f]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving UEFI table memory at [mem 0x7bd0c000-0x7bd0c235]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd08000-0x7bd0b1c5]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd06000-0x7bd07b5e]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd05000-0x7bd050f4]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving UEFI table memory at [mem 0x7bd04000-0x7bd04041]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving IHIS table memory at [mem 0x7bd03000-0x7bd03037]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd02000-0x7bd02459]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd01000-0x7bd01045]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving TPM2 table memory at [mem 0x7bd00000-0x7bd00033]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcff000-0x7bcff168]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcf8000-0x7bcfe956]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving MSDM table memory at [mem 0x7bcf7000-0x7bcf7054]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcf3000-0x7bcf6d8c]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving LPIT table memory at [mem 0x7bcf2000-0x7bcf2093]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving WSMT table memory at [mem 0x7bcf1000-0x7bcf1027]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcf0000-0x7bcf0c2e]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcee000-0x7bcef49e]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving DBGP table memory at [mem 0x7bced000-0x7bced033]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving DBG2 table memory at [mem 0x7bcec000-0x7bcec053]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcea000-0x7bceab9e]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving ASF! table memory at [mem 0x7bce9000-0x7bce90a4]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving ECDT table memory at [mem 0x7bce8000-0x7bce8068]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving HPET table memory at [mem 0x7bce6000-0x7bce6037]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving APIC table memory at [mem 0x7bce5000-0x7bce512b]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving MCFG table memory at [mem 0x7bce4000-0x7bce403b]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bca2000-0x7bca20da]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bca1000-0x7bca1f37]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving DMAR table memory at [mem 0x7bca0000-0x7bca00a7]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bc9f000-0x7bc9f722]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving FPDT table memory at [mem 0x7bc9e000-0x7bc9e043]
ago 01 01:30:52 test-laptop kernel: ACPI: Reserving BGRT table memory at [mem 0x7bc9d000-0x7bc9d037]
ago 01 01:30:52 test-laptop kernel: No NUMA configuration found
ago 01 01:30:52 test-laptop kernel: Faking a node at [mem 0x0000000000000000-0x000000027e7fffff]
ago 01 01:30:52 test-laptop kernel: NODE_DATA(0) allocated [mem 0x27e7d5200-0x27e7fffff]
ago 01 01:30:52 test-laptop kernel: Reserving Intel graphics memory at [mem 0x7d800000-0x7f7fffff]
ago 01 01:30:52 test-laptop kernel: ACPI: PM-Timer IO Port: 0x1808
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
ago 01 01:30:52 test-laptop kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
ago 01 01:30:52 test-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ago 01 01:30:52 test-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ago 01 01:30:52 test-laptop kernel: ACPI: Using ACPI (MADT) for SMP configuration information
ago 01 01:30:52 test-laptop kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
ago 01 01:30:52 test-laptop kernel: e820: update [mem 0x6a8d7000-0x6a8e0fff] System RAM ==> device reserved
ago 01 01:30:52 test-laptop kernel: TSC deadline timer available
ago 01 01:30:52 test-laptop kernel: CPU topo: Max. logical packages: 1
ago 01 01:30:52 test-laptop kernel: CPU topo: Max. logical nodes: 1
ago 01 01:30:52 test-laptop kernel: CPU topo: Num. nodes per package: 1
ago 01 01:30:52 test-laptop kernel: CPU topo: Max. logical dies: 1
ago 01 01:30:52 test-laptop kernel: CPU topo: Max. dies per package: 1
ago 01 01:30:52 test-laptop kernel: CPU topo: Max. threads per core: 2
ago 01 01:30:52 test-laptop kernel: CPU topo: Num. cores per package: 2
ago 01 01:30:52 test-laptop kernel: CPU topo: Num. threads per package: 4
ago 01 01:30:52 test-laptop kernel: CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x0002d000-0x0002dfff]
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x0002f000-0x00034fff]
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x00088000-0x000fffff]
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x6a8d7000-0x6a8e0fff]
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x79fae000-0x7bd0dfff]
ago 01 01:30:52 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x7bd0f000-0xffffffff]
ago 01 01:30:52 test-laptop kernel: [gap 0x7f800000-0xfdffffff] available for PCI devices
ago 01 01:30:52 test-laptop kernel: Booting paravirtualized kernel on bare hardware
ago 01 01:30:52 test-laptop kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
ago 01 01:30:52 test-laptop kernel: Zone ranges:
ago 01 01:30:52 test-laptop kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
ago 01 01:30:52 test-laptop kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
ago 01 01:30:52 test-laptop kernel: Normal [mem 0x0000000100000000-0x000000027e7fffff]
ago 01 01:30:52 test-laptop kernel: Device empty
ago 01 01:30:52 test-laptop kernel: Movable zone start for each node
ago 01 01:30:52 test-laptop kernel: Early memory node ranges
ago 01 01:30:52 test-laptop kernel: node 0: [mem 0x0000000000001000-0x000000000002cfff]
ago 01 01:30:52 test-laptop kernel: node 0: [mem 0x000000000002e000-0x000000000002efff]
ago 01 01:30:52 test-laptop kernel: node 0: [mem 0x0000000000035000-0x0000000000087fff]
ago 01 01:30:52 test-laptop kernel: node 0: [mem 0x0000000000100000-0x0000000079fadfff]
ago 01 01:30:52 test-laptop kernel: node 0: [mem 0x000000007bd0e000-0x000000007bd0efff]
ago 01 01:30:52 test-laptop kernel: node 0: [mem 0x0000000100000000-0x000000027e7fffff]
ago 01 01:30:52 test-laptop kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000027e7fffff]
ago 01 01:30:52 test-laptop kernel: On node 0, zone DMA: 1 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: On node 0, zone DMA: 1 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: On node 0, zone DMA: 6 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: On node 0, zone DMA: 120 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: On node 0, zone DMA32: 7520 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: On node 0, zone Normal: 17137 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: On node 0, zone Normal: 6144 pages in unavailable ranges
ago 01 01:30:52 test-laptop kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
ago 01 01:30:52 test-laptop kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u524288
ago 01 01:30:52 test-laptop kernel: pcpu-alloc: s221184 r8192 d28672 u524288 alloc=1*2097152
ago 01 01:30:52 test-laptop kernel: pcpu-alloc: [0] 0 1 2 3
ago 01 01:30:52 test-laptop kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-7.1.3+deb14-amd64 root=UUID=<redacted-uuid> ro rootflags=subvol=@
ago 01 01:30:52 test-laptop kernel: printk: log buffer data + meta data: 131072 + 557056 = 688128 bytes
ago 01 01:30:52 test-laptop kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
ago 01 01:30:52 test-laptop kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
ago 01 01:30:52 test-laptop kernel: software IO TLB: area num 4.
ago 01 01:30:52 test-laptop kernel: Fallback order for Node 0: 0
ago 01 01:30:52 test-laptop kernel: Built 1 zonelists, mobility grouping on. Total pages: 2066223
ago 01 01:30:52 test-laptop kernel: Policy zone: Normal
ago 01 01:30:52 test-laptop kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
ago 01 01:30:52 test-laptop kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
ago 01 01:30:52 test-laptop kernel: ftrace: allocating 48744 entries in 192 pages
ago 01 01:30:52 test-laptop kernel: ftrace: allocated 192 pages with 2 groups
ago 01 01:30:52 test-laptop kernel: Dynamic Preempt: lazy
ago 01 01:30:52 test-laptop kernel: rcu: Preemptible hierarchical RCU implementation.
ago 01 01:30:52 test-laptop kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
ago 01 01:30:52 test-laptop kernel: Trampoline variant of Tasks RCU enabled.
ago 01 01:30:52 test-laptop kernel: Rude variant of Tasks RCU enabled.
ago 01 01:30:52 test-laptop kernel: Tracing variant of Tasks RCU enabled.
ago 01 01:30:52 test-laptop kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
ago 01 01:30:52 test-laptop kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
ago 01 01:30:52 test-laptop kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
ago 01 01:30:52 test-laptop kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
ago 01 01:30:52 test-laptop kernel: NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
ago 01 01:30:52 test-laptop kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
ago 01 01:30:52 test-laptop kernel: Console: colour dummy device 80x25
ago 01 01:30:52 test-laptop kernel: printk: legacy console [tty0] enabled
ago 01 01:30:52 test-laptop kernel: ACPI: Core revision 20251212
ago 01 01:30:52 test-laptop kernel: hpet: HPET dysfunctional in PC10. Force disabled.
ago 01 01:30:52 test-laptop kernel: APIC: Switch to symmetric I/O mode setup
ago 01 01:30:52 test-laptop kernel: DMAR: Host address width 39
ago 01 01:30:52 test-laptop kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
ago 01 01:30:52 test-laptop kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
ago 01 01:30:52 test-laptop kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
ago 01 01:30:52 test-laptop kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
ago 01 01:30:52 test-laptop kernel: DMAR: RMRR base: 0x0000007b57d000 end: 0x0000007b59cfff
ago 01 01:30:52 test-laptop kernel: DMAR: RMRR base: 0x0000007d000000 end: 0x0000007f7fffff
ago 01 01:30:52 test-laptop kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
ago 01 01:30:52 test-laptop kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
ago 01 01:30:52 test-laptop kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
ago 01 01:30:52 test-laptop kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
ago 01 01:30:52 test-laptop kernel: x2apic enabled
ago 01 01:30:52 test-laptop kernel: APIC: Switched APIC routing to: cluster x2apic
ago 01 01:30:52 test-laptop kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x212717146a7, max_idle_ns: 440795291431 ns
ago 01 01:30:52 test-laptop kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4599.93 BogoMIPS (lpj=9199872)
ago 01 01:30:52 test-laptop kernel: x86/cpu: SGX disabled or unsupported by BIOS.
ago 01 01:30:52 test-laptop kernel: CPU0: Thermal monitoring enabled (TM1)
ago 01 01:30:52 test-laptop kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
ago 01 01:30:52 test-laptop kernel: Last level dTLB entries: 4KB 64, 2MB 32, 4MB 32, 1GB 4
ago 01 01:30:52 test-laptop kernel: process: using mwait in idle threads
ago 01 01:30:52 test-laptop kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
ago 01 01:30:52 test-laptop kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
ago 01 01:30:52 test-laptop kernel: SRBDS: Mitigation: Microcode
ago 01 01:30:52 test-laptop kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
ago 01 01:30:52 test-laptop kernel: RETBleed: Mitigation: Enhanced IBRS
ago 01 01:30:52 test-laptop kernel: ITS: Mitigation: Aligned branch/return thunks
ago 01 01:30:52 test-laptop kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
ago 01 01:30:52 test-laptop kernel: VMSCAPE: Mitigation: IBPB before exit to userspace
ago 01 01:30:52 test-laptop kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
ago 01 01:30:52 test-laptop kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
ago 01 01:30:52 test-laptop kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
ago 01 01:30:52 test-laptop kernel: active return thunk: its_return_thunk
ago 01 01:30:52 test-laptop kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
ago 01 01:30:52 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
ago 01 01:30:52 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
ago 01 01:30:52 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
ago 01 01:30:52 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
ago 01 01:30:52 test-laptop kernel: x86/fpu: xstate_offset[3]: 576, xstate_sizes[3]: 64
ago 01 01:30:52 test-laptop kernel: x86/fpu: xstate_offset[4]: 640, xstate_sizes[4]: 64
ago 01 01:30:52 test-laptop kernel: x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
ago 01 01:30:52 test-laptop kernel: pid_max: default: 32768 minimum: 301
ago 01 01:30:52 test-laptop kernel: landlock: Up and running.
ago 01 01:30:52 test-laptop kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
ago 01 01:30:52 test-laptop kernel: AppArmor: AppArmor initialized
ago 01 01:30:52 test-laptop kernel: TOMOYO Linux initialized
ago 01 01:30:52 test-laptop kernel: LSM support for eBPF active
ago 01 01:30:52 test-laptop kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
ago 01 01:30:52 test-laptop kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
ago 01 01:30:52 test-laptop kernel: VFS: Finished mounting rootfs on nullfs
ago 01 01:30:52 test-laptop kernel: smpboot: CPU0: Intel(R) Pentium(R) CPU 5405U @ 2.30GHz (family: 0x6, model: 0x8e, stepping: 0xc)
ago 01 01:30:52 test-laptop kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
ago 01 01:30:52 test-laptop kernel: ... version: 4
ago 01 01:30:52 test-laptop kernel: ... bit width: 48
ago 01 01:30:52 test-laptop kernel: ... generic counters: 4
ago 01 01:30:52 test-laptop kernel: ... generic bitmap: 000000000000000f
ago 01 01:30:52 test-laptop kernel: ... fixed-purpose counters: 3
ago 01 01:30:52 test-laptop kernel: ... fixed-purpose bitmap: 0000000000000007
ago 01 01:30:52 test-laptop kernel: ... value mask: 0000ffffffffffff
ago 01 01:30:52 test-laptop kernel: ... max period: 00007fffffffffff
ago 01 01:30:52 test-laptop kernel: ... global_ctrl mask: 000000070000000f
ago 01 01:30:52 test-laptop kernel: signal: max sigframe size: 2032
ago 01 01:30:52 test-laptop kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1024
ago 01 01:30:52 test-laptop kernel: rcu: Hierarchical SRCU implementation.
ago 01 01:30:52 test-laptop kernel: rcu: Max phase no-delay instances is 1000.
ago 01 01:30:52 test-laptop kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
ago 01 01:30:52 test-laptop kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
ago 01 01:30:52 test-laptop kernel: smp: Bringing up secondary CPUs ...
ago 01 01:30:52 test-laptop kernel: smpboot: x86: Booting SMP configuration:
ago 01 01:30:52 test-laptop kernel: .... node #0, CPUs: #1 #2 #3
ago 01 01:30:52 test-laptop kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
ago 01 01:30:52 test-laptop kernel: smp: Brought up 1 node, 4 CPUs
ago 01 01:30:52 test-laptop kernel: smpboot: Total of 4 processors activated (18399.74 BogoMIPS)
ago 01 01:30:52 test-laptop kernel: node 0 deferred pages initialised in 16ms
ago 01 01:30:52 test-laptop kernel: Memory: 7775148K/8264892K available (18094K kernel code, 3392K rwdata, 13640K rodata, 4572K init, 5308K bss, 475256K reserved, 0K cma-reserved)
ago 01 01:30:52 test-laptop kernel: devtmpfs: initialized
ago 01 01:30:52 test-laptop kernel: x86/mm: Memory block size: 128MB
ago 01 01:30:52 test-laptop kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7b59e000-0x7bc8dfff] (7274496 bytes)
ago 01 01:30:52 test-laptop kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
ago 01 01:30:52 test-laptop kernel: posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
ago 01 01:30:52 test-laptop kernel: futex hash table entries: 1024 (65536 bytes on 1 NUMA nodes, total 64 KiB, linear).
ago 01 01:30:52 test-laptop kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
ago 01 01:30:52 test-laptop kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
ago 01 01:30:52 test-laptop kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
ago 01 01:30:52 test-laptop kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
ago 01 01:30:52 test-laptop kernel: audit: initializing netlink subsys (disabled)
ago 01 01:30:52 test-laptop kernel: audit: type=2000 audit(1785569450.000:1): state=initialized audit_enabled=0 res=1
ago 01 01:30:52 test-laptop kernel: thermal_sys: Registered thermal governor 'fair_share'
ago 01 01:30:52 test-laptop kernel: thermal_sys: Registered thermal governor 'bang_bang'
ago 01 01:30:52 test-laptop kernel: thermal_sys: Registered thermal governor 'step_wise'
ago 01 01:30:52 test-laptop kernel: thermal_sys: Registered thermal governor 'user_space'
ago 01 01:30:52 test-laptop kernel: thermal_sys: Registered thermal governor 'power_allocator'
ago 01 01:30:52 test-laptop kernel: cpuidle: using governor ladder
ago 01 01:30:52 test-laptop kernel: cpuidle: using governor menu
ago 01 01:30:52 test-laptop kernel: Freeing SMP alternatives memory: 48K
ago 01 01:30:52 test-laptop kernel: efi: Freeing EFI boot services memory: 184280K
ago 01 01:30:52 test-laptop kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
ago 01 01:30:52 test-laptop kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
ago 01 01:30:52 test-laptop kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
ago 01 01:30:52 test-laptop kernel: PCI: Using configuration type 1 for base access
ago 01 01:30:52 test-laptop kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
ago 01 01:30:52 test-laptop kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
ago 01 01:30:52 test-laptop kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
ago 01 01:30:52 test-laptop kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
ago 01 01:30:52 test-laptop kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
ago 01 01:30:52 test-laptop kernel: ACPI: Added _OSI(Module Device)
ago 01 01:30:52 test-laptop kernel: ACPI: Added _OSI(Processor Device)
ago 01 01:30:52 test-laptop kernel: ACPI: Added _OSI(Processor Aggregator Device)
ago 01 01:30:52 test-laptop kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
ago 01 01:30:52 test-laptop kernel: ACPI: EC: EC started
ago 01 01:30:52 test-laptop kernel: ACPI: EC: interrupt blocked
ago 01 01:30:52 test-laptop kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
ago 01 01:30:52 test-laptop kernel: ACPI: EC: Boot ECDT EC used to handle transactions
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_: platform _OSC: OS support mask [002e7eff]
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_: platform _OSC: OS control mask [002e7eff]
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C81554000 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C8139C800 0005A2 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C812C5900 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C81333600 000149 (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C81398000 000724 (v02 PmRef HwpLvt 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C8139F800 0005FC (v02 PmRef ApIst 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C81557800 000317 (v02 PmRef ApHwp 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C81D3F000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:30:52 test-laptop kernel: ACPI: SSDT 0xFFFF8F0C81554C00 00030A (v02 PmRef ApCst 00003000 INTL 20160422)
ago 01 01:30:52 test-laptop kernel: ACPI: Interpreter enabled
ago 01 01:30:52 test-laptop kernel: ACPI: PM: (supports S0 S3 S4 S5)
ago 01 01:30:52 test-laptop kernel: ACPI: Using IOAPIC for interrupt routing
ago 01 01:30:52 test-laptop kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ago 01 01:30:52 test-laptop kernel: PCI: Ignoring E820 reservations for host bridge windows
ago 01 01:30:52 test-laptop kernel: ACPI: Enabled 8 GPEs in block 00 to 7F
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
ago 01 01:30:52 test-laptop kernel: acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
ago 01 01:30:52 test-laptop kernel: ACPI: \_TZ_.FN00: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_TZ_.FN01: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_TZ_.FN02: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_TZ_.FN03: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \_TZ_.FN04: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: \PIN_: New power resource
ago 01 01:30:52 test-laptop kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
ago 01 01:30:52 test-laptop kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
ago 01 01:30:52 test-laptop kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
ago 01 01:30:52 test-laptop kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR]
ago 01 01:30:52 test-laptop kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
ago 01 01:30:52 test-laptop kernel: PCI host bridge to bus 0000:00
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: root bus resource [mem 0x7f800000-0xdfffffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:00.0: [8086:3e35] type 00 class 0x060000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: [8086:3ea1] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: BAR 2 [mem 0x80000000-0x9fffffff 64bit pref]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: BAR 4 [io 0x5000-0x503f]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:04.0: BAR 0 [mem 0xa1310000-0xa1317fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:08.0: BAR 0 [mem 0xa1320000-0xa1320fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:12.0: [8086:9df9] type 00 class 0x118000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:12.0: BAR 0 [mem 0xa1321000-0xa1321fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.0: [8086:9ded] type 00 class 0x0c0330 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.0: BAR 0 [mem 0xa1300000-0xa130ffff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.2: [8086:9def] type 00 class 0x050000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.2: BAR 0 [mem 0xa131c000-0xa131dfff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.2: BAR 2 [mem 0xa1322000-0xa1322fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:16.0: [8086:9de0] type 00 class 0x078000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:16.0: BAR 0 [mem 0xa1323000-0xa1323fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:16.0: PME# supported from D3hot
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: [8086:9dd3] type 00 class 0x010601 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: BAR 0 [mem 0xa131e000-0xa131ffff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: BAR 1 [mem 0xa1327000-0xa13270ff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: BAR 2 [io 0x5080-0x5087]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: BAR 3 [io 0x5088-0x508b]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: BAR 4 [io 0x5060-0x507f]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: BAR 5 [mem 0xa1326000-0xa13267ff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: PME# supported from D3hot
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: [8086:9db0] type 01 class 0x060400 PCIe Root Port
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: bridge window [io 0x4000-0x4fff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: bridge window [mem 0xa1200000-0xa12fffff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: [8086:9db1] type 01 class 0x060400 PCIe Root Port
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: PCI bridge to [bus 02]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: bridge window [io 0x3000-0x3fff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: bridge window [mem 0xa1100000-0xa11fffff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.0: [8086:9d85] type 00 class 0x060100 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.3: [8086:9dc8] type 00 class 0x040300 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.3: BAR 0 [mem 0xa1318000-0xa131bfff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.3: BAR 4 [mem 0xa1000000-0xa10fffff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.4: [8086:9da3] type 00 class 0x0c0500 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.4: BAR 0 [mem 0xa1324000-0xa13240ff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.4: BAR 4 [io 0x5040-0x505f]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.5: [8086:9da4] type 00 class 0x0c8000 conventional PCI endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: BAR 0 [io 0x4000-0x40ff]
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: BAR 2 [mem 0xa1204000-0xa1204fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: BAR 4 [mem 0xa1200000-0xa1203fff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: supports D1 D2
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
ago 01 01:30:52 test-laptop kernel: pci 0000:02:00.0: [10ec:d723] type 00 class 0x028000 PCIe Endpoint
ago 01 01:30:52 test-laptop kernel: pci 0000:02:00.0: BAR 0 [io 0x3000-0x30ff]
ago 01 01:30:52 test-laptop kernel: pci 0000:02:00.0: BAR 2 [mem 0xa1100000-0xa110ffff 64bit]
ago 01 01:30:52 test-laptop kernel: pci 0000:02:00.0: supports D1 D2
ago 01 01:30:52 test-laptop kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: PCI bridge to [bus 02]
ago 01 01:30:52 test-laptop kernel: ACPI: EC: interrupt unblocked
ago 01 01:30:52 test-laptop kernel: ACPI: EC: event unblocked
ago 01 01:30:52 test-laptop kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
ago 01 01:30:52 test-laptop kernel: ACPI: EC: GPE=0x17
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot ECDT EC initialization complete
ago 01 01:30:52 test-laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
ago 01 01:30:52 test-laptop kernel: iommu: Default domain type: Translated
ago 01 01:30:52 test-laptop kernel: iommu: DMA domain TLB invalidation policy: lazy mode
ago 01 01:30:52 test-laptop kernel: pps_core: LinuxPPS API ver. 1 registered
ago 01 01:30:52 test-laptop kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
ago 01 01:30:52 test-laptop kernel: PTP clock support registered
ago 01 01:30:52 test-laptop kernel: EDAC MC: Ver: 3.0.0
ago 01 01:30:52 test-laptop kernel: efivars: Registered efivars operations
ago 01 01:30:52 test-laptop kernel: NetLabel: Initializing
ago 01 01:30:52 test-laptop kernel: NetLabel: domain hash size = 128
ago 01 01:30:52 test-laptop kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
ago 01 01:30:52 test-laptop kernel: NetLabel: unlabeled traffic allowed by default
ago 01 01:30:52 test-laptop kernel: PCI: Using ACPI for IRQ routing
ago 01 01:30:52 test-laptop kernel: PCI: pci_cache_line_size set to 64 bytes
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x0002d000-0x0002ffff]
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x0002f000-0x0002ffff]
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x00088000-0x0008ffff]
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x6a8d7000-0x6bffffff]
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x79fae000-0x7bffffff]
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x7bd0f000-0x7bffffff]
ago 01 01:30:52 test-laptop kernel: e820: register RAM buffer resource [mem 0x27e800000-0x27fffffff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: vgaarb: bridge control possible
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
ago 01 01:30:52 test-laptop kernel: vgaarb: loaded
ago 01 01:30:52 test-laptop kernel: clocksource: Switched to clocksource tsc-early
ago 01 01:30:52 test-laptop kernel: VFS: Disk quotas dquot_6.6.0
ago 01 01:30:52 test-laptop kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
ago 01 01:30:52 test-laptop kernel: AppArmor: AppArmor Filesystem Enabled
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:00: Could not reserve [mem 0x40000000-0x403fffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfd000000-0xfd69ffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfd6b0000-0xfd6cffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfd6f0000-0xfdffffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Could not reserve [mem 0xfe000000-0xfe01ffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfe200000-0xfe7fffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xff000000-0xffffffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:01: Could not reserve [io 0x1800-0x18fe]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:02: Reserved [io 0x2000-0x20fe]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x002e-0x002f]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x004e-0x004f]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0061]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0063]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0065]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0067]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0068]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x006c]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0070]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0080]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0092]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x00b2-0x00b3]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Reserved [io 0x0680-0x069f]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Reserved [io 0x164e-0x164f]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:03: Reserved [io 0xfd60-0xfd63]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:04: Reserved [mem 0xfd6e0000-0xfd6effff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:04: Reserved [mem 0xfd6d0000-0xfd6dffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:04: Reserved [mem 0xfd6a0000-0xfd6affff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed10000-0xfed17fff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed18000-0xfed18fff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed19000-0xfed19fff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xe0000000-0xefffffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed20000-0xfed3ffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Could not reserve [mem 0xfed90000-0xfed93fff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Could not reserve [mem 0xfed45000-0xfed8ffff]
ago 01 01:30:52 test-laptop kernel: acpi PNP0C02:06: Could not reserve [mem 0xfee00000-0xfeefffff]
ago 01 01:30:52 test-laptop kernel: pnp: PnP ACPI init
ago 01 01:30:52 test-laptop kernel: pnp: PnP ACPI: found 2 devices
ago 01 01:30:52 test-laptop kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
ago 01 01:30:52 test-laptop kernel: NET: Registered PF_INET protocol family
ago 01 01:30:52 test-laptop kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
ago 01 01:30:52 test-laptop kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
ago 01 01:30:52 test-laptop kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
ago 01 01:30:52 test-laptop kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
ago 01 01:30:52 test-laptop kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
ago 01 01:30:52 test-laptop kernel: TCP: Hash tables configured (established 65536 bind 65536)
ago 01 01:30:52 test-laptop kernel: MPTCP token hash table entries: 8192 (order: 6, 196608 bytes, linear)
ago 01 01:30:52 test-laptop kernel: UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
ago 01 01:30:52 test-laptop kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
ago 01 01:30:52 test-laptop kernel: NET: Registered PF_XDP protocol family
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: bridge window [io 0x4000-0x4fff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: bridge window [mem 0xa1200000-0xa12fffff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: PCI bridge to [bus 02]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: bridge window [io 0x3000-0x3fff]
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: bridge window [mem 0xa1100000-0xa11fffff]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: resource 7 [mem 0x7f800000-0xdfffffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:01: resource 1 [mem 0xa1200000-0xa12fffff]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
ago 01 01:30:52 test-laptop kernel: pci_bus 0000:02: resource 1 [mem 0xa1100000-0xa11fffff]
ago 01 01:30:52 test-laptop kernel: PCI: CLS 64 bytes, default 64
ago 01 01:30:52 test-laptop kernel: DMAR: No ATSR found
ago 01 01:30:52 test-laptop kernel: DMAR: No SATC found
ago 01 01:30:52 test-laptop kernel: DMAR: dmar0: Using Queued invalidation
ago 01 01:30:52 test-laptop kernel: DMAR: dmar1: Using Queued invalidation
ago 01 01:30:52 test-laptop kernel: Trying to unpack rootfs image as initramfs...
ago 01 01:30:52 test-laptop kernel: pci 0000:00:02.0: Adding to iommu group 0
ago 01 01:30:52 test-laptop kernel: pci 0000:00:00.0: Adding to iommu group 1
ago 01 01:30:52 test-laptop kernel: pci 0000:00:04.0: Adding to iommu group 2
ago 01 01:30:52 test-laptop kernel: pci 0000:00:08.0: Adding to iommu group 3
ago 01 01:30:52 test-laptop kernel: pci 0000:00:12.0: Adding to iommu group 4
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.0: Adding to iommu group 5
ago 01 01:30:52 test-laptop kernel: pci 0000:00:14.2: Adding to iommu group 5
ago 01 01:30:52 test-laptop kernel: pci 0000:00:16.0: Adding to iommu group 6
ago 01 01:30:52 test-laptop kernel: pci 0000:00:17.0: Adding to iommu group 7
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.0: Adding to iommu group 8
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1d.1: Adding to iommu group 9
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.0: Adding to iommu group 10
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.3: Adding to iommu group 10
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.4: Adding to iommu group 10
ago 01 01:30:52 test-laptop kernel: pci 0000:00:1f.5: Adding to iommu group 10
ago 01 01:30:52 test-laptop kernel: pci 0000:01:00.0: Adding to iommu group 11
ago 01 01:30:52 test-laptop kernel: pci 0000:02:00.0: Adding to iommu group 12
ago 01 01:30:52 test-laptop kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
ago 01 01:30:52 test-laptop kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
ago 01 01:30:52 test-laptop kernel: software IO TLB: mapped [mem 0x000000006d278000-0x0000000071278000] (64MB)
ago 01 01:30:52 test-laptop kernel: platform rtc_cmos: registered fallback platform RTC device
ago 01 01:30:52 test-laptop kernel: Initialise system trusted keyrings
ago 01 01:30:52 test-laptop kernel: Key type blacklist registered
ago 01 01:30:52 test-laptop kernel: workingset: timestamp_bits=36 (anon: 32) max_order=21 bucket_order=0 (anon: 0)
ago 01 01:30:52 test-laptop kernel: fuse: init (API version 7.45)
ago 01 01:30:52 test-laptop kernel: integrity: Platform Keyring initialized
ago 01 01:30:52 test-laptop kernel: integrity: Machine keyring initialized
ago 01 01:30:52 test-laptop kernel: Key type asymmetric registered
ago 01 01:30:52 test-laptop kernel: Asymmetric key parser 'x509' registered
ago 01 01:30:52 test-laptop kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
ago 01 01:30:52 test-laptop kernel: io scheduler mq-deadline registered
ago 01 01:30:52 test-laptop kernel: ledtrig-cpu: registered to indicate activity on CPUs
ago 01 01:30:52 test-laptop kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
ago 01 01:30:52 test-laptop kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
ago 01 01:30:52 test-laptop kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
ago 01 01:30:52 test-laptop kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
ago 01 01:30:52 test-laptop kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
ago 01 01:30:52 test-laptop kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
ago 01 01:30:52 test-laptop kernel: Monitor-Mwait will be used to enter C-1 state
ago 01 01:30:52 test-laptop kernel: Monitor-Mwait will be used to enter C-2 state
ago 01 01:30:52 test-laptop kernel: Monitor-Mwait will be used to enter C-3 state
ago 01 01:30:52 test-laptop kernel: acpi LNXTHERM:00: registered as thermal_zone0
ago 01 01:30:52 test-laptop kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
ago 01 01:30:52 test-laptop kernel: acpi LNXTHERM:01: registered as thermal_zone1
ago 01 01:30:52 test-laptop kernel: ACPI: thermal: Thermal Zone [TZ01] (30 C)
ago 01 01:30:52 test-laptop kernel: acpi LNXTHERM:02: registered as thermal_zone2
ago 01 01:30:52 test-laptop kernel: ACPI: thermal: Thermal Zone [TZ02] (10 C)
ago 01 01:30:52 test-laptop kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
ago 01 01:30:52 test-laptop kernel: hpet_acpi_probe: no address or irqs in _CRS
ago 01 01:30:52 test-laptop kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
ago 01 01:30:52 test-laptop kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
ago 01 01:30:52 test-laptop kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
ago 01 01:30:52 test-laptop kernel: mousedev: PS/2 mouse device common for all mice
ago 01 01:30:52 test-laptop kernel: rtc_cmos rtc_cmos: RTC can wake from S4
ago 01 01:30:52 test-laptop kernel: rtc_cmos rtc_cmos: registered as rtc0
ago 01 01:30:52 test-laptop kernel: rtc_cmos rtc_cmos: setting system clock to 2026-08-01T07:30:51 UTC (1785569451)
ago 01 01:30:52 test-laptop kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
ago 01 01:30:52 test-laptop kernel: intel_pstate: Intel P-state driver initializing
ago 01 01:30:52 test-laptop kernel: intel_pstate: HWP enabled
ago 01 01:30:52 test-laptop kernel: efifb: probing for efifb
ago 01 01:30:52 test-laptop kernel: efifb: framebuffer at 0x80000000, using 4128k, total 4128k
ago 01 01:30:52 test-laptop kernel: efifb: mode is 1366x768x32, linelength=5504, pages=1
ago 01 01:30:52 test-laptop kernel: efifb: scrolling: redraw
ago 01 01:30:52 test-laptop kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
ago 01 01:30:52 test-laptop kernel: Console: switching to colour frame buffer device 170x48
ago 01 01:30:52 test-laptop kernel: fb0: EFI VGA frame buffer device
ago 01 01:30:52 test-laptop kernel: NET: Registered PF_INET6 protocol family
ago 01 01:30:52 test-laptop kernel: Segment Routing with IPv6
ago 01 01:30:52 test-laptop kernel: RPL Segment Routing with IPv6
ago 01 01:30:52 test-laptop kernel: In-situ OAM (IOAM) with IPv6
ago 01 01:30:52 test-laptop kernel: mip6: Mobile IPv6
ago 01 01:30:52 test-laptop kernel: NET: Registered PF_PACKET protocol family
ago 01 01:30:52 test-laptop kernel: mpls_gso: MPLS GSO support
ago 01 01:30:52 test-laptop kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ago 01 01:30:52 test-laptop kernel: microcode: Current revision: 0x00000100
ago 01 01:30:52 test-laptop kernel: microcode: Updated early from: 0x000000fa
ago 01 01:30:52 test-laptop kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
ago 01 01:30:52 test-laptop kernel: IPI shorthand broadcast: enabled
ago 01 01:30:52 test-laptop kernel: sched_clock: Marking stable (412031007, 9246890)->(465204645, -43926748)
ago 01 01:30:52 test-laptop kernel: registered taskstats version 1
ago 01 01:30:52 test-laptop kernel: Loading compiled-in X.509 certificates
ago 01 01:30:52 test-laptop kernel: Freeing initrd memory: 28140K
ago 01 01:30:52 test-laptop kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 0f4e3eca609e17d2e45672bfff3d98dd0e25dab8'
ago 01 01:30:52 test-laptop kernel: Demotion targets for Node 0: null
ago 01 01:30:52 test-laptop kernel: Key type .fscrypt registered
ago 01 01:30:52 test-laptop kernel: Key type fscrypt-provisioning registered
ago 01 01:30:52 test-laptop kernel: Key type encrypted registered
ago 01 01:30:52 test-laptop kernel: AppArmor: AppArmor sha256 policy hashing enabled
ago 01 01:30:52 test-laptop kernel: ima: Allocated hash algorithm: sha256
ago 01 01:30:52 test-laptop kernel: ima: No architecture policies found
ago 01 01:30:52 test-laptop kernel: evm: Initialising EVM extended attributes:
ago 01 01:30:52 test-laptop kernel: evm: security.selinux
ago 01 01:30:52 test-laptop kernel: evm: security.SMACK64 (disabled)
ago 01 01:30:52 test-laptop kernel: evm: security.SMACK64EXEC (disabled)
ago 01 01:30:52 test-laptop kernel: evm: security.SMACK64TRANSMUTE (disabled)
ago 01 01:30:52 test-laptop kernel: evm: security.SMACK64MMAP (disabled)
ago 01 01:30:52 test-laptop kernel: evm: security.apparmor
ago 01 01:30:52 test-laptop kernel: evm: security.ima
ago 01 01:30:52 test-laptop kernel: evm: security.capability
ago 01 01:30:52 test-laptop kernel: evm: HMAC attrs: 0x1
ago 01 01:30:52 test-laptop kernel: RAS: Correctable Errors collector initialized.
ago 01 01:30:52 test-laptop kernel: clk: Disabling unused clocks
ago 01 01:30:52 test-laptop kernel: PM: genpd: Disabling unused power domains
ago 01 01:30:52 test-laptop kernel: Freeing unused decrypted memory: 2028K
ago 01 01:30:52 test-laptop kernel: Freeing unused kernel image (initmem) memory: 4572K
ago 01 01:30:52 test-laptop kernel: Write protecting the kernel read-only data: 32768k
ago 01 01:30:52 test-laptop kernel: Freeing unused kernel image (text/rodata gap) memory: 336K
ago 01 01:30:52 test-laptop kernel: Freeing unused kernel image (rodata/data gap) memory: 696K
ago 01 01:30:52 test-laptop kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
ago 01 01:30:52 test-laptop kernel: Run /init as init process
ago 01 01:30:52 test-laptop kernel: with arguments:
ago 01 01:30:52 test-laptop kernel: /init
ago 01 01:30:52 test-laptop kernel: with environment:
ago 01 01:30:52 test-laptop kernel: HOME=/
ago 01 01:30:52 test-laptop kernel: TERM=linux
ago 01 01:30:52 test-laptop systemd[1]: Inserted module 'autofs4'
ago 01 01:30:52 test-laptop systemd[1]: Successfully made /usr/ read-only.
ago 01 01:30:52 test-laptop systemd[1]: systemd 261.1-3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +LIBARCHIVE)
ago 01 01:30:52 test-laptop systemd[1]: Detected architecture x86-64.
ago 01 01:30:52 test-laptop systemd[1]: Running in initrd.
ago 01 01:30:52 test-laptop systemd[1]: Hostname set to <test-laptop>.
ago 01 01:30:52 test-laptop systemd[1]: bpf-restrict-fs: LSM BPF program attached
ago 01 01:30:52 test-laptop kernel: tsc: Refined TSC clocksource calibration: 2304.000 MHz
ago 01 01:30:52 test-laptop kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2135f7c97c8, max_idle_ns: 440795273205 ns
ago 01 01:30:52 test-laptop kernel: clocksource: Switched to clocksource tsc
ago 01 01:30:52 test-laptop systemd[1]: Queued start job for default target initrd.target.
ago 01 01:30:52 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-f9a225cc\x2d6ce3\x2d4819\x2da090\x2d53646d1bb6d7.device - /dev/disk/by-uuid/<redacted-uuid>...
ago 01 01:30:52 test-laptop systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
ago 01 01:30:52 test-laptop systemd[1]: Reached target slices.target - Slice Units.
ago 01 01:30:52 test-laptop systemd[1]: Reached target swap.target - Swaps.
ago 01 01:30:52 test-laptop systemd[1]: Reached target timers.target - Timer Units.
ago 01 01:30:52 test-laptop systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
ago 01 01:30:52 test-laptop systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
ago 01 01:30:52 test-laptop systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
ago 01 01:30:52 test-laptop systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
ago 01 01:30:52 test-laptop systemd[1]: Reached target sockets.target - Socket Units.
ago 01 01:30:52 test-laptop systemd[1]: dracut-cmdline-ask.service - dracut ask for additional cmdline parameters skipped, no trigger condition checks were met.
ago 01 01:30:52 test-laptop systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
ago 01 01:30:52 test-laptop systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
ago 01 01:30:52 test-laptop systemd[1]: Starting systemd-journald.service - Journal Service...
ago 01 01:30:52 test-laptop systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
ago 01 01:30:52 test-laptop systemd[1]: systemd-pcrphase-initrd.service - TPM PCR Barrier (initrd) skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:52 test-laptop systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
ago 01 01:30:52 test-laptop systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
ago 01 01:30:52 test-laptop systemd-journald[164]: Collecting audit messages is disabled.
ago 01 01:30:52 test-laptop systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
ago 01 01:30:52 test-laptop kernel: i2c_dev: i2c /dev entries driver
ago 01 01:30:52 test-laptop systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
ago 01 01:30:52 test-laptop kernel: lp: driver loaded but no devices found
ago 01 01:30:52 test-laptop systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
ago 01 01:30:52 test-laptop systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
ago 01 01:30:52 test-laptop kernel: ppdev: user-space parallel port driver
ago 01 01:30:52 test-laptop systemd[1]: Reached target local-fs.target - Local File Systems.
ago 01 01:30:52 test-laptop systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook.
ago 01 01:30:52 test-laptop systemd[1]: dracut-pre-udev.service - dracut pre-udev hook skipped, no trigger condition checks were met.
ago 01 01:30:52 test-laptop systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
ago 01 01:30:52 test-laptop systemd[1]: Started systemd-journald.service - Journal Service.
ago 01 01:30:52 test-laptop kernel: ACPI: bus type drm_connector registered
ago 01 01:30:53 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:30:53 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:30:53 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:30:53 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:30:53 test-laptop kernel: ACPI: bus type USB registered
ago 01 01:30:53 test-laptop kernel: usbcore: registered new interface driver usbfs
ago 01 01:30:53 test-laptop kernel: usbcore: registered new interface driver hub
ago 01 01:30:53 test-laptop kernel: usbcore: registered new device driver usb
ago 01 01:30:53 test-laptop kernel: SCSI subsystem initialized
ago 01 01:30:53 test-laptop kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
ago 01 01:30:53 test-laptop kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
ago 01 01:30:53 test-laptop kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
ago 01 01:30:53 test-laptop kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
ago 01 01:30:53 test-laptop kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
ago 01 01:30:53 test-laptop kernel: libata version 3.00 loaded.
ago 01 01:30:53 test-laptop kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
ago 01 01:30:53 test-laptop kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.01
ago 01 01:30:53 test-laptop kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
ago 01 01:30:53 test-laptop kernel: usb usb1: Product: xHCI Host Controller
ago 01 01:30:53 test-laptop kernel: usb usb1: Manufacturer: Linux 7.1.3+deb14-amd64 xhci-hcd
ago 01 01:30:53 test-laptop kernel: usb usb1: SerialNumber: <redacted>
ago 01 01:30:53 test-laptop kernel: hub 1-0:1.0: USB hub found
ago 01 01:30:53 test-laptop kernel: hub 1-0:1.0: 12 ports detected
ago 01 01:30:53 test-laptop kernel: ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
ago 01 01:30:53 test-laptop kernel: ahci 0000:00:17.0: 1/1 ports implemented (port mask 0x1)
ago 01 01:30:53 test-laptop kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds apst
ago 01 01:30:53 test-laptop kernel: scsi host0: ahci
ago 01 01:30:53 test-laptop kernel: ata1: SATA max UDMA/133 abar m2048@0xa1326000 port 0xa1326100 irq 130 lpm-pol 3
ago 01 01:30:53 test-laptop kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.01
ago 01 01:30:53 test-laptop kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
ago 01 01:30:53 test-laptop kernel: usb usb2: Product: xHCI Host Controller
ago 01 01:30:53 test-laptop kernel: usb usb2: Manufacturer: Linux 7.1.3+deb14-amd64 xhci-hcd
ago 01 01:30:53 test-laptop kernel: usb usb2: SerialNumber: <redacted>
ago 01 01:30:53 test-laptop kernel: hub 2-0:1.0: USB hub found
ago 01 01:30:53 test-laptop kernel: hub 2-0:1.0: 4 ports detected
ago 01 01:30:53 test-laptop kernel: usb 1-3: new full-speed USB device number 2 using xhci_hcd
ago 01 01:30:53 test-laptop kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
ago 01 01:30:53 test-laptop kernel: ata1.00: ACPI cmd f5/<redacted-mac>(SECURITY FREEZE LOCK) filtered out
ago 01 01:30:53 test-laptop kernel: ata1.00: ATA-10: Acer SSD SA100 120GB, U0401A0, max UDMA/133
ago 01 01:30:53 test-laptop kernel: ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 32), AA
ago 01 01:30:53 test-laptop kernel: ata1.00: ACPI cmd f5/<redacted-mac>(SECURITY FREEZE LOCK) filtered out
ago 01 01:30:53 test-laptop kernel: ata1.00: configured for UDMA/133
ago 01 01:30:53 test-laptop kernel: scsi 0:0:0:0: Direct-Access ATA Acer SSD SA100 1 1A0 PQ: 0 ANSI: 5
ago 01 01:30:53 test-laptop kernel: usb 1-3: New USB device found, idVendor=1ea7, idProduct=0066, bcdDevice= 2.00
ago 01 01:30:53 test-laptop kernel: usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
ago 01 01:30:53 test-laptop kernel: usb 1-3: Product: 2.4G Mouse
ago 01 01:30:53 test-laptop kernel: usb 1-5: new high-speed USB device number 3 using xhci_hcd
ago 01 01:30:54 test-laptop kernel: usb 1-5: New USB device found, idVendor=04f2, idProduct=b67f, bcdDevice=26.67
ago 01 01:30:54 test-laptop kernel: usb 1-5: New USB device strings: Mfr=3, Product=1, SerialNumber=2
ago 01 01:30:54 test-laptop kernel: usb 1-5: Product: HP TrueVision HD Camera
ago 01 01:30:54 test-laptop kernel: usb 1-5: Manufacturer: Chicony Electronics Co.,Ltd.
ago 01 01:30:54 test-laptop kernel: usb 1-5: SerialNumber: <redacted>
ago 01 01:30:54 test-laptop kernel: psmouse serio1: synaptics: queried max coordinates: x [..5648], y [..4826]
ago 01 01:30:54 test-laptop kernel: psmouse serio1: synaptics: queried min coordinates: x [1292..], y [1026..]
ago 01 01:30:54 test-laptop kernel: psmouse serio1: synaptics: Your touchpad (PNP: SYN3286 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.
ago 01 01:30:54 test-laptop kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.16, id: 0x1e2b1, caps: 0xf00323/0x840300/0x2e800/0x400000, board id: 3320, fw id: 2659795
ago 01 01:30:54 test-laptop kernel: usb 1-10: new full-speed USB device number 4 using xhci_hcd
ago 01 01:30:54 test-laptop kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
ago 01 01:30:54 test-laptop kernel: usb 1-10: New USB device found, idVendor=0bda, idProduct=b009, bcdDevice= 2.00
ago 01 01:30:54 test-laptop kernel: usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
ago 01 01:30:54 test-laptop kernel: usb 1-10: Product: 802.11n WLAN Adapter
ago 01 01:30:54 test-laptop kernel: usb 1-10: Manufacturer: Realtek
ago 01 01:30:54 test-laptop kernel: usb 1-10: SerialNumber: <redacted>
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: [drm] Found coffeelake/ult (device ID 3ea1) integrated display version 9.00 stepping N/A
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
ago 01 01:30:54 test-laptop kernel: Console: switching to colour dummy device 80x25
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
ago 01 01:30:54 test-laptop kernel: sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
ago 01 01:30:54 test-laptop kernel: sd 0:0:0:0: [sda] Write Protect is off
ago 01 01:30:54 test-laptop kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
ago 01 01:30:54 test-laptop kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
ago 01 01:30:54 test-laptop kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
ago 01 01:30:54 test-laptop kernel: hid: raw HID events driver (C) Jiri Kosina
ago 01 01:30:54 test-laptop kernel: sda: sda1 sda2 sda3
ago 01 01:30:54 test-laptop kernel: sd 0:0:0:0: [sda] Attached SCSI disk
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io:owns=io+mem
ago 01 01:30:54 test-laptop kernel: usbcore: registered new interface driver usbhid
ago 01 01:30:54 test-laptop kernel: usbhid: USB HID core driver
ago 01 01:30:54 test-laptop kernel: bluetooth: loading out-of-tree module taints kernel.
ago 01 01:30:54 test-laptop kernel: bluetooth: module verification failed: signature and/or required key missing - tainting kernel
ago 01 01:30:54 test-laptop kernel: i915 0000:00:02.0: [drm] Registered 3 planes with drm panic
ago 01 01:30:54 test-laptop kernel: [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
ago 01 01:30:54 test-laptop kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
ago 01 01:30:54 test-laptop kernel: input: Video Bus as /devices/pci0000:00/acpi.video_bus.0/input/input3
ago 01 01:30:54 test-laptop kernel: xor: measuring software checksum speed
ago 01 01:30:54 test-laptop kernel: Bluetooth: Core ver 2.22
ago 01 01:30:54 test-laptop kernel: NET: Registered PF_BLUETOOTH protocol family
ago 01 01:30:54 test-laptop kernel: Bluetooth: HCI device and connection manager initialized
ago 01 01:30:54 test-laptop kernel: Bluetooth: HCI socket layer initialized
ago 01 01:30:54 test-laptop kernel: Bluetooth: L2CAP socket layer initialized
ago 01 01:30:54 test-laptop kernel: Bluetooth: SCO socket layer initialized
ago 01 01:30:54 test-laptop kernel: input: 2.4G Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1EA7:0066.0001/input/input4
ago 01 01:30:54 test-laptop kernel: prefetch64-sse : 12843 MB/sec
ago 01 01:30:54 test-laptop kernel: sse : 12700 MB/sec
ago 01 01:30:54 test-laptop kernel: xor: using function: prefetch64-sse (12843 MB/sec)
ago 01 01:30:54 test-laptop kernel: usbcore: registered new interface driver btusb
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000d lmp_ver=08 lmp_subver=8723
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: rom_version status=0 version=2
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: btrtl_initialize: key id 0
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8723d_fw.bin
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8723d_config.bin
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: cfg_sz 10, total sz 33266
ago 01 01:30:54 test-laptop kernel: raid6: sse2x4 gen() 9047 MB/s
ago 01 01:30:54 test-laptop kernel: raid6: sse2x2 gen() 10260 MB/s
ago 01 01:30:54 test-laptop kernel: raid6: sse2x1 gen() 7193 MB/s
ago 01 01:30:54 test-laptop kernel: raid6: using algorithm sse2x2 gen() 10260 MB/s
ago 01 01:30:54 test-laptop kernel: raid6: .... xor() 5411 MB/s, rmw enabled
ago 01 01:30:54 test-laptop kernel: raid6: using ssse3x2 recovery algorithm
ago 01 01:30:54 test-laptop kernel: Bluetooth: hci0: RTL: fw version 0x828a96f1
ago 01 01:30:54 test-laptop kernel: hid-generic 0003:1EA7:0066.0001: input,hidraw0: USB HID v1.10 Keyboard [2.4G Mouse] on usb-0000:00:14.0-3/input0
ago 01 01:30:54 test-laptop kernel: input: 2.4G Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input5
ago 01 01:30:54 test-laptop kernel: input: 2.4G Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input6
ago 01 01:30:54 test-laptop kernel: input: 2.4G Mouse Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input7
ago 01 01:30:54 test-laptop kernel: input: 2.4G Mouse System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input8
ago 01 01:30:54 test-laptop kernel: hid-generic 0003:1EA7:0066.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [2.4G Mouse] on usb-0000:00:14.0-3/input1
ago 01 01:30:55 test-laptop kernel: fbcon: i915drmfb (fb0) is primary device
ago 01 01:30:55 test-laptop kernel: Console: switching to colour frame buffer device 170x48
ago 01 01:30:55 test-laptop kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
ago 01 01:30:55 test-laptop kernel: Btrfs loaded, zoned=yes, fsverity=yes
ago 01 01:30:55 test-laptop kernel: BTRFS: device label rootfs devid 1 transid 11252 /dev/sda3 (8:3) scanned by mount (317)
ago 01 01:30:55 test-laptop kernel: BTRFS info (device sda3): first mount of filesystem <redacted-uuid>
ago 01 01:30:55 test-laptop kernel: BTRFS info (device sda3): using crc32c checksum algorithm
ago 01 01:30:55 test-laptop kernel: BTRFS info (device sda3): enabling ssd optimizations
ago 01 01:30:55 test-laptop kernel: BTRFS info (device sda3): turning on async discard
ago 01 01:30:55 test-laptop kernel: BTRFS info (device sda3): enabling free space tree
ago 01 01:30:56 test-laptop systemd-journald[164]: Received SIGTERM from PID 1 (systemd).
ago 01 01:30:56 test-laptop systemd[1]: systemd 261.1-3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +LIBARCHIVE)
ago 01 01:30:56 test-laptop systemd[1]: Detected architecture x86-64.
ago 01 01:30:56 test-laptop systemd[1]: bpf-restrict-fs: LSM BPF program attached
ago 01 01:30:56 test-laptop systemd[1]: /usr/lib/systemd/system/system-xfs_scrub.slice:15: Support for option CPUAccounting= has been removed and it is ignored
ago 01 01:30:56 test-laptop systemd[1]: /usr/lib/systemd/system/xfs_scrub_all.service:26: Support for option CPUAccounting= has been removed and it is ignored
ago 01 01:30:56 test-laptop systemd[1]: initrd-switch-root.service: Deactivated successfully.
ago 01 01:30:56 test-laptop systemd[1]: Stopped initrd-switch-root.service - Switch Root.
ago 01 01:30:56 test-laptop systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
ago 01 01:30:56 test-laptop systemd[1]: Created slice system-cups.slice - CUPS Slice.
ago 01 01:30:56 test-laptop systemd[1]: Created slice system-getty.slice - Slice /system/getty.
ago 01 01:30:56 test-laptop systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
ago 01 01:30:56 test-laptop systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
ago 01 01:30:56 test-laptop systemd[1]: Created slice system-tigervncserver.slice - Slice /system/tigervncserver.
ago 01 01:30:56 test-laptop systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
ago 01 01:30:56 test-laptop systemd[1]: Created slice user.slice - User and Session Slice.
ago 01 01:30:56 test-laptop systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
ago 01 01:30:56 test-laptop systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
ago 01 01:30:56 test-laptop systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
ago 01 01:30:56 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-41D8\x2d30C2.device - /dev/disk/by-uuid/41D8-30C2...
ago 01 01:30:56 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-71cd3ffd\x2d4828\x2d4a9e\x2d84e1\x2d51fffbb575f7.device - /dev/disk/by-uuid/<redacted-uuid>...
ago 01 01:30:56 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-f9a225cc\x2d6ce3\x2d4819\x2da090\x2d53646d1bb6d7.device - /dev/disk/by-uuid/<redacted-uuid>...
ago 01 01:30:56 test-laptop systemd[1]: Reached target imports.target - Image Downloads.
ago 01 01:30:56 test-laptop systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
ago 01 01:30:56 test-laptop systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
ago 01 01:30:56 test-laptop systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
ago 01 01:30:56 test-laptop systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
ago 01 01:30:56 test-laptop systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
ago 01 01:30:56 test-laptop systemd[1]: Reached target slices.target - Slice Units.
ago 01 01:30:56 test-laptop systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
ago 01 01:30:56 test-laptop systemd[1]: Reached target swap.target - Swaps.
ago 01 01:30:56 test-laptop systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
ago 01 01:30:56 test-laptop systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
ago 01 01:30:56 test-laptop systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-ask-password.socket - Query the User Interactively for a Password.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-factory-reset.socket - Factory Reset Management.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-hostnamed.socket - Hostname Service Socket.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-mute-console.socket - Console Output Muting Service Socket.
ago 01 01:30:56 test-laptop systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:56 test-laptop systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-storage-block.socket - Simple Block Device Backed Storage Provider.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-storage-fs.socket - Simple File System Backed Storage Provider.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-udevd-varlink.socket - udev Varlink Socket.
ago 01 01:30:56 test-laptop systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
ago 01 01:30:56 test-laptop systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
ago 01 01:30:56 test-laptop systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
ago 01 01:30:56 test-laptop systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
ago 01 01:30:56 test-laptop systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
ago 01 01:30:56 test-laptop systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
ago 01 01:30:56 test-laptop systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
ago 01 01:30:56 test-laptop systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
ago 01 01:30:56 test-laptop systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ago 01 01:30:56 test-laptop systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
ago 01 01:30:56 test-laptop systemd[1]: modprobe@drm.service - Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
ago 01 01:30:56 test-laptop systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
ago 01 01:30:56 test-laptop systemd[1]: modprobe@fuse.service - Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
ago 01 01:30:56 test-laptop systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
ago 01 01:30:56 test-laptop systemd[1]: plymouth-switch-root.service: Deactivated successfully.
ago 01 01:30:56 test-laptop systemd[1]: Stopped plymouth-switch-root.service - Plymouth switch root service.
ago 01 01:30:56 test-laptop systemd[1]: systemd-fsck-root.service: Deactivated successfully.
ago 01 01:30:56 test-laptop systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
ago 01 01:30:56 test-laptop systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-<redacted-uuid>
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-journald.service - Journal Service...
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
ago 01 01:30:56 test-laptop systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:56 test-laptop systemd[1]: systemd-pcrosseparator.service - TPM PCR OS Separator skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
ago 01 01:30:56 test-laptop systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:56 test-laptop systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionPathExists=/etc/initrd-release
ago 01 01:30:56 test-laptop systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
ago 01 01:30:56 test-laptop systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
ago 01 01:30:56 test-laptop systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
ago 01 01:30:56 test-laptop systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
ago 01 01:30:56 test-laptop systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
ago 01 01:30:56 test-laptop kernel: BTRFS info (device sda3 state M): use zstd compression, level 1
ago 01 01:30:56 test-laptop systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
ago 01 01:30:56 test-laptop systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
ago 01 01:30:56 test-laptop systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
ago 01 01:30:56 test-laptop systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
ago 01 01:30:56 test-laptop systemd[1]: run-vmblock\x2dfuse.mount - VMware vmblock fuse mount skipped, unmet condition check ConditionVirtualization=vmware
ago 01 01:30:56 test-laptop kernel: pstore: Using crash dump compression: deflate
ago 01 01:30:56 test-laptop systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
ago 01 01:30:56 test-laptop systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
ago 01 01:30:56 test-laptop systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:30:56 test-laptop systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
ago 01 01:30:56 test-laptop kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
ago 01 01:30:56 test-laptop kernel: pstore: Registered efi_pstore as persistent store backend
ago 01 01:30:56 test-laptop kernel: device-mapper: uevent: version 1.0.3
ago 01 01:30:56 test-laptop kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
ago 01 01:30:56 test-laptop systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
ago 01 01:30:56 test-laptop systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
ago 01 01:30:56 test-laptop systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
ago 01 01:30:56 test-laptop systemd-journald[387]: Collecting audit messages is disabled.
ago 01 01:30:56 test-laptop systemd[1]: modprobe@configfs.service: Deactivated successfully.
ago 01 01:30:56 test-laptop systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
ago 01 01:30:56 test-laptop systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
ago 01 01:30:56 test-laptop systemd[1]: Started systemd-journald.service - Journal Service.
ago 01 01:30:57 test-laptop systemd-journald[387]: Received client request to flush runtime journal.
ago 01 01:30:57 test-laptop kernel: Bluetooth: hci0: diag: hci_dev_shutdown: HCI_UP=1 HCI_UNREGISTER=0 shutdown_cb=btrtl_shutdown_realtek [btrtl]
ago 01 01:30:57 test-laptop kernel: Bluetooth: hci0: diag: calling vendor shutdown callback
ago 01 01:30:57 test-laptop kernel: Bluetooth: hci0: diag: btrtl_shutdown_realtek: sending HCI_OP_RESET
ago 01 01:30:57 test-laptop kernel: Bluetooth: hci0: diag: btrtl_shutdown_realtek: HCI_OP_RESET completed OK
ago 01 01:30:57 test-laptop kernel: Bluetooth: hci0: diag: vendor shutdown returned 0
ago 01 01:30:57 test-laptop kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
ago 01 01:30:57 test-laptop kernel: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
ago 01 01:30:57 test-laptop kernel: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
ago 01 01:30:57 test-laptop kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
ago 01 01:30:57 test-laptop kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
ago 01 01:30:57 test-laptop kernel: loop: module loaded
ago 01 01:30:57 test-laptop kernel: loop0: detected capacity change from 0 to 411344
ago 01 01:30:57 test-laptop kernel: loop1: detected capacity change from 0 to 8
ago 01 01:30:57 test-laptop kernel: loop2: detected capacity change from 0 to 337560
ago 01 01:30:57 test-laptop kernel: loop3: detected capacity change from 0 to 113640
ago 01 01:30:57 test-laptop kernel: loop4: detected capacity change from 0 to 823256
ago 01 01:30:57 test-laptop kernel: loop5: detected capacity change from 0 to 151512
ago 01 01:30:57 test-laptop kernel: loop6: detected capacity change from 0 to 1258560
ago 01 01:30:57 test-laptop kernel: loop7: detected capacity change from 0 to 136816
ago 01 01:30:57 test-laptop kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
ago 01 01:30:57 test-laptop kernel: loop9: detected capacity change from 0 to 102608
ago 01 01:30:57 test-laptop kernel: loop8: detected capacity change from 0 to 187776
ago 01 01:30:58 test-laptop kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
ago 01 01:30:58 test-laptop kernel: input: Lid Switch as /devices/pci0000:00/0000:00:1f.0/PNP0C0D:00/input/input10
ago 01 01:30:58 test-laptop kernel: ACPI: button: Lid Switch [LID0]
ago 01 01:30:58 test-laptop kernel: input: Power Button as /devices/platform/PNP0C0C:00/input/input11
ago 01 01:30:58 test-laptop kernel: ACPI: button: Power Button [PWRB]
ago 01 01:30:58 test-laptop kernel: acpi-tad ACPI000E:00: registered as rtc1
ago 01 01:30:58 test-laptop kernel: input: Power Button as /devices/platform/LNXPWRBN:00/input/input12
ago 01 01:30:58 test-laptop kernel: ACPI: button: Power Button [PWRF]
ago 01 01:30:58 test-laptop kernel: intel_pmc_core INT33A1:00: initialized
ago 01 01:30:58 test-laptop kernel: ACPI: AC: AC Adapter [ACAD] (on-line)
ago 01 01:30:58 test-laptop kernel: ACPI: battery: Slot [BAT1] (battery present)
ago 01 01:30:58 test-laptop kernel: intel_rapl_common: Found RAPL domain package
ago 01 01:30:58 test-laptop kernel: intel_rapl_common: Found RAPL domain dram
ago 01 01:30:58 test-laptop kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
ago 01 01:30:58 test-laptop kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
ago 01 01:30:58 test-laptop kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
ago 01 01:30:58 test-laptop kernel: mc: Linux media interface: v0.10
ago 01 01:30:58 test-laptop kernel: i2c i2c-6: Successfully instantiated SPD at 0x50
ago 01 01:30:58 test-laptop kernel: videodev: Linux video capture interface: v2.00
ago 01 01:30:58 test-laptop kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
ago 01 01:30:58 test-laptop kernel: r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
ago 01 01:30:58 test-laptop kernel: r8169 0000:01:00.0 eth0: RTL8168h/8111h, <redacted-mac>, XID 541, IRQ 133
ago 01 01:30:58 test-laptop kernel: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
ago 01 01:30:58 test-laptop kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
ago 01 01:30:58 test-laptop kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
ago 01 01:30:58 test-laptop kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
ago 01 01:30:58 test-laptop kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
ago 01 01:30:58 test-laptop kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
ago 01 01:30:58 test-laptop kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
ago 01 01:30:59 test-laptop kernel: uvcvideo 1-5:1.0: Found UVC 1.00 device HP TrueVision HD Camera (04f2:b67f)
ago 01 01:30:59 test-laptop kernel: usbcore: registered new interface driver uvcvideo
ago 01 01:30:59 test-laptop kernel: EXT4-fs (sda2): mounted filesystem <redacted-uuid> r/w with ordered data mode. Quota mode: none.
ago 01 01:30:59 test-laptop kernel: ee1004 6-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
ago 01 01:30:59 test-laptop kernel: mei_hdcp 0000:00:16.0-<redacted-uuid>: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
ago 01 01:30:59 test-laptop kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
ago 01 01:30:59 test-laptop kernel: rtw88_8723de 0000:02:00.0: Firmware version 48.0.0, H2C version 0
ago 01 01:30:59 test-laptop kernel: r8169 0000:01:00.0 eno1: renamed from eth0
ago 01 01:30:59 test-laptop kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
ago 01 01:30:59 test-laptop kernel: rtw88_8723de 0000:02:00.0 wlo1: renamed from wlan0
ago 01 01:30:59 test-laptop kernel: input: HP WMI hotkeys as /devices/virtual/input/input14
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.634:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=717 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.634:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=715 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.638:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=716 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.638:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=714 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.650:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ai.opencode.desktop" pid=719 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.650:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=725 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.654:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=726 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.654:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=721 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.658:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=723 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: audit: type=1400 audit(1785569459.662:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=727 comm="apparmor_parser"
ago 01 01:30:59 test-laptop kernel: intel_rapl_common: Found RAPL domain package
ago 01 01:30:59 test-laptop kernel: intel_rapl_common: Found RAPL domain core
ago 01 01:30:59 test-laptop kernel: intel_rapl_common: Found RAPL domain uncore
ago 01 01:30:59 test-laptop kernel: intel_rapl_common: Found RAPL domain dram
ago 01 01:30:59 test-laptop kernel: intel_rapl_common: Found RAPL domain psys
ago 01 01:30:59 test-laptop kernel: RPC: Registered named UNIX socket transport module.
ago 01 01:30:59 test-laptop kernel: RPC: Registered udp transport module.
ago 01 01:30:59 test-laptop kernel: RPC: Registered tcp transport module.
ago 01 01:30:59 test-laptop kernel: RPC: Registered tcp-with-tls transport module.
ago 01 01:30:59 test-laptop kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
ago 01 01:31:00 test-laptop kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
ago 01 01:31:00 test-laptop kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [i915])
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: ALC236: picked fixup for PCI SSID 103c:0000
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: autoconfig for ALC236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: mono: mono_out=0x0
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: inputs:
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: Internal Mic=0x12
ago 01 01:31:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: Mic=0x19
ago 01 01:31:00 test-laptop kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
ago 01 01:31:00 test-laptop kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
ago 01 01:31:00 test-laptop kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
ago 01 01:31:00 test-laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
ago 01 01:31:00 test-laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
ago 01 01:31:00 test-laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
ago 01 01:31:00 test-laptop kernel: hp-wmi hp-wmi: Failed to apply initial fan settings: -22
ago 01 01:31:00 test-laptop kernel: zram: Added device: zram0
ago 01 01:31:00 test-laptop kernel: hp_wmi: query 0x4c returned error 0x6
ago 01 01:31:00 test-laptop kernel: Adding 4004864k swap on /dev/zram0. Priority:100 extents:1 across:4004864k SS
ago 01 01:31:00 test-laptop kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
ago 01 01:31:00 test-laptop kernel: Bluetooth: BNEP filters: protocol multicast
ago 01 01:31:00 test-laptop kernel: Bluetooth: BNEP socket layer initialized
ago 01 01:31:00 test-laptop kernel: Bluetooth: MGMT ver 1.23
ago 01 01:31:00 test-laptop kernel: NET: Registered PF_ALG protocol family
ago 01 01:31:01 test-laptop kernel: ACPI BIOS Error (bug): Attempt to CreateField of length zero (20251212/dsopcode-133)
ago 01 01:31:01 test-laptop kernel: ACPI Error: Aborting method \_SB.WMID.WQBC due to previous error (AE_AML_OPERAND_VALUE) (20251212/psparse-529)
ago 01 01:31:01 test-laptop kernel: ACPI BIOS Error (bug): Attempt to CreateField of length zero (20251212/dsopcode-133)
ago 01 01:31:01 test-laptop kernel: ACPI Error: Aborting method \_SB.WMID.WQBE due to previous error (AE_AML_OPERAND_VALUE) (20251212/psparse-529)
ago 01 01:31:01 test-laptop kernel: hp_bioscfg: Returned error 0x3, "Invalid command value/Feature not supported"
ago 01 01:31:01 test-laptop kernel: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
ago 01 01:31:01 test-laptop kernel: NET: Registered PF_QIPCRTR protocol family
ago 01 01:31:01 test-laptop kernel: r8169 0000:01:00.0 eno1: Link is Down
ago 01 01:31:01 test-laptop kernel: Loading iSCSI transport class v2.0-870.
ago 01 01:31:02 test-laptop kernel: tun: Universal TUN/TAP device driver, 1.6
ago 01 01:31:03 test-laptop kernel: wlo1: authenticate with <redacted-mac> (local address=<redacted-mac>)
ago 01 01:31:03 test-laptop kernel: wlo1: send auth to <redacted-mac> (try 1/3)
ago 01 01:31:03 test-laptop kernel: wlo1: authenticated
ago 01 01:31:03 test-laptop kernel: wlo1: associate with <redacted-mac> (try 1/3)
ago 01 01:31:03 test-laptop kernel: wlo1: RX AssocResp from <redacted-mac> (capab=0x1431 status=0 aid=39)
ago 01 01:31:03 test-laptop kernel: wlo1: associated
ago 01 01:31:03 test-laptop kernel: wlo1: Limiting TX power to 30 (30 - 0) dBm as advertised by <redacted-mac>
ago 01 01:31:09 test-laptop kernel: kauditd_printk_skb: 124 callbacks suppressed
ago 01 01:31:09 test-laptop kernel: audit: type=1400 audit(1785569469.194:136): apparmor="ALLOWED" operation="open" class="file" profile="Xorg" name="/etc/glvnd/egl_vendor.d/" pid=1316 comm="Xorg" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
ago 01 01:31:12 test-laptop kernel: Bluetooth: RFCOMM TTY layer initialized
ago 01 01:31:12 test-laptop kernel: Bluetooth: RFCOMM socket layer initialized
ago 01 01:31:12 test-laptop kernel: Bluetooth: RFCOMM ver 1.11
ago 01 01:31:12 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=<redacted-mac>:<redacted-mac>:08:00 SRC=<redacted> DST=<redacted> LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=1 PROTO=2
ago 01 01:31:36 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=<redacted> DST=<redacted> LEN=635 TOS=0x00 PREC=0x00 TTL=1 ID=603 DF PROTO=UDP SPT=52571 DPT=3702 LEN=615
ago 01 01:31:36 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC= SRC=<redacted> DST=<redacted> LEN=655 TC=0 HOPLIMIT=1 FLOWLBL=594244 PROTO=UDP SPT=36571 DPT=3702 LEN=615
ago 01 01:31:40 test-laptop kernel: audit: type=1326 audit(1785569500.366:137): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=3341 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=330 compat=0 ip=0x7f634cafdfeb code=0x50000
ago 01 01:31:40 test-laptop kernel: audit: type=1326 audit(1785569500.366:138): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=3340 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=330 compat=0 ip=0x7f9a79afdfeb code=0x50000
ago 01 01:31:40 test-laptop kernel: audit: type=1326 audit(1785569500.453:139): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=3313 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=425 compat=0 ip=0x7f1b7fef590d code=0x50000
ago 01 01:31:40 test-laptop kernel: audit: type=1326 audit(1785569500.461:140): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=3313 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=425 compat=0 ip=0x7f1b7fef590d code=0x50000
ago 01 01:31:40 test-laptop kernel: audit: type=1326 audit(1785569500.461:141): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=3313 comm="DelayedTaskSche" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=425 compat=0 ip=0x7f1b7fef590d code=0x50000
ago 01 01:31:40 test-laptop kernel: audit: type=1400 audit(1785569500.977:142): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/user-1002.slice/user@1002.service/app.slice/cpu.max" pid=3313 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=1002
ago 01 01:31:40 test-laptop kernel: audit: type=1400 audit(1785569500.977:143): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/user-1002.slice/user@1002.service/cpu.max" pid=3313 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:31:40 test-laptop kernel: audit: type=1400 audit(1785569500.977:144): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/user-1002.slice/cpu.max" pid=3313 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:31:40 test-laptop kernel: audit: type=1400 audit(1785569500.977:145): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/cpu.max" pid=3313 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:31:41 test-laptop kernel: warning: `ThreadPoolForeg' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
ago 01 01:31:41 test-laptop kernel: audit: type=1400 audit(1785569501.755:146): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/etc/vulkan/implicit_layer.d/" pid=3367 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:32:11 test-laptop kernel: pcieport 0000:00:1d.1: AER: Correctable error message received from 0000:02:00.0
ago 01 01:32:11 test-laptop kernel: rtw88_8723de 0000:02:00.0: PCIe Bus Error: severity=Correctable, type=Physical Layer, (Receiver ID)
ago 01 01:32:11 test-laptop kernel: rtw88_8723de 0000:02:00.0: device [10ec:d723] error status/mask=00000001/0000e000
ago 01 01:32:11 test-laptop kernel: rtw88_8723de 0000:02:00.0: [ 0] RxErr (First)
ago 01 01:32:14 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=<redacted-mac>:<redacted-mac>:08:00 SRC=<redacted> DST=<redacted> LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=1 PROTO=2
ago 01 01:33:17 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=<redacted-mac>:<redacted-mac>:08:00 SRC=<redacted> DST=<redacted> LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=1 PROTO=2
ago 01 01:34:20 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=<redacted-mac>:<redacted-mac>:08:00 SRC=<redacted> DST=<redacted> LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=1 PROTO=2
ago 01 01:35:22 test-laptop kernel: [UFW BLOCK] IN=wlo1 OUT= MAC=<redacted-mac>:<redacted-mac>:08:00 SRC=<redacted> DST=<redacted> LEN=36 TOS=0x00 PREC=0x00 TTL=1 ID=1 PROTO=2
ago 01 01:35:26 test-laptop kernel: Bluetooth: hci0: diag: hci_dev_shutdown: HCI_UP=1 HCI_UNREGISTER=0 shutdown_cb=btrtl_shutdown_realtek [btrtl]
ago 01 01:35:26 test-laptop kernel: Bluetooth: hci0: diag: calling vendor shutdown callback
ago 01 01:35:26 test-laptop kernel: Bluetooth: hci0: diag: btrtl_shutdown_realtek: sending HCI_OP_RESET
ago 01 01:35:26 test-laptop kernel: Bluetooth: hci0: diag: btrtl_shutdown_realtek: HCI_OP_RESET completed OK
ago 01 01:35:26 test-laptop kernel: Bluetooth: hci0: diag: vendor shutdown returned 0
ago 01 01:35:26 test-laptop kernel: set_capacity_and_notify: 3 callbacks suppressed
ago 01 01:35:26 test-laptop kernel: zram0: detected capacity change from 8009736 to 0
ago 01 01:35:26 test-laptop kernel: zram: Removed device: zram0
ago 01 01:35:27 test-laptop kernel: wlo1: deauthenticating from <redacted-mac> by local choice (Reason: 3=DEAUTH_LEAVING)
ago 01 01:35:29 test-laptop kernel: EXT4-fs (sda2): unmounting filesystem <redacted-uuid>.
ago 01 01:35:29 test-laptop kernel: watchdog: watchdog0: watchdog did not stop!
ago 01 01:35:29 test-laptop systemd-shutdown[1]: Using hardware watchdog /dev/watchdog0: 'iTCO_wdt', version 6.
ago 01 01:35:29 test-laptop systemd-shutdown[1]: Watchdog running with a hardware timeout of 10min.
ago 01 01:35:29 test-laptop systemd-shutdown[1]: Syncing filesystems and block devices.
ago 01 01:35:29 test-laptop systemd-shutdown[1]: Sending SIGTERM to remaining processes...
ago 01 01:35:29 test-laptop systemd-journald[387]: Received SIGTERM from PID 1 (systemd-shutdow).
[-- Attachment #3: journal-kernel-current.txt --]
[-- Type: text/plain, Size: 104450 bytes --]
ago 01 01:35:50 test-laptop kernel: Linux version 7.1.3+deb14-amd64 (debian-kernel@lists.debian.org) (x86_64-linux-gnu-gcc-15 (Debian 15.3.0-1) 15.3.0, GNU ld (GNU Binutils for Debian) 2.46.50.20260617) #1 SMP PREEMPT_DYNAMIC Debian 7.1.3-1 (2026-07-04)
ago 01 01:35:50 test-laptop kernel: Command line: BOOT_IMAGE=/vmlinuz-7.1.3+deb14-amd64 root=UUID=<redacted-uuid> ro rootflags=subvol=@
ago 01 01:35:50 test-laptop kernel: BIOS-provided physical RAM map:
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000002cfff] System RAM
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000000002d000-0x000000000002dfff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000000002e000-0x000000000002efff] System RAM
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000000002f000-0x0000000000034fff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x0000000000035000-0x0000000000087fff] System RAM
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x0000000000088000-0x00000000000fffff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000079fadfff] System RAM
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x0000000079fae000-0x000000007b59dfff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000007b59e000-0x000000007bc8dfff] ACPI NVS
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000007bc8e000-0x000000007bd0dfff] ACPI data
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000007bd0e000-0x000000007bd0efff] System RAM
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x000000007bd0f000-0x000000007f7fffff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [gap 0x000000007f800000-0x00000000dfffffff]
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [gap 0x00000000f0000000-0x00000000fdffffff]
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [gap 0x00000000fe011000-0x00000000fed0ffff]
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [gap 0x00000000fed1a000-0x00000000fed83fff]
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [gap 0x00000000fed85000-0x00000000fedfffff]
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [gap 0x00000000fee01000-0x00000000ff2fffff]
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x00000000ff300000-0x00000000ffffffff] device reserved
ago 01 01:35:50 test-laptop kernel: BIOS-e820: [mem 0x0000000100000000-0x000000027e7fffff] System RAM
ago 01 01:35:50 test-laptop kernel: NX (Execute Disable) protection: active
ago 01 01:35:50 test-laptop kernel: APIC: Static calls initialized
ago 01 01:35:50 test-laptop kernel: efi: EFI v2.6 by INSYDE Corp.
ago 01 01:35:50 test-laptop kernel: efi: TPMFinalLog=0x7b575000 ACPI=0x7bd0d000 ACPI 2.0=0x7bd0d014 SMBIOS=0x7a807000 SMBIOS 3.0=0x7a804000 ESRT=0x7a800818 MEMATTR=0x6a823018 MOKvar=0x7a7ef000 INITRD=0x5edacd18 RNG=0x7bc9c018 TPMEventLog=0x7bc97018
ago 01 01:35:50 test-laptop kernel: random: crng init done
ago 01 01:35:50 test-laptop kernel: efi: Remove mem64: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
ago 01 01:35:50 test-laptop kernel: e820: remove [mem 0xe0000000-0xefffffff] device reserved
ago 01 01:35:50 test-laptop kernel: efi: Not removing mem65: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
ago 01 01:35:50 test-laptop kernel: efi: Not removing mem66: MMIO range=[0xfed10000-0xfed19fff] (40KB) from e820 map
ago 01 01:35:50 test-laptop kernel: efi: Not removing mem67: MMIO range=[0xfed84000-0xfed84fff] (4KB) from e820 map
ago 01 01:35:50 test-laptop kernel: efi: Not removing mem68: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
ago 01 01:35:50 test-laptop kernel: efi: Remove mem69: MMIO range=[0xff300000-0xffffffff] (13MB) from e820 map
ago 01 01:35:50 test-laptop kernel: e820: remove [mem 0xff300000-0xffffffff] device reserved
ago 01 01:35:50 test-laptop kernel: secureboot: Secure boot disabled
ago 01 01:35:50 test-laptop kernel: DMI: SMBIOS 3.0.1 present.
ago 01 01:35:50 test-laptop kernel: DMI: HP HP Laptop 15-da1xxx/8532, BIOS F.48 04/26/2024
ago 01 01:35:50 test-laptop kernel: DMI: Memory slots populated: 1/2
ago 01 01:35:50 test-laptop kernel: tsc: Detected 2300.000 MHz processor
ago 01 01:35:50 test-laptop kernel: tsc: Detected 2299.968 MHz TSC
ago 01 01:35:50 test-laptop kernel: e820: update [mem 0x00000000-0x00000fff] System RAM ==> device reserved
ago 01 01:35:50 test-laptop kernel: e820: remove [mem 0x000a0000-0x000fffff] System RAM
ago 01 01:35:50 test-laptop kernel: last_pfn = 0x27e800 max_arch_pfn = 0x400000000
ago 01 01:35:50 test-laptop kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
ago 01 01:35:50 test-laptop kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
ago 01 01:35:50 test-laptop kernel: last_pfn = 0x7bd0f max_arch_pfn = 0x400000000
ago 01 01:35:50 test-laptop kernel: esrt: Reserving ESRT space from 0x000000007a800818 to 0x000000007a800850.
ago 01 01:35:50 test-laptop kernel: Using GB pages for direct mapping
ago 01 01:35:50 test-laptop kernel: RAMDISK: [mem 0x592fc000-0x5ae76fff]
ago 01 01:35:50 test-laptop kernel: ACPI: Early table checksum verification disabled
ago 01 01:35:50 test-laptop kernel: ACPI: RSDP 0x000000007BD0D014 000024 (v02 HPQOEM)
ago 01 01:35:50 test-laptop kernel: ACPI: XSDT 0x000000007BCEB188 000124 (v01 HPQOEM SLIC-MPC 00000002 HP 01000013)
ago 01 01:35:50 test-laptop kernel: ACPI: FACP 0x000000007BCE7000 00010C (v05 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: DSDT 0x000000007BCA3000 0409AB (v02 HPQOEM SLIC-MPC 00000000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: FACS 0x000000007BC4C000 000040
ago 01 01:35:50 test-laptop kernel: ACPI: UEFI 0x000000007BD0C000 000236 (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BD08000 0031C6 (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BD06000 001B5F (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BD05000 0000F5 (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: UEFI 0x000000007BD04000 000042 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: IHIS 0x000000007BD03000 000038 (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BD02000 00045A (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BD01000 000046 (v02 HPQOEM INSYDE 00003000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: TPM2 0x000000007BD00000 000034 (v03 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCFF000 000169 (v01 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCF8000 006957 (v01 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: MSDM 0x000000007BCF7000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCF3000 003D8D (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: LPIT 0x000000007BCF2000 000094 (v01 HPQOEM INSYDE 00000000 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: WSMT 0x000000007BCF1000 000028 (v01 HPQOEM INSYDE 00000000 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCF0000 000C2F (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCEE000 00149F (v02 HPQOEM INSYDE 00000000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: DBGP 0x000000007BCED000 000034 (v01 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: DBG2 0x000000007BCEC000 000054 (v00 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCEA000 000B9F (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: ASF! 0x000000007BCE9000 0000A5 (v32 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: ECDT 0x000000007BCE8000 000069 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: HPET 0x000000007BCE6000 000038 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: APIC 0x000000007BCE5000 00012C (v03 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: MCFG 0x000000007BCE4000 00003C (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCA2000 0000DB (v01 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BCA1000 000F38 (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: DMAR 0x000000007BCA0000 0000A8 (v01 HPQOEM INSYDE 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0x000000007BC9F000 000723 (v02 HPQOEM INSYDE 00001000 ACPI 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: FPDT 0x000000007BC9E000 000044 (v01 HPQOEM SLIC-MPC 00000002 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: BGRT 0x000000007BC9D000 000038 (v01 HPQOEM INSYDE 00000001 HP 00040000)
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving FACP table memory at [mem 0x7bce7000-0x7bce710b]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving DSDT table memory at [mem 0x7bca3000-0x7bce39aa]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving FACS table memory at [mem 0x7bc4c000-0x7bc4c03f]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving UEFI table memory at [mem 0x7bd0c000-0x7bd0c235]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd08000-0x7bd0b1c5]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd06000-0x7bd07b5e]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd05000-0x7bd050f4]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving UEFI table memory at [mem 0x7bd04000-0x7bd04041]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving IHIS table memory at [mem 0x7bd03000-0x7bd03037]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd02000-0x7bd02459]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bd01000-0x7bd01045]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving TPM2 table memory at [mem 0x7bd00000-0x7bd00033]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcff000-0x7bcff168]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcf8000-0x7bcfe956]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving MSDM table memory at [mem 0x7bcf7000-0x7bcf7054]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcf3000-0x7bcf6d8c]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving LPIT table memory at [mem 0x7bcf2000-0x7bcf2093]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving WSMT table memory at [mem 0x7bcf1000-0x7bcf1027]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcf0000-0x7bcf0c2e]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcee000-0x7bcef49e]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving DBGP table memory at [mem 0x7bced000-0x7bced033]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving DBG2 table memory at [mem 0x7bcec000-0x7bcec053]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bcea000-0x7bceab9e]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving ASF! table memory at [mem 0x7bce9000-0x7bce90a4]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving ECDT table memory at [mem 0x7bce8000-0x7bce8068]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving HPET table memory at [mem 0x7bce6000-0x7bce6037]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving APIC table memory at [mem 0x7bce5000-0x7bce512b]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving MCFG table memory at [mem 0x7bce4000-0x7bce403b]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bca2000-0x7bca20da]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bca1000-0x7bca1f37]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving DMAR table memory at [mem 0x7bca0000-0x7bca00a7]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving SSDT table memory at [mem 0x7bc9f000-0x7bc9f722]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving FPDT table memory at [mem 0x7bc9e000-0x7bc9e043]
ago 01 01:35:50 test-laptop kernel: ACPI: Reserving BGRT table memory at [mem 0x7bc9d000-0x7bc9d037]
ago 01 01:35:50 test-laptop kernel: No NUMA configuration found
ago 01 01:35:50 test-laptop kernel: Faking a node at [mem 0x0000000000000000-0x000000027e7fffff]
ago 01 01:35:50 test-laptop kernel: NODE_DATA(0) allocated [mem 0x27e7d5200-0x27e7fffff]
ago 01 01:35:50 test-laptop kernel: Reserving Intel graphics memory at [mem 0x7d800000-0x7f7fffff]
ago 01 01:35:50 test-laptop kernel: ACPI: PM-Timer IO Port: 0x1808
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
ago 01 01:35:50 test-laptop kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
ago 01 01:35:50 test-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ago 01 01:35:50 test-laptop kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ago 01 01:35:50 test-laptop kernel: ACPI: Using ACPI (MADT) for SMP configuration information
ago 01 01:35:50 test-laptop kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
ago 01 01:35:50 test-laptop kernel: e820: update [mem 0x6a8d7000-0x6a8e0fff] System RAM ==> device reserved
ago 01 01:35:50 test-laptop kernel: TSC deadline timer available
ago 01 01:35:50 test-laptop kernel: CPU topo: Max. logical packages: 1
ago 01 01:35:50 test-laptop kernel: CPU topo: Max. logical nodes: 1
ago 01 01:35:50 test-laptop kernel: CPU topo: Num. nodes per package: 1
ago 01 01:35:50 test-laptop kernel: CPU topo: Max. logical dies: 1
ago 01 01:35:50 test-laptop kernel: CPU topo: Max. dies per package: 1
ago 01 01:35:50 test-laptop kernel: CPU topo: Max. threads per core: 2
ago 01 01:35:50 test-laptop kernel: CPU topo: Num. cores per package: 2
ago 01 01:35:50 test-laptop kernel: CPU topo: Num. threads per package: 4
ago 01 01:35:50 test-laptop kernel: CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x0002d000-0x0002dfff]
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x0002f000-0x00034fff]
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x00088000-0x000fffff]
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x6a8d7000-0x6a8e0fff]
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x79fae000-0x7bd0dfff]
ago 01 01:35:50 test-laptop kernel: PM: hibernation: Registered nosave memory: [mem 0x7bd0f000-0xffffffff]
ago 01 01:35:50 test-laptop kernel: [gap 0x7f800000-0xfdffffff] available for PCI devices
ago 01 01:35:50 test-laptop kernel: Booting paravirtualized kernel on bare hardware
ago 01 01:35:50 test-laptop kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
ago 01 01:35:50 test-laptop kernel: Zone ranges:
ago 01 01:35:50 test-laptop kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
ago 01 01:35:50 test-laptop kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
ago 01 01:35:50 test-laptop kernel: Normal [mem 0x0000000100000000-0x000000027e7fffff]
ago 01 01:35:50 test-laptop kernel: Device empty
ago 01 01:35:50 test-laptop kernel: Movable zone start for each node
ago 01 01:35:50 test-laptop kernel: Early memory node ranges
ago 01 01:35:50 test-laptop kernel: node 0: [mem 0x0000000000001000-0x000000000002cfff]
ago 01 01:35:50 test-laptop kernel: node 0: [mem 0x000000000002e000-0x000000000002efff]
ago 01 01:35:50 test-laptop kernel: node 0: [mem 0x0000000000035000-0x0000000000087fff]
ago 01 01:35:50 test-laptop kernel: node 0: [mem 0x0000000000100000-0x0000000079fadfff]
ago 01 01:35:50 test-laptop kernel: node 0: [mem 0x000000007bd0e000-0x000000007bd0efff]
ago 01 01:35:50 test-laptop kernel: node 0: [mem 0x0000000100000000-0x000000027e7fffff]
ago 01 01:35:50 test-laptop kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000027e7fffff]
ago 01 01:35:50 test-laptop kernel: On node 0, zone DMA: 1 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: On node 0, zone DMA: 1 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: On node 0, zone DMA: 6 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: On node 0, zone DMA: 120 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: On node 0, zone DMA32: 7520 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: On node 0, zone Normal: 17137 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: On node 0, zone Normal: 6144 pages in unavailable ranges
ago 01 01:35:50 test-laptop kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
ago 01 01:35:50 test-laptop kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u524288
ago 01 01:35:50 test-laptop kernel: pcpu-alloc: s221184 r8192 d28672 u524288 alloc=1*2097152
ago 01 01:35:50 test-laptop kernel: pcpu-alloc: [0] 0 1 2 3
ago 01 01:35:50 test-laptop kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-7.1.3+deb14-amd64 root=UUID=<redacted-uuid> ro rootflags=subvol=@
ago 01 01:35:50 test-laptop kernel: printk: log buffer data + meta data: 131072 + 557056 = 688128 bytes
ago 01 01:35:50 test-laptop kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
ago 01 01:35:50 test-laptop kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
ago 01 01:35:50 test-laptop kernel: software IO TLB: area num 4.
ago 01 01:35:50 test-laptop kernel: Fallback order for Node 0: 0
ago 01 01:35:50 test-laptop kernel: Built 1 zonelists, mobility grouping on. Total pages: 2066223
ago 01 01:35:50 test-laptop kernel: Policy zone: Normal
ago 01 01:35:50 test-laptop kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
ago 01 01:35:50 test-laptop kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
ago 01 01:35:50 test-laptop kernel: ftrace: allocating 48744 entries in 192 pages
ago 01 01:35:50 test-laptop kernel: ftrace: allocated 192 pages with 2 groups
ago 01 01:35:50 test-laptop kernel: Dynamic Preempt: lazy
ago 01 01:35:50 test-laptop kernel: rcu: Preemptible hierarchical RCU implementation.
ago 01 01:35:50 test-laptop kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
ago 01 01:35:50 test-laptop kernel: Trampoline variant of Tasks RCU enabled.
ago 01 01:35:50 test-laptop kernel: Rude variant of Tasks RCU enabled.
ago 01 01:35:50 test-laptop kernel: Tracing variant of Tasks RCU enabled.
ago 01 01:35:50 test-laptop kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
ago 01 01:35:50 test-laptop kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
ago 01 01:35:50 test-laptop kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
ago 01 01:35:50 test-laptop kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
ago 01 01:35:50 test-laptop kernel: NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
ago 01 01:35:50 test-laptop kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
ago 01 01:35:50 test-laptop kernel: Console: colour dummy device 80x25
ago 01 01:35:50 test-laptop kernel: printk: legacy console [tty0] enabled
ago 01 01:35:50 test-laptop kernel: ACPI: Core revision 20251212
ago 01 01:35:50 test-laptop kernel: hpet: HPET dysfunctional in PC10. Force disabled.
ago 01 01:35:50 test-laptop kernel: APIC: Switch to symmetric I/O mode setup
ago 01 01:35:50 test-laptop kernel: DMAR: Host address width 39
ago 01 01:35:50 test-laptop kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
ago 01 01:35:50 test-laptop kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
ago 01 01:35:50 test-laptop kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
ago 01 01:35:50 test-laptop kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
ago 01 01:35:50 test-laptop kernel: DMAR: RMRR base: 0x0000007b57d000 end: 0x0000007b59cfff
ago 01 01:35:50 test-laptop kernel: DMAR: RMRR base: 0x0000007d000000 end: 0x0000007f7fffff
ago 01 01:35:50 test-laptop kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
ago 01 01:35:50 test-laptop kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
ago 01 01:35:50 test-laptop kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
ago 01 01:35:50 test-laptop kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
ago 01 01:35:50 test-laptop kernel: x2apic enabled
ago 01 01:35:50 test-laptop kernel: APIC: Switched APIC routing to: cluster x2apic
ago 01 01:35:50 test-laptop kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x212717146a7, max_idle_ns: 440795291431 ns
ago 01 01:35:50 test-laptop kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4599.93 BogoMIPS (lpj=9199872)
ago 01 01:35:50 test-laptop kernel: x86/cpu: SGX disabled or unsupported by BIOS.
ago 01 01:35:50 test-laptop kernel: CPU0: Thermal monitoring enabled (TM1)
ago 01 01:35:50 test-laptop kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
ago 01 01:35:50 test-laptop kernel: Last level dTLB entries: 4KB 64, 2MB 32, 4MB 32, 1GB 4
ago 01 01:35:50 test-laptop kernel: process: using mwait in idle threads
ago 01 01:35:50 test-laptop kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
ago 01 01:35:50 test-laptop kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
ago 01 01:35:50 test-laptop kernel: SRBDS: Mitigation: Microcode
ago 01 01:35:50 test-laptop kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
ago 01 01:35:50 test-laptop kernel: RETBleed: Mitigation: Enhanced IBRS
ago 01 01:35:50 test-laptop kernel: ITS: Mitigation: Aligned branch/return thunks
ago 01 01:35:50 test-laptop kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
ago 01 01:35:50 test-laptop kernel: VMSCAPE: Mitigation: IBPB before exit to userspace
ago 01 01:35:50 test-laptop kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
ago 01 01:35:50 test-laptop kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
ago 01 01:35:50 test-laptop kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
ago 01 01:35:50 test-laptop kernel: active return thunk: its_return_thunk
ago 01 01:35:50 test-laptop kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
ago 01 01:35:50 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
ago 01 01:35:50 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
ago 01 01:35:50 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
ago 01 01:35:50 test-laptop kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
ago 01 01:35:50 test-laptop kernel: x86/fpu: xstate_offset[3]: 576, xstate_sizes[3]: 64
ago 01 01:35:50 test-laptop kernel: x86/fpu: xstate_offset[4]: 640, xstate_sizes[4]: 64
ago 01 01:35:50 test-laptop kernel: x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
ago 01 01:35:50 test-laptop kernel: pid_max: default: 32768 minimum: 301
ago 01 01:35:50 test-laptop kernel: landlock: Up and running.
ago 01 01:35:50 test-laptop kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
ago 01 01:35:50 test-laptop kernel: AppArmor: AppArmor initialized
ago 01 01:35:50 test-laptop kernel: TOMOYO Linux initialized
ago 01 01:35:50 test-laptop kernel: LSM support for eBPF active
ago 01 01:35:50 test-laptop kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
ago 01 01:35:50 test-laptop kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
ago 01 01:35:50 test-laptop kernel: VFS: Finished mounting rootfs on nullfs
ago 01 01:35:50 test-laptop kernel: smpboot: CPU0: Intel(R) Pentium(R) CPU 5405U @ 2.30GHz (family: 0x6, model: 0x8e, stepping: 0xc)
ago 01 01:35:50 test-laptop kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
ago 01 01:35:50 test-laptop kernel: ... version: 4
ago 01 01:35:50 test-laptop kernel: ... bit width: 48
ago 01 01:35:50 test-laptop kernel: ... generic counters: 4
ago 01 01:35:50 test-laptop kernel: ... generic bitmap: 000000000000000f
ago 01 01:35:50 test-laptop kernel: ... fixed-purpose counters: 3
ago 01 01:35:50 test-laptop kernel: ... fixed-purpose bitmap: 0000000000000007
ago 01 01:35:50 test-laptop kernel: ... value mask: 0000ffffffffffff
ago 01 01:35:50 test-laptop kernel: ... max period: 00007fffffffffff
ago 01 01:35:50 test-laptop kernel: ... global_ctrl mask: 000000070000000f
ago 01 01:35:50 test-laptop kernel: signal: max sigframe size: 2032
ago 01 01:35:50 test-laptop kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1024
ago 01 01:35:50 test-laptop kernel: rcu: Hierarchical SRCU implementation.
ago 01 01:35:50 test-laptop kernel: rcu: Max phase no-delay instances is 1000.
ago 01 01:35:50 test-laptop kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
ago 01 01:35:50 test-laptop kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
ago 01 01:35:50 test-laptop kernel: smp: Bringing up secondary CPUs ...
ago 01 01:35:50 test-laptop kernel: smpboot: x86: Booting SMP configuration:
ago 01 01:35:50 test-laptop kernel: .... node #0, CPUs: #1 #2 #3
ago 01 01:35:50 test-laptop kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
ago 01 01:35:50 test-laptop kernel: smp: Brought up 1 node, 4 CPUs
ago 01 01:35:50 test-laptop kernel: smpboot: Total of 4 processors activated (18399.74 BogoMIPS)
ago 01 01:35:50 test-laptop kernel: node 0 deferred pages initialised in 16ms
ago 01 01:35:50 test-laptop kernel: Memory: 7775144K/8264892K available (18094K kernel code, 3392K rwdata, 13640K rodata, 4572K init, 5308K bss, 475264K reserved, 0K cma-reserved)
ago 01 01:35:50 test-laptop kernel: devtmpfs: initialized
ago 01 01:35:50 test-laptop kernel: x86/mm: Memory block size: 128MB
ago 01 01:35:50 test-laptop kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7b59e000-0x7bc8dfff] (7274496 bytes)
ago 01 01:35:50 test-laptop kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
ago 01 01:35:50 test-laptop kernel: posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
ago 01 01:35:50 test-laptop kernel: futex hash table entries: 1024 (65536 bytes on 1 NUMA nodes, total 64 KiB, linear).
ago 01 01:35:50 test-laptop kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
ago 01 01:35:50 test-laptop kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
ago 01 01:35:50 test-laptop kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
ago 01 01:35:50 test-laptop kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
ago 01 01:35:50 test-laptop kernel: audit: initializing netlink subsys (disabled)
ago 01 01:35:50 test-laptop kernel: audit: type=2000 audit(1785569749.000:1): state=initialized audit_enabled=0 res=1
ago 01 01:35:50 test-laptop kernel: thermal_sys: Registered thermal governor 'fair_share'
ago 01 01:35:50 test-laptop kernel: thermal_sys: Registered thermal governor 'bang_bang'
ago 01 01:35:50 test-laptop kernel: thermal_sys: Registered thermal governor 'step_wise'
ago 01 01:35:50 test-laptop kernel: thermal_sys: Registered thermal governor 'user_space'
ago 01 01:35:50 test-laptop kernel: thermal_sys: Registered thermal governor 'power_allocator'
ago 01 01:35:50 test-laptop kernel: cpuidle: using governor ladder
ago 01 01:35:50 test-laptop kernel: cpuidle: using governor menu
ago 01 01:35:50 test-laptop kernel: Freeing SMP alternatives memory: 48K
ago 01 01:35:50 test-laptop kernel: efi: Freeing EFI boot services memory: 184280K
ago 01 01:35:50 test-laptop kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
ago 01 01:35:50 test-laptop kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
ago 01 01:35:50 test-laptop kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
ago 01 01:35:50 test-laptop kernel: PCI: Using configuration type 1 for base access
ago 01 01:35:50 test-laptop kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
ago 01 01:35:50 test-laptop kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
ago 01 01:35:50 test-laptop kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
ago 01 01:35:50 test-laptop kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
ago 01 01:35:50 test-laptop kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
ago 01 01:35:50 test-laptop kernel: ACPI: Added _OSI(Module Device)
ago 01 01:35:50 test-laptop kernel: ACPI: Added _OSI(Processor Device)
ago 01 01:35:50 test-laptop kernel: ACPI: Added _OSI(Processor Aggregator Device)
ago 01 01:35:50 test-laptop kernel: ACPI: 15 ACPI AML tables successfully acquired and loaded
ago 01 01:35:50 test-laptop kernel: ACPI: EC: EC started
ago 01 01:35:50 test-laptop kernel: ACPI: EC: interrupt blocked
ago 01 01:35:50 test-laptop kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
ago 01 01:35:50 test-laptop kernel: ACPI: EC: Boot ECDT EC used to handle transactions
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_: platform _OSC: OS support mask [002e7eff]
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_: platform _OSC: OS control mask [002e7eff]
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF89140131A400 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF8914002D9000 0005A2 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF8914012A6700 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF89140132E400 000149 (v02 PmRef Cpu0Hwp 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF8914002DB800 000724 (v02 PmRef HwpLvt 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF891401378800 0005FC (v02 PmRef ApIst 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF891401319C00 000317 (v02 PmRef ApHwp 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF8914000B7000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Dynamic OEM Table Load:
ago 01 01:35:50 test-laptop kernel: ACPI: SSDT 0xFFFF891401319400 00030A (v02 PmRef ApCst 00003000 INTL 20160422)
ago 01 01:35:50 test-laptop kernel: ACPI: Interpreter enabled
ago 01 01:35:50 test-laptop kernel: ACPI: PM: (supports S0 S3 S4 S5)
ago 01 01:35:50 test-laptop kernel: ACPI: Using IOAPIC for interrupt routing
ago 01 01:35:50 test-laptop kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ago 01 01:35:50 test-laptop kernel: PCI: Ignoring E820 reservations for host bridge windows
ago 01 01:35:50 test-laptop kernel: ACPI: Enabled 8 GPEs in block 00 to 7F
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
ago 01 01:35:50 test-laptop kernel: acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
ago 01 01:35:50 test-laptop kernel: ACPI: \_TZ_.FN00: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_TZ_.FN01: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_TZ_.FN02: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_TZ_.FN03: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \_TZ_.FN04: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: \PIN_: New power resource
ago 01 01:35:50 test-laptop kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
ago 01 01:35:50 test-laptop kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
ago 01 01:35:50 test-laptop kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
ago 01 01:35:50 test-laptop kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR]
ago 01 01:35:50 test-laptop kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
ago 01 01:35:50 test-laptop kernel: PCI host bridge to bus 0000:00
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: root bus resource [mem 0x7f800000-0xdfffffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:00.0: [8086:3e35] type 00 class 0x060000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: [8086:3ea1] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: BAR 2 [mem 0x80000000-0x9fffffff 64bit pref]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: BAR 4 [io 0x5000-0x503f]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:04.0: BAR 0 [mem 0xa1310000-0xa1317fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:08.0: BAR 0 [mem 0xa1320000-0xa1320fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:12.0: [8086:9df9] type 00 class 0x118000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:12.0: BAR 0 [mem 0xa1321000-0xa1321fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.0: [8086:9ded] type 00 class 0x0c0330 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.0: BAR 0 [mem 0xa1300000-0xa130ffff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.2: [8086:9def] type 00 class 0x050000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.2: BAR 0 [mem 0xa131c000-0xa131dfff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.2: BAR 2 [mem 0xa1322000-0xa1322fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:16.0: [8086:9de0] type 00 class 0x078000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:16.0: BAR 0 [mem 0xa1323000-0xa1323fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:16.0: PME# supported from D3hot
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: [8086:9dd3] type 00 class 0x010601 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: BAR 0 [mem 0xa131e000-0xa131ffff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: BAR 1 [mem 0xa1327000-0xa13270ff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: BAR 2 [io 0x5080-0x5087]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: BAR 3 [io 0x5088-0x508b]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: BAR 4 [io 0x5060-0x507f]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: BAR 5 [mem 0xa1326000-0xa13267ff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: PME# supported from D3hot
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: [8086:9db0] type 01 class 0x060400 PCIe Root Port
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: bridge window [io 0x4000-0x4fff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: bridge window [mem 0xa1200000-0xa12fffff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: [8086:9db1] type 01 class 0x060400 PCIe Root Port
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: PCI bridge to [bus 02]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: bridge window [io 0x3000-0x3fff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: bridge window [mem 0xa1100000-0xa11fffff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.0: [8086:9d85] type 00 class 0x060100 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.3: [8086:9dc8] type 00 class 0x040300 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.3: BAR 0 [mem 0xa1318000-0xa131bfff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.3: BAR 4 [mem 0xa1000000-0xa10fffff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.4: [8086:9da3] type 00 class 0x0c0500 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.4: BAR 0 [mem 0xa1324000-0xa13240ff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.4: BAR 4 [io 0x5040-0x505f]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.5: [8086:9da4] type 00 class 0x0c8000 conventional PCI endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: BAR 0 [io 0x4000-0x40ff]
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: BAR 2 [mem 0xa1204000-0xa1204fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: BAR 4 [mem 0xa1200000-0xa1203fff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: supports D1 D2
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
ago 01 01:35:50 test-laptop kernel: pci 0000:02:00.0: [10ec:d723] type 00 class 0x028000 PCIe Endpoint
ago 01 01:35:50 test-laptop kernel: pci 0000:02:00.0: BAR 0 [io 0x3000-0x30ff]
ago 01 01:35:50 test-laptop kernel: pci 0000:02:00.0: BAR 2 [mem 0xa1100000-0xa110ffff 64bit]
ago 01 01:35:50 test-laptop kernel: pci 0000:02:00.0: supports D1 D2
ago 01 01:35:50 test-laptop kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: PCI bridge to [bus 02]
ago 01 01:35:50 test-laptop kernel: ACPI: EC: interrupt unblocked
ago 01 01:35:50 test-laptop kernel: ACPI: EC: event unblocked
ago 01 01:35:50 test-laptop kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
ago 01 01:35:50 test-laptop kernel: ACPI: EC: GPE=0x17
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: Boot ECDT EC initialization complete
ago 01 01:35:50 test-laptop kernel: ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
ago 01 01:35:50 test-laptop kernel: iommu: Default domain type: Translated
ago 01 01:35:50 test-laptop kernel: iommu: DMA domain TLB invalidation policy: lazy mode
ago 01 01:35:50 test-laptop kernel: pps_core: LinuxPPS API ver. 1 registered
ago 01 01:35:50 test-laptop kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
ago 01 01:35:50 test-laptop kernel: PTP clock support registered
ago 01 01:35:50 test-laptop kernel: EDAC MC: Ver: 3.0.0
ago 01 01:35:50 test-laptop kernel: efivars: Registered efivars operations
ago 01 01:35:50 test-laptop kernel: NetLabel: Initializing
ago 01 01:35:50 test-laptop kernel: NetLabel: domain hash size = 128
ago 01 01:35:50 test-laptop kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
ago 01 01:35:50 test-laptop kernel: NetLabel: unlabeled traffic allowed by default
ago 01 01:35:50 test-laptop kernel: PCI: Using ACPI for IRQ routing
ago 01 01:35:50 test-laptop kernel: PCI: pci_cache_line_size set to 64 bytes
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x0002d000-0x0002ffff]
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x0002f000-0x0002ffff]
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x00088000-0x0008ffff]
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x6a8d7000-0x6bffffff]
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x79fae000-0x7bffffff]
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x7bd0f000-0x7bffffff]
ago 01 01:35:50 test-laptop kernel: e820: register RAM buffer resource [mem 0x27e800000-0x27fffffff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: vgaarb: bridge control possible
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
ago 01 01:35:50 test-laptop kernel: vgaarb: loaded
ago 01 01:35:50 test-laptop kernel: clocksource: Switched to clocksource tsc-early
ago 01 01:35:50 test-laptop kernel: VFS: Disk quotas dquot_6.6.0
ago 01 01:35:50 test-laptop kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
ago 01 01:35:50 test-laptop kernel: AppArmor: AppArmor Filesystem Enabled
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:00: Could not reserve [mem 0x40000000-0x403fffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfd000000-0xfd69ffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfd6b0000-0xfd6cffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfd6f0000-0xfdffffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Could not reserve [mem 0xfe000000-0xfe01ffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xfe200000-0xfe7fffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Reserved [mem 0xff000000-0xffffffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:01: Could not reserve [io 0x1800-0x18fe]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:02: Reserved [io 0x2000-0x20fe]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x002e-0x002f]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x004e-0x004f]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0061]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0063]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0065]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0067]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0068]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x006c]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0070]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0080]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x0092]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Skipped [io 0x00b2-0x00b3]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Reserved [io 0x0680-0x069f]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Reserved [io 0x164e-0x164f]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:03: Reserved [io 0xfd60-0xfd63]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:04: Reserved [mem 0xfd6e0000-0xfd6effff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:04: Reserved [mem 0xfd6d0000-0xfd6dffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:04: Reserved [mem 0xfd6a0000-0xfd6affff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed10000-0xfed17fff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed18000-0xfed18fff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed19000-0xfed19fff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xe0000000-0xefffffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Reserved [mem 0xfed20000-0xfed3ffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Could not reserve [mem 0xfed90000-0xfed93fff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Could not reserve [mem 0xfed45000-0xfed8ffff]
ago 01 01:35:50 test-laptop kernel: acpi PNP0C02:06: Could not reserve [mem 0xfee00000-0xfeefffff]
ago 01 01:35:50 test-laptop kernel: pnp: PnP ACPI init
ago 01 01:35:50 test-laptop kernel: pnp: PnP ACPI: found 2 devices
ago 01 01:35:50 test-laptop kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
ago 01 01:35:50 test-laptop kernel: NET: Registered PF_INET protocol family
ago 01 01:35:50 test-laptop kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
ago 01 01:35:50 test-laptop kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
ago 01 01:35:50 test-laptop kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
ago 01 01:35:50 test-laptop kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
ago 01 01:35:50 test-laptop kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
ago 01 01:35:50 test-laptop kernel: TCP: Hash tables configured (established 65536 bind 65536)
ago 01 01:35:50 test-laptop kernel: MPTCP token hash table entries: 8192 (order: 6, 196608 bytes, linear)
ago 01 01:35:50 test-laptop kernel: UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
ago 01 01:35:50 test-laptop kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
ago 01 01:35:50 test-laptop kernel: NET: Registered PF_XDP protocol family
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: bridge window [io 0x4000-0x4fff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: bridge window [mem 0xa1200000-0xa12fffff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: PCI bridge to [bus 02]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: bridge window [io 0x3000-0x3fff]
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: bridge window [mem 0xa1100000-0xa11fffff]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: resource 7 [mem 0x7f800000-0xdfffffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:01: resource 1 [mem 0xa1200000-0xa12fffff]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
ago 01 01:35:50 test-laptop kernel: pci_bus 0000:02: resource 1 [mem 0xa1100000-0xa11fffff]
ago 01 01:35:50 test-laptop kernel: PCI: CLS 64 bytes, default 64
ago 01 01:35:50 test-laptop kernel: DMAR: No ATSR found
ago 01 01:35:50 test-laptop kernel: DMAR: No SATC found
ago 01 01:35:50 test-laptop kernel: DMAR: dmar0: Using Queued invalidation
ago 01 01:35:50 test-laptop kernel: DMAR: dmar1: Using Queued invalidation
ago 01 01:35:50 test-laptop kernel: Trying to unpack rootfs image as initramfs...
ago 01 01:35:50 test-laptop kernel: pci 0000:00:02.0: Adding to iommu group 0
ago 01 01:35:50 test-laptop kernel: pci 0000:00:00.0: Adding to iommu group 1
ago 01 01:35:50 test-laptop kernel: pci 0000:00:04.0: Adding to iommu group 2
ago 01 01:35:50 test-laptop kernel: pci 0000:00:08.0: Adding to iommu group 3
ago 01 01:35:50 test-laptop kernel: pci 0000:00:12.0: Adding to iommu group 4
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.0: Adding to iommu group 5
ago 01 01:35:50 test-laptop kernel: pci 0000:00:14.2: Adding to iommu group 5
ago 01 01:35:50 test-laptop kernel: pci 0000:00:16.0: Adding to iommu group 6
ago 01 01:35:50 test-laptop kernel: pci 0000:00:17.0: Adding to iommu group 7
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.0: Adding to iommu group 8
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1d.1: Adding to iommu group 9
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.0: Adding to iommu group 10
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.3: Adding to iommu group 10
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.4: Adding to iommu group 10
ago 01 01:35:50 test-laptop kernel: pci 0000:00:1f.5: Adding to iommu group 10
ago 01 01:35:50 test-laptop kernel: pci 0000:01:00.0: Adding to iommu group 11
ago 01 01:35:50 test-laptop kernel: pci 0000:02:00.0: Adding to iommu group 12
ago 01 01:35:50 test-laptop kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
ago 01 01:35:50 test-laptop kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
ago 01 01:35:50 test-laptop kernel: software IO TLB: mapped [mem 0x000000006d278000-0x0000000071278000] (64MB)
ago 01 01:35:50 test-laptop kernel: platform rtc_cmos: registered fallback platform RTC device
ago 01 01:35:50 test-laptop kernel: Initialise system trusted keyrings
ago 01 01:35:50 test-laptop kernel: Key type blacklist registered
ago 01 01:35:50 test-laptop kernel: workingset: timestamp_bits=36 (anon: 32) max_order=21 bucket_order=0 (anon: 0)
ago 01 01:35:50 test-laptop kernel: fuse: init (API version 7.45)
ago 01 01:35:50 test-laptop kernel: integrity: Platform Keyring initialized
ago 01 01:35:50 test-laptop kernel: integrity: Machine keyring initialized
ago 01 01:35:50 test-laptop kernel: Key type asymmetric registered
ago 01 01:35:50 test-laptop kernel: Asymmetric key parser 'x509' registered
ago 01 01:35:50 test-laptop kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
ago 01 01:35:50 test-laptop kernel: io scheduler mq-deadline registered
ago 01 01:35:50 test-laptop kernel: ledtrig-cpu: registered to indicate activity on CPUs
ago 01 01:35:50 test-laptop kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
ago 01 01:35:50 test-laptop kernel: pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
ago 01 01:35:50 test-laptop kernel: pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
ago 01 01:35:50 test-laptop kernel: pcieport 0000:00:1d.1: AER: enabled with IRQ 124
ago 01 01:35:50 test-laptop kernel: pcieport 0000:00:1d.1: DPC: enabled with IRQ 124
ago 01 01:35:50 test-laptop kernel: pcieport 0000:00:1d.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
ago 01 01:35:50 test-laptop kernel: Monitor-Mwait will be used to enter C-1 state
ago 01 01:35:50 test-laptop kernel: Monitor-Mwait will be used to enter C-2 state
ago 01 01:35:50 test-laptop kernel: Monitor-Mwait will be used to enter C-3 state
ago 01 01:35:50 test-laptop kernel: acpi LNXTHERM:00: registered as thermal_zone0
ago 01 01:35:50 test-laptop kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
ago 01 01:35:50 test-laptop kernel: acpi LNXTHERM:01: registered as thermal_zone1
ago 01 01:35:50 test-laptop kernel: ACPI: thermal: Thermal Zone [TZ01] (30 C)
ago 01 01:35:50 test-laptop kernel: acpi LNXTHERM:02: registered as thermal_zone2
ago 01 01:35:50 test-laptop kernel: ACPI: thermal: Thermal Zone [TZ02] (10 C)
ago 01 01:35:50 test-laptop kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
ago 01 01:35:50 test-laptop kernel: hpet_acpi_probe: no address or irqs in _CRS
ago 01 01:35:50 test-laptop kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
ago 01 01:35:50 test-laptop kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
ago 01 01:35:50 test-laptop kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
ago 01 01:35:50 test-laptop kernel: mousedev: PS/2 mouse device common for all mice
ago 01 01:35:50 test-laptop kernel: rtc_cmos rtc_cmos: RTC can wake from S4
ago 01 01:35:50 test-laptop kernel: rtc_cmos rtc_cmos: registered as rtc0
ago 01 01:35:50 test-laptop kernel: rtc_cmos rtc_cmos: setting system clock to 2026-08-01T07:35:49 UTC (1785569749)
ago 01 01:35:50 test-laptop kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
ago 01 01:35:50 test-laptop kernel: intel_pstate: Intel P-state driver initializing
ago 01 01:35:50 test-laptop kernel: intel_pstate: HWP enabled
ago 01 01:35:50 test-laptop kernel: efifb: probing for efifb
ago 01 01:35:50 test-laptop kernel: efifb: framebuffer at 0x80000000, using 4128k, total 4128k
ago 01 01:35:50 test-laptop kernel: efifb: mode is 1366x768x32, linelength=5504, pages=1
ago 01 01:35:50 test-laptop kernel: efifb: scrolling: redraw
ago 01 01:35:50 test-laptop kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
ago 01 01:35:50 test-laptop kernel: Console: switching to colour frame buffer device 170x48
ago 01 01:35:50 test-laptop kernel: fb0: EFI VGA frame buffer device
ago 01 01:35:50 test-laptop kernel: NET: Registered PF_INET6 protocol family
ago 01 01:35:50 test-laptop kernel: Segment Routing with IPv6
ago 01 01:35:50 test-laptop kernel: RPL Segment Routing with IPv6
ago 01 01:35:50 test-laptop kernel: In-situ OAM (IOAM) with IPv6
ago 01 01:35:50 test-laptop kernel: mip6: Mobile IPv6
ago 01 01:35:50 test-laptop kernel: NET: Registered PF_PACKET protocol family
ago 01 01:35:50 test-laptop kernel: mpls_gso: MPLS GSO support
ago 01 01:35:50 test-laptop kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ago 01 01:35:50 test-laptop kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
ago 01 01:35:50 test-laptop kernel: microcode: Current revision: 0x00000100
ago 01 01:35:50 test-laptop kernel: microcode: Updated early from: 0x000000fa
ago 01 01:35:50 test-laptop kernel: IPI shorthand broadcast: enabled
ago 01 01:35:50 test-laptop kernel: sched_clock: Marking stable (404053242, 9229319)->(457584205, -44301644)
ago 01 01:35:50 test-laptop kernel: registered taskstats version 1
ago 01 01:35:50 test-laptop kernel: Loading compiled-in X.509 certificates
ago 01 01:35:50 test-laptop kernel: Freeing initrd memory: 28140K
ago 01 01:35:50 test-laptop kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 0f4e3eca609e17d2e45672bfff3d98dd0e25dab8'
ago 01 01:35:50 test-laptop kernel: Demotion targets for Node 0: null
ago 01 01:35:50 test-laptop kernel: Key type .fscrypt registered
ago 01 01:35:50 test-laptop kernel: Key type fscrypt-provisioning registered
ago 01 01:35:50 test-laptop kernel: Key type encrypted registered
ago 01 01:35:50 test-laptop kernel: AppArmor: AppArmor sha256 policy hashing enabled
ago 01 01:35:50 test-laptop kernel: ima: Allocated hash algorithm: sha256
ago 01 01:35:50 test-laptop kernel: ima: No architecture policies found
ago 01 01:35:50 test-laptop kernel: evm: Initialising EVM extended attributes:
ago 01 01:35:50 test-laptop kernel: evm: security.selinux
ago 01 01:35:50 test-laptop kernel: evm: security.SMACK64 (disabled)
ago 01 01:35:50 test-laptop kernel: evm: security.SMACK64EXEC (disabled)
ago 01 01:35:50 test-laptop kernel: evm: security.SMACK64TRANSMUTE (disabled)
ago 01 01:35:50 test-laptop kernel: evm: security.SMACK64MMAP (disabled)
ago 01 01:35:50 test-laptop kernel: evm: security.apparmor
ago 01 01:35:50 test-laptop kernel: evm: security.ima
ago 01 01:35:50 test-laptop kernel: evm: security.capability
ago 01 01:35:50 test-laptop kernel: evm: HMAC attrs: 0x1
ago 01 01:35:50 test-laptop kernel: RAS: Correctable Errors collector initialized.
ago 01 01:35:50 test-laptop kernel: clk: Disabling unused clocks
ago 01 01:35:50 test-laptop kernel: PM: genpd: Disabling unused power domains
ago 01 01:35:50 test-laptop kernel: Freeing unused decrypted memory: 2028K
ago 01 01:35:50 test-laptop kernel: Freeing unused kernel image (initmem) memory: 4572K
ago 01 01:35:50 test-laptop kernel: Write protecting the kernel read-only data: 32768k
ago 01 01:35:50 test-laptop kernel: Freeing unused kernel image (text/rodata gap) memory: 336K
ago 01 01:35:50 test-laptop kernel: Freeing unused kernel image (rodata/data gap) memory: 696K
ago 01 01:35:50 test-laptop kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
ago 01 01:35:50 test-laptop kernel: Run /init as init process
ago 01 01:35:50 test-laptop kernel: with arguments:
ago 01 01:35:50 test-laptop kernel: /init
ago 01 01:35:50 test-laptop kernel: with environment:
ago 01 01:35:50 test-laptop kernel: HOME=/
ago 01 01:35:50 test-laptop kernel: TERM=linux
ago 01 01:35:50 test-laptop systemd[1]: Inserted module 'autofs4'
ago 01 01:35:50 test-laptop systemd[1]: Successfully made /usr/ read-only.
ago 01 01:35:50 test-laptop systemd[1]: systemd 261.1-3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +LIBARCHIVE)
ago 01 01:35:50 test-laptop systemd[1]: Detected architecture x86-64.
ago 01 01:35:50 test-laptop systemd[1]: Running in initrd.
ago 01 01:35:50 test-laptop systemd[1]: Hostname set to <test-laptop>.
ago 01 01:35:50 test-laptop systemd[1]: bpf-restrict-fs: LSM BPF program attached
ago 01 01:35:50 test-laptop kernel: tsc: Refined TSC clocksource calibration: 2303.999 MHz
ago 01 01:35:50 test-laptop kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2135f6faae8, max_idle_ns: 440795313647 ns
ago 01 01:35:50 test-laptop kernel: clocksource: Switched to clocksource tsc
ago 01 01:35:50 test-laptop systemd[1]: Queued start job for default target initrd.target.
ago 01 01:35:50 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-f9a225cc\x2d6ce3\x2d4819\x2da090\x2d53646d1bb6d7.device - /dev/disk/by-uuid/<redacted-uuid>...
ago 01 01:35:50 test-laptop systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
ago 01 01:35:50 test-laptop systemd[1]: Reached target slices.target - Slice Units.
ago 01 01:35:50 test-laptop systemd[1]: Reached target swap.target - Swaps.
ago 01 01:35:50 test-laptop systemd[1]: Reached target timers.target - Timer Units.
ago 01 01:35:50 test-laptop systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
ago 01 01:35:50 test-laptop systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
ago 01 01:35:50 test-laptop systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
ago 01 01:35:50 test-laptop systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
ago 01 01:35:50 test-laptop systemd[1]: Reached target sockets.target - Socket Units.
ago 01 01:35:50 test-laptop systemd[1]: dracut-cmdline-ask.service - dracut ask for additional cmdline parameters skipped, no trigger condition checks were met.
ago 01 01:35:50 test-laptop systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
ago 01 01:35:50 test-laptop systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
ago 01 01:35:50 test-laptop systemd[1]: Starting systemd-journald.service - Journal Service...
ago 01 01:35:50 test-laptop systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
ago 01 01:35:50 test-laptop systemd[1]: systemd-pcrphase-initrd.service - TPM PCR Barrier (initrd) skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:35:50 test-laptop systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
ago 01 01:35:50 test-laptop systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
ago 01 01:35:50 test-laptop systemd-journald[163]: Collecting audit messages is disabled.
ago 01 01:35:50 test-laptop systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
ago 01 01:35:50 test-laptop systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook.
ago 01 01:35:50 test-laptop kernel: i2c_dev: i2c /dev entries driver
ago 01 01:35:50 test-laptop systemd[1]: dracut-pre-udev.service - dracut pre-udev hook skipped, no trigger condition checks were met.
ago 01 01:35:50 test-laptop systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
ago 01 01:35:50 test-laptop systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
ago 01 01:35:50 test-laptop systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
ago 01 01:35:50 test-laptop systemd[1]: Reached target local-fs.target - Local File Systems.
ago 01 01:35:50 test-laptop kernel: lp: driver loaded but no devices found
ago 01 01:35:50 test-laptop systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
ago 01 01:35:50 test-laptop kernel: ppdev: user-space parallel port driver
ago 01 01:35:50 test-laptop systemd[1]: Started systemd-journald.service - Journal Service.
ago 01 01:35:50 test-laptop kernel: ACPI: bus type drm_connector registered
ago 01 01:35:51 test-laptop kernel: SCSI subsystem initialized
ago 01 01:35:51 test-laptop kernel: ACPI: bus type USB registered
ago 01 01:35:51 test-laptop kernel: usbcore: registered new interface driver usbfs
ago 01 01:35:51 test-laptop kernel: usbcore: registered new interface driver hub
ago 01 01:35:51 test-laptop kernel: usbcore: registered new device driver usb
ago 01 01:35:51 test-laptop kernel: libata version 3.00 loaded.
ago 01 01:35:51 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:35:51 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:35:51 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:35:51 test-laptop kernel: wmi_bus wmi_bus-PNP0C14:03: [Firmware Info]: <redacted-uuid> has zero instances
ago 01 01:35:51 test-laptop kernel: ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
ago 01 01:35:51 test-laptop kernel: ahci 0000:00:17.0: 1/1 ports implemented (port mask 0x1)
ago 01 01:35:51 test-laptop kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds apst
ago 01 01:35:51 test-laptop kernel: scsi host0: ahci
ago 01 01:35:51 test-laptop kernel: ata1: SATA max UDMA/133 abar m2048@0xa1326000 port 0xa1326100 irq 125 lpm-pol 3
ago 01 01:35:51 test-laptop kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
ago 01 01:35:51 test-laptop kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
ago 01 01:35:51 test-laptop kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
ago 01 01:35:51 test-laptop kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
ago 01 01:35:51 test-laptop kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
ago 01 01:35:51 test-laptop kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
ago 01 01:35:51 test-laptop kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.01
ago 01 01:35:51 test-laptop kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
ago 01 01:35:51 test-laptop kernel: usb usb1: Product: xHCI Host Controller
ago 01 01:35:51 test-laptop kernel: usb usb1: Manufacturer: Linux 7.1.3+deb14-amd64 xhci-hcd
ago 01 01:35:51 test-laptop kernel: usb usb1: SerialNumber: <redacted>
ago 01 01:35:51 test-laptop kernel: hub 1-0:1.0: USB hub found
ago 01 01:35:51 test-laptop kernel: hub 1-0:1.0: 12 ports detected
ago 01 01:35:51 test-laptop kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.01
ago 01 01:35:51 test-laptop kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
ago 01 01:35:51 test-laptop kernel: usb usb2: Product: xHCI Host Controller
ago 01 01:35:51 test-laptop kernel: usb usb2: Manufacturer: Linux 7.1.3+deb14-amd64 xhci-hcd
ago 01 01:35:51 test-laptop kernel: usb usb2: SerialNumber: <redacted>
ago 01 01:35:51 test-laptop kernel: hub 2-0:1.0: USB hub found
ago 01 01:35:51 test-laptop kernel: hub 2-0:1.0: 4 ports detected
ago 01 01:35:51 test-laptop kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
ago 01 01:35:51 test-laptop kernel: ata1.00: ACPI cmd f5/<redacted-mac>(SECURITY FREEZE LOCK) filtered out
ago 01 01:35:51 test-laptop kernel: ata1.00: ATA-10: Acer SSD SA100 120GB, U0401A0, max UDMA/133
ago 01 01:35:51 test-laptop kernel: ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 32), AA
ago 01 01:35:51 test-laptop kernel: ata1.00: ACPI cmd f5/<redacted-mac>(SECURITY FREEZE LOCK) filtered out
ago 01 01:35:51 test-laptop kernel: ata1.00: configured for UDMA/133
ago 01 01:35:51 test-laptop kernel: usb 1-3: new full-speed USB device number 2 using xhci_hcd
ago 01 01:35:51 test-laptop kernel: scsi 0:0:0:0: Direct-Access ATA Acer SSD SA100 1 1A0 PQ: 0 ANSI: 5
ago 01 01:35:51 test-laptop kernel: sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
ago 01 01:35:51 test-laptop kernel: sd 0:0:0:0: [sda] Write Protect is off
ago 01 01:35:51 test-laptop kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
ago 01 01:35:51 test-laptop kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
ago 01 01:35:51 test-laptop kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
ago 01 01:35:51 test-laptop kernel: sda: sda1 sda2 sda3
ago 01 01:35:51 test-laptop kernel: sd 0:0:0:0: [sda] Attached SCSI disk
ago 01 01:35:51 test-laptop kernel: usb 1-3: New USB device found, idVendor=1ea7, idProduct=0066, bcdDevice= 2.00
ago 01 01:35:51 test-laptop kernel: usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
ago 01 01:35:51 test-laptop kernel: usb 1-3: Product: 2.4G Mouse
ago 01 01:35:51 test-laptop kernel: xor: measuring software checksum speed
ago 01 01:35:51 test-laptop kernel: prefetch64-sse : 14102 MB/sec
ago 01 01:35:51 test-laptop kernel: sse : 11817 MB/sec
ago 01 01:35:51 test-laptop kernel: xor: using function: prefetch64-sse (14102 MB/sec)
ago 01 01:35:51 test-laptop kernel: raid6: sse2x4 gen() 11324 MB/s
ago 01 01:35:51 test-laptop kernel: usb 1-5: new high-speed USB device number 3 using xhci_hcd
ago 01 01:35:51 test-laptop kernel: raid6: sse2x2 gen() 12376 MB/s
ago 01 01:35:52 test-laptop kernel: raid6: sse2x1 gen() 8240 MB/s
ago 01 01:35:52 test-laptop kernel: raid6: using algorithm sse2x2 gen() 12376 MB/s
ago 01 01:35:52 test-laptop kernel: usb 1-5: New USB device found, idVendor=04f2, idProduct=b67f, bcdDevice=26.67
ago 01 01:35:52 test-laptop kernel: usb 1-5: New USB device strings: Mfr=3, Product=1, SerialNumber=2
ago 01 01:35:52 test-laptop kernel: usb 1-5: Product: HP TrueVision HD Camera
ago 01 01:35:52 test-laptop kernel: usb 1-5: Manufacturer: Chicony Electronics Co.,Ltd.
ago 01 01:35:52 test-laptop kernel: usb 1-5: SerialNumber: <redacted>
ago 01 01:35:52 test-laptop kernel: psmouse serio1: synaptics: queried max coordinates: x [..5648], y [..4826]
ago 01 01:35:52 test-laptop kernel: raid6: .... xor() 6720 MB/s, rmw enabled
ago 01 01:35:52 test-laptop kernel: raid6: using ssse3x2 recovery algorithm
ago 01 01:35:52 test-laptop kernel: psmouse serio1: synaptics: queried min coordinates: x [1292..], y [1026..]
ago 01 01:35:52 test-laptop kernel: psmouse serio1: synaptics: Your touchpad (PNP: SYN3286 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.
ago 01 01:35:52 test-laptop kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 8.16, id: 0x1e2b1, caps: 0xf00323/0x840300/0x2e800/0x400000, board id: 3320, fw id: 2659795
ago 01 01:35:52 test-laptop kernel: usb 1-10: new full-speed USB device number 4 using xhci_hcd
ago 01 01:35:52 test-laptop kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
ago 01 01:35:52 test-laptop kernel: usb 1-10: device descriptor read/64, error -71
ago 01 01:35:52 test-laptop kernel: usb 1-10: device descriptor read/64, error -71
ago 01 01:35:52 test-laptop kernel: usb 1-10: new full-speed USB device number 5 using xhci_hcd
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: [drm] Found coffeelake/ult (device ID 3ea1) integrated display version 9.00 stepping N/A
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
ago 01 01:35:52 test-laptop kernel: Console: switching to colour dummy device 80x25
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
ago 01 01:35:52 test-laptop kernel: usb 1-10: device descriptor read/64, error -71
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io:owns=io+mem
ago 01 01:35:52 test-laptop kernel: i915 0000:00:02.0: [drm] Registered 3 planes with drm panic
ago 01 01:35:52 test-laptop kernel: [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0
ago 01 01:35:52 test-laptop kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
ago 01 01:35:52 test-laptop kernel: input: Video Bus as /devices/pci0000:00/acpi.video_bus.0/input/input3
ago 01 01:35:53 test-laptop kernel: usb 1-10: device descriptor read/64, error -71
ago 01 01:35:53 test-laptop kernel: Btrfs loaded, zoned=yes, fsverity=yes
ago 01 01:35:53 test-laptop kernel: usb usb1-port10: attempt power cycle
ago 01 01:35:53 test-laptop kernel: fbcon: i915drmfb (fb0) is primary device
ago 01 01:35:53 test-laptop kernel: usb 1-10: new full-speed USB device number 6 using xhci_hcd
ago 01 01:35:53 test-laptop kernel: usb 1-10: Device not responding to setup address.
ago 01 01:35:53 test-laptop kernel: usb 1-10: Device not responding to setup address.
ago 01 01:35:54 test-laptop kernel: usb 1-10: device not accepting address 6, error -71
ago 01 01:35:54 test-laptop kernel: usb 1-10: WARN: invalid context state for evaluate context command.
ago 01 01:35:54 test-laptop kernel: Console: switching to colour frame buffer device 170x48
ago 01 01:35:54 test-laptop kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
ago 01 01:35:54 test-laptop kernel: usb 1-10: new full-speed USB device number 7 using xhci_hcd
ago 01 01:35:54 test-laptop kernel: usb 1-10: Device not responding to setup address.
ago 01 01:35:54 test-laptop kernel: usb 1-10: Device not responding to setup address.
ago 01 01:35:54 test-laptop kernel: usb 1-10: device not accepting address 7, error -71
ago 01 01:35:54 test-laptop kernel: usb 1-10: WARN: invalid context state for evaluate context command.
ago 01 01:35:54 test-laptop kernel: usb usb1-port10: unable to enumerate USB device
ago 01 01:35:54 test-laptop kernel: hid: raw HID events driver (C) Jiri Kosina
ago 01 01:35:54 test-laptop kernel: usbcore: registered new interface driver usbhid
ago 01 01:35:54 test-laptop kernel: usbhid: USB HID core driver
ago 01 01:35:54 test-laptop kernel: input: 2.4G Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1EA7:0066.0001/input/input4
ago 01 01:35:54 test-laptop kernel: hid-generic 0003:1EA7:0066.0001: input,hidraw0: USB HID v1.10 Keyboard [2.4G Mouse] on usb-0000:00:14.0-3/input0
ago 01 01:35:54 test-laptop kernel: input: 2.4G Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input5
ago 01 01:35:54 test-laptop kernel: input: 2.4G Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input6
ago 01 01:35:54 test-laptop kernel: input: 2.4G Mouse Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input7
ago 01 01:35:54 test-laptop kernel: input: 2.4G Mouse System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1EA7:0066.0002/input/input8
ago 01 01:35:54 test-laptop kernel: hid-generic 0003:1EA7:0066.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [2.4G Mouse] on usb-0000:00:14.0-3/input1
ago 01 01:35:54 test-laptop kernel: BTRFS: device label rootfs devid 1 transid 11267 /dev/sda3 (8:3) scanned by mount (312)
ago 01 01:35:54 test-laptop kernel: BTRFS info (device sda3): first mount of filesystem <redacted-uuid>
ago 01 01:35:54 test-laptop kernel: BTRFS info (device sda3): using crc32c checksum algorithm
ago 01 01:35:54 test-laptop kernel: BTRFS info (device sda3): enabling ssd optimizations
ago 01 01:35:54 test-laptop kernel: BTRFS info (device sda3): turning on async discard
ago 01 01:35:54 test-laptop kernel: BTRFS info (device sda3): enabling free space tree
ago 01 01:35:56 test-laptop systemd-journald[163]: Received SIGTERM from PID 1 (systemd).
ago 01 01:35:56 test-laptop systemd[1]: systemd 261.1-3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +LIBARCHIVE)
ago 01 01:35:56 test-laptop systemd[1]: Detected architecture x86-64.
ago 01 01:35:56 test-laptop systemd[1]: bpf-restrict-fs: LSM BPF program attached
ago 01 01:35:56 test-laptop systemd[1]: /usr/lib/systemd/system/system-xfs_scrub.slice:15: Support for option CPUAccounting= has been removed and it is ignored
ago 01 01:35:56 test-laptop systemd[1]: /usr/lib/systemd/system/xfs_scrub_all.service:26: Support for option CPUAccounting= has been removed and it is ignored
ago 01 01:35:56 test-laptop systemd[1]: initrd-switch-root.service: Deactivated successfully.
ago 01 01:35:56 test-laptop systemd[1]: Stopped initrd-switch-root.service - Switch Root.
ago 01 01:35:56 test-laptop systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
ago 01 01:35:56 test-laptop systemd[1]: Created slice system-cups.slice - CUPS Slice.
ago 01 01:35:56 test-laptop systemd[1]: Created slice system-getty.slice - Slice /system/getty.
ago 01 01:35:56 test-laptop systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
ago 01 01:35:56 test-laptop systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
ago 01 01:35:56 test-laptop systemd[1]: Created slice system-tigervncserver.slice - Slice /system/tigervncserver.
ago 01 01:35:56 test-laptop systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
ago 01 01:35:56 test-laptop systemd[1]: Created slice user.slice - User and Session Slice.
ago 01 01:35:56 test-laptop systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
ago 01 01:35:56 test-laptop systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
ago 01 01:35:56 test-laptop systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
ago 01 01:35:56 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-41D8\x2d30C2.device - /dev/disk/by-uuid/41D8-30C2...
ago 01 01:35:56 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-71cd3ffd\x2d4828\x2d4a9e\x2d84e1\x2d51fffbb575f7.device - /dev/disk/by-uuid/<redacted-uuid>...
ago 01 01:35:56 test-laptop systemd[1]: Expecting device dev-disk-by\x2duuid-f9a225cc\x2d6ce3\x2d4819\x2da090\x2d53646d1bb6d7.device - /dev/disk/by-uuid/<redacted-uuid>...
ago 01 01:35:56 test-laptop systemd[1]: Reached target imports.target - Image Downloads.
ago 01 01:35:56 test-laptop systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
ago 01 01:35:56 test-laptop systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
ago 01 01:35:56 test-laptop systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
ago 01 01:35:56 test-laptop systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
ago 01 01:35:56 test-laptop systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
ago 01 01:35:56 test-laptop systemd[1]: Reached target slices.target - Slice Units.
ago 01 01:35:56 test-laptop systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
ago 01 01:35:56 test-laptop systemd[1]: Reached target swap.target - Swaps.
ago 01 01:35:56 test-laptop systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
ago 01 01:35:56 test-laptop systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
ago 01 01:35:56 test-laptop systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-ask-password.socket - Query the User Interactively for a Password.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-factory-reset.socket - Factory Reset Management.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-hostnamed.socket - Hostname Service Socket.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-mute-console.socket - Console Output Muting Service Socket.
ago 01 01:35:56 test-laptop systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:35:56 test-laptop systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-storage-block.socket - Simple Block Device Backed Storage Provider.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-storage-fs.socket - Simple File System Backed Storage Provider.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-udevd-varlink.socket - udev Varlink Socket.
ago 01 01:35:56 test-laptop systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
ago 01 01:35:56 test-laptop systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
ago 01 01:35:56 test-laptop systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
ago 01 01:35:56 test-laptop systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
ago 01 01:35:56 test-laptop systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
ago 01 01:35:56 test-laptop systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
ago 01 01:35:56 test-laptop systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
ago 01 01:35:56 test-laptop systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
ago 01 01:35:56 test-laptop systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
ago 01 01:35:56 test-laptop systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
ago 01 01:35:56 test-laptop systemd[1]: modprobe@drm.service - Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
ago 01 01:35:56 test-laptop systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
ago 01 01:35:56 test-laptop systemd[1]: modprobe@fuse.service - Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
ago 01 01:35:56 test-laptop systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
ago 01 01:35:56 test-laptop systemd[1]: plymouth-switch-root.service: Deactivated successfully.
ago 01 01:35:56 test-laptop systemd[1]: Stopped plymouth-switch-root.service - Plymouth switch root service.
ago 01 01:35:56 test-laptop systemd[1]: systemd-fsck-root.service: Deactivated successfully.
ago 01 01:35:56 test-laptop systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
ago 01 01:35:56 test-laptop systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-<redacted-uuid>
ago 01 01:35:56 test-laptop systemd[1]: Starting systemd-journald.service - Journal Service...
ago 01 01:35:56 test-laptop systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
ago 01 01:35:56 test-laptop systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:35:56 test-laptop systemd[1]: systemd-pcrosseparator.service - TPM PCR OS Separator skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:35:56 test-laptop systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
ago 01 01:35:56 test-laptop systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:35:56 test-laptop systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionPathExists=/etc/initrd-release
ago 01 01:35:56 test-laptop systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
ago 01 01:35:56 test-laptop systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-os
ago 01 01:35:56 test-laptop systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
ago 01 01:35:56 test-laptop systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
ago 01 01:35:56 test-laptop systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
ago 01 01:35:56 test-laptop systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
ago 01 01:35:56 test-laptop systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
ago 01 01:35:56 test-laptop kernel: pstore: Using crash dump compression: deflate
ago 01 01:35:56 test-laptop systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
ago 01 01:35:56 test-laptop systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
ago 01 01:35:56 test-laptop systemd-journald[383]: Collecting audit messages is disabled.
ago 01 01:35:56 test-laptop systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
ago 01 01:35:56 test-laptop systemd[1]: run-vmblock\x2dfuse.mount - VMware vmblock fuse mount skipped, unmet condition check ConditionVirtualization=vmware
ago 01 01:35:56 test-laptop systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
ago 01 01:35:56 test-laptop kernel: BTRFS info (device sda3 state M): use zstd compression, level 1
ago 01 01:35:56 test-laptop systemd[1]: modprobe@configfs.service: Deactivated successfully.
ago 01 01:35:56 test-laptop kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
ago 01 01:35:56 test-laptop kernel: device-mapper: uevent: version 1.0.3
ago 01 01:35:56 test-laptop kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
ago 01 01:35:56 test-laptop systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
ago 01 01:35:56 test-laptop kernel: pstore: Registered efi_pstore as persistent store backend
ago 01 01:35:56 test-laptop systemd[1]: Started systemd-journald.service - Journal Service.
ago 01 01:35:57 test-laptop systemd-journald[383]: Received client request to flush runtime journal.
ago 01 01:35:57 test-laptop kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
ago 01 01:35:57 test-laptop kernel: Loaded X.509 cert 'benh@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
ago 01 01:35:57 test-laptop kernel: Loaded X.509 cert 'romain.perier@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
ago 01 01:35:57 test-laptop kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
ago 01 01:35:57 test-laptop kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
ago 01 01:35:57 test-laptop kernel: loop: module loaded
ago 01 01:35:57 test-laptop kernel: loop0: detected capacity change from 0 to 411344
ago 01 01:35:57 test-laptop kernel: loop1: detected capacity change from 0 to 113640
ago 01 01:35:57 test-laptop kernel: loop2: detected capacity change from 0 to 8
ago 01 01:35:57 test-laptop kernel: loop3: detected capacity change from 0 to 136816
ago 01 01:35:57 test-laptop kernel: loop4: detected capacity change from 0 to 187776
ago 01 01:35:57 test-laptop kernel: loop5: detected capacity change from 0 to 151512
ago 01 01:35:57 test-laptop kernel: loop6: detected capacity change from 0 to 337560
ago 01 01:35:57 test-laptop kernel: loop7: detected capacity change from 0 to 1258560
ago 01 01:35:57 test-laptop kernel: loop8: detected capacity change from 0 to 823256
ago 01 01:35:57 test-laptop kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
ago 01 01:35:57 test-laptop kernel: loop9: detected capacity change from 0 to 32128
ago 01 01:35:58 test-laptop kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
ago 01 01:35:58 test-laptop kernel: input: Lid Switch as /devices/pci0000:00/0000:00:1f.0/PNP0C0D:00/input/input10
ago 01 01:35:58 test-laptop kernel: ACPI: button: Lid Switch [LID0]
ago 01 01:35:58 test-laptop kernel: input: Power Button as /devices/platform/PNP0C0C:00/input/input11
ago 01 01:35:58 test-laptop kernel: ACPI: button: Power Button [PWRB]
ago 01 01:35:58 test-laptop kernel: input: Power Button as /devices/platform/LNXPWRBN:00/input/input12
ago 01 01:35:58 test-laptop kernel: ACPI: button: Power Button [PWRF]
ago 01 01:35:58 test-laptop kernel: acpi-tad ACPI000E:00: registered as rtc1
ago 01 01:35:58 test-laptop kernel: ACPI: AC: AC Adapter [ACAD] (on-line)
ago 01 01:35:58 test-laptop kernel: intel_pmc_core INT33A1:00: initialized
ago 01 01:35:58 test-laptop kernel: ACPI: battery: Slot [BAT1] (battery present)
ago 01 01:35:58 test-laptop kernel: intel_rapl_common: Found RAPL domain package
ago 01 01:35:58 test-laptop kernel: intel_rapl_common: Found RAPL domain dram
ago 01 01:35:58 test-laptop kernel: mc: Linux media interface: v0.10
ago 01 01:35:58 test-laptop kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
ago 01 01:35:58 test-laptop kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
ago 01 01:35:58 test-laptop kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
ago 01 01:35:58 test-laptop kernel: i2c i2c-6: Successfully instantiated SPD at 0x50
ago 01 01:35:58 test-laptop kernel: r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
ago 01 01:35:58 test-laptop kernel: videodev: Linux video capture interface: v2.00
ago 01 01:35:58 test-laptop kernel: r8169 0000:01:00.0 eth0: RTL8168h/8111h, <redacted-mac>, XID 541, IRQ 133
ago 01 01:35:58 test-laptop kernel: r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
ago 01 01:35:58 test-laptop kernel: input: PC Speaker as /devices/platform/pcspkr/input/input13
ago 01 01:35:58 test-laptop kernel: uvcvideo 1-5:1.0: Found UVC 1.00 device HP TrueVision HD Camera (04f2:b67f)
ago 01 01:35:58 test-laptop kernel: usbcore: registered new interface driver uvcvideo
ago 01 01:35:58 test-laptop kernel: RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
ago 01 01:35:58 test-laptop kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
ago 01 01:35:58 test-laptop kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
ago 01 01:35:58 test-laptop kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
ago 01 01:35:58 test-laptop kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
ago 01 01:35:58 test-laptop kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
ago 01 01:35:58 test-laptop kernel: rtw88_core: loading out-of-tree module taints kernel.
ago 01 01:35:58 test-laptop kernel: rtw88_core: module verification failed: signature and/or required key missing - tainting kernel
ago 01 01:35:59 test-laptop kernel: EXT4-fs (sda2): mounted filesystem <redacted-uuid> r/w with ordered data mode. Quota mode: none.
ago 01 01:35:59 test-laptop kernel: r8169 0000:01:00.0 eno1: renamed from eth0
ago 01 01:35:59 test-laptop kernel: mei_hdcp 0000:00:16.0-<redacted-uuid>: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
ago 01 01:35:59 test-laptop kernel: input: HP WMI hotkeys as /devices/virtual/input/input14
ago 01 01:35:59 test-laptop kernel: rtw88_8723de 0000:02:00.0: Firmware version 48.0.0, H2C version 0
ago 01 01:35:59 test-laptop kernel: ee1004 6-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
ago 01 01:35:59 test-laptop kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
ago 01 01:35:59 test-laptop kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.616:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=700 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.620:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=699 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.624:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=698 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.628:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=697 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.632:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ai.opencode.desktop" pid=703 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.636:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=704 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.636:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Xorg" pid=701 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.640:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=705 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.644:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=706 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: audit: type=1400 audit(1785569759.644:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=708 comm="apparmor_parser"
ago 01 01:35:59 test-laptop kernel: intel_rapl_common: Found RAPL domain package
ago 01 01:35:59 test-laptop kernel: RPC: Registered named UNIX socket transport module.
ago 01 01:35:59 test-laptop kernel: intel_rapl_common: Found RAPL domain core
ago 01 01:35:59 test-laptop kernel: RPC: Registered udp transport module.
ago 01 01:35:59 test-laptop kernel: RPC: Registered tcp transport module.
ago 01 01:35:59 test-laptop kernel: intel_rapl_common: Found RAPL domain uncore
ago 01 01:35:59 test-laptop kernel: RPC: Registered tcp-with-tls transport module.
ago 01 01:35:59 test-laptop kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
ago 01 01:35:59 test-laptop kernel: intel_rapl_common: Found RAPL domain dram
ago 01 01:35:59 test-laptop kernel: intel_rapl_common: Found RAPL domain psys
ago 01 01:36:00 test-laptop kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
ago 01 01:36:00 test-laptop kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [i915])
ago 01 01:36:00 test-laptop kernel: hp-wmi hp-wmi: Failed to apply initial fan settings: -22
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: ALC236: picked fixup for PCI SSID 103c:0000
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: autoconfig for ALC236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: mono: mono_out=0x0
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: inputs:
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: Internal Mic=0x12
ago 01 01:36:00 test-laptop kernel: snd_hda_codec_alc269 hdaudioC0D0: Mic=0x19
ago 01 01:36:00 test-laptop kernel: input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
ago 01 01:36:00 test-laptop kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
ago 01 01:36:00 test-laptop kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
ago 01 01:36:00 test-laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
ago 01 01:36:00 test-laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
ago 01 01:36:00 test-laptop kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
ago 01 01:36:00 test-laptop kernel: hp_wmi: query 0x4c returned error 0x6
ago 01 01:36:00 test-laptop kernel: ACPI BIOS Error (bug): Attempt to CreateField of length zero (20251212/dsopcode-133)
ago 01 01:36:00 test-laptop kernel: ACPI Error: Aborting method \_SB.WMID.WQBC due to previous error (AE_AML_OPERAND_VALUE) (20251212/psparse-529)
ago 01 01:36:00 test-laptop kernel: ACPI BIOS Error (bug): Attempt to CreateField of length zero (20251212/dsopcode-133)
ago 01 01:36:00 test-laptop kernel: ACPI Error: Aborting method \_SB.WMID.WQBE due to previous error (AE_AML_OPERAND_VALUE) (20251212/psparse-529)
ago 01 01:36:01 test-laptop kernel: hp_bioscfg: Returned error 0x3, "Invalid command value/Feature not supported"
ago 01 01:36:01 test-laptop kernel: zram: Added device: zram0
ago 01 01:36:01 test-laptop kernel: Adding 4004860k swap on /dev/zram0. Priority:100 extents:1 across:4004860k SS
ago 01 01:36:01 test-laptop kernel: Generic FE-GE Realtek PHY r8169-0-100:00: attached PHY driver (mii_bus:phy_addr=r8169-0-100:00, irq=MAC)
ago 01 01:36:01 test-laptop kernel: NET: Registered PF_QIPCRTR protocol family
ago 01 01:36:02 test-laptop kernel: r8169 0000:01:00.0 eno1: Link is Down
ago 01 01:36:02 test-laptop kernel: Loading iSCSI transport class v2.0-870.
ago 01 01:36:03 test-laptop kernel: tun: Universal TUN/TAP device driver, 1.6
ago 01 01:36:03 test-laptop kernel: rtw88_8723de 0000:02:00.0: diag: pre-toggle REG_SYS_PW_CTRL=0x12, poll offset=0x5 want=0x0
ago 01 01:36:03 test-laptop kernel: rtw88_8723de 0000:02:00.0: diag: post-toggle REG_SYS_PW_CTRL=0x1a, retry poll read=0x01
ago 01 01:36:03 test-laptop kernel: set_capacity_and_notify: 2 callbacks suppressed
ago 01 01:36:03 test-laptop kernel: loop11: detected capacity change from 0 to 8
ago 01 01:36:06 test-laptop kernel: rtw88_8723de 0000:02:00.0: failed to poll offset=0x5 mask=0x1 value=0x0
ago 01 01:36:06 test-laptop kernel: rtw88_8723de 0000:02:00.0: mac power on failed
ago 01 01:36:06 test-laptop kernel: rtw88_8723de 0000:02:00.0: failed to power on mac
ago 01 01:36:06 test-laptop kernel: rtw88_8723de 0000:02:00.0: failed to setup chip efuse info
ago 01 01:36:06 test-laptop kernel: rtw88_8723de 0000:02:00.0: failed to setup chip information
ago 01 01:36:06 test-laptop kernel: rtw88_8723de 0000:02:00.0: probe with driver rtw88_8723de failed with error -16
ago 01 01:36:08 test-laptop kernel: kauditd_printk_skb: 124 callbacks suppressed
ago 01 01:36:08 test-laptop kernel: audit: type=1400 audit(1785569768.984:136): apparmor="ALLOWED" operation="open" class="file" profile="Xorg" name="/etc/glvnd/egl_vendor.d/" pid=1331 comm="Xorg" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
ago 01 01:36:33 test-laptop kernel: audit: type=1326 audit(1785569793.676:137): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=4670 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=330 compat=0 ip=0x7f8571afdfeb code=0x50000
ago 01 01:36:33 test-laptop kernel: audit: type=1326 audit(1785569793.676:138): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=4671 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=330 compat=0 ip=0x7f5394cfdfeb code=0x50000
ago 01 01:36:33 test-laptop kernel: audit: type=1326 audit(1785569793.760:139): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=4665 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=425 compat=0 ip=0x7f20bacf590d code=0x50000
ago 01 01:36:33 test-laptop kernel: audit: type=1326 audit(1785569793.772:140): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=4665 comm="bitwarden-app" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=425 compat=0 ip=0x7f20bacf590d code=0x50000
ago 01 01:36:33 test-laptop kernel: audit: type=1326 audit(1785569793.772:141): auid=1002 uid=1002 gid=1004 ses=3 subj=snap.bitwarden.bitwarden pid=4665 comm="DelayedTaskSche" exe="/snap/bitwarden/159/bitwarden-app" sig=0 arch=c000003e syscall=425 compat=0 ip=0x7f20bacf590d code=0x50000
ago 01 01:36:34 test-laptop kernel: audit: type=1400 audit(1785569794.368:142): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/user-1002.slice/user@1002.service/app.slice/cpu.max" pid=4665 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=1002
ago 01 01:36:34 test-laptop kernel: audit: type=1400 audit(1785569794.368:143): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/user-1002.slice/user@1002.service/cpu.max" pid=4665 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:36:34 test-laptop kernel: audit: type=1400 audit(1785569794.368:144): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/user-1002.slice/cpu.max" pid=4665 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:36:34 test-laptop kernel: audit: type=1400 audit(1785569794.368:145): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/sys/fs/cgroup/user.slice/cpu.max" pid=4665 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
ago 01 01:36:35 test-laptop kernel: audit: type=1400 audit(1785569795.132:146): apparmor="DENIED" operation="open" class="file" profile="snap.bitwarden.bitwarden" name="/etc/vulkan/implicit_layer.d/" pid=4726 comm="bitwarden-app" requested_mask="r" denied_mask="r" fsuid=1002 ouid=0
^ permalink raw reply [flat|nested] 6+ messages in thread