linux-surface / linux-surface

Linux Kernel for Surface Devices
4.68k stars 205 forks source link

Possible S0ix regression with update to 6.7 #1378

Closed leonm1 closed 1 month ago

leonm1 commented 3 months ago

S0ix seems to be broken for me with linux-surface kernel 6.7. I was able to reproduce this across several reboots, with both kernels, with and without the dGPU kernel modules loaded.

I've configured systemd to unload the mwifiex_pcie and mwifiex modules before sleep, which seems to have worked for months until the 6.7 kernel.

I don't see any major differences between the two dmesg outputs, so I'm posting this partially to see if anyone else can reproduce this with 6.7, since I don't have any leads on what could cause this.

Environment

linux-surface hash (kernel 6.6): c58cae4193e8007cb1d8a548db759bcdc3ce5c24

linux-surface hash (kernel 6.7): 691fff2d663b02dc8319e12ae31056629bd0123d

Verifying sleep reaches S0ix:

After suspending (systemctl suspend) and resuming (lid close+open), you can run the following:

$ awk -F '\\s*: | @' \
       '/model name|Hardware|Processor|^cpu model|chip type|^cpu type/ {
   cpu=$2; if ($1 == "Hardware") exit } END { print cpu }' "/proc/cpuinfo"; \
       \
       cat /etc/os-release | grep NAME; \
       echo -n "uname -r: "; uname -r; \
       sudo grep -H . /sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us; \
       sudo grep -H . /sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us; \
       sudo grep -H . /sys/kernel/debug/pmc_core/package_cstate_show; \
       sudo grep -H . /sys/kernel/debug/pmc_core/slp_s0_residency_usec;

If your system is reaching S0ix, you should have non-zero numbers for the following two lines:

/sys/kernel/debug/pmc_core/slp_s0_residency_usec:40648088
/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us:40798225

Details

Relevant Nix config ``` { config, kernelBuildPkgs, nixos-hardware, linux-surface, lib, ... }: let # Pin the nixpkgs revision used for building the kernel to allow us to update # the rest of the system without rebuilding the kernel. pkgs = kernelBuildPkgs; in { boot.kernelPackages = pkgs.linuxPackages_6_6; boot.kernelPatches = [ { name = "linux-surface-config"; patch = null; extraStructuredConfig = with lib.kernel; { STAGING_MEDIA = yes; FUNCTION_ERROR_INJECTION = yes; }; extraConfig = lib.replaceStrings [ "CONFIG_" "=" ] [ "" " " ] (lib.readFile "${linux-surface}/configs/surface-6.6.config" ); } ] ++ map (pname: { name = "linux-surface-${pname}"; patch = "${linux-surface}/patches/6.6/${pname}.patch"; }) [ "0001-surface3-oemb" "0002-mwifiex" "0003-ath10k" "0004-ipts" "0005-ithc" "0006-surface-sam" "0007-surface-sam-over-hid" "0008-surface-button" "0009-surface-typecover" "0010-surface-shutdown" "0011-surface-gpe" "0012-cameras" "0013-amd-gpio" "0014-rtc" ]; hardware.cpu.intel.updateMicrocode = true; services.udev.packages = [ pkgs.iptsd pkgs.surface-control ]; services.udev.extraRules = '' ACTION=="add", KERNEL=="0000:02:00.0", SUBSYSTEM=="pci", RUN+="${pkgs.surface-control}/bin/surface dgpu set-runtime-pm on" ''; powerManagement = { resumeCommands = '' ${pkgs.kmod}/bin/modprobe mwifiex_pcie mwifiex ''; powerDownCommands = '' ${pkgs.kmod}/bin/modprobe -r mwifiex_pcie mwifiex ''; }; systemd.packages = [ pkgs.iptsd ]; boot.kernelParams = [ "acpi_enforce_resources=lax" ]; environment.systemPackages = with pkgs; [ libcamera surface-control ]; boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ]; boot.kernelModules = [ "v4l2loopback" ]; ### Nvidia hardware # Load the nvidia kernel modules, but blacklist them. They are used to toggle power state to d3cold. services.xserver.videoDrivers = [ "nvidia" ]; hardware.nvidia = { modesetting.enable = true; powerManagement.enable = true; # Prime render offload prime = { offload = { enable = true; enableOffloadCmd = true; }; # From `lspci` intelBusId = "PCI:0:2:0"; nvidiaBusId = "PCI:2:0:0"; }; }; boot.extraModprobeConfig = pkgs.lib.mkOverride 100 '' options v4l2loopback exclusive_caps=1 card_label="Virtual Camera" video_nr=42 options nvidia NVreg_DynamicPowerManagement=0x02 options nvidia-drm modeset=1 blacklist nvidia-drm blacklist nvidia-modeset blacklist nvidia-uvm blacklist nvidia blacklist i2c_nvidia_gpu alias i2c_nvidia_gpu off ''; specialisation = { nvidia.configuration = { boot.extraModprobeConfig = pkgs.lib.mkOverride 99 '' options v4l2loopback exclusive_caps=1 card_label="Virtual Camera" video_nr=42 options nvidia NVreg_DynamicPowerManagement=0x02 options nvidia-drm modeset=1 blacklist i2c_nvidia_gpu alias i2c_nvidia_gpu off ''; }; }; services.thermald.enable = true; } ```
linux 6.7 S0ix idle report ``` Intel(R) Core(TM) i7-8650U CPU NAME=NixOS PRETTY_NAME="NixOS 24.05 (Uakari)" VERSION_CODENAME=uakari uname -r: 6.7.4 /sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us:0 /sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us:0 /sys/kernel/debug/pmc_core/package_cstate_show:Package C2 : 67978665 /sys/kernel/debug/pmc_core/package_cstate_show:Package C3 : 19537990 /sys/kernel/debug/pmc_core/package_cstate_show:Package C6 : 0 /sys/kernel/debug/pmc_core/package_cstate_show:Package C7 : 0 /sys/kernel/debug/pmc_core/package_cstate_show:Package C8 : 0 /sys/kernel/debug/pmc_core/package_cstate_show:Package C9 : 0 /sys/kernel/debug/pmc_core/package_cstate_show:Package C10 : 0 /sys/kernel/debug/pmc_core/slp_s0_residency_usec:0 ```
linux 6.6 S0ix idle report ``` Intel(R) Core(TM) i7-8650U CPU NAME=NixOS PRETTY_NAME="NixOS 24.05 (Uakari)" VERSION_CODENAME=uakari uname -r: 6.6.14 /sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us:55386203 /sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us:40798225 /sys/kernel/debug/pmc_core/package_cstate_show:Package C2 : 100758509 /sys/kernel/debug/pmc_core/package_cstate_show:Package C3 : 406357 /sys/kernel/debug/pmc_core/package_cstate_show:Package C6 : 118678 /sys/kernel/debug/pmc_core/package_cstate_show:Package C7 : 597 /sys/kernel/debug/pmc_core/package_cstate_show:Package C8 : 270029 /sys/kernel/debug/pmc_core/package_cstate_show:Package C9 : 0 /sys/kernel/debug/pmc_core/package_cstate_show:Package C10 : 55070092 /sys/kernel/debug/pmc_core/slp_s0_residency_usec:40648088 ```
leonm1 commented 3 months ago
`dmesg` output (linux 6.7 / no S0ix) ``` [ 0.000000] Linux version 6.7.4 (nixbld@localhost) (gcc (GCC) 13.2.0, GNU ld (GNU Binutils) 2.40) #1-NixOS SMP PREEMPT_DYNAMIC Mon Feb 5 20:17:12 UTC 2024 [ 0.000000] Command line: initrd=\efi\nixos\hvwsq0fvqww6lvwz5r532njhspkvscnn-initrd-linux-6.7.4-initrd.efi init=/nix/store/xnm9ncnx3vdrizfa0zz4qdjlq93dnnm5-nixos-system-nix-nemesis-24.05.20240211.f9d39fb/init acpi_enforce_resources=lax quiet nosgx i915.fastboot=1 splash loglevel=4 nvidia-drm.modeset=1 nvidia.NVreg_PreserveVideoMemoryAllocations=1 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-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-0x000000008a5b1fff] usable [ 0.000000] BIOS-e820: [mem 0x000000008a5b2000-0x000000008a5b2fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000008a5b3000-0x000000008a5b3fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000008a5b4000-0x000000008b951fff] usable [ 0.000000] BIOS-e820: [mem 0x000000008b952000-0x000000008bd51fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000008bd52000-0x000000008bd6afff] usable [ 0.000000] BIOS-e820: [mem 0x000000008bd6b000-0x000000008be79fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000008be7a000-0x000000008bea2fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000008bea3000-0x000000008befefff] ACPI data [ 0.000000] BIOS-e820: [mem 0x000000008beff000-0x000000008befffff] usable [ 0.000000] BIOS-e820: [mem 0x000000008bf00000-0x000000008f7fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f7fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] efi: EFI v2.7 by MSFT [ 0.000000] efi: ACPI=0x8befe000 ACPI 2.0=0x8befe014 TPMFinalLog=0x8be9a000 SMBIOS=0x8bde8000 SMBIOS 3.0=0x8bde6000 MEMATTR=0x887e7018 ESRT=0x892c2598 RNG=0x8beadf18 INITRD=0x8876ce18 TPMEventLog=0x88196018 [ 0.000000] random: crng init done [ 0.000000] efi: Remove mem175: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map [ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved [ 0.000000] efi: Not removing mem176: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map [ 0.000000] SMBIOS 3.3.0 present. [ 0.000000] DMI: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 0.000000] tsc: Detected 2100.000 MHz processor [ 0.000000] tsc: Detected 2099.944 MHz TSC [ 0.001214] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.001219] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.001231] last_pfn = 0x46f800 max_arch_pfn = 0x400000000 [ 0.001238] MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs [ 0.001241] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.001949] last_pfn = 0x8bf00 max_arch_pfn = 0x400000000 [ 0.019104] esrt: Reserving ESRT space from 0x00000000892c2598 to 0x00000000892c2670. [ 0.019114] e820: update [mem 0x892c2000-0x892c2fff] usable ==> reserved [ 0.019158] Using GB pages for direct mapping [ 0.019677] Secure boot enabled [ 0.019678] RAMDISK: [mem 0x80903000-0x82fb5fff] [ 0.019686] ACPI: Early table checksum verification disabled [ 0.019690] ACPI: RSDP 0x000000008BEFE014 000024 (v02 MSFT ) [ 0.019697] ACPI: XSDT 0x000000008BEFD0E8 0000B4 (v01 MSFT MSFT 00000000 MSFT 0000005F) [ 0.019706] ACPI: FACP 0x000000008BED7000 00010C (v05 MSFT MSFT 00000000 MSFT 0000005F) [ 0.019714] ACPI: DSDT 0x000000008BEB8000 01A0AC (v02 MSFT MSFT 00000000 INTL 20160422) [ 0.019720] ACPI: FACS 0x000000008BE83000 000040 [ 0.019724] ACPI: WSMT 0x000000008BEFC000 000028 (v01 MSFT MSFT 00000002 MSFT 0000005F) [ 0.019729] ACPI: MSDM 0x000000008BEFB000 000055 (v01 MSFT 00000001 MSFT 00000001) [ 0.019734] ACPI: SSDT 0x000000008BEDE000 01C838 (v02 MSFT DptfTabl 00001000 INTL 20160422) [ 0.019739] ACPI: SSDT 0x000000008BEDD000 000574 (v02 MSFT Tpm2Tabl 00001000 INTL 20160422) [ 0.019744] ACPI: TPM2 0x000000008BEDC000 000034 (v03 MSFT MSFT 00000002 MSFT 0000005F) [ 0.019749] ACPI: SSDT 0x000000008BED8000 0033BF (v02 SaSsdt SaSsdt 00003000 INTL 20160422) [ 0.019754] ACPI: HPET 0x000000008BED6000 000038 (v01 MSFT MSFT 00000001 MSFT 0000005F) [ 0.019759] ACPI: APIC 0x000000008BED5000 00012C (v03 MSFT MSFT 00000001 MSFT 0000005F) [ 0.019764] ACPI: MCFG 0x000000008BED4000 00003C (v01 MSFT MSFT 00000001 MSFT 0000005F) [ 0.019769] ACPI: LPIT 0x000000008BED3000 000094 (v01 MSFT MSFT 00000000 MSFT 0000005F) [ 0.019773] ACPI: SSDT 0x000000008BEB5000 0024E8 (v02 MSFT RTD3ApNV 00001000 INTL 20160422) [ 0.019778] ACPI: SSDT 0x000000008BEB4000 0007CF (v02 MSFT xh_sh000 00000000 INTL 20160422) [ 0.019783] ACPI: SSDT 0x000000008BEB2000 0017AE (v02 CpuRef CpuSsdt 00003000 INTL 20160422) [ 0.019788] ACPI: DMAR 0x000000008BEB1000 000088 (v01 MSFT MSFT 00000001 INTL 00000001) [ 0.019794] ACPI: NHLT 0x000000008BEB0000 00002D (v00 MSFT MSFT 00000002 MSFT 0000005F) [ 0.019801] ACPI: FPDT 0x000000008BEAF000 000034 (v01 MSFT MSFT 00000002 MSFT 0000005F) [ 0.019807] ACPI: BGRT 0x000000008BEAE000 000038 (v01 MSFT MSFT 00000002 MSFT 0000005F) [ 0.019810] ACPI: Reserving FACP table memory at [mem 0x8bed7000-0x8bed710b] [ 0.019813] ACPI: Reserving DSDT table memory at [mem 0x8beb8000-0x8bed20ab] [ 0.019814] ACPI: Reserving FACS table memory at [mem 0x8be83000-0x8be8303f] [ 0.019816] ACPI: Reserving WSMT table memory at [mem 0x8befc000-0x8befc027] [ 0.019817] ACPI: Reserving MSDM table memory at [mem 0x8befb000-0x8befb054] [ 0.019818] ACPI: Reserving SSDT table memory at [mem 0x8bede000-0x8befa837] [ 0.019820] ACPI: Reserving SSDT table memory at [mem 0x8bedd000-0x8bedd573] [ 0.019821] ACPI: Reserving TPM2 table memory at [mem 0x8bedc000-0x8bedc033] [ 0.019822] ACPI: Reserving SSDT table memory at [mem 0x8bed8000-0x8bedb3be] [ 0.019824] ACPI: Reserving HPET table memory at [mem 0x8bed6000-0x8bed6037] [ 0.019825] ACPI: Reserving APIC table memory at [mem 0x8bed5000-0x8bed512b] [ 0.019826] ACPI: Reserving MCFG table memory at [mem 0x8bed4000-0x8bed403b] [ 0.019828] ACPI: Reserving LPIT table memory at [mem 0x8bed3000-0x8bed3093] [ 0.019829] ACPI: Reserving SSDT table memory at [mem 0x8beb5000-0x8beb74e7] [ 0.019830] ACPI: Reserving SSDT table memory at [mem 0x8beb4000-0x8beb47ce] [ 0.019832] ACPI: Reserving SSDT table memory at [mem 0x8beb2000-0x8beb37ad] [ 0.019833] ACPI: Reserving DMAR table memory at [mem 0x8beb1000-0x8beb1087] [ 0.019834] ACPI: Reserving NHLT table memory at [mem 0x8beb0000-0x8beb002c] [ 0.019835] ACPI: Reserving FPDT table memory at [mem 0x8beaf000-0x8beaf033] [ 0.019837] ACPI: Reserving BGRT table memory at [mem 0x8beae000-0x8beae037] [ 0.019987] No NUMA configuration found [ 0.019988] Faking a node at [mem 0x0000000000000000-0x000000046f7fffff] [ 0.019994] NODE_DATA(0) allocated [mem 0x46f7fa000-0x46f7fffff] [ 0.020041] Zone ranges: [ 0.020042] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.020045] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.020048] Normal [mem 0x0000000100000000-0x000000046f7fffff] [ 0.020050] Device empty [ 0.020052] Movable zone start for each node [ 0.020053] Early memory node ranges [ 0.020053] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.020056] node 0: [mem 0x0000000000100000-0x000000003fffffff] [ 0.020058] node 0: [mem 0x0000000040400000-0x000000008a5b1fff] [ 0.020059] node 0: [mem 0x000000008a5b4000-0x000000008b951fff] [ 0.020060] node 0: [mem 0x000000008bd52000-0x000000008bd6afff] [ 0.020062] node 0: [mem 0x000000008beff000-0x000000008befffff] [ 0.020063] node 0: [mem 0x0000000100000000-0x000000046f7fffff] [ 0.020067] Initmem setup node 0 [mem 0x0000000000001000-0x000000046f7fffff] [ 0.020073] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.020105] On node 0, zone DMA: 96 pages in unavailable ranges [ 0.025820] On node 0, zone DMA32: 1024 pages in unavailable ranges [ 0.025890] On node 0, zone DMA32: 2 pages in unavailable ranges [ 0.025908] On node 0, zone DMA32: 1024 pages in unavailable ranges [ 0.025915] On node 0, zone DMA32: 404 pages in unavailable ranges [ 0.063890] On node 0, zone Normal: 16640 pages in unavailable ranges [ 0.063923] On node 0, zone Normal: 2048 pages in unavailable ranges [ 0.063935] Reserving Intel graphics memory at [mem 0x8d800000-0x8f7fffff] [ 0.064492] ACPI: PM-Timer IO Port: 0x1808 [ 0.064504] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.064506] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) [ 0.064507] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) [ 0.064509] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) [ 0.064510] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) [ 0.064511] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) [ 0.064512] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) [ 0.064513] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) [ 0.064515] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) [ 0.064516] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) [ 0.064517] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) [ 0.064518] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) [ 0.064519] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) [ 0.064520] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) [ 0.064522] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) [ 0.064523] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) [ 0.064552] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119 [ 0.064565] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.064573] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.064580] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.064582] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.064596] e820: update [mem 0x8870f000-0x8874cfff] usable ==> reserved [ 0.064613] TSC deadline timer available [ 0.064614] smpboot: Allowing 8 CPUs, 0 hotplug CPUs [ 0.064637] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.064640] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.064643] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff] [ 0.064645] PM: hibernation: Registered nosave memory: [mem 0x8870f000-0x8874cfff] [ 0.064648] PM: hibernation: Registered nosave memory: [mem 0x892c2000-0x892c2fff] [ 0.064650] PM: hibernation: Registered nosave memory: [mem 0x8a5b2000-0x8a5b2fff] [ 0.064651] PM: hibernation: Registered nosave memory: [mem 0x8a5b3000-0x8a5b3fff] [ 0.064654] PM: hibernation: Registered nosave memory: [mem 0x8b952000-0x8bd51fff] [ 0.064656] PM: hibernation: Registered nosave memory: [mem 0x8bd6b000-0x8be79fff] [ 0.064657] PM: hibernation: Registered nosave memory: [mem 0x8be7a000-0x8bea2fff] [ 0.064658] PM: hibernation: Registered nosave memory: [mem 0x8bea3000-0x8befefff] [ 0.064661] PM: hibernation: Registered nosave memory: [mem 0x8bf00000-0x8f7fffff] [ 0.064662] PM: hibernation: Registered nosave memory: [mem 0x8f800000-0xfe00ffff] [ 0.064663] PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff] [ 0.064664] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff] [ 0.064667] [mem 0x8f800000-0xfe00ffff] available for PCI devices [ 0.064669] Booting paravirtualized kernel on bare hardware [ 0.064672] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.072900] setup_percpu: NR_CPUS:384 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 [ 0.073895] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288 [ 0.073905] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152 [ 0.073909] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7 [ 0.073945] Kernel command line: initrd=\efi\nixos\hvwsq0fvqww6lvwz5r532njhspkvscnn-initrd-linux-6.7.4-initrd.efi init=/nix/store/xnm9ncnx3vdrizfa0zz4qdjlq93dnnm5-nixos-system-nix-nemesis-24.05.20240211.f9d39fb/init acpi_enforce_resources=lax quiet nosgx i915.fastboot=1 splash loglevel=4 nvidia-drm.modeset=1 nvidia.NVreg_PreserveVideoMemoryAllocations=1 [ 0.074160] Unknown kernel command line parameters "splash", will be passed to user space. [ 0.076936] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) [ 0.078329] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.078547] Fallback order for Node 0: 0 [ 0.078551] Built 1 zonelists, mobility grouping on. Total pages: 4107700 [ 0.078553] Policy zone: Normal [ 0.078555] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.078565] software IO TLB: area num 8. [ 0.153908] Memory: 16191588K/16692260K available (14336K kernel code, 2319K rwdata, 9440K rodata, 3004K init, 2900K bss, 500412K reserved, 0K cma-reserved) [ 0.155507] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 [ 0.155526] Kernel/User page tables isolation: enabled [ 0.155585] ftrace: allocating 40202 entries in 158 pages [ 0.167379] ftrace: allocated 158 pages with 5 groups [ 0.168334] Dynamic Preempt: voluntary [ 0.168434] rcu: Preemptible hierarchical RCU implementation. [ 0.168435] rcu: RCU event tracing is enabled. [ 0.168436] rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=8. [ 0.168438] Trampoline variant of Tasks RCU enabled. [ 0.168438] Rude variant of Tasks RCU enabled. [ 0.168439] Tracing variant of Tasks RCU enabled. [ 0.168440] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.168441] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 [ 0.172909] NR_IRQS: 24832, nr_irqs: 2048, preallocated irqs: 16 [ 0.173165] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.173373] Console: colour dummy device 80x25 [ 0.173386] printk: legacy console [tty0] enabled [ 0.173452] ACPI: Core revision 20230628 [ 0.173780] hpet: HPET dysfunctional in PC10. Force disabled. [ 0.173782] APIC: Switch to symmetric I/O mode setup [ 0.173785] DMAR: Host address width 39 [ 0.173786] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.173800] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e [ 0.173804] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.173810] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da [ 0.173813] DMAR: RMRR base: 0x0000008d000000 end: 0x0000008f7fffff [ 0.173819] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.173821] DMAR-IR: HPET id 0 under DRHD base 0xfed91000 [ 0.173823] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.175769] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 0.175772] x2apic enabled [ 0.175864] APIC: Switched APIC routing to: cluster x2apic [ 0.179869] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e44fb6c2ab, max_idle_ns: 440795206594 ns [ 0.179880] Calibrating delay loop (skipped), value calculated using timer frequency.. 4199.88 BogoMIPS (lpj=2099944) [ 0.179939] CPU0: Thermal monitoring enabled (TM1) [ 0.180016] process: using mwait in idle threads [ 0.180021] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 [ 0.180022] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 [ 0.180030] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.180034] Spectre V2 : Mitigation: IBRS [ 0.180035] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.180037] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [ 0.180038] RETBleed: Mitigation: IBRS [ 0.180041] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.180043] Spectre V2 : User space: Mitigation: STIBP via prctl [ 0.180046] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.180058] MDS: Mitigation: Clear CPU buffers [ 0.180060] TAA: Mitigation: TSX disabled [ 0.180061] MMIO Stale Data: Mitigation: Clear CPU buffers [ 0.180068] SRBDS: Mitigation: Microcode [ 0.180079] GDS: Mitigation: Microcode [ 0.180102] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.180105] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.180107] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.180109] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' [ 0.180110] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' [ 0.180113] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.180116] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 [ 0.180118] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 [ 0.180121] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format. [ 0.180875] Freeing SMP alternatives memory: 36K [ 0.180875] pid_max: default: 32768 minimum: 301 [ 0.180875] LSM: initializing lsm=capability,landlock,yama,selinux,bpf,integrity [ 0.180875] landlock: Up and running. [ 0.180875] Yama: becoming mindful. [ 0.180875] SELinux: Initializing. [ 0.180875] LSM support for eBPF active [ 0.180875] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.180875] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.180875] smpboot: CPU0: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz (family: 0x6, model: 0x8e, stepping: 0xa) [ 0.180875] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.180875] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.180875] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.180875] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver. [ 0.180875] ... version: 4 [ 0.180875] ... bit width: 48 [ 0.180875] ... generic registers: 4 [ 0.180875] ... value mask: 0000ffffffffffff [ 0.180875] ... max period: 00007fffffffffff [ 0.180875] ... fixed-purpose events: 3 [ 0.180875] ... event mask: 000000070000000f [ 0.180875] signal: max sigframe size: 2032 [ 0.180875] Estimated ratio of average max frequency by base frequency (times 1024): 1901 [ 0.182343] rcu: Hierarchical SRCU implementation. [ 0.182345] rcu: Max phase no-delay instances is 400. [ 0.182862] smp: Bringing up secondary CPUs ... [ 0.183027] smpboot: x86: Booting SMP configuration: [ 0.183029] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 [ 0.188925] 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.188933] 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.188940] smp: Brought up 1 node, 8 CPUs [ 0.188940] smpboot: Max logical packages: 1 [ 0.188940] smpboot: Total of 8 processors activated (33599.10 BogoMIPS) [ 0.190878] devtmpfs: initialized [ 0.190968] x86/mm: Memory block size: 128MB [ 0.193677] ACPI: PM: Registering ACPI NVS region [mem 0x8a5b2000-0x8a5b2fff] (4096 bytes) [ 0.193677] ACPI: PM: Registering ACPI NVS region [mem 0x8be7a000-0x8bea2fff] (167936 bytes) [ 0.193904] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.193910] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 0.193994] pinctrl core: initialized pinctrl subsystem [ 0.194766] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.195098] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations [ 0.195105] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.195109] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.195124] audit: initializing netlink subsys (disabled) [ 0.195151] audit: type=2000 audit(1708472665.015:1): state=initialized audit_enabled=0 res=1 [ 0.195151] thermal_sys: Registered thermal governor 'bang_bang' [ 0.195151] thermal_sys: Registered thermal governor 'step_wise' [ 0.195151] thermal_sys: Registered thermal governor 'user_space' [ 0.195151] cpuidle: using governor menu [ 0.195200] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.195200] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) [ 0.195200] PCI: not using MMCONFIG [ 0.195200] PCI: Using configuration type 1 for base access [ 0.196204] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 0.196215] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.196215] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.196215] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.196215] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.196215] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.197025] ACPI: Added _OSI(Module Device) [ 0.197028] ACPI: Added _OSI(Processor Device) [ 0.197031] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.197033] ACPI: Added _OSI(Processor Aggregator Device) [ 0.250128] ACPI: 7 ACPI AML tables successfully acquired and loaded [ 0.253641] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.257242] ACPI: Dynamic OEM Table Load: [ 0.257255] ACPI: SSDT 0xFFFFA07B81BA2000 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422) [ 0.259049] ACPI: Dynamic OEM Table Load: [ 0.259059] ACPI: SSDT 0xFFFFA07B81BC3800 0005EE (v02 PmRef Cpu0Ist 00003000 INTL 20160422) [ 0.260970] ACPI: Dynamic OEM Table Load: [ 0.260978] ACPI: SSDT 0xFFFFA07B81A06A80 0000BA (v02 PmRef Cpu0Hwp 00003000 INTL 20160422) [ 0.262590] ACPI: Dynamic OEM Table Load: [ 0.262598] ACPI: SSDT 0xFFFFA07B81BC5000 000628 (v02 PmRef HwpLvt 00003000 INTL 20160422) [ 0.264786] ACPI: Dynamic OEM Table Load: [ 0.264803] ACPI: SSDT 0xFFFFA07B81BD6000 000D14 (v02 PmRef ApIst 00003000 INTL 20160422) [ 0.267519] ACPI: Dynamic OEM Table Load: [ 0.267528] ACPI: SSDT 0xFFFFA07B81BA4400 000317 (v02 PmRef ApHwp 00003000 INTL 20160422) [ 0.269316] ACPI: Dynamic OEM Table Load: [ 0.269325] ACPI: SSDT 0xFFFFA07B81BA3000 00030A (v02 PmRef ApCst 00003000 INTL 20160422) [ 0.275075] ACPI: _OSC evaluated successfully for all CPUs [ 0.275700] ACPI: Interpreter enabled [ 0.275774] ACPI: PM: (supports S0 S4 S5) [ 0.275776] ACPI: Using IOAPIC for interrupt routing [ 0.275845] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) [ 0.279253] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource [ 0.279276] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.279278] PCI: Using E820 reservations for host bridge windows [ 0.280046] ACPI: Enabled 10 GPEs in block 00 to 7F [ 0.286735] ACPI: \_SB_.PCI0.XHC_.RHUB.PX01: New power resource [ 0.286939] ACPI: \_SB_.PCI0.XHC_.RHUB.PX02: New power resource [ 0.287125] ACPI: \_SB_.PCI0.XHC_.RHUB.PX03: New power resource [ 0.287306] ACPI: \_SB_.PCI0.XHC_.RHUB.PX04: New power resource [ 0.287480] ACPI: \_SB_.PCI0.XHC_.RHUB.PX05: New power resource [ 0.287660] ACPI: \_SB_.PCI0.XHC_.RHUB.PX06: New power resource [ 0.290142] ACPI: \_SB_.PCI0.XHC_.RHUB.PX07: New power resource [ 0.290247] ACPI: \_SB_.USBC: New power resource [ 0.290936] ACPI: \_SB_.PCI0.RP01.PXP_: New power resource [ 0.291205] ACPI: \_SB_.PCI0.RP01.PXSX.PRWF: New power resource [ 0.292787] ACPI: \_SB_.PCI0.RP05.PRP5: New power resource [ 0.294757] ACPI: \_SB_.PCI0.RP09.PXP_: New power resource [ 0.307889] ACPI: \_SB_.PCI0.CAMP: New power resource [ 0.311841] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) [ 0.311852] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.314954] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 0.317156] PCI host bridge to bus 0000:00 [ 0.317160] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.317164] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.317168] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window] [ 0.317171] pci_bus 0000:00: root bus resource [mem 0x8f800000-0xdfffffff window] [ 0.317174] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window] [ 0.317176] pci_bus 0000:00: root bus resource [bus 00-fe] [ 0.319070] pci 0000:00:00.0: [8086:5914] type 00 class 0x060000 [ 0.319201] pci 0000:00:02.0: [8086:5917] type 00 class 0x030000 [ 0.319215] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc0ffffff 64bit] [ 0.319226] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref] [ 0.319233] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f] [ 0.319261] pci 0000:00:02.0: BAR 2: assigned to efifb [ 0.319269] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 0.319543] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 [ 0.319558] pci 0000:00:04.0: reg 0x10: [mem 0xc27b0000-0xc27b7fff 64bit] [ 0.319923] pci 0000:00:05.0: [8086:1919] type 00 class 0x048000 [ 0.319948] pci 0000:00:05.0: reg 0x10: [mem 0xc2000000-0xc23fffff 64bit] [ 0.319973] pci 0000:00:05.0: DMAR: Passthrough IOMMU for integrated Intel IPU [ 0.320146] pci 0000:00:13.0: [8086:9d35] type 00 class 0x000000 [ 0.320169] pci 0000:00:13.0: reg 0x10: [mem 0xc27c0000-0xc27c0fff 64bit] [ 0.320687] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 [ 0.320710] pci 0000:00:14.0: reg 0x10: [mem 0xc2780000-0xc278ffff 64bit] [ 0.320790] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.321459] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 [ 0.321482] pci 0000:00:14.2: reg 0x10: [mem 0xc27c1000-0xc27c1fff 64bit] [ 0.321687] pci 0000:00:14.3: [8086:9d32] type 00 class 0x048000 [ 0.321776] pci 0000:00:14.3: reg 0x10: [mem 0xc2790000-0xc279ffff 64bit] [ 0.322381] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 [ 0.322590] pci 0000:00:15.0: reg 0x10: [mem 0xc27c2000-0xc27c2fff 64bit] [ 0.323859] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 [ 0.324057] pci 0000:00:15.1: reg 0x10: [mem 0xc27c3000-0xc27c3fff 64bit] [ 0.325304] pci 0000:00:15.2: [8086:9d62] type 00 class 0x118000 [ 0.325514] pci 0000:00:15.2: reg 0x10: [mem 0xc27c4000-0xc27c4fff 64bit] [ 0.326770] pci 0000:00:15.3: [8086:9d63] type 00 class 0x118000 [ 0.326976] pci 0000:00:15.3: reg 0x10: [mem 0xc27c5000-0xc27c5fff 64bit] [ 0.328140] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 [ 0.328165] pci 0000:00:16.0: reg 0x10: [mem 0xc27c6000-0xc27c6fff 64bit] [ 0.328251] pci 0000:00:16.0: PME# supported from D3hot [ 0.328727] pci 0000:00:16.4: [8086:9d3e] type 00 class 0x078000 [ 0.328752] pci 0000:00:16.4: reg 0x10: [mem 0xc27c7000-0xc27c7fff 64bit] [ 0.328800] pci 0000:00:16.4: DMAR: Passthrough IOMMU for IPTS [ 0.328839] pci 0000:00:16.4: PME# supported from D3hot [ 0.328957] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 [ 0.329060] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.329680] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400 [ 0.329785] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.330395] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 [ 0.330491] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.331246] pci 0000:00:1e.0: [8086:9d27] type 00 class 0x118000 [ 0.331456] pci 0000:00:1e.0: reg 0x10: [mem 0xc27c8000-0xc27c8fff 64bit] [ 0.332605] pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100 [ 0.333021] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 [ 0.333037] pci 0000:00:1f.2: reg 0x10: [mem 0xc27bc000-0xc27bffff] [ 0.333367] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 [ 0.333392] pci 0000:00:1f.3: reg 0x10: [mem 0xc27b8000-0xc27bbfff 64bit] [ 0.333422] pci 0000:00:1f.3: reg 0x20: [mem 0xc27a0000-0xc27affff 64bit] [ 0.333478] pci 0000:00:1f.3: PME# supported from D3hot D3cold [ 0.334180] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 [ 0.334234] pci 0000:00:1f.4: reg 0x10: [mem 0xc27c9000-0xc27c90ff 64bit] [ 0.334287] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf] [ 0.334788] pci 0000:01:00.0: [11ab:2b38] type 00 class 0x020000 [ 0.334821] pci 0000:01:00.0: reg 0x10: [mem 0xc2500000-0xc25fffff 64bit pref] [ 0.334843] pci 0000:01:00.0: reg 0x18: [mem 0xc2400000-0xc24fffff 64bit pref] [ 0.336001] pci 0000:01:00.0: supports D1 D2 [ 0.336003] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold [ 0.336466] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.336476] pci 0000:00:1c.0: bridge window [mem 0xc2400000-0xc25fffff 64bit pref] [ 0.336548] pci 0000:02:00.0: [10de:1c8d] type 00 class 0x030200 [ 0.336563] pci 0000:02:00.0: reg 0x10: [mem 0xc1000000-0xc1ffffff] [ 0.336576] pci 0000:02:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref] [ 0.336589] pci 0000:02:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref] [ 0.336597] pci 0000:02:00.0: reg 0x24: [io 0x3000-0x307f] [ 0.336606] pci 0000:02:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref] [ 0.336737] pci 0000:02:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:1c.4 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link) [ 0.337038] pci 0000:00:1c.4: PCI bridge to [bus 02] [ 0.337043] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.337048] pci 0000:00:1c.4: bridge window [mem 0xc1000000-0xc1ffffff] [ 0.337053] pci 0000:00:1c.4: bridge window [mem 0x90000000-0xa1ffffff 64bit pref] [ 0.337129] pci 0000:03:00.0: [144d:a804] type 00 class 0x010802 [ 0.337154] pci 0000:03:00.0: reg 0x10: [mem 0xc2600000-0xc2603fff 64bit] [ 0.337505] pci 0000:00:1d.0: PCI bridge to [bus 03] [ 0.337511] pci 0000:00:1d.0: bridge window [mem 0xc2600000-0xc26fffff] [ 0.340105] ACPI: PCI: Interrupt link LNKA configured for IRQ 11 [ 0.340176] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [ 0.340242] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [ 0.340308] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 [ 0.340374] ACPI: PCI: Interrupt link LNKE configured for IRQ 11 [ 0.340439] ACPI: PCI: Interrupt link LNKF configured for IRQ 11 [ 0.340504] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 [ 0.340570] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 [ 0.350905] Low-power S0 idle used by default for system suspend [ 0.356458] iommu: Default domain type: Translated [ 0.356461] iommu: DMA domain TLB invalidation policy: lazy mode [ 0.356606] efivars: Registered efivars operations [ 0.357061] NetLabel: Initializing [ 0.357063] NetLabel: domain hash size = 128 [ 0.357065] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.357093] NetLabel: unlabeled traffic allowed by default [ 0.357095] PCI: Using ACPI for IRQ routing [ 0.385882] PCI: pci_cache_line_size set to 64 bytes [ 0.386264] e820: reserve RAM buffer [mem 0x8870f000-0x8bffffff] [ 0.386268] e820: reserve RAM buffer [mem 0x892c2000-0x8bffffff] [ 0.386271] e820: reserve RAM buffer [mem 0x8a5b2000-0x8bffffff] [ 0.386273] e820: reserve RAM buffer [mem 0x8b952000-0x8bffffff] [ 0.386275] e820: reserve RAM buffer [mem 0x8bd6b000-0x8bffffff] [ 0.386277] e820: reserve RAM buffer [mem 0x8bf00000-0x8bffffff] [ 0.386279] e820: reserve RAM buffer [mem 0x46f800000-0x46fffffff] [ 0.386343] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 0.386343] pci 0000:00:02.0: vgaarb: bridge control possible [ 0.386343] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 0.386343] vgaarb: loaded [ 0.386343] clocksource: Switched to clocksource tsc-early [ 0.387147] VFS: Disk quotas dquot_6.6.0 [ 0.387169] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.387266] pnp: PnP ACPI init [ 0.387395] system 00:00: [mem 0x40000000-0x403fffff] has been reserved [ 0.387603] system 00:01: [mem 0xfd000000-0xfdabffff] has been reserved [ 0.387608] system 00:01: [mem 0xfdad0000-0xfdadffff] has been reserved [ 0.387612] system 00:01: [mem 0xfdb00000-0xfdffffff] has been reserved [ 0.387615] system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved [ 0.387618] system 00:01: [mem 0xfe036000-0xfe03bfff] has been reserved [ 0.387621] system 00:01: [mem 0xfe03d000-0xfe3fffff] has been reserved [ 0.387625] system 00:01: [mem 0xfe410000-0xfe7fffff] has been reserved [ 0.388050] system 00:02: [io 0x2000-0x20fe] has been reserved [ 0.388257] system 00:03: [io 0x0680-0x069f] has been reserved [ 0.388261] system 00:03: [io 0xffff] has been reserved [ 0.388264] system 00:03: [io 0xffff] has been reserved [ 0.388266] system 00:03: [io 0xffff] has been reserved [ 0.388269] system 00:03: [io 0x1800-0x18fe] has been reserved [ 0.388271] system 00:03: [io 0x164e-0x164f] has been reserved [ 0.388484] system 00:05: [io 0x1854-0x1857] has been reserved [ 0.390349] system 00:06: [mem 0xfe020000-0xfe021fff] has been reserved [ 0.390354] system 00:06: [mem 0xfe022000-0xfe023fff] has been reserved [ 0.390358] system 00:06: [mem 0xfe024000-0xfe025fff] has been reserved [ 0.390361] system 00:06: [mem 0xfe026000-0xfe027fff] has been reserved [ 0.390364] system 00:06: [mem 0xfe028000-0xfe029fff] has been reserved [ 0.390367] system 00:06: [mem 0xfe02a000-0xfe02bfff] has been reserved [ 0.390370] system 00:06: [mem 0xfe02c000-0xfe02dfff] has been reserved [ 0.390373] system 00:06: [mem 0xfe02e000-0xfe02ffff] has been reserved [ 0.390376] system 00:06: [mem 0xfe030000-0xfe031fff] has been reserved [ 0.390379] system 00:06: [mem 0xfe032000-0xfe033fff] has been reserved [ 0.390383] system 00:06: [mem 0xfe034000-0xfe035fff] has been reserved [ 0.391193] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.391197] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.391200] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.391203] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved [ 0.391206] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.391209] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved [ 0.391213] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved [ 0.391216] system 00:07: [mem 0xff000000-0xffffffff] has been reserved [ 0.391219] system 00:07: [mem 0xfee00000-0xfeefffff] has been reserved [ 0.391222] system 00:07: [mem 0x8f800000-0x8f81ffff] has been reserved [ 0.392307] pnp: PnP ACPI: found 8 devices [ 0.399067] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.399120] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 [ 0.399181] pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit] [ 0.399553] NET: Registered PF_INET protocol family [ 0.399789] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.404274] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 0.404295] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.404306] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.404490] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 0.404954] TCP: Hash tables configured (established 131072 bind 65536) [ 0.405091] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear) [ 0.405139] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.405181] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.405301] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.405310] NET: Registered PF_XDP protocol family [ 0.405315] pci 0000:02:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window [ 0.405329] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.405337] pci 0000:00:1c.0: bridge window [mem 0xc2400000-0xc25fffff 64bit pref] [ 0.405346] pci 0000:02:00.0: BAR 6: no space for [mem size 0x00080000 pref] [ 0.405349] pci 0000:02:00.0: BAR 6: failed to assign [mem size 0x00080000 pref] [ 0.405352] pci 0000:00:1c.4: PCI bridge to [bus 02] [ 0.405355] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.405360] pci 0000:00:1c.4: bridge window [mem 0xc1000000-0xc1ffffff] [ 0.405364] pci 0000:00:1c.4: bridge window [mem 0x90000000-0xa1ffffff 64bit pref] [ 0.405370] pci 0000:00:1d.0: PCI bridge to [bus 03] [ 0.405374] pci 0000:00:1d.0: bridge window [mem 0xc2600000-0xc26fffff] [ 0.405383] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.405387] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.405390] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window] [ 0.405392] pci_bus 0000:00: resource 7 [mem 0x8f800000-0xdfffffff window] [ 0.405395] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window] [ 0.405398] pci_bus 0000:01: resource 2 [mem 0xc2400000-0xc25fffff 64bit pref] [ 0.405401] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] [ 0.405403] pci_bus 0000:02: resource 1 [mem 0xc1000000-0xc1ffffff] [ 0.405406] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref] [ 0.405408] pci_bus 0000:03: resource 1 [mem 0xc2600000-0xc26fffff] [ 0.406128] PCI: CLS 0 bytes, default 64 [ 0.406151] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.406153] software IO TLB: mapped [mem 0x000000007c903000-0x0000000080903000] (64MB) [ 0.406191] Trying to unpack rootfs image as initramfs... [ 0.406938] Initialise system trusted keyrings [ 0.406989] workingset: timestamp_bits=40 max_order=22 bucket_order=0 [ 0.407002] zbud: loaded [ 0.407439] Key type asymmetric registered [ 0.407441] Asymmetric key parser 'x509' registered [ 0.407455] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.407504] io scheduler mq-deadline registered [ 0.407506] io scheduler kyber registered [ 0.410227] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122 [ 0.410518] pcieport 0000:00:1c.4: PME: Signaling with IRQ 123 [ 0.410554] pcieport 0000:00:1c.4: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ [ 0.410924] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124 [ 0.415095] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.416055] hpet_acpi_add: no address or irqs in _CRS [ 0.417308] intel_pstate: Intel P-state driver initializing [ 0.418075] intel_pstate: HWP enabled [ 0.418096] efifb: probing for efifb [ 0.418111] efifb: showing boot graphics [ 0.420554] efifb: framebuffer at 0xb0000000, using 23500k, total 23500k [ 0.420557] efifb: mode is 3000x2000x32, linelength=12032, pages=1 [ 0.420558] efifb: scrolling: redraw [ 0.420559] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.420612] fbcon: Deferring console take-over [ 0.420613] fb0: EFI VGA frame buffer device [ 0.420688] drop_monitor: Initializing network drop monitor service [ 0.433342] NET: Registered PF_INET6 protocol family [ 0.619144] Freeing initrd memory: 39628K [ 0.624381] Segment Routing with IPv6 [ 0.624398] In-situ OAM (IOAM) with IPv6 [ 0.625428] microcode: Current revision: 0x000000f4 [ 0.625431] microcode: Updated early from: 0x000000f0 [ 0.625841] IPI shorthand broadcast: enabled [ 0.627567] sched_clock: Marking stable (620001627, 6580562)->(681951816, -55369627) [ 0.627799] registered taskstats version 1 [ 0.627910] Loading compiled-in X.509 certificates [ 0.632386] Key type .fscrypt registered [ 0.632388] Key type fscrypt-provisioning registered [ 0.632868] clk: Disabling unused clocks [ 0.633855] Freeing unused decrypted memory: 2028K [ 0.634440] Freeing unused kernel image (initmem) memory: 3004K [ 0.640863] Write protecting the kernel read-only data: 24576k [ 0.641386] Freeing unused kernel image (rodata/data gap) memory: 800K [ 0.697365] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.697367] x86/mm: Checking user space page tables [ 0.751252] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.751257] Run /init as init process [ 0.751259] with arguments: [ 0.751260] /init [ 0.751261] splash [ 0.751262] with environment: [ 0.751263] HOME=/ [ 0.751264] TERM=linux [ 0.760507] systemd[1]: Inserted module 'autofs4' [ 0.771576] systemd[1]: systemd 255.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified) [ 0.771587] systemd[1]: Detected architecture x86-64. [ 0.771589] systemd[1]: Running in initrd. [ 0.771775] systemd[1]: No hostname configured, using default hostname. [ 0.771842] systemd[1]: Hostname set to . [ 0.771924] systemd[1]: Initializing machine ID from random generator. [ 0.791350] systemd-gpt-auto-generator[108]: EFI loader partition unknown, exiting. [ 0.791356] systemd-gpt-auto-generator[108]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) [ 0.819665] systemd[1]: Queued start job for default target Initrd Default Target. [ 0.830333] systemd[1]: Expecting device /dev/disk/by-uuid/c73f0769-e175-4cc5-81cc-dd9a1b4559f9... [ 0.830404] systemd[1]: Reached target Slice Units. [ 0.830422] systemd[1]: Reached target Swaps. [ 0.830435] systemd[1]: Reached target Timer Units. [ 0.830605] systemd[1]: Listening on Journal Socket (/dev/log). [ 0.830748] systemd[1]: Listening on Journal Socket. [ 0.830899] systemd[1]: Listening on udev Control Socket. [ 0.831022] systemd[1]: Listening on udev Kernel Socket. [ 0.831036] systemd[1]: Reached target Socket Units. [ 0.832170] systemd[1]: Starting Create List of Static Device Nodes... [ 0.833986] systemd[1]: Starting Journal Service... [ 0.835051] systemd[1]: Starting Load Kernel Modules... [ 0.835757] systemd[1]: Starting Create Static Device Nodes in /dev... [ 0.836910] systemd[1]: Starting Coldplug All udev Devices... [ 0.838180] systemd[1]: Starting Virtual Console Setup... [ 0.840708] systemd[1]: Finished Create List of Static Device Nodes. [ 0.848629] systemd[1]: Finished Create Static Device Nodes in /dev. [ 0.848839] systemd[1]: Reached target Preparation for Local File Systems. [ 0.848878] systemd[1]: Reached target Local File Systems. [ 0.848907] systemd[1]: Tell Plymouth To Write Out Runtime Data was skipped because of an unmet condition check (ConditionPathExists=!/etc/initrd-release). [ 0.850367] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 0.860208] systemd-journald[116]: Collecting audit messages is disabled. [ 0.862239] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com [ 0.872003] systemd[1]: Finished Load Kernel Modules. [ 0.873495] systemd[1]: Starting Apply Kernel Variables... [ 0.876413] systemd[1]: Finished Virtual Console Setup. [ 0.883260] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 0.885478] systemd[1]: Finished Apply Kernel Variables. [ 0.896168] systemd[1]: Started Journal Service. [ 1.004903] rtc_cmos 00:04: RTC can wake from S4 [ 1.010711] tpm_tis NTC0103:00: 2.0 TPM (device-id 0xFE, rev-id 4) [ 1.020838] rtc_cmos 00:04: registered as rtc0 [ 1.020975] rtc_cmos 00:04: setting system clock to 2024-02-20T23:44:26 UTC (1708472666) [ 1.021032] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram [ 1.052158] ACPI: bus type USB registered [ 1.052224] usbcore: registered new interface driver usbfs [ 1.052246] usbcore: registered new interface driver hub [ 1.052269] usbcore: registered new device driver usb [ 1.077500] nvme nvme0: pci function 0000:03:00.0 [ 1.087645] nvme nvme0: 7/0/0 default/read/poll queues [ 1.148638] nvme0n1: p1 p2 p3 p4 p6 p7 [ 1.152892] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 1.152899] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 1.153993] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810 [ 1.154461] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 1.154466] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 1.154469] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed [ 1.154573] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.07 [ 1.154577] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.154579] usb usb1: Product: xHCI Host Controller [ 1.154587] usb usb1: Manufacturer: Linux 6.7.4 xhci-hcd [ 1.154589] usb usb1: SerialNumber: 0000:00:14.0 [ 1.154889] hub 1-0:1.0: USB hub found [ 1.154914] hub 1-0:1.0: 12 ports detected [ 1.157410] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.07 [ 1.157414] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.157416] usb usb2: Product: xHCI Host Controller [ 1.157417] usb usb2: Manufacturer: Linux 6.7.4 xhci-hcd [ 1.157419] usb usb2: SerialNumber: 0000:00:14.0 [ 1.157595] hub 2-0:1.0: USB hub found [ 1.157616] hub 2-0:1.0: 6 ports detected [ 1.398611] usb 1-1: new high-speed USB device number 2 using xhci_hcd [ 1.427593] tsc: Refined TSC clocksource calibration: 2111.998 MHz [ 1.427600] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e71768ef8b, max_idle_ns: 440795218977 ns [ 1.427661] clocksource: Switched to clocksource tsc [ 1.549702] usb 1-1: New USB device found, idVendor=045e, idProduct=0942, bcdDevice=62.79 [ 1.549708] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.549710] usb 1-1: Product: L1 USB2 Hub [ 1.549712] usb 1-1: Manufacturer: Microsoft [ 1.553194] hub 1-1:1.0: USB hub found [ 1.557374] hub 1-1:1.0: 3 ports detected [ 1.651783] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd [ 1.666779] usb 2-1: New USB device found, idVendor=045e, idProduct=0941, bcdDevice=62.79 [ 1.666783] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.666785] usb 2-1: Product: L1 USB3 Gen1 Hub [ 1.666787] usb 2-1: Manufacturer: Microsoft [ 1.668731] hub 2-1:1.0: USB hub found [ 1.669001] hub 2-1:1.0: 2 ports detected [ 1.719811] EXT4-fs (dm-2): mounted filesystem c73f0769-e175-4cc5-81cc-dd9a1b4559f9 r/w with ordered data mode. Quota mode: none. [ 1.753027] systemd-gpt-auto-generator[251]: EFI loader partition unknown, exiting. [ 1.753033] systemd-gpt-auto-generator[251]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) [ 1.883639] usb 1-1.1: new high-speed USB device number 3 using xhci_hcd [ 1.988264] usb 1-1.1: New USB device found, idVendor=045e, idProduct=0944, bcdDevice=62.88 [ 1.988270] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.988272] usb 1-1.1: Product: L2 USB2 Hub [ 1.988273] usb 1-1.1: Manufacturer: Microsoft [ 1.989299] hub 1-1.1:1.0: USB hub found [ 1.989567] hub 1-1.1:1.0: 3 ports detected [ 2.051808] usb 2-1.1: new SuperSpeed USB device number 3 using xhci_hcd [ 2.067130] usb 2-1.1: New USB device found, idVendor=045e, idProduct=0943, bcdDevice=62.88 [ 2.067134] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.067136] usb 2-1.1: Product: L2 USB3 Gen1 Hub [ 2.067138] usb 2-1.1: Manufacturer: Microsoft [ 2.091528] hub 2-1.1:1.0: USB hub found [ 2.091859] hub 2-1.1:1.0: 3 ports detected [ 2.153663] usb 1-1.3: new full-speed USB device number 4 using xhci_hcd [ 2.255716] usb 1-1.3: New USB device found, idVendor=045e, idProduct=0922, bcdDevice= b.01 [ 2.255722] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.255724] usb 1-1.3: Product: Surface Keyboard [ 2.255725] usb 1-1.3: Manufacturer: Microsoft [ 2.275201] hid: raw HID events driver (C) Jiri Kosina [ 2.282623] usbcore: registered new interface driver usbhid [ 2.282625] usbhid: USB HID core driver [ 2.286746] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input0 [ 2.338728] input: Microsoft Surface Keyboard Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input1 [ 2.338758] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input2 [ 2.338783] input: Microsoft Surface Keyboard Touchpad as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input3 [ 2.338806] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input4 [ 2.338827] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input5 [ 2.338849] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input6 [ 2.339138] hid-generic 0003:045E:0922.0001: input,hiddev96,hidraw0: USB HID v1.11 Keyboard [Microsoft Surface Keyboard] on usb-0000:00:14.0-1.3/input0 [ 2.342991] usb 1-1.1.2: new full-speed USB device number 5 using xhci_hcd [ 2.446103] systemd-journald[116]: Received SIGTERM from PID 1 (systemd). [ 2.448712] usb 1-1.1.2: New USB device found, idVendor=1050, idProduct=0407, bcdDevice= 5.12 [ 2.448717] usb 1-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.448719] usb 1-1.1.2: Product: YubiKey OTP+FIDO+CCID [ 2.448721] usb 1-1.1.2: Manufacturer: Yubico [ 2.466817] input: Yubico YubiKey OTP+FIDO+CCID as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:1050:0407.0002/input/input9 [ 2.518845] hid-generic 0003:1050:0407.0002: input,hidraw1: USB HID v1.10 Keyboard [Yubico YubiKey OTP+FIDO+CCID] on usb-0000:00:14.0-1.1.2/input0 [ 2.519766] hid-generic 0003:1050:0407.0003: hiddev97,hidraw2: USB HID v1.10 Device [Yubico YubiKey OTP+FIDO+CCID] on usb-0000:00:14.0-1.1.2/input1 [ 2.575438] systemd[1]: systemd 255.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified) [ 2.575445] systemd[1]: Detected architecture x86-64. [ 2.576450] systemd[1]: Hostname set to . [ 2.792034] systemd[1]: bpf-lsm: LSM BPF program attached [ 3.014325] systemd[1]: /etc/systemd/system/cups.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/cups/cups.sock → /run/cups/cups.sock; please update the unit file accordingly. [ 3.116329] systemd[1]: initrd-switch-root.service: Deactivated successfully. [ 3.124021] systemd[1]: Stopped initrd-switch-root.service. [ 3.124915] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 3.125594] systemd[1]: Created slice Virtual Machine and Container Slice. [ 3.126112] systemd[1]: Created slice Slice /system/getty. [ 3.126636] systemd[1]: Created slice Slice /system/modprobe. [ 3.127155] systemd[1]: Created slice Slice /system/systemd-fsck. [ 3.127624] systemd[1]: Created slice User and Session Slice. [ 3.127679] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid). [ 3.127753] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 3.127791] systemd[1]: Reached target Local Encrypted Volumes. [ 3.127827] systemd[1]: Stopped target initrd-fs.target. [ 3.127869] systemd[1]: Stopped target initrd-root-fs.target. [ 3.127892] systemd[1]: Stopped target initrd-switch-root.target. [ 3.127932] systemd[1]: Reached target Containers. [ 3.127983] systemd[1]: Reached target Path Units. [ 3.128019] systemd[1]: Reached target Remote File Systems. [ 3.128054] systemd[1]: Reached target Slice Units. [ 3.131085] systemd[1]: Listening on Process Core Dump Socket. [ 3.131327] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket. [ 3.132073] systemd[1]: Listening on udev Control Socket. [ 3.132241] systemd[1]: Listening on udev Kernel Socket. [ 3.142896] systemd[1]: Activating swap /dev/disk/by-uuid/ed5f4da6-c7ff-48ec-acec-977d08d03095... [ 3.144055] systemd[1]: Mounting Huge Pages File System... [ 3.145051] systemd[1]: Mounting POSIX Message Queue File System... [ 3.146044] systemd[1]: Mounting Kernel Debug File System... [ 3.148275] systemd[1]: Starting Create List of Static Device Nodes... [ 3.149905] systemd[1]: Starting Load Kernel Module configfs... [ 3.152036] systemd[1]: Starting Load Kernel Module drm... [ 3.152074] Adding 16777212k swap on /dev/mapper/linux-swap. Priority:-2 extents:1 across:16777212k SS [ 3.153871] systemd[1]: Starting Load Kernel Module efi_pstore... [ 3.155608] systemd[1]: Starting Load Kernel Module fuse... [ 3.156940] systemd[1]: Starting mount-pstore.service... [ 3.157062] systemd[1]: plymouth-switch-root.service: Deactivated successfully. [ 3.157154] systemd[1]: Stopped Plymouth switch root service. [ 3.158924] systemd[1]: Starting Create SUID/SGID Wrappers... [ 3.160422] systemd[1]: Started Forward Password Requests to Plymouth. [ 3.164326] pstore: Using crash dump compression: deflate [ 3.164836] systemd[1]: Starting Journal Service... [ 3.166881] systemd[1]: Starting Load Kernel Modules... [ 3.169023] systemd[1]: Starting Remount Root and Kernel File Systems... [ 3.172812] systemd[1]: Starting Coldplug All udev Devices... [ 3.172916] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. [ 3.172999] systemd[1]: Stopped Virtual Console Setup. [ 3.173173] pstore: Registered efi_pstore as persistent store backend [ 3.178608] systemd[1]: Activated swap /dev/disk/by-uuid/ed5f4da6-c7ff-48ec-acec-977d08d03095. [ 3.181563] systemd[1]: Mounted Huge Pages File System. [ 3.181915] systemd[1]: Mounted POSIX Message Queue File System. [ 3.182115] systemd[1]: Mounted Kernel Debug File System. [ 3.183858] fuse: init (API version 7.39) [ 3.192333] systemd-journald[372]: Collecting audit messages is disabled. [ 3.193595] mc: Linux media interface: v0.10 [ 3.194893] systemd[1]: Finished Create List of Static Device Nodes. [ 3.195488] EXT4-fs (dm-2): re-mounted c73f0769-e175-4cc5-81cc-dd9a1b4559f9 r/w. Quota mode: none. [ 3.195590] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 3.207877] systemd[1]: Finished Load Kernel Module configfs. [ 3.209170] systemd[1]: Started Journal Service. [ 3.236492] ACPI: bus type drm_connector registered [ 3.243223] videodev: Linux video capture interface: v2.00 [ 3.263799] v4l2loopback: loading out-of-tree module taints kernel. [ 3.264831] v4l2loopback driver version 0.12.7 loaded [ 3.348494] systemd-journald[372]: Received client request to flush runtime journal. [ 3.349835] systemd-journald[372]: File /var/log/journal/467713d56f7c4eeebc8b2f99e1287b46/system.journal corrupted or uncleanly shut down, renaming and replacing. [ 3.497080] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 3.506833] tun: Universal TUN/TAP device driver, 1.6 [ 3.517042] loop: module loaded [ 3.544885] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 3.544888] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld . All Rights Reserved. [ 3.683054] ACPI: AC: AC Adapter [ADP1] (off-line) [ 3.688263] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input10 [ 3.688536] ACPI: button: Lid Switch [LID0] [ 3.690967] Consider using thermal netlink events interface [ 3.702245] surface_hotplug MSHW0153:00: failed to set up IRQ 0: -517 [ 3.707697] surface_hotplug MSHW0153:00: failed to set up IRQ 0: -517 [ 3.725507] intel_pmc_core INT33A1:00: initialized [ 3.743163] ACPI Warning: \_SB.SHPS._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20230628/nsarguments-61) [ 3.829616] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input11 [ 3.864991] intel_ish_ipc 0000:00:13.0: enabling device (0000 -> 0002) [ 3.869637] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002) [ 3.870040] idma64 idma64.0: Found Intel integrated DMA 64-bit [ 3.886067] Linux agpgart interface v0.103 [ 3.886603] input: Microsoft Surface Keyboard Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input12 [ 3.886836] mei_me 0000:00:16.4: enabling device (0004 -> 0006) [ 3.886884] mei_me 0000:00:16.0: enabling device (0004 -> 0006) [ 3.893039] ipu3_imgu: module is from the staging directory, the quality is unknown, you have been warned. [ 3.894403] EXT4-fs (dm-1): mounted filesystem 37d7f7ba-c0e0-480a-8bf4-98ad7545e20f r/w with ordered data mode. Quota mode: none. [ 3.895548] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002) [ 3.896192] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input13 [ 3.898790] input: Microsoft Surface Keyboard Touchpad as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input14 [ 3.898872] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input15 [ 3.898935] ipu3-imgu 0000:00:05.0: enabling device (0000 -> 0002) [ 3.898947] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input16 [ 3.899093] ipu3-imgu 0000:00:05.0: device 0x1919 (rev: 0x1) [ 3.899120] ipu3-imgu 0000:00:05.0: physical base address 0x00000000c2000000, 4194304 bytes [ 3.899187] idma64 idma64.1: Found Intel integrated DMA 64-bit [ 3.899371] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input17 [ 3.899849] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.900864] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.901413] hid-multitouch 0003:045E:0922.0001: input,hiddev96,hidraw0: USB HID v1.11 Keyboard [Microsoft Surface Keyboard] on usb-0000:00:14.0-1.3/input0 [ 3.901675] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.903694] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.904222] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.904856] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.904995] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.905278] ACPI: thermal: [Firmware Bug]: No valid trip points! [ 3.914925] intel-lpss 0000:00:15.2: enabling device (0000 -> 0002) [ 3.915246] idma64 idma64.2: Found Intel integrated DMA 64-bit [ 3.940014] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003) [ 3.940333] intel-lpss 0000:00:15.3: enabling device (0000 -> 0002) [ 3.940500] i801_smbus 0000:00:1f.4: SPD Write Disable is set [ 3.940526] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt [ 3.944746] i2c i2c-3: 2/2 memory slots populated (from DMI) [ 3.970844] ipu3-cio2 0000:00:14.3: Found supported sensor INT33BE:00 [ 3.971414] ipu3-cio2 0000:00:14.3: Found supported sensor INT347A:00 [ 3.971474] idma64 idma64.3: Found Intel integrated DMA 64-bit [ 3.971681] ipu3-cio2 0000:00:14.3: Found supported sensor INT347E:00 [ 3.971819] ipu3-cio2 0000:00:14.3: Connected 3 cameras [ 3.971845] ipu3-cio2 0000:00:14.3: enabling device (0000 -> 0002) [ 3.973720] ipu3-cio2 0000:00:14.3: device 0x9d32 (rev: 0x1) [ 3.975277] ov5693 i2c-INT33BE:00: supply avdd not found, using dummy regulator [ 3.975362] ov5693 i2c-INT33BE:00: supply dovdd not found, using dummy regulator [ 3.975377] ov5693 i2c-INT33BE:00: supply dvdd not found, using dummy regulator [ 3.992152] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.992269] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.992296] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 4.021460] ov7251 i2c-INT347E:00: supply vdddo not found, using dummy regulator [ 4.021555] ov7251 i2c-INT347E:00: supply vddd not found, using dummy regulator [ 4.021570] ov7251 i2c-INT347E:00: supply vdda not found, using dummy regulator [ 4.022261] mousedev: PS/2 mouse device common for all mice [ 4.027889] ov7251 i2c-INT347E:00: OV7251 revision 7 (1F) detected at address 0x60 [ 4.031221] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002) [ 4.031974] idma64 idma64.4: Found Intel integrated DMA 64-bit [ 4.055926] ov8865 i2c-INT347A:00: Instantiated dw9719 VCM [ 4.057165] ipu3-imgu 0000:00:05.0: loaded firmware version irci_irci_ecr-master_20161208_0213_20170112_1500, 17 binaries, 1212984 bytes [ 4.057636] ipu3-imgu 0000:00:05.0: failed initialize subdev media entity (-22) [ 4.057643] ipu3-imgu 0000:00:05.0: failed to register subdev0 ret (-22) [ 4.057646] ipu3-imgu 0000:00:05.0: failed to register pipes (-22) [ 4.057650] ipu3-imgu 0000:00:05.0: failed to create V4L2 devices (-22) [ 4.089191] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 4.092218] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 4.092403] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ 4.148672] i801_smbus 0000:00:1f.4: Transaction timeout [ 4.150675] i801_smbus 0000:00:1f.4: Failed terminating the transaction [ 4.150695] i801_smbus 0000:00:1f.4: SMBus is busy, can't use it! [ 4.182684] ipu3-imgu 0000:00:05.0: wait css idle timeout [ 4.182716] ipu3-imgu: probe of 0000:00:05.0 failed with error -22 [ 4.193957] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer [ 4.193962] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules [ 4.193963] RAPL PMU: hw unit of domain package 2^-14 Joules [ 4.193965] RAPL PMU: hw unit of domain dram 2^-14 Joules [ 4.193966] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules [ 4.193968] RAPL PMU: hw unit of domain psys 2^-14 Joules [ 4.205420] cryptd: max_cpu_qlen set to 1000 [ 4.228997] mwifiex_pcie 0000:01:00.0: quirk reset_d3cold enabled [ 4.229004] mwifiex_pcie 0000:01:00.0: quirk do_flr_on_bridge enabled [ 4.229006] mwifiex_pcie 0000:01:00.0: quirk no_brigde_d3 enabled [ 4.229097] mwifiex_pcie 0000:01:00.0: enabling device (0000 -> 0002) [ 4.229416] mwifiex_pcie: PCI memory map Virt0: ffffbb7641000000 PCI memory map Virt2: ffffbb7641200000 [ 4.261130] AVX2 version of gcm_enc/dec engaged. [ 4.261234] AES CTR mode by8 optimization enabled [ 4.299975] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002) [ 4.317106] intel_rapl_common: Found RAPL domain package [ 4.317110] intel_rapl_common: Found RAPL domain dram [ 4.394782] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.394810] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) [ 4.406916] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 4.410978] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 4.416036] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in event mode [ 4.426537] input: IPTS 045E:0021 Touchscreen as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0004/input/input20 [ 4.430439] input: IPTS 045E:0021 as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0004/input/input21 [ 4.433412] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.436754] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.438750] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.517866] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.517872] dw-apb-uart.4: ttyS0 at MMIO 0xc27c8000 (irq = 20, base_baud = 3000000) is a 16550A [ 4.518374] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.519642] serial serial0: tty port ttyS0 registered [ 4.519685] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.548298] intel_rapl_common: Found RAPL domain package [ 4.548302] intel_rapl_common: Found RAPL domain core [ 4.548304] intel_rapl_common: Found RAPL domain uncore [ 4.548306] intel_rapl_common: Found RAPL domain dram [ 4.548307] intel_rapl_common: Found RAPL domain psys [ 4.548548] hid-generic 0000:045E:0021.0004: input,hidraw3: HID v0.00 Device [IPTS 045E:0021] on [ 4.548640] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.552789] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.558058] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.569355] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.577195] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.578640] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.580040] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.580537] surface_serial_hub serial0-0: SAM firmware version: 182.2304.139 [ 4.581883] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.583067] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.585915] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.592557] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.606500] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.616186] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.622565] input: Microsoft Surface DTX Device Mode Switch as /devices/platform/MSHW0133:00/input/input22 [ 4.632528] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.638276] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.685635] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400) [ 4.689773] dw9719 i2c-INT347A:00-VCM: supply vdd not found, using dummy regulator [ 4.700541] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 4.717705] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.721836] ACPI Warning: \_SB._SAN._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230628/nsarguments-61) [ 4.727388] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.767504] systemd-journald[372]: File /var/log/journal/467713d56f7c4eeebc8b2f99e1287b46/user-1000.journal corrupted or uncleanly shut down, renaming and replacing. [ 4.796375] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1 [ 4.820767] hid-generic 001F:8087:0AC2.0005: hidraw4: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on [ 4.820841] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.831670] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.867858] ACPI: battery: Slot [BAT1] (battery present) [ 4.867966] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.974320] surface_serial_hub serial0-0: rx: parser: invalid payload CRC [ 4.974327] surface_serial_hub serial0-0: rx: parser: invalid start of frame, skipping [ 4.975268] surface_serial_hub serial0-0: rx: parser: invalid payload CRC [ 4.975272] surface_serial_hub serial0-0: rx: parser: invalid start of frame, skipping [ 4.982300] ACPI: battery: Slot [BAT2] (battery present) [ 4.982442] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.315566] intel_tcc_cooling: Programmable TCC Offset detected [ 5.316063] i915: unknown parameter 'fastboot' ignored [ 5.316251] hid-sensor-hub 001F:8087:0AC2.0005: hidraw4: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on [ 5.318940] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.321191] i915 0000:00:02.0: vgaarb: deactivate vga console [ 5.323577] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 5.324665] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915]) [ 5.328547] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4) [ 5.365353] i915 0000:00:02.0: [drm] [ENCODER:102:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it [ 5.368297] i915 0000:00:02.0: [drm] [ENCODER:118:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it [ 5.383667] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.384769] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.385818] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.386827] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.387820] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.396483] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.397271] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.398120] snd_soc_skl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.403373] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 0 [ 5.406066] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 5.406372] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input23 [ 5.406531] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 5.406641] i915 display info: display version: 9 [ 5.406645] i915 display info: cursor_needs_physical: no [ 5.406648] i915 display info: has_cdclk_crawl: no [ 5.406649] i915 display info: has_cdclk_squash: no [ 5.406651] i915 display info: has_ddi: yes [ 5.406652] i915 display info: has_dp_mst: yes [ 5.406653] i915 display info: has_dsb: no [ 5.406654] i915 display info: has_fpga_dbg: yes [ 5.406655] i915 display info: has_gmch: no [ 5.406656] i915 display info: has_hotplug: yes [ 5.406657] i915 display info: has_hti: no [ 5.406658] i915 display info: has_ipc: yes [ 5.406659] i915 display info: has_overlay: no [ 5.406659] i915 display info: has_psr: yes [ 5.406660] i915 display info: has_psr_hw_tracking: yes [ 5.406661] i915 display info: overlay_needs_physical: no [ 5.406662] i915 display info: supports_tv: no [ 5.406663] i915 display info: has_hdcp: yes [ 5.406664] i915 display info: has_dmc: yes [ 5.406665] i915 display info: has_dsc: no [ 5.430394] input: IPTS Touch as /devices/virtual/input/input24 [ 5.430649] input: IPTS Stylus as /devices/virtual/input/input25 [ 5.431536] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Stopping IPTS [ 5.480598] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) [ 5.488203] fbcon: i915drmfb (fb0) is primary device [ 5.488208] fbcon: Deferring console take-over [ 5.488233] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device [ 5.564905] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC298: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker [ 5.564952] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 5.564978] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) [ 5.565000] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 [ 5.565014] snd_hda_codec_realtek hdaudioC0D0: inputs: [ 5.565027] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18 [ 5.565044] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12 [ 5.636075] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26 [ 5.636211] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27 [ 5.636307] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28 [ 5.636409] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29 [ 5.636514] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30 [ 5.858870] mwifiex_pcie 0000:01:00.0: info: FW download over, size 723540 bytes [ 6.484634] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 6.495960] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 6.499421] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in poll mode [ 6.557651] usb 1-6: new high-speed USB device number 6 using xhci_hcd [ 6.684671] usb 1-6: New USB device found, idVendor=1286, idProduct=204c, bcdDevice=32.01 [ 6.684676] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 6.684678] usb 1-6: Product: Bluetooth and Wireless LAN Composite Device [ 6.684680] usb 1-6: Manufacturer: Marvell [ 6.684681] usb 1-6: SerialNumber: 0000000000000000 [ 6.793661] Bluetooth: Core ver 2.22 [ 6.793687] NET: Registered PF_BLUETOOTH protocol family [ 6.793689] Bluetooth: HCI device and connection manager initialized [ 6.793693] Bluetooth: HCI socket layer initialized [ 6.793695] Bluetooth: L2CAP socket layer initialized [ 6.793699] Bluetooth: SCO socket layer initialized [ 6.829194] usbcore: registered new interface driver btusb [ 6.829890] Bluetooth: hci0: unexpected event for opcode 0x0000 [ 6.829900] Bluetooth: hci0: unexpected event for opcode 0x0000 [ 6.902283] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 6.902290] Bluetooth: BNEP socket layer initialized [ 6.902636] mwifiex_pcie 0000:01:00.0: WLAN FW is active [ 6.979541] Bluetooth: MGMT ver 1.22 [ 6.983255] NET: Registered PF_ALG protocol family [ 7.044033] mwifiex_pcie 0000:01:00.0: Bad HW revision detected, disabling deep sleep [ 7.060465] mwifiex_pcie 0000:01:00.0: info: MWIFIEX VERSION: mwifiex 1.0 (15.68.19.p21) [ 7.060472] mwifiex_pcie 0000:01:00.0: driver_version = mwifiex 1.0 (15.68.19.p21) [ 7.069058] mwifiex_pcie 0000:01:00.0 wlp1s0: renamed from mlan0 [ 7.150469] NET: Registered PF_PACKET protocol family [ 7.189797] ------------[ cut here ]------------ [ 7.189801] memcpy: detected field-spanning write (size 73) of single field "ext_scan->tlv_buffer" at drivers/net/wireless/marvell/mwifiex/scan.c:2251 (size 1) [ 7.189843] WARNING: CPU: 0 PID: 1289 at drivers/net/wireless/marvell/mwifiex/scan.c:2251 mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 7.189879] Modules linked in: af_packet nls_iso8859_1 nls_cp437 vfat fat cmac algif_hash algif_skcipher af_alg bnep btusb btrtl btintel btbcm btmtk bluetooth ecdh_generic ecc snd_sof_pci_intel_skl snd_sof_intel_hda_common snd_soc_hdac_hda soundwire_intel snd_sof_intel_hda_mlink soundwire_cadence snd_sof_intel_hda snd_hda_codec_hdmi snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_hda_codec_realtek snd_sof_utils soundwire_generic_allocation snd_hda_codec_generic soundwire_bus ledtrig_audio snd_soc_avs snd_soc_hda_codec surface_platform_profile platform_profile snd_soc_skl hid_sensor_rotation hid_sensor_als hid_sensor_accel_3d hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common snd_soc_sst_ipc industrialio snd_soc_sst_dsp snd_hda_ext_core snd_soc_acpi_intel_match intel_tcc_cooling x86_pkg_temp_thermal hid_sensor_hub snd_soc_acpi battery intel_powerclamp intel_ishtp_hid i915 snd_soc_core iTCO_wdt coretemp intel_pmc_bxt msr dw9719 8250_dw intel_rapl_msr crc32_pclmul snd_compress [ 7.189973] watchdog xt_conntrack polyval_clmulni mei_hdcp mei_pxp ac97_bus snd_pcm_dmaengine nf_conntrack polyval_generic gf128mul ghash_clmulni_intel snd_hda_intel nf_defrag_ipv6 sha512_ssse3 ipts nf_defrag_ipv4 drm_buddy sha512_generic snd_intel_dspcfg snd_intel_sdw_acpi sha256_ssse3 snd_hda_codec ip6t_rpfilter ttm sha1_ssse3 processor_thermal_device_pci_legacy ipt_rpfilter aesni_intel drm_display_helper processor_thermal_device snd_hda_core mwifiex_pcie processor_thermal_wt_hint libaes snd_hwdep crypto_simd cec cryptd snd_pcm processor_thermal_rfim mwifiex drm_kms_helper xt_pkttype snd_timer processor_thermal_rapl rapl surface_gpe cfg80211 intel_cstate intel_skl_int3472_tps68470 intel_uncore joydev mousedev snd ipu3_cio2 intel_rapl_common evdev intel_gtt i2c_i801 tps68470_regulator xt_LOG soundcore i2c_smbus thermal ipu3_imgu(C) nf_log_syslog ov5693 agpgart mei_me processor_thermal_wt_req processor_thermal_power_floor intel_lpss_pci ov8865 ov7251 ipu_bridge videobuf2_dma_sg intel_ish_ipc input_leds [ 7.190048] processor_thermal_mbox intel_xhci_usb_role_switch clk_tps68470 v4l2_cci xt_tcpudp i2c_algo_bit videobuf2_memops intel_lpss rfkill mei idma64 videobuf2_v4l2 virt_dma video intel_pch_thermal intel_soc_dts_iosf videobuf2_common v4l2_fwnode intel_ishtp roles v4l2_async intel_skl_int3472_discrete mac_hid nft_compat hid_multitouch surface_aggregator_registry surface_dtx surface_acpi_notify wmi pinctrl_sunrisepoint surfacepro3_button int3403_thermal intel_pmc_core acpi_tad int340x_thermal_zone surface_hotplug surface_aggregator button dptf_power soc_button_array int3400_thermal acpi_thermal_rel acpi_pad ac nf_tables sch_fq_codel libcrc32c uinput ctr wireguard curve25519_x86_64 libchacha20poly1305 chacha_x86_64 poly1305_x86_64 libcurve25519_generic libchacha ip6_udp_tunnel udp_tunnel atkbd libps2 serio vivaldi_fmap loop cpufreq_powersave tun tap macvlan bridge stp llc kvm_intel kvm irqbypass v4l2loopback(O) videodev drm mc led_class fuse backlight efi_pstore configfs nfnetlink efivarfs dmi_sysfs ip_tables [ 7.190132] x_tables hid_generic usbhid hid ext4 crc32c_generic crc16 mbcache jbd2 xhci_pci xhci_pci_renesas firmware_class nvme xhci_hcd nvme_core t10_pi crc64_rocksoft crc64 tpm_crb crc_t10dif crct10dif_generic crct10dif_pclmul usbcore crc32c_intel crct10dif_common usb_common rtc_cmos tpm_tis tpm_tis_core dm_snapshot dm_bufio dm_mod dax tpm rng_core autofs4 [ 7.190169] CPU: 0 PID: 1289 Comm: wpa_supplicant Tainted: G C O 6.7.4 #1-NixOS [ 7.190173] Hardware name: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 7.190176] RIP: 0010:mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 7.190203] Code: 35 02 00 00 75 c7 c6 05 f8 34 02 00 01 90 b9 01 00 00 00 48 c7 c2 b0 91 4b c1 4c 89 e6 48 c7 c7 e0 8f 4b c1 e8 eb 65 ae eb 90 <0f> 0b 90 90 eb 9d 0f 1f 40 00 90 90 90 90 90 90 90 90 90 90 90 90 [ 7.190206] RSP: 0018:ffffbb76416bf810 EFLAGS: 00010286 [ 7.190210] RAX: 0000000000000000 RBX: ffffa07b96055000 RCX: 0000000000000027 [ 7.190212] RDX: ffffa07edf221548 RSI: 0000000000000001 RDI: ffffa07edf221540 [ 7.190215] RBP: ffffa07b9e8bd0c0 R08: 0000000000000000 R09: ffffbb76416bf6b0 [ 7.190217] R10: 0000000000000003 R11: ffffffffae738a68 R12: 0000000000000049 [ 7.190219] R13: ffffa07b9e8bd0cc R14: ffffa07b9605500b R15: 0000000000000107 [ 7.190221] FS: 00007fa6300b1840(0000) GS:ffffa07edf200000(0000) knlGS:0000000000000000 [ 7.190224] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 7.190227] CR2: 0000000001796ab8 CR3: 000000012374a006 CR4: 00000000003706f0 [ 7.190229] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 7.190231] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 7.190233] Call Trace: [ 7.190236] [ 7.190238] ? mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 7.190262] ? __warn+0x81/0x130 [ 7.190270] ? mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 7.190296] ? report_bug+0x171/0x1a0 [ 7.190304] ? handle_bug+0x3d/0x80 [ 7.190309] ? exc_invalid_op+0x17/0x70 [ 7.190314] ? asm_exc_invalid_op+0x1a/0x20 [ 7.190322] ? mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 7.190347] mwifiex_send_cmd+0x1db/0x400 [mwifiex] [ 7.190367] mwifiex_scan_networks+0x956/0xe50 [mwifiex] [ 7.190394] mwifiex_cfg80211_scan+0x287/0x4a0 [mwifiex] [ 7.190417] rdev_scan+0x25/0xd0 [cfg80211] [ 7.190501] nl80211_trigger_scan+0x381/0x7b0 [cfg80211] [ 7.190575] genl_family_rcv_msg_doit+0xef/0x150 [ 7.190594] genl_rcv_msg+0x1b3/0x2c0 [ 7.190599] ? __pfx_nl80211_pre_doit+0x10/0x10 [cfg80211] [ 7.190673] ? __pfx_nl80211_trigger_scan+0x10/0x10 [cfg80211] [ 7.190744] ? __pfx_nl80211_post_doit+0x10/0x10 [cfg80211] [ 7.190811] ? __pfx_genl_rcv_msg+0x10/0x10 [ 7.190814] netlink_rcv_skb+0x58/0x110 [ 7.190823] genl_rcv+0x28/0x40 [ 7.190828] netlink_unicast+0x1a3/0x290 [ 7.190833] netlink_sendmsg+0x254/0x4d0 [ 7.190840] ____sys_sendmsg+0x39c/0x3d0 [ 7.190845] ? copy_msghdr_from_user+0x7d/0xc0 [ 7.190850] ___sys_sendmsg+0x9a/0xe0 [ 7.190860] __sys_sendmsg+0x7a/0xd0 [ 7.190866] do_syscall_64+0x44/0x100 [ 7.190871] entry_SYSCALL_64_after_hwframe+0x6f/0x77 [ 7.190876] RIP: 0033:0x7fa62fad0394 [ 7.190904] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d d5 1f 0d 00 00 74 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89 [ 7.190907] RSP: 002b:00007ffc58d0cd88 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 7.190911] RAX: ffffffffffffffda RBX: 00000000017217f0 RCX: 00007fa62fad0394 [ 7.190913] RDX: 0000000000000000 RSI: 00007ffc58d0cdc0 RDI: 0000000000000005 [ 7.190915] RBP: 00000000017920c0 R08: 0000000000000004 R09: 0000000000000001 [ 7.190917] R10: 00007ffc58d0cea4 R11: 0000000000000202 R12: 0000000001721700 [ 7.190919] R13: 00007ffc58d0cdc0 R14: 0000000000000000 R15: 00007ffc58d0cea4 [ 7.190924] [ 7.190926] ---[ end trace 0000000000000000 ]--- [ 9.450198] rfkill: input handler disabled [ 10.244613] Bluetooth: RFCOMM TTY layer initialized [ 10.244626] Bluetooth: RFCOMM socket layer initialized [ 10.244637] Bluetooth: RFCOMM ver 1.11 [ 10.245289] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c8 [ 10.275011] mwifiex_pcie 0000:01:00.0: info: associated to bssid 3c:df:a9:14:d7:c8 successfully [ 13.236361] rfkill: input handler enabled [ 44.984754] mwifiex_pcie 0000:01:00.0: info: successfully disconnected from 3c:df:a9:14:d7:c8: reason code 3 [ 44.987313] mwifiex_pcie 0000:01:00.0: PREP_CMD: FW in reset state [ 44.987316] mwifiex_pcie 0000:01:00.0: deleting the crypto keys [ 44.987317] mwifiex_pcie 0000:01:00.0: PREP_CMD: FW in reset state [ 44.987319] mwifiex_pcie 0000:01:00.0: deleting the crypto keys [ 44.987320] mwifiex_pcie 0000:01:00.0: PREP_CMD: FW in reset state [ 44.987321] mwifiex_pcie 0000:01:00.0: deleting the crypto keys [ 44.987322] mwifiex_pcie 0000:01:00.0: PREP_CMD: FW in reset state [ 44.987323] mwifiex_pcie 0000:01:00.0: deleting the crypto keys [ 44.987407] mwifiex_pcie 0000:01:00.0: PREP_CMD: FW in reset state [ 44.987478] mwifiex_pcie 0000:01:00.0: PREP_CMD: FW in reset state [ 44.990189] mwifiex_pcie 0000:01:00.0: info: shutdown mwifiex... [ 44.990378] mwifiex_pcie 0000:01:00.0: PREP_CMD: card is removed [ 44.990697] mwifiex_pcie 0000:01:00.0: PREP_CMD: card is removed [ 45.018054] mwifiex_pcie 0000:01:00.0: performing cancel_work_sync()... [ 45.018083] mwifiex_pcie 0000:01:00.0: cancel_work_sync() done [ 58.736957] PM: suspend entry (s2idle) [ 58.795377] Filesystems sync: 0.058 seconds [ 58.834420] Freezing user space processes [ 58.836298] Freezing user space processes completed (elapsed 0.001 seconds) [ 58.836310] OOM killer disabled. [ 58.836313] Freezing remaining freezable tasks [ 58.837261] Freezing remaining freezable tasks completed (elapsed 0.000 seconds) [ 58.837270] printk: Suspending console(s) (use no_console_suspend to debug) [ 58.937809] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Stopping IPTS [ 59.238089] intel_pch_thermal 0000:00:14.2: CPU-PCH is cool [36C] [ 78.768963] surface_acpi_notify MSHW0091:00: rqst: device is suspended, not executing [ 78.781701] surface_acpi_notify MSHW0091:00: rqst: device is suspended, not executing [ 78.784142] surface_acpi_notify MSHW0091:00: ETWL(0x01, 0x02): RQST(2, 13, 1) error: 5 [ 79.071533] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 79.072212] OOM killer enabled. [ 79.072219] Restarting tasks ... done. [ 79.074461] random: crng reseeded on system resumption [ 79.078883] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 79.085126] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in event mode [ 79.085646] input: IPTS 045E:0021 Touchscreen as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0006/input/input31 [ 79.085785] input: IPTS 045E:0021 as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0006/input/input32 [ 79.110468] PM: suspend exit [ 79.192875] hid-generic 0000:045E:0021.0006: input,hidraw5: HID v0.00 Device [IPTS 045E:0021] on [ 79.193427] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915]) [ 79.243394] input: IPTS Touch as /devices/virtual/input/input33 [ 79.243774] input: IPTS Stylus as /devices/virtual/input/input34 [ 79.244136] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Stopping IPTS [ 79.302426] mwifiex_pcie: unknown parameter 'mwifiex' ignored [ 79.302595] mwifiex_pcie 0000:01:00.0: quirk reset_d3cold enabled [ 79.302598] mwifiex_pcie 0000:01:00.0: quirk do_flr_on_bridge enabled [ 79.302600] mwifiex_pcie 0000:01:00.0: quirk no_brigde_d3 enabled [ 79.303361] mwifiex_pcie: PCI memory map Virt0: ffffbb7642900000 PCI memory map Virt2: ffffbb7642b00000 [ 79.347921] mwifiex_pcie 0000:01:00.0: WLAN FW already running! Skip FW dnld [ 79.347926] mwifiex_pcie 0000:01:00.0: WLAN FW is active [ 79.457289] mwifiex_pcie 0000:01:00.0: Bad HW revision detected, disabling deep sleep [ 79.481331] mwifiex_pcie 0000:01:00.0: info: MWIFIEX VERSION: mwifiex 1.0 (15.68.19.p21) [ 79.481347] mwifiex_pcie 0000:01:00.0: driver_version = mwifiex 1.0 (15.68.19.p21) [ 79.495982] mwifiex_pcie 0000:01:00.0 wlp1s0: renamed from mlan0 [ 79.608626] ------------[ cut here ]------------ [ 79.608634] memcpy: detected field-spanning write (size 73) of single field "ext_scan->tlv_buffer" at drivers/net/wireless/marvell/mwifiex/scan.c:2251 (size 1) [ 79.608662] WARNING: CPU: 3 PID: 1289 at drivers/net/wireless/marvell/mwifiex/scan.c:2251 mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 79.608726] Modules linked in: mwifiex_pcie mwifiex rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet nls_iso8859_1 nls_cp437 vfat fat cmac algif_hash algif_skcipher af_alg bnep btusb btrtl btintel btbcm btmtk bluetooth ecdh_generic ecc snd_sof_pci_intel_skl snd_sof_intel_hda_common snd_soc_hdac_hda soundwire_intel snd_sof_intel_hda_mlink soundwire_cadence snd_sof_intel_hda snd_hda_codec_hdmi snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_hda_codec_realtek snd_sof_utils soundwire_generic_allocation snd_hda_codec_generic soundwire_bus ledtrig_audio snd_soc_avs snd_soc_hda_codec surface_platform_profile platform_profile snd_soc_skl hid_sensor_rotation hid_sensor_als hid_sensor_accel_3d hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common snd_soc_sst_ipc industrialio snd_soc_sst_dsp snd_hda_ext_core snd_soc_acpi_intel_match intel_tcc_cooling x86_pkg_temp_thermal hid_sensor_hub snd_soc_acpi battery intel_powerclamp intel_ishtp_hid i915 snd_soc_core iTCO_wdt [ 79.608866] coretemp intel_pmc_bxt msr dw9719 8250_dw intel_rapl_msr crc32_pclmul snd_compress watchdog xt_conntrack polyval_clmulni mei_hdcp mei_pxp ac97_bus snd_pcm_dmaengine nf_conntrack polyval_generic gf128mul ghash_clmulni_intel snd_hda_intel nf_defrag_ipv6 sha512_ssse3 ipts nf_defrag_ipv4 drm_buddy sha512_generic snd_intel_dspcfg snd_intel_sdw_acpi sha256_ssse3 snd_hda_codec ip6t_rpfilter ttm sha1_ssse3 processor_thermal_device_pci_legacy ipt_rpfilter aesni_intel drm_display_helper processor_thermal_device snd_hda_core processor_thermal_wt_hint libaes snd_hwdep crypto_simd cec cryptd snd_pcm processor_thermal_rfim drm_kms_helper xt_pkttype snd_timer processor_thermal_rapl rapl surface_gpe cfg80211 intel_cstate intel_skl_int3472_tps68470 intel_uncore joydev mousedev snd ipu3_cio2 intel_rapl_common evdev intel_gtt i2c_i801 tps68470_regulator xt_LOG soundcore i2c_smbus thermal ipu3_imgu(C) nf_log_syslog ov5693 agpgart mei_me processor_thermal_wt_req processor_thermal_power_floor intel_lpss_pci ov8865 ov7251 [ 79.609020] ipu_bridge videobuf2_dma_sg intel_ish_ipc input_leds processor_thermal_mbox intel_xhci_usb_role_switch clk_tps68470 v4l2_cci xt_tcpudp i2c_algo_bit videobuf2_memops intel_lpss rfkill mei idma64 videobuf2_v4l2 virt_dma video intel_pch_thermal intel_soc_dts_iosf videobuf2_common v4l2_fwnode intel_ishtp roles v4l2_async intel_skl_int3472_discrete mac_hid nft_compat hid_multitouch surface_aggregator_registry surface_dtx surface_acpi_notify wmi pinctrl_sunrisepoint surfacepro3_button int3403_thermal intel_pmc_core acpi_tad int340x_thermal_zone surface_hotplug surface_aggregator button dptf_power soc_button_array int3400_thermal acpi_thermal_rel acpi_pad ac nf_tables sch_fq_codel libcrc32c uinput ctr wireguard curve25519_x86_64 libchacha20poly1305 chacha_x86_64 poly1305_x86_64 libcurve25519_generic libchacha ip6_udp_tunnel udp_tunnel atkbd libps2 serio vivaldi_fmap loop cpufreq_powersave tun tap macvlan bridge stp llc kvm_intel kvm irqbypass v4l2loopback(O) videodev drm mc led_class fuse backlight efi_pstore [ 79.609195] configfs nfnetlink efivarfs dmi_sysfs ip_tables x_tables hid_generic usbhid hid ext4 crc32c_generic crc16 mbcache jbd2 xhci_pci xhci_pci_renesas firmware_class nvme xhci_hcd nvme_core t10_pi crc64_rocksoft crc64 tpm_crb crc_t10dif crct10dif_generic crct10dif_pclmul usbcore crc32c_intel crct10dif_common usb_common rtc_cmos tpm_tis tpm_tis_core dm_snapshot dm_bufio dm_mod dax tpm rng_core autofs4 [last unloaded: mwifiex] [ 79.609279] CPU: 3 PID: 1289 Comm: wpa_supplicant Tainted: G WC O 6.7.4 #1-NixOS [ 79.609287] Hardware name: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 79.609291] RIP: 0010:mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 79.609346] Code: 35 02 00 00 75 c7 c6 05 f8 34 02 00 01 90 b9 01 00 00 00 48 c7 c2 b0 81 4b c1 4c 89 e6 48 c7 c7 e0 7f 4b c1 e8 eb 65 ae eb 90 <0f> 0b 90 90 eb 9d 0f 1f 40 00 90 90 90 90 90 90 90 90 90 90 90 90 [ 79.609352] RSP: 0018:ffffbb76416bf810 EFLAGS: 00010286 [ 79.609359] RAX: 0000000000000000 RBX: ffffa07b92805c00 RCX: 0000000000000027 [ 79.609365] RDX: ffffa07edf3a1548 RSI: 0000000000000001 RDI: ffffa07edf3a1540 [ 79.609370] RBP: ffffa07bf1d35a40 R08: 0000000000000000 R09: ffffbb76416bf6b0 [ 79.609374] R10: 0000000000000003 R11: ffffffffae738a68 R12: 0000000000000049 [ 79.609379] R13: ffffa07bf1d35a4c R14: ffffa07b92805c0b R15: 0000000000000107 [ 79.609384] FS: 00007fa6300b1840(0000) GS:ffffa07edf380000(0000) knlGS:0000000000000000 [ 79.609390] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 79.609395] CR2: 00005566ba2adc98 CR3: 000000012374a002 CR4: 00000000003706f0 [ 79.609400] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 79.609404] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 79.609409] Call Trace: [ 79.609414] [ 79.609418] ? mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 79.609467] ? __warn+0x81/0x130 [ 79.609480] ? mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 79.609531] ? report_bug+0x171/0x1a0 [ 79.609545] ? handle_bug+0x3d/0x80 [ 79.609554] ? exc_invalid_op+0x17/0x70 [ 79.609562] ? asm_exc_invalid_op+0x1a/0x20 [ 79.609576] ? mwifiex_cmd_802_11_scan_ext+0x86/0x90 [mwifiex] [ 79.609627] mwifiex_send_cmd+0x1db/0x400 [mwifiex] [ 79.609672] mwifiex_scan_networks+0x956/0xe50 [mwifiex] [ 79.609727] mwifiex_cfg80211_scan+0x287/0x4a0 [mwifiex] [ 79.609774] rdev_scan+0x25/0xd0 [cfg80211] [ 79.609939] nl80211_trigger_scan+0x381/0x7b0 [cfg80211] [ 79.610120] genl_family_rcv_msg_doit+0xef/0x150 [ 79.610135] genl_rcv_msg+0x1b3/0x2c0 [ 79.610141] ? __pfx_nl80211_pre_doit+0x10/0x10 [cfg80211] [ 79.610296] ? __pfx_nl80211_trigger_scan+0x10/0x10 [cfg80211] [ 79.610451] ? __pfx_nl80211_post_doit+0x10/0x10 [cfg80211] [ 79.610602] ? __pfx_genl_rcv_msg+0x10/0x10 [ 79.610609] netlink_rcv_skb+0x58/0x110 [ 79.610624] genl_rcv+0x28/0x40 [ 79.610634] netlink_unicast+0x1a3/0x290 [ 79.610644] netlink_sendmsg+0x254/0x4d0 [ 79.610656] ____sys_sendmsg+0x39c/0x3d0 [ 79.610665] ? copy_msghdr_from_user+0x7d/0xc0 [ 79.610675] ___sys_sendmsg+0x9a/0xe0 [ 79.610694] __sys_sendmsg+0x7a/0xd0 [ 79.610706] do_syscall_64+0x44/0x100 [ 79.610713] entry_SYSCALL_64_after_hwframe+0x6f/0x77 [ 79.610722] RIP: 0033:0x7fa62fad0394 [ 79.610763] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d d5 1f 0d 00 00 74 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89 [ 79.610769] RSP: 002b:00007ffc58d0cd88 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 79.610777] RAX: ffffffffffffffda RBX: 00000000017217f0 RCX: 00007fa62fad0394 [ 79.610782] RDX: 0000000000000000 RSI: 00007ffc58d0cdc0 RDI: 0000000000000005 [ 79.610786] RBP: 00000000017a80d0 R08: 0000000000000004 R09: 0000000000000001 [ 79.610790] R10: 00007ffc58d0cea4 R11: 0000000000000202 R12: 0000000001721700 [ 79.610794] R13: 00007ffc58d0cdc0 R14: 0000000000000000 R15: 00007ffc58d0cea4 [ 79.610805] [ 79.610808] ---[ end trace 0000000000000000 ]--- [ 80.313647] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 80.325820] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 80.329556] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in poll mode [ 82.555559] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c8 [ 82.573644] mwifiex_pcie 0000:01:00.0: info: associated to bssid 3c:df:a9:14:d7:c8 successfully ```
`dmesg` output (linux 6.6 / working S0ix) ``` [ 0.000000] microcode: updated early: 0xf0 -> 0xf4, date = 2023-02-23 [ 0.000000] Linux version 6.6.14 (nixbld@localhost) (gcc (GCC) 13.2.0, GNU ld (GNU Binutils) 2.40) #1-NixOS SMP PREEMPT_DYNAMIC Thu Jan 25 23:36:01 UTC 2024 [ 0.000000] Command line: initrd=\efi\nixos\50yc2vdfvrc67z44914yyx4z7ny5574a-initrd-linux-6.6.14-initrd.efi init=/nix/store/lf4mrx9i6mz1kgbp8pg9yr3jy2fp36sj-nixos-system-nix-nemesis-24.05.20240211.f9d39fb/init acpi_enforce_resources=lax quiet nosgx i915.fastboot=1 splash loglevel=4 nvidia-drm.modeset=1 nvidia.NVreg_PreserveVideoMemoryAllocations=1 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-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-0x000000008a5b1fff] usable [ 0.000000] BIOS-e820: [mem 0x000000008a5b2000-0x000000008a5b2fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000008a5b3000-0x000000008a5b3fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000008a5b4000-0x000000008b951fff] usable [ 0.000000] BIOS-e820: [mem 0x000000008b952000-0x000000008bd51fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000008bd52000-0x000000008bd6afff] usable [ 0.000000] BIOS-e820: [mem 0x000000008bd6b000-0x000000008be79fff] reserved [ 0.000000] BIOS-e820: [mem 0x000000008be7a000-0x000000008bea2fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000008bea3000-0x000000008befefff] ACPI data [ 0.000000] BIOS-e820: [mem 0x000000008beff000-0x000000008befffff] usable [ 0.000000] BIOS-e820: [mem 0x000000008bf00000-0x000000008f7fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046f7fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] efi: EFI v2.7 by MSFT [ 0.000000] efi: ACPI=0x8befe000 ACPI 2.0=0x8befe014 TPMFinalLog=0x8be9a000 SMBIOS=0x8bde8000 SMBIOS 3.0=0x8bde6000 MEMATTR=0x887e7018 ESRT=0x892c2598 RNG=0x8beadf18 INITRD=0x8876c618 TPMEventLog=0x88195018 [ 0.000000] random: crng init done [ 0.000000] efi: Remove mem175: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map [ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved [ 0.000000] efi: Not removing mem176: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map [ 0.000000] SMBIOS 3.3.0 present. [ 0.000000] DMI: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 0.000000] tsc: Detected 2100.000 MHz processor [ 0.000000] tsc: Detected 2099.944 MHz TSC [ 0.001268] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.001272] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.001285] last_pfn = 0x46f800 max_arch_pfn = 0x400000000 [ 0.001291] MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs [ 0.001295] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.002008] last_pfn = 0x8bf00 max_arch_pfn = 0x400000000 [ 0.019128] esrt: Reserving ESRT space from 0x00000000892c2598 to 0x00000000892c2670. [ 0.019139] e820: update [mem 0x892c2000-0x892c2fff] usable ==> reserved [ 0.019187] Using GB pages for direct mapping [ 0.020210] Secure boot enabled [ 0.020211] RAMDISK: [mem 0x81328000-0x839dcfff] [ 0.020220] ACPI: Early table checksum verification disabled [ 0.020223] ACPI: RSDP 0x000000008BEFE014 000024 (v02 MSFT ) [ 0.020230] ACPI: XSDT 0x000000008BEFD0E8 0000B4 (v01 MSFT MSFT 00000000 MSFT 0000005F) [ 0.020238] ACPI: FACP 0x000000008BED7000 00010C (v05 MSFT MSFT 00000000 MSFT 0000005F) [ 0.020255] ACPI: DSDT 0x000000008BEB8000 01A0AC (v02 MSFT MSFT 00000000 INTL 20160422) [ 0.020262] ACPI: FACS 0x000000008BE83000 000040 [ 0.020266] ACPI: WSMT 0x000000008BEFC000 000028 (v01 MSFT MSFT 00000002 MSFT 0000005F) [ 0.020271] ACPI: MSDM 0x000000008BEFB000 000055 (v01 MSFT 00000001 MSFT 00000001) [ 0.020276] ACPI: SSDT 0x000000008BEDE000 01C838 (v02 MSFT DptfTabl 00001000 INTL 20160422) [ 0.020281] ACPI: SSDT 0x000000008BEDD000 000574 (v02 MSFT Tpm2Tabl 00001000 INTL 20160422) [ 0.020286] ACPI: TPM2 0x000000008BEDC000 000034 (v03 MSFT MSFT 00000002 MSFT 0000005F) [ 0.020290] ACPI: SSDT 0x000000008BED8000 0033BF (v02 SaSsdt SaSsdt 00003000 INTL 20160422) [ 0.020296] ACPI: HPET 0x000000008BED6000 000038 (v01 MSFT MSFT 00000001 MSFT 0000005F) [ 0.020300] ACPI: APIC 0x000000008BED5000 00012C (v03 MSFT MSFT 00000001 MSFT 0000005F) [ 0.020305] ACPI: MCFG 0x000000008BED4000 00003C (v01 MSFT MSFT 00000001 MSFT 0000005F) [ 0.020310] ACPI: LPIT 0x000000008BED3000 000094 (v01 MSFT MSFT 00000000 MSFT 0000005F) [ 0.020315] ACPI: SSDT 0x000000008BEB5000 0024E8 (v02 MSFT RTD3ApNV 00001000 INTL 20160422) [ 0.020320] ACPI: SSDT 0x000000008BEB4000 0007CF (v02 MSFT xh_sh000 00000000 INTL 20160422) [ 0.020324] ACPI: SSDT 0x000000008BEB2000 0017AE (v02 CpuRef CpuSsdt 00003000 INTL 20160422) [ 0.020329] ACPI: DMAR 0x000000008BEB1000 000088 (v01 MSFT MSFT 00000001 INTL 00000001) [ 0.020334] ACPI: NHLT 0x000000008BEB0000 00002D (v00 MSFT MSFT 00000002 MSFT 0000005F) [ 0.020339] ACPI: FPDT 0x000000008BEAF000 000034 (v01 MSFT MSFT 00000002 MSFT 0000005F) [ 0.020343] ACPI: BGRT 0x000000008BEAE000 000038 (v01 MSFT MSFT 00000002 MSFT 0000005F) [ 0.020347] ACPI: Reserving FACP table memory at [mem 0x8bed7000-0x8bed710b] [ 0.020349] ACPI: Reserving DSDT table memory at [mem 0x8beb8000-0x8bed20ab] [ 0.020351] ACPI: Reserving FACS table memory at [mem 0x8be83000-0x8be8303f] [ 0.020352] ACPI: Reserving WSMT table memory at [mem 0x8befc000-0x8befc027] [ 0.020354] ACPI: Reserving MSDM table memory at [mem 0x8befb000-0x8befb054] [ 0.020355] ACPI: Reserving SSDT table memory at [mem 0x8bede000-0x8befa837] [ 0.020356] ACPI: Reserving SSDT table memory at [mem 0x8bedd000-0x8bedd573] [ 0.020357] ACPI: Reserving TPM2 table memory at [mem 0x8bedc000-0x8bedc033] [ 0.020359] ACPI: Reserving SSDT table memory at [mem 0x8bed8000-0x8bedb3be] [ 0.020360] ACPI: Reserving HPET table memory at [mem 0x8bed6000-0x8bed6037] [ 0.020361] ACPI: Reserving APIC table memory at [mem 0x8bed5000-0x8bed512b] [ 0.020363] ACPI: Reserving MCFG table memory at [mem 0x8bed4000-0x8bed403b] [ 0.020364] ACPI: Reserving LPIT table memory at [mem 0x8bed3000-0x8bed3093] [ 0.020365] ACPI: Reserving SSDT table memory at [mem 0x8beb5000-0x8beb74e7] [ 0.020367] ACPI: Reserving SSDT table memory at [mem 0x8beb4000-0x8beb47ce] [ 0.020368] ACPI: Reserving SSDT table memory at [mem 0x8beb2000-0x8beb37ad] [ 0.020369] ACPI: Reserving DMAR table memory at [mem 0x8beb1000-0x8beb1087] [ 0.020370] ACPI: Reserving NHLT table memory at [mem 0x8beb0000-0x8beb002c] [ 0.020372] ACPI: Reserving FPDT table memory at [mem 0x8beaf000-0x8beaf033] [ 0.020373] ACPI: Reserving BGRT table memory at [mem 0x8beae000-0x8beae037] [ 0.020525] No NUMA configuration found [ 0.020526] Faking a node at [mem 0x0000000000000000-0x000000046f7fffff] [ 0.020531] NODE_DATA(0) allocated [mem 0x46f7fa000-0x46f7fffff] [ 0.020578] Zone ranges: [ 0.020580] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.020583] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.020585] Normal [mem 0x0000000100000000-0x000000046f7fffff] [ 0.020589] Device empty [ 0.020592] Movable zone start for each node [ 0.020599] Early memory node ranges [ 0.020600] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.020602] node 0: [mem 0x0000000000100000-0x000000003fffffff] [ 0.020604] node 0: [mem 0x0000000040400000-0x000000008a5b1fff] [ 0.020606] node 0: [mem 0x000000008a5b4000-0x000000008b951fff] [ 0.020607] node 0: [mem 0x000000008bd52000-0x000000008bd6afff] [ 0.020608] node 0: [mem 0x000000008beff000-0x000000008befffff] [ 0.020610] node 0: [mem 0x0000000100000000-0x000000046f7fffff] [ 0.020613] Initmem setup node 0 [mem 0x0000000000001000-0x000000046f7fffff] [ 0.020619] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.020651] On node 0, zone DMA: 96 pages in unavailable ranges [ 0.026351] On node 0, zone DMA32: 1024 pages in unavailable ranges [ 0.026402] On node 0, zone DMA32: 2 pages in unavailable ranges [ 0.026418] On node 0, zone DMA32: 1024 pages in unavailable ranges [ 0.026425] On node 0, zone DMA32: 404 pages in unavailable ranges [ 0.064420] On node 0, zone Normal: 16640 pages in unavailable ranges [ 0.064450] On node 0, zone Normal: 2048 pages in unavailable ranges [ 0.064461] Reserving Intel graphics memory at [mem 0x8d800000-0x8f7fffff] [ 0.065018] ACPI: PM-Timer IO Port: 0x1808 [ 0.065029] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) [ 0.065032] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) [ 0.065033] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) [ 0.065034] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) [ 0.065035] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) [ 0.065036] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) [ 0.065038] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) [ 0.065039] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) [ 0.065040] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) [ 0.065041] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) [ 0.065042] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) [ 0.065043] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) [ 0.065044] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) [ 0.065046] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) [ 0.065047] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) [ 0.065048] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) [ 0.065076] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119 [ 0.065081] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.065084] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.065092] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.065093] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.065108] e820: update [mem 0x8870f000-0x8874cfff] usable ==> reserved [ 0.065125] TSC deadline timer available [ 0.065126] smpboot: Allowing 8 CPUs, 0 hotplug CPUs [ 0.065148] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.065151] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.065154] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff] [ 0.065156] PM: hibernation: Registered nosave memory: [mem 0x8870f000-0x8874cfff] [ 0.065159] PM: hibernation: Registered nosave memory: [mem 0x892c2000-0x892c2fff] [ 0.065161] PM: hibernation: Registered nosave memory: [mem 0x8a5b2000-0x8a5b2fff] [ 0.065163] PM: hibernation: Registered nosave memory: [mem 0x8a5b3000-0x8a5b3fff] [ 0.065165] PM: hibernation: Registered nosave memory: [mem 0x8b952000-0x8bd51fff] [ 0.065167] PM: hibernation: Registered nosave memory: [mem 0x8bd6b000-0x8be79fff] [ 0.065168] PM: hibernation: Registered nosave memory: [mem 0x8be7a000-0x8bea2fff] [ 0.065170] PM: hibernation: Registered nosave memory: [mem 0x8bea3000-0x8befefff] [ 0.065172] PM: hibernation: Registered nosave memory: [mem 0x8bf00000-0x8f7fffff] [ 0.065173] PM: hibernation: Registered nosave memory: [mem 0x8f800000-0xfe00ffff] [ 0.065174] PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff] [ 0.065175] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff] [ 0.065180] [mem 0x8f800000-0xfe00ffff] available for PCI devices [ 0.065182] Booting paravirtualized kernel on bare hardware [ 0.065185] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.072998] setup_percpu: NR_CPUS:384 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 [ 0.074002] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288 [ 0.074012] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152 [ 0.074016] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7 [ 0.074055] Kernel command line: initrd=\efi\nixos\50yc2vdfvrc67z44914yyx4z7ny5574a-initrd-linux-6.6.14-initrd.efi init=/nix/store/lf4mrx9i6mz1kgbp8pg9yr3jy2fp36sj-nixos-system-nix-nemesis-24.05.20240211.f9d39fb/init acpi_enforce_resources=lax quiet nosgx i915.fastboot=1 splash loglevel=4 nvidia-drm.modeset=1 nvidia.NVreg_PreserveVideoMemoryAllocations=1 [ 0.074271] Unknown kernel command line parameters "splash", will be passed to user space. [ 0.077049] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) [ 0.078421] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.078609] Fallback order for Node 0: 0 [ 0.078613] Built 1 zonelists, mobility grouping on. Total pages: 4107700 [ 0.078615] Policy zone: Normal [ 0.078617] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.078626] software IO TLB: area num 8. [ 0.153731] Memory: 16191644K/16692260K available (14336K kernel code, 2311K rwdata, 9288K rodata, 2980K init, 2968K bss, 500360K reserved, 0K cma-reserved) [ 0.155308] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 [ 0.155327] Kernel/User page tables isolation: enabled [ 0.155385] ftrace: allocating 39737 entries in 156 pages [ 0.167010] ftrace: allocated 156 pages with 4 groups [ 0.168003] Dynamic Preempt: voluntary [ 0.168105] rcu: Preemptible hierarchical RCU implementation. [ 0.168107] rcu: RCU event tracing is enabled. [ 0.168107] rcu: RCU restricting CPUs from NR_CPUS=384 to nr_cpu_ids=8. [ 0.168109] Trampoline variant of Tasks RCU enabled. [ 0.168110] Rude variant of Tasks RCU enabled. [ 0.168111] Tracing variant of Tasks RCU enabled. [ 0.168112] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.168113] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 [ 0.172643] NR_IRQS: 24832, nr_irqs: 2048, preallocated irqs: 16 [ 0.172914] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.173115] Console: colour dummy device 80x25 [ 0.173119] printk: console [tty0] enabled [ 0.173193] ACPI: Core revision 20230628 [ 0.173529] hpet: HPET dysfunctional in PC10. Force disabled. [ 0.173531] APIC: Switch to symmetric I/O mode setup [ 0.173533] DMAR: Host address width 39 [ 0.173535] DMAR: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.173547] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e [ 0.173551] DMAR: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.173557] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da [ 0.173560] DMAR: RMRR base: 0x0000008d000000 end: 0x0000008f7fffff [ 0.173567] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.173570] DMAR-IR: HPET id 0 under DRHD base 0xfed91000 [ 0.173571] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.175516] DMAR-IR: Enabled IRQ remapping in x2apic mode [ 0.175530] x2apic enabled [ 0.175625] APIC: Switched APIC routing to: cluster x2apic [ 0.179620] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e44fb6c2ab, max_idle_ns: 440795206594 ns [ 0.179630] Calibrating delay loop (skipped), value calculated using timer frequency.. 4199.88 BogoMIPS (lpj=2099944) [ 0.179674] CPU0: Thermal monitoring enabled (TM1) [ 0.179767] process: using mwait in idle threads [ 0.179771] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8 [ 0.179773] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4 [ 0.179779] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.179784] Spectre V2 : Mitigation: IBRS [ 0.179786] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.179787] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [ 0.179789] RETBleed: Mitigation: IBRS [ 0.179791] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.179793] Spectre V2 : User space: Mitigation: STIBP via prctl [ 0.179797] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.179809] MDS: Mitigation: Clear CPU buffers [ 0.179811] TAA: Mitigation: TSX disabled [ 0.179812] MMIO Stale Data: Mitigation: Clear CPU buffers [ 0.179820] SRBDS: Mitigation: Microcode [ 0.179831] GDS: Mitigation: Microcode [ 0.179841] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.179843] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.179845] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.179847] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' [ 0.179849] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' [ 0.179852] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.179855] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64 [ 0.179857] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64 [ 0.179859] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format. [ 0.180626] Freeing SMP alternatives memory: 36K [ 0.180626] pid_max: default: 32768 minimum: 301 [ 0.180626] LSM: initializing lsm=capability,landlock,yama,selinux,bpf,integrity [ 0.180626] landlock: Up and running. [ 0.180626] Yama: becoming mindful. [ 0.180626] SELinux: Initializing. [ 0.180626] LSM support for eBPF active [ 0.180626] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.180626] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.180626] smpboot: CPU0: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz (family: 0x6, model: 0x8e, stepping: 0xa) [ 0.180626] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.180626] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.180626] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.180626] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver. [ 0.180626] ... version: 4 [ 0.180626] ... bit width: 48 [ 0.180626] ... generic registers: 4 [ 0.180626] ... value mask: 0000ffffffffffff [ 0.180626] ... max period: 00007fffffffffff [ 0.180626] ... fixed-purpose events: 3 [ 0.180626] ... event mask: 000000070000000f [ 0.180626] signal: max sigframe size: 2032 [ 0.180626] Estimated ratio of average max frequency by base frequency (times 1024): 1901 [ 0.180626] rcu: Hierarchical SRCU implementation. [ 0.180626] rcu: Max phase no-delay instances is 400. [ 0.180740] smp: Bringing up secondary CPUs ... [ 0.180886] smpboot: x86: Booting SMP configuration: [ 0.180888] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 [ 0.187661] 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.187669] 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.187676] smp: Brought up 1 node, 8 CPUs [ 0.187676] smpboot: Max logical packages: 1 [ 0.187676] smpboot: Total of 8 processors activated (33599.10 BogoMIPS) [ 0.189441] devtmpfs: initialized [ 0.189720] x86/mm: Memory block size: 128MB [ 0.192450] ACPI: PM: Registering ACPI NVS region [mem 0x8a5b2000-0x8a5b2fff] (4096 bytes) [ 0.192450] ACPI: PM: Registering ACPI NVS region [mem 0x8be7a000-0x8bea2fff] (167936 bytes) [ 0.192683] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.192689] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 0.192774] pinctrl core: initialized pinctrl subsystem [ 0.193558] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.193895] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations [ 0.193902] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.193906] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.193922] audit: initializing netlink subsys (disabled) [ 0.193943] audit: type=2000 audit(1708472993.014:1): state=initialized audit_enabled=0 res=1 [ 0.193943] thermal_sys: Registered thermal governor 'bang_bang' [ 0.193943] thermal_sys: Registered thermal governor 'step_wise' [ 0.193943] thermal_sys: Registered thermal governor 'user_space' [ 0.193943] cpuidle: using governor menu [ 0.193943] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.193943] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) [ 0.193943] PCI: not using MMCONFIG [ 0.193943] PCI: Using configuration type 1 for base access [ 0.194989] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 0.195000] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.195000] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.195000] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.195000] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.195000] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.195768] ACPI: Added _OSI(Module Device) [ 0.195770] ACPI: Added _OSI(Processor Device) [ 0.195772] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.195774] ACPI: Added _OSI(Processor Aggregator Device) [ 0.246697] ACPI: 7 ACPI AML tables successfully acquired and loaded [ 0.250281] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.254721] ACPI: Dynamic OEM Table Load: [ 0.254734] ACPI: SSDT 0xFFFF888101A70C00 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422) [ 0.256494] ACPI: Dynamic OEM Table Load: [ 0.256504] ACPI: SSDT 0xFFFF888101A79000 0005EE (v02 PmRef Cpu0Ist 00003000 INTL 20160422) [ 0.258404] ACPI: Dynamic OEM Table Load: [ 0.258412] ACPI: SSDT 0xFFFF888101A4C600 0000BA (v02 PmRef Cpu0Hwp 00003000 INTL 20160422) [ 0.260009] ACPI: Dynamic OEM Table Load: [ 0.260017] ACPI: SSDT 0xFFFF888101A7E800 000628 (v02 PmRef HwpLvt 00003000 INTL 20160422) [ 0.263136] ACPI: Dynamic OEM Table Load: [ 0.263147] ACPI: SSDT 0xFFFF888101A83000 000D14 (v02 PmRef ApIst 00003000 INTL 20160422) [ 0.265867] ACPI: Dynamic OEM Table Load: [ 0.265876] ACPI: SSDT 0xFFFF888101A76C00 000317 (v02 PmRef ApHwp 00003000 INTL 20160422) [ 0.267653] ACPI: Dynamic OEM Table Load: [ 0.267661] ACPI: SSDT 0xFFFF888101A74800 00030A (v02 PmRef ApCst 00003000 INTL 20160422) [ 0.273234] ACPI: _OSC evaluated successfully for all CPUs [ 0.273886] ACPI: Interpreter enabled [ 0.273955] ACPI: PM: (supports S0 S4 S5) [ 0.273957] ACPI: Using IOAPIC for interrupt routing [ 0.274017] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) [ 0.277404] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource [ 0.277425] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.277427] PCI: Using E820 reservations for host bridge windows [ 0.278224] ACPI: Enabled 10 GPEs in block 00 to 7F [ 0.284967] ACPI: \_SB_.PCI0.XHC_.RHUB.PX01: New power resource [ 0.285166] ACPI: \_SB_.PCI0.XHC_.RHUB.PX02: New power resource [ 0.285357] ACPI: \_SB_.PCI0.XHC_.RHUB.PX03: New power resource [ 0.285546] ACPI: \_SB_.PCI0.XHC_.RHUB.PX04: New power resource [ 0.285731] ACPI: \_SB_.PCI0.XHC_.RHUB.PX05: New power resource [ 0.285918] ACPI: \_SB_.PCI0.XHC_.RHUB.PX06: New power resource [ 0.288466] ACPI: \_SB_.PCI0.XHC_.RHUB.PX07: New power resource [ 0.288573] ACPI: \_SB_.USBC: New power resource [ 0.289270] ACPI: \_SB_.PCI0.RP01.PXP_: New power resource [ 0.289549] ACPI: \_SB_.PCI0.RP01.PXSX.PRWF: New power resource [ 0.291182] ACPI: \_SB_.PCI0.RP05.PRP5: New power resource [ 0.293206] ACPI: \_SB_.PCI0.RP09.PXP_: New power resource [ 0.306553] ACPI: \_SB_.PCI0.CAMP: New power resource [ 0.310632] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) [ 0.310643] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.313761] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] [ 0.316013] PCI host bridge to bus 0000:00 [ 0.316017] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.316021] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.316025] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window] [ 0.316028] pci_bus 0000:00: root bus resource [mem 0x8f800000-0xdfffffff window] [ 0.316030] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window] [ 0.316033] pci_bus 0000:00: root bus resource [bus 00-fe] [ 0.317986] pci 0000:00:00.0: [8086:5914] type 00 class 0x060000 [ 0.318113] pci 0000:00:02.0: [8086:5917] type 00 class 0x030000 [ 0.318127] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc0ffffff 64bit] [ 0.318137] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref] [ 0.318145] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f] [ 0.318169] pci 0000:00:02.0: BAR 2: assigned to efifb [ 0.318174] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 0.318462] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 [ 0.318476] pci 0000:00:04.0: reg 0x10: [mem 0xc27b0000-0xc27b7fff 64bit] [ 0.318857] pci 0000:00:05.0: [8086:1919] type 00 class 0x048000 [ 0.318882] pci 0000:00:05.0: reg 0x10: [mem 0xc2000000-0xc23fffff 64bit] [ 0.318907] pci 0000:00:05.0: DMAR: Passthrough IOMMU for integrated Intel IPU [ 0.319085] pci 0000:00:13.0: [8086:9d35] type 00 class 0x000000 [ 0.319107] pci 0000:00:13.0: reg 0x10: [mem 0xc27c0000-0xc27c0fff 64bit] [ 0.319633] pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 [ 0.319656] pci 0000:00:14.0: reg 0x10: [mem 0xc2780000-0xc278ffff 64bit] [ 0.319735] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.320407] pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 [ 0.320430] pci 0000:00:14.2: reg 0x10: [mem 0xc27c1000-0xc27c1fff 64bit] [ 0.320629] pci 0000:00:14.3: [8086:9d32] type 00 class 0x048000 [ 0.320719] pci 0000:00:14.3: reg 0x10: [mem 0xc2790000-0xc279ffff 64bit] [ 0.321328] pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 [ 0.321537] pci 0000:00:15.0: reg 0x10: [mem 0xc27c2000-0xc27c2fff 64bit] [ 0.322822] pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 [ 0.323032] pci 0000:00:15.1: reg 0x10: [mem 0xc27c3000-0xc27c3fff 64bit] [ 0.324299] pci 0000:00:15.2: [8086:9d62] type 00 class 0x118000 [ 0.324509] pci 0000:00:15.2: reg 0x10: [mem 0xc27c4000-0xc27c4fff 64bit] [ 0.325775] pci 0000:00:15.3: [8086:9d63] type 00 class 0x118000 [ 0.325985] pci 0000:00:15.3: reg 0x10: [mem 0xc27c5000-0xc27c5fff 64bit] [ 0.327123] pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 [ 0.327148] pci 0000:00:16.0: reg 0x10: [mem 0xc27c6000-0xc27c6fff 64bit] [ 0.327233] pci 0000:00:16.0: PME# supported from D3hot [ 0.327704] pci 0000:00:16.4: [8086:9d3e] type 00 class 0x078000 [ 0.327729] pci 0000:00:16.4: reg 0x10: [mem 0xc27c7000-0xc27c7fff 64bit] [ 0.327781] pci 0000:00:16.4: DMAR: Passthrough IOMMU for IPTS [ 0.327820] pci 0000:00:16.4: PME# supported from D3hot [ 0.327936] pci 0000:00:1c.0: [8086:9d10] type 01 class 0x060400 [ 0.328038] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.328679] pci 0000:00:1c.4: [8086:9d14] type 01 class 0x060400 [ 0.328785] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.329407] pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 [ 0.329501] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.330267] pci 0000:00:1e.0: [8086:9d27] type 00 class 0x118000 [ 0.330477] pci 0000:00:1e.0: reg 0x10: [mem 0xc27c8000-0xc27c8fff 64bit] [ 0.331637] pci 0000:00:1f.0: [8086:9d4e] type 00 class 0x060100 [ 0.332055] pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 [ 0.332071] pci 0000:00:1f.2: reg 0x10: [mem 0xc27bc000-0xc27bffff] [ 0.332404] pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 [ 0.332428] pci 0000:00:1f.3: reg 0x10: [mem 0xc27b8000-0xc27bbfff 64bit] [ 0.332458] pci 0000:00:1f.3: reg 0x20: [mem 0xc27a0000-0xc27affff 64bit] [ 0.332514] pci 0000:00:1f.3: PME# supported from D3hot D3cold [ 0.333211] pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 [ 0.333265] pci 0000:00:1f.4: reg 0x10: [mem 0xc27c9000-0xc27c90ff 64bit] [ 0.333318] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf] [ 0.333816] pci 0000:01:00.0: [11ab:2b38] type 00 class 0x020000 [ 0.333848] pci 0000:01:00.0: reg 0x10: [mem 0xc2500000-0xc25fffff 64bit pref] [ 0.333868] pci 0000:01:00.0: reg 0x18: [mem 0xc2400000-0xc24fffff 64bit pref] [ 0.334025] pci 0000:01:00.0: supports D1 D2 [ 0.334027] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold [ 0.334409] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.334419] pci 0000:00:1c.0: bridge window [mem 0xc2400000-0xc25fffff 64bit pref] [ 0.334492] pci 0000:02:00.0: [10de:1c8d] type 00 class 0x030200 [ 0.334507] pci 0000:02:00.0: reg 0x10: [mem 0xc1000000-0xc1ffffff] [ 0.334520] pci 0000:02:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref] [ 0.334532] pci 0000:02:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref] [ 0.334540] pci 0000:02:00.0: reg 0x24: [io 0x3000-0x307f] [ 0.334549] pci 0000:02:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref] [ 0.334681] pci 0000:02:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:1c.4 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link) [ 0.334989] pci 0000:00:1c.4: PCI bridge to [bus 02] [ 0.334994] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.334998] pci 0000:00:1c.4: bridge window [mem 0xc1000000-0xc1ffffff] [ 0.335004] pci 0000:00:1c.4: bridge window [mem 0x90000000-0xa1ffffff 64bit pref] [ 0.335076] pci 0000:03:00.0: [144d:a804] type 00 class 0x010802 [ 0.335100] pci 0000:03:00.0: reg 0x10: [mem 0xc2600000-0xc2603fff 64bit] [ 0.335447] pci 0000:00:1d.0: PCI bridge to [bus 03] [ 0.335453] pci 0000:00:1d.0: bridge window [mem 0xc2600000-0xc26fffff] [ 0.338050] ACPI: PCI: Interrupt link LNKA configured for IRQ 11 [ 0.338123] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [ 0.338193] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [ 0.338262] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 [ 0.338331] ACPI: PCI: Interrupt link LNKE configured for IRQ 11 [ 0.338400] ACPI: PCI: Interrupt link LNKF configured for IRQ 11 [ 0.338468] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 [ 0.338537] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 [ 0.349515] Low-power S0 idle used by default for system suspend [ 0.355161] iommu: Default domain type: Translated [ 0.355164] iommu: DMA domain TLB invalidation policy: lazy mode [ 0.355299] efivars: Registered efivars operations [ 0.355771] NetLabel: Initializing [ 0.355773] NetLabel: domain hash size = 128 [ 0.355774] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.355801] NetLabel: unlabeled traffic allowed by default [ 0.355803] PCI: Using ACPI for IRQ routing [ 0.384591] PCI: pci_cache_line_size set to 64 bytes [ 0.384969] e820: reserve RAM buffer [mem 0x8870f000-0x8bffffff] [ 0.384973] e820: reserve RAM buffer [mem 0x892c2000-0x8bffffff] [ 0.384976] e820: reserve RAM buffer [mem 0x8a5b2000-0x8bffffff] [ 0.384978] e820: reserve RAM buffer [mem 0x8b952000-0x8bffffff] [ 0.384980] e820: reserve RAM buffer [mem 0x8bd6b000-0x8bffffff] [ 0.384982] e820: reserve RAM buffer [mem 0x8bf00000-0x8bffffff] [ 0.384984] e820: reserve RAM buffer [mem 0x46f800000-0x46fffffff] [ 0.385048] pci 0000:00:02.0: vgaarb: setting as boot VGA device [ 0.385048] pci 0000:00:02.0: vgaarb: bridge control possible [ 0.385048] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 0.385048] vgaarb: loaded [ 0.387373] clocksource: Switched to clocksource tsc-early [ 0.387568] VFS: Disk quotas dquot_6.6.0 [ 0.387588] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.387588] pnp: PnP ACPI init [ 0.387588] system 00:00: [mem 0x40000000-0x403fffff] has been reserved [ 0.387588] system 00:01: [mem 0xfd000000-0xfdabffff] has been reserved [ 0.387588] system 00:01: [mem 0xfdad0000-0xfdadffff] has been reserved [ 0.387588] system 00:01: [mem 0xfdb00000-0xfdffffff] has been reserved [ 0.387588] system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved [ 0.387588] system 00:01: [mem 0xfe036000-0xfe03bfff] has been reserved [ 0.387588] system 00:01: [mem 0xfe03d000-0xfe3fffff] has been reserved [ 0.387588] system 00:01: [mem 0xfe410000-0xfe7fffff] has been reserved [ 0.387738] system 00:02: [io 0x2000-0x20fe] has been reserved [ 0.387947] system 00:03: [io 0x0680-0x069f] has been reserved [ 0.387951] system 00:03: [io 0xffff] has been reserved [ 0.387953] system 00:03: [io 0xffff] has been reserved [ 0.387956] system 00:03: [io 0xffff] has been reserved [ 0.387958] system 00:03: [io 0x1800-0x18fe] has been reserved [ 0.387961] system 00:03: [io 0x164e-0x164f] has been reserved [ 0.388169] system 00:05: [io 0x1854-0x1857] has been reserved [ 0.390065] system 00:06: [mem 0xfe020000-0xfe021fff] has been reserved [ 0.390070] system 00:06: [mem 0xfe022000-0xfe023fff] has been reserved [ 0.390074] system 00:06: [mem 0xfe024000-0xfe025fff] has been reserved [ 0.390077] system 00:06: [mem 0xfe026000-0xfe027fff] has been reserved [ 0.390080] system 00:06: [mem 0xfe028000-0xfe029fff] has been reserved [ 0.390083] system 00:06: [mem 0xfe02a000-0xfe02bfff] has been reserved [ 0.390086] system 00:06: [mem 0xfe02c000-0xfe02dfff] has been reserved [ 0.390088] system 00:06: [mem 0xfe02e000-0xfe02ffff] has been reserved [ 0.390091] system 00:06: [mem 0xfe030000-0xfe031fff] has been reserved [ 0.390094] system 00:06: [mem 0xfe032000-0xfe033fff] has been reserved [ 0.390097] system 00:06: [mem 0xfe034000-0xfe035fff] has been reserved [ 0.390934] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.390939] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.390942] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.390945] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved [ 0.390948] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.390951] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved [ 0.390954] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved [ 0.390957] system 00:07: [mem 0xff000000-0xffffffff] has been reserved [ 0.390960] system 00:07: [mem 0xfee00000-0xfeefffff] has been reserved [ 0.390963] system 00:07: [mem 0x8f800000-0x8f81ffff] has been reserved [ 0.392046] pnp: PnP ACPI: found 8 devices [ 0.398763] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.398890] NET: Registered PF_INET protocol family [ 0.399128] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.403581] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 0.403610] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.403647] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.403829] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 0.404255] TCP: Hash tables configured (established 131072 bind 65536) [ 0.404379] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear) [ 0.404427] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.404470] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.404591] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.404601] NET: Registered PF_XDP protocol family [ 0.404606] pci 0000:02:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window [ 0.404621] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.404630] pci 0000:00:1c.0: bridge window [mem 0xc2400000-0xc25fffff 64bit pref] [ 0.404639] pci 0000:02:00.0: BAR 6: no space for [mem size 0x00080000 pref] [ 0.404642] pci 0000:02:00.0: BAR 6: failed to assign [mem size 0x00080000 pref] [ 0.404645] pci 0000:00:1c.4: PCI bridge to [bus 02] [ 0.404648] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 0.404653] pci 0000:00:1c.4: bridge window [mem 0xc1000000-0xc1ffffff] [ 0.404657] pci 0000:00:1c.4: bridge window [mem 0x90000000-0xa1ffffff 64bit pref] [ 0.404663] pci 0000:00:1d.0: PCI bridge to [bus 03] [ 0.404668] pci 0000:00:1d.0: bridge window [mem 0xc2600000-0xc26fffff] [ 0.404676] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.404679] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.404681] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window] [ 0.404683] pci_bus 0000:00: resource 7 [mem 0x8f800000-0xdfffffff window] [ 0.404686] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window] [ 0.404688] pci_bus 0000:01: resource 2 [mem 0xc2400000-0xc25fffff 64bit pref] [ 0.404691] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] [ 0.404693] pci_bus 0000:02: resource 1 [mem 0xc1000000-0xc1ffffff] [ 0.404695] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref] [ 0.404698] pci_bus 0000:03: resource 1 [mem 0xc2600000-0xc26fffff] [ 0.405416] PCI: CLS 0 bytes, default 64 [ 0.405442] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.405443] software IO TLB: mapped [mem 0x000000007d328000-0x0000000081328000] (64MB) [ 0.405482] Trying to unpack rootfs image as initramfs... [ 0.406214] Initialise system trusted keyrings [ 0.406275] workingset: timestamp_bits=40 max_order=22 bucket_order=0 [ 0.406293] zbud: loaded [ 0.406728] Key type asymmetric registered [ 0.406730] Asymmetric key parser 'x509' registered [ 0.406743] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.406795] io scheduler mq-deadline registered [ 0.406797] io scheduler kyber registered [ 0.409326] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122 [ 0.409625] pcieport 0000:00:1c.4: PME: Signaling with IRQ 123 [ 0.409659] pcieport 0000:00:1c.4: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ [ 0.410010] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124 [ 0.410144] efifb: probing for efifb [ 0.410166] efifb: showing boot graphics [ 0.412817] efifb: framebuffer at 0xb0000000, using 23500k, total 23500k [ 0.412820] efifb: mode is 3000x2000x32, linelength=12032, pages=1 [ 0.412823] efifb: scrolling: redraw [ 0.412824] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.412906] fbcon: Deferring console take-over [ 0.412908] fb0: EFI VGA frame buffer device [ 0.417308] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.418334] hpet_acpi_add: no address or irqs in _CRS [ 0.419612] intel_pstate: Intel P-state driver initializing [ 0.420381] intel_pstate: HWP enabled [ 0.420440] drop_monitor: Initializing network drop monitor service [ 0.432337] NET: Registered PF_INET6 protocol family [ 0.621050] Freeing initrd memory: 39636K [ 0.626179] Segment Routing with IPv6 [ 0.626203] In-situ OAM (IOAM) with IPv6 [ 0.627182] microcode: Microcode Update Driver: v2.2. [ 0.627198] IPI shorthand broadcast: enabled [ 0.628853] sched_clock: Marking stable (622001038, 6583055)->(683981142, -55397049) [ 0.629103] registered taskstats version 1 [ 0.629187] Loading compiled-in X.509 certificates [ 0.633752] Key type .fscrypt registered [ 0.633755] Key type fscrypt-provisioning registered [ 0.634364] clk: Disabling unused clocks [ 0.635405] Freeing unused decrypted memory: 2028K [ 0.635948] Freeing unused kernel image (initmem) memory: 2980K [ 0.646799] Write protecting the kernel read-only data: 24576k [ 0.647338] Freeing unused kernel image (rodata/data gap) memory: 952K [ 0.702159] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.702161] x86/mm: Checking user space page tables [ 0.754972] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 0.754977] Run /init as init process [ 0.754979] with arguments: [ 0.754980] /init [ 0.754981] splash [ 0.754982] with environment: [ 0.754983] HOME=/ [ 0.754984] TERM=linux [ 0.764509] systemd[1]: Inserted module 'autofs4' [ 0.775815] systemd[1]: systemd 255.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified) [ 0.775821] systemd[1]: Detected architecture x86-64. [ 0.775824] systemd[1]: Running in initrd. [ 0.776002] systemd[1]: No hostname configured, using default hostname. [ 0.776078] systemd[1]: Hostname set to . [ 0.776144] systemd[1]: Initializing machine ID from random generator. [ 0.799524] systemd-gpt-auto-generator[108]: EFI loader partition unknown, exiting. [ 0.799529] systemd-gpt-auto-generator[108]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) [ 0.828305] systemd[1]: Queued start job for default target Initrd Default Target. [ 0.841380] systemd[1]: Expecting device /dev/disk/by-uuid/c73f0769-e175-4cc5-81cc-dd9a1b4559f9... [ 0.841450] systemd[1]: Reached target Slice Units. [ 0.841471] systemd[1]: Reached target Swaps. [ 0.841482] systemd[1]: Reached target Timer Units. [ 0.841649] systemd[1]: Listening on Journal Socket (/dev/log). [ 0.841793] systemd[1]: Listening on Journal Socket. [ 0.841941] systemd[1]: Listening on udev Control Socket. [ 0.842063] systemd[1]: Listening on udev Kernel Socket. [ 0.842077] systemd[1]: Reached target Socket Units. [ 0.843234] systemd[1]: Starting Create List of Static Device Nodes... [ 0.844977] systemd[1]: Starting Journal Service... [ 0.846067] systemd[1]: Starting Load Kernel Modules... [ 0.846811] systemd[1]: Starting Create Static Device Nodes in /dev... [ 0.847969] systemd[1]: Starting Coldplug All udev Devices... [ 0.849102] systemd[1]: Starting Virtual Console Setup... [ 0.851954] systemd[1]: Finished Create List of Static Device Nodes. [ 0.860043] systemd[1]: Finished Create Static Device Nodes in /dev. [ 0.860189] systemd[1]: Reached target Preparation for Local File Systems. [ 0.860211] systemd[1]: Reached target Local File Systems. [ 0.860259] systemd[1]: Tell Plymouth To Write Out Runtime Data was skipped because of an unmet condition check (ConditionPathExists=!/etc/initrd-release). [ 0.861792] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 0.871035] systemd-journald[114]: Collecting audit messages is disabled. [ 0.875843] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com [ 0.886610] systemd[1]: Finished Virtual Console Setup. [ 0.887232] systemd[1]: Finished Load Kernel Modules. [ 0.897972] systemd[1]: Starting Apply Kernel Variables... [ 0.898059] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 0.903322] systemd[1]: Started Journal Service. [ 1.020837] rtc_cmos 00:04: RTC can wake from S4 [ 1.024430] tpm_tis NTC0103:00: 2.0 TPM (device-id 0xFE, rev-id 4) [ 1.041594] rtc_cmos 00:04: registered as rtc0 [ 1.041751] rtc_cmos 00:04: setting system clock to 2024-02-20T23:49:54 UTC (1708472994) [ 1.043151] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram [ 1.108056] ACPI: bus type USB registered [ 1.108102] usbcore: registered new interface driver usbfs [ 1.108117] usbcore: registered new interface driver hub [ 1.108130] usbcore: registered new device driver usb [ 1.114354] nvme nvme0: pci function 0000:03:00.0 [ 1.124287] nvme nvme0: 7/0/0 default/read/poll queues [ 1.158258] nvme0n1: p1 p2 p3 p4 p6 p7 [ 1.164387] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 1.164394] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 1.165479] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810 [ 1.165999] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 1.166003] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 1.166006] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed [ 1.166084] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06 [ 1.166087] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.166089] usb usb1: Product: xHCI Host Controller [ 1.166091] usb usb1: Manufacturer: Linux 6.6.14 xhci-hcd [ 1.166092] usb usb1: SerialNumber: 0000:00:14.0 [ 1.166296] hub 1-0:1.0: USB hub found [ 1.166313] hub 1-0:1.0: 12 ports detected [ 1.169998] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06 [ 1.170003] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.170006] usb usb2: Product: xHCI Host Controller [ 1.170008] usb usb2: Manufacturer: Linux 6.6.14 xhci-hcd [ 1.170010] usb usb2: SerialNumber: 0000:00:14.0 [ 1.170232] hub 2-0:1.0: USB hub found [ 1.170248] hub 2-0:1.0: 6 ports detected [ 1.413600] usb 1-1: new high-speed USB device number 2 using xhci_hcd [ 1.418299] EXT4-fs (dm-2): mounted filesystem c73f0769-e175-4cc5-81cc-dd9a1b4559f9 r/w with ordered data mode. Quota mode: none. [ 1.427825] tsc: Refined TSC clocksource calibration: 2111.998 MHz [ 1.427831] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e71768ef8b, max_idle_ns: 440795218977 ns [ 1.427884] clocksource: Switched to clocksource tsc [ 1.450650] systemd-gpt-auto-generator[246]: EFI loader partition unknown, exiting. [ 1.450656] systemd-gpt-auto-generator[246]: (The boot loader did not set EFI variable LoaderDevicePartUUID.) [ 1.563809] usb 1-1: New USB device found, idVendor=045e, idProduct=0942, bcdDevice=62.79 [ 1.563813] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.563815] usb 1-1: Product: L1 USB2 Hub [ 1.563817] usb 1-1: Manufacturer: Microsoft [ 1.567119] hub 1-1:1.0: USB hub found [ 1.571092] hub 1-1:1.0: 3 ports detected [ 1.665898] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd [ 1.681921] usb 2-1: New USB device found, idVendor=045e, idProduct=0941, bcdDevice=62.79 [ 1.681925] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.681928] usb 2-1: Product: L1 USB3 Gen1 Hub [ 1.681929] usb 2-1: Manufacturer: Microsoft [ 1.683920] hub 2-1:1.0: USB hub found [ 1.684191] hub 2-1:1.0: 2 ports detected [ 1.891667] usb 1-1.1: new high-speed USB device number 3 using xhci_hcd [ 1.995941] usb 1-1.1: New USB device found, idVendor=045e, idProduct=0944, bcdDevice=62.88 [ 1.995947] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.995949] usb 1-1.1: Product: L2 USB2 Hub [ 1.995951] usb 1-1.1: Manufacturer: Microsoft [ 1.996879] hub 1-1.1:1.0: USB hub found [ 1.997135] hub 1-1.1:1.0: 3 ports detected [ 2.061710] usb 2-1.1: new SuperSpeed USB device number 3 using xhci_hcd [ 2.079647] usb 2-1.1: New USB device found, idVendor=045e, idProduct=0943, bcdDevice=62.88 [ 2.079653] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.079655] usb 2-1.1: Product: L2 USB3 Gen1 Hub [ 2.079657] usb 2-1.1: Manufacturer: Microsoft [ 2.106105] hub 2-1.1:1.0: USB hub found [ 2.106404] hub 2-1.1:1.0: 3 ports detected [ 2.147361] systemd-journald[114]: Received SIGTERM from PID 1 (systemd). [ 2.166649] usb 1-1.3: new full-speed USB device number 4 using xhci_hcd [ 2.257094] systemd[1]: systemd 255.2 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK -XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified) [ 2.257104] systemd[1]: Detected architecture x86-64. [ 2.258021] systemd[1]: Hostname set to . [ 2.269861] usb 1-1.3: New USB device found, idVendor=045e, idProduct=0922, bcdDevice= b.01 [ 2.269865] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.269868] usb 1-1.3: Product: Surface Keyboard [ 2.269869] usb 1-1.3: Manufacturer: Microsoft [ 2.355779] usb 1-1.1.2: new full-speed USB device number 5 using xhci_hcd [ 2.462455] usb 1-1.1.2: New USB device found, idVendor=1050, idProduct=0407, bcdDevice= 5.12 [ 2.462479] usb 1-1.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.462482] usb 1-1.1.2: Product: YubiKey OTP+FIDO+CCID [ 2.462483] usb 1-1.1.2: Manufacturer: Yubico [ 2.471865] systemd[1]: bpf-lsm: LSM BPF program attached [ 2.684194] systemd[1]: /etc/systemd/system/cups.socket:5: ListenStream= references a path below legacy directory /var/run/, updating /var/run/cups/cups.sock → /run/cups/cups.sock; please update the unit file accordingly. [ 2.784389] systemd[1]: initrd-switch-root.service: Deactivated successfully. [ 2.792984] systemd[1]: Stopped initrd-switch-root.service. [ 2.793905] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 2.794527] systemd[1]: Created slice Virtual Machine and Container Slice. [ 2.795069] systemd[1]: Created slice Slice /system/getty. [ 2.795558] systemd[1]: Created slice Slice /system/modprobe. [ 2.796060] systemd[1]: Created slice Slice /system/systemd-fsck. [ 2.796534] systemd[1]: Created slice User and Session Slice. [ 2.796576] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid). [ 2.796672] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 2.796721] systemd[1]: Reached target Local Encrypted Volumes. [ 2.796749] systemd[1]: Stopped target initrd-fs.target. [ 2.796771] systemd[1]: Stopped target initrd-root-fs.target. [ 2.796791] systemd[1]: Stopped target initrd-switch-root.target. [ 2.796819] systemd[1]: Reached target Containers. [ 2.796856] systemd[1]: Reached target Path Units. [ 2.796884] systemd[1]: Reached target Remote File Systems. [ 2.796908] systemd[1]: Reached target Slice Units. [ 2.798469] systemd[1]: Listening on Process Core Dump Socket. [ 2.798711] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket. [ 2.799538] systemd[1]: Listening on udev Control Socket. [ 2.799728] systemd[1]: Listening on udev Kernel Socket. [ 2.810899] systemd[1]: Activating swap /dev/disk/by-uuid/ed5f4da6-c7ff-48ec-acec-977d08d03095... [ 2.812032] systemd[1]: Mounting Huge Pages File System... [ 2.813087] systemd[1]: Mounting POSIX Message Queue File System... [ 2.814111] systemd[1]: Mounting Kernel Debug File System... [ 2.816071] systemd[1]: Starting Create List of Static Device Nodes... [ 2.817731] systemd[1]: Starting Load Kernel Module configfs... [ 2.819852] systemd[1]: Starting Load Kernel Module drm... [ 2.820130] Adding 16777212k swap on /dev/mapper/linux-swap. Priority:-2 extents:1 across:16777212k SS [ 2.821686] systemd[1]: Starting Load Kernel Module efi_pstore... [ 2.823515] systemd[1]: Starting Load Kernel Module fuse... [ 2.824936] systemd[1]: Starting mount-pstore.service... [ 2.825045] systemd[1]: plymouth-switch-root.service: Deactivated successfully. [ 2.825110] systemd[1]: Stopped Plymouth switch root service. [ 2.826436] systemd[1]: Starting Create SUID/SGID Wrappers... [ 2.828236] systemd[1]: Started Forward Password Requests to Plymouth. [ 2.842741] systemd[1]: Starting Journal Service... [ 2.846679] pstore: Using crash dump compression: deflate [ 2.847612] pstore: Registered efi_pstore as persistent store backend [ 2.849102] systemd[1]: Starting Load Kernel Modules... [ 2.850437] systemd[1]: Starting Remount Root and Kernel File Systems... [ 2.857401] systemd[1]: Starting Coldplug All udev Devices... [ 2.857937] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. [ 2.858560] systemd[1]: Stopped Virtual Console Setup. [ 2.875619] systemd[1]: Activated swap /dev/disk/by-uuid/ed5f4da6-c7ff-48ec-acec-977d08d03095. [ 2.878860] systemd[1]: Mounted Huge Pages File System. [ 2.879073] systemd[1]: Mounted POSIX Message Queue File System. [ 2.879265] systemd[1]: Mounted Kernel Debug File System. [ 2.880479] fuse: init (API version 7.39) [ 2.889925] systemd[1]: Finished Create List of Static Device Nodes. [ 2.890502] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 2.895934] systemd[1]: Finished Load Kernel Module configfs. [ 2.896639] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 2.896854] systemd-journald[365]: Collecting audit messages is disabled. [ 2.897410] EXT4-fs (dm-2): re-mounted c73f0769-e175-4cc5-81cc-dd9a1b4559f9 r/w. Quota mode: none. [ 2.897623] mc: Linux media interface: v0.10 [ 2.904836] systemd[1]: Finished Load Kernel Module efi_pstore. [ 2.906212] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 2.927048] ACPI: bus type drm_connector registered [ 2.933688] videodev: Linux video capture interface: v2.00 [ 2.937940] systemd[1]: Finished Load Kernel Module fuse. [ 2.938266] systemd[1]: Started Journal Service. [ 2.964895] v4l2loopback: loading out-of-tree module taints kernel. [ 2.965878] v4l2loopback driver version 0.12.7 loaded [ 3.046296] systemd-journald[365]: Received client request to flush runtime journal. [ 3.078668] systemd-journald[365]: /var/log/journal/467713d56f7c4eeebc8b2f99e1287b46/system.journal: Journal file uses a different sequence number ID, rotating. [ 3.078674] systemd-journald[365]: Rotating system journal. [ 3.173039] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 3.188382] tun: Universal TUN/TAP device driver, 1.6 [ 3.203383] loop: module loaded [ 3.233561] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 3.233565] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld . All Rights Reserved. [ 3.255748] EXT4-fs (dm-1): mounted filesystem 37d7f7ba-c0e0-480a-8bf4-98ad7545e20f r/w with ordered data mode. Quota mode: none. [ 3.409934] ACPI: AC: AC Adapter [ADP1] (off-line) [ 3.435606] Consider using thermal netlink events interface [ 3.438362] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0 [ 3.438664] surface_hotplug MSHW0153:00: failed to set up IRQ 0: -517 [ 3.439927] ACPI: button: Lid Switch [LID0] [ 3.450668] intel_pmc_core INT33A1:00: initialized [ 3.464869] ACPI Warning: \_SB.SHPS._DSM: Argument #4 type mismatch - Found [Integer], ACPI requires [Package] (20230628/nsarguments-61) [ 3.683620] intel_ish_ipc 0000:00:13.0: enabling device (0000 -> 0002) [ 3.687190] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002) [ 3.688319] idma64 idma64.0: Found Intel integrated DMA 64-bit [ 3.706529] mei_me 0000:00:16.4: enabling device (0004 -> 0006) [ 3.706566] mei_me 0000:00:16.0: enabling device (0004 -> 0006) [ 3.709088] hid: raw HID events driver (C) Jiri Kosina [ 3.725688] Linux agpgart interface v0.103 [ 3.731926] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002) [ 3.736196] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736313] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736424] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736535] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736649] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736729] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736802] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736876] ACPI: thermal: [Firmware Bug]: No valid trip found [ 3.736887] usbcore: registered new interface driver usbhid [ 3.736891] usbhid: USB HID core driver [ 3.739935] idma64 idma64.1: Found Intel integrated DMA 64-bit [ 3.763552] intel-lpss 0000:00:15.2: enabling device (0000 -> 0002) [ 3.763949] idma64 idma64.2: Found Intel integrated DMA 64-bit [ 3.816270] intel-lpss 0000:00:15.3: enabling device (0000 -> 0002) [ 3.820143] idma64 idma64.3: Found Intel integrated DMA 64-bit [ 3.844699] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003) [ 3.845294] i801_smbus 0000:00:1f.4: SPD Write Disable is set [ 3.845319] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt [ 3.845396] pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 [ 3.845456] pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit] [ 3.857712] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.857763] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.857781] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.859350] i2c i2c-4: 2/2 memory slots populated (from DMI) [ 3.860828] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002) [ 3.863717] idma64 idma64.4: Found Intel integrated DMA 64-bit [ 3.872938] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.872967] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.872976] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.914994] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.915320] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.915434] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.919432] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 3.935504] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 3.935800] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ 3.962498] intel_rapl_common: Found RAPL domain package [ 3.962503] intel_rapl_common: Found RAPL domain core [ 3.962505] intel_rapl_common: Found RAPL domain uncore [ 3.962507] intel_rapl_common: Found RAPL domain dram [ 3.962509] intel_rapl_common: Found RAPL domain psys [ 3.964370] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.964435] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.964462] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.966782] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.966822] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.966837] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.967276] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.967311] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.967326] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.968471] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 3.969019] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input1 [ 3.969560] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 3.969628] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 3.969647] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 3.974436] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 3.977854] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in event mode [ 3.978448] input: IPTS 045E:0021 Touchscreen as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0004/input/input10 [ 4.020828] input: Microsoft Surface Keyboard Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input2 [ 4.020925] input: IPTS 045E:0021 as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0004/input/input11 [ 4.021039] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input3 [ 4.021166] input: Microsoft Surface Keyboard Touchpad as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input4 [ 4.021372] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input5 [ 4.021428] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input6 [ 4.021475] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input7 [ 4.021617] hid-generic 0003:045E:0922.0001: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [Microsoft Surface Keyboard] on usb-0000:00:14.0-1.3/input0 [ 4.021834] input: Yubico YubiKey OTP+FIDO+CCID as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:1050:0407.0002/input/input12 [ 4.024438] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 4.024490] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 4.024499] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 4.073517] i801_smbus 0000:00:1f.4: Transaction timeout [ 4.077399] i801_smbus 0000:00:1f.4: Failed terminating the transaction [ 4.077422] i801_smbus 0000:00:1f.4: SMBus is busy, can't use it! [ 4.097848] hid-generic 0003:1050:0407.0002: input,hidraw2: USB HID v1.10 Keyboard [Yubico YubiKey OTP+FIDO+CCID] on usb-0000:00:14.0-1.1.2/input0 [ 4.099679] hid-generic 0003:1050:0407.0003: hiddev97,hidraw3: USB HID v1.10 Device [Yubico YubiKey OTP+FIDO+CCID] on usb-0000:00:14.0-1.1.2/input1 [ 4.134773] ipu3_imgu: module is from the staging directory, the quality is unknown, you have been warned. [ 4.155537] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 4.156619] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 4.156647] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 4.156771] hid-generic 0000:045E:0021.0004: input,hidraw0: HID v0.00 Device [IPTS 045E:0021] on [ 4.174895] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer [ 4.174901] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules [ 4.174903] RAPL PMU: hw unit of domain package 2^-14 Joules [ 4.174904] RAPL PMU: hw unit of domain dram 2^-14 Joules [ 4.174905] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules [ 4.174906] RAPL PMU: hw unit of domain psys 2^-14 Joules [ 4.181434] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 4.181499] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 4.181519] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 4.182829] ipu3-imgu 0000:00:05.0: enabling device (0000 -> 0002) [ 4.183059] ipu3-imgu 0000:00:05.0: device 0x1919 (rev: 0x1) [ 4.183087] ipu3-imgu 0000:00:05.0: physical base address 0x00000000c2000000, 4194304 bytes [ 4.204003] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002) [ 4.216208] intel_rapl_common: Found RAPL domain package [ 4.216229] intel_rapl_common: Found RAPL domain dram [ 4.226606] cryptd: max_cpu_qlen set to 1000 [ 4.232202] ipu3-cio2 0000:00:14.3: Found supported sensor INT33BE:00 [ 4.232352] ipu3-cio2 0000:00:14.3: Found supported sensor INT347A:00 [ 4.232483] ipu3-cio2 0000:00:14.3: Found supported sensor INT347E:00 [ 4.232632] ipu3-cio2 0000:00:14.3: Connected 3 cameras [ 4.232649] ipu3-cio2 0000:00:14.3: enabling device (0000 -> 0002) [ 4.232819] ipu3-cio2 0000:00:14.3: device 0x9d32 (rev: 0x1) [ 4.233500] ov5693 i2c-INT33BE:00: supply avdd not found, using dummy regulator [ 4.233553] ov5693 i2c-INT33BE:00: supply dovdd not found, using dummy regulator [ 4.233570] ov5693 i2c-INT33BE:00: supply dvdd not found, using dummy regulator [ 4.233803] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400) [ 4.233972] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 4.252456] ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator [ 4.252514] ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator [ 4.252531] ov8865 i2c-INT347A:00: supply avdd not found, using dummy regulator [ 4.252886] ov7251 i2c-INT347E:00: supply vdddo not found, using dummy regulator [ 4.252936] ov7251 i2c-INT347E:00: supply vddd not found, using dummy regulator [ 4.252949] ov7251 i2c-INT347E:00: supply vdda not found, using dummy regulator [ 4.257681] ov7251 i2c-INT347E:00: OV7251 revision 7 (1F) detected at address 0x60 [ 4.302975] dw-apb-uart.4: ttyS0 at MMIO 0xc27c8000 (irq = 20, base_baud = 3000000) is a 16550A [ 4.321578] serial serial0: tty port ttyS0 registered [ 4.340338] ov8865 i2c-INT347A:00: Instantiated dw9719 VCM [ 4.349281] surface_serial_hub serial0-0: SAM firmware version: 182.2304.139 [ 4.433703] input: Microsoft Surface DTX Device Mode Switch as /devices/platform/MSHW0133:00/input/input13 [ 4.443200] ipu3-imgu 0000:00:05.0: loaded firmware version irci_irci_ecr-master_20161208_0213_20170112_1500, 17 binaries, 1212984 bytes [ 4.483669] systemd-journald[365]: /var/log/journal/467713d56f7c4eeebc8b2f99e1287b46/user-1000.journal: Journal file uses a different sequence number ID, rotating. [ 4.484681] mousedev: PS/2 mouse device common for all mice [ 4.507048] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1 [ 4.509015] input: Microsoft Surface Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input14 [ 4.509052] AVX2 version of gcm_enc/dec engaged. [ 4.509148] AES CTR mode by8 optimization enabled [ 4.520692] mwifiex_pcie 0000:01:00.0: quirk reset_d3cold enabled [ 4.520728] mwifiex_pcie 0000:01:00.0: quirk do_flr_on_bridge enabled [ 4.520742] mwifiex_pcie 0000:01:00.0: quirk no_brigde_d3 enabled [ 4.520876] mwifiex_pcie 0000:01:00.0: enabling device (0000 -> 0002) [ 4.521853] mwifiex_pcie: PCI memory map Virt0: ffffc90024f00000 PCI memory map Virt2: ffffc90025100000 [ 4.537960] ACPI: battery: Slot [BAT1] (battery present) [ 4.558863] dw9719 i2c-INT347A:00-VCM: supply vdd not found, using dummy regulator [ 4.559394] ACPI: battery: Slot [BAT2] (battery present) [ 4.559481] input: IPTS Touch as /devices/virtual/input/input23 [ 4.559871] hid-generic 001F:8087:0AC2.0005: hidraw1: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on [ 4.567442] input: Microsoft Surface Keyboard Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input15 [ 4.587794] input: IPTS Stylus as /devices/virtual/input/input24 [ 4.588611] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input16 [ 4.589092] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Stopping IPTS [ 4.589347] input: Microsoft Surface Keyboard Touchpad as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input17 [ 4.594550] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 [ 4.594620] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) [ 4.595974] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input18 [ 4.596279] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input19 [ 4.717314] input: Microsoft Surface Keyboard UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:045E:0922.0001/input/input20 [ 4.881203] intel_tcc_cooling: Programmable TCC Offset detected [ 5.188052] ACPI Warning: \_SB._SAN._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230628/nsarguments-61) [ 5.518336] i915 0000:00:02.0: vgaarb: deactivate vga console [ 5.524203] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 5.525119] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915]) [ 5.528439] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4) [ 5.606855] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0 [ 5.611921] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 5.612313] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input25 [ 5.612505] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) [ 5.652684] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 5.664866] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 5.668456] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in poll mode [ 5.669702] hid-multitouch 0003:045E:0922.0001: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [Microsoft Surface Keyboard] on usb-0000:00:14.0-1.3/input0 [ 5.673881] hid-sensor-hub 001F:8087:0AC2.0005: hidraw4: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on [ 5.689801] fbcon: i915drmfb (fb0) is primary device [ 5.689806] fbcon: Deferring console take-over [ 5.689810] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device [ 5.819132] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC298: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker [ 5.819143] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 5.819148] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) [ 5.819152] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 [ 5.819154] snd_hda_codec_realtek hdaudioC0D0: inputs: [ 5.819328] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18 [ 5.819365] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12 [ 5.960873] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26 [ 5.962151] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27 [ 5.962358] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28 [ 5.962529] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29 [ 5.963530] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30 [ 6.148725] mwifiex_pcie 0000:01:00.0: info: FW download over, size 723540 bytes [ 6.835605] .gnome-session-[1253]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set [ 6.847602] usb 1-6: new high-speed USB device number 6 using xhci_hcd [ 6.975665] usb 1-6: New USB device found, idVendor=1286, idProduct=204c, bcdDevice=32.01 [ 6.975671] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 6.975674] usb 1-6: Product: Bluetooth and Wireless LAN Composite Device [ 6.975676] usb 1-6: Manufacturer: Marvell [ 6.975678] usb 1-6: SerialNumber: 0000000000000000 [ 7.093598] Bluetooth: Core ver 2.22 [ 7.093630] NET: Registered PF_BLUETOOTH protocol family [ 7.093631] Bluetooth: HCI device and connection manager initialized [ 7.093637] Bluetooth: HCI socket layer initialized [ 7.093639] Bluetooth: L2CAP socket layer initialized [ 7.093643] Bluetooth: SCO socket layer initialized [ 7.110181] usbcore: registered new interface driver btusb [ 7.110485] Bluetooth: hci0: unexpected event for opcode 0x0000 [ 7.110729] Bluetooth: hci0: unexpected event for opcode 0x0000 [ 7.189683] mwifiex_pcie 0000:01:00.0: WLAN FW is active [ 7.194986] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 7.194992] Bluetooth: BNEP socket layer initialized [ 7.259811] Bluetooth: MGMT ver 1.22 [ 7.263491] NET: Registered PF_ALG protocol family [ 7.328868] mwifiex_pcie 0000:01:00.0: Bad HW revision detected, disabling deep sleep [ 7.346617] mwifiex_pcie 0000:01:00.0: info: MWIFIEX VERSION: mwifiex 1.0 (15.68.19.p21) [ 7.346628] mwifiex_pcie 0000:01:00.0: driver_version = mwifiex 1.0 (15.68.19.p21) [ 7.359853] mwifiex_pcie 0000:01:00.0 wlp1s0: renamed from mlan0 [ 7.474368] NET: Registered PF_PACKET protocol family [ 7.507331] ------------[ cut here ]------------ [ 7.507335] memcpy: detected field-spanning write (size 73) of single field "ext_scan->tlv_buffer" at drivers/net/wireless/marvell/mwifiex/scan.c:2251 (size 1) [ 7.507371] WARNING: CPU: 6 PID: 1311 at drivers/net/wireless/marvell/mwifiex/scan.c:2251 mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 7.507399] Modules linked in: af_packet cmac algif_hash algif_skcipher af_alg bnep btusb btrtl btintel btbcm btmtk bluetooth ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat hid_sensor_rotation hid_sensor_gyro_3d hid_sensor_als hid_sensor_accel_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common industrialio snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_sof_pci_intel_skl snd_sof_intel_hda_common snd_soc_hdac_hda soundwire_intel snd_sof_intel_hda_mlink soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_sof_utils soundwire_generic_allocation soundwire_bus snd_soc_avs i915 snd_soc_hda_codec snd_soc_skl snd_soc_sst_ipc snd_soc_sst_dsp snd_hda_ext_core intel_tcc_cooling snd_soc_acpi_intel_match x86_pkg_temp_thermal snd_soc_acpi intel_powerclamp snd_soc_core snd_compress coretemp crc32_pclmul polyval_clmulni polyval_generic ac97_bus snd_pcm_dmaengine hid_sensor_hub xt_conntrack gf128mul nf_conntrack snd_hda_intel [ 7.507449] ghash_clmulni_intel snd_intel_dspcfg sha512_ssse3 snd_intel_sdw_acpi nf_defrag_ipv6 sha512_generic nf_defrag_ipv4 snd_hda_codec sha256_ssse3 battery sha1_ssse3 mwifiex_pcie aesni_intel intel_ishtp_hid snd_hda_core drm_buddy mousedev surface_platform_profile libaes dw9719 platform_profile input_leds mac_hid joydev 8250_dw ip6t_rpfilter ttm crypto_simd mwifiex hid_multitouch iTCO_wdt ipu3_cio2 snd_hwdep intel_pmc_bxt drm_display_helper snd_pcm cryptd ipu_bridge ipt_rpfilter processor_thermal_device_pci_legacy watchdog ipu3_imgu(C) msr cec snd_timer videobuf2_dma_sg rapl processor_thermal_device ipts hid_generic mei_hdcp mei_pxp intel_rapl_msr evdev surface_gpe intel_cstate drm_kms_helper xt_pkttype snd processor_thermal_rfim i2c_i801 intel_skl_int3472_tps68470 processor_thermal_mbox cfg80211 intel_gtt processor_thermal_rapl videobuf2_memops tps68470_regulator xt_LOG intel_uncore i2c_smbus soundcore thermal usbhid nf_log_syslog agpgart ov5693 intel_rapl_common hid videobuf2_v4l2 mei_me clk_tps68470 [ 7.507509] intel_lpss_pci i2c_algo_bit ov8865 v4l2_cci ov7251 xt_tcpudp intel_xhci_usb_role_switch intel_ish_ipc intel_lpss rfkill v4l2_fwnode video mei roles intel_pch_thermal videobuf2_common intel_soc_dts_iosf intel_ishtp idma64 virt_dma v4l2_async intel_skl_int3472_discrete nft_compat surfacepro3_button surface_dtx surface_acpi_notify surface_aggregator_registry wmi pinctrl_sunrisepoint button intel_pmc_core surface_aggregator surface_hotplug int3403_thermal int3400_thermal soc_button_array acpi_tad acpi_pad int340x_thermal_zone acpi_thermal_rel dptf_power ac nf_tables libcrc32c sch_fq_codel uinput ctr wireguard curve25519_x86_64 libchacha20poly1305 chacha_x86_64 poly1305_x86_64 libcurve25519_generic libchacha ip6_udp_tunnel udp_tunnel atkbd libps2 serio vivaldi_fmap loop cpufreq_powersave tun tap macvlan bridge stp llc kvm_intel kvm irqbypass v4l2loopback(O) videodev mc drm led_class fuse efi_pstore configfs backlight nfnetlink efivarfs dmi_sysfs ip_tables x_tables ext4 crc32c_generic crc16 mbcache jbd2 [ 7.507576] xhci_pci xhci_pci_renesas firmware_class xhci_hcd nvme nvme_core usbcore t10_pi crc64_rocksoft crc64 crc_t10dif crct10dif_generic tpm_crb crct10dif_pclmul crc32c_intel crct10dif_common usb_common rtc_cmos tpm_tis tpm_tis_core dm_snapshot dm_bufio dm_mod dax tpm rng_core autofs4 [ 7.507609] CPU: 6 PID: 1311 Comm: wpa_supplicant Tainted: G C O 6.6.14 #1-NixOS [ 7.507612] Hardware name: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 7.507614] RIP: 0010:mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 7.507635] Code: 3d 11 25 02 00 00 75 c7 b9 01 00 00 00 48 c7 c2 98 01 23 c1 4c 89 e6 48 c7 c7 c8 ff 22 c1 c6 05 f2 24 02 00 01 e8 6c 00 eb c3 <0f> 0b eb a1 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90 90 90 90 90 [ 7.507637] RSP: 0018:ffffc9000217f810 EFLAGS: 00010286 [ 7.507640] RAX: 0000000000000000 RBX: ffff888102da5c00 RCX: 0000000000000027 [ 7.507642] RDX: ffff88845f521508 RSI: 0000000000000001 RDI: ffff88845f521500 [ 7.507643] RBP: ffff888134d876c0 R08: 0000000000000000 R09: ffffc9000217f6b0 [ 7.507645] R10: 0000000000000003 R11: ffffffff86938ae8 R12: 0000000000000049 [ 7.507646] R13: ffff888134d876cc R14: ffff888102da5c0b R15: 0000000000000107 [ 7.507648] FS: 00007f3195cb1840(0000) GS:ffff88845f500000(0000) knlGS:0000000000000000 [ 7.507650] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 7.507651] CR2: 0000000000a65558 CR3: 000000011602c002 CR4: 00000000003706e0 [ 7.507653] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 7.507654] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 7.507656] Call Trace: [ 7.507658] [ 7.507660] ? mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 7.507680] ? __warn+0x81/0x130 [ 7.507686] ? mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 7.507707] ? report_bug+0x171/0x1a0 [ 7.507714] ? handle_bug+0x3c/0x80 [ 7.507717] ? exc_invalid_op+0x17/0x70 [ 7.507720] ? asm_exc_invalid_op+0x1a/0x20 [ 7.507726] ? mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 7.507746] mwifiex_send_cmd+0x1db/0x400 [mwifiex] [ 7.507762] mwifiex_scan_networks+0x952/0xe40 [mwifiex] [ 7.507784] mwifiex_cfg80211_scan+0x287/0x4a0 [mwifiex] [ 7.507803] rdev_scan+0x25/0xd0 [cfg80211] [ 7.507886] nl80211_trigger_scan+0x409/0x7e0 [cfg80211] [ 7.507948] genl_family_rcv_msg_doit+0xef/0x150 [ 7.507955] genl_rcv_msg+0x1b3/0x2c0 [ 7.507958] ? __pfx_nl80211_pre_doit+0x10/0x10 [cfg80211] [ 7.508013] ? __pfx_nl80211_trigger_scan+0x10/0x10 [cfg80211] [ 7.508072] ? __pfx_nl80211_post_doit+0x10/0x10 [cfg80211] [ 7.508128] ? __pfx_genl_rcv_msg+0x10/0x10 [ 7.508131] netlink_rcv_skb+0x58/0x110 [ 7.508136] genl_rcv+0x28/0x40 [ 7.508139] netlink_unicast+0x1a3/0x290 [ 7.508142] netlink_sendmsg+0x254/0x4d0 [ 7.508145] ____sys_sendmsg+0x396/0x3d0 [ 7.508149] ? copy_msghdr_from_user+0x7d/0xc0 [ 7.508153] ___sys_sendmsg+0x9a/0xe0 [ 7.508161] __sys_sendmsg+0x7a/0xd0 [ 7.508166] do_syscall_64+0x3c/0x90 [ 7.508169] entry_SYSCALL_64_after_hwframe+0x6e/0xd8 [ 7.508173] RIP: 0033:0x7f3195727394 [ 7.508195] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d d5 1f 0d 00 00 74 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89 [ 7.508197] RSP: 002b:00007ffe66fbc5b8 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 7.508199] RAX: ffffffffffffffda RBX: 00000000009ed7f0 RCX: 00007f3195727394 [ 7.508201] RDX: 0000000000000000 RSI: 00007ffe66fbc5f0 RDI: 0000000000000005 [ 7.508202] RBP: 0000000000a64500 R08: 0000000000000004 R09: 0000000000000001 [ 7.508204] R10: 00007ffe66fbc6d4 R11: 0000000000000202 R12: 00000000009ed700 [ 7.508205] R13: 00007ffe66fbc5f0 R14: 0000000000000000 R15: 00007ffe66fbc6d4 [ 7.508209] [ 7.508210] ---[ end trace 0000000000000000 ]--- [ 9.373479] rfkill: input handler disabled [ 10.185262] Bluetooth: RFCOMM TTY layer initialized [ 10.185287] Bluetooth: RFCOMM socket layer initialized [ 10.185305] Bluetooth: RFCOMM ver 1.11 [ 10.563772] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c8 [ 10.592541] mwifiex_pcie 0000:01:00.0: info: associated to bssid 3c:df:a9:14:d7:c8 successfully [ 13.220826] rfkill: input handler enabled [ 52.295887] warning: `ThreadPoolForeg' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211 [ 310.293326] ------------[ cut here ]------------ [ 310.293336] memcpy: detected field-spanning write (size 14) of single field "wildcard_ssid_tlv->ssid" at drivers/net/wireless/marvell/mwifiex/scan.c:916 (size 1) [ 310.293418] WARNING: CPU: 3 PID: 1311 at drivers/net/wireless/marvell/mwifiex/scan.c:916 mwifiex_scan_networks+0x32a/0xe40 [mwifiex] [ 310.293501] Modules linked in: rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet cmac algif_hash algif_skcipher af_alg bnep btusb btrtl btintel btbcm btmtk bluetooth ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat hid_sensor_rotation hid_sensor_gyro_3d hid_sensor_als hid_sensor_accel_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common industrialio snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_sof_pci_intel_skl snd_sof_intel_hda_common snd_soc_hdac_hda soundwire_intel snd_sof_intel_hda_mlink soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_sof_utils soundwire_generic_allocation soundwire_bus snd_soc_avs i915 snd_soc_hda_codec snd_soc_skl snd_soc_sst_ipc snd_soc_sst_dsp snd_hda_ext_core intel_tcc_cooling snd_soc_acpi_intel_match x86_pkg_temp_thermal snd_soc_acpi intel_powerclamp snd_soc_core snd_compress coretemp crc32_pclmul polyval_clmulni polyval_generic ac97_bus snd_pcm_dmaengine hid_sensor_hub [ 310.293657] xt_conntrack gf128mul nf_conntrack snd_hda_intel ghash_clmulni_intel snd_intel_dspcfg sha512_ssse3 snd_intel_sdw_acpi nf_defrag_ipv6 sha512_generic nf_defrag_ipv4 snd_hda_codec sha256_ssse3 battery sha1_ssse3 mwifiex_pcie aesni_intel intel_ishtp_hid snd_hda_core drm_buddy mousedev surface_platform_profile libaes dw9719 platform_profile input_leds mac_hid joydev 8250_dw ip6t_rpfilter ttm crypto_simd mwifiex hid_multitouch iTCO_wdt ipu3_cio2 snd_hwdep intel_pmc_bxt drm_display_helper snd_pcm cryptd ipu_bridge ipt_rpfilter processor_thermal_device_pci_legacy watchdog ipu3_imgu(C) msr cec snd_timer videobuf2_dma_sg rapl processor_thermal_device ipts hid_generic mei_hdcp mei_pxp intel_rapl_msr evdev surface_gpe intel_cstate drm_kms_helper xt_pkttype snd processor_thermal_rfim i2c_i801 intel_skl_int3472_tps68470 processor_thermal_mbox cfg80211 intel_gtt processor_thermal_rapl videobuf2_memops tps68470_regulator xt_LOG intel_uncore i2c_smbus soundcore thermal usbhid nf_log_syslog agpgart ov5693 intel_rapl_common [ 310.293870] hid videobuf2_v4l2 mei_me clk_tps68470 intel_lpss_pci i2c_algo_bit ov8865 v4l2_cci ov7251 xt_tcpudp intel_xhci_usb_role_switch intel_ish_ipc intel_lpss rfkill v4l2_fwnode video mei roles intel_pch_thermal videobuf2_common intel_soc_dts_iosf intel_ishtp idma64 virt_dma v4l2_async intel_skl_int3472_discrete nft_compat surfacepro3_button surface_dtx surface_acpi_notify surface_aggregator_registry wmi pinctrl_sunrisepoint button intel_pmc_core surface_aggregator surface_hotplug int3403_thermal int3400_thermal soc_button_array acpi_tad acpi_pad int340x_thermal_zone acpi_thermal_rel dptf_power ac nf_tables libcrc32c sch_fq_codel uinput ctr wireguard curve25519_x86_64 libchacha20poly1305 chacha_x86_64 poly1305_x86_64 libcurve25519_generic libchacha ip6_udp_tunnel udp_tunnel atkbd libps2 serio vivaldi_fmap loop cpufreq_powersave tun tap macvlan bridge stp llc kvm_intel kvm irqbypass v4l2loopback(O) videodev mc drm led_class fuse efi_pstore configfs backlight nfnetlink efivarfs dmi_sysfs ip_tables x_tables ext4 [ 310.294075] crc32c_generic crc16 mbcache jbd2 xhci_pci xhci_pci_renesas firmware_class xhci_hcd nvme nvme_core usbcore t10_pi crc64_rocksoft crc64 crc_t10dif crct10dif_generic tpm_crb crct10dif_pclmul crc32c_intel crct10dif_common usb_common rtc_cmos tpm_tis tpm_tis_core dm_snapshot dm_bufio dm_mod dax tpm rng_core autofs4 [ 310.294149] CPU: 3 PID: 1311 Comm: wpa_supplicant Tainted: G WC O 6.6.14 #1-NixOS [ 310.294160] Hardware name: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 310.294165] RIP: 0010:mwifiex_scan_networks+0x32a/0xe40 [mwifiex] [ 310.294236] Code: 00 00 00 4c 89 ce 48 c7 c2 70 03 23 c1 48 c7 c7 c8 ff 22 c1 4c 89 44 24 20 4c 89 4c 24 18 c6 05 ef 1b 02 00 01 e8 66 f7 ea c3 <0f> 0b 4c 8b 44 24 20 4c 8b 4c 24 18 e9 5d ff ff ff 8b 16 89 55 05 [ 310.294243] RSP: 0018:ffffc9000217f888 EFLAGS: 00010286 [ 310.294251] RAX: 0000000000000000 RBX: 0000000000000001 RCX: 0000000000000027 [ 310.294257] RDX: ffff88845f3a1508 RSI: 0000000000000001 RDI: ffff88845f3a1500 [ 310.294263] RBP: ffff888102c0740b R08: 0000000000000000 R09: ffffc9000217f728 [ 310.294267] R10: 0000000000000003 R11: ffffffff86938ae8 R12: 000000000000000e [ 310.294271] R13: 0000000000000000 R14: ffff88810865a800 R15: 0000000000000000 [ 310.294276] FS: 00007f3195cb1840(0000) GS:ffff88845f380000(0000) knlGS:0000000000000000 [ 310.294283] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 310.294289] CR2: 000033c4029eb061 CR3: 000000011602c004 CR4: 00000000003706e0 [ 310.294294] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 310.294299] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 310.294303] Call Trace: [ 310.294311] [ 310.294316] ? mwifiex_scan_networks+0x32a/0xe40 [mwifiex] [ 310.294381] ? __warn+0x81/0x130 [ 310.294398] ? mwifiex_scan_networks+0x32a/0xe40 [mwifiex] [ 310.294467] ? report_bug+0x171/0x1a0 [ 310.294485] ? handle_bug+0x3c/0x80 [ 310.294497] ? exc_invalid_op+0x17/0x70 [ 310.294507] ? asm_exc_invalid_op+0x1a/0x20 [ 310.294524] ? mwifiex_scan_networks+0x32a/0xe40 [mwifiex] [ 310.294588] ? mwifiex_scan_networks+0x32a/0xe40 [mwifiex] [ 310.294658] mwifiex_cfg80211_scan+0x287/0x4a0 [mwifiex] [ 310.294722] rdev_scan+0x25/0xd0 [cfg80211] [ 310.294954] nl80211_trigger_scan+0x409/0x7e0 [cfg80211] [ 310.295168] genl_family_rcv_msg_doit+0xef/0x150 [ 310.295189] genl_rcv_msg+0x1b3/0x2c0 [ 310.295198] ? __pfx_nl80211_pre_doit+0x10/0x10 [cfg80211] [ 310.295390] ? __pfx_nl80211_trigger_scan+0x10/0x10 [cfg80211] [ 310.295591] ? __pfx_nl80211_post_doit+0x10/0x10 [cfg80211] [ 310.295793] ? __pfx_genl_rcv_msg+0x10/0x10 [ 310.295805] netlink_rcv_skb+0x58/0x110 [ 310.295821] genl_rcv+0x28/0x40 [ 310.295829] netlink_unicast+0x1a3/0x290 [ 310.295838] netlink_sendmsg+0x254/0x4d0 [ 310.295850] ____sys_sendmsg+0x396/0x3d0 [ 310.295860] ? copy_msghdr_from_user+0x7d/0xc0 [ 310.295874] ___sys_sendmsg+0x9a/0xe0 [ 310.295900] __sys_sendmsg+0x7a/0xd0 [ 310.295917] do_syscall_64+0x3c/0x90 [ 310.295926] entry_SYSCALL_64_after_hwframe+0x6e/0xd8 [ 310.295938] RIP: 0033:0x7f3195727394 [ 310.295991] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d d5 1f 0d 00 00 74 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89 [ 310.295998] RSP: 002b:00007ffe66fbc5b8 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 310.296007] RAX: ffffffffffffffda RBX: 00000000009ed7f0 RCX: 00007f3195727394 [ 310.296012] RDX: 0000000000000000 RSI: 00007ffe66fbc5f0 RDI: 0000000000000005 [ 310.296017] RBP: 0000000000a88340 R08: 0000000000000004 R09: 0000000000000001 [ 310.296021] R10: 00007ffe66fbc6d4 R11: 0000000000000202 R12: 00000000009ed700 [ 310.296025] R13: 00007ffe66fbc5f0 R14: 0000000000000000 R15: 00007ffe66fbc6d4 [ 310.296038] [ 310.296041] ---[ end trace 0000000000000000 ]--- [ 912.280194] pcieport 0000:00:1c.4: Data Link Layer Link Active not set in 1000 msec [ 912.280221] pcieport 0000:00:1c.4: pciehp: Slot(4): Card not present [ 1069.137678] mwifiex_pcie 0000:01:00.0: info: successfully disconnected from 3c:df:a9:14:d7:c8: reason code 4 [ 1074.126111] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c8 [ 1074.150239] mwifiex_pcie 0000:01:00.0: ASSOC_RESP: failed, status code=1 err=0xfffd a_id=0x3fff [ 1074.150245] mwifiex_pcie 0000:01:00.0: assoc failure: reason CONNECT_ERR_ASSOC_ERR_AUTH_REFUSED [ 1074.150292] mwifiex_pcie 0000:01:00.0: info: association to bssid 3c:df:a9:14:d7:c8 failed [ 1077.547229] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c7 [ 1077.578704] mwifiex_pcie 0000:01:00.0: info: associated to bssid 3c:df:a9:14:d7:c7 successfully [ 1144.685931] mwifiex_pcie 0000:01:00.0: info: successfully disconnected from 3c:df:a9:14:d7:c7: reason code 4 [ 1149.669186] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c7 [ 1149.699063] mwifiex_pcie 0000:01:00.0: ASSOC_RESP: failed, status code=1 err=0xfffd a_id=0x3fff [ 1149.699074] mwifiex_pcie 0000:01:00.0: assoc failure: reason CONNECT_ERR_ASSOC_ERR_AUTH_REFUSED [ 1149.699149] mwifiex_pcie 0000:01:00.0: info: association to bssid 3c:df:a9:14:d7:c7 failed [ 1153.112303] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c8 [ 1153.136744] mwifiex_pcie 0000:01:00.0: info: associated to bssid 3c:df:a9:14:d7:c8 successfully [ 1249.523266] dptf_power INT3407:00: Unsupported event [0x82] [ 1481.204772] pcieport 0000:00:1c.4: pciehp: Slot(4): Card present [ 1481.204777] pcieport 0000:00:1c.4: pciehp: Slot(4): Link Up [ 1481.330733] pci 0000:02:00.0: [10de:1c8d] type 00 class 0x030200 [ 1481.330750] pci 0000:02:00.0: reg 0x10: [mem 0x00000000-0x00ffffff] [ 1481.330762] pci 0000:02:00.0: reg 0x14: [mem 0x00000000-0x0fffffff 64bit pref] [ 1481.330772] pci 0000:02:00.0: reg 0x1c: [mem 0x00000000-0x01ffffff 64bit pref] [ 1481.330778] pci 0000:02:00.0: reg 0x24: [io 0x0000-0x007f] [ 1481.330784] pci 0000:02:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref] [ 1481.330791] pci 0000:02:00.0: Max Payload Size set to 256 (was 128, max 256) [ 1481.330925] pci 0000:02:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:00:1c.4 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link) [ 1481.331298] pci 0000:02:00.0: BAR 1: assigned [mem 0x90000000-0x9fffffff 64bit pref] [ 1481.331312] pci 0000:02:00.0: BAR 3: assigned [mem 0xa0000000-0xa1ffffff 64bit pref] [ 1481.331324] pci 0000:02:00.0: BAR 0: assigned [mem 0xc1000000-0xc1ffffff] [ 1481.331330] pci 0000:02:00.0: BAR 6: no space for [mem size 0x00080000 pref] [ 1481.331333] pci 0000:02:00.0: BAR 6: failed to assign [mem size 0x00080000 pref] [ 1481.331336] pci 0000:02:00.0: BAR 5: assigned [io 0x3000-0x307f] [ 1481.331342] pcieport 0000:00:1c.4: PCI bridge to [bus 02] [ 1481.331346] pcieport 0000:00:1c.4: bridge window [io 0x3000-0x3fff] [ 1481.331351] pcieport 0000:00:1c.4: bridge window [mem 0xc1000000-0xc1ffffff] [ 1481.331356] pcieport 0000:00:1c.4: bridge window [mem 0x90000000-0xa1ffffff 64bit pref] [ 2289.097346] mwifiex_pcie 0000:01:00.0: info: successfully disconnected from 3c:df:a9:14:d7:c8: reason code 3 [ 2294.117254] mwifiex_pcie 0000:01:00.0: info: shutdown mwifiex... [ 2294.117460] mwifiex_pcie 0000:01:00.0: PREP_CMD: card is removed [ 2294.138898] mwifiex_pcie 0000:01:00.0: performing cancel_work_sync()... [ 2294.138903] mwifiex_pcie 0000:01:00.0: cancel_work_sync() done [ 2294.191423] PM: suspend entry (s2idle) [ 2294.208993] Filesystems sync: 0.017 seconds [ 2294.260004] Freezing user space processes [ 2294.264653] Freezing user space processes completed (elapsed 0.004 seconds) [ 2294.264666] OOM killer disabled. [ 2294.264669] Freezing remaining freezable tasks [ 2294.265626] Freezing remaining freezable tasks completed (elapsed 0.000 seconds) [ 2294.265634] printk: Suspending console(s) (use no_console_suspend to debug) [ 2294.367007] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Stopping IPTS [ 2294.666435] intel_pch_thermal 0000:00:14.2: CPU-PCH is cool [34C] [ 2316.392339] surface_acpi_notify MSHW0091:00: rqst: device is suspended, not executing [ 2316.686292] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 2316.686533] OOM killer enabled. [ 2316.686538] Restarting tasks ... [ 2316.689229] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 2316.692068] done. [ 2316.692104] random: crng reseeded on system resumption [ 2316.695187] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in event mode [ 2316.695891] input: IPTS 045E:0021 Touchscreen as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0006/input/input31 [ 2316.696956] input: IPTS 045E:0021 as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:0021.0006/input/input32 [ 2316.725079] PM: suspend exit [ 2316.747739] hid-generic 0000:045E:0021.0006: input,hidraw5: HID v0.00 Device [IPTS 045E:0021] on [ 2316.748288] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915]) [ 2316.783436] input: IPTS Touch as /devices/virtual/input/input33 [ 2316.783615] input: IPTS Stylus as /devices/virtual/input/input34 [ 2316.783764] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Stopping IPTS [ 2316.807266] mwifiex_pcie: unknown parameter 'mwifiex' ignored [ 2316.807328] mwifiex_pcie 0000:01:00.0: quirk reset_d3cold enabled [ 2316.807329] mwifiex_pcie 0000:01:00.0: quirk do_flr_on_bridge enabled [ 2316.807330] mwifiex_pcie 0000:01:00.0: quirk no_brigde_d3 enabled [ 2316.808071] mwifiex_pcie: PCI memory map Virt0: ffffc90002f00000 PCI memory map Virt2: ffffc90003400000 [ 2316.841922] mwifiex_pcie 0000:01:00.0: WLAN FW already running! Skip FW dnld [ 2316.841926] mwifiex_pcie 0000:01:00.0: WLAN FW is active [ 2316.949374] mwifiex_pcie 0000:01:00.0: Bad HW revision detected, disabling deep sleep [ 2316.967396] mwifiex_pcie 0000:01:00.0: info: MWIFIEX VERSION: mwifiex 1.0 (15.68.19.p21) [ 2316.967406] mwifiex_pcie 0000:01:00.0: driver_version = mwifiex 1.0 (15.68.19.p21) [ 2316.978646] mwifiex_pcie 0000:01:00.0 wlp1s0: renamed from mlan0 [ 2317.061701] ------------[ cut here ]------------ [ 2317.061704] memcpy: detected field-spanning write (size 73) of single field "ext_scan->tlv_buffer" at drivers/net/wireless/marvell/mwifiex/scan.c:2251 (size 1) [ 2317.061718] WARNING: CPU: 0 PID: 1311 at drivers/net/wireless/marvell/mwifiex/scan.c:2251 mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 2317.061742] Modules linked in: mwifiex_pcie mwifiex rfcomm snd_seq_dummy snd_hrtimer snd_seq snd_seq_device af_packet cmac algif_hash algif_skcipher af_alg bnep btusb btrtl btintel btbcm btmtk bluetooth ecdh_generic ecc nls_iso8859_1 nls_cp437 vfat fat hid_sensor_rotation hid_sensor_gyro_3d hid_sensor_als hid_sensor_accel_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common industrialio snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_sof_pci_intel_skl snd_sof_intel_hda_common snd_soc_hdac_hda soundwire_intel snd_sof_intel_hda_mlink soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof_xtensa_dsp snd_sof snd_sof_utils soundwire_generic_allocation soundwire_bus snd_soc_avs i915 snd_soc_hda_codec snd_soc_skl snd_soc_sst_ipc snd_soc_sst_dsp snd_hda_ext_core intel_tcc_cooling snd_soc_acpi_intel_match x86_pkg_temp_thermal snd_soc_acpi intel_powerclamp snd_soc_core snd_compress coretemp crc32_pclmul polyval_clmulni polyval_generic ac97_bus snd_pcm_dmaengine [ 2317.061789] hid_sensor_hub xt_conntrack gf128mul nf_conntrack snd_hda_intel ghash_clmulni_intel snd_intel_dspcfg sha512_ssse3 snd_intel_sdw_acpi nf_defrag_ipv6 sha512_generic nf_defrag_ipv4 snd_hda_codec sha256_ssse3 battery sha1_ssse3 aesni_intel intel_ishtp_hid snd_hda_core drm_buddy mousedev surface_platform_profile libaes dw9719 platform_profile input_leds mac_hid joydev 8250_dw ip6t_rpfilter ttm crypto_simd hid_multitouch iTCO_wdt ipu3_cio2 snd_hwdep intel_pmc_bxt drm_display_helper snd_pcm cryptd ipu_bridge ipt_rpfilter processor_thermal_device_pci_legacy watchdog ipu3_imgu(C) msr cec snd_timer videobuf2_dma_sg rapl processor_thermal_device ipts hid_generic mei_hdcp mei_pxp intel_rapl_msr evdev surface_gpe intel_cstate drm_kms_helper xt_pkttype snd processor_thermal_rfim i2c_i801 intel_skl_int3472_tps68470 processor_thermal_mbox cfg80211 intel_gtt processor_thermal_rapl videobuf2_memops tps68470_regulator xt_LOG intel_uncore i2c_smbus soundcore thermal usbhid nf_log_syslog agpgart ov5693 intel_rapl_common hid [ 2317.061840] videobuf2_v4l2 mei_me clk_tps68470 intel_lpss_pci i2c_algo_bit ov8865 v4l2_cci ov7251 xt_tcpudp intel_xhci_usb_role_switch intel_ish_ipc intel_lpss rfkill v4l2_fwnode video mei roles intel_pch_thermal videobuf2_common intel_soc_dts_iosf intel_ishtp idma64 virt_dma v4l2_async intel_skl_int3472_discrete nft_compat surfacepro3_button surface_dtx surface_acpi_notify surface_aggregator_registry wmi pinctrl_sunrisepoint button intel_pmc_core surface_aggregator surface_hotplug int3403_thermal int3400_thermal soc_button_array acpi_tad acpi_pad int340x_thermal_zone acpi_thermal_rel dptf_power ac nf_tables libcrc32c sch_fq_codel uinput ctr wireguard curve25519_x86_64 libchacha20poly1305 chacha_x86_64 poly1305_x86_64 libcurve25519_generic libchacha ip6_udp_tunnel udp_tunnel atkbd libps2 serio vivaldi_fmap loop cpufreq_powersave tun tap macvlan bridge stp llc kvm_intel kvm irqbypass v4l2loopback(O) videodev mc drm led_class fuse efi_pstore configfs backlight nfnetlink efivarfs dmi_sysfs ip_tables x_tables ext4 [ 2317.061896] crc32c_generic crc16 mbcache jbd2 xhci_pci xhci_pci_renesas firmware_class xhci_hcd nvme nvme_core usbcore t10_pi crc64_rocksoft crc64 crc_t10dif crct10dif_generic tpm_crb crct10dif_pclmul crc32c_intel crct10dif_common usb_common rtc_cmos tpm_tis tpm_tis_core dm_snapshot dm_bufio dm_mod dax tpm rng_core autofs4 [last unloaded: mwifiex] [ 2317.061925] CPU: 0 PID: 1311 Comm: wpa_supplicant Tainted: G WC O 6.6.14 #1-NixOS [ 2317.061929] Hardware name: Microsoft Corporation Surface Book 2/Surface Book 2, BIOS 394.779.768 08/11/2015 [ 2317.061930] RIP: 0010:mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 2317.061956] Code: 3d 11 25 02 00 00 75 c7 b9 01 00 00 00 48 c7 c2 98 01 23 c1 4c 89 e6 48 c7 c7 c8 ff 22 c1 c6 05 f2 24 02 00 01 e8 6c 00 eb c3 <0f> 0b eb a1 0f 1f 84 00 00 00 00 00 90 90 90 90 90 90 90 90 90 90 [ 2317.061959] RSP: 0018:ffffc9000217f810 EFLAGS: 00010286 [ 2317.061962] RAX: 0000000000000000 RBX: ffff888100ff5c00 RCX: 0000000000000027 [ 2317.061964] RDX: ffff88845f221508 RSI: 0000000000000001 RDI: ffff88845f221500 [ 2317.061965] RBP: ffff888117ac5a40 R08: 0000000000000000 R09: ffffc9000217f6b0 [ 2317.061967] R10: 0000000000000003 R11: ffffffff86938ae8 R12: 0000000000000049 [ 2317.061969] R13: ffff888117ac5a4c R14: ffff888100ff5c0b R15: 0000000000000107 [ 2317.061970] FS: 00007f3195cb1840(0000) GS:ffff88845f200000(0000) knlGS:0000000000000000 [ 2317.061973] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 2317.061975] CR2: 0000000001c84000 CR3: 000000011602c005 CR4: 00000000003706f0 [ 2317.061977] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 2317.061978] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 2317.061980] Call Trace: [ 2317.061983] [ 2317.061984] ? mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 2317.062009] ? __warn+0x81/0x130 [ 2317.062016] ? mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 2317.062032] ? report_bug+0x171/0x1a0 [ 2317.062037] ? handle_bug+0x3c/0x80 [ 2317.062041] ? exc_invalid_op+0x17/0x70 [ 2317.062044] ? asm_exc_invalid_op+0x1a/0x20 [ 2317.062048] ? mwifiex_cmd_802_11_scan_ext+0x84/0x90 [mwifiex] [ 2317.062064] mwifiex_send_cmd+0x1db/0x400 [mwifiex] [ 2317.062077] mwifiex_scan_networks+0x952/0xe40 [mwifiex] [ 2317.062095] mwifiex_cfg80211_scan+0x287/0x4a0 [mwifiex] [ 2317.062111] rdev_scan+0x25/0xd0 [cfg80211] [ 2317.062179] nl80211_trigger_scan+0x409/0x7e0 [cfg80211] [ 2317.062228] genl_family_rcv_msg_doit+0xef/0x150 [ 2317.062234] genl_rcv_msg+0x1b3/0x2c0 [ 2317.062237] ? __pfx_nl80211_pre_doit+0x10/0x10 [cfg80211] [ 2317.062281] ? __pfx_nl80211_trigger_scan+0x10/0x10 [cfg80211] [ 2317.062328] ? __pfx_nl80211_post_doit+0x10/0x10 [cfg80211] [ 2317.062373] ? __pfx_genl_rcv_msg+0x10/0x10 [ 2317.062375] netlink_rcv_skb+0x58/0x110 [ 2317.062380] genl_rcv+0x28/0x40 [ 2317.062382] netlink_unicast+0x1a3/0x290 [ 2317.062385] netlink_sendmsg+0x254/0x4d0 [ 2317.062387] ____sys_sendmsg+0x396/0x3d0 [ 2317.062390] ? copy_msghdr_from_user+0x7d/0xc0 [ 2317.062394] ___sys_sendmsg+0x9a/0xe0 [ 2317.062400] __sys_sendmsg+0x7a/0xd0 [ 2317.062404] do_syscall_64+0x3c/0x90 [ 2317.062407] entry_SYSCALL_64_after_hwframe+0x6e/0xd8 [ 2317.062410] RIP: 0033:0x7f3195727394 [ 2317.062429] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d d5 1f 0d 00 00 74 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89 [ 2317.062430] RSP: 002b:00007ffe66fbc5b8 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 2317.062433] RAX: ffffffffffffffda RBX: 00000000009ed7f0 RCX: 00007f3195727394 [ 2317.062434] RDX: 0000000000000000 RSI: 00007ffe66fbc5f0 RDI: 0000000000000005 [ 2317.062435] RBP: 0000000000a64800 R08: 0000000000000004 R09: 0000000000000001 [ 2317.062436] R10: 00007ffe66fbc6d4 R11: 0000000000000202 R12: 00000000009ed700 [ 2317.062437] R13: 00007ffe66fbc5f0 R14: 0000000000000000 R15: 00007ffe66fbc6d4 [ 2317.062440] [ 2317.062441] ---[ end trace 0000000000000000 ]--- [ 2317.838831] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS [ 2317.852066] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 1 [ 2317.855702] ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in poll mode [ 2320.002346] mwifiex_pcie 0000:01:00.0: info: trying to associate to bssid 3c:df:a9:14:d7:c8 [ 2320.020014] mwifiex_pcie 0000:01:00.0: info: associated to bssid 3c:df:a9:14:d7:c8 successfully ```
Tibladar commented 3 months ago

