Re: [RFT PATCH 2/2] usb: port: Don't block port power-off on false peer failures

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

 



Dear Mathias,


Am 16.02.24 um 15:12 schrieb Mathias Nyman:
Several unused ports may share the same bogus location data in ACPI
PLD tables. This causes port peering failures as these several unused
USB2 and USB3 ports suddenly match based on their location.

Don't print the "usb: port power management may be unreliable" warning,
or block port power-off in case peering failed for two ports with
connect type set to USB_PORT_NOT_USED.

Signed-off-by: Mathias Nyman <mathias.nyman@xxxxxxxxxxxxxxx>
---
  drivers/usb/core/port.c | 5 +++++
  1 file changed, 5 insertions(+)

diff --git a/drivers/usb/core/port.c b/drivers/usb/core/port.c
index c628c1abc907..d45fc234bad1 100644
--- a/drivers/usb/core/port.c
+++ b/drivers/usb/core/port.c
@@ -517,6 +517,11 @@ static void link_peers_report(struct usb_port *left, struct usb_port *right)
  	rc = link_peers(left, right);
  	if (rc == 0) {
  		dev_dbg(&left->dev, "peered to %s\n", dev_name(&right->dev));
+
+	} else if (left->connect_type == USB_PORT_NOT_USED &&
+		   right->connect_type == USB_PORT_NOT_USED) {
+		dev_dbg(&left->dev, "ignore peering failure to %s as ports are not connectable\n",
+			dev_name(&right->dev));
  	} else {
  		dev_dbg(&left->dev, "failed to peer to %s (%d)\n",
  				dev_name(&right->dev), rc);

Thank you so much for coming up with patches so quickly. I tested them on the Dell XPS 13 9360 with no devices attached, and the warning is gone, and the new debug messages are printed:

    [    0.806207] usb usb2-port1: peered to usb1-port1
    [    0.806349] usb usb2-port2: peered to usb1-port2
    [    0.806487] usb usb2-port3: peered to usb1-port6
[ 0.806622] usb: failed to peer usb2-port4 and usb1-port6 by location (usb2-port4:none) (usb1-port6:usb2-port3) [ 0.806625] usb usb2-port4: ignore peering failure to usb1-port6 as ports are not connectable [ 0.806757] usb: failed to peer usb2-port5 and usb1-port6 by location (usb2-port5:none) (usb1-port6:usb2-port3) [ 0.806759] usb usb2-port5: ignore peering failure to usb1-port6 as ports are not connectable [ 0.806895] usb: failed to peer usb2-port6 and usb1-port6 by location (usb2-port6:none) (usb1-port6:usb2-port3) [ 0.806897] usb usb2-port6: ignore peering failure to usb1-port6 as ports are not connectable

Please find the output of `dmesg` attached.


Kind regards,

Paul
[    0.000000] Linux version 6.8.0-rc4+ (build@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx) (gcc (Debian 13.2.0-13) 13.2.0, GNU ld (GNU Binutils for Debian) 2.42) #25 SMP PREEMPT_DYNAMIC Sat Feb 17 05:39:03 CET 2024
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.8.0-rc4+ root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer mem_sleep_default=deep log_buf_len=8M cryptomgr.notests usbcore.dyndbg=+p
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000556aafff] usable
[    0.000000] BIOS-e820: [mem 0x00000000556ab000-0x00000000556abfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000556ac000-0x00000000556acfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000556ad000-0x0000000064df3fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000064df4000-0x000000006517ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000065180000-0x00000000651c3fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000651c4000-0x000000006f871fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006f872000-0x000000006fffefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006ffff000-0x000000006fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000070000000-0x0000000077ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000078000000-0x00000000785fffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000078600000-0x000000007c7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004817fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] e820: update [mem 0x514ed018-0x514fd057] usable ==> usable
[    0.000000] e820: update [mem 0x514ed018-0x514fd057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000514ed017] usable
[    0.000000] reserve setup_data: [mem 0x00000000514ed018-0x00000000514fd057] usable
[    0.000000] reserve setup_data: [mem 0x00000000514fd058-0x00000000556aafff] usable
[    0.000000] reserve setup_data: [mem 0x00000000556ab000-0x00000000556abfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000556ac000-0x00000000556acfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000556ad000-0x0000000064df3fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000064df4000-0x000000006517ffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000065180000-0x00000000651c3fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000651c4000-0x000000006f871fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000006f872000-0x000000006fffefff] reserved
[    0.000000] reserve setup_data: [mem 0x000000006ffff000-0x000000006fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000070000000-0x0000000077ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000078000000-0x00000000785fffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000078600000-0x000000007c7fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000004817fffff] usable
[    0.000000] efi: EFI v2.4 by American Megatrends
[    0.000000] efi: ACPI=0x6518d000 ACPI 2.0=0x6518d000 SMBIOS=0xf0000 SMBIOS 3.0=0xf0020 TPMFinalLog=0x6f812000 ESRT=0x6fc86698 MEMATTR=0x62679298 INITRD=0x5577dd98 TPMEventLog=0x5577e018 
[    0.000000] efi: Remove mem34: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[    0.000000] efi: Not removing mem35: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] efi: Not removing mem36: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem37: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem38: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: Dell Inc. XPS 13 9360/0596KF, BIOS 2.21.0 06/02/2022
[    0.000000] tsc: Detected 2900.000 MHz processor
[    0.000000] tsc: Detected 2899.886 MHz TSC
[    0.000692] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000695] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000702] last_pfn = 0x481800 max_arch_pfn = 0x400000000
[    0.000706] MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
[    0.000708] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001032] last_pfn = 0x78600 max_arch_pfn = 0x400000000
[    0.007379] esrt: Reserving ESRT space from 0x000000006fc86698 to 0x000000006fc866d0.
[    0.007383] Using GB pages for direct mapping
[    0.014325] printk: log_buf_len: 8388608 bytes
[    0.014325] printk: early log buf free: 125328(95%)
[    0.014326] Secure boot disabled
[    0.014327] RAMDISK: [mem 0x514fe000-0x5276cfff]
[    0.014331] ACPI: Early table checksum verification disabled
[    0.014334] ACPI: RSDP 0x000000006518D000 000024 (v02 DELL  )
[    0.014338] ACPI: XSDT 0x000000006518D0C8 00010C (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.014343] ACPI: FACP 0x00000000651B2A48 00010C (v05 DELL   CBX3     01072009 AMI  00010013)
[    0.014348] ACPI: DSDT 0x000000006518D260 0257E7 (v02 DELL   CBX3     01072009 INTL 20160422)
[    0.014351] ACPI: FACS 0x000000006F86F180 000040
[    0.014353] ACPI: APIC 0x00000000651B2B58 000084 (v03 DELL   CBX3     01072009 AMI  00010013)
[    0.014356] ACPI: FPDT 0x00000000651B2BE0 000044 (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.014358] ACPI: FIDT 0x00000000651B2C28 0000AC (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.014361] ACPI: MCFG 0x00000000651B2CD8 00003C (v01 DELL   CBX3     01072009 MSFT 00000097)
[    0.014364] ACPI: HPET 0x00000000651B2D18 000038 (v01 DELL   CBX3     01072009 AMI. 0005000B)
[    0.014366] ACPI: SSDT 0x00000000651B2D50 000359 (v01 SataRe SataTabl 00001000 INTL 20160422)
[    0.014369] ACPI: BOOT 0x00000000651B30B0 000028 (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.014371] ACPI: SSDT 0x00000000651B30D8 0012CF (v02 SaSsdt SaSsdt   00003000 INTL 20160422)
[    0.014374] ACPI: HPET 0x00000000651B43A8 000038 (v01 INTEL  KBL-ULT  00000001 MSFT 0000005F)
[    0.014377] ACPI: SSDT 0x00000000651B43E0 000D84 (v02 INTEL  xh_rvp07 00000000 INTL 20160422)
[    0.014379] ACPI: UEFI 0x00000000651B5168 000042 (v01                 00000000      00000000)
[    0.014382] ACPI: SSDT 0x00000000651B51B0 000EDE (v02 CpuRef CpuSsdt  00003000 INTL 20160422)
[    0.014385] ACPI: LPIT 0x00000000651B6090 000094 (v01 INTEL  KBL-ULT  00000000 MSFT 0000005F)
[    0.014387] ACPI: WSMT 0x00000000651B6128 000028 (v01 DELL   CBX3     00000000 MSFT 0000005F)
[    0.014390] ACPI: SSDT 0x00000000651B6150 000161 (v02 INTEL  HdaDsp   00000000 INTL 20160422)
[    0.014392] ACPI: SSDT 0x00000000651B62B8 00029F (v02 INTEL  sensrhub 00000000 INTL 20160422)
[    0.014395] ACPI: SSDT 0x00000000651B6558 003002 (v02 INTEL  PtidDevc 00001000 INTL 20160422)
[    0.014397] ACPI: SSDT 0x00000000651B9560 0000DB (v02 INTEL  TbtTypeC 00000000 INTL 20160422)
[    0.014400] ACPI: DBGP 0x00000000651B9640 000034 (v01 INTEL           00000002 MSFT 0000005F)
[    0.014403] ACPI: DBG2 0x00000000651B9678 000054 (v00 INTEL           00000002 MSFT 0000005F)
[    0.014405] ACPI: SSDT 0x00000000651B96D0 0007DD (v02 INTEL  UsbCTabl 00001000 INTL 20160422)
[    0.014408] ACPI: SSDT 0x00000000651B9EB0 0084F1 (v02 DptfTa DptfTabl 00001000 INTL 20160422)
[    0.014410] ACPI: SLIC 0x00000000651C23A8 000176 (v03 DELL   CBX3     01072009 MSFT 00010013)
[    0.014413] ACPI: NHLT 0x00000000651C2520 00002D (v00 INTEL  EDK2     00000002      01000013)
[    0.014415] ACPI: BGRT 0x00000000651C2550 000038 (v00                 01072009 AMI  00010013)
[    0.014418] ACPI: TPM2 0x00000000651C2588 000034 (v03        Tpm2Tabl 00000001 AMI  00000000)
[    0.014421] ACPI: ASF! 0x00000000651C25C0 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.014423] ACPI: DMAR 0x00000000651C2660 0000F0 (v01 INTEL  KBL      00000001 INTL 00000001)
[    0.014425] ACPI: Reserving FACP table memory at [mem 0x651b2a48-0x651b2b53]
[    0.014426] ACPI: Reserving DSDT table memory at [mem 0x6518d260-0x651b2a46]
[    0.014427] ACPI: Reserving FACS table memory at [mem 0x6f86f180-0x6f86f1bf]
[    0.014428] ACPI: Reserving APIC table memory at [mem 0x651b2b58-0x651b2bdb]
[    0.014428] ACPI: Reserving FPDT table memory at [mem 0x651b2be0-0x651b2c23]
[    0.014429] ACPI: Reserving FIDT table memory at [mem 0x651b2c28-0x651b2cd3]
[    0.014430] ACPI: Reserving MCFG table memory at [mem 0x651b2cd8-0x651b2d13]
[    0.014430] ACPI: Reserving HPET table memory at [mem 0x651b2d18-0x651b2d4f]
[    0.014431] ACPI: Reserving SSDT table memory at [mem 0x651b2d50-0x651b30a8]
[    0.014432] ACPI: Reserving BOOT table memory at [mem 0x651b30b0-0x651b30d7]
[    0.014432] ACPI: Reserving SSDT table memory at [mem 0x651b30d8-0x651b43a6]
[    0.014433] ACPI: Reserving HPET table memory at [mem 0x651b43a8-0x651b43df]
[    0.014434] ACPI: Reserving SSDT table memory at [mem 0x651b43e0-0x651b5163]
[    0.014434] ACPI: Reserving UEFI table memory at [mem 0x651b5168-0x651b51a9]
[    0.014435] ACPI: Reserving SSDT table memory at [mem 0x651b51b0-0x651b608d]
[    0.014435] ACPI: Reserving LPIT table memory at [mem 0x651b6090-0x651b6123]
[    0.014436] ACPI: Reserving WSMT table memory at [mem 0x651b6128-0x651b614f]
[    0.014437] ACPI: Reserving SSDT table memory at [mem 0x651b6150-0x651b62b0]
[    0.014437] ACPI: Reserving SSDT table memory at [mem 0x651b62b8-0x651b6556]
[    0.014438] ACPI: Reserving SSDT table memory at [mem 0x651b6558-0x651b9559]
[    0.014439] ACPI: Reserving SSDT table memory at [mem 0x651b9560-0x651b963a]
[    0.014439] ACPI: Reserving DBGP table memory at [mem 0x651b9640-0x651b9673]
[    0.014440] ACPI: Reserving DBG2 table memory at [mem 0x651b9678-0x651b96cb]
[    0.014440] ACPI: Reserving SSDT table memory at [mem 0x651b96d0-0x651b9eac]
[    0.014441] ACPI: Reserving SSDT table memory at [mem 0x651b9eb0-0x651c23a0]
[    0.014442] ACPI: Reserving SLIC table memory at [mem 0x651c23a8-0x651c251d]
[    0.014442] ACPI: Reserving NHLT table memory at [mem 0x651c2520-0x651c254c]
[    0.014443] ACPI: Reserving BGRT table memory at [mem 0x651c2550-0x651c2587]
[    0.014444] ACPI: Reserving TPM2 table memory at [mem 0x651c2588-0x651c25bb]
[    0.014444] ACPI: Reserving ASF! table memory at [mem 0x651c25c0-0x651c265f]
[    0.014445] ACPI: Reserving DMAR table memory at [mem 0x651c2660-0x651c274f]
[    0.014577] No NUMA configuration found
[    0.014578] Faking a node at [mem 0x0000000000000000-0x00000004817fffff]
[    0.014585] NODE_DATA(0) allocated [mem 0x47f3d5000-0x47f3fffff]
[    0.014766] Zone ranges:
[    0.014767]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.014768]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.014770]   Normal   [mem 0x0000000100000000-0x00000004817fffff]
[    0.014771]   Device   empty
[    0.014772] Movable zone start for each node
[    0.014774] Early memory node ranges
[    0.014774]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.014775]   node   0: [mem 0x0000000000059000-0x000000000009dfff]
[    0.014776]   node   0: [mem 0x0000000000100000-0x00000000556aafff]
[    0.014777]   node   0: [mem 0x00000000556ad000-0x0000000064df3fff]
[    0.014778]   node   0: [mem 0x000000006ffff000-0x000000006fffffff]
[    0.014778]   node   0: [mem 0x0000000078000000-0x00000000785fffff]
[    0.014779]   node   0: [mem 0x0000000100000000-0x00000004817fffff]
[    0.014781] Initmem setup node 0 [mem 0x0000000000001000-0x00000004817fffff]
[    0.014791] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.014793] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.014815] On node 0, zone DMA: 98 pages in unavailable ranges
[    0.017316] On node 0, zone DMA32: 2 pages in unavailable ranges
[    0.017724] On node 0, zone DMA32: 45579 pages in unavailable ranges
[    0.018223] On node 0, zone Normal: 31232 pages in unavailable ranges
[    0.018454] On node 0, zone Normal: 26624 pages in unavailable ranges
[    0.018462] Reserving Intel graphics memory at [mem 0x7a800000-0x7c7fffff]
[    0.018644] ACPI: PM-Timer IO Port: 0x1808
[    0.018650] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.018651] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.018652] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.018653] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.018679] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.018683] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.018687] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.018692] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.018694] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.018699] e820: update [mem 0x62260000-0x623ecfff] usable ==> reserved
[    0.018709] TSC deadline timer available
[    0.018710] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.018724] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.018726] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[    0.018727] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[    0.018729] PM: hibernation: Registered nosave memory: [mem 0x514ed000-0x514edfff]
[    0.018730] PM: hibernation: Registered nosave memory: [mem 0x514fd000-0x514fdfff]
[    0.018732] PM: hibernation: Registered nosave memory: [mem 0x556ab000-0x556abfff]
[    0.018732] PM: hibernation: Registered nosave memory: [mem 0x556ac000-0x556acfff]
[    0.018734] PM: hibernation: Registered nosave memory: [mem 0x62260000-0x623ecfff]
[    0.018735] PM: hibernation: Registered nosave memory: [mem 0x64df4000-0x6517ffff]
[    0.018735] PM: hibernation: Registered nosave memory: [mem 0x65180000-0x651c3fff]
[    0.018736] PM: hibernation: Registered nosave memory: [mem 0x651c4000-0x6f871fff]
[    0.018737] PM: hibernation: Registered nosave memory: [mem 0x6f872000-0x6fffefff]
[    0.018738] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x77ffffff]
[    0.018739] PM: hibernation: Registered nosave memory: [mem 0x78600000-0x7c7fffff]
[    0.018740] PM: hibernation: Registered nosave memory: [mem 0x7c800000-0xfdffffff]
[    0.018740] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.018741] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.018742] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.018742] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.018743] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.018743] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[    0.018745] [mem 0x7c800000-0xfdffffff] available for PCI devices
[    0.018746] Booting paravirtualized kernel on bare hardware
[    0.018747] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.023278] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.023575] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u524288
[    0.023580] pcpu-alloc: s221184 r8192 d28672 u524288 alloc=1*2097152
[    0.023582] pcpu-alloc: [0] 0 1 2 3 
[    0.023599] Kernel command line: BOOT_IMAGE=/vmlinuz-6.8.0-rc4+ root=UUID=32e29882-d94d-4a92-9ee4-4d03002bfa29 ro quiet pci=noaer mem_sleep_default=deep log_buf_len=8M cryptomgr.notests usbcore.dyndbg=+p
[    0.023680] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.8.0-rc4+", will be passed to user space.
[    0.023713] random: crng init done
[    0.025204] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.025960] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.026021] Fallback order for Node 0: 0 
[    0.026023] Built 1 zonelists, mobility grouping on.  Total pages: 4026691
[    0.026024] Policy zone: Normal
[    0.026028] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.026035] software IO TLB: area num 4.
[    0.044143] Memory: 1657864K/16363068K available (16384K kernel code, 2330K rwdata, 5868K rodata, 3976K init, 3680K bss, 493948K reserved, 0K cma-reserved)
[    0.044327] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.044338] Kernel/User page tables isolation: enabled
[    0.044362] ftrace: allocating 42500 entries in 167 pages
[    0.051403] ftrace: allocated 167 pages with 5 groups
[    0.052018] Dynamic Preempt: voluntary
[    0.052045] rcu: Preemptible hierarchical RCU implementation.
[    0.052045] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.052046] 	Trampoline variant of Tasks RCU enabled.
[    0.052047] 	Rude variant of Tasks RCU enabled.
[    0.052047] 	Tracing variant of Tasks RCU enabled.
[    0.052048] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.052049] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.054427] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[    0.054631] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.054796] Console: colour dummy device 80x25
[    0.054798] printk: legacy console [tty0] enabled
[    0.054831] ACPI: Core revision 20230628
[    0.055018] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.055019] APIC: Switch to symmetric I/O mode setup
[    0.055020] DMAR: Host address width 39
[    0.055021] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.055027] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[    0.055029] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.055032] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.055034] DMAR: RMRR base: 0x00000064ec2000 end: 0x00000064ee1fff
[    0.055035] DMAR: RMRR base: 0x0000007a000000 end: 0x0000007c7fffff
[    0.055036] DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
[    0.055037] DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
[    0.055038] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.055040] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.055041] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.056668] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.056670] x2apic enabled
[    0.056727] APIC: Switched APIC routing to: cluster x2apic
[    0.060581] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
[    0.060588] Calibrating delay loop (skipped), value calculated using timer frequency.. 5799.77 BogoMIPS (lpj=11599544)
[    0.060617] CPU0: Thermal monitoring enabled (TM1)
[    0.060659] process: using mwait in idle threads
[    0.060662] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.060663] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.060667] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.060669] Spectre V2 : Mitigation: IBRS
[    0.060669] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.060670] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.060671] RETBleed: Mitigation: IBRS
[    0.060672] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.060673] Spectre V2 : User space: Mitigation: STIBP via prctl
[    0.060675] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.060681] MDS: Mitigation: Clear CPU buffers
[    0.060682] MMIO Stale Data: Mitigation: Clear CPU buffers
[    0.060685] SRBDS: Mitigation: Microcode
[    0.060691] GDS: Mitigation: Microcode
[    0.060697] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.060698] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.060699] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.060700] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.060701] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.060703] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.060704] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.060705] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.060706] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.064585] Freeing SMP alternatives memory: 36K
[    0.064585] pid_max: default: 32768 minimum: 301
[    0.064585] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,tomoyo,bpf,integrity
[    0.064585] landlock: Up and running.
[    0.064585] Yama: becoming mindful.
[    0.064585] AppArmor: AppArmor initialized
[    0.064585] TOMOYO Linux initialized
[    0.064585] LSM support for eBPF active
[    0.064585] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.064585] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.064585] smpboot: CPU0: Intel(R) Core(TM) i7-7500U CPU @ 2.70GHz (family: 0x6, model: 0x8e, stepping: 0x9)
[    0.064585] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.064585] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.064585] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    0.064585] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.064585] ... version:                4
[    0.064585] ... bit width:              48
[    0.064585] ... generic registers:      4
[    0.064585] ... value mask:             0000ffffffffffff
[    0.064585] ... max period:             00007fffffffffff
[    0.064585] ... fixed-purpose events:   3
[    0.064585] ... event mask:             000000070000000f
[    0.064585] signal: max sigframe size: 2032
[    0.064585] Estimated ratio of average max frequency by base frequency (times 1024): 1235
[    0.064585] rcu: Hierarchical SRCU implementation.
[    0.064585] rcu: 	Max phase no-delay instances is 1000.
[    0.064585] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.064585] smp: Bringing up secondary CPUs ...
[    0.064585] smpboot: x86: Booting SMP configuration:
[    0.064585] .... node  #0, CPUs:      #1 #2 #3
[    0.064585] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.064585] 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.
[    0.064585] smp: Brought up 1 node, 4 CPUs
[    0.064585] smpboot: Max logical packages: 1
[    0.064585] smpboot: Total of 4 processors activated (23199.08 BogoMIPS)
[    0.084587] node 0 deferred pages initialised in 20ms
[    0.085010] devtmpfs: initialized
[    0.085010] x86/mm: Memory block size: 128MB
[    0.085940] ACPI: PM: Registering ACPI NVS region [mem 0x556ab000-0x556abfff] (4096 bytes)
[    0.085940] ACPI: PM: Registering ACPI NVS region [mem 0x651c4000-0x6f871fff] (174776320 bytes)
[    0.089858] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.089866] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.089912] pinctrl core: initialized pinctrl subsystem
[    0.090402] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.090632] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.090737] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.090863] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.090879] audit: initializing netlink subsys (disabled)
[    0.090895] audit: type=2000 audit(1708146585.028:1): state=initialized audit_enabled=0 res=1
[    0.090895] thermal_sys: Registered thermal governor 'fair_share'
[    0.090895] thermal_sys: Registered thermal governor 'bang_bang'
[    0.090895] thermal_sys: Registered thermal governor 'step_wise'
[    0.090895] thermal_sys: Registered thermal governor 'user_space'
[    0.090895] thermal_sys: Registered thermal governor 'power_allocator'
[    0.090895] cpuidle: using governor ladder
[    0.090895] cpuidle: using governor menu
[    0.090895] Simple Boot Flag at 0x47 set to 0x80
[    0.090895] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.090895] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.090895] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[    0.090895] PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
[    0.090895] PCI: Using configuration type 1 for base access
[    0.090895] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.090895] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.090895] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.090895] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.090895] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.090895] ACPI: Added _OSI(Module Device)
[    0.090895] ACPI: Added _OSI(Processor Device)
[    0.090895] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.090895] ACPI: Added _OSI(Processor Aggregator Device)
[    0.130884] ACPI: 11 ACPI AML tables successfully acquired and loaded
[    0.136898] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.141911] ACPI: Dynamic OEM Table Load:
[    0.141911] ACPI: SSDT 0xFFFF92C9C198DC00 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    0.142823] ACPI: Dynamic OEM Table Load:
[    0.142828] ACPI: SSDT 0xFFFF92C9C176E800 0006F6 (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    0.146336] ACPI: Dynamic OEM Table Load:
[    0.146342] ACPI: SSDT 0xFFFF92C9C176F800 00065C (v02 PmRef  ApIst    00003000 INTL 20160422)
[    0.148014] ACPI: Dynamic OEM Table Load:
[    0.148018] ACPI: SSDT 0xFFFF92C9C198A600 00018A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    0.151080] ACPI: _OSC evaluated successfully for all CPUs
[    0.151262] ACPI: EC: EC started
[    0.151263] ACPI: EC: interrupt blocked
[    0.156745] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.156748] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
[    0.156749] ACPI: Interpreter enabled
[    0.156785] ACPI: PM: (supports S0 S3 S4 S5)
[    0.156786] ACPI: Using IOAPIC for interrupt routing
[    0.156822] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[    0.157748] PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
[    0.157757] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.157758] PCI: Using E820 reservations for host bridge windows
[    0.158407] ACPI: Enabled 8 GPEs in block 00 to 7F
[    0.162406] ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
[    0.162729] ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
[    0.164654] ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
[    0.164970] ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
[    0.165285] ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
[    0.165601] ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
[    0.166417] ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
[    0.166737] ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
[    0.167052] ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
[    0.167366] ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
[    0.167680] ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
[    0.167993] ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
[    0.168586] ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
[    0.168638] ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
[    0.168952] ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
[    0.169266] ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
[    0.169579] ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
[    0.170902] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
[    0.171219] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
[    0.171539] ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
[    0.194695] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.194701] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.194904] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[    0.195275] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability LTR]
[    0.195277] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.196234] PCI host bridge to bus 0000:00
[    0.196236] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.196238] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.196240] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    0.196242] pci_bus 0000:00: root bus resource [mem 0x7c800000-0xdfffffff window]
[    0.196243] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.196244] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.196262] pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
[    0.196330] pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.196337] pci 0000:00:02.0: BAR 0 [mem 0xdb000000-0xdbffffff 64bit]
[    0.196342] pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.196346] pci 0000:00:02.0: BAR 4 [io  0xf000-0xf03f]
[    0.196358] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.196361] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.196517] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
[    0.196525] pci 0000:00:04.0: BAR 0 [mem 0xdc320000-0xdc327fff 64bit]
[    0.196816] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
[    0.196833] pci 0000:00:14.0: BAR 0 [mem 0xdc310000-0xdc31ffff 64bit]
[    0.196892] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.197434] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
[    0.197449] pci 0000:00:14.2: BAR 0 [mem 0xdc334000-0xdc334fff 64bit]
[    0.197590] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
[    0.197620] pci 0000:00:15.0: BAR 0 [mem 0xdc333000-0xdc333fff 64bit]
[    0.197982] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
[    0.198010] pci 0000:00:15.1: BAR 0 [mem 0xdc332000-0xdc332fff 64bit]
[    0.198376] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
[    0.198389] pci 0000:00:16.0: BAR 0 [mem 0xdc331000-0xdc331fff 64bit]
[    0.198433] pci 0000:00:16.0: PME# supported from D3hot
[    0.198768] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 PCIe Root Port
[    0.198786] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[    0.198791] pci 0000:00:1c.0:   bridge window [mem 0xc4000000-0xda0fffff]
[    0.198797] pci 0000:00:1c.0:   bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[    0.198839] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.199329] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400 PCIe Root Port
[    0.199349] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[    0.199354] pci 0000:00:1c.4:   bridge window [mem 0xdc000000-0xdc1fffff]
[    0.199410] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.199908] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
[    0.199927] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.199931] pci 0000:00:1d.0:   bridge window [mem 0xdc200000-0xdc2fffff]
[    0.199980] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.200487] pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
[    0.200803] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
[    0.200815] pci 0000:00:1f.2: BAR 0 [mem 0xdc32c000-0xdc32ffff]
[    0.201047] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
[    0.201066] pci 0000:00:1f.3: BAR 0 [mem 0xdc328000-0xdc32bfff 64bit]
[    0.201089] pci 0000:00:1f.3: BAR 4 [mem 0xdc300000-0xdc30ffff 64bit]
[    0.201130] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.201720] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
[    0.201778] pci 0000:00:1f.4: BAR 0 [mem 0xdc330000-0xdc3300ff 64bit]
[    0.201849] pci 0000:00:1f.4: BAR 4 [io  0xf040-0xf05f]
[    0.202176] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[    0.202511] pci 0000:3a:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
[    0.202727] pci 0000:3a:00.0: BAR 0 [mem 0xdc000000-0xdc1fffff 64bit]
[    0.203922] pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
[    0.205712] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[    0.205801] pci 0000:3b:00.0: [1c5c:1284] type 00 class 0x010802 PCIe Endpoint
[    0.205820] pci 0000:3b:00.0: BAR 0 [mem 0xdc200000-0xdc203fff 64bit]
[    0.205924] pci 0000:3b:00.0: PME# supported from D0 D1 D3hot
[    0.206300] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.209290] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    0.209350] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.209407] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.209464] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.209522] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[    0.209579] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[    0.209636] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[    0.209694] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    0.218579] ACPI: EC: interrupt unblocked
[    0.218581] ACPI: EC: event unblocked
[    0.220587] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.220587] ACPI: EC: GPE=0x14
[    0.220587] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
[    0.220587] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
[    0.220603] iommu: Default domain type: Translated
[    0.220603] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.220687] pps_core: LinuxPPS API ver. 1 registered
[    0.220688] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[    0.220691] PTP clock support registered
[    0.220699] EDAC MC: Ver: 3.0.0
[    0.221018] efivars: Registered efivars operations
[    0.221018] NetLabel: Initializing
[    0.221018] NetLabel:  domain hash size = 128
[    0.221018] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.221018] NetLabel:  unlabeled traffic allowed by default
[    0.221018] PCI: Using ACPI for IRQ routing
[    0.247344] PCI: pci_cache_line_size set to 64 bytes
[    0.247720] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.247721] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.247722] e820: reserve RAM buffer [mem 0x514ed018-0x53ffffff]
[    0.247723] e820: reserve RAM buffer [mem 0x556ab000-0x57ffffff]
[    0.247724] e820: reserve RAM buffer [mem 0x62260000-0x63ffffff]
[    0.247725] e820: reserve RAM buffer [mem 0x64df4000-0x67ffffff]
[    0.247726] e820: reserve RAM buffer [mem 0x78600000-0x7bffffff]
[    0.247727] e820: reserve RAM buffer [mem 0x481800000-0x483ffffff]
[    0.247762] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.247762] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.247762] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.247762] vgaarb: loaded
[    0.248585] clocksource: Switched to clocksource tsc-early
[    0.248592] VFS: Disk quotas dquot_6.6.0
[    0.248592] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.248592] AppArmor: AppArmor Filesystem Enabled
[    0.248592] pnp: PnP ACPI init
[    0.249514] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.249517] system 00:00: [io  0xffff] has been reserved
[    0.249518] system 00:00: [io  0xffff] has been reserved
[    0.249520] system 00:00: [io  0xffff] has been reserved
[    0.249521] system 00:00: [io  0x1800-0x18fe] has been reserved
[    0.249522] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.249652] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.250080] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.250082] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.250084] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.250085] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.250087] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.250088] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.250090] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.250092] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.250093] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.250095] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[    0.250136] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.250138] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.250139] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.250141] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.250142] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.250144] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.250145] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.250426] system 00:07: [io  0xff00-0xfffe] has been reserved
[    0.251555] system 00:08: [mem 0xfe029000-0xfe029fff] has been reserved
[    0.251557] system 00:08: [mem 0xfe028000-0xfe028fff] has been reserved
[    0.256776] pnp: PnP ACPI: found 9 devices
[    0.262501] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.262543] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
[    0.262603] pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
[    0.262873] NET: Registered PF_INET protocol family
[    0.262992] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.265243] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.265272] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.265320] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.265502] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.265697] TCP: Hash tables configured (established 131072 bind 65536)
[    0.265772] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[    0.265813] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.265857] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.265906] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.265911] NET: Registered PF_XDP protocol family
[    0.265919] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01-39] add_size 1000
[    0.265933] pci 0000:00:1c.0: bridge window [io  0x2000-0x2fff]: assigned
[    0.265937] pci 0000:00:1c.0: PCI bridge to [bus 01-39]
[    0.265940] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.265943] pci 0000:00:1c.0:   bridge window [mem 0xc4000000-0xda0fffff]
[    0.265946] pci 0000:00:1c.0:   bridge window [mem 0xa0000000-0xc1ffffff 64bit pref]
[    0.265950] pci 0000:00:1c.4: PCI bridge to [bus 3a]
[    0.265953] pci 0000:00:1c.4:   bridge window [mem 0xdc000000-0xdc1fffff]
[    0.265958] pci 0000:00:1d.0: PCI bridge to [bus 3b]
[    0.265961] pci 0000:00:1d.0:   bridge window [mem 0xdc200000-0xdc2fffff]
[    0.265966] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.265968] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.265969] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
[    0.265970] pci_bus 0000:00: resource 7 [mem 0x7c800000-0xdfffffff window]
[    0.265971] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[    0.265973] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.265974] pci_bus 0000:01: resource 1 [mem 0xc4000000-0xda0fffff]
[    0.265975] pci_bus 0000:01: resource 2 [mem 0xa0000000-0xc1ffffff 64bit pref]
[    0.265977] pci_bus 0000:3a: resource 1 [mem 0xdc000000-0xdc1fffff]
[    0.265978] pci_bus 0000:3b: resource 1 [mem 0xdc200000-0xdc2fffff]
[    0.266605] PCI: CLS 0 bytes, default 64
[    0.266619] DMAR: ACPI device "device:79" under DMAR at fed91000 as 00:15.0
[    0.266622] DMAR: ACPI device "device:7a" under DMAR at fed91000 as 00:15.1
[    0.266631] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.266632] software IO TLB: mapped [mem 0x000000005e260000-0x0000000062260000] (64MB)
[    0.266664] Unpacking initramfs...
[    0.266685] sgx: EPC section 0x70200000-0x75f7ffff
[    0.267439] Initialise system trusted keyrings
[    0.267449] Key type blacklist registered
[    0.267523] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[    0.267543] zbud: loaded
[    0.267717] fuse: init (API version 7.39)
[    0.267987] integrity: Platform Keyring initialized
[    0.267998] integrity: Machine keyring initialized
[    0.268003] Key type asymmetric registered
[    0.268006] Asymmetric key parser 'x509' registered
[    0.296367] Freeing initrd memory: 18876K
[    0.299855] alg: self-tests disabled
[    0.299908] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    0.299930] io scheduler mq-deadline registered
[    0.300948] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.303137] thermal LNXTHERM:00: registered as thermal_zone0
[    0.303139] ACPI: thermal: Thermal Zone [THM] (25 C)
[    0.303301] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.303916] hpet_acpi_add: no address or irqs in _CRS
[    0.315383] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 4)
[    0.354161] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.355709] i8042: Warning: Keylock active
[    0.357929] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.357934] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.358025] mousedev: PS/2 mouse device common for all mice
[    0.358045] rtc_cmos 00:01: RTC can wake from S4
[    0.358771] rtc_cmos 00:01: registered as rtc0
[    0.358914] rtc_cmos 00:01: setting system clock to 2024-02-17T05:09:46 UTC (1708146586)
[    0.358936] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[    0.359071] intel_pstate: Intel P-state driver initializing
[    0.359275] intel_pstate: HWP enabled
[    0.359341] ledtrig-cpu: registered to indicate activity on CPUs
[    0.359598] efifb: probing for efifb
[    0.359609] efifb: framebuffer at 0x90000000, using 22500k, total 22500k
[    0.359611] efifb: mode is 3200x1800x32, linelength=12800, pages=1
[    0.359612] efifb: scrolling: redraw
[    0.359613] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.359689] Console: switching to colour frame buffer device 200x56
[    0.360060] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.363127] fb0: EFI VGA frame buffer device
[    0.363281] NET: Registered PF_INET6 protocol family
[    0.366979] Segment Routing with IPv6
[    0.366990] In-situ OAM (IOAM) with IPv6
[    0.367012] mip6: Mobile IPv6
[    0.367015] NET: Registered PF_PACKET protocol family
[    0.367037] mpls_gso: MPLS GSO support
[    0.367228] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.367292] microcode: Current revision: 0x000000f4
[    0.367293] microcode: Updated early from: 0x000000f0
[    0.367412] IPI shorthand broadcast: enabled
[    0.368410] sched_clock: Marking stable (361576451, 5827416)->(399896439, -32492572)
[    0.368549] registered taskstats version 1
[    0.368577] Loading compiled-in X.509 certificates
[    0.369087] Loaded X.509 cert 'Build time autogenerated kernel key: d47c33c70b7d8c925a93309ef39ed6f8acab6016'
[    0.370539] Key type .fscrypt registered
[    0.370541] Key type fscrypt-provisioning registered
[    0.375224] cryptd: module verification failed: signature and/or required key missing - tainting kernel
[    0.375694] cryptd: max_cpu_qlen set to 1000
[    0.376651] AVX2 version of gcm_enc/dec engaged.
[    0.376686] AES CTR mode by8 optimization enabled
[    0.388307] Key type encrypted registered
[    0.388313] AppArmor: AppArmor sha256 policy hashing enabled
[    0.388576] integrity: Loading X.509 certificate: UEFI:db
[    0.388597] integrity: Loaded X.509 cert 'Dell Inc. UEFI DB: 5ddb772dc880660055ba0bc131886bb630a639e7'
[    0.388598] integrity: Loading X.509 certificate: UEFI:db
[    0.388615] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.388616] integrity: Loading X.509 certificate: UEFI:db
[    0.388632] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.388952] ima: Allocated hash algorithm: sha256
[    0.426599] ima: No architecture policies found
[    0.426619] evm: Initialising EVM extended attributes:
[    0.426620] evm: security.selinux
[    0.426621] evm: security.SMACK64 (disabled)
[    0.426622] evm: security.SMACK64EXEC (disabled)
[    0.426623] evm: security.SMACK64TRANSMUTE (disabled)
[    0.426624] evm: security.SMACK64MMAP (disabled)
[    0.426625] evm: security.apparmor
[    0.426626] evm: security.ima
[    0.426626] evm: security.capability
[    0.426627] evm: HMAC attrs: 0x1
[    0.427580] RAS: Correctable Errors collector initialized.
[    0.427618] clk: Disabling unused clocks
[    0.428543] Freeing unused decrypted memory: 2036K
[    0.428991] Freeing unused kernel image (initmem) memory: 3976K
[    0.450082] Write protecting the kernel read-only data: 22528k
[    0.450969] Freeing unused kernel image (rodata/data gap) memory: 276K
[    0.521809] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.521810] x86/mm: Checking user space page tables
[    0.563967] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.563971] Run /init as init process
[    0.563972]   with arguments:
[    0.563974]     /init
[    0.563975]   with environment:
[    0.563975]     HOME=/
[    0.563976]     TERM=linux
[    0.563977]     BOOT_IMAGE=/vmlinuz-6.8.0-rc4+
[    0.745638] hid: raw HID events driver (C) Jiri Kosina
[    0.748243] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[    0.748714] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    0.748743] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    0.750203] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    0.772439] i2c i2c-0: 2/2 memory slots populated (from DMI)
[    0.780116] ACPI: bus type drm_connector registered
[    0.788139] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[    0.788411] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    0.790123] ACPI: bus type USB registered
[    0.790157] usbcore: registered new interface driver usbfs
[    0.790168] usbcore: registered new interface driver hub
[    0.790178] usbcore: registered new device driver usb
[    0.798193] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.798205] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.799325] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
[    0.799888] xhci_hcd 0000:00:14.0: supports USB remote wakeup
[    0.800199] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.800203] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.800206] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    0.800208] xhci_hcd 0000:00:14.0: supports USB remote wakeup
[    0.800236] usb usb1: default language 0x0409
[    0.800247] usb usb1: udev 1, busnum 1, minor = 0
[    0.800250] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    0.800252] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.800254] usb usb1: Product: xHCI Host Controller
[    0.800255] usb usb1: Manufacturer: Linux 6.8.0-rc4+ xhci-hcd
[    0.800257] usb usb1: SerialNumber: 0000:00:14.0
[    0.800397] usb usb1: usb_probe_device
[    0.800399] usb usb1: configuration #1 chosen from 1 choice
[    0.800409] usb usb1: adding 1-0:1.0 (config #1, interface 0)
[    0.800442] hub 1-0:1.0: usb_probe_interface
[    0.800444] hub 1-0:1.0: usb_probe_interface - got id
[    0.800446] hub 1-0:1.0: USB hub found
[    0.800462] hub 1-0:1.0: 12 ports detected
[    0.800464] hub 1-0:1.0: standalone hub
[    0.800465] hub 1-0:1.0: no power switching (usb 1.0)
[    0.800466] hub 1-0:1.0: individual port over-current protection
[    0.800468] hub 1-0:1.0: Single TT
[    0.800469] hub 1-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.800471] hub 1-0:1.0: power on to power good time: 20ms
[    0.800478] hub 1-0:1.0: local power source is good
[    0.802591] nvme nvme0: pci function 0000:3b:00.0
[    0.805609] usb usb1-port3: DeviceRemovable is changed to 1 according to platform information.
[    0.805614] usb usb1-port4: DeviceRemovable is changed to 1 according to platform information.
[    0.805616] usb usb1-port5: DeviceRemovable is changed to 1 according to platform information.
[    0.805618] hub 1-0:1.0: trying to enable port power on non-switchable hub
[    0.805840] usb usb2: skipped 1 descriptor after endpoint
[    0.805846] usb usb2: default language 0x0409
[    0.805860] usb usb2: udev 1, busnum 2, minor = 128
[    0.805862] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[    0.805865] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.805867] usb usb2: Product: xHCI Host Controller
[    0.805870] usb usb2: Manufacturer: Linux 6.8.0-rc4+ xhci-hcd
[    0.805872] usb usb2: SerialNumber: 0000:00:14.0
[    0.805932] usb usb2: usb_probe_device
[    0.805934] usb usb2: configuration #1 chosen from 1 choice
[    0.805950] usb usb2: adding 2-0:1.0 (config #1, interface 0)
[    0.805980] hub 2-0:1.0: usb_probe_interface
[    0.805982] hub 2-0:1.0: usb_probe_interface - got id
[    0.805984] hub 2-0:1.0: USB hub found
[    0.805996] hub 2-0:1.0: 6 ports detected
[    0.805998] hub 2-0:1.0: standalone hub
[    0.806000] hub 2-0:1.0: no power switching (usb 1.0)
[    0.806001] hub 2-0:1.0: individual port over-current protection
[    0.806003] hub 2-0:1.0: TT requires at most 8 FS bit times (666 ns)
[    0.806005] hub 2-0:1.0: power on to power good time: 100ms
[    0.806013] hub 2-0:1.0: local power source is good
[    0.806207] usb usb2-port1: peered to usb1-port1
[    0.806349] usb usb2-port2: peered to usb1-port2
[    0.806487] usb usb2-port3: peered to usb1-port6
[    0.806622] usb: failed to peer usb2-port4 and usb1-port6 by location (usb2-port4:none) (usb1-port6:usb2-port3)
[    0.806625] usb usb2-port4: ignore peering failure to usb1-port6 as ports are not connectable
[    0.806757] usb: failed to peer usb2-port5 and usb1-port6 by location (usb2-port5:none) (usb1-port6:usb2-port3)
[    0.806759] usb usb2-port5: ignore peering failure to usb1-port6 as ports are not connectable
[    0.806895] usb: failed to peer usb2-port6 and usb1-port6 by location (usb2-port6:none) (usb1-port6:usb2-port3)
[    0.806897] usb usb2-port6: ignore peering failure to usb1-port6 as ports are not connectable
[    0.806905] usb usb2: port-1 no _DSM function 5
[    0.806908] usb usb2: port-2 no _DSM function 5
[    0.806911] usb usb2: port-3 no _DSM function 5
[    0.806913] usb usb2: port-4 no _DSM function 5
[    0.806916] usb usb2: port-5 no _DSM function 5
[    0.806918] usb usb2: port-6 no _DSM function 5
[    0.806920] hub 2-0:1.0: trying to enable port power on non-switchable hub
[    0.820090] nvme nvme0: 4/0/0 default/read/poll queues
[    0.825870] usb usb1-port3: status 0101 change 0001
[    0.825883] usb usb1-port4: status 0101 change 0001
[    0.825892] usb usb1-port5: status 0101 change 0001
[    0.825931]  nvme0n1: p1 p2 p3 p4
[    0.930006] hub 1-0:1.0: state 7 ports 12 chg 0038 evt 0000
[    0.930033] usb usb1-port3: status 0101, change 0000, 12 Mb/s
[    0.967975] input: DLL075B:01 06CB:76AF Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input2
[    0.968302] input: DLL075B:01 06CB:76AF Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input3
[    0.968569] hid-generic 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[    1.014033] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.014141] hub 2-0:1.0: hub_suspend
[    1.014156] usb usb2: bus auto-suspend, wakeup 1
[    1.014178] usb usb2: suspend raced with wakeup event
[    1.014182] usb usb2: usb auto-resume
[    1.030080] hub 2-0:1.0: hub_resume
[    1.058119] usb 1-3: new full-speed USB device number 2 using xhci_hcd
[    1.058206] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.058313] hub 2-0:1.0: hub_suspend
[    1.058329] usb usb2: bus auto-suspend, wakeup 1
[    1.058353] usb usb2: suspend raced with wakeup event
[    1.058358] usb usb2: usb auto-resume
[    1.074075] hub 2-0:1.0: hub_resume
[    1.102175] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.102292] hub 2-0:1.0: hub_suspend
[    1.102308] usb usb2: bus auto-suspend, wakeup 1
[    1.102335] usb usb2: suspend raced with wakeup event
[    1.102341] usb usb2: usb auto-resume
[    1.118049] hub 2-0:1.0: hub_resume
[    1.146140] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.146253] hub 2-0:1.0: hub_suspend
[    1.146276] usb usb2: bus auto-suspend, wakeup 1
[    1.146303] usb usb2: suspend raced with wakeup event
[    1.146308] usb usb2: usb auto-resume
[    1.162091] hub 2-0:1.0: hub_resume
[    1.190130] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.190245] hub 2-0:1.0: hub_suspend
[    1.190261] usb usb2: bus auto-suspend, wakeup 1
[    1.190288] usb usb2: suspend raced with wakeup event
[    1.190293] usb usb2: usb auto-resume
[    1.206124] hub 2-0:1.0: hub_resume
[    1.208834] usb 1-3: udev 2, busnum 1, minor = 1
[    1.208849] usb 1-3: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
[    1.208859] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.209462] usb 1-3: usb_probe_device
[    1.209474] usb 1-3: configuration #1 chosen from 1 choice
[    1.211731] usb 1-3: adding 1-3:1.0 (config #1, interface 0)
[    1.212398] usb 1-3: adding 1-3:1.1 (config #1, interface 1)
[    1.213005] usb usb1-port4: status 0101, change 0000, 12 Mb/s
[    1.234135] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.234248] hub 2-0:1.0: hub_suspend
[    1.234265] usb usb2: bus auto-suspend, wakeup 1
[    1.234293] usb usb2: suspend raced with wakeup event
[    1.234298] usb usb2: usb auto-resume
[    1.250085] hub 2-0:1.0: hub_resume
[    1.274032] tsc: Refined TSC clocksource calibration: 2904.007 MHz
[    1.274052] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc0c50045, max_idle_ns: 440795208304 ns
[    1.274127] clocksource: Switched to clocksource tsc
[    1.278168] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.278282] hub 2-0:1.0: hub_suspend
[    1.278298] usb usb2: bus auto-suspend, wakeup 1
[    1.278325] usb usb2: suspend raced with wakeup event
[    1.278330] usb usb2: usb auto-resume
[    1.294087] hub 2-0:1.0: hub_resume
[    1.322189] hub 2-0:1.0: state 7 ports 6 chg 0000 evt 0000
[    1.322302] hub 2-0:1.0: hub_suspend
[    1.322318] usb usb2: bus auto-suspend, wakeup 1
[    1.338069] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[    1.486058] usb 1-4: ep0 maxpacket = 8
[    1.488149] usb 1-4: skipped 1 descriptor after interface
[    1.488351] usb 1-4: default language 0x0409
[    1.488948] usb 1-4: udev 3, busnum 1, minor = 2
[    1.488960] usb 1-4: New USB device found, idVendor=04f3, idProduct=2234, bcdDevice=11.11
[    1.488970] usb 1-4: New USB device strings: Mfr=4, Product=14, SerialNumber=0
[    1.488976] usb 1-4: Product: Touchscreen
[    1.488982] usb 1-4: Manufacturer: ELAN
[    1.489581] usb 1-4: usb_probe_device
[    1.489594] usb 1-4: configuration #1 chosen from 1 choice
[    1.491166] usb 1-4: adding 1-4:1.0 (config #1, interface 0)
[    1.491954] usb usb1-port5: status 0101, change 0000, 12 Mb/s
[    1.618090] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[    1.818369] usb 1-5: skipped 2 descriptors after configuration
[    1.818383] usb 1-5: skipped 6 descriptors after interface
[    1.818391] usb 1-5: skipped 1 descriptor after endpoint
[    1.818397] usb 1-5: skipped 14 descriptors after endpoint
[    1.819158] usb 1-5: default language 0x0409
[    1.827096] usb 1-5: udev 4, busnum 1, minor = 3
[    1.827111] usb 1-5: New USB device found, idVendor=0c45, idProduct=670c, bcdDevice=56.26
[    1.827120] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    1.827126] usb 1-5: Product: Integrated_Webcam_HD
[    1.827132] usb 1-5: Manufacturer: CN09GTFMLOG008C8B7FWA01
[    1.827749] usb 1-5: usb_probe_device
[    1.827763] usb 1-5: configuration #1 chosen from 1 choice
[    1.829776] usb 1-5: adding 1-5:1.0 (config #1, interface 0)
[    1.833559] usb 1-5: adding 1-5:1.1 (config #1, interface 1)
[    1.837529] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0000
[    1.848157] usbhid 1-4:1.0: usb_probe_interface
[    1.848161] usbhid 1-4:1.0: usb_probe_interface - got id
[    1.854806] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input5
[    1.854931] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input6
[    1.854953] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input7
[    1.854957] usbhid 1-4:1.0: looking for a minor, starting at 0
[    1.855138] hid-generic 0003:04F3:2234.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-4/input0
[    1.855173] usbcore: registered new interface driver usbhid
[    1.855174] usbhid: USB HID core driver
[    1.877072] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    1.877105] device-mapper: uevent: version 1.0.3
[    1.877267] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@xxxxxxxxxx
[   18.148313] PM: Image not found (code -22)
[   18.294087] EXT4-fs (dm-0): mounted filesystem 32e29882-d94d-4a92-9ee4-4d03002bfa29 ro with ordered data mode. Quota mode: none.
[   18.319091] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist.
[   18.949531] systemd[1]: Inserted module 'autofs4'
[   18.995390] systemd[1]: systemd 255.3-2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[   18.995407] systemd[1]: Detected architecture x86-64.
[   18.996582] systemd[1]: Hostname set to <abreu>.
[   19.202644] systemd[1]: Queued start job for default target graphical.target.
[   19.247149] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   19.247578] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   19.247982] systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
[   19.248378] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   19.248675] systemd[1]: Created slice user.slice - User and Session Slice.
[   19.248768] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[   19.248838] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   19.249071] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   19.249097] systemd[1]: Expecting device dev-disk-by\x2ddiskseq-1\x2dpart4.device - /dev/disk/by-diskseq/1-part4...
[   19.249105] systemd[1]: Expecting device dev-disk-by\x2duuid-2d23fd4c\x2d5d03\x2d4e1a\x2d8a42\x2d0e859d1f00d8.device - /dev/disk/by-uuid/2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8...
[   19.249114] systemd[1]: Expecting device dev-disk-by\x2duuid-61be8f50\x2d69c5\x2d49a5\x2dbcad\x2d3f4521e9c7b5.device - /dev/disk/by-uuid/61be8f50-69c5-49a5-bcad-3f4521e9c7b5...
[   19.249123] systemd[1]: Expecting device dev-disk-by\x2duuid-96BD\x2d5653.device - /dev/disk/by-uuid/96BD-5653...
[   19.249147] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   19.249173] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[   19.249186] systemd[1]: Reached target paths.target - Path Units.
[   19.249207] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[   19.249222] systemd[1]: Reached target slices.target - Slice Units.
[   19.249257] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   19.251056] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[   19.251191] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[   19.251276] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   19.251445] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   19.251622] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[   19.251672] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   19.252013] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   19.252159] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   19.253740] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   19.254982] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   19.256809] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   19.262055] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   19.264718] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   19.274184] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   19.280184] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[   19.282368] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[   19.289326] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[   19.292106] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   19.298747] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[   19.299811] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[   19.299956] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[   19.303732] systemd[1]: Starting systemd-journald.service - Journal Service...
[   19.305089] pstore: Using crash dump compression: deflate
[   19.310244] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   19.310273] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   19.312508] pstore: Registered efi_pstore as persistent store backend
[   19.314831] loop: module loaded
[   19.315348] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   19.315438] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   19.318433] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   19.320676] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   19.320844] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   19.320986] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   19.321128] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   19.321450] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   19.321809] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[   19.322251] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[   19.322435] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[   19.322841] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[   19.323031] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[   19.323426] systemd[1]: modprobe@drm.service: Deactivated successfully.
[   19.323605] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[   19.323978] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   19.324141] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   19.324491] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[   19.324671] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[   19.325008] systemd[1]: modprobe@loop.service: Deactivated successfully.
[   19.325164] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[   19.328840] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[   19.330249] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[   19.332122] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[   19.335208] systemd-journald[487]: Collecting audit messages is disabled.
[   19.336032] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[   19.341480] lp: driver loaded but no devices found
[   19.343670] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[   19.343848] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[   19.345627] ppdev: user-space parallel port driver
[   19.347933] EXT4-fs (dm-0): re-mounted 32e29882-d94d-4a92-9ee4-4d03002bfa29 r/w. Quota mode: none.
[   19.350602] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[   19.352456] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[   19.352523] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[   19.358188] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[   19.358230] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[   19.364255] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[   19.366093] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[   19.366468] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[   19.366665] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[   19.372892] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[   19.382483] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[   19.387424] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[   19.394891] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[   19.395042] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[   19.396694] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[   19.417043] systemd[1]: Started systemd-journald.service - Journal Service.
[   19.436371] systemd-journald[487]: Received client request to flush runtime journal.
[   19.454141] systemd-journald[487]: /var/log/journal/16ae67b9dca94ecebbc8ec78ab24e074/system.journal: Journal file uses a different sequence number ID, rotating.
[   19.454153] systemd-journald[487]: Rotating system journal.
[   19.613513] ACPI: AC: AC Adapter [AC] (off-line)
[   19.645441] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input9
[   19.651768] wmi_bus wmi_bus-PNP0C14:01: WQBC data block query control method not found
[   19.653347] intel_pmc_core INT33A1:00:  initialized
[   19.653872] input: Intel HID events as /devices/platform/INT33D5:00/input/input10
[   19.658680] Consider using thermal netlink events interface
[   19.702597] intel-hid INT33D5:00: platform supports 5 button array
[   19.706269] usb 1-3: usb auto-suspend, wakeup 0
[   19.714248] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input11
[   19.729903] ACPI: button: Lid Switch [LID0]
[   19.730128] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input12
[   19.743724] input: Intel Virtual Buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/INT33D6:00/input/input13
[   19.745568] ACPI: button: Power Button [PBTN]
[   19.745630] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input14
[   19.745891] ACPI: button: Sleep Button [SBTN]
[   19.746231] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input16
[   19.746344] ACPI: button: Power Button [PWRF]
[   19.753775] input: DLL075B:01 06CB:76AF Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input17
[   19.753950] input: DLL075B:01 06CB:76AF Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-DLL075B:01/0018:06CB:76AF.0001/input/input18
[   19.754654] hid-multitouch 0018:06CB:76AF.0001: input,hidraw0: I2C HID v1.00 Mouse [DLL075B:01 06CB:76AF] on i2c-DLL075B:01
[   19.796293] Adding 8387904k swap on /dev/nvme0n1p4.  Priority:-2 extents:1 across:8387904k SS
[   19.842947] usbhid 1-4:1.0: removing 0 minor
[   19.846450] ACPI: battery: Slot [BAT0] (battery present)
[   19.854859] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input20
[   19.858793] input: ELAN Touchscreen UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input21
[   19.861300] input: ELAN Touchscreen UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:04F3:2234.0002/input/input22
[   19.862020] usbhid 1-4:1.0: looking for a minor, starting at 0
[   19.875964] hid-multitouch 0003:04F3:2234.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-4/input0
[   19.961554] EXT4-fs (nvme0n1p2): mounted filesystem 2d23fd4c-5d03-4e1a-8a42-0e859d1f00d8 r/w with ordered data mode. Quota mode: none.
[   19.975207] mc: Linux media interface: v0.10
[   19.979959] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   20.151676] input: PC Speaker as /devices/platform/pcspkr/input/input24
[   20.185836] videodev: Linux video capture interface: v2.00
[   20.190437] Bluetooth: Core ver 2.22
[   20.190455] NET: Registered PF_BLUETOOTH protocol family
[   20.190457] Bluetooth: HCI device and connection manager initialized
[   20.190461] Bluetooth: HCI socket layer initialized
[   20.190464] Bluetooth: L2CAP socket layer initialized
[   20.190469] Bluetooth: SCO socket layer initialized
[   20.198798] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   20.199077] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   20.199308] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[   20.202332] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[   20.208695] iTCO_vendor_support: vendor-support=0
[   20.223183] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[   20.240543] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   20.262868] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[   20.278761] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[   20.278766] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   20.278767] RAPL PMU: hw unit of domain package 2^-14 Joules
[   20.278768] RAPL PMU: hw unit of domain dram 2^-14 Joules
[   20.278769] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   20.278770] RAPL PMU: hw unit of domain psys 2^-14 Joules
[   20.318238] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0000
[   20.366119] usb 1-3: usb auto-resume
[   20.366657] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0008
[   20.382083] intel_rapl_common: Found RAPL domain package
[   20.382094] intel_rapl_common: Found RAPL domain dram
[   20.426545] audit: type=1400 audit(1708146606.555:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=597 comm="apparmor_parser"
[   20.426552] audit: type=1400 audit(1708146606.555:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=597 comm="apparmor_parser"
[   20.427656] audit: type=1400 audit(1708146606.563:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=596 comm="apparmor_parser"
[   20.434033] usb 1-3: Waited 0ms for CONNECT
[   20.434039] usb 1-3: finish resume
[   20.434146] btusb 1-3:1.0: usb_probe_interface
[   20.434149] btusb 1-3:1.0: usb_probe_interface - got id
[   20.443566] audit: type=1400 audit(1708146606.579:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=603 comm="apparmor_parser"
[   20.443571] audit: type=1400 audit(1708146606.579:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=603 comm="apparmor_parser"
[   20.443573] audit: type=1400 audit(1708146606.579:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=603 comm="apparmor_parser"
[   20.446063] Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
[   20.446068] Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
[   20.451638] audit: type=1400 audit(1708146606.587:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/ipsec/charon" pid=605 comm="apparmor_parser"
[   20.452535] usbcore: registered new interface driver btusb
[   20.493578] audit: type=1400 audit(1708146606.627:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/ipsec/stroke" pid=607 comm="apparmor_parser"
[   20.497902] audit: type=1400 audit(1708146606.631:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=598 comm="apparmor_parser"
[   20.497907] audit: type=1400 audit(1708146606.635:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=598 comm="apparmor_parser"
[   20.542710] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   20.542736] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[   20.599919] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   20.603328] uvcvideo 1-5:1.0: usb_probe_interface
[   20.603338] uvcvideo 1-5:1.0: usb_probe_interface - got id
[   20.608160] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   20.608612] usb 1-5: Found UVC 1.00 device Integrated_Webcam_HD (0c45:670c)
[   20.608682] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   20.744283] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   20.745102] usbcore: registered new interface driver uvcvideo
[   20.867297] Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
[   20.899581] Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
[   21.063277] Console: switching to colour dummy device 80x25
[   21.068048] i915 0000:00:02.0: vgaarb: deactivate vga console
[   21.077086] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   21.078692] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[   21.122168] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.213010] intel_rapl_common: Found RAPL domain package
[   21.213015] intel_rapl_common: Found RAPL domain core
[   21.213017] intel_rapl_common: Found RAPL domain uncore
[   21.213018] intel_rapl_common: Found RAPL domain dram
[   21.213019] intel_rapl_common: Found RAPL domain psys
[   21.226073] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.231275] input: Dell WMI hotkeys as /devices/platform/PNP0C14:01/wmi_bus/wmi_bus-PNP0C14:01/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input25
[   21.232105] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.266638] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.268492] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[   21.278978] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.311204] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.367328] ath10k_pci 0000:3a:00.0: enabling device (0000 -> 0002)
[   21.413628] ath10k_pci 0000:3a:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[   21.434778] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.489690] snd_soc_avs 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.551956] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.556753] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.556766] snd_soc_avs 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.592783] sof-audio-pci-intel-skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   21.710026] ath10k_pci 0000:3a:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 1a56:1535
[   21.710038] ath10k_pci 0000:3a:00.0: kconfig debug 0 debugfs 0 tracing 0 dfs 0 testmode 0
[   21.710847] ath10k_pci 0000:3a:00.0: firmware ver WLAN.RM.4.4.1-00288- api 6 features wowlan,ignore-otp,mfp crc32 bf907c7c
[   21.817932] ath10k_pci 0000:3a:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
[   21.923378] ath10k_pci 0000:3a:00.0: htt-ver 3.87 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
[   22.015079] ath: EEPROM regdomain: 0x6c
[   22.015086] ath: EEPROM indicates we should expect a direct regpair map
[   22.015089] ath: Country alpha2 being used: 00
[   22.015091] ath: Regpair used: 0x6c
[   22.027157] ath10k_pci 0000:3a:00.0 wlp58s0: renamed from wlan0
[   22.102108] NET: Registered PF_QIPCRTR protocol family
[   22.390935] Initializing XFRM netlink socket
[   22.439058] PPP generic driver version 2.4.2
[   22.557941] IPsec XFRM device driver
[   22.640821] NET: Registered PF_PPPOX protocol family
[   22.925337] l2tp_core: L2TP core driver, V2.0
[   22.927780] l2tp_netlink: L2TP netlink interface
[   22.935962] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[   23.016979] i915 0000:00:02.0: [drm] [ENCODER:102:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it
[   23.021242] i915 0000:00:02.0: [drm] [ENCODER:113:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
[   23.060181] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 0
[   23.066616] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   23.070513] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input26
[   23.070663] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[   23.070724] i915 display info: display version: 9
[   23.070726] i915 display info: cursor_needs_physical: no
[   23.070727] i915 display info: has_cdclk_crawl: no
[   23.070729] i915 display info: has_cdclk_squash: no
[   23.070730] i915 display info: has_ddi: yes
[   23.070731] i915 display info: has_dp_mst: yes
[   23.070732] i915 display info: has_dsb: no
[   23.070733] i915 display info: has_fpga_dbg: yes
[   23.070735] i915 display info: has_gmch: no
[   23.070736] i915 display info: has_hotplug: yes
[   23.070737] i915 display info: has_hti: no
[   23.070738] i915 display info: has_ipc: yes
[   23.070739] i915 display info: has_overlay: no
[   23.070740] i915 display info: has_psr: yes
[   23.070742] i915 display info: has_psr_hw_tracking: yes
[   23.070743] i915 display info: overlay_needs_physical: no
[   23.070744] i915 display info: supports_tv: no
[   23.070745] i915 display info: has_hdcp: yes
[   23.070746] i915 display info: has_dmc: yes
[   23.070748] i915 display info: has_dsc: no
[   23.070824] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   23.093236] fbcon: i915drmfb (fb0) is primary device
[   23.109497] Console: switching to colour frame buffer device 200x56
[   23.129773] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[   23.203498] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3246: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   23.203504] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   23.203507] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   23.203510] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   23.203511] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   23.203513] snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x19
[   23.203515] snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1a
[   23.203517] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[   23.269933] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[   23.270001] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[   23.270056] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[   23.270126] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[   23.270481] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
[   23.977857] usb 1-5: usb auto-suspend, wakeup 0
[   24.091754] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0000
[   24.138018] usb 1-5: usb auto-resume
[   24.138015] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0020
[   24.205878] usb 1-5: Waited 0ms for CONNECT
[   24.205891] usb 1-5: finish resume
[   24.212763] usb 1-5: disable remote wakeup, status -32
[   25.992790] rfkill: input handler disabled
[   27.521846] usb 1-5: usb auto-suspend, wakeup 0
[   27.928184] wlp58s0: 80 MHz not supported, disabling VHT
[   27.982130] wlp58s0: authenticate with e8:48:b8:e1:89:ab (local address=9c:b6:d0:d1:6a:b1)
[   27.982135] wlp58s0: send auth to e8:48:b8:e1:89:ab (try 1/3)
[   27.985129] wlp58s0: authenticated
[   27.985844] wlp58s0: associate with e8:48:b8:e1:89:ab (try 1/3)
[   27.989469] wlp58s0: RX AssocResp from e8:48:b8:e1:89:ab (capab=0x421 status=0 aid=1)
[   27.992012] wlp58s0: associated
[   30.248072] systemd-journald[487]: /var/log/journal/16ae67b9dca94ecebbc8ec78ab24e074/user-5272.journal: Journal file uses a different sequence number ID, rotating.
[   30.669416] rfkill: input handler enabled
[   32.986669] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0000
[   33.033902] usb 1-5: usb auto-resume
[   33.037139] hub 1-0:1.0: state 7 ports 12 chg 0000 evt 0020
[   33.101882] usb 1-5: Waited 0ms for CONNECT
[   33.101895] usb 1-5: finish resume
[   33.103359] usb 1-5: disable remote wakeup, status -32
[   33.782126] rfkill: input handler disabled
[   35.621877] usb 1-5: usb auto-suspend, wakeup 0

[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux