Message ID | 20240222233343.71856-1-mathias.nyman@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 69c63350e573367f9c8594162288cffa8a26d0d1 |
Headers | show |
Series | [v2] usb: port: Don't try to peer unused USB ports based on location | expand |
Dear Mathias, Thank you for version 2. Am 23.02.24 um 00:33 schrieb Mathias Nyman: > Unused USB ports may have bogus location data in ACPI PLD tables. > This causes port peering failures as these unused USB2 and USB3 ports > location may match. > > Due to these failures the driver prints a > "usb: port power management may be unreliable" warning, and > unnecessarily blocks port power off during runtime suspend. > > This was debugged on a couple DELL systems where the unused ports > all returned zeroes in their location data. > Similar bugreports exist for other systems. > > Don't try to peer or match ports that have connect type set to > USB_PORT_NOT_USED. > > Fixes: 3bfd659baec8 ("usb: find internal hub tier mismatch via acpi") > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218465 > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218486 > Tested-by: Paul Menzel <pmenzel@molgen.mpg.de> > Link: https://lore.kernel.org/linux-usb/5406d361-f5b7-4309-b0e6-8c94408f7d75@molgen.mpg.de > Cc: stable@vger.kernel.org # v3.16+ > Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> > --- > v1 -> v2 > - Improve commit message > - Add missing Fixes, Closes and Link tags > - send this patch separately for easier picking to usb-linus > > drivers/usb/core/port.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/usb/core/port.c b/drivers/usb/core/port.c > index c628c1abc907..4d63496f98b6 100644 > --- a/drivers/usb/core/port.c > +++ b/drivers/usb/core/port.c > @@ -573,7 +573,7 @@ static int match_location(struct usb_device *peer_hdev, void *p) > struct usb_hub *peer_hub = usb_hub_to_struct_hub(peer_hdev); > struct usb_device *hdev = to_usb_device(port_dev->dev.parent->parent); > > - if (!peer_hub) > + if (!peer_hub || port_dev->connect_type == USB_PORT_NOT_USED) > return 0; > > hcd = bus_to_hcd(hdev->bus); > @@ -584,7 +584,8 @@ static int match_location(struct usb_device *peer_hdev, void *p) > > for (port1 = 1; port1 <= peer_hdev->maxchild; port1++) { > peer = peer_hub->ports[port1 - 1]; > - if (peer && peer->location == port_dev->location) { > + if (peer && peer->connect_type != USB_PORT_NOT_USED && > + peer->location == port_dev->location) { > link_peers_report(port_dev, peer); > return 1; /* done */ > } I tested the two versions from before 8c849968dd165 usb: port: Don't try to peer unused USB ports based on location 85704eb36e9f2 usb: usb-acpi: Set port connect type of not connectable ports correctly 39133352cbed6 Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm on the Dell OptiPlex 5055 [1], but the USB keyboard and mouse were not detected. I have to find out, if I screwed up the build – as network also did not work –, but please wait until I get that test finished. On the bright side, the warning was gone. ;-) With 6.8-rc5 and the two patches: [ 2.020312] usbcore: registered new interface driver usbfs [ 2.021303] usbcore: registered new interface driver hub [ 2.022307] usbcore: registered new device driver usb [ 3.219725] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.285546] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.301819] usbcore: registered new interface driver usb-storage [ 3.630824] usb 1-7: new low-speed USB device number 2 using xhci_hcd [ 4.120826] usb 1-10: new low-speed USB device number 3 using xhci_hcd With 6.6.12 and without your patches: [ 2.746693] usbcore: registered new interface driver usbfs [ 2.751684] usbcore: registered new interface driver hub [ 2.756686] usbcore: registered new device driver usb [ 4.095689] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.116406] usb: port power management may be unreliable [ 4.182389] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.203353] usbcore: registered new interface driver usb-storage [ 4.417466] usb 1-7: new low-speed USB device number 2 using xhci_hcd [ 4.918470] usb 1-10: new low-speed USB device number 3 using xhci_hcd [ 13.184956] usbcore: registered new interface driver usbhid [ 13.191508] usbhid: USB HID core driver [ 13.333554] input: Dell Dell USB Entry Keyboard as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-7/1-7:1.0/0003:413C:2107.0001/input/input8 [ 13.421779] hid-generic 0003:413C:2107.0001: input,hidraw0: USB HID v1.10 Keyboard [Dell Dell USB Entry Keyboard] on usb-0000:01:00.0-7/input0 [ 13.446542] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-10/1-10:1.0/0003:046D:C050.0002/input/input11 [ 13.473113] hid-generic 0003:046D:C050.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:01:00.0-10/input0 [1]: https://bugzilla.kernel.org/show_bug.cgi?id=218487
Dear Mathias, Am 24.02.24 um 12:27 schrieb Paul Menzel: > Thank you for version 2. > > Am 23.02.24 um 00:33 schrieb Mathias Nyman: >> Unused USB ports may have bogus location data in ACPI PLD tables. >> This causes port peering failures as these unused USB2 and USB3 ports >> location may match. >> >> Due to these failures the driver prints a >> "usb: port power management may be unreliable" warning, and >> unnecessarily blocks port power off during runtime suspend. >> >> This was debugged on a couple DELL systems where the unused ports >> all returned zeroes in their location data. >> Similar bugreports exist for other systems. >> >> Don't try to peer or match ports that have connect type set to >> USB_PORT_NOT_USED. >> >> Fixes: 3bfd659baec8 ("usb: find internal hub tier mismatch via acpi") >> Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218465 >> Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218486 >> Tested-by: Paul Menzel <pmenzel@molgen.mpg.de> >> Link: https://lore.kernel.org/linux-usb/5406d361-f5b7-4309-b0e6-8c94408f7d75@molgen.mpg.de >> Cc: stable@vger.kernel.org # v3.16+ >> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> >> --- >> v1 -> v2 >> - Improve commit message >> - Add missing Fixes, Closes and Link tags >> - send this patch separately for easier picking to usb-linus >> >> drivers/usb/core/port.c | 5 +++-- >> 1 file changed, 3 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/usb/core/port.c b/drivers/usb/core/port.c >> index c628c1abc907..4d63496f98b6 100644 >> --- a/drivers/usb/core/port.c >> +++ b/drivers/usb/core/port.c >> @@ -573,7 +573,7 @@ static int match_location(struct usb_device >> *peer_hdev, void *p) >> struct usb_hub *peer_hub = usb_hub_to_struct_hub(peer_hdev); >> struct usb_device *hdev = >> to_usb_device(port_dev->dev.parent->parent); >> - if (!peer_hub) >> + if (!peer_hub || port_dev->connect_type == USB_PORT_NOT_USED) >> return 0; >> hcd = bus_to_hcd(hdev->bus); >> @@ -584,7 +584,8 @@ static int match_location(struct usb_device >> *peer_hdev, void *p) >> for (port1 = 1; port1 <= peer_hdev->maxchild; port1++) { >> peer = peer_hub->ports[port1 - 1]; >> - if (peer && peer->location == port_dev->location) { >> + if (peer && peer->connect_type != USB_PORT_NOT_USED && >> + peer->location == port_dev->location) { >> link_peers_report(port_dev, peer); >> return 1; /* done */ >> } > > I tested the two versions from before > > 8c849968dd165 usb: port: Don't try to peer unused USB ports based > on location > 85704eb36e9f2 usb: usb-acpi: Set port connect type of not > connectable ports correctly > 39133352cbed6 Merge tag 'for-linus' of > git://git.kernel.org/pub/scm/virt/kvm/kvm > > on the Dell OptiPlex 5055 [1], but the USB keyboard and mouse were not > detected. I have to find out, if I screwed up the build – as network > also did not work –, but please wait until I get that test finished. On > the bright side, the warning was gone. ;-) […] Sorry, wrong alarm. I guess I messed the module installation, and the modules were not found. I successfully tested it on a different Dell OptiPlex 5055 and uploaded the messages to the Linux Kernel Bugzilla issue [1]. Tested-by: Paul Menzel <pmenzel@molgen.mpg.de> Sorry for the noise. Kind regards, Paul > [1]: https://bugzilla.kernel.org/show_bug.cgi?id=218487
Dear Mathias, Am 23.02.24 um 00:33 schrieb Mathias Nyman: > Unused USB ports may have bogus location data in ACPI PLD tables. > This causes port peering failures as these unused USB2 and USB3 ports > location may match. > > Due to these failures the driver prints a > "usb: port power management may be unreliable" warning, and > unnecessarily blocks port power off during runtime suspend. > > This was debugged on a couple DELL systems where the unused ports > all returned zeroes in their location data. > Similar bugreports exist for other systems. > > Don't try to peer or match ports that have connect type set to > USB_PORT_NOT_USED. > > Fixes: 3bfd659baec8 ("usb: find internal hub tier mismatch via acpi") > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218465 > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218486 > Tested-by: Paul Menzel <pmenzel@molgen.mpg.de> > Link: https://lore.kernel.org/linux-usb/5406d361-f5b7-4309-b0e6-8c94408f7d75@molgen.mpg.de > Cc: stable@vger.kernel.org # v3.16+ > Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> […] I was able to successfully test it on the Dell PowerEdge T440, and the warning is gone there too. Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218490 Kind regards, Paul
Dear Mathias, One more successful test. Am 23.02.24 um 00:33 schrieb Mathias Nyman: > Unused USB ports may have bogus location data in ACPI PLD tables. > This causes port peering failures as these unused USB2 and USB3 ports > location may match. > > Due to these failures the driver prints a > "usb: port power management may be unreliable" warning, and > unnecessarily blocks port power off during runtime suspend. > > This was debugged on a couple DELL systems where the unused ports > all returned zeroes in their location data. > Similar bugreports exist for other systems. > > Don't try to peer or match ports that have connect type set to > USB_PORT_NOT_USED. > > Fixes: 3bfd659baec8 ("usb: find internal hub tier mismatch via acpi") > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218465 > Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218486 > Tested-by: Paul Menzel <pmenzel@molgen.mpg.de> > Link: https://lore.kernel.org/linux-usb/5406d361-f5b7-4309-b0e6-8c94408f7d75@molgen.mpg.de > Cc: stable@vger.kernel.org # v3.16+ > Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> […] Tested-on: Dell XPS 15 7590 (system firmware 1.25.0) Kind regards, Paul [ 0.000000] Linux version 6.8.0-rc6+ (pmenzel@villette) (gcc (Debian 13.2.0-16.1) 13.2.0, GNU ld (GNU Binutils for Debian) 2.42) #12 SMP PREEMPT_DYNAMIC Tue Feb 27 17:44:20 CET 2024 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.8.0-rc6+ root=UUID=9fa41e21-7a5f-479e-afdc-9a5503368d8e ro cryptomgr.notests quiet rd.luks=1 rd.auto=1 log_buf_len=4M usbcore.dyndbg=+p [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved [ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000040400000-0x000000005c4b3fff] usable [ 0.000000] BIOS-e820: [mem 0x000000005c4b4000-0x000000005c4b4fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000005c4b5000-0x000000005c4b5fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000005c4b6000-0x000000006bff8fff] usable [ 0.000000] BIOS-e820: [mem 0x000000006bff9000-0x000000006d770fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006d771000-0x000000006d7edfff] ACPI data [ 0.000000] BIOS-e820: [mem 0x000000006d7ee000-0x000000006e162fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000006e163000-0x000000006fffefff] reserved [ 0.000000] BIOS-e820: [mem 0x000000006ffff000-0x000000006fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000070000000-0x0000000077ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000078000000-0x0000000078dfffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000078e00000-0x000000007f7fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] 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-0x000000087c7fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] e820: update [mem 0x55fda018-0x55fe8657] usable ==> usable [ 0.000000] e820: update [mem 0x55fda018-0x55fe8657] usable ==> usable [ 0.000000] extended physical RAM map: [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009dfff] usable [ 0.000000] reserve setup_data: [mem 0x000000000009e000-0x000000000009efff] reserved [ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] usable [ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable [ 0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved [ 0.000000] reserve setup_data: [mem 0x0000000040400000-0x0000000055fda017] usable [ 0.000000] reserve setup_data: [mem 0x0000000055fda018-0x0000000055fe8657] usable [ 0.000000] reserve setup_data: [mem 0x0000000055fe8658-0x000000005c4b3fff] usable [ 0.000000] reserve setup_data: [mem 0x000000005c4b4000-0x000000005c4b4fff] ACPI NVS [ 0.000000] reserve setup_data: [mem 0x000000005c4b5000-0x000000005c4b5fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000005c4b6000-0x000000006bff8fff] usable [ 0.000000] reserve setup_data: [mem 0x000000006bff9000-0x000000006d770fff] reserved [ 0.000000] reserve setup_data: [mem 0x000000006d771000-0x000000006d7edfff] ACPI data [ 0.000000] reserve setup_data: [mem 0x000000006d7ee000-0x000000006e162fff] ACPI NVS [ 0.000000] reserve setup_data: [mem 0x000000006e163000-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-0x0000000078dfffff] usable [ 0.000000] reserve setup_data: [mem 0x0000000078e00000-0x000000007f7fffff] reserved [ 0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] 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-0x000000087c7fffff] usable [ 0.000000] efi: EFI v2.7 by American Megatrends [ 0.000000] efi: ACPI 2.0=0x6d78a000 ACPI=0x6d78a000 SMBIOS=0xf0000 SMBIOS 3.0=0xf0020 TPMFinalLog=0x6e0a1000 ESRT=0x6fa4b798 MEMATTR=0x695be018 INITRD=0x5c5ded98 RNG=0x6d789018 TPMEventLog=0x55fe9018 [ 0.000000] random: crng init done [ 0.000000] efi: Remove mem55: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map [ 0.000000] e820: remove [mem 0xf0000000-0xf7ffffff] reserved [ 0.000000] efi: Not removing mem56: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map [ 0.000000] efi: Not removing mem57: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map [ 0.000000] efi: Not removing mem58: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map [ 0.000000] efi: Remove mem59: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map [ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved [ 0.000000] SMBIOS 3.2.0 present. [ 0.000000] DMI: Dell Inc. XPS 15 7590/0VYV0G, BIOS 1.25.0 11/06/2023 [ 0.000000] tsc: Detected 2600.000 MHz processor [ 0.000000] tsc: Detected 2599.992 MHz TSC [ 0.000848] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000850] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000859] last_pfn = 0x87c800 max_arch_pfn = 0x400000000 [ 0.000862] MTRR map: 6 entries (3 fixed + 3 variable; max 23), built from 10 variable MTRRs [ 0.000864] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.001231] last_pfn = 0x78e00 max_arch_pfn = 0x400000000 [ 0.007544] esrt: Reserving ESRT space from 0x000000006fa4b798 to 0x000000006fa4b7d0. [ 0.007551] Using GB pages for direct mapping [ 0.010076] printk: log_buf_len: 4194304 bytes [ 0.010077] printk: early log buf free: 125000(95%) [ 0.010078] Secure boot disabled [ 0.010079] RAMDISK: [mem 0x55ff2000-0x57da1fff] [ 0.010083] ACPI: Early table checksum verification disabled [ 0.010085] ACPI: RSDP 0x000000006D78A000 000024 (v02 DELL ) [ 0.010089] ACPI: XSDT 0x000000006D78A0C8 000114 (v01 DELL CBX3 01072009 AMI 00010013) [ 0.010094] ACPI: FACP 0x000000006D7CB0A0 000114 (v06 DELL CBX3 01072009 AMI 00010013) [ 0.010099] ACPI: DSDT 0x000000006D78A270 040E2F (v02 DELL CBX3 01072009 INTL 20160527) [ 0.010102] ACPI: FACS 0x000000006E161C00 000040 [ 0.010104] ACPI: APIC 0x000000006D7CB1B8 0000F4 (v04 DELL CBX3 01072009 AMI 00010013) [ 0.010106] ACPI: FPDT 0x000000006D7CB2B0 000044 (v01 DELL CBX3 01072009 AMI 00010013) [ 0.010109] ACPI: FIDT 0x000000006D7CB2F8 00009C (v01 DELL CBX3 01072009 AMI 00010013) [ 0.010111] ACPI: MCFG 0x000000006D7CB398 00003C (v01 DELL CBX3 01072009 MSFT 00000097) [ 0.010114] ACPI: SSDT 0x000000006D7CB3D8 001B26 (v02 CpuRef CpuSsdt 00003000 INTL 20160527) [ 0.010117] ACPI: BOOT 0x000000006D7CCF00 000028 (v01 DELL CBX3 01072009 AMI 00010013) [ 0.010119] ACPI: SSDT 0x000000006D7CCF28 001663 (v02 SaSsdt SaSsdt 00003000 INTL 20160527) [ 0.010122] ACPI: SSDT 0x000000006D7CE590 002644 (v02 PegSsd PegSsdt 00001000 INTL 20160527) [ 0.010124] ACPI: HPET 0x000000006D7D0BD8 000038 (v01 DELL\x CBX3 00000002 01000013) [ 0.010127] ACPI: SSDT 0x000000006D7D0C10 001441 (v02 DELL\x CflH_Tbt 00001000 INTL 20160527) [ 0.010129] ACPI: UEFI 0x000000006D7D2058 000042 (v01 DELL\x CBX3 00000002 01000013) [ 0.010132] ACPI: LPIT 0x000000006D7D20A0 000094 (v01 DELL\x CBX3 00000002 01000013) [ 0.010134] ACPI: WSMT 0x000000006D7D2138 000028 (v01 DELL CBX3 00000002 01000013) [ 0.010137] ACPI: SSDT 0x000000006D7D2160 0027DE (v02 DELL\x PtidDevc 00001000 INTL 20160527) [ 0.010141] ACPI: SSDT 0x000000006D7D4940 00037A (v02 DELL\x TbtTypeC 00000000 INTL 20160527) [ 0.010143] ACPI: DBGP 0x000000006D7D4CC0 000034 (v01 DELL\x CBX3 00000002 01000013) [ 0.010146] ACPI: DBG2 0x000000006D7D4CF8 000054 (v00 DELL\x CBX3 00000002 01000013) [ 0.010148] ACPI: SSDT 0x000000006D7D4D50 0007DC (v02 DELL\x UsbCTabl 00001000 INTL 20160527) [ 0.010151] ACPI: SSDT 0x000000006D7D5530 00BE4B (v02 DptfTa DptfTabl 00001000 INTL 20160527) [ 0.010153] ACPI: MSDM 0x000000006D7E1380 000055 (v03 DELL CBX3 06222004 AMI 00010013) [ 0.010156] ACPI: SLIC 0x000000006D7E13D8 000176 (v03 DELL CBX3 01072009 MSFT 00010013) [ 0.010158] ACPI: DMAR 0x000000006D7E1550 0000C8 (v01 INTEL EDK2 00000002 01000013) [ 0.010161] ACPI: SSDT 0x000000006D7E1618 000144 (v02 Intel ADebTabl 00001000 INTL 20160527) [ 0.010164] ACPI: SSDT 0x000000006D7E1760 0000AE (v02 SgRef SgPeg 00001000 INTL 20160527) [ 0.010166] ACPI: NHLT 0x000000006D7E1810 00002D (v00 INTEL EDK2 00000002 01000013) [ 0.010169] ACPI: BGRT 0x000000006D7E1840 000038 (v00 DELL CBX3 01072009 AMI 00010013) [ 0.010171] ACPI: TPM2 0x000000006D7E1878 000034 (v04 DELL\x CBX3 00000001 AMI 00000000) [ 0.010174] ACPI: ASF! 0x000000006D7E18B0 0000A0 (v32 DELL\x CBX3 00000002 01000013) [ 0.010176] ACPI: SSDT 0x000000006D7E1950 001E51 (v01 OptRef OptTabl 00001000 INTL 20160527) [ 0.010178] ACPI: Reserving FACP table memory at [mem 0x6d7cb0a0-0x6d7cb1b3] [ 0.010180] ACPI: Reserving DSDT table memory at [mem 0x6d78a270-0x6d7cb09e] [ 0.010180] ACPI: Reserving FACS table memory at [mem 0x6e161c00-0x6e161c3f] [ 0.010181] ACPI: Reserving APIC table memory at [mem 0x6d7cb1b8-0x6d7cb2ab] [ 0.010182] ACPI: Reserving FPDT table memory at [mem 0x6d7cb2b0-0x6d7cb2f3] [ 0.010182] ACPI: Reserving FIDT table memory at [mem 0x6d7cb2f8-0x6d7cb393] [ 0.010183] ACPI: Reserving MCFG table memory at [mem 0x6d7cb398-0x6d7cb3d3] [ 0.010184] ACPI: Reserving SSDT table memory at [mem 0x6d7cb3d8-0x6d7ccefd] [ 0.010184] ACPI: Reserving BOOT table memory at [mem 0x6d7ccf00-0x6d7ccf27] [ 0.010185] ACPI: Reserving SSDT table memory at [mem 0x6d7ccf28-0x6d7ce58a] [ 0.010186] ACPI: Reserving SSDT table memory at [mem 0x6d7ce590-0x6d7d0bd3] [ 0.010186] ACPI: Reserving HPET table memory at [mem 0x6d7d0bd8-0x6d7d0c0f] [ 0.010187] ACPI: Reserving SSDT table memory at [mem 0x6d7d0c10-0x6d7d2050] [ 0.010188] ACPI: Reserving UEFI table memory at [mem 0x6d7d2058-0x6d7d2099] [ 0.010188] ACPI: Reserving LPIT table memory at [mem 0x6d7d20a0-0x6d7d2133] [ 0.010189] ACPI: Reserving WSMT table memory at [mem 0x6d7d2138-0x6d7d215f] [ 0.010190] ACPI: Reserving SSDT table memory at [mem 0x6d7d2160-0x6d7d493d] [ 0.010190] ACPI: Reserving SSDT table memory at [mem 0x6d7d4940-0x6d7d4cb9] [ 0.010191] ACPI: Reserving DBGP table memory at [mem 0x6d7d4cc0-0x6d7d4cf3] [ 0.010192] ACPI: Reserving DBG2 table memory at [mem 0x6d7d4cf8-0x6d7d4d4b] [ 0.010192] ACPI: Reserving SSDT table memory at [mem 0x6d7d4d50-0x6d7d552b] [ 0.010193] ACPI: Reserving SSDT table memory at [mem 0x6d7d5530-0x6d7e137a] [ 0.010194] ACPI: Reserving MSDM table memory at [mem 0x6d7e1380-0x6d7e13d4] [ 0.010194] ACPI: Reserving SLIC table memory at [mem 0x6d7e13d8-0x6d7e154d] [ 0.010195] ACPI: Reserving DMAR table memory at [mem 0x6d7e1550-0x6d7e1617] [ 0.010196] ACPI: Reserving SSDT table memory at [mem 0x6d7e1618-0x6d7e175b] [ 0.010196] ACPI: Reserving SSDT table memory at [mem 0x6d7e1760-0x6d7e180d] [ 0.010197] ACPI: Reserving NHLT table memory at [mem 0x6d7e1810-0x6d7e183c] [ 0.010198] ACPI: Reserving BGRT table memory at [mem 0x6d7e1840-0x6d7e1877] [ 0.010198] ACPI: Reserving TPM2 table memory at [mem 0x6d7e1878-0x6d7e18ab] [ 0.010199] ACPI: Reserving ASF! table memory at [mem 0x6d7e18b0-0x6d7e194f] [ 0.010200] ACPI: Reserving SSDT table memory at [mem 0x6d7e1950-0x6d7e37a0] [ 0.010471] No NUMA configuration found [ 0.010472] Faking a node at [mem 0x0000000000000000-0x000000087c7fffff] [ 0.010479] NODE_DATA(0) allocated [mem 0x87b5d5000-0x87b5fffff] [ 0.010638] Zone ranges: [ 0.010638] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.010640] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.010641] Normal [mem 0x0000000100000000-0x000000087c7fffff] [ 0.010642] Device empty [ 0.010643] Movable zone start for each node [ 0.010645] Early memory node ranges [ 0.010646] node 0: [mem 0x0000000000001000-0x000000000009dfff] [ 0.010647] node 0: [mem 0x000000000009f000-0x000000000009ffff] [ 0.010648] node 0: [mem 0x0000000000100000-0x000000003fffffff] [ 0.010648] node 0: [mem 0x0000000040400000-0x000000005c4b3fff] [ 0.010649] node 0: [mem 0x000000005c4b6000-0x000000006bff8fff] [ 0.010650] node 0: [mem 0x000000006ffff000-0x000000006fffffff] [ 0.010651] node 0: [mem 0x0000000078000000-0x0000000078dfffff] [ 0.010651] node 0: [mem 0x0000000100000000-0x000000087c7fffff] [ 0.010654] Initmem setup node 0 [mem 0x0000000000001000-0x000000087c7fffff] [ 0.010658] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.010659] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.010677] On node 0, zone DMA: 96 pages in unavailable ranges [ 0.012382] On node 0, zone DMA32: 1024 pages in unavailable ranges [ 0.012675] On node 0, zone DMA32: 2 pages in unavailable ranges [ 0.012802] On node 0, zone DMA32: 16390 pages in unavailable ranges [ 0.013542] On node 0, zone Normal: 29184 pages in unavailable ranges [ 0.013654] On node 0, zone Normal: 14336 pages in unavailable ranges [ 0.013678] Reserving Intel graphics memory at [mem 0x7b800000-0x7f7fffff] [ 0.014678] ACPI: PM-Timer IO Port: 0x1808 [ 0.014684] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.014686] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) [ 0.014687] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) [ 0.014687] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) [ 0.014688] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) [ 0.014689] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) [ 0.014689] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) [ 0.014690] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) [ 0.014691] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) [ 0.014691] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) [ 0.014692] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) [ 0.014692] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) [ 0.014738] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119 [ 0.014740] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.014742] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.014746] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.014746] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.014753] e820: update [mem 0x66e9d000-0x66f05fff] usable ==> reserved [ 0.014764] TSC deadline timer available [ 0.014765] smpboot: Allowing 12 CPUs, 0 hotplug CPUs [ 0.014786] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.014788] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff] [ 0.014789] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.014791] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff] [ 0.014792] PM: hibernation: Registered nosave memory: [mem 0x55fda000-0x55fdafff] [ 0.014794] PM: hibernation: Registered nosave memory: [mem 0x55fe8000-0x55fe8fff] [ 0.014795] PM: hibernation: Registered nosave memory: [mem 0x5c4b4000-0x5c4b4fff] [ 0.014796] PM: hibernation: Registered nosave memory: [mem 0x5c4b5000-0x5c4b5fff] [ 0.014798] PM: hibernation: Registered nosave memory: [mem 0x66e9d000-0x66f05fff] [ 0.014799] PM: hibernation: Registered nosave memory: [mem 0x6bff9000-0x6d770fff] [ 0.014800] PM: hibernation: Registered nosave memory: [mem 0x6d771000-0x6d7edfff] [ 0.014800] PM: hibernation: Registered nosave memory: [mem 0x6d7ee000-0x6e162fff] [ 0.014801] PM: hibernation: Registered nosave memory: [mem 0x6e163000-0x6fffefff] [ 0.014803] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x77ffffff] [ 0.014804] PM: hibernation: Registered nosave memory: [mem 0x78e00000-0x7f7fffff] [ 0.014805] PM: hibernation: Registered nosave memory: [mem 0x7f800000-0xfdffffff] [ 0.014805] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff] [ 0.014806] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff] [ 0.014806] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff] [ 0.014807] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff] [ 0.014808] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.014808] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff] [ 0.014809] [mem 0x7f800000-0xfdffffff] available for PCI devices [ 0.014811] Booting paravirtualized kernel on bare hardware [ 0.014812] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns [ 0.018972] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1 [ 0.019492] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144 [ 0.019498] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152 [ 0.019500] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- [ 0.019525] Kernel command line: BOOT_IMAGE=/vmlinuz-6.8.0-rc6+ root=UUID=9fa41e21-7a5f-479e-afdc-9a5503368d8e ro cryptomgr.notests quiet rd.luks=1 rd.auto=1 log_buf_len=4M usbcore.dyndbg=+p [ 0.019602] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.8.0-rc6+", will be passed to user space. [ 0.021960] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) [ 0.023130] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) [ 0.023300] Fallback order for Node 0: 0 [ 0.023303] Built 1 zonelists, mobility grouping on. Total pages: 8165040 [ 0.023304] Policy zone: Normal [ 0.023315] mem auto-init: stack:all(zero), heap alloc:on, heap free:off [ 0.023316] stackdepot: allocating hash table via alloc_large_system_hash [ 0.023318] stackdepot hash table entries: 1048576 (order: 12, 16777216 bytes, linear) [ 0.024486] software IO TLB: area num 16. [ 0.041212] Memory: 1744240K/33179224K available (14336K kernel code, 2348K rwdata, 10196K rodata, 3956K init, 7832K bss, 819292K reserved, 0K cma-reserved) [ 0.041442] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1 [ 0.041485] Kernel/User page tables isolation: enabled [ 0.041521] ftrace: allocating 42369 entries in 166 pages [ 0.048032] ftrace: allocated 166 pages with 4 groups [ 0.048821] Dynamic Preempt: voluntary [ 0.049100] rcu: Preemptible hierarchical RCU implementation. [ 0.049101] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12. [ 0.049102] Trampoline variant of Tasks RCU enabled. [ 0.049102] Rude variant of Tasks RCU enabled. [ 0.049103] Tracing variant of Tasks RCU enabled. [ 0.049103] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.049104] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12 [ 0.057313] NR_IRQS: 524544, nr_irqs: 2152, preallocated irqs: 16 [ 0.057719] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.058121] Console: colour dummy device 80x25 [ 0.058123] printk: legacy console [tty0] enabled [ 0.058180] ACPI: Core revision 20230628 [ 0.058586] hpet: HPET dysfunctional in PC10. Force disabled. [ 0.058588] APIC: Switch to symmetric I/O mode setup [ 0.058589] DMAR: Host address width 39 [ 0.058590] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.058611] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e [ 0.058614] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.058627] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da [ 0.058629] DMAR: RMRR base: 0x0000006d645000 end: 0x0000006d664fff [ 0.058634] DMAR: RMRR base: 0x0000007b000000 end: 0x0000007f7fffff [ 0.058638] DMAR: RMRR base: 0x0000006d6f1000 end: 0x0000006d770fff [ 0.058643] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.058644] DMAR-IR: HPET id 0 under DRHD base 0xfed91000 [ 0.058645] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.061848] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 0.061850] x2apic enabled [ 0.061921] APIC: Switched APIC routing to: cluster x2apic [ 0.071475] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x257a34a6eea, max_idle_ns: 440795264358 ns [ 0.071481] Calibrating delay loop (skipped), value calculated using timer frequency.. 5199.98 BogoMIPS (lpj=10399968) [ 0.071511] CPU0: Thermal monitoring enabled (TM1) [ 0.071560] process: using mwait in idle threads [ 0.071562] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 [ 0.071563] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 [ 0.071567] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.071569] Spectre V2 : Mitigation: IBRS [ 0.071570] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.071570] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [ 0.071571] RETBleed: Mitigation: IBRS [ 0.071572] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.071573] Spectre V2 : User space: Mitigation: STIBP via prctl [ 0.071575] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.071580] MDS: Mitigation: Clear CPU buffers [ 0.071581] MMIO Stale Data: Mitigation: Clear CPU buffers [ 0.071584] SRBDS: Mitigation: Microcode [ 0.071590] GDS: Mitigation: Microcode [ 0.071595] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.071597] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.071598] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.071599] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' [ 0.071600] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' [ 0.071601] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.071603] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 [ 0.071604] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 [ 0.071605] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format. [ 0.075478] Freeing SMP alternatives memory: 36K [ 0.075478] pid_max: default: 32768 minimum: 301 [ 0.075478] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,tomoyo,bpf [ 0.075478] landlock: Up and running. [ 0.075478] Yama: becoming mindful. [ 0.075478] AppArmor: AppArmor initialized [ 0.075478] TOMOYO Linux initialized [ 0.075478] LSM support for eBPF active [ 0.075478] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.075478] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.075478] smpboot: CPU0: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz (family: 0x6, model: 0x9e, stepping: 0xa) [ 0.075478] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1. [ 0.075478] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1. [ 0.075478] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1. [ 0.075478] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver. [ 0.075478] ... version: 4 [ 0.075478] ... bit width: 48 [ 0.075478] ... generic registers: 4 [ 0.075478] ... value mask: 0000ffffffffffff [ 0.075478] ... max period: 00007fffffffffff [ 0.075478] ... fixed-purpose events: 3 [ 0.075478] ... event mask: 000000070000000f [ 0.075478] signal: max sigframe size: 2032 [ 0.075478] Estimated ratio of average max frequency by base frequency (times 1024): 1654 [ 0.075478] rcu: Hierarchical SRCU implementation. [ 0.075478] rcu: Max phase no-delay instances is 1000. [ 0.075478] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. [ 0.075478] smp: Bringing up secondary CPUs ... [ 0.075478] smpboot: x86: Booting SMP configuration: [ 0.075478] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 [ 0.079659] 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.079659] 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.079659] smp: Brought up 1 node, 12 CPUs [ 0.079659] smpboot: Max logical packages: 1 [ 0.079659] smpboot: Total of 12 processors activated (62399.80 BogoMIPS) [ 0.115970] node 0 deferred pages initialised in 32ms [ 0.116337] devtmpfs: initialized [ 0.116337] x86/mm: Memory block size: 128MB [ 0.133673] ACPI: PM: Registering ACPI NVS region [mem 0x5c4b4000-0x5c4b4fff] (4096 bytes) [ 0.133673] ACPI: PM: Registering ACPI NVS region [mem 0x6d7ee000-0x6e162fff] (9916416 bytes) [ 0.136754] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.136771] futex hash table entries: 4096 (order: 6, 262144 bytes, linear) [ 0.136949] pinctrl core: initialized pinctrl subsystem [ 0.137760] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.138475] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations [ 0.138693] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.138902] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.138940] audit: initializing netlink subsys (disabled) [ 0.138970] audit: type=2000 audit(1709304074.064:1): state=initialized audit_enabled=0 res=1 [ 0.138970] thermal_sys: Registered thermal governor 'fair_share' [ 0.138970] thermal_sys: Registered thermal governor 'bang_bang' [ 0.138970] thermal_sys: Registered thermal governor 'step_wise' [ 0.138970] thermal_sys: Registered thermal governor 'user_space' [ 0.138970] thermal_sys: Registered thermal governor 'power_allocator' [ 0.138970] cpuidle: using governor ladder [ 0.138970] cpuidle: using governor menu [ 0.139543] Simple Boot Flag at 0x47 set to 0x80 [ 0.139588] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.139857] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f] [ 0.139861] PCI: not using ECAM ([mem 0xf0000000-0xf7ffffff] not reserved) [ 0.139862] PCI: Using configuration type 1 for base access [ 0.140049] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.140058] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.140058] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.140058] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.140058] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.140069] ACPI: Added _OSI(Module Device) [ 0.140069] ACPI: Added _OSI(Processor Device) [ 0.140069] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.140069] ACPI: Added _OSI(Processor Aggregator Device) [ 0.393087] ACPI: 12 ACPI AML tables successfully acquired and loaded [ 0.475831] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.482440] ACPI Error: AE_ERROR, Returned by Handler for [PCI_Config] (20230628/evregion-300) [ 0.482455] Initialized Local Variables for Method [_INI]: [ 0.482456] Local0: (____ptrval____) [RefOf] <Node> Name _OSI Method (____ptrval____) [ 0.482461] No Arguments are initialized for method [_INI] [ 0.482465] ACPI Error: Aborting method \_SB.PCI0._INI due to previous error (AE_ERROR) (20230628/psparse-529) [ 0.482481] ACPI Error: AE_ERROR, during \_SB.PCI0._INI execution (20230628/nsinit-657) [ 0.505953] ACPI: Dynamic OEM Table Load: [ 0.505960] ACPI: SSDT 0xFFFF9EEE81C6E000 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160527) [ 0.510133] ACPI: Dynamic OEM Table Load: [ 0.510139] ACPI: SSDT 0xFFFF9EEE81C93000 000581 (v02 PmRef Cpu0Ist 00003000 INTL 20160527) [ 0.513455] ACPI: Dynamic OEM Table Load: [ 0.513460] ACPI: SSDT 0xFFFF9EEE828A8600 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20160527) [ 0.515760] ACPI: Dynamic OEM Table Load: [ 0.515764] ACPI: SSDT 0xFFFF9EEE81CA4600 000149 (v02 PmRef Cpu0Hwp 00003000 INTL 20160527) [ 0.517572] ACPI: Dynamic OEM Table Load: [ 0.517581] ACPI: SSDT 0xFFFF9EEE81C93800 000724 (v02 PmRef HwpLvt 00003000 INTL 20160527) [ 0.520635] ACPI: Dynamic OEM Table Load: [ 0.520641] ACPI: SSDT 0xFFFF9EEE81C92000 0005FC (v02 PmRef ApIst 00003000 INTL 20160527) [ 0.524002] ACPI: Dynamic OEM Table Load: [ 0.524008] ACPI: SSDT 0xFFFF9EEE81C6D000 000317 (v02 PmRef ApHwp 00003000 INTL 20160527) [ 0.526609] ACPI: Dynamic OEM Table Load: [ 0.526615] ACPI: SSDT 0xFFFF9EEE801BB000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20160527) [ 0.534871] ACPI: Dynamic OEM Table Load: [ 0.534879] ACPI: SSDT 0xFFFF9EEE81C6F000 00030A (v02 PmRef ApCst 00003000 INTL 20160527) [ 0.557136] ACPI: _OSC evaluated successfully for all CPUs [ 0.557812] ACPI: EC: EC started [ 0.557813] ACPI: EC: interrupt blocked [ 0.575343] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930 [ 0.575350] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions [ 0.575352] ACPI: Interpreter enabled [ 0.575426] ACPI: PM: (supports S0 S3 S4 S5) [ 0.575428] ACPI: Using IOAPIC for interrupt routing [ 0.575558] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f] [ 0.579895] PCI: ECAM [mem 0xf0000000-0xf7ffffff] reserved as ACPI motherboard resource [ 0.579912] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.579913] PCI: Ignoring E820 reservations for host bridge windows [ 0.582559] ACPI: Enabled 10 GPEs in block 00 to 7F [ 0.591977] ACPI: \_SB_.PCI0.PEG0.PG00: New power resource [ 0.607377] ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource [ 0.607619] ACPI: \_SB_.PCI0.RP01.PXSX.DRST: New power resource [ 0.629367] ACPI: \_SB_.PCI0.RP17.PXP_: New power resource [ 0.672715] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource [ 0.708326] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource [ 0.709580] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource [ 0.710816] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource [ 0.763247] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource [ 0.814788] ACPI: \PIN_: New power resource [ 0.814788] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e]) [ 0.814788] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.816430] acpi PNP0A08:00: _OSC: platform does not support [AER] [ 0.824096] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR] [ 0.828014] PCI host bridge to bus 0000:00 [ 0.828018] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.828022] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.828027] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window] [ 0.828030] pci_bus 0000:00: root bus resource [mem 0x7f800000-0xefffffff window] [ 0.828033] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window] [ 0.828036] pci_bus 0000:00: root bus resource [bus 00-7e] [ 0.828085] pci 0000:00:00.0: [8086:3ec4] type 00 class 0x060000 conventional PCI endpoint [ 0.828241] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port [ 0.828253] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.828255] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff] [ 0.828257] pci 0000:00:01.0: bridge window [mem 0xec000000-0xed0fffff] [ 0.828262] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] [ 0.828298] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold [ 0.831359] pci 0000:00:02.0: [8086:3e9b] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint [ 0.831367] pci 0000:00:02.0: BAR 0 [mem 0xeb000000-0xebffffff 64bit] [ 0.831372] pci 0000:00:02.0: BAR 2 [mem 0x80000000-0x8fffffff 64bit pref] [ 0.831375] pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f] [ 0.831400] pci 0000:00:02.0: BAR 2: assigned to efifb [ 0.831404] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 0.832225] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint [ 0.832233] pci 0000:00:04.0: BAR 0 [mem 0xed510000-0xed517fff 64bit] [ 0.833250] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint [ 0.833258] pci 0000:00:08.0: BAR 0 [mem 0xed528000-0xed528fff 64bit] [ 0.833515] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint [ 0.833550] pci 0000:00:12.0: BAR 0 [mem 0xed527000-0xed527fff 64bit] [ 0.833914] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint [ 0.833950] pci 0000:00:14.0: BAR 0 [mem 0xed500000-0xed50ffff 64bit] [ 0.834098] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.835334] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint [ 0.835364] pci 0000:00:14.2: BAR 0 [mem 0xed51e000-0xed51ffff 64bit] [ 0.835383] pci 0000:00:14.2: BAR 2 [mem 0xed526000-0xed526fff 64bit] [ 0.840054] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint [ 0.840592] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit] [ 0.844668] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint [ 0.845241] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit] [ 0.848543] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint [ 0.848575] pci 0000:00:16.0: BAR 0 [mem 0xed523000-0xed523fff 64bit] [ 0.848701] pci 0000:00:16.0: PME# supported from D3hot [ 0.850502] pci 0000:00:17.0: [8086:a353] type 00 class 0x010601 conventional PCI endpoint [ 0.850548] pci 0000:00:17.0: BAR 0 [mem 0xed51c000-0xed51dfff] [ 0.850574] pci 0000:00:17.0: BAR 1 [mem 0xed522000-0xed5220ff] [ 0.850600] pci 0000:00:17.0: BAR 2 [io 0x4090-0x4097] [ 0.850623] pci 0000:00:17.0: BAR 3 [io 0x4080-0x4083] [ 0.850648] pci 0000:00:17.0: BAR 4 [io 0x4060-0x407f] [ 0.850671] pci 0000:00:17.0: BAR 5 [mem 0xed521000-0xed5217ff] [ 0.850823] pci 0000:00:17.0: PME# supported from D3hot [ 0.852734] pci 0000:00:1b.0: [8086:a340] type 01 class 0x060400 PCIe Root Port [ 0.852791] pci 0000:00:1b.0: PCI bridge to [bus 02-3a] [ 0.852802] pci 0000:00:1b.0: bridge window [mem 0xd4000000-0xea0fffff] [ 0.852821] pci 0000:00:1b.0: bridge window [mem 0x90000000-0xb1ffffff 64bit pref] [ 0.852968] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.853018] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity [ 0.856303] pci 0000:00:1c.0: [8086:a338] type 01 class 0x060400 PCIe Root Port [ 0.856360] pci 0000:00:1c.0: PCI bridge to [bus 3b] [ 0.856372] pci 0000:00:1c.0: bridge window [mem 0xed400000-0xed4fffff] [ 0.856532] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.856579] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity [ 0.860111] pci 0000:00:1c.4: [8086:a33c] type 01 class 0x060400 PCIe Root Port [ 0.860168] pci 0000:00:1c.4: PCI bridge to [bus 3c] [ 0.860179] pci 0000:00:1c.4: bridge window [mem 0xed300000-0xed3fffff] [ 0.860331] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.860375] pci 0000:00:1c.4: PTM enabled (root), 4ns granularity [ 0.863594] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port [ 0.863651] pci 0000:00:1d.0: PCI bridge to [bus 3d] [ 0.863663] pci 0000:00:1d.0: bridge window [mem 0xed200000-0xed2fffff] [ 0.863815] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.863859] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity [ 0.867118] pci 0000:00:1f.0: [8086:a30e] type 00 class 0x060100 conventional PCI endpoint [ 0.868300] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040380 conventional PCI endpoint [ 0.868359] pci 0000:00:1f.3: BAR 0 [mem 0xed518000-0xed51bfff 64bit] [ 0.868433] pci 0000:00:1f.3: BAR 4 [mem 0xed100000-0xed1fffff 64bit] [ 0.868592] pci 0000:00:1f.3: PME# supported from D3hot D3cold [ 0.870533] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint [ 0.870713] pci 0000:00:1f.4: BAR 0 [mem 0xed520000-0xed5200ff 64bit] [ 0.870927] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf] [ 0.872114] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint [ 0.872140] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff] [ 0.872504] pci 0000:01:00.0: [10de:1f91] type 00 class 0x030200 PCIe Endpoint [ 0.872523] pci 0000:01:00.0: BAR 0 [mem 0xec000000-0xecffffff] [ 0.872538] pci 0000:01:00.0: BAR 1 [mem 0xc0000000-0xcfffffff 64bit pref] [ 0.872552] pci 0000:01:00.0: BAR 3 [mem 0xd0000000-0xd1ffffff 64bit pref] [ 0.872561] pci 0000:01:00.0: BAR 5 [io 0x3000-0x307f] [ 0.872569] pci 0000:01:00.0: ROM [mem 0xed000000-0xed07ffff pref] [ 0.872675] pci 0000:01:00.0: PME# supported from D0 D3hot [ 0.875161] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.875845] pci 0000:02:00.0: [8086:15da] type 01 class 0x060400 PCIe Switch Upstream Port [ 0.875903] pci 0000:02:00.0: PCI bridge to [bus 03-3a] [ 0.875918] pci 0000:02:00.0: bridge window [mem 0xd4000000-0xea0fffff] [ 0.875937] pci 0000:02:00.0: bridge window [mem 0x90000000-0xb1ffffff 64bit pref] [ 0.875960] pci 0000:02:00.0: enabling Extended Tags [ 0.876135] pci 0000:02:00.0: supports D1 D2 [ 0.876136] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.876775] pci 0000:00:1b.0: PCI bridge to [bus 02-3a] [ 0.876997] pci 0000:03:00.0: [8086:15da] type 01 class 0x060400 PCIe Switch Downstream Port [ 0.877054] pci 0000:03:00.0: PCI bridge to [bus 04] [ 0.877069] pci 0000:03:00.0: bridge window [mem 0xea000000-0xea0fffff] [ 0.877112] pci 0000:03:00.0: enabling Extended Tags [ 0.877292] pci 0000:03:00.0: supports D1 D2 [ 0.877293] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.877682] pci 0000:03:01.0: [8086:15da] type 01 class 0x060400 PCIe Switch Downstream Port [ 0.877739] pci 0000:03:01.0: PCI bridge to [bus 05-39] [ 0.877754] pci 0000:03:01.0: bridge window [mem 0xd4000000-0xe9efffff] [ 0.877773] pci 0000:03:01.0: bridge window [mem 0x90000000-0xb1ffffff 64bit pref] [ 0.877797] pci 0000:03:01.0: enabling Extended Tags [ 0.877985] pci 0000:03:01.0: supports D1 D2 [ 0.877986] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.878372] pci 0000:03:02.0: [8086:15da] type 01 class 0x060400 PCIe Switch Downstream Port [ 0.878428] pci 0000:03:02.0: PCI bridge to [bus 3a] [ 0.878443] pci 0000:03:02.0: bridge window [mem 0xe9f00000-0xe9ffffff] [ 0.878485] pci 0000:03:02.0: enabling Extended Tags [ 0.878659] pci 0000:03:02.0: supports D1 D2 [ 0.878660] pci 0000:03:02.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.879229] pci 0000:02:00.0: PCI bridge to [bus 03-3a] [ 0.879405] pci 0000:04:00.0: [8086:15d9] type 00 class 0x088000 PCIe Endpoint [ 0.879433] pci 0000:04:00.0: BAR 0 [mem 0xea000000-0xea03ffff] [ 0.879449] pci 0000:04:00.0: BAR 1 [mem 0xea040000-0xea040fff] [ 0.879531] pci 0000:04:00.0: enabling Extended Tags [ 0.879717] pci 0000:04:00.0: supports D1 D2 [ 0.879719] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.880135] pci 0000:03:00.0: PCI bridge to [bus 04] [ 0.880270] pci 0000:03:01.0: PCI bridge to [bus 05-39] [ 0.880489] pci 0000:3a:00.0: [8086:15db] type 00 class 0x0c0330 PCIe Endpoint [ 0.880518] pci 0000:3a:00.0: BAR 0 [mem 0xe9f00000-0xe9f0ffff] [ 0.880812] pci 0000:3a:00.0: supports D1 D2 [ 0.880813] pci 0000:3a:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.880978] pci 0000:3a:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:03:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link) [ 0.881433] pci 0000:03:02.0: PCI bridge to [bus 3a] [ 0.882896] pci 0000:3b:00.0: [8086:2723] type 00 class 0x028000 PCIe Endpoint [ 0.883317] pci 0000:3b:00.0: BAR 0 [mem 0xed400000-0xed403fff 64bit] [ 0.886071] pci 0000:3b:00.0: PME# supported from D0 D3hot D3cold [ 0.887248] pci 0000:00:1c.0: PCI bridge to [bus 3b] [ 0.887750] pci 0000:3c:00.0: [10ec:525a] type 00 class 0xff0000 PCIe Endpoint [ 0.887784] pci 0000:3c:00.0: BAR 1 [mem 0xed300000-0xed300fff] [ 0.887977] pci 0000:3c:00.0: supports D1 D2 [ 0.887978] pci 0000:3c:00.0: PME# supported from D1 D2 D3hot D3cold [ 0.888534] pci 0000:00:1c.4: PCI bridge to [bus 3c] [ 0.889034] pci 0000:3d:00.0: [8086:f1a6] type 00 class 0x010802 PCIe Endpoint [ 0.889073] pci 0000:3d:00.0: BAR 0 [mem 0xed200000-0xed203fff 64bit] [ 0.889843] pci 0000:00:1d.0: PCI bridge to [bus 3d] [ 0.908886] ACPI: PCI: Interrupt link LNKA configured for IRQ 0 [ 0.909221] ACPI: PCI: Interrupt link LNKB configured for IRQ 1 [ 0.909546] ACPI: PCI: Interrupt link LNKC configured for IRQ 0 [ 0.909868] ACPI: PCI: Interrupt link LNKD configured for IRQ 0 [ 0.910193] ACPI: PCI: Interrupt link LNKE configured for IRQ 0 [ 0.910518] ACPI: PCI: Interrupt link LNKF configured for IRQ 0 [ 0.910841] ACPI: PCI: Interrupt link LNKG configured for IRQ 0 [ 0.911162] ACPI: PCI: Interrupt link LNKH configured for IRQ 0 [ 1.033033] Low-power S0 idle used by default for system suspend [ 1.055488] ACPI: EC: interrupt unblocked [ 1.055489] ACPI: EC: event unblocked [ 1.055495] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930 [ 1.055497] ACPI: EC: GPE=0x6e [ 1.055500] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete [ 1.055504] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events [ 1.055834] iommu: Default domain type: Translated [ 1.055834] iommu: DMA domain TLB invalidation policy: lazy mode [ 1.055892] pps_core: LinuxPPS API ver. 1 registered [ 1.055893] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.055907] PTP clock support registered [ 1.055931] EDAC MC: Ver: 3.0.0 [ 1.056690] efivars: Registered efivars operations [ 1.056690] NetLabel: Initializing [ 1.056690] NetLabel: domain hash size = 128 [ 1.056690] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.056690] NetLabel: unlabeled traffic allowed by default [ 1.056690] PCI: Using ACPI for IRQ routing [ 1.086636] PCI: pci_cache_line_size set to 64 bytes [ 1.087235] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff] [ 1.087241] e820: reserve RAM buffer [mem 0x55fda018-0x57ffffff] [ 1.087244] e820: reserve RAM buffer [mem 0x5c4b4000-0x5fffffff] [ 1.087247] e820: reserve RAM buffer [mem 0x66e9d000-0x67ffffff] [ 1.087249] e820: reserve RAM buffer [mem 0x6bff9000-0x6bffffff] [ 1.087252] e820: reserve RAM buffer [mem 0x78e00000-0x7bffffff] [ 1.087254] e820: reserve RAM buffer [mem 0x87c800000-0x87fffffff] [ 1.087490] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 1.087492] pci 0000:00:02.0: vgaarb: bridge control possible [ 1.087493] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 1.087505] vgaarb: loaded [ 1.087622] clocksource: Switched to clocksource tsc-early [ 1.091315] VFS: Disk quotas dquot_6.6.0 [ 1.091359] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.092497] AppArmor: AppArmor Filesystem Enabled [ 1.092547] pnp: PnP ACPI init [ 1.092932] system 00:00: [mem 0x40000000-0x403fffff] has been reserved [ 1.093517] system 00:01: [io 0x0680-0x069f] has been reserved [ 1.093523] system 00:01: [io 0x164e-0x164f] has been reserved [ 1.094086] system 00:03: [io 0x1854-0x1857] has been reserved [ 1.095912] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved [ 1.095918] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved [ 1.095923] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved [ 1.095928] system 00:06: [mem 0xf0000000-0xf7ffffff] has been reserved [ 1.095933] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved [ 1.095938] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved [ 1.095943] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved [ 1.095948] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved [ 1.096681] system 00:07: [io 0x1800-0x18fe] could not be reserved [ 1.096688] system 00:07: [mem 0xfd000000-0xfd69ffff] has been reserved [ 1.096694] system 00:07: [mem 0xfd6c0000-0xfd6cffff] has been reserved [ 1.096699] system 00:07: [mem 0xfd6f0000-0xfdffffff] has been reserved [ 1.096704] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved [ 1.096709] system 00:07: [mem 0xfe200000-0xfe7fffff] has been reserved [ 1.096714] system 00:07: [mem 0xff000000-0xffffffff] has been reserved [ 1.097762] system 00:08: [io 0x2000-0x20fe] has been reserved [ 1.131219] pnp: PnP ACPI: found 10 devices [ 1.140771] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 1.141023] NET: Registered PF_INET protocol family [ 1.141166] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 1.153713] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 1.153745] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.153849] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 1.154106] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 1.154304] TCP: Hash tables configured (established 262144 bind 65536) [ 1.154554] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear) [ 1.154646] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 1.154711] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 1.154928] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.154947] NET: Registered PF_XDP protocol family [ 1.154958] pci 0000:03:01.0: bridge window [io 0x1000-0x0fff] to [bus 05-39] add_size 1000 [ 1.154964] pci 0000:02:00.0: bridge window [io 0x1000-0x0fff] to [bus 03-3a] add_size 1000 [ 1.154969] pci 0000:00:1b.0: bridge window [io 0x1000-0x0fff] to [bus 02-3a] add_size 2000 [ 1.154992] pci 0000:00:15.0: BAR 0 [mem 0x7f800000-0x7f800fff 64bit]: assigned [ 1.155261] pci 0000:00:15.1: BAR 0 [mem 0x7f801000-0x7f801fff 64bit]: assigned [ 1.155529] pci 0000:00:1b.0: bridge window [io 0x5000-0x6fff]: assigned [ 1.155532] pci 0000:00:01.0: PCI bridge to [bus 01] [ 1.155534] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff] [ 1.155536] pci 0000:00:01.0: bridge window [mem 0xec000000-0xed0fffff] [ 1.155538] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] [ 1.155546] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]: assigned [ 1.155552] pci 0000:03:01.0: bridge window [io 0x5000-0x5fff]: assigned [ 1.155554] pci 0000:03:00.0: PCI bridge to [bus 04] [ 1.155565] pci 0000:03:00.0: bridge window [mem 0xea000000-0xea0fffff] [ 1.155578] pci 0000:03:01.0: PCI bridge to [bus 05-39] [ 1.155581] pci 0000:03:01.0: bridge window [io 0x5000-0x5fff] [ 1.155588] pci 0000:03:01.0: bridge window [mem 0xd4000000-0xe9efffff] [ 1.155593] pci 0000:03:01.0: bridge window [mem 0x90000000-0xb1ffffff 64bit pref] [ 1.155602] pci 0000:03:02.0: PCI bridge to [bus 3a] [ 1.155609] pci 0000:03:02.0: bridge window [mem 0xe9f00000-0xe9ffffff] [ 1.155622] pci 0000:02:00.0: PCI bridge to [bus 03-3a] [ 1.155625] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff] [ 1.155632] pci 0000:02:00.0: bridge window [mem 0xd4000000-0xea0fffff] [ 1.155638] pci 0000:02:00.0: bridge window [mem 0x90000000-0xb1ffffff 64bit pref] [ 1.155646] pci 0000:00:1b.0: PCI bridge to [bus 02-3a] [ 1.155649] pci 0000:00:1b.0: bridge window [io 0x5000-0x6fff] [ 1.155656] pci 0000:00:1b.0: bridge window [mem 0xd4000000-0xea0fffff] [ 1.155661] pci 0000:00:1b.0: bridge window [mem 0x90000000-0xb1ffffff 64bit pref] [ 1.155671] pci 0000:00:1c.0: PCI bridge to [bus 3b] [ 1.155680] pci 0000:00:1c.0: bridge window [mem 0xed400000-0xed4fffff] [ 1.155693] pci 0000:00:1c.4: PCI bridge to [bus 3c] [ 1.155699] pci 0000:00:1c.4: bridge window [mem 0xed300000-0xed3fffff] [ 1.155713] pci 0000:00:1d.0: PCI bridge to [bus 3d] [ 1.155721] pci 0000:00:1d.0: bridge window [mem 0xed200000-0xed2fffff] [ 1.155735] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 1.155736] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 1.155737] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window] [ 1.155739] pci_bus 0000:00: resource 7 [mem 0x7f800000-0xefffffff window] [ 1.155740] pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window] [ 1.155741] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff] [ 1.155742] pci_bus 0000:01: resource 1 [mem 0xec000000-0xed0fffff] [ 1.155743] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref] [ 1.155745] pci_bus 0000:02: resource 0 [io 0x5000-0x6fff] [ 1.155746] pci_bus 0000:02: resource 1 [mem 0xd4000000-0xea0fffff] [ 1.155747] pci_bus 0000:02: resource 2 [mem 0x90000000-0xb1ffffff 64bit pref] [ 1.155748] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff] [ 1.155749] pci_bus 0000:03: resource 1 [mem 0xd4000000-0xea0fffff] [ 1.155751] pci_bus 0000:03: resource 2 [mem 0x90000000-0xb1ffffff 64bit pref] [ 1.155752] pci_bus 0000:04: resource 1 [mem 0xea000000-0xea0fffff] [ 1.155753] pci_bus 0000:05: resource 0 [io 0x5000-0x5fff] [ 1.155754] pci_bus 0000:05: resource 1 [mem 0xd4000000-0xe9efffff] [ 1.155755] pci_bus 0000:05: resource 2 [mem 0x90000000-0xb1ffffff 64bit pref] [ 1.155757] pci_bus 0000:3a: resource 1 [mem 0xe9f00000-0xe9ffffff] [ 1.155758] pci_bus 0000:3b: resource 1 [mem 0xed400000-0xed4fffff] [ 1.155759] pci_bus 0000:3c: resource 1 [mem 0xed300000-0xed3fffff] [ 1.155760] pci_bus 0000:3d: resource 1 [mem 0xed200000-0xed2fffff] [ 1.157673] pci 0000:02:00.0: CLS mismatch (64 != 128), using 64 bytes [ 1.158281] pci 0000:02:00.0: enabling device (0006 -> 0007) [ 1.158968] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 1.158969] software IO TLB: mapped [mem 0x0000000062e9d000-0x0000000066e9d000] (64MB) [ 1.159040] sgx: EPC section 0x70200000-0x75f7ffff [ 1.159068] Unpacking initramfs... [ 1.161239] Initialise system trusted keyrings [ 1.161258] Key type blacklist registered [ 1.161340] workingset: timestamp_bits=36 max_order=23 bucket_order=0 [ 1.161362] zbud: loaded [ 1.161851] alg: self-tests disabled [ 1.174178] Key type asymmetric registered [ 1.174182] Asymmetric key parser 'x509' registered [ 1.208267] Freeing initrd memory: 30400K [ 1.213335] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 1.213419] io scheduler mq-deadline registered [ 1.219875] pcieport 0000:00:01.0: PME: Signaling with IRQ 122 [ 1.220214] pcieport 0000:00:1b.0: PME: Signaling with IRQ 123 [ 1.220300] pcieport 0000:00:1b.0: pciehp: Slot #20 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ [ 1.221341] pcieport 0000:00:1c.0: PME: Signaling with IRQ 124 [ 1.222274] pcieport 0000:00:1c.4: PME: Signaling with IRQ 125 [ 1.223188] pcieport 0000:00:1d.0: PME: Signaling with IRQ 126 [ 1.223989] pcieport 0000:03:01.0: enabling device (0006 -> 0007) [ 1.224407] pcieport 0000:03:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ [ 1.225141] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 1.239390] thermal LNXTHERM:00: registered as thermal_zone0 [ 1.239392] ACPI: thermal: Thermal Zone [THM] (25 C) [ 1.239724] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 1.241642] hpet_acpi_add: no address or irqs in _CRS [ 1.241668] Linux agpgart interface v0.103 [ 1.269649] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFC, rev-id 1) [ 1.302565] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 [ 1.311607] i8042: Warning: Keylock active [ 1.313488] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.313495] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.313879] mousedev: PS/2 mouse device common for all mice [ 1.313928] rtc_cmos 00:02: RTC can wake from S4 [ 1.315794] rtc_cmos 00:02: registered as rtc0 [ 1.316107] rtc_cmos 00:02: setting system clock to 2024-03-01T14:41:15 UTC (1709304075) [ 1.316178] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram [ 1.316964] intel_pstate: Intel P-state driver initializing [ 1.318652] intel_pstate: Disabling energy efficiency optimization [ 1.318653] intel_pstate: HWP enabled [ 1.318723] ledtrig-cpu: registered to indicate activity on CPUs [ 1.318883] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 1.320811] efifb: probing for efifb [ 1.320835] efifb: framebuffer at 0x80000000, using 32400k, total 32400k [ 1.320837] efifb: mode is 3840x2160x32, linelength=15360, pages=1 [ 1.320838] efifb: scrolling: redraw [ 1.320839] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 1.321136] Console: switching to colour frame buffer device 240x67 [ 1.325950] fb0: EFI VGA frame buffer device [ 1.326309] NET: Registered PF_INET6 protocol family [ 1.332612] Segment Routing with IPv6 [ 1.332633] In-situ OAM (IOAM) with IPv6 [ 1.332671] mip6: Mobile IPv6 [ 1.332682] NET: Registered PF_PACKET protocol family [ 1.332860] mpls_gso: MPLS GSO support [ 1.335081] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 1.335596] microcode: Current revision: 0x000000f4 [ 1.336257] IPI shorthand broadcast: enabled [ 1.341426] sched_clock: Marking stable (1324001860, 13449928)->(1382730335, -45278547) [ 1.341853] registered taskstats version 1 [ 1.342551] Loading compiled-in X.509 certificates [ 1.348129] Loaded X.509 cert 'Build time autogenerated kernel key: e3243bb5ca68fc73af01c3d9789cd4544b335445' [ 1.357094] kmemleak: Kernel memory leak detector initialized (mem pool available: 15668) [ 1.357137] kmemleak: Automatic memory scanning thread started [ 1.357381] Key type .fscrypt registered [ 1.357382] Key type fscrypt-provisioning registered [ 1.364920] cryptd: module verification failed: signature and/or required key missing - tainting kernel [ 1.365824] cryptd: max_cpu_qlen set to 1000 [ 1.370698] AVX2 version of gcm_enc/dec engaged. [ 1.370968] AES CTR mode by8 optimization enabled [ 1.397334] Key type encrypted registered [ 1.397342] AppArmor: AppArmor sha256 policy hashing enabled [ 1.401796] RAS: Correctable Errors collector initialized. [ 1.401915] clk: Disabling unused clocks [ 1.404821] Freeing unused decrypted memory: 2036K [ 1.405332] Freeing unused kernel image (initmem) memory: 3956K [ 1.441868] Write protecting the kernel read-only data: 24576k [ 1.442952] Freeing unused kernel image (rodata/data gap) memory: 44K [ 1.515316] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 1.515318] x86/mm: Checking user space page tables [ 1.551912] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 1.551953] Run /init as init process [ 1.551954] with arguments: [ 1.551955] /init [ 1.551956] with environment: [ 1.551957] HOME=/ [ 1.551957] TERM=linux [ 1.551958] BOOT_IMAGE=/vmlinuz-6.8.0-rc6+ [ 1.561369] systemd[1]: Inserted module 'autofs4' [ 1.759567] systemd[1]: systemd 255.4-1 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) [ 1.759574] systemd[1]: Detected architecture x86-64. [ 1.759577] systemd[1]: Running in initrd. [ 1.759899] systemd[1]: No hostname configured, using default hostname. [ 1.760012] systemd[1]: Hostname set to <localhost>. [ 1.760105] systemd[1]: Initializing machine ID from random generator. [ 1.807650] systemd-hibernate-resume-generator[229]: Reported hibernation image: ID=debian kernel=6.8.0-rc2+ UUID=fa9c13bb-d49c-464f-8922-db493a3fc0ad offset=0 [ 1.869070] systemd[1]: Queued start job for default target initrd.target. [ 1.922106] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch. [ 1.922360] systemd[1]: Expecting device dev-disk-by\x2duuid-9fa41e21\x2d7a5f\x2d479e\x2dafdc\x2d9a5503368d8e.device - /dev/disk/by-uuid/9fa41e21-7a5f-479e-afdc-9a5503368d8e... [ 1.922408] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes. [ 1.922488] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System. [ 1.922541] systemd[1]: Reached target paths.target - Path Units. [ 1.922602] systemd[1]: Reached target slices.target - Slice Units. [ 1.922654] systemd[1]: Reached target swap.target - Swaps. [ 1.922698] systemd[1]: Reached target timers.target - Timer Units. [ 1.923708] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log). [ 1.924594] systemd[1]: Listening on systemd-journald.socket - Journal Socket. [ 1.925546] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. [ 1.926243] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. [ 1.926305] systemd[1]: Reached target sockets.target - Socket Units. [ 1.926589] systemd[1]: dracut-cmdline-ask.service - dracut ask for additional cmdline parameters was skipped because no trigger condition checks were met. [ 1.934363] systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook... [ 1.940073] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... [ 1.950822] systemd[1]: Starting systemd-journald.service - Journal Service... [ 1.954917] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... [ 1.963220] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. [ 1.966595] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully... [ 1.982199] systemd-journald[261]: Collecting audit messages is disabled. [ 1.987797] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully. [ 1.989543] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... [ 1.991510] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. [ 1.993175] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... [ 2.008336] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev. [ 2.008538] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems. [ 2.008556] systemd[1]: Reached target local-fs.target - Local File Systems. [ 2.010578] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables. [ 2.047633] systemd[1]: Started systemd-journald.service - Journal Service. [ 2.181681] tsc: Refined TSC clocksource calibration: 2592.000 MHz [ 2.181687] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x255cb6cc5db, max_idle_ns: 440795203504 ns [ 2.181742] clocksource: Switched to clocksource tsc [ 2.187906] device-mapper: uevent: version 1.0.3 [ 2.188234] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com [ 2.582659] rtsx_pci 0000:3c:00.0: enabling device (0000 -> 0002) [ 2.607048] ACPI: bus type USB registered [ 2.607272] usbcore: registered new interface driver usbfs [ 2.607368] usbcore: registered new interface driver hub [ 2.607503] usbcore: registered new device driver usb [ 2.626683] ACPI: bus type drm_connector registered [ 2.631002] SCSI subsystem initialized [ 2.640201] hid: raw HID events driver (C) Jiri Kosina [ 2.662806] libata version 3.00 loaded. [ 2.664746] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.664790] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.666093] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810 [ 2.666105] xhci_hcd 0000:00:14.0: supports USB remote wakeup [ 2.668640] nvme nvme0: pci function 0000:3d:00.0 [ 2.670219] ahci 0000:00:17.0: version 3.0 [ 2.671288] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.671303] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.671312] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed [ 2.671313] xhci_hcd 0000:00:14.0: supports USB remote wakeup [ 2.671469] usb usb1: default language 0x0409 [ 2.671528] usb usb1: udev 1, busnum 1, minor = 0 [ 2.671530] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08 [ 2.671533] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.671534] usb usb1: Product: xHCI Host Controller [ 2.671536] usb usb1: Manufacturer: Linux 6.8.0-rc6+ xhci-hcd [ 2.671537] usb usb1: SerialNumber: 0000:00:14.0 [ 2.671552] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x4 impl SATA mode [ 2.671556] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst [ 2.672324] usb usb1: usb_probe_device [ 2.672327] usb usb1: configuration #1 chosen from 1 choice [ 2.672359] usb usb1: adding 1-0:1.0 (config #1, interface 0) [ 2.675114] hub 1-0:1.0: usb_probe_interface [ 2.675117] hub 1-0:1.0: usb_probe_interface - got id [ 2.675119] hub 1-0:1.0: USB hub found [ 2.675204] hub 1-0:1.0: 16 ports detected [ 2.675209] hub 1-0:1.0: standalone hub [ 2.675210] hub 1-0:1.0: no power switching (usb 1.0) [ 2.675211] hub 1-0:1.0: individual port over-current protection [ 2.675212] hub 1-0:1.0: Single TT [ 2.675213] hub 1-0:1.0: TT requires at most 8 FS bit times (666 ns) [ 2.675215] hub 1-0:1.0: power on to power good time: 20ms [ 2.675247] hub 1-0:1.0: local power source is good [ 2.676322] scsi host0: ahci [ 2.677343] scsi host1: ahci [ 2.678402] scsi host2: ahci [ 2.678968] ata1: DUMMY [ 2.678969] ata2: DUMMY [ 2.678975] ata3: SATA max UDMA/133 abar m2048@0xed521000 port 0xed521200 irq 140 lpm-pol 0 [ 2.683534] nvme nvme0: 12/0/0 default/read/poll queues [ 2.691217] nvme0n1: p1 p2 p3 p4 [ 2.725897] usb usb1-port4: DeviceRemovable is changed to 1 according to platform information. [ 2.725900] usb usb1-port7: DeviceRemovable is changed to 1 according to platform information. [ 2.725901] usb usb1-port9: DeviceRemovable is changed to 1 according to platform information. [ 2.725902] usb usb1-port12: DeviceRemovable is changed to 1 according to platform information. [ 2.725904] hub 1-0:1.0: trying to enable port power on non-switchable hub [ 2.726782] usb usb2: skipped 1 descriptor after endpoint [ 2.726803] usb usb2: default language 0x0409 [ 2.726857] usb usb2: udev 1, busnum 2, minor = 128 [ 2.726859] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08 [ 2.726861] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.726863] usb usb2: Product: xHCI Host Controller [ 2.726864] usb usb2: Manufacturer: Linux 6.8.0-rc6+ xhci-hcd [ 2.726865] usb usb2: SerialNumber: 0000:00:14.0 [ 2.727525] usb usb2: usb_probe_device [ 2.727528] usb usb2: configuration #1 chosen from 1 choice [ 2.727590] usb usb2: adding 2-0:1.0 (config #1, interface 0) [ 2.729159] hub 2-0:1.0: usb_probe_interface [ 2.729161] hub 2-0:1.0: usb_probe_interface - got id [ 2.729163] hub 2-0:1.0: USB hub found [ 2.729234] hub 2-0:1.0: 10 ports detected [ 2.729238] hub 2-0:1.0: standalone hub [ 2.729239] hub 2-0:1.0: no power switching (usb 1.0) [ 2.729240] hub 2-0:1.0: individual port over-current protection [ 2.729241] hub 2-0:1.0: TT requires at most 8 FS bit times (666 ns) [ 2.729242] hub 2-0:1.0: power on to power good time: 100ms [ 2.729273] hub 2-0:1.0: local power source is good [ 2.733013] usb usb2-port1: peered to usb1-port1 [ 2.736720] usb usb2-port2: peered to usb1-port2 [ 2.753524] usb usb1-port1: status 0301 change 0001 [ 2.753559] usb usb1-port2: status 0301 change 0001 [ 2.753612] usb usb1-port4: status 0101 change 0001 [ 2.753634] usb usb1-port5: status 0101 change 0001 [ 2.753665] usb usb1-port7: status 0101 change 0001 [ 2.753724] usb usb1-port12: status 0101 change 0001 [ 2.762424] usb usb2: port-1 no _DSM function 5 [ 2.762446] usb usb2: port-2 no _DSM function 5 [ 2.762466] usb usb2: port-3 no _DSM function 5 [ 2.762486] usb usb2: port-4 no _DSM function 5 [ 2.762505] usb usb2: port-5 no _DSM function 5 [ 2.762526] usb usb2: port-6 no _DSM function 5 [ 2.762545] usb usb2: port-7 no _DSM function 5 [ 2.762565] usb usb2: port-8 no _DSM function 5 [ 2.762584] usb usb2: port-9 no _DSM function 5 [ 2.762605] usb usb2: port-10 no _DSM function 5 [ 2.762606] hub 2-0:1.0: trying to enable port power on non-switchable hub [ 2.763504] xhci_hcd 0000:3a:00.0: xHCI Host Controller [ 2.763523] xhci_hcd 0000:3a:00.0: new USB bus registered, assigned bus number 3 [ 2.764805] xhci_hcd 0000:3a:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810 [ 2.764813] xhci_hcd 0000:3a:00.0: supports USB remote wakeup [ 2.766208] xhci_hcd 0000:3a:00.0: xHCI Host Controller [ 2.766221] xhci_hcd 0000:3a:00.0: new USB bus registered, assigned bus number 4 [ 2.766228] xhci_hcd 0000:3a:00.0: Host supports USB 3.1 Enhanced SuperSpeed [ 2.766230] xhci_hcd 0000:3a:00.0: supports USB remote wakeup [ 2.766320] usb usb3: default language 0x0409 [ 2.766386] usb usb3: udev 1, busnum 3, minor = 256 [ 2.766388] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08 [ 2.766390] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.766391] usb usb3: Product: xHCI Host Controller [ 2.766411] usb usb3: Manufacturer: Linux 6.8.0-rc6+ xhci-hcd [ 2.766412] usb usb3: SerialNumber: 0000:3a:00.0 [ 2.766931] usb usb3: usb_probe_device [ 2.766934] usb usb3: configuration #1 chosen from 1 choice [ 2.766962] usb usb3: adding 3-0:1.0 (config #1, interface 0) [ 2.767115] hub 3-0:1.0: usb_probe_interface [ 2.767116] hub 3-0:1.0: usb_probe_interface - got id [ 2.767118] hub 3-0:1.0: USB hub found [ 2.767153] hub 3-0:1.0: 2 ports detected [ 2.767157] hub 3-0:1.0: standalone hub [ 2.767158] hub 3-0:1.0: no power switching (usb 1.0) [ 2.767159] hub 3-0:1.0: individual port over-current protection [ 2.767160] hub 3-0:1.0: Single TT [ 2.767161] hub 3-0:1.0: TT requires at most 8 FS bit times (666 ns) [ 2.767163] hub 3-0:1.0: power on to power good time: 20ms [ 2.767187] hub 3-0:1.0: local power source is good [ 2.775615] usb usb3-port1: DeviceRemovable is changed to 1 according to platform information. [ 2.775617] usb usb3-port2: DeviceRemovable is changed to 1 according to platform information. [ 2.775618] hub 3-0:1.0: trying to enable port power on non-switchable hub [ 2.776041] usb usb4: skipped 1 descriptor after endpoint [ 2.776078] usb usb4: default language 0x0409 [ 2.776134] usb usb4: udev 1, busnum 4, minor = 384 [ 2.776136] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08 [ 2.776138] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.776139] usb usb4: Product: xHCI Host Controller [ 2.776140] usb usb4: Manufacturer: Linux 6.8.0-rc6+ xhci-hcd [ 2.776142] usb usb4: SerialNumber: 0000:3a:00.0 [ 2.776654] usb usb4: usb_probe_device [ 2.776656] usb usb4: configuration #1 chosen from 1 choice [ 2.776697] usb usb4: adding 4-0:1.0 (config #1, interface 0) [ 2.776841] hub 4-0:1.0: usb_probe_interface [ 2.776843] hub 4-0:1.0: usb_probe_interface - got id [ 2.776845] hub 4-0:1.0: USB hub found [ 2.776875] hub 4-0:1.0: 2 ports detected [ 2.776879] hub 4-0:1.0: standalone hub [ 2.776880] hub 4-0:1.0: no power switching (usb 1.0) [ 2.776881] hub 4-0:1.0: individual port over-current protection [ 2.776882] hub 4-0:1.0: TT requires at most 8 FS bit times (666 ns) [ 2.776884] hub 4-0:1.0: power on to power good time: 100ms [ 2.776922] hub 4-0:1.0: local power source is good [ 2.784258] usb usb4-port2: peered to usb3-port1 [ 2.784288] usb usb4: port-1 no _DSM function 5 [ 2.784308] usb usb4: port-2 no _DSM function 5 [ 2.784309] usb usb4-port2: DeviceRemovable is changed to 1 according to platform information. [ 2.784311] hub 4-0:1.0: trying to enable port power on non-switchable hub [ 2.797952] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.797957] hub 3-0:1.0: hub_suspend [ 2.797960] usb usb3: bus auto-suspend, wakeup 1 [ 2.797975] usb usb3: suspend raced with wakeup event [ 2.797976] usb usb3: usb auto-resume [ 2.813704] hub 3-0:1.0: hub_resume [ 2.813874] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.813877] hub 3-0:1.0: hub_suspend [ 2.813881] usb usb3: bus auto-suspend, wakeup 1 [ 2.813896] usb usb3: suspend raced with wakeup event [ 2.813897] usb usb3: usb auto-resume [ 2.829541] hub 3-0:1.0: hub_resume [ 2.829637] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.829642] hub 3-0:1.0: hub_suspend [ 2.829646] usb usb3: bus auto-suspend, wakeup 1 [ 2.829668] usb usb3: suspend raced with wakeup event [ 2.829669] usb usb3: usb auto-resume [ 2.845534] hub 3-0:1.0: hub_resume [ 2.845625] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.845628] hub 3-0:1.0: hub_suspend [ 2.845632] usb usb3: bus auto-suspend, wakeup 1 [ 2.845650] usb usb3: suspend raced with wakeup event [ 2.845651] usb usb3: usb auto-resume [ 2.857606] hub 1-0:1.0: state 7 ports 16 chg 10b6 evt 0000 [ 2.857647] usb usb1-port1: status 0301, change 0000, 1.5 Mb/s [ 2.861579] hub 3-0:1.0: hub_resume [ 2.861648] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.861651] hub 3-0:1.0: hub_suspend [ 2.861655] usb usb3: bus auto-suspend, wakeup 1 [ 2.861677] usb usb3: suspend raced with wakeup event [ 2.861678] usb usb3: usb auto-resume [ 2.877521] hub 3-0:1.0: hub_resume [ 2.877577] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.877582] hub 3-0:1.0: hub_suspend [ 2.877586] usb usb3: bus auto-suspend, wakeup 1 [ 2.877620] usb usb3: suspend raced with wakeup event [ 2.877621] usb usb3: usb auto-resume [ 2.885529] usb usb4-port1: status 0203 change 0011 [ 2.893518] hub 3-0:1.0: hub_resume [ 2.893587] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.893591] hub 3-0:1.0: hub_suspend [ 2.893607] usb usb3: bus auto-suspend, wakeup 1 [ 2.893622] usb usb3: suspend raced with wakeup event [ 2.893623] usb usb3: usb auto-resume [ 2.909836] hub 3-0:1.0: hub_resume [ 2.909937] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.909942] hub 3-0:1.0: hub_suspend [ 2.909946] usb usb3: bus auto-suspend, wakeup 1 [ 2.909962] usb usb3: suspend raced with wakeup event [ 2.909963] usb usb3: usb auto-resume [ 2.925527] hub 3-0:1.0: hub_resume [ 2.925588] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.925593] hub 3-0:1.0: hub_suspend [ 2.925598] usb usb3: bus auto-suspend, wakeup 1 [ 2.925614] usb usb3: suspend raced with wakeup event [ 2.925615] usb usb3: usb auto-resume [ 2.941549] hub 3-0:1.0: hub_resume [ 2.941616] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.941621] hub 3-0:1.0: hub_suspend [ 2.941626] usb usb3: bus auto-suspend, wakeup 1 [ 2.941643] usb usb3: suspend raced with wakeup event [ 2.941645] usb usb3: usb auto-resume [ 2.957523] hub 3-0:1.0: hub_resume [ 2.957593] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.957597] hub 3-0:1.0: hub_suspend [ 2.957602] usb usb3: bus auto-suspend, wakeup 1 [ 2.957636] usb usb3: suspend raced with wakeup event [ 2.957637] usb usb3: usb auto-resume [ 2.969505] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 2.969852] hub 2-0:1.0: hub_suspend [ 2.969855] usb usb2: bus auto-suspend, wakeup 1 [ 2.969915] usb usb2: suspend raced with wakeup event [ 2.969916] usb usb2: usb auto-resume [ 2.973522] hub 3-0:1.0: hub_resume [ 2.973601] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.973605] hub 3-0:1.0: hub_suspend [ 2.973609] usb usb3: bus auto-suspend, wakeup 1 [ 2.973624] usb usb3: suspend raced with wakeup event [ 2.973625] usb usb3: usb auto-resume [ 2.985514] usb 1-1: new low-speed USB device number 2 using xhci_hcd [ 2.985533] hub 2-0:1.0: hub_resume [ 2.989554] hub 3-0:1.0: hub_resume [ 2.989633] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 2.989652] hub 4-0:1.0: state 7 ports 2 chg 0002 evt 0000 [ 2.989708] hub 3-0:1.0: hub_suspend [ 2.989714] usb usb3: bus auto-suspend, wakeup 1 [ 2.989729] usb usb3: suspend raced with wakeup event [ 2.989730] usb usb3: usb auto-resume [ 2.989734] usb usb4-port1: status 0203, change 0000, 10.0 Gb/s [ 2.994040] ata3: SATA link down (SStatus 4 SControl 300) [ 3.005532] hub 3-0:1.0: hub_resume [ 3.005609] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.005612] hub 3-0:1.0: hub_suspend [ 3.005616] usb usb3: bus auto-suspend, wakeup 1 [ 3.005640] usb usb3: suspend raced with wakeup event [ 3.005641] usb usb3: usb auto-resume [ 3.013682] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 3.013908] hub 2-0:1.0: hub_suspend [ 3.013912] usb usb2: bus auto-suspend, wakeup 1 [ 3.013953] usb usb2: suspend raced with wakeup event [ 3.013954] usb usb2: usb auto-resume [ 3.021594] hub 3-0:1.0: hub_resume [ 3.021683] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.021692] hub 3-0:1.0: hub_suspend [ 3.021702] usb usb3: bus auto-suspend, wakeup 1 [ 3.021725] usb usb3: suspend raced with wakeup event [ 3.021728] usb usb3: usb auto-resume [ 3.033496] hub 2-0:1.0: hub_resume [ 3.037534] hub 3-0:1.0: hub_resume [ 3.037624] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.037633] hub 3-0:1.0: hub_suspend [ 3.037642] usb usb3: bus auto-suspend, wakeup 1 [ 3.037659] usb usb3: suspend raced with wakeup event [ 3.037661] usb usb3: usb auto-resume [ 3.053578] hub 3-0:1.0: hub_resume [ 3.053696] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.053705] hub 3-0:1.0: hub_suspend [ 3.053714] usb usb3: bus auto-suspend, wakeup 1 [ 3.053731] usb usb3: suspend raced with wakeup event [ 3.053733] usb usb3: usb auto-resume [ 3.061753] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 3.062024] hub 2-0:1.0: hub_suspend [ 3.062031] usb usb2: bus auto-suspend, wakeup 1 [ 3.062078] usb usb2: suspend raced with wakeup event [ 3.062080] usb usb2: usb auto-resume [ 3.069535] hub 3-0:1.0: hub_resume [ 3.069597] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.069603] hub 3-0:1.0: hub_suspend [ 3.069608] usb usb3: bus auto-suspend, wakeup 1 [ 3.069625] usb usb3: suspend raced with wakeup event [ 3.069626] usb usb3: usb auto-resume [ 3.077546] hub 2-0:1.0: hub_resume [ 3.089513] hub 3-0:1.0: hub_resume [ 3.089589] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.089594] hub 3-0:1.0: hub_suspend [ 3.089598] usb usb3: bus auto-suspend, wakeup 1 [ 3.089627] usb usb3: suspend raced with wakeup event [ 3.089629] usb usb3: usb auto-resume [ 3.105513] hub 3-0:1.0: hub_resume [ 3.105777] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.105782] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 3.105786] hub 3-0:1.0: hub_suspend [ 3.105790] usb usb3: bus auto-suspend, wakeup 1 [ 3.105806] usb usb3: suspend raced with wakeup event [ 3.105807] usb usb3: usb auto-resume [ 3.106061] hub 2-0:1.0: hub_suspend [ 3.106065] usb usb2: bus auto-suspend, wakeup 1 [ 3.106113] usb usb2: suspend raced with wakeup event [ 3.106114] usb usb2: usb auto-resume [ 3.117840] usb 4-1: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd [ 3.121551] hub 3-0:1.0: hub_resume [ 3.121647] hub 2-0:1.0: hub_resume [ 3.121674] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.121678] hub 3-0:1.0: hub_suspend [ 3.121682] usb usb3: bus auto-suspend, wakeup 1 [ 3.121696] usb usb3: suspend raced with wakeup event [ 3.121698] usb usb3: usb auto-resume [ 3.137521] hub 3-0:1.0: hub_resume [ 3.137626] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.137631] hub 3-0:1.0: hub_suspend [ 3.137635] usb usb3: bus auto-suspend, wakeup 1 [ 3.137663] usb usb3: suspend raced with wakeup event [ 3.137664] usb usb3: usb auto-resume [ 3.138090] usb 1-1: skipped 1 descriptor after interface [ 3.138097] usb 1-1: skipped 1 descriptor after interface [ 3.138700] usb 1-1: default language 0x0409 [ 3.140806] usb 4-1: skipped 1 descriptor after endpoint [ 3.141076] usb 4-1: default language 0x0409 [ 3.141417] usb 1-1: udev 2, busnum 1, minor = 1 [ 3.141420] usb 1-1: New USB device found, idVendor=0bf8, idProduct=101e, bcdDevice= 1.09 [ 3.141422] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.141423] usb 1-1: Product: Fujitsu Keyboard [ 3.141424] usb 1-1: Manufacturer: Fujitsu [ 3.141838] usb 4-1: udev 2, busnum 4, minor = 385 [ 3.141841] usb 4-1: New USB device found, idVendor=2109, idProduct=0820, bcdDevice=30.03 [ 3.141843] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.141844] usb 4-1: Product: USB3.1 Hub [ 3.141846] usb 4-1: Manufacturer: VIA Labs, Inc. [ 3.144813] usb 1-1: usb_probe_device [ 3.144813] usb 4-1: usb_probe_device [ 3.144815] usb 1-1: configuration #1 chosen from 1 choice [ 3.144815] usb 4-1: configuration #1 chosen from 1 choice [ 3.146510] usb 1-1: adding 1-1:1.0 (config #1, interface 0) [ 3.146875] usb 4-1: adding 4-1:1.0 (config #1, interface 0) [ 3.148919] hub 4-1:1.0: usb_probe_interface [ 3.148921] hub 4-1:1.0: usb_probe_interface - got id [ 3.148924] hub 4-1:1.0: USB hub found [ 3.148997] usb 1-1: adding 1-1:1.1 (config #1, interface 1) [ 3.149090] hub 4-1:1.0: 4 ports detected [ 3.149095] hub 4-1:1.0: standalone hub [ 3.149096] hub 4-1:1.0: individual port power switching [ 3.149097] hub 4-1:1.0: individual port over-current protection [ 3.149098] hub 4-1:1.0: TT requires at most 8 FS bit times (666 ns) [ 3.149099] hub 4-1:1.0: power on to power good time: 350ms [ 3.149704] hub 4-1:1.0: local power source is good [ 3.153261] usb usb1-port2: status 0301, change 0000, 1.5 Mb/s [ 3.153614] hub 3-0:1.0: hub_resume [ 3.153738] hub 4-1:1.0: enabling power on all ports [ 3.153812] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.153815] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 3.153817] hub 3-0:1.0: hub_suspend [ 3.153820] usb usb3: bus auto-suspend, wakeup 1 [ 3.153836] usb usb3: suspend raced with wakeup event [ 3.153837] usb usb3: usb auto-resume [ 3.154105] hub 2-0:1.0: hub_suspend [ 3.154108] usb usb2: bus auto-suspend, wakeup 1 [ 3.154149] usb usb2: suspend raced with wakeup event [ 3.154149] usb usb2: usb auto-resume [ 3.155131] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.169527] hub 2-0:1.0: hub_resume [ 3.169563] hub 3-0:1.0: hub_resume [ 3.169623] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.169627] hub 3-0:1.0: hub_suspend [ 3.169630] usb usb3: bus auto-suspend, wakeup 1 [ 3.169646] usb usb3: suspend raced with wakeup event [ 3.169647] usb usb3: usb auto-resume [ 3.185588] hub 3-0:1.0: hub_resume [ 3.185647] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.185651] hub 3-0:1.0: hub_suspend [ 3.185654] usb usb3: bus auto-suspend, wakeup 1 [ 3.185667] usb usb3: suspend raced with wakeup event [ 3.185668] usb usb3: usb auto-resume [ 3.197826] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 3.197998] hub 2-0:1.0: hub_suspend [ 3.198002] usb usb2: bus auto-suspend, wakeup 1 [ 3.202413] hub 3-0:1.0: hub_resume [ 3.202453] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.202457] hub 3-0:1.0: hub_suspend [ 3.202460] usb usb3: bus auto-suspend, wakeup 1 [ 3.202474] usb usb3: suspend raced with wakeup event [ 3.202476] usb usb3: usb auto-resume [ 3.206139] hub 4-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.217534] hub 3-0:1.0: hub_resume [ 3.217588] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.217607] hub 3-0:1.0: hub_suspend [ 3.217625] usb usb3: bus auto-suspend, wakeup 1 [ 3.217640] usb usb3: suspend raced with wakeup event [ 3.217641] usb usb3: usb auto-resume [ 3.233565] hub 3-0:1.0: hub_resume [ 3.233717] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.233721] hub 3-0:1.0: hub_suspend [ 3.233724] usb usb3: bus auto-suspend, wakeup 1 [ 3.233740] usb usb3: suspend raced with wakeup event [ 3.233741] usb usb3: usb auto-resume [ 3.253510] hub 3-0:1.0: hub_resume [ 3.253559] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.253563] hub 3-0:1.0: hub_suspend [ 3.253580] usb usb3: bus auto-suspend, wakeup 1 [ 3.253595] usb usb3: suspend raced with wakeup event [ 3.253596] usb usb3: usb auto-resume [ 3.269514] hub 3-0:1.0: hub_resume [ 3.269577] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 3.269581] hub 3-0:1.0: hub_suspend [ 3.269598] usb usb3: bus auto-suspend, wakeup 1 [ 3.277517] usb 1-2: new low-speed USB device number 3 using xhci_hcd [ 3.427504] usb 1-2: skipped 1 descriptor after interface [ 3.427842] usb 1-2: default language 0x0409 [ 3.429333] usb 1-2: udev 3, busnum 1, minor = 2 [ 3.429335] usb 1-2: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00 [ 3.429337] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.429339] usb 1-2: Product: USB Optical Mouse [ 3.429342] usb 1-2: Manufacturer: Logitech [ 3.430683] usb 1-2: usb_probe_device [ 3.430685] usb 1-2: configuration #1 chosen from 1 choice [ 3.431706] usb 1-2: adding 1-2:1.0 (config #1, interface 0) [ 3.434105] usb usb1-port4: status 0101, change 0000, 12 Mb/s [ 3.526249] usb 4-1-port2: status 0203 change 0011 [ 3.561519] usb 1-4: new full-speed USB device number 4 using xhci_hcd [ 3.629543] hub 4-1:1.0: state 7 ports 4 chg 0004 evt 0000 [ 3.629983] usb 4-1-port2: status 0203, change 0000, 10.0 Gb/s [ 3.709681] usb 4-1.2: new SuperSpeed USB device number 3 using xhci_hcd [ 3.711260] usb 1-4: udev 4, busnum 1, minor = 3 [ 3.711262] usb 1-4: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01 [ 3.711264] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 3.712477] usb 1-4: usb_probe_device [ 3.712479] usb 1-4: configuration #1 chosen from 1 choice [ 3.714759] usb 1-4: adding 1-4:1.0 (config #1, interface 0) [ 3.716307] usb 1-4: adding 1-4:1.1 (config #1, interface 1) [ 3.719764] usb usb1-port5: status 0101, change 0000, 12 Mb/s [ 3.729928] usb 4-1.2: USB quirks for this device: 400 [ 3.730423] usb 4-1.2: skipped 1 descriptor after endpoint [ 3.730425] usb 4-1.2: skipped 1 descriptor after endpoint [ 3.730427] usb 4-1.2: skipped 1 descriptor after endpoint [ 3.730664] usb 4-1.2: skipped 3 descriptors after interface [ 3.730668] usb 4-1.2: skipped 1 descriptor after endpoint [ 3.730670] usb 4-1.2: skipped 1 descriptor after endpoint [ 3.730671] usb 4-1.2: skipped 1 descriptor after endpoint [ 3.730777] usb 4-1.2: default language 0x0409 [ 3.731140] usb 4-1.2: udev 3, busnum 4, minor = 386 [ 3.731141] usb 4-1.2: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00 [ 3.731143] usb 4-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=6 [ 3.731145] usb 4-1.2: Product: USB 10/100/1000 LAN [ 3.731146] usb 4-1.2: Manufacturer: Realtek [ 3.731147] usb 4-1.2: SerialNumber: 001000001 [ 3.731500] usb 4-1.2: usb_probe_device [ 3.731502] usb 4-1.2: configuration #2 chosen from 2 choices [ 3.732787] usb 4-1.2: adding 4-1.2:2.0 (config #2, interface 0) [ 3.733099] usb 4-1.2: adding 4-1.2:2.1 (config #2, interface 1) [ 3.733363] hub 4-1:1.0: state 7 ports 4 chg 0000 evt 0004 [ 3.845498] usb 1-5: new high-speed USB device number 5 using xhci_hcd [ 3.997557] usb 1-5: default language 0x0409 [ 3.998253] usb 1-5: udev 5, busnum 1, minor = 4 [ 3.998255] usb 1-5: New USB device found, idVendor=2109, idProduct=2820, bcdDevice=30.03 [ 3.998257] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.998258] usb 1-5: Product: USB2.0 Hub [ 3.998259] usb 1-5: Manufacturer: VIA Labs, Inc. [ 4.000087] usb 1-5: usb_probe_device [ 4.000090] usb 1-5: configuration #1 chosen from 1 choice [ 4.001251] usb 1-5: adding 1-5:1.0 (config #1, interface 0) [ 4.003369] hub 1-5:1.0: usb_probe_interface [ 4.003371] hub 1-5:1.0: usb_probe_interface - got id [ 4.003373] hub 1-5:1.0: USB hub found [ 4.003683] hub 1-5:1.0: 5 ports detected [ 4.003690] hub 1-5:1.0: compound device; port removable status: FFRRF [ 4.003692] hub 1-5:1.0: individual port power switching [ 4.003693] hub 1-5:1.0: individual port over-current protection [ 4.005191] hub 1-5:1.0: TT per port [ 4.005194] hub 1-5:1.0: TT requires at most 32 FS bit times (2664 ns) [ 4.005195] hub 1-5:1.0: Port indicators are supported [ 4.005196] hub 1-5:1.0: power on to power good time: 350ms [ 4.005647] hub 1-5:1.0: local power source is good [ 4.007148] hub 1-5:1.0: enabling power on all ports [ 4.129049] usb usb1-port7: status 0101, change 0000, 12 Mb/s [ 4.253617] usb 1-7: new full-speed USB device number 6 using xhci_hcd [ 4.402573] usb 1-7: skipped 1 descriptor after configuration [ 4.402576] usb 1-7: skipped 4 descriptors after interface [ 4.402718] usb 1-7: default language 0x0409 [ 4.403202] usb 1-7: udev 6, busnum 1, minor = 5 [ 4.403205] usb 1-7: New USB device found, idVendor=27c6, idProduct=5395, bcdDevice= 1.00 [ 4.403206] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 4.403208] usb 1-7: Product: Goodix Fingerprint Device [ 4.403209] usb 1-7: Manufacturer: HTMicroelectronics [ 4.403209] usb 1-7: SerialNumber: HTK32 [ 4.405035] usb 1-7: usb_probe_device [ 4.405037] usb 1-7: configuration #1 chosen from 1 choice [ 4.407631] usb 1-7: adding 1-7:1.0 (config #1, interface 0) [ 4.409249] usb 1-7: adding 1-7:1.1 (config #1, interface 1) [ 4.412970] usb usb1-port12: status 0101, change 0000, 12 Mb/s [ 4.485668] usb 1-5-port1: status 0101 change 0001 [ 4.537512] usb 1-12: new high-speed USB device number 7 using xhci_hcd [ 4.589834] hub 1-5:1.0: state 7 ports 5 chg 0002 evt 0000 [ 4.590360] usb 1-5-port1: status 0101, change 0000, 12 Mb/s [ 4.590580] usb 1-5-port1: indicator auto status 0 [ 4.700262] usb 1-12: skipped 2 descriptors after configuration [ 4.700265] usb 1-12: skipped 6 descriptors after interface [ 4.700269] usb 1-12: skipped 1 descriptor after endpoint [ 4.700270] usb 1-12: skipped 15 descriptors after interface [ 4.700507] usb 1-12: default language 0x0409 [ 4.702311] usb 1-12: udev 7, busnum 1, minor = 6 [ 4.702314] usb 1-12: New USB device found, idVendor=0c45, idProduct=6723, bcdDevice=80.08 [ 4.702316] usb 1-12: New USB device strings: Mfr=2, Product=1, SerialNumber=0 [ 4.702317] usb 1-12: Product: Integrated_Webcam_HD [ 4.702318] usb 1-12: Manufacturer: CN09357G8LG0099PA1YKA01 [ 4.703749] usb 1-12: usb_probe_device [ 4.703751] usb 1-12: configuration #1 chosen from 1 choice [ 4.705110] usb 1-12: adding 1-12:1.0 (config #1, interface 0) [ 4.707983] usb 1-12: adding 1-12:1.1 (config #1, interface 1) [ 4.711299] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 0000 [ 4.723620] usbhid 1-1:1.0: usb_probe_interface [ 4.723623] usbhid 1-1:1.0: usb_probe_interface - got id [ 4.727225] usbhid 1-1:1.1: usb_probe_interface [ 4.727227] usbhid 1-1:1.1: usb_probe_interface - got id [ 4.734724] usbhid 1-2:1.0: usb_probe_interface [ 4.734726] usbhid 1-2:1.0: usb_probe_interface - got id [ 4.736361] usbcore: registered new interface driver usbhid [ 4.736363] usbhid: USB HID core driver [ 4.739891] input: Fujitsu Fujitsu Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:0BF8:101E.0001/input/input3 [ 4.798162] hid-generic 0003:0BF8:101E.0001: input,hidraw0: USB HID v1.10 Keyboard [Fujitsu Fujitsu Keyboard] on usb-0000:00:14.0-1/input0 [ 4.798505] input: Fujitsu Fujitsu Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:0BF8:101E.0002/input/input4 [ 4.817513] usb 1-5.1: new full-speed USB device number 8 using xhci_hcd [ 4.857760] input: Fujitsu Fujitsu Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:0BF8:101E.0002/input/input5 [ 4.857774] usbhid 1-1:1.1: looking for a minor, starting at 0 [ 4.858215] hid-generic 0003:0BF8:101E.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Fujitsu Fujitsu Keyboard] on usb-0000:00:14.0-1/input1 [ 4.858509] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:046D:C077.0003/input/input6 [ 4.858797] hid-generic 0003:046D:C077.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-2/input0 [ 4.968380] usb 1-5.1: skipped 1 descriptor after interface [ 4.968844] usb 1-5.1: default language 0x0409 [ 4.972179] usb 1-5.1: udev 8, busnum 1, minor = 7 [ 4.972181] usb 1-5.1: New USB device found, idVendor=06c4, idProduct=c412, bcdDevice= 0.06 [ 4.972183] usb 1-5.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 4.972184] usb 1-5.1: Product: DELL DA300 [ 4.972186] usb 1-5.1: Manufacturer: Bizlink [ 4.972186] usb 1-5.1: SerialNumber: MCU Ver0006 [ 4.972598] usb 1-5.1: usb_probe_device [ 4.972600] usb 1-5.1: configuration #1 chosen from 1 choice [ 4.980076] usb 1-5.1: adding 1-5.1:1.0 (config #1, interface 0) [ 4.980840] usbhid 1-5.1:1.0: usb_probe_interface [ 4.980863] usbhid 1-5.1:1.0: usb_probe_interface - got id [ 4.983292] usbhid 1-5.1:1.0: looking for a minor, starting at 0 [ 4.983700] hid-generic 0003:06C4:C412.0004: hiddev1,hidraw3: USB HID v1.11 Device [Bizlink DELL DA300] on usb-0000:00:14.0-5.1/input0 [ 5.082580] systemd-hibernate-resume-generator[546]: Reported hibernation image: ID=debian kernel=6.8.0-rc2+ UUID=fa9c13bb-d49c-464f-8922-db493a3fc0ad offset=0 [ 11.268093] EXT4-fs (dm-0): mounted filesystem 9fa41e21-7a5f-479e-afdc-9a5503368d8e ro with ordered data mode. Quota mode: none. [ 11.768418] systemd-journald[261]: Received SIGTERM from PID 1 (systemd). [ 12.335917] systemd[1]: systemd 255.4-1 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) [ 12.335953] systemd[1]: Detected architecture x86-64. [ 12.337186] systemd[1]: Hostname set to <villette>. [ 13.054036] systemd[1]: initrd-switch-root.service: Deactivated successfully. [ 13.054213] systemd[1]: Stopped initrd-switch-root.service - Switch Root. [ 13.055473] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 13.056185] systemd[1]: Created slice system-getty.slice - Slice /system/getty. [ 13.056833] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe. [ 13.057634] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck. [ 13.058213] systemd[1]: Created slice user.slice - User and Session Slice. [ 13.058326] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch. [ 13.058415] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch. [ 13.058740] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point. [ 13.058757] systemd[1]: Expecting device dev-disk-by\x2ddiskseq-1\x2dpart4.device - /dev/disk/by-diskseq/1-part4... [ 13.058763] systemd[1]: Expecting device dev-disk-by\x2duuid-A209\x2d8973.device - /dev/disk/by-uuid/A209-8973... [ 13.058770] systemd[1]: Expecting device dev-nvme0n1p2.device - /dev/nvme0n1p2... [ 13.058788] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes. [ 13.058804] systemd[1]: Stopped target initrd-switch-root.target - Switch Root. [ 13.058815] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems. [ 13.058822] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System. [ 13.058833] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes. [ 13.058851] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups. [ 13.058862] systemd[1]: Reached target remote-fs.target - Remote File Systems. [ 13.058871] systemd[1]: Reached target slices.target - Slice Units. [ 13.058893] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes. [ 13.060228] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket. [ 13.060395] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket. [ 13.060488] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe. [ 13.060537] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 13.061188] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. [ 13.061364] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. [ 13.093640] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System... [ 13.095834] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System... [ 13.098172] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System... [ 13.100803] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System... [ 13.102958] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout... [ 13.104893] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... [ 13.107699] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... [ 13.110678] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... [ 13.113420] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... [ 13.116696] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... [ 13.119846] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... [ 13.122394] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... [ 13.122524] systemd[1]: systemd-cryptsetup@luks\x2d4fd31592\x2d13c6\x2d4b2d\x2d9bc1\x2d247630daddc5.service: Deactivated successfully. [ 13.122699] systemd[1]: Stopped systemd-cryptsetup@luks\x2d4fd31592\x2d13c6\x2d4b2d\x2d9bc1\x2d247630daddc5.service. [ 13.122787] systemd[1]: systemd-cryptsetup@luks\x2d4fd31592\x2d13c6\x2d4b2d\x2d9bc1\x2d247630daddc5.service: Consumed 7.800s CPU time. [ 13.128947] systemd[1]: Starting systemd-journald.service - Journal Service... [ 13.130367] pstore: Using crash dump compression: deflate [ 13.140012] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... [ 13.140068] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 13.153126] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems... [ 13.157586] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). [ 13.175583] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... [ 13.191571] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System. [ 13.192962] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System. [ 13.194700] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System. [ 13.196057] fuse: init (API version 7.39) [ 13.196446] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System. [ 13.199524] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout. [ 13.202647] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. [ 13.206110] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 13.207465] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. [ 13.210186] systemd[1]: modprobe@dm_mod.service: Deactivated successfully. [ 13.211332] pstore: Registered efi_pstore as persistent store backend [ 13.211408] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. [ 13.212101] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 13.212386] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm. [ 13.213066] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 13.213392] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. [ 13.214030] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 13.214303] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse. [ 13.216378] loop: module loaded [ 13.217019] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System... [ 13.219647] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System... [ 13.223588] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully... [ 13.224794] systemd[1]: modprobe@loop.service: Deactivated successfully. [ 13.225183] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. [ 13.225317] systemd-journald[813]: Collecting audit messages is disabled. [ 13.226684] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. [ 13.228467] lp: driver loaded but no devices found [ 13.233988] ppdev: user-space parallel port driver [ 13.234100] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System. [ 13.234456] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System. [ 13.237762] systemd[1]: Started systemd-journald.service - Journal Service. [ 13.253774] EXT4-fs (dm-0): re-mounted 9fa41e21-7a5f-479e-afdc-9a5503368d8e r/w. Quota mode: none. [ 13.482391] systemd-journald[813]: Received client request to flush runtime journal. [ 13.498458] systemd-journald[813]: /var/log/journal/a4f788b95908457da583ab45499cddcd/system.journal: Journal file uses a different sequence number ID, rotating. [ 13.498466] systemd-journald[813]: Rotating system journal. [ 13.715332] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input7 [ 13.739601] ACPI: button: Lid Switch [LID0] [ 13.747217] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8 [ 13.749481] usb 1-7: usb auto-suspend, wakeup 0 [ 13.750075] input: Intel HID events as /devices/platform/INT33D5:00/input/input9 [ 13.751274] ACPI: AC: AC Adapter [AC] (off-line) [ 13.759502] ACPI: button: Power Button [PBTN] [ 13.759948] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input10 [ 13.763396] ACPI: button: Sleep Button [SBTN] [ 13.763541] intel-hid INT33D5:00: platform supports 5 button array [ 13.763884] input: Intel HID 5 button array as /devices/platform/INT33D5:00/input/input11 [ 13.805861] mc: Linux media interface: v0.10 [ 13.814858] wmi_bus wmi_bus-PNP0C14:05: WQBC data block query control method not found [ 13.820353] Adding 8387904k swap on /dev/nvme0n1p4. Priority:-2 extents:1 across:8387904k SS [ 13.820705] Consider using thermal netlink events interface [ 13.857553] usb 1-7: usb auto-resume [ 13.858025] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 0080 [ 13.868044] ACPI: bus type thunderbolt registered [ 13.902018] EXT4-fs (nvme0n1p2): mounted filesystem ba1599a4-e271-4bcc-9e43-437c06776c27 r/w with ordered data mode. Quota mode: none. [ 13.925511] usb 1-7: finish resume [ 13.925694] cdc_acm 1-7:1.0: usb_probe_interface [ 13.925697] cdc_acm 1-7:1.0: usb_probe_interface - got id [ 13.925726] cdc_acm 1-7:1.1: usb_probe_interface [ 13.925728] cdc_acm 1-7:1.1: usb_probe_interface - got id [ 13.925739] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 0000 [ 13.925814] usbcore: registered new interface driver cdc_acm [ 13.925815] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ 14.522057] ACPI: battery: Slot [BAT0] (battery present) [ 14.642223] input: PC Speaker as /devices/platform/pcspkr/input/input12 [ 14.646388] mei_me 0000:00:16.0: enabling device (0000 -> 0002) [ 14.650849] usbcore: registered new device driver r8152-cfgselector [ 14.650877] usb 4-1.2: unregistering interface 4-1.2:2.0 [ 14.651071] usb 4-1.2: unregistering interface 4-1.2:2.1 [ 14.651388] usb 4-1.2: usb_disable_device nuking non-ep0 URBs [ 14.651985] r8152-cfgselector 4-1.2: usb_probe_device [ 14.653980] r8152-cfgselector 4-1.2: adding 4-1.2:1.0 (config #1, interface 0) [ 14.654583] r8152 4-1.2:1.0: usb_probe_interface [ 14.654587] r8152 4-1.2:1.0: usb_probe_interface - got id [ 14.657188] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002) [ 14.658221] i801_smbus 0000:00:1f.4: SPD Write Disable is set [ 14.658314] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt [ 14.659547] idma64 idma64.0: Found Intel integrated DMA 64-bit [ 14.736353] Bluetooth: Core ver 2.22 [ 14.736405] NET: Registered PF_BLUETOOTH protocol family [ 14.736406] Bluetooth: HCI device and connection manager initialized [ 14.736412] Bluetooth: HCI socket layer initialized [ 14.736417] Bluetooth: L2CAP socket layer initialized [ 14.736446] Bluetooth: SCO socket layer initialized [ 14.738028] r8152-cfgselector 4-1.2: reset SuperSpeed USB device number 3 using xhci_hcd [ 14.758190] r8152-cfgselector 4-1.2: USB quirks for this device: 400 [ 14.761972] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 14.762772] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 14.763464] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ 14.766598] r8152 4-1.2:1.0 (unnamed net_device) (uninitialized): Using pass-thru MAC addr 34:48:ed:7e:7c:11 [ 14.770424] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid [ 14.791319] r8152 4-1.2:1.0: load rtl8153b-2 v2 04/27/23 successfully [ 14.828960] r8152 4-1.2:1.0 eth0: v1.12.13 [ 14.829178] usbcore: registered new interface driver r8152 [ 15.461469] psmouse serio1: synaptics: queried max coordinates: x [..5664], y [..4646] [ 15.496895] psmouse serio1: synaptics: queried min coordinates: x [1278..], y [1206..] [ 15.496949] psmouse serio1: synaptics: The touchpad can support a better bus than the too old PS/2 protocol. Make sure MOUSE_PS2_SYNAPTICS_SMBUS and RMI4_SMB are enabled to get a better touchpad experience. [ 15.554745] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.2, id: 0x1e2b1, caps: 0xf00123/0x840300/0x12e800/0x0, board id: 3125, fw id: 2378871 [ 15.590681] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input13 [ 15.851164] i2c i2c-0: 2/2 memory slots populated (from DMI) [ 15.851732] i2c i2c-0: Successfully instantiated SPD at 0x50 [ 16.005104] usbcore: registered new interface driver cdc_ether [ 16.005244] videodev: Linux video capture interface: v2.00 [ 16.015603] usbcore: registered new interface driver r8153_ecm [ 16.015863] Intel(R) Wireless WiFi driver for Linux [ 16.016257] iwlwifi 0000:3b:00.0: enabling device (0000 -> 0002) [ 16.017846] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer [ 16.017849] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules [ 16.017850] RAPL PMU: hw unit of domain package 2^-14 Joules [ 16.017851] RAPL PMU: hw unit of domain dram 2^-14 Joules [ 16.017852] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules [ 16.017853] RAPL PMU: hw unit of domain psys 2^-14 Joules [ 16.027975] btusb 1-4:1.0: usb_probe_interface [ 16.027979] btusb 1-4:1.0: usb_probe_interface - got id [ 16.029350] usbcore: registered new interface driver btusb [ 16.030028] Bluetooth: hci0: Bootloader revision 0.3 build 0 week 24 2017 [ 16.031029] Bluetooth: hci0: Device revision is 1 [ 16.031031] Bluetooth: hci0: Secure boot is enabled [ 16.031032] Bluetooth: hci0: OTP lock is enabled [ 16.031033] Bluetooth: hci0: API lock is enabled [ 16.031034] Bluetooth: hci0: Debug lock is disabled [ 16.031035] Bluetooth: hci0: Minimum firmware build 1 week 10 2014 [ 16.034066] iwlwifi 0000:3b:00.0: Detected crf-id 0x3617, cnv-id 0x100530 wfpm id 0x80000000 [ 16.034236] iwlwifi 0000:3b:00.0: PCI dev 2723/1654, rev=0x340, rfid=0x10a100 [ 16.038851] Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi [ 16.038911] Bluetooth: hci0: Boot Address: 0x24800 [ 16.038913] Bluetooth: hci0: Firmware Version: 255-255.255 [ 16.043293] iwlwifi 0000:3b:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37 [ 16.044358] iwlwifi 0000:3b:00.0: loaded firmware version 77.ad46c98b.0 cc-a0-77.ucode op_mode iwlmvm [ 16.210302] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002) [ 16.211759] input: WCOM490B:00 056A:490B Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input14 [ 16.212311] input: WCOM490B:00 056A:490B as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input15 [ 16.212566] input: WCOM490B:00 056A:490B Stylus as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input16 [ 16.212915] input: WCOM490B:00 056A:490B as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input17 [ 16.213249] idma64 idma64.1: Found Intel integrated DMA 64-bit [ 16.213283] input: WCOM490B:00 056A:490B Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input18 [ 16.213831] hid-generic 0018:056A:490B.0005: input,hidraw4: I2C HID v1.00 Mouse [WCOM490B:00 056A:490B] on i2c-WCOM490B:00 [ 16.445473] usb 1-7: usb auto-suspend, wakeup 0 [ 16.865473] audit: type=1400 audit(1709304091.041:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1011 comm="apparmor_parser" [ 16.865488] audit: type=1400 audit(1709304091.041:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1011 comm="apparmor_parser" [ 16.865493] audit: type=1400 audit(1709304091.041:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=1022 comm="apparmor_parser" [ 16.865929] audit: type=1400 audit(1709304091.045:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/ipsec/stroke" pid=1018 comm="apparmor_parser" [ 16.867531] audit: type=1400 audit(1709304091.045:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1010 comm="apparmor_parser" [ 16.871921] audit: type=1400 audit(1709304091.049:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oosplash" pid=1019 comm="apparmor_parser" [ 16.872132] r8152 4-1.2:1.0 enx3448ed7e7c11: renamed from eth0 [ 16.872712] audit: type=1400 audit(1709304091.049:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=1020 comm="apparmor_parser" [ 16.872912] ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only [ 16.874460] audit: type=1400 audit(1709304091.053:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1015 comm="apparmor_parser" [ 16.874465] audit: type=1400 audit(1709304091.053:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1015 comm="apparmor_parser" [ 16.874470] audit: type=1400 audit(1709304091.053:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1015 comm="apparmor_parser" [ 16.881519] input: SYNA2393:00 06CB:7A13 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-SYNA2393:00/0018:06CB:7A13.0006/input/input19 [ 16.882222] input: SYNA2393:00 06CB:7A13 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-SYNA2393:00/0018:06CB:7A13.0006/input/input20 [ 16.882920] hid-generic 0018:06CB:7A13.0006: input,hidraw5: I2C HID v1.00 Mouse [SYNA2393:00 06CB:7A13] on i2c-SYNA2393:00 [ 16.959334] iTCO_vendor_support: vendor-support=0 [ 16.959430] lis3lv02d_i2c 0-0029: supply Vdd not found, using dummy regulator [ 16.959640] lis3lv02d_i2c 0-0029: supply Vdd_IO not found, using dummy regulator [ 16.962926] intel_rapl_common: Found RAPL domain package [ 16.962929] intel_rapl_common: Found RAPL domain core [ 16.962931] intel_rapl_common: Found RAPL domain uncore [ 16.962932] intel_rapl_common: Found RAPL domain dram [ 16.962933] intel_rapl_common: Found RAPL domain psys [ 16.963360] input: Dell WMI hotkeys as /devices/platform/PNP0C14:05/wmi_bus/wmi_bus-PNP0C14:05/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input22 [ 16.978067] lis3lv02d: 8 bits 3DC sensor found [ 17.064649] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002) [ 17.073744] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input23 [ 17.076752] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400) [ 17.079994] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 17.098913] uvcvideo 1-12:1.0: usb_probe_interface [ 17.098920] uvcvideo 1-12:1.0: usb_probe_interface - got id [ 17.099970] usb 1-12: Found UVC 1.00 device Integrated_Webcam_HD (0c45:6723) [ 17.107020] usbcore: registered new interface driver uvcvideo [ 17.116749] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.116829] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) [ 17.147150] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.244303] intel_rapl_common: Found RAPL domain package [ 17.244306] intel_rapl_common: Found RAPL domain dram [ 17.246233] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.298233] iwlwifi 0000:3b:00.0: Detected Killer(R) Wi-Fi 6 AX1650x 160MHz Wireless Network Adapter (200NGW), REV=0x340 [ 17.298650] thermal thermal_zone13: failed to read out thermal zone (-61) [ 17.335081] input: SYNA2393:00 06CB:7A13 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-SYNA2393:00/0018:06CB:7A13.0006/input/input24 [ 17.354446] input: SYNA2393:00 06CB:7A13 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-2/i2c-SYNA2393:00/0018:06CB:7A13.0006/input/input25 [ 17.411075] hid-multitouch 0018:06CB:7A13.0006: input,hidraw5: I2C HID v1.00 Mouse [SYNA2393:00 06CB:7A13] on i2c-SYNA2393:00 [ 17.412620] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.445612] iwlwifi 0000:3b:00.0: Detected RF HR B3, rfid=0x10a100 [ 17.467349] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.516870] iwlwifi 0000:3b:00.0: base HW address: 24:41:8c:64:6c:4d [ 17.547170] iwlwifi 0000:3b:00.0 wlp59s0: renamed from wlan0 [ 17.853259] Bluetooth: hci0: Waiting for firmware download to complete [ 17.854009] Bluetooth: hci0: Firmware loaded in 1772613 usecs [ 17.854142] Bluetooth: hci0: Waiting for device to boot [ 17.869065] Bluetooth: hci0: Device booted in 14676 usecs [ 17.870146] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-20-1-3.ddc [ 17.872067] Bluetooth: hci0: Applying Intel DDC parameters completed [ 17.873053] Bluetooth: hci0: Firmware revision 0.3 build 144 week 11 2023 [ 17.875075] Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported. [ 17.919401] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.920406] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040380 [ 17.924297] Console: switching to colour dummy device 80x25 [ 17.924359] i915 0000:00:02.0: vgaarb: deactivate vga console [ 17.956030] wacom 0018:056A:490B.0005: hidraw4: I2C HID v1.00 Mouse [WCOM490B:00 056A:490B] on i2c-WCOM490B:00 [ 17.956189] input: Wacom HID 490B Pen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input27 [ 17.956835] input: Wacom HID 490B Finger as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-1/i2c-WCOM490B:00/0018:056A:490B.0005/input/input28 [ 17.957319] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.966000] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 17.967920] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915]) [ 17.969853] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4) [ 17.973268] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 17.976300] sof-audio-pci-intel-cnl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040380 [ 19.392867] Process accounting resumed [ 19.460426] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 19.460433] Bluetooth: BNEP filters: protocol multicast [ 19.460449] Bluetooth: BNEP socket layer initialized [ 19.464832] Bluetooth: MGMT ver 1.22 [ 19.480138] NET: Registered PF_ALG protocol family [ 19.586425] warning: `atop' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211 [ 19.629481] usb 1-12: usb auto-suspend, wakeup 0 [ 19.662458] NET: Registered PF_QIPCRTR protocol family [ 19.680131] i915 0000:00:02.0: [drm] [ENCODER:102:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it [ 19.690748] i915 0000:00:02.0: [drm] [ENCODER:113:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it [ 19.700002] i915 0000:00:02.0: [drm] [ENCODER:120:DDI D/PHY D] is disabled/in DSI mode with an ungated DDI clock, gate it [ 19.762228] r8152 4-1.2:1.0 enx3448ed7e7c11: carrier on [ 19.967811] iwlwifi 0000:3b:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0 [ 20.113526] usb 1-4: usb auto-suspend, wakeup 0 [ 21.109081] PPP generic driver version 2.4.2 [ 21.110594] NET: Registered PF_PPPOX protocol family [ 21.122970] l2tp_core: L2TP core driver, V2.0 [ 21.125120] l2tp_netlink: L2TP netlink interface [ 21.127253] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 21.138062] Initializing XFRM netlink socket [ 21.146767] IPsec XFRM device driver [ 21.281642] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 0 [ 21.306195] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 21.310596] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input30 [ 21.313308] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 21.313344] ACPI: video: Video Device [PEGP] (multi-head: no rom: yes post: no) [ 21.313601] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b/LNXVIDEO:01/input/input31 [ 21.314989] i915 display info: display version: 9 [ 21.314992] i915 display info: cursor_needs_physical: no [ 21.314993] i915 display info: has_cdclk_crawl: no [ 21.314994] i915 display info: has_cdclk_squash: no [ 21.314996] i915 display info: has_ddi: yes [ 21.314997] i915 display info: has_dp_mst: yes [ 21.314998] i915 display info: has_dsb: no [ 21.314999] i915 display info: has_fpga_dbg: yes [ 21.315000] i915 display info: has_gmch: no [ 21.315001] i915 display info: has_hotplug: yes [ 21.315002] i915 display info: has_hti: no [ 21.315003] i915 display info: has_ipc: yes [ 21.315004] i915 display info: has_overlay: no [ 21.315004] i915 display info: has_psr: yes [ 21.315005] i915 display info: has_psr_hw_tracking: yes [ 21.315006] i915 display info: overlay_needs_physical: no [ 21.315007] i915 display info: supports_tv: no [ 21.315008] i915 display info: has_hdcp: yes [ 21.315009] i915 display info: has_dmc: yes [ 21.315010] i915 display info: has_dsc: no [ 21.379942] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) [ 21.387268] fbcon: i915drmfb (fb0) is primary device [ 21.490422] Console: switching to colour frame buffer device 240x67 [ 21.528007] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device [ 21.564945] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3266: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker [ 21.564952] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 21.564955] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) [ 21.564958] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 [ 21.564960] snd_hda_codec_realtek hdaudioC0D0: inputs: [ 21.564962] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x18 [ 21.564964] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a [ 21.564966] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12 [ 21.642964] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input32 [ 21.643534] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input33 [ 21.644108] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input34 [ 21.644666] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input35 [ 23.792083] Bluetooth: RFCOMM TTY layer initialized [ 23.792102] Bluetooth: RFCOMM socket layer initialized [ 23.792116] Bluetooth: RFCOMM ver 1.11 [ 23.829553] usb 1-12: usb auto-resume [ 23.829554] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 1000 [ 23.897501] usb 1-12: Waited 0ms for CONNECT [ 23.897505] usb 1-12: finish resume [ 23.898158] usb 1-12: disable remote wakeup, status -32 [ 24.676511] wlp59s0: authenticate with 6c:f3:7f:10:ae:1a (local address=24:41:8c:64:6c:4d) [ 24.677516] wlp59s0: send auth to 6c:f3:7f:10:ae:1a (try 1/3) [ 24.713102] wlp59s0: authenticated [ 24.713249] wlp59s0: VHT capa missing/short, disabling VHT/HE/EHT [ 24.713487] wlp59s0: associate with 6c:f3:7f:10:ae:1a (try 1/3) [ 24.724482] wlp59s0: RX AssocResp from 6c:f3:7f:10:ae:1a (capab=0x401 status=0 aid=4) [ 24.762325] wlp59s0: associated [ 26.421831] usb 1-12: usb auto-suspend, wakeup 0 [ 27.162330] usb 1-12: usb auto-resume [ 27.162685] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 1000 [ 27.230304] usb 1-12: Waited 0ms for CONNECT [ 27.230311] usb 1-12: finish resume [ 27.230909] usb 1-12: disable remote wakeup, status -32 [ 27.375647] rfkill: input handler disabled [ 29.753849] usb 1-12: usb auto-suspend, wakeup 0 [ 137.924765] wlp59s0: disconnect from AP 6c:f3:7f:10:ae:1a for new auth to 6c:f3:7f:10:a0:fa [ 138.034778] wlp59s0: authenticate with 6c:f3:7f:10:a0:fa (local address=24:41:8c:64:6c:4d) [ 138.036157] wlp59s0: send auth to 6c:f3:7f:10:a0:fa (try 1/3) [ 138.075176] wlp59s0: authenticated [ 138.075817] wlp59s0: VHT capa missing/short, disabling VHT/HE/EHT [ 138.077794] wlp59s0: associate with 6c:f3:7f:10:a0:fa (try 1/3) [ 138.085690] wlp59s0: RX ReassocResp from 6c:f3:7f:10:a0:fa (capab=0x401 status=0 aid=5) [ 138.125133] wlp59s0: associated [ 150.442950] systemd-journald[813]: /var/log/journal/a4f788b95908457da583ab45499cddcd/user-5272.journal: Journal file uses a different sequence number ID, rotating. [ 151.740093] rfkill: input handler enabled [ 154.397845] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 1000 [ 154.397915] usb 1-12: usb auto-resume [ 154.470091] usb 1-12: Waited 0ms for CONNECT [ 154.470104] usb 1-12: finish resume [ 154.471106] usb 1-12: disable remote wakeup, status -32 [ 155.980632] rfkill: input handler disabled [ 156.989815] usb 1-12: usb auto-suspend, wakeup 0 [ 162.026176] usb 1-4: usb auto-resume [ 162.026255] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 0010 [ 162.097803] usb 1-4: Waited 0ms for CONNECT [ 162.097817] usb 1-4: finish resume [ 162.149962] usb 1-7: usb auto-resume [ 162.150022] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 0080 [ 162.222095] usb 1-7: finish resume [ 162.233887] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 0000 [ 162.270219] usb 1-12: usb auto-resume [ 162.270220] hub 1-0:1.0: state 7 ports 16 chg 0000 evt 1000 [ 162.338095] usb 1-12: Waited 0ms for CONNECT [ 162.338108] usb 1-12: finish resume [ 162.339197] usb 1-12: disable remote wakeup, status -32 [ 162.342286] usb usb2: usb auto-resume [ 162.342331] hub 2-0:1.0: hub_resume [ 162.370517] hub 2-0:1.0: state 7 ports 10 chg 0000 evt 0000 [ 162.371013] hub 2-0:1.0: hub_suspend [ 162.371021] usb usb2: bus auto-suspend, wakeup 1 [ 162.371258] usb usb3: usb auto-resume [ 162.371279] hub 3-0:1.0: hub_resume [ 162.371353] hub 3-0:1.0: state 7 ports 2 chg 0000 evt 0000 [ 162.371408] hub 3-0:1.0: hub_suspend [ 162.371415] usb usb3: bus auto-suspend, wakeup 1 [ 164.385863] usb 1-7: usb auto-suspend, wakeup 0 [ 164.618146] usb 1-4: usb auto-suspend, wakeup 0 [ 164.862048] usb 1-12: usb auto-suspend, wakeup 0 [ 173.240535] wlp59s0: disconnect from AP 6c:f3:7f:10:a0:fa for new auth to 6c:f3:7f:10:ae:1a [ 173.358989] wlp59s0: authenticate with 6c:f3:7f:10:ae:1a (local address=24:41:8c:64:6c:4d) [ 173.359898] wlp59s0: send auth to 6c:f3:7f:10:ae:1a (try 1/3) [ 173.395256] wlp59s0: authenticated [ 173.395479] wlp59s0: VHT capa missing/short, disabling VHT/HE/EHT [ 173.397848] wlp59s0: associate with 6c:f3:7f:10:ae:1a (try 1/3) [ 173.406623] wlp59s0: RX ReassocResp from 6c:f3:7f:10:ae:1a (capab=0x401 status=0 aid=4) [ 173.448160] wlp59s0: associated
diff --git a/drivers/usb/core/port.c b/drivers/usb/core/port.c index c628c1abc907..4d63496f98b6 100644 --- a/drivers/usb/core/port.c +++ b/drivers/usb/core/port.c @@ -573,7 +573,7 @@ static int match_location(struct usb_device *peer_hdev, void *p) struct usb_hub *peer_hub = usb_hub_to_struct_hub(peer_hdev); struct usb_device *hdev = to_usb_device(port_dev->dev.parent->parent); - if (!peer_hub) + if (!peer_hub || port_dev->connect_type == USB_PORT_NOT_USED) return 0; hcd = bus_to_hcd(hdev->bus); @@ -584,7 +584,8 @@ static int match_location(struct usb_device *peer_hdev, void *p) for (port1 = 1; port1 <= peer_hdev->maxchild; port1++) { peer = peer_hub->ports[port1 - 1]; - if (peer && peer->location == port_dev->location) { + if (peer && peer->connect_type != USB_PORT_NOT_USED && + peer->location == port_dev->location) { link_peers_report(port_dev, peer); return 1; /* done */ }