With an up-to-date linux-surface and Linux Mint 21.3 I get the following output:

Intel(R) Core(TM) i5-7300U CPU
NAME="Linux Mint"
PRETTY_NAME="Linux Mint 21.3"
VERSION_CODENAME=virginia
UBUNTU_CODENAME=jammy
uname -r: 6.7.9-surface-1           
/sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us:32703096
/sys/devices/system/cpu/cpuidle/low_power_idle_system_residency_us:32713152
/sys/kernel/debug/pmc_core/package_cstate_show:Package C2 : 57193292
/sys/kernel/debug/pmc_core/package_cstate_show:Package C3 : 4046372
/sys/kernel/debug/pmc_core/package_cstate_show:Package C6 : 68496448
/sys/kernel/debug/pmc_core/package_cstate_show:Package C7 : 1330
/sys/kernel/debug/pmc_core/package_cstate_show:Package C8 : 106530
/sys/kernel/debug/pmc_core/package_cstate_show:Package C9 : 0
/sys/kernel/debug/pmc_core/package_cstate_show:Package C10 : 32557294
/sys/kernel/debug/pmc_core/slp_s0_residency_usec:32592768

Only change from default is the blacklist of surface_gpe https://github.com/linux-surface/linux-surface/wiki/Known-Issues-and-FAQ#suspend-aka-sleep-vs-lid-closingopening-events

leonm1 commented 1 month ago

This appears to no longer be an issue on 6.8.7. Thank you for confirming that it was not affecting the normal surface kernel, Tibladar.