* [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
@ 2025-01-10 9:04 Christian Heusel
2025-01-10 9:24 ` Damien Le Moal
2025-01-10 11:24 ` Niklas Cassel
0 siblings, 2 replies; 13+ messages in thread
From: Christian Heusel @ 2025-01-10 9:04 UTC (permalink / raw)
To: Mario Limonciello, Niklas Cassel, Damien Le Moal, Mika Westerberg
Cc: linux-ide, linux-kernel, regressions
[-- Attachment #1: Type: text/plain, Size: 1696 bytes --]
Hello everyone,
we have recently received a report by a user in the Arch Linux Forums
user that their Blue Ray player, a HL-DT-ST BD-RE BU40N stopped working
somewhere since kernel version v6.8.0. We have then bisected the issue
together with them within the mainline kernel sources to the following
commit that changes the default power policy:
7627a0edef54 ("ata: ahci: Drop low power policy board type")
The user reports that adding "ahci.mobile_lpm_policy=1" as a kernel
parameter fixes the issue for them.
Additionally fellow forum user @loqs came up with a quirk patch, that
sadly was reported to not work:
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index c085dd8..ef01ccd 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
{ "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
{ "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
+ /* Hitachi-LG Data Storage models with LPM issues */
+ { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
+
/* devices that don't properly handle queued TRIM commands */
{ "Micron_M500IT_*", "MU01", ATA_QUIRK_NO_NCQ_TRIM |
ATA_QUIRK_ZERO_AFTER_TRIM },
So if anyone has feedback on why the patch does not work or any
alternative ideas for a solution that would be highly appreciated!
Cheers,
gromit
[0]: https://bbs.archlinux.org/viewtopic.php?id=302334
---
#regzbot introduced: 7627a0edef54
#regzbot link: https://bbs.archlinux.org/viewtopic.php?id=302334
#regzbot title: ata: ahci: Blue Ray player broken since power policy change
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-10 9:04 [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54 Christian Heusel
@ 2025-01-10 9:24 ` Damien Le Moal
2025-01-10 9:42 ` Christian Heusel
2025-01-10 11:24 ` Niklas Cassel
1 sibling, 1 reply; 13+ messages in thread
From: Damien Le Moal @ 2025-01-10 9:24 UTC (permalink / raw)
To: Christian Heusel, Mario Limonciello, Niklas Cassel,
Mika Westerberg
Cc: linux-ide, linux-kernel, regressions
On 2025/01/10 18:04, Christian Heusel wrote:
> Hello everyone,
>
> we have recently received a report by a user in the Arch Linux Forums
> user that their Blue Ray player, a HL-DT-ST BD-RE BU40N stopped working
> somewhere since kernel version v6.8.0. We have then bisected the issue
> together with them within the mainline kernel sources to the following
> commit that changes the default power policy:
>
> 7627a0edef54 ("ata: ahci: Drop low power policy board type")
>
> The user reports that adding "ahci.mobile_lpm_policy=1" as a kernel
> parameter fixes the issue for them.
>
> Additionally fellow forum user @loqs came up with a quirk patch, that
> sadly was reported to not work:
>
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index c085dd8..ef01ccd 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
> { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
> { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
>
> + /* Hitachi-LG Data Storage models with LPM issues */
> + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
Looks like "BU40N" may be the FW rev ? If we can get a dmesg ourput of the
failing case, we should be able to sort out this. Likely it is a bad string
reference here.
> +
> /* devices that don't properly handle queued TRIM commands */
> { "Micron_M500IT_*", "MU01", ATA_QUIRK_NO_NCQ_TRIM |
> ATA_QUIRK_ZERO_AFTER_TRIM },
>
> So if anyone has feedback on why the patch does not work or any
> alternative ideas for a solution that would be highly appreciated!
>
> Cheers,
> gromit
>
> [0]: https://bbs.archlinux.org/viewtopic.php?id=302334
>
> ---
>
> #regzbot introduced: 7627a0edef54
> #regzbot link: https://bbs.archlinux.org/viewtopic.php?id=302334
> #regzbot title: ata: ahci: Blue Ray player broken since power policy change
--
Damien Le Moal
Western Digital Research
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-10 9:24 ` Damien Le Moal
@ 2025-01-10 9:42 ` Christian Heusel
2025-01-10 9:50 ` Damien Le Moal
0 siblings, 1 reply; 13+ messages in thread
From: Christian Heusel @ 2025-01-10 9:42 UTC (permalink / raw)
To: Damien Le Moal
Cc: Mario Limonciello, Niklas Cassel, Mika Westerberg, linux-ide,
linux-kernel, regressions
[-- Attachment #1.1: Type: text/plain, Size: 2679 bytes --]
On 25/01/10 06:24PM, Damien Le Moal wrote:
> On 2025/01/10 18:04, Christian Heusel wrote:
> > Hello everyone,
> >
> > we have recently received a report by a user in the Arch Linux Forums
> > user that their Blue Ray player, a HL-DT-ST BD-RE BU40N stopped working
> > somewhere since kernel version v6.8.0. We have then bisected the issue
> > together with them within the mainline kernel sources to the following
> > commit that changes the default power policy:
> >
> > 7627a0edef54 ("ata: ahci: Drop low power policy board type")
> >
> > The user reports that adding "ahci.mobile_lpm_policy=1" as a kernel
> > parameter fixes the issue for them.
> >
> > Additionally fellow forum user @loqs came up with a quirk patch, that
> > sadly was reported to not work:
> >
> > diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> > index c085dd8..ef01ccd 100644
> > --- a/drivers/ata/libata-core.c
> > +++ b/drivers/ata/libata-core.c
> > @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
> > { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
> > { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
> >
> > + /* Hitachi-LG Data Storage models with LPM issues */
> > + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
>
> Looks like "BU40N" may be the FW rev ? If we can get a dmesg ourput of the
> failing case, we should be able to sort out this. Likely it is a bad string
> reference here.
I have attached the dmesg outputs, here is the relevant output:
[ 81.230713] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 81.235708] ata4.00: ATAPI: HL-DT-ST BD-RE BU40N, 1.03, max UDMA/133
[ 81.240789] ata4.00: configured for UDMA/133
[ 81.248585] scsi 3:0:0:0: CD-ROM HL-DT-ST BD-RE BU40N 1.03 PQ: 0 ANSI: 5
[ 81.302830] scsi 3:0:0:0: Attached scsi generic sg2 type 5
[ 81.382131] sr 3:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Aswell as the output for "hdparm -i /dev/sr0":
/dev/sr0:
Model=HL-DT-ST BD-RE BU40N, FwRev=1.03, SerialNo=
Config={ Fixed Removable DTR<=5Mbs DTR>10Mbs nonMagnetic }
RawCHS=0/0/0, TrkSize=0, SectSize=0, ECCbytes=0
BuffType=unknown, BuffSize=unknown, MaxMultSect=0
CurCHS=0/0/0, CurSects=0, LBA=yes, LBAsects=0
IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
PIO modes: pio0 pio1 pio2 pio3 pio4
DMA modes: mdma0 mdma1 mdma2
UDMA modes: udma0 udma1 udma2 udma3 udma4 *udma5 udma6
AdvancedPM=no
Drive conforms to: unknown: ATA/ATAPI-3,4,5,6,7
* signifies the current active mode
Cheers,
Chris
[-- Attachment #1.2: dmesg-broken.log --]
[-- Type: text/plain, Size: 89426 bytes --]
[ 0.000000] Linux version 6.12.8-arch1-1 (linux@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Thu, 02 Jan 2025 22:52:26 +0000
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008a26ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x7bf47018-0x7bf65457] usable ==> usable
[ 0.000000] e820: update [mem 0x7bf38018-0x7bf46057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007bf38017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf38018-0x000000007bf46057] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf46058-0x000000007bf47017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf47018-0x000000007bf65457] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf65458-0x000000008a26ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x8a6be000 ACPI=0x8a6be000 TPMFinalLog=0x8ab1e000 SMBIOS=0x8d9a5000 SMBIOS 3.0=0x8d9a4000 MEMATTR=0x86e08098 ESRT=0x88b80398 RNG=0x8a6bdf18 INITRD=0x80e3f298 TPMEventLog=0x8a6b4018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem46: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem47: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem49: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem51: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 3000.000 MHz processor
[ 0.000849] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000851] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000860] last_pfn = 0x46e000 max_arch_pfn = 0x400000000
[ 0.000864] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000866] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001136] last_pfn = 0x8dc0f max_arch_pfn = 0x400000000
[ 0.008608] esrt: Reserving ESRT space from 0x0000000088b80398 to 0x0000000088b80420.
[ 0.008613] e820: update [mem 0x88b80000-0x88b80fff] usable ==> reserved
[ 0.008629] Using GB pages for direct mapping
[ 0.009251] Secure boot disabled
[ 0.009251] RAMDISK: [mem 0x7bf66000-0x7d41ffff]
[ 0.009271] ACPI: Early table checksum verification disabled
[ 0.009273] ACPI: RSDP 0x000000008A6BE000 000024 (v02 HPQOEM)
[ 0.009277] ACPI: XSDT 0x000000008A6BE0C0 0000FC (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009281] ACPI: FACP 0x000000008A704DC8 000114 (v06 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009287] ACPI: DSDT 0x000000008A6BE248 046B7A (v02 HPQOEM SLIC-CPC 01072009 INTL 20160527)
[ 0.009289] ACPI: FACS 0x000000008AB93080 000040
[ 0.009292] ACPI: APIC 0x000000008A704EE0 0000BC (v04 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009294] ACPI: FPDT 0x000000008A704FA0 000044 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009297] ACPI: FIDT 0x000000008A704FE8 00009C (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009300] ACPI: MCFG 0x000000008A705088 00003C (v01 HPQOEM SLIC-CPC 01072009 MSFT 00000097)
[ 0.009302] ACPI: SSDT 0x000000008A7050C8 001B5F (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009305] ACPI: MSDM 0x000000008A706C28 000055 (v03 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009308] ACPI: SSDT 0x000000008A706C80 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009310] ACPI: SSDT 0x000000008A706CE0 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009313] ACPI: SSDT 0x000000008A706D40 0031C6 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009315] ACPI: SSDT 0x000000008A709F08 00241B (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009318] ACPI: HPET 0x000000008A70C328 000038 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009320] ACPI: SSDT 0x000000008A70C360 001D39 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009323] ACPI: SSDT 0x000000008A70E0A0 000FAE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009326] ACPI: SSDT 0x000000008A70F050 000BDF (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009328] ACPI: UEFI 0x000000008A70FC30 000042 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009331] ACPI: LPIT 0x000000008A70FC78 000094 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009333] ACPI: SSDT 0x000000008A70FD10 0027DE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009336] ACPI: SSDT 0x000000008A7124F0 0014E2 (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009338] ACPI: DBGP 0x000000008A7139D8 000034 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009341] ACPI: DBG2 0x000000008A713A10 000054 (v00 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009343] ACPI: SSDT 0x000000008A713A68 001B67 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009346] ACPI: DMAR 0x000000008A7155D0 000070 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009348] ACPI: VFCT 0x000000008A715640 00B284 (v01 HPQOEM SLIC-CPC 00000001 AMD 31504F47)
[ 0.009351] ACPI: BGRT 0x000000008A7208C8 000038 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009354] ACPI: TPM2 0x000000008A720900 000034 (v04 HPQOEM SLIC-CPC 00000001 AMI 00000000)
[ 0.009356] ACPI: WSMT 0x000000008A720938 000028 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009358] ACPI: Reserving FACP table memory at [mem 0x8a704dc8-0x8a704edb]
[ 0.009360] ACPI: Reserving DSDT table memory at [mem 0x8a6be248-0x8a704dc1]
[ 0.009361] ACPI: Reserving FACS table memory at [mem 0x8ab93080-0x8ab930bf]
[ 0.009361] ACPI: Reserving APIC table memory at [mem 0x8a704ee0-0x8a704f9b]
[ 0.009362] ACPI: Reserving FPDT table memory at [mem 0x8a704fa0-0x8a704fe3]
[ 0.009363] ACPI: Reserving FIDT table memory at [mem 0x8a704fe8-0x8a705083]
[ 0.009364] ACPI: Reserving MCFG table memory at [mem 0x8a705088-0x8a7050c3]
[ 0.009364] ACPI: Reserving SSDT table memory at [mem 0x8a7050c8-0x8a706c26]
[ 0.009365] ACPI: Reserving MSDM table memory at [mem 0x8a706c28-0x8a706c7c]
[ 0.009366] ACPI: Reserving SSDT table memory at [mem 0x8a706c80-0x8a706cdf]
[ 0.009367] ACPI: Reserving SSDT table memory at [mem 0x8a706ce0-0x8a706d3f]
[ 0.009368] ACPI: Reserving SSDT table memory at [mem 0x8a706d40-0x8a709f05]
[ 0.009368] ACPI: Reserving SSDT table memory at [mem 0x8a709f08-0x8a70c322]
[ 0.009369] ACPI: Reserving HPET table memory at [mem 0x8a70c328-0x8a70c35f]
[ 0.009370] ACPI: Reserving SSDT table memory at [mem 0x8a70c360-0x8a70e098]
[ 0.009371] ACPI: Reserving SSDT table memory at [mem 0x8a70e0a0-0x8a70f04d]
[ 0.009371] ACPI: Reserving SSDT table memory at [mem 0x8a70f050-0x8a70fc2e]
[ 0.009372] ACPI: Reserving UEFI table memory at [mem 0x8a70fc30-0x8a70fc71]
[ 0.009373] ACPI: Reserving LPIT table memory at [mem 0x8a70fc78-0x8a70fd0b]
[ 0.009374] ACPI: Reserving SSDT table memory at [mem 0x8a70fd10-0x8a7124ed]
[ 0.009374] ACPI: Reserving SSDT table memory at [mem 0x8a7124f0-0x8a7139d1]
[ 0.009375] ACPI: Reserving DBGP table memory at [mem 0x8a7139d8-0x8a713a0b]
[ 0.009376] ACPI: Reserving DBG2 table memory at [mem 0x8a713a10-0x8a713a63]
[ 0.009377] ACPI: Reserving SSDT table memory at [mem 0x8a713a68-0x8a7155ce]
[ 0.009377] ACPI: Reserving DMAR table memory at [mem 0x8a7155d0-0x8a71563f]
[ 0.009378] ACPI: Reserving VFCT table memory at [mem 0x8a715640-0x8a7208c3]
[ 0.009379] ACPI: Reserving BGRT table memory at [mem 0x8a7208c8-0x8a7208ff]
[ 0.009380] ACPI: Reserving TPM2 table memory at [mem 0x8a720900-0x8a720933]
[ 0.009381] ACPI: Reserving WSMT table memory at [mem 0x8a720938-0x8a72095f]
[ 0.009705] No NUMA configuration found
[ 0.009705] Faking a node at [mem 0x0000000000000000-0x000000046dffffff]
[ 0.009715] NODE_DATA(0) allocated [mem 0x46dfd32c0-0x46dffdfff]
[ 0.009971] Zone ranges:
[ 0.009971] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009973] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009975] Normal [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009976] Device empty
[ 0.009977] Movable zone start for each node
[ 0.009979] Early memory node ranges
[ 0.009979] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009981] node 0: [mem 0x0000000000100000-0x000000008a26ffff]
[ 0.009982] node 0: [mem 0x000000008dc0e000-0x000000008dc0efff]
[ 0.009983] node 0: [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009986] Initmem setup node 0 [mem 0x0000000000001000-0x000000046dffffff]
[ 0.009990] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.010010] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012816] On node 0, zone DMA32: 14750 pages in unavailable ranges
[ 0.029999] On node 0, zone Normal: 9201 pages in unavailable ranges
[ 0.030091] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.031295] ACPI: PM-Timer IO Port: 0x1808
[ 0.031302] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031304] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031304] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031305] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031306] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031307] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031307] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031308] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031364] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.031366] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031368] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031372] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.031373] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031379] e820: update [mem 0x86b6d000-0x86bdffff] usable ==> reserved
[ 0.031391] TSC deadline timer available
[ 0.031396] CPU topo: Max. logical packages: 1
[ 0.031397] CPU topo: Max. logical dies: 1
[ 0.031398] CPU topo: Max. dies per package: 1
[ 0.031402] CPU topo: Max. threads per core: 1
[ 0.031403] CPU topo: Num. cores per package: 8
[ 0.031403] CPU topo: Num. threads per package: 8
[ 0.031404] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
[ 0.031417] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031420] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.031421] PM: hibernation: Registered nosave memory: [mem 0x7bf38000-0x7bf38fff]
[ 0.031423] PM: hibernation: Registered nosave memory: [mem 0x7bf46000-0x7bf46fff]
[ 0.031424] PM: hibernation: Registered nosave memory: [mem 0x7bf47000-0x7bf47fff]
[ 0.031425] PM: hibernation: Registered nosave memory: [mem 0x7bf65000-0x7bf65fff]
[ 0.031427] PM: hibernation: Registered nosave memory: [mem 0x86b6d000-0x86bdffff]
[ 0.031428] PM: hibernation: Registered nosave memory: [mem 0x88b80000-0x88b80fff]
[ 0.031430] PM: hibernation: Registered nosave memory: [mem 0x8a270000-0x8a6a4fff]
[ 0.031430] PM: hibernation: Registered nosave memory: [mem 0x8a6a5000-0x8a721fff]
[ 0.031431] PM: hibernation: Registered nosave memory: [mem 0x8a722000-0x8ab95fff]
[ 0.031432] PM: hibernation: Registered nosave memory: [mem 0x8ab96000-0x8dc0dfff]
[ 0.031433] PM: hibernation: Registered nosave memory: [mem 0x8dc0f000-0x8fffffff]
[ 0.031434] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfdffffff]
[ 0.031435] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.031435] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.031436] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.031437] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.031437] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.031438] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.031439] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.031439] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.031441] [mem 0x90000000-0xfdffffff] available for PCI devices
[ 0.031442] Booting paravirtualized kernel on bare hardware
[ 0.031444] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.037851] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.038259] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[ 0.038265] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[ 0.038268] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
[ 0.038288] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.038347] DMAR: IOMMU enabled
[ 0.039560] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.040156] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.040255] Fallback order for Node 0: 0
[ 0.040258] Built 1 zonelists, mobility grouping on. Total pages: 4162063
[ 0.040259] Policy zone: Normal
[ 0.040428] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.040434] software IO TLB: area num 8.
[ 0.082323] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.082359] ftrace: allocating 51351 entries in 201 pages
[ 0.090582] ftrace: allocated 201 pages with 4 groups
[ 0.090657] Dynamic Preempt: full
[ 0.090703] rcu: Preemptible hierarchical RCU implementation.
[ 0.090703] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.090704] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.090705] Trampoline variant of Tasks RCU enabled.
[ 0.090706] Rude variant of Tasks RCU enabled.
[ 0.090706] Tracing variant of Tasks RCU enabled.
[ 0.090707] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.090708] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.090713] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.090715] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.090717] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.096248] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[ 0.096534] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.096941] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.096973] Console: colour dummy device 80x25
[ 0.096975] printk: legacy console [tty0] enabled
[ 0.097026] ACPI: Core revision 20240827
[ 0.097272] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.097339] APIC: Switch to symmetric I/O mode setup
[ 0.097340] DMAR: Host address width 39
[ 0.097342] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.097348] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.097350] DMAR: RMRR base: 0x0000008b72e000 end: 0x0000008b977fff
[ 0.097353] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.097354] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.097355] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.100389] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.100391] x2apic enabled
[ 0.100459] APIC: Switched APIC routing to: cluster x2apic
[ 0.109584] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
[ 0.109590] Calibrating delay loop (skipped), value calculated using timer frequency.. 6002.00 BogoMIPS (lpj=10000000)
[ 0.109611] x86/cpu: SGX disabled or unsupported by BIOS.
[ 0.109619] CPU0: Thermal monitoring enabled (TM1)
[ 0.109672] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.109674] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.109677] process: using mwait in idle threads
[ 0.109680] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.109682] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[ 0.109683] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.109683] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.109684] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.109685] RETBleed: Mitigation: Enhanced IBRS
[ 0.109686] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.109688] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.109692] TAA: Mitigation: TSX disabled
[ 0.109693] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.109696] SRBDS: Mitigation: Microcode
[ 0.109701] GDS: Mitigation: Microcode
[ 0.109706] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.109707] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.109708] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.109709] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.109710] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.109711] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.109712] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.109714] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.109715] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.112921] Freeing SMP alternatives memory: 40K
[ 0.112921] pid_max: default: 32768 minimum: 301
[ 0.112921] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.112921] landlock: Up and running.
[ 0.112921] Yama: becoming mindful.
[ 0.112921] LSM support for eBPF active
[ 0.112921] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.112921] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.112921] smpboot: CPU0: Intel(R) Core(TM) i7-9700F CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[ 0.112921] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.112921] ... version: 4
[ 0.112921] ... bit width: 48
[ 0.112921] ... generic registers: 8
[ 0.112921] ... value mask: 0000ffffffffffff
[ 0.112921] ... max period: 00007fffffffffff
[ 0.112921] ... fixed-purpose events: 3
[ 0.112921] ... event mask: 00000007000000ff
[ 0.112921] signal: max sigframe size: 2032
[ 0.112921] Estimated ratio of average max frequency by base frequency (times 1024): 1570
[ 0.112921] rcu: Hierarchical SRCU implementation.
[ 0.112921] rcu: Max phase no-delay instances is 1000.
[ 0.112921] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.112921] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.112921] smp: Bringing up secondary CPUs ...
[ 0.112921] smpboot: x86: Booting SMP configuration:
[ 0.112921] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.113518] smp: Brought up 1 node, 8 CPUs
[ 0.113518] smpboot: Total of 8 processors activated (48019.00 BogoMIPS)
[ 0.116321] Memory: 16201864K/16648252K available (18432K kernel code, 2672K rwdata, 14304K rodata, 4260K init, 4032K bss, 429496K reserved, 0K cma-reserved)
[ 0.116715] devtmpfs: initialized
[ 0.116715] x86/mm: Memory block size: 128MB
[ 0.117403] ACPI: PM: Registering ACPI NVS region [mem 0x8a722000-0x8ab95fff] (4669440 bytes)
[ 0.117403] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.117403] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.117403] pinctrl core: initialized pinctrl subsystem
[ 0.117403] PM: RTC time: 18:23:37, date: 2025-01-05
[ 0.117403] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.117410] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.117522] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.117635] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.117641] audit: initializing netlink subsys (disabled)
[ 0.117697] audit: type=2000 audit(1736101417.000:1): state=initialized audit_enabled=0 res=1
[ 0.117697] thermal_sys: Registered thermal governor 'fair_share'
[ 0.117697] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.117697] thermal_sys: Registered thermal governor 'step_wise'
[ 0.117697] thermal_sys: Registered thermal governor 'user_space'
[ 0.117697] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.117697] cpuidle: using governor ladder
[ 0.117697] cpuidle: using governor menu
[ 0.117697] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.117697] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.119611] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.119623] PCI: Using configuration type 1 for base access
[ 0.119728] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.126306] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.126309] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.126310] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.126311] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.126437] fbcon: Taking over console
[ 0.126437] ACPI: Added _OSI(Module Device)
[ 0.126437] ACPI: Added _OSI(Processor Device)
[ 0.126437] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.126437] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.178797] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.186739] ACPI: Dynamic OEM Table Load:
[ 0.186746] ACPI: SSDT 0xFFFF921A81197C00 000400 (v02 HPQOEM SLIC-CPC 00003001 INTL 20160527)
[ 0.187096] ACPI: Dynamic OEM Table Load:
[ 0.187101] ACPI: SSDT 0xFFFF921A8118E000 000605 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.188120] ACPI: Dynamic OEM Table Load:
[ 0.188125] ACPI: SSDT 0xFFFF921A811A6800 0000F4 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.189046] ACPI: Dynamic OEM Table Load:
[ 0.189050] ACPI: SSDT 0xFFFF921A81C03E00 000149 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.189937] ACPI: Dynamic OEM Table Load:
[ 0.189942] ACPI: SSDT 0xFFFF921A8118A800 000724 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.191045] ACPI: Dynamic OEM Table Load:
[ 0.191051] ACPI: SSDT 0xFFFF921A8118C000 0005FC (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.192108] ACPI: Dynamic OEM Table Load:
[ 0.192113] ACPI: SSDT 0xFFFF921A81191C00 000317 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.193146] ACPI: Dynamic OEM Table Load:
[ 0.193151] ACPI: SSDT 0xFFFF921A81C40000 000AB0 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.194687] ACPI: Dynamic OEM Table Load:
[ 0.194691] ACPI: SSDT 0xFFFF921A81194C00 00030A (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.198804] ACPI: EC: EC started
[ 0.198806] ACPI: EC: interrupt blocked
[ 0.199392] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.199394] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.199396] ACPI: Interpreter enabled
[ 0.199432] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.199433] ACPI: Using IOAPIC for interrupt routing
[ 0.200630] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.200632] PCI: Ignoring E820 reservations for host bridge windows
[ 0.201794] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.218183] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.218331] ACPI: \_SB_.PCI0.PAUD: New power resource
[ 0.220699] ACPI: \SPR2: New power resource
[ 0.220866] ACPI: \SPR3: New power resource
[ 0.221157] ACPI: \ZPDR: New power resource
[ 0.221395] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.221594] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.221787] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.227233] ACPI: \_SB_.PCI0.I2C1.PXTC: New power resource
[ 0.233520] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.238502] ACPI: \_TZ_.FN00: New power resource
[ 0.238567] ACPI: \_TZ_.FN01: New power resource
[ 0.238632] ACPI: \_TZ_.FN02: New power resource
[ 0.238694] ACPI: \_TZ_.FN03: New power resource
[ 0.238755] ACPI: \_TZ_.FN04: New power resource
[ 0.239207] ACPI: \PIN_: New power resource
[ 0.239357] ACPI: \SPR0: New power resource
[ 0.239411] ACPI: \SPR1: New power resource
[ 0.239466] ACPI: \SPR5: New power resource
[ 0.240006] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.240013] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.243258] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.243260] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.244436] PCI host bridge to bus 0000:00
[ 0.244440] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.244442] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.244444] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.244446] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.244447] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[ 0.244448] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.244450] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.244540] pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000 conventional PCI endpoint
[ 0.244609] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[ 0.244621] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.244624] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.244626] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.244631] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.244657] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.245252] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.245260] pci 0000:00:08.0: BAR 0 [mem 0xa0922000-0xa0922fff 64bit]
[ 0.245433] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.245465] pci 0000:00:12.0: BAR 0 [mem 0xa0921000-0xa0921fff 64bit]
[ 0.245726] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.245761] pci 0000:00:14.0: BAR 0 [mem 0xa0900000-0xa090ffff 64bit]
[ 0.245901] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.246586] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.246617] pci 0000:00:14.2: BAR 0 [mem 0xa0916000-0xa0917fff 64bit]
[ 0.246636] pci 0000:00:14.2: BAR 2 [mem 0xa0920000-0xa0920fff 64bit]
[ 0.246786] pci 0000:00:14.5: [8086:a375] type 00 class 0x080501 conventional PCI endpoint
[ 0.246817] pci 0000:00:14.5: BAR 0 [mem 0xa091f000-0xa091ffff 64bit]
[ 0.247641] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.248215] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.251191] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.251766] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.254368] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.254400] pci 0000:00:16.0: BAR 0 [mem 0xa091c000-0xa091cfff 64bit]
[ 0.254518] pci 0000:00:16.0: PME# supported from D3hot
[ 0.255135] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
[ 0.255162] pci 0000:00:17.0: BAR 0 [mem 0xa0914000-0xa0915fff]
[ 0.255177] pci 0000:00:17.0: BAR 1 [mem 0xa091b000-0xa091b0ff]
[ 0.255192] pci 0000:00:17.0: BAR 2 [io 0x6050-0x6057]
[ 0.255207] pci 0000:00:17.0: BAR 3 [io 0x6040-0x6043]
[ 0.255222] pci 0000:00:17.0: BAR 4 [io 0x6020-0x603f]
[ 0.255237] pci 0000:00:17.0: BAR 5 [mem 0xa091a000-0xa091a7ff]
[ 0.255319] pci 0000:00:17.0: PME# supported from D3hot
[ 0.255778] pci 0000:00:1c.0: [8086:a33d] type 01 class 0x060400 PCIe Root Port
[ 0.255835] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.255842] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.255848] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.255998] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.256043] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.256897] pci 0000:00:1c.7: [8086:a33f] type 01 class 0x060400 PCIe Root Port
[ 0.256955] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.256963] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.256968] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.257110] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 0.257156] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 0.257940] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.257998] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.258009] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.258166] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.258222] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.259447] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000 conventional PCI endpoint
[ 0.260009] pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.262639] pci 0000:00:1f.0: [8086:a304] type 00 class 0x060100 conventional PCI endpoint
[ 0.263203] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.263263] pci 0000:00:1f.3: BAR 0 [mem 0xa0910000-0xa0913fff 64bit]
[ 0.263337] pci 0000:00:1f.3: BAR 4 [mem 0xa0200000-0xa02fffff 64bit]
[ 0.263486] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.264842] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.265022] pci 0000:00:1f.4: BAR 0 [mem 0xa0918000-0xa09180ff 64bit]
[ 0.265237] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.265730] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.265756] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.265941] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.265952] pci 0000:01:00.0: BAR 0 [mem 0xa0500000-0xa0503fff]
[ 0.265964] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.265969] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.265972] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.265980] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.266046] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.266095] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.266189] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.266229] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.266250] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.266255] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.266258] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.266266] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.266332] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.266453] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.266497] pci 0000:03:00.0: [1002:73ff] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.266511] pci 0000:03:00.0: BAR 0 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.266520] pci 0000:03:00.0: BAR 2 [mem 0xa0000000-0xa01fffff 64bit pref]
[ 0.266526] pci 0000:03:00.0: BAR 4 [io 0x5000-0x50ff]
[ 0.266532] pci 0000:03:00.0: BAR 5 [mem 0xa0300000-0xa03fffff]
[ 0.266538] pci 0000:03:00.0: ROM [mem 0xa0400000-0xa041ffff pref]
[ 0.266610] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.266668] pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.266739] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.266748] pci 0000:03:00.1: BAR 0 [mem 0xa0420000-0xa0423fff]
[ 0.266819] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.266911] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.267071] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.267099] pci 0000:04:00.0: BAR 0 [io 0x4000-0x40ff]
[ 0.267136] pci 0000:04:00.0: BAR 2 [mem 0xa0804000-0xa0804fff 64bit]
[ 0.267160] pci 0000:04:00.0: BAR 4 [mem 0xa0800000-0xa0803fff 64bit]
[ 0.267323] pci 0000:04:00.0: supports D1 D2
[ 0.267324] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.267621] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.267769] pci 0000:05:00.0: [10ec:c821] type 00 class 0x028000 PCIe Endpoint
[ 0.267797] pci 0000:05:00.0: BAR 0 [io 0x3000-0x30ff]
[ 0.267829] pci 0000:05:00.0: BAR 2 [mem 0xa0700000-0xa070ffff 64bit]
[ 0.268017] pci 0000:05:00.0: supports D1 D2
[ 0.268018] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.268393] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.268761] pci 0000:06:00.0: [8086:f1a8] type 00 class 0x010802 PCIe Endpoint
[ 0.268796] pci 0000:06:00.0: BAR 0 [mem 0xa0600000-0xa0603fff 64bit]
[ 0.269340] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.271571] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.271653] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.271732] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.271811] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.271889] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.271968] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.272046] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.272124] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.277350] ACPI: EC: interrupt unblocked
[ 0.277352] ACPI: EC: event unblocked
[ 0.277364] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.277365] ACPI: EC: GPE=0xb
[ 0.277367] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.277368] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.277420] iommu: Default domain type: Translated
[ 0.277420] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.277420] SCSI subsystem initialized
[ 0.277420] libata version 3.00 loaded.
[ 0.277420] ACPI: bus type USB registered
[ 0.277420] usbcore: registered new interface driver usbfs
[ 0.277420] usbcore: registered new interface driver hub
[ 0.277420] usbcore: registered new device driver usb
[ 0.277420] EDAC MC: Ver: 3.0.0
[ 0.277420] efivars: Registered efivars operations
[ 0.277420] NetLabel: Initializing
[ 0.277420] NetLabel: domain hash size = 128
[ 0.277420] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.277420] NetLabel: unlabeled traffic allowed by default
[ 0.277420] mctp: management component transport protocol core
[ 0.277420] NET: Registered PF_MCTP protocol family
[ 0.277420] PCI: Using ACPI for IRQ routing
[ 0.363454] PCI: pci_cache_line_size set to 64 bytes
[ 0.364054] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.364064] e820: reserve RAM buffer [mem 0x7bf38018-0x7bffffff]
[ 0.364065] e820: reserve RAM buffer [mem 0x7bf47018-0x7bffffff]
[ 0.364066] e820: reserve RAM buffer [mem 0x86b6d000-0x87ffffff]
[ 0.364067] e820: reserve RAM buffer [mem 0x88b80000-0x8bffffff]
[ 0.364069] e820: reserve RAM buffer [mem 0x8a270000-0x8bffffff]
[ 0.364070] e820: reserve RAM buffer [mem 0x8dc0f000-0x8fffffff]
[ 0.364071] e820: reserve RAM buffer [mem 0x46e000000-0x46fffffff]
[ 0.364101] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.364101] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.364101] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.364101] vgaarb: loaded
[ 0.364101] clocksource: Switched to clocksource tsc-early
[ 0.364101] VFS: Disk quotas dquot_6.6.0
[ 0.364101] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.364101] pnp: PnP ACPI init
[ 0.364101] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[ 0.364355] system 00:01: [io 0x0a00-0x0a0f] has been reserved
[ 0.364357] system 00:01: [io 0x0a10-0x0a1f] has been reserved
[ 0.364359] system 00:01: [io 0x0a20-0x0a2f] has been reserved
[ 0.364360] system 00:01: [io 0x0a30-0x0a3f] has been reserved
[ 0.364362] system 00:01: [io 0x0a40-0x0a4f] has been reserved
[ 0.364363] system 00:01: [io 0x0a50-0x0a5f] has been reserved
[ 0.364364] system 00:01: [io 0x0a60-0x0a6f] has been reserved
[ 0.364365] system 00:01: [io 0x0a70-0x0a7f] has been reserved
[ 0.364367] system 00:01: [io 0x0a80-0x0a8f] has been reserved
[ 0.364368] system 00:01: [io 0x0a90-0x0b8e] has been reserved
[ 0.364369] system 00:01: [io 0x0aa0-0x0aaf] has been reserved
[ 0.364371] system 00:01: [io 0x0ab0-0x0abf] has been reserved
[ 0.364372] system 00:01: [io 0x0ac0-0x0acf] has been reserved
[ 0.364373] system 00:01: [io 0x0ad0-0x0adf] has been reserved
[ 0.364757] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.364759] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.364873] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.365027] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.365027] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.365027] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.365027] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.365027] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.365027] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.365027] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.365027] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.365237] system 00:05: [io 0x1800-0x18fe] could not be reserved
[ 0.365240] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.365242] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.365244] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.365245] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.365247] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.365249] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.365548] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.367595] pnp: PnP ACPI: found 8 devices
[ 0.373032] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.373083] NET: Registered PF_INET protocol family
[ 0.373209] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.387877] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.387899] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.387937] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.388150] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.388371] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.388423] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.388472] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.388509] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.388557] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.388563] NET: Registered PF_XDP protocol family
[ 0.388577] pci 0000:00:15.0: BAR 0 [mem 0xa0919000-0xa0919fff 64bit]: assigned
[ 0.388849] pci 0000:00:15.1: BAR 0 [mem 0xa091d000-0xa091dfff 64bit]: assigned
[ 0.389117] pci 0000:00:1e.0: BAR 0 [mem 0xa091e000-0xa091efff 64bit]: assigned
[ 0.389386] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.389392] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.389396] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.389399] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.389403] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.389405] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.389409] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.389416] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.389420] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.389422] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.389424] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.389426] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.389429] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.389437] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.389443] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.389457] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.389460] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.389466] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.389480] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.389487] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.389500] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.389502] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.389504] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.389505] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.389506] pci_bus 0000:00: resource 8 [mem 0x90000000-0xdfffffff window]
[ 0.389508] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 0.389509] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.389510] pci_bus 0000:01: resource 1 [mem 0xa0300000-0xa05fffff]
[ 0.389511] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.389513] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.389514] pci_bus 0000:02: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.389515] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.389517] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.389518] pci_bus 0000:03: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.389519] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.389521] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
[ 0.389522] pci_bus 0000:04: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.389523] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[ 0.389524] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.389526] pci_bus 0000:06: resource 1 [mem 0xa0600000-0xa06fffff]
[ 0.390132] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.390229] PCI: CLS 64 bytes, default 64
[ 0.390293] DMAR: No ATSR found
[ 0.390294] DMAR: No SATC found
[ 0.390295] DMAR: dmar0: Using Queued invalidation
[ 0.390320] Trying to unpack rootfs image as initramfs...
[ 0.390346] pci 0000:00:00.0: Adding to iommu group 0
[ 0.390360] pci 0000:00:01.0: Adding to iommu group 1
[ 0.390368] pci 0000:00:08.0: Adding to iommu group 2
[ 0.390379] pci 0000:00:12.0: Adding to iommu group 3
[ 0.390398] pci 0000:00:14.0: Adding to iommu group 4
[ 0.390406] pci 0000:00:14.2: Adding to iommu group 4
[ 0.390413] pci 0000:00:14.5: Adding to iommu group 4
[ 0.390428] pci 0000:00:15.0: Adding to iommu group 5
[ 0.390436] pci 0000:00:15.1: Adding to iommu group 5
[ 0.390447] pci 0000:00:16.0: Adding to iommu group 6
[ 0.390456] pci 0000:00:17.0: Adding to iommu group 7
[ 0.390471] pci 0000:00:1c.0: Adding to iommu group 8
[ 0.390481] pci 0000:00:1c.7: Adding to iommu group 9
[ 0.390492] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.390503] pci 0000:00:1e.0: Adding to iommu group 11
[ 0.390525] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.390535] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.390544] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.390553] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.390556] pci 0000:01:00.0: Adding to iommu group 1
[ 0.390561] pci 0000:02:00.0: Adding to iommu group 1
[ 0.390566] pci 0000:03:00.0: Adding to iommu group 1
[ 0.390570] pci 0000:03:00.1: Adding to iommu group 1
[ 0.390585] pci 0000:04:00.0: Adding to iommu group 13
[ 0.390595] pci 0000:05:00.0: Adding to iommu group 14
[ 0.390606] pci 0000:06:00.0: Adding to iommu group 15
[ 0.391437] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.391438] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.391439] software IO TLB: mapped [mem 0x0000000082b6d000-0x0000000086b6d000] (64MB)
[ 0.391493] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.416630] Initialise system trusted keyrings
[ 0.416639] Key type blacklist registered
[ 0.416676] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.416759] fuse: init (API version 7.41)
[ 0.416822] integrity: Platform Keyring initialized
[ 0.416824] integrity: Machine keyring initialized
[ 0.427770] Key type asymmetric registered
[ 0.427771] Asymmetric key parser 'x509' registered
[ 0.427786] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.427820] io scheduler mq-deadline registered
[ 0.427821] io scheduler kyber registered
[ 0.427829] io scheduler bfq registered
[ 0.427970] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.428169] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.428393] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[ 0.428461] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[ 0.428503] pcieport 0000:00:1c.0: DPC: enabled with IRQ 122
[ 0.428504] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.428792] pcieport 0000:00:1c.7: PME: Signaling with IRQ 123
[ 0.428847] pcieport 0000:00:1c.7: AER: enabled with IRQ 123
[ 0.428885] pcieport 0000:00:1c.7: DPC: enabled with IRQ 123
[ 0.428887] pcieport 0000:00:1c.7: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.429161] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.429219] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.429261] pcieport 0000:00:1d.0: DPC: enabled with IRQ 124
[ 0.429263] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.429623] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.430145] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.430166] ACPI: button: Sleep Button [SLPB]
[ 0.430188] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.430200] ACPI: button: Power Button [PWRB]
[ 0.430224] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.432815] ACPI: button: Power Button [PWRF]
[ 0.434847] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.434849] ACPI: thermal: Thermal Zone [HPTZ] (30 C)
[ 0.435138] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.435139] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.435342] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.437164] hpet_acpi_add: no address or irqs in _CRS
[ 0.437201] Non-volatile memory driver v1.3
[ 0.437202] Linux agpgart interface v0.103
[ 0.453924] Freeing initrd memory: 21224K
[ 0.572197] ACPI: bus type drm_connector registered
[ 0.573080] ahci 0000:00:17.0: version 3.0
[ 0.583436] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.583440] ahci 0000:00:17.0: 4/4 ports implemented (port mask 0x3c)
[ 0.583442] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.603415] scsi host0: ahci
[ 0.603732] scsi host1: ahci
[ 0.603993] scsi host2: ahci
[ 0.604181] scsi host3: ahci
[ 0.604283] scsi host4: ahci
[ 0.604343] scsi host5: ahci
[ 0.604366] ata1: DUMMY
[ 0.604367] ata2: DUMMY
[ 0.604373] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126 lpm-pol 3
[ 0.604376] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126 lpm-pol 3
[ 0.604379] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126 lpm-pol 3
[ 0.604382] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126 lpm-pol 3
[ 0.604622] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.604627] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.605760] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 0.606040] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.606043] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.606046] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.606085] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[ 0.606088] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.606089] usb usb1: Product: xHCI Host Controller
[ 0.606091] usb usb1: Manufacturer: Linux 6.12.8-arch1-1 xhci-hcd
[ 0.606092] usb usb1: SerialNumber: 0000:00:14.0
[ 0.606214] hub 1-0:1.0: USB hub found
[ 0.606236] hub 1-0:1.0: 16 ports detected
[ 0.607951] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[ 0.607954] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.607955] usb usb2: Product: xHCI Host Controller
[ 0.607956] usb usb2: Manufacturer: Linux 6.12.8-arch1-1 xhci-hcd
[ 0.607958] usb usb2: SerialNumber: 0000:00:14.0
[ 0.608056] hub 2-0:1.0: USB hub found
[ 0.608071] hub 2-0:1.0: 8 ports detected
[ 0.608838] usb: port power management may be unreliable
[ 0.609157] usbcore: registered new interface driver usbserial_generic
[ 0.609161] usbserial: USB Serial support registered for generic
[ 0.609301] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.610837] rtc_cmos rtc_cmos: registered as rtc0
[ 0.611150] rtc_cmos rtc_cmos: setting system clock to 2025-01-05T18:23:38 UTC (1736101418)
[ 0.611182] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.611508] intel_pstate: Intel P-state driver initializing
[ 0.612134] intel_pstate: Disabling energy efficiency optimization
[ 0.612135] intel_pstate: HWP enabled
[ 0.612374] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.612375] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.622226] Console: switching to colour frame buffer device 240x67
[ 0.634059] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.634190] hid: raw HID events driver (C) Jiri Kosina
[ 0.634266] drop_monitor: Initializing network drop monitor service
[ 0.634348] NET: Registered PF_INET6 protocol family
[ 0.639069] Segment Routing with IPv6
[ 0.639071] RPL Segment Routing with IPv6
[ 0.639078] In-situ OAM (IOAM) with IPv6
[ 0.639094] NET: Registered PF_PACKET protocol family
[ 0.639792] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.640026] microcode: Current revision: 0x00000100
[ 0.640027] microcode: Updated early from: 0x000000fa
[ 0.640336] IPI shorthand broadcast: enabled
[ 0.641443] sched_clock: Marking stable (627579733, 12743584)->(670722157, -30398840)
[ 0.641725] registered taskstats version 1
[ 0.642281] Loading compiled-in X.509 certificates
[ 0.644248] Loaded X.509 cert 'Build time autogenerated kernel key: 6587eb3a34e425dab5507b3af5d21e7082a7b55e'
[ 0.645345] Demotion targets for Node 0: null
[ 0.645509] Key type .fscrypt registered
[ 0.645509] Key type fscrypt-provisioning registered
[ 0.646617] integrity: Loading X.509 certificate: UEFI:db
[ 0.646632] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.646633] integrity: Loading X.509 certificate: UEFI:db
[ 0.646646] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.646647] integrity: Loading X.509 certificate: UEFI:db
[ 0.646655] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.648307] PM: Magic number: 9:77:392
[ 0.648325] thermal cooling_device7: hash matches
[ 0.648345] acpi PNP0C0D:00: hash matches
[ 0.648351] acpi XXXX0000:02: hash matches
[ 0.650485] RAS: Correctable Errors collector initialized.
[ 0.657010] clk: Disabling unused clocks
[ 0.657011] PM: genpd: Disabling unused power domains
[ 0.852983] usb 1-8: new high-speed USB device number 2 using xhci_hcd
[ 0.910050] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.912808] ata5.00: Model 'SAMSUNG MZ7TD256HAFV-000L9', rev 'DXT04L6Q', applying quirks: nolpm
[ 0.912819] ata5.00: LPM support broken, forcing max_power
[ 0.912976] ata5.00: supports DRM functions and may not be fully accessible
[ 0.912983] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 0.913286] ata5.00: NCQ Send/Recv Log not supported
[ 0.913294] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.913643] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.913714] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.913775] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.915395] ata5.00: Features: Trust Dev-Sleep
[ 0.915843] ata5.00: LPM support broken, forcing max_power
[ 0.916000] ata5.00: supports DRM functions and may not be fully accessible
[ 0.916329] ata5.00: NCQ Send/Recv Log not supported
[ 0.918655] ata5.00: configured for UDMA/133
[ 0.920646] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 0.921347] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.928850] ata3.00: configured for UDMA/133
[ 0.928928] ahci 0000:00:17.0: port does not support device sleep
[ 0.929108] scsi 2:0:0:0: Direct-Access ATA WDC WD20EARX-00P AB51 PQ: 0 ANSI: 5
[ 0.929654] sd 2:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 0.929662] sd 2:0:0:0: [sda] 4096-byte physical blocks
[ 0.929680] sd 2:0:0:0: [sda] Write Protect is off
[ 0.929684] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.929707] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.929745] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.929901] scsi 4:0:0:0: Direct-Access ATA SAMSUNG MZ7TD256 4L6Q PQ: 0 ANSI: 5
[ 0.930409] sd 4:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 0.930430] sd 4:0:0:0: [sdb] Write Protect is off
[ 0.930435] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.930457] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.930508] sd 4:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 0.983319] usb 1-8: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00
[ 0.983332] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.984909] hub 1-8:1.0: USB hub found
[ 0.984939] sdb: sdb1 sdb2 sdb3 sdb4
[ 0.985037] hub 1-8:1.0: 4 ports detected
[ 0.985927] sd 4:0:0:0: [sdb] supports TCG Opal
[ 0.985935] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 1.102948] usb 1-14: new full-speed USB device number 3 using xhci_hcd
[ 1.234307] usb 1-14: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
[ 1.234321] usb 1-14: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.234327] usb 1-14: Product: Bluetooth Radio
[ 1.234332] usb 1-14: Manufacturer: Realtek
[ 1.234335] usb 1-14: SerialNumber: 00e04c000001
[ 1.313107] usb 1-8.3: new low-speed USB device number 4 using xhci_hcd
[ 1.393122] tsc: Refined TSC clocksource calibration: 3000.007 MHz
[ 1.393141] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e4c0030f, max_idle_ns: 440795221275 ns
[ 1.393217] clocksource: Switched to clocksource tsc
[ 1.400755] sda: sda1
[ 1.401024] sd 2:0:0:0: [sda] Attached SCSI disk
[ 1.403968] Freeing unused decrypted memory: 2028K
[ 1.405153] Freeing unused kernel image (initmem) memory: 4260K
[ 1.405200] Write protecting the kernel read-only data: 32768k
[ 1.405810] Freeing unused kernel image (rodata/data gap) memory: 32K
[ 1.410914] usb 1-8.3: New USB device found, idVendor=05d5, idProduct=0615, bcdDevice= 1.01
[ 1.410916] usb 1-8.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.410917] usb 1-8.3: Product: KEYBOARD
[ 1.413949] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.413952] rodata_test: all tests were successful
[ 1.413955] Run /init as init process
[ 1.413955] with arguments:
[ 1.413956] /init
[ 1.413957] with environment:
[ 1.413957] HOME=/
[ 1.413958] TERM=linux
[ 1.617145] sdhci: Secure Digital Host Controller Interface driver
[ 1.617147] sdhci: Copyright(c) Pierre Ossman
[ 1.622590] usbcore: registered new interface driver usbhid
[ 1.622592] usbhid: USB HID core driver
[ 1.623895] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.623904] sdhci-pci 0000:00:14.5: enabling device (0100 -> 0102)
[ 1.625730] input: KEYBOARD as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.0/0003:05D5:0615.0001/input/input3
[ 1.628333] nvme nvme0: pci function 0000:06:00.0
[ 1.637343] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.640438] nvme0n1: p1 p2
[ 1.640552] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.746527] hid-generic 0003:05D5:0615.0001: input,hidraw0: USB HID v1.10 Keyboard [KEYBOARD] on usb-0000:00:14.0-8.3/input0
[ 1.746655] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.746855] input: KEYBOARD Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.1/0003:05D5:0615.0002/input/input4
[ 1.799791] input: KEYBOARD System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.1/0003:05D5:0615.0002/input/input5
[ 1.800212] hid-generic 0003:05D5:0615.0002: input,hidraw1: USB HID v1.10 Device [KEYBOARD] on usb-0000:00:14.0-8.3/input1
[ 1.800359] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 2.027703] EXT4-fs (nvme0n1p1): mounted filesystem 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w with ordered data mode. Quota mode: none.
[ 2.195397] systemd[1]: systemd 257.1-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 2.195407] systemd[1]: Detected architecture x86-64.
[ 2.198503] systemd[1]: Hostname set to <Ale-Arch>.
[ 2.515163] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 2.758738] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.758744] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.758822] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.759453] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.764293] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.764297] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.764300] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.764344] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.764378] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.766303] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.766306] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.786840] zram: Added device: zram0
[ 3.039029] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 3.142526] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.171568] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 3.172264] systemd[1]: Created slice Slice /system/backrest.
[ 3.172536] systemd[1]: Created slice CUPS Slice.
[ 3.172816] systemd[1]: Created slice Slice /system/dirmngr.
[ 3.173091] systemd[1]: Created slice Slice /system/getty.
[ 3.173363] systemd[1]: Created slice Slice /system/gpg-agent.
[ 3.173636] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 3.173909] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 3.174181] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 3.174452] systemd[1]: Created slice Slice /system/keyboxd.
[ 3.174732] systemd[1]: Created slice Slice /system/modprobe.
[ 3.175003] systemd[1]: Created slice Slice /system/nut-driver.
[ 3.175268] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 3.175542] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 3.175716] systemd[1]: Created slice User and Session Slice.
[ 3.175763] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.175869] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.175891] systemd[1]: Expecting device /dev/disk/by-uuid/0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee...
[ 3.175901] systemd[1]: Expecting device /dev/disk/by-uuid/CAB7-E233...
[ 3.175910] systemd[1]: Expecting device /dev/zram0...
[ 3.175926] systemd[1]: Reached target Login Prompts.
[ 3.175939] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 3.175965] systemd[1]: Reached target Remote File Systems.
[ 3.176023] systemd[1]: Reached target Slice Units.
[ 3.176118] systemd[1]: Reached target System Time Set.
[ 3.176178] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.176257] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 3.176343] systemd[1]: Listening on LVM2 poll daemon socket.
[ 3.178600] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 3.178635] systemd[1]: Reached target RPC Port Mapper.
[ 3.181956] systemd[1]: Listening on Process Core Dump Socket.
[ 3.182509] systemd[1]: Listening on Credential Encryption/Decryption.
[ 3.182577] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.182649] systemd[1]: Listening on Journal Sockets.
[ 3.182748] systemd[1]: Listening on Network Service Netlink Socket.
[ 3.183438] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 3.183470] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.183484] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.183535] systemd[1]: Listening on udev Control Socket.
[ 3.184343] systemd[1]: Listening on udev Kernel Socket.
[ 3.185897] systemd[1]: Mounting Huge Pages File System...
[ 3.187128] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.187885] systemd[1]: Mounting NFSD configuration filesystem...
[ 3.188800] systemd[1]: Mounting Kernel Debug File System...
[ 3.189690] systemd[1]: Mounting Kernel Trace File System...
[ 3.190105] systemd[1]: Load AppArmor profiles was skipped because of an unmet condition check (ConditionSecurity=apparmor).
[ 3.190145] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 3.191057] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.192208] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 3.193409] systemd[1]: Starting Load Kernel Module configfs...
[ 3.194290] systemd[1]: Starting Load Kernel Module dm_mod...
[ 3.195177] systemd[1]: Starting Load Kernel Module drm...
[ 3.196088] systemd[1]: Starting Load Kernel Module fuse...
[ 3.197086] systemd[1]: Starting Load Kernel Module loop...
[ 3.197973] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 3.198014] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 3.199471] systemd[1]: Starting Journal Service...
[ 3.200694] systemd[1]: Starting Load Kernel Modules...
[ 3.201846] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
[ 3.201871] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.202484] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.202536] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.206271] systemd[1]: Starting Load udev Rules from Credentials...
[ 3.207167] systemd[1]: Starting Coldplug All udev Devices...
[ 3.207194] loop: module loaded
[ 3.207217] device-mapper: uevent: version 1.0.3
[ 3.207267] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 3.208096] systemd[1]: Starting Virtual Console Setup...
[ 3.210216] systemd[1]: Mounted Huge Pages File System.
[ 3.210614] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.211708] systemd[1]: Mounted Kernel Debug File System.
[ 3.212550] systemd[1]: Mounted Kernel Trace File System.
[ 3.213194] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.214005] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.214146] systemd[1]: Finished Load Kernel Module configfs.
[ 3.214759] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.214869] systemd[1]: Finished Load Kernel Module dm_mod.
[ 3.215502] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.215604] systemd[1]: Finished Load Kernel Module drm.
[ 3.216336] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.216440] systemd[1]: Finished Load Kernel Module fuse.
[ 3.216612] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.216716] systemd[1]: Finished Load Kernel Module loop.
[ 3.217067] systemd[1]: Finished Load udev Rules from Credentials.
[ 3.219297] systemd[1]: Mounting FUSE Control File System...
[ 3.220780] systemd[1]: Mounting Kernel Configuration File System...
[ 3.220825] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.221488] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 3.225136] systemd[1]: Mounted FUSE Control File System.
[ 3.225476] systemd[1]: Mounted Kernel Configuration File System.
[ 3.230095] EXT4-fs (nvme0n1p1): re-mounted 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w. Quota mode: none.
[ 3.230706] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.233067] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 3.233969] systemd[1]: Starting Load/Save OS Random Seed...
[ 3.233995] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.236258] systemd-journald[341]: Collecting audit messages is disabled.
[ 3.236663] vhba: loading out-of-tree module taints kernel.
[ 3.236666] vhba: module verification failed: signature and/or required key missing - tainting kernel
[ 3.241098] systemd[1]: Finished Virtual Console Setup.
[ 3.243097] scsi host6: vhba
[ 3.243110] RPC: Registered named UNIX socket transport module.
[ 3.243112] RPC: Registered udp transport module.
[ 3.243112] RPC: Registered tcp transport module.
[ 3.243113] RPC: Registered tcp-with-tls transport module.
[ 3.243114] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.243246] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.244838] systemd[1]: Finished Load/Save OS Random Seed.
[ 3.248243] systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
[ 3.252648] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.252672] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 3.258537] i2c_dev: i2c /dev entries driver
[ 3.260227] systemd[1]: Finished Load Kernel Modules.
[ 3.260906] systemd[1]: Starting Apply Kernel Variables...
[ 3.271683] systemd[1]: Started Journal Service.
[ 3.287906] systemd-journald[341]: Received client request to flush runtime journal.
[ 3.488518] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.494257] zram0: detected capacity change from 0 to 32491520
[ 3.513011] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.519109] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.519112] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.519113] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[ 3.519113] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[ 3.523262] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.530085] mmc0: SDHCI controller on PCI [0000:00:14.5] using ADMA 64-bit
[ 3.579804] raid6: skipped pq benchmark and selected avx2x4
[ 3.579808] raid6: using avx2x2 recovery algorithm
[ 3.579848] EDAC ie31200: No ECC support
[ 3.579879] EDAC ie31200: No ECC support
[ 3.580232] intel_pch_thermal 0000:00:12.0: enabling device (0100 -> 0102)
[ 3.581038] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.583218] xor: automatically using best checksumming function avx
[ 3.587905] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.588015] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 3.589075] intel_pmc_core INT33A1:00: initialized
[ 3.593003] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 3.593007] cfg80211: failed to load regulatory.db
[ 3.596573] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 3.598518] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 3.603284] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 3.610126] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 3.610171] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 3.612561] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 3.613354] i2c i2c-1: Successfully instantiated SPD at 0x50
[ 3.624309] intel-lpss 0000:00:15.1: enabling device (0100 -> 0102)
[ 3.624533] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 3.632571] Adding 16245756k swap on /dev/zram0. Priority:100 extents:1 across:16245756k SSDsc
[ 3.633961] intel-lpss 0000:00:1e.0: enabling device (0100 -> 0102)
[ 3.634777] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 3.763011] Creating 1 MTD partitions on "0000:00:1f.5":
[ 3.763015] 0x000000000000-0x000001000000 : "BIOS"
[ 3.766225] Btrfs loaded, zoned=yes, fsverity=yes
[ 3.815026] iTCO_vendor_support: vendor-support=0
[ 3.815233] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 3.815982] Bluetooth: Core ver 2.22
[ 3.815999] NET: Registered PF_BLUETOOTH protocol family
[ 3.816000] Bluetooth: HCI device and connection manager initialized
[ 3.816002] Bluetooth: HCI socket layer initialized
[ 3.816004] Bluetooth: L2CAP socket layer initialized
[ 3.816007] Bluetooth: SCO socket layer initialized
[ 3.819180] ee1004 1-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 3.821161] dw-apb-uart.2: ttyS4 at MMIO 0xa091e000 (irq = 20, base_baud = 7500000) is a 16550A
[ 3.826222] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 3.826349] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 3.827275] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 3.827277] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.827278] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.827279] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 3.830604] input: HP WMI hotkeys as /devices/virtual/input/input7
[ 3.831224] cryptd: max_cpu_qlen set to 1000
[ 3.838121] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 9c:7b:ef:30:a7:6b, XID 541, IRQ 146
[ 3.838125] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 3.839882] rtw_8821ce 0000:05:00.0: enabling device (0100 -> 0103)
[ 3.842453] rtw_8821ce 0000:05:00.0: Firmware version 24.11.0, H2C version 12
[ 3.842923] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 3.844951] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 3.845384] snd_hda_intel 0000:03:00.1: enabling device (0100 -> 0102)
[ 3.845483] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 3.845712] AES CTR mode by8 optimization enabled
[ 3.847259] usbcore: registered new interface driver btusb
[ 3.853028] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[ 3.854020] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 3.854023] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[ 3.854917] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[ 3.855071] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[ 3.865620] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input8
[ 3.865767] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input9
[ 3.866048] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input10
[ 3.866108] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input11
[ 3.866572] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input12
[ 3.875165] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 3.875169] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 3.875171] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 3.875172] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 3.875173] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 3.875174] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 3.875175] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 3.875176] snd_hda_codec_realtek hdaudioC0D0: Line=0x1b
[ 3.889243] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 3.889276] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 3.889301] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 3.889327] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 3.889362] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 3.898411] rtw_8821ce 0000:05:00.0 wlp5s0: renamed from wlan0
[ 4.326132] Bluetooth: hci0: RTL: fw version 0x75b8f098
[ 4.365470] BTRFS: device label DATA devid 1 transid 20282 /dev/sda1 (8:1) scanned by mount (599)
[ 4.366564] BTRFS info (device sda1): first mount of filesystem 0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee
[ 4.366590] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 4.366593] BTRFS info (device sda1): using free-space-tree
[ 6.333674] intel_tcc_cooling: Programmable TCC Offset detected
[ 6.339394] [drm] amdgpu kernel modesetting enabled.
[ 6.339557] amdgpu: Virtual CRAT table created for CPU
[ 6.339565] amdgpu: Topology: Add CPU node
[ 6.339646] amdgpu 0000:03:00.0: enabling device (0106 -> 0107)
[ 6.339722] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1043:0x05D5 0xC7).
[ 6.339731] [drm] register mmio base: 0xA0300000
[ 6.339732] [drm] register mmio size: 1048576
[ 6.342893] [drm] add ip block number 0 <nv_common>
[ 6.342895] [drm] add ip block number 1 <gmc_v10_0>
[ 6.342896] [drm] add ip block number 2 <navi10_ih>
[ 6.342896] [drm] add ip block number 3 <psp>
[ 6.342897] [drm] add ip block number 4 <smu>
[ 6.342898] [drm] add ip block number 5 <dm>
[ 6.342899] [drm] add ip block number 6 <gfx_v10_0>
[ 6.342900] [drm] add ip block number 7 <sdma_v5_2>
[ 6.342900] [drm] add ip block number 8 <vcn_v3_0>
[ 6.342901] [drm] add ip block number 9 <jpeg_v3_0>
[ 6.342913] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 6.342915] amdgpu: ATOM BIOS: 115-D534P00-100
[ 6.406437] Console: switching to colour dummy device 80x25
[ 6.420070] intel_rapl_common: Found RAPL domain package
[ 6.420072] intel_rapl_common: Found RAPL domain core
[ 6.420073] intel_rapl_common: Found RAPL domain dram
[ 6.423630] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 6.423634] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 6.423667] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 6.423674] amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 6.423676] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 6.423688] [drm] Detected VRAM RAM=8176M, BAR=256M
[ 6.423689] [drm] RAM width 128bits GDDR6
[ 6.423816] [drm] amdgpu: 8176M of VRAM memory ready
[ 6.423818] [drm] amdgpu: 7932M of GTT memory ready.
[ 6.423831] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 6.423912] [drm] PCIE GART of 512M enabled (table at 0x0000008002000000).
[ 7.986162] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 7.986339] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 7.986699] [drm] use_doorbell being set to: [true]
[ 7.986710] [drm] use_doorbell being set to: [true]
[ 7.986719] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 3
[ 8.053385] amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 8.157081] amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 8.174313] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8.174338] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
[ 8.174347] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 8.174381] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 8.220827] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 8.221141] [drm] Display Core v3.2.301 initialized on DCN 3.0.2
[ 8.221142] [drm] DP-HDMI FRL PCON supported
[ 8.222283] [drm] DMUB hardware initialized: version=0x02020020
[ 8.225346] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 8.673158] [drm] kiq ring mec 2 pipe 1 q 0
[ 8.736016] amdgpu: HMM registered 8176MB device memory
[ 8.737632] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 8.737644] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 8.737850] amdgpu: Virtual CRAT table created for GPU
[ 8.737973] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 8.737975] kfd kfd: amdgpu: added device 1002:73ff
[ 8.737993] amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 8.737996] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 8.737998] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 8.737999] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 8.738000] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 8.738001] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 8.738002] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 8.738003] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 8.738004] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 8.738005] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 8.738006] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 8.738007] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 8.738008] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 8.738009] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
[ 8.738010] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 8.738011] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 8.738012] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 8.738013] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
[ 8.739600] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 8.740472] [drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
[ 8.746473] fbcon: amdgpudrmfb (fb0) is primary device
[ 8.746758] [drm] pre_validate_dsc:1589 MST_DSC dsc precompute is not needed
[ 9.038219] Console: switching to colour frame buffer device 240x67
[ 9.056967] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 9.263381] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 9.263384] Bluetooth: BNEP filters: protocol multicast
[ 9.263386] Bluetooth: BNEP socket layer initialized
[ 9.264547] Bluetooth: MGMT ver 1.23
[ 9.269594] NET: Registered PF_ALG protocol family
[ 9.499589] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[ 9.564572] block nvme0n1: No UUID available providing old NGUID
[ 9.679667] r8169 0000:04:00.0 enp4s0: Link is Down
[ 10.355410] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 10.487113] u32 classifier
[ 10.487115] Performance counters on
[ 10.487115] input device check on
[ 10.487116] Actions configured
[ 12.726863] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 12.729556] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 15.152222] RPC: Registered rdma transport module.
[ 15.152225] RPC: Registered rdma backchannel transport module.
[ 15.264146] NFSD: Using nfsdcld client tracking operations.
[ 15.264149] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 15.637004] Initializing XFRM netlink socket
[ 15.737421] warning: `pmdalinux' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[-- Attachment #1.3: dmesg-working.log --]
[-- Type: text/plain, Size: 87326 bytes --]
[ 0.000000] microcode: updated early: 0xfa -> 0x100, date = 2024-02-05
[ 0.000000] Linux version 6.6.69-1-lts (linux-lts@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.0) #1 SMP PREEMPT_DYNAMIC Thu, 02 Jan 2025 22:00:49 +0000
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux-lts.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008a26ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x7c005018-0x7c023457] usable ==> usable
[ 0.000000] e820: update [mem 0x7c005018-0x7c023457] usable ==> usable
[ 0.000000] e820: update [mem 0x7bff6018-0x7c004057] usable ==> usable
[ 0.000000] e820: update [mem 0x7bff6018-0x7c004057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007bff6017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bff6018-0x000000007c004057] usable
[ 0.000000] reserve setup_data: [mem 0x000000007c004058-0x000000007c005017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007c005018-0x000000007c023457] usable
[ 0.000000] reserve setup_data: [mem 0x000000007c023458-0x000000008a26ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x8a6be000 ACPI=0x8a6be000 TPMFinalLog=0x8ab1e000 SMBIOS=0x8d9a5000 SMBIOS 3.0=0x8d9a4000 MEMATTR=0x86e08098 ESRT=0x88b80398 RNG=0x8a6bdf18 INITRD=0x80e3f298 TPMEventLog=0x8a6b4018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem46: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem47: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem49: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem51: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.000000] tsc: Detected 3000.000 MHz processor
[ 0.000922] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000925] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000933] last_pfn = 0x46e000 max_arch_pfn = 0x400000000
[ 0.000937] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000939] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001217] last_pfn = 0x8dc0f max_arch_pfn = 0x400000000
[ 0.008531] esrt: Reserving ESRT space from 0x0000000088b80398 to 0x0000000088b80420.
[ 0.008536] e820: update [mem 0x88b80000-0x88b80fff] usable ==> reserved
[ 0.008552] Using GB pages for direct mapping
[ 0.009083] Secure boot disabled
[ 0.009083] RAMDISK: [mem 0x7c024000-0x7d4dcfff]
[ 0.009106] ACPI: Early table checksum verification disabled
[ 0.009108] ACPI: RSDP 0x000000008A6BE000 000024 (v02 HPQOEM)
[ 0.009112] ACPI: XSDT 0x000000008A6BE0C0 0000FC (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009117] ACPI: FACP 0x000000008A704DC8 000114 (v06 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009122] ACPI: DSDT 0x000000008A6BE248 046B7A (v02 HPQOEM SLIC-CPC 01072009 INTL 20160527)
[ 0.009125] ACPI: FACS 0x000000008AB93080 000040
[ 0.009128] ACPI: APIC 0x000000008A704EE0 0000BC (v04 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009130] ACPI: FPDT 0x000000008A704FA0 000044 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009133] ACPI: FIDT 0x000000008A704FE8 00009C (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009136] ACPI: MCFG 0x000000008A705088 00003C (v01 HPQOEM SLIC-CPC 01072009 MSFT 00000097)
[ 0.009139] ACPI: SSDT 0x000000008A7050C8 001B5F (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009142] ACPI: MSDM 0x000000008A706C28 000055 (v03 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009145] ACPI: SSDT 0x000000008A706C80 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009148] ACPI: SSDT 0x000000008A706CE0 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009150] ACPI: SSDT 0x000000008A706D40 0031C6 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009153] ACPI: SSDT 0x000000008A709F08 00241B (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009156] ACPI: HPET 0x000000008A70C328 000038 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009159] ACPI: SSDT 0x000000008A70C360 001D39 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009161] ACPI: SSDT 0x000000008A70E0A0 000FAE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009164] ACPI: SSDT 0x000000008A70F050 000BDF (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009167] ACPI: UEFI 0x000000008A70FC30 000042 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009170] ACPI: LPIT 0x000000008A70FC78 000094 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009172] ACPI: SSDT 0x000000008A70FD10 0027DE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009175] ACPI: SSDT 0x000000008A7124F0 0014E2 (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009178] ACPI: DBGP 0x000000008A7139D8 000034 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009181] ACPI: DBG2 0x000000008A713A10 000054 (v00 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009183] ACPI: SSDT 0x000000008A713A68 001B67 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009186] ACPI: DMAR 0x000000008A7155D0 000070 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009189] ACPI: VFCT 0x000000008A715640 00B284 (v01 HPQOEM SLIC-CPC 00000001 AMD 31504F47)
[ 0.009192] ACPI: BGRT 0x000000008A7208C8 000038 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009194] ACPI: TPM2 0x000000008A720900 000034 (v04 HPQOEM SLIC-CPC 00000001 AMI 00000000)
[ 0.009197] ACPI: WSMT 0x000000008A720938 000028 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009199] ACPI: Reserving FACP table memory at [mem 0x8a704dc8-0x8a704edb]
[ 0.009201] ACPI: Reserving DSDT table memory at [mem 0x8a6be248-0x8a704dc1]
[ 0.009202] ACPI: Reserving FACS table memory at [mem 0x8ab93080-0x8ab930bf]
[ 0.009203] ACPI: Reserving APIC table memory at [mem 0x8a704ee0-0x8a704f9b]
[ 0.009203] ACPI: Reserving FPDT table memory at [mem 0x8a704fa0-0x8a704fe3]
[ 0.009204] ACPI: Reserving FIDT table memory at [mem 0x8a704fe8-0x8a705083]
[ 0.009205] ACPI: Reserving MCFG table memory at [mem 0x8a705088-0x8a7050c3]
[ 0.009206] ACPI: Reserving SSDT table memory at [mem 0x8a7050c8-0x8a706c26]
[ 0.009206] ACPI: Reserving MSDM table memory at [mem 0x8a706c28-0x8a706c7c]
[ 0.009207] ACPI: Reserving SSDT table memory at [mem 0x8a706c80-0x8a706cdf]
[ 0.009208] ACPI: Reserving SSDT table memory at [mem 0x8a706ce0-0x8a706d3f]
[ 0.009209] ACPI: Reserving SSDT table memory at [mem 0x8a706d40-0x8a709f05]
[ 0.009209] ACPI: Reserving SSDT table memory at [mem 0x8a709f08-0x8a70c322]
[ 0.009210] ACPI: Reserving HPET table memory at [mem 0x8a70c328-0x8a70c35f]
[ 0.009211] ACPI: Reserving SSDT table memory at [mem 0x8a70c360-0x8a70e098]
[ 0.009212] ACPI: Reserving SSDT table memory at [mem 0x8a70e0a0-0x8a70f04d]
[ 0.009213] ACPI: Reserving SSDT table memory at [mem 0x8a70f050-0x8a70fc2e]
[ 0.009213] ACPI: Reserving UEFI table memory at [mem 0x8a70fc30-0x8a70fc71]
[ 0.009214] ACPI: Reserving LPIT table memory at [mem 0x8a70fc78-0x8a70fd0b]
[ 0.009215] ACPI: Reserving SSDT table memory at [mem 0x8a70fd10-0x8a7124ed]
[ 0.009216] ACPI: Reserving SSDT table memory at [mem 0x8a7124f0-0x8a7139d1]
[ 0.009216] ACPI: Reserving DBGP table memory at [mem 0x8a7139d8-0x8a713a0b]
[ 0.009217] ACPI: Reserving DBG2 table memory at [mem 0x8a713a10-0x8a713a63]
[ 0.009218] ACPI: Reserving SSDT table memory at [mem 0x8a713a68-0x8a7155ce]
[ 0.009219] ACPI: Reserving DMAR table memory at [mem 0x8a7155d0-0x8a71563f]
[ 0.009219] ACPI: Reserving VFCT table memory at [mem 0x8a715640-0x8a7208c3]
[ 0.009220] ACPI: Reserving BGRT table memory at [mem 0x8a7208c8-0x8a7208ff]
[ 0.009221] ACPI: Reserving TPM2 table memory at [mem 0x8a720900-0x8a720933]
[ 0.009222] ACPI: Reserving WSMT table memory at [mem 0x8a720938-0x8a72095f]
[ 0.009541] No NUMA configuration found
[ 0.009542] Faking a node at [mem 0x0000000000000000-0x000000046dffffff]
[ 0.009545] NODE_DATA(0) allocated [mem 0x46dffb000-0x46dffffff]
[ 0.009575] Zone ranges:
[ 0.009575] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009577] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009579] Normal [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009580] Device empty
[ 0.009581] Movable zone start for each node
[ 0.009582] Early memory node ranges
[ 0.009582] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009584] node 0: [mem 0x0000000000100000-0x000000008a26ffff]
[ 0.009585] node 0: [mem 0x000000008dc0e000-0x000000008dc0efff]
[ 0.009586] node 0: [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009588] Initmem setup node 0 [mem 0x0000000000001000-0x000000046dffffff]
[ 0.009592] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009611] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012335] On node 0, zone DMA32: 14750 pages in unavailable ranges
[ 0.029193] On node 0, zone Normal: 9201 pages in unavailable ranges
[ 0.029273] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.030265] ACPI: PM-Timer IO Port: 0x1808
[ 0.030270] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.030272] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.030273] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.030273] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.030274] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.030275] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.030275] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.030276] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.030339] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.030341] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.030343] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.030347] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.030348] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.030354] e820: update [mem 0x86b6d000-0x86bdffff] usable ==> reserved
[ 0.030366] TSC deadline timer available
[ 0.030367] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[ 0.030379] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.030381] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.030383] PM: hibernation: Registered nosave memory: [mem 0x7bff6000-0x7bff6fff]
[ 0.030385] PM: hibernation: Registered nosave memory: [mem 0x7c004000-0x7c004fff]
[ 0.030385] PM: hibernation: Registered nosave memory: [mem 0x7c005000-0x7c005fff]
[ 0.030387] PM: hibernation: Registered nosave memory: [mem 0x7c023000-0x7c023fff]
[ 0.030388] PM: hibernation: Registered nosave memory: [mem 0x86b6d000-0x86bdffff]
[ 0.030390] PM: hibernation: Registered nosave memory: [mem 0x88b80000-0x88b80fff]
[ 0.030391] PM: hibernation: Registered nosave memory: [mem 0x8a270000-0x8a6a4fff]
[ 0.030392] PM: hibernation: Registered nosave memory: [mem 0x8a6a5000-0x8a721fff]
[ 0.030393] PM: hibernation: Registered nosave memory: [mem 0x8a722000-0x8ab95fff]
[ 0.030393] PM: hibernation: Registered nosave memory: [mem 0x8ab96000-0x8dc0dfff]
[ 0.030395] PM: hibernation: Registered nosave memory: [mem 0x8dc0f000-0x8fffffff]
[ 0.030395] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfdffffff]
[ 0.030396] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.030397] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.030397] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.030398] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.030399] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.030399] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.030400] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.030401] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.030402] [mem 0x90000000-0xfdffffff] available for PCI devices
[ 0.030403] Booting paravirtualized kernel on bare hardware
[ 0.030405] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.036620] setup_percpu: NR_CPUS:320 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.036913] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[ 0.036919] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[ 0.036922] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.036939] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux-lts.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.036994] DMAR: IOMMU enabled
[ 0.038206] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.038827] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.038899] Fallback order for Node 0: 0
[ 0.038902] Built 1 zonelists, mobility grouping on. Total pages: 4096871
[ 0.038903] Policy zone: Normal
[ 0.039070] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.039076] software IO TLB: area num 8.
[ 0.078900] Memory: 16176052K/16648252K available (18432K kernel code, 2150K rwdata, 13100K rodata, 3444K init, 3628K bss, 471944K reserved, 0K cma-reserved)
[ 0.079135] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.079158] ftrace: allocating 49264 entries in 193 pages
[ 0.087057] ftrace: allocated 193 pages with 3 groups
[ 0.087649] Dynamic Preempt: voluntary
[ 0.087691] rcu: Preemptible hierarchical RCU implementation.
[ 0.087692] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
[ 0.087693] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.087694] Trampoline variant of Tasks RCU enabled.
[ 0.087694] Rude variant of Tasks RCU enabled.
[ 0.087695] Tracing variant of Tasks RCU enabled.
[ 0.087695] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.087696] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.091015] NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
[ 0.091297] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.091698] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.091727] Console: colour dummy device 80x25
[ 0.091730] printk: console [tty0] enabled
[ 0.091777] ACPI: Core revision 20230628
[ 0.092022] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.092023] APIC: Switch to symmetric I/O mode setup
[ 0.092025] DMAR: Host address width 39
[ 0.092026] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.092032] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.092034] DMAR: RMRR base: 0x0000008b72e000 end: 0x0000008b977fff
[ 0.092037] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.092038] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.092039] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.095083] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.095085] x2apic enabled
[ 0.095154] APIC: Switched APIC routing to: cluster x2apic
[ 0.104302] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
[ 0.104307] Calibrating delay loop (skipped), value calculated using timer frequency.. 6002.00 BogoMIPS (lpj=10000000)
[ 0.104327] x86/cpu: SGX disabled by BIOS.
[ 0.104334] CPU0: Thermal monitoring enabled (TM1)
[ 0.104385] process: using mwait in idle threads
[ 0.104387] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.104388] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.104392] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.104394] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on vm exit
[ 0.104394] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall
[ 0.104395] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.104396] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.104396] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.104397] RETBleed: Mitigation: Enhanced IBRS
[ 0.104398] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.104400] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.104405] TAA: Mitigation: TSX disabled
[ 0.104405] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.104408] SRBDS: Mitigation: Microcode
[ 0.104413] GDS: Mitigation: Microcode
[ 0.104418] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.104419] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.104420] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.104420] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.104421] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.104422] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.104424] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.104425] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.104426] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.107638] Freeing SMP alternatives memory: 40K
[ 0.107638] pid_max: default: 32768 minimum: 301
[ 0.107638] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
[ 0.107638] landlock: Up and running.
[ 0.107638] Yama: becoming mindful.
[ 0.107638] LSM support for eBPF active
[ 0.107638] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.107638] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.107638] smpboot: CPU0: Intel(R) Core(TM) i7-9700F CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[ 0.107638] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.107638] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.107638] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.107638] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.107638] ... version: 4
[ 0.107638] ... bit width: 48
[ 0.107638] ... generic registers: 8
[ 0.107638] ... value mask: 0000ffffffffffff
[ 0.107638] ... max period: 00007fffffffffff
[ 0.107638] ... fixed-purpose events: 3
[ 0.107638] ... event mask: 00000007000000ff
[ 0.107638] signal: max sigframe size: 2032
[ 0.107638] Estimated ratio of average max frequency by base frequency (times 1024): 1570
[ 0.107638] rcu: Hierarchical SRCU implementation.
[ 0.107638] rcu: Max phase no-delay instances is 1000.
[ 0.107638] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.107638] smp: Bringing up secondary CPUs ...
[ 0.107638] smpboot: x86: Booting SMP configuration:
[ 0.107638] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.111015] smp: Brought up 1 node, 8 CPUs
[ 0.111015] smpboot: Max logical packages: 1
[ 0.111015] smpboot: Total of 8 processors activated (48019.00 BogoMIPS)
[ 0.114341] devtmpfs: initialized
[ 0.114348] x86/mm: Memory block size: 128MB
[ 0.115343] ACPI: PM: Registering ACPI NVS region [mem 0x8a722000-0x8ab95fff] (4669440 bytes)
[ 0.115343] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.115343] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.115343] pinctrl core: initialized pinctrl subsystem
[ 0.115343] PM: RTC time: 18:19:42, date: 2025-01-05
[ 0.115343] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.115426] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.115538] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.115651] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.115664] audit: initializing netlink subsys (disabled)
[ 0.115713] audit: type=2000 audit(1736101182.009:1): state=initialized audit_enabled=0 res=1
[ 0.115713] thermal_sys: Registered thermal governor 'fair_share'
[ 0.115713] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.115713] thermal_sys: Registered thermal governor 'step_wise'
[ 0.115713] thermal_sys: Registered thermal governor 'user_space'
[ 0.115713] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.115713] cpuidle: using governor ladder
[ 0.115713] cpuidle: using governor menu
[ 0.115713] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.115713] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.115713] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.115713] PCI: Using configuration type 1 for base access
[ 0.115713] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.115713] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.121007] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.121007] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.121007] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.121007] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.121052] fbcon: Taking over console
[ 0.121066] ACPI: Added _OSI(Module Device)
[ 0.121067] ACPI: Added _OSI(Processor Device)
[ 0.121067] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.121068] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.176642] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.184324] ACPI: Dynamic OEM Table Load:
[ 0.184331] ACPI: SSDT 0xFFFF888100CB3000 000400 (v02 HPQOEM SLIC-CPC 00003001 INTL 20160527)
[ 0.185346] ACPI: Dynamic OEM Table Load:
[ 0.185351] ACPI: SSDT 0xFFFF888100CC7800 000605 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.186401] ACPI: Dynamic OEM Table Load:
[ 0.186405] ACPI: SSDT 0xFFFF888100CDD700 0000F4 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.187359] ACPI: Dynamic OEM Table Load:
[ 0.187363] ACPI: SSDT 0xFFFF88810189BA00 000149 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.188272] ACPI: Dynamic OEM Table Load:
[ 0.188276] ACPI: SSDT 0xFFFF888100CC4800 000724 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.189421] ACPI: Dynamic OEM Table Load:
[ 0.189426] ACPI: SSDT 0xFFFF888100CC1000 0005FC (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.190494] ACPI: Dynamic OEM Table Load:
[ 0.190498] ACPI: SSDT 0xFFFF888100CB0400 000317 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.191571] ACPI: Dynamic OEM Table Load:
[ 0.191576] ACPI: SSDT 0xFFFF888100CBC000 000AB0 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.193172] ACPI: Dynamic OEM Table Load:
[ 0.193176] ACPI: SSDT 0xFFFF888100CB4400 00030A (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.197274] ACPI: _OSC evaluated successfully for all CPUs
[ 0.197535] ACPI: EC: EC started
[ 0.197536] ACPI: EC: interrupt blocked
[ 0.198135] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.198138] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.198139] ACPI: Interpreter enabled
[ 0.198176] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.198177] ACPI: Using IOAPIC for interrupt routing
[ 0.199396] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.199397] PCI: Ignoring E820 reservations for host bridge windows
[ 0.200623] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.215943] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.216100] ACPI: \_SB_.PCI0.PAUD: New power resource
[ 0.218735] ACPI: \SPR2: New power resource
[ 0.218914] ACPI: \SPR3: New power resource
[ 0.219236] ACPI: \ZPDR: New power resource
[ 0.219483] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.219691] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.219892] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.222474] ACPI: \_SB_.PCI0.I2C1.PXTC: New power resource
[ 0.225814] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.228937] ACPI: \_TZ_.FN00: New power resource
[ 0.229005] ACPI: \_TZ_.FN01: New power resource
[ 0.229071] ACPI: \_TZ_.FN02: New power resource
[ 0.229141] ACPI: \_TZ_.FN03: New power resource
[ 0.229205] ACPI: \_TZ_.FN04: New power resource
[ 0.229669] ACPI: \PIN_: New power resource
[ 0.229827] ACPI: \SPR0: New power resource
[ 0.229884] ACPI: \SPR1: New power resource
[ 0.229942] ACPI: \SPR5: New power resource
[ 0.230497] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.230504] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.233762] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.233763] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.234960] PCI host bridge to bus 0000:00
[ 0.234962] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.234964] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.234966] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.234968] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.234969] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[ 0.234970] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.234972] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.235065] pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000
[ 0.235132] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[ 0.235169] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.235773] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[ 0.235781] pci 0000:00:08.0: reg 0x10: [mem 0xa0922000-0xa0922fff 64bit]
[ 0.235951] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000
[ 0.235982] pci 0000:00:12.0: reg 0x10: [mem 0xa0921000-0xa0921fff 64bit]
[ 0.236243] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330
[ 0.236278] pci 0000:00:14.0: reg 0x10: [mem 0xa0900000-0xa090ffff 64bit]
[ 0.236418] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.237054] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000
[ 0.237083] pci 0000:00:14.2: reg 0x10: [mem 0xa0916000-0xa0917fff 64bit]
[ 0.237102] pci 0000:00:14.2: reg 0x18: [mem 0xa0920000-0xa0920fff 64bit]
[ 0.237252] pci 0000:00:14.5: [8086:a375] type 00 class 0x080501
[ 0.237283] pci 0000:00:14.5: reg 0x10: [mem 0xa091f000-0xa091ffff 64bit]
[ 0.238091] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000
[ 0.238665] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.241617] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000
[ 0.242192] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.244800] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000
[ 0.244831] pci 0000:00:16.0: reg 0x10: [mem 0xa091c000-0xa091cfff 64bit]
[ 0.244949] pci 0000:00:16.0: PME# supported from D3hot
[ 0.245539] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601
[ 0.245566] pci 0000:00:17.0: reg 0x10: [mem 0xa0914000-0xa0915fff]
[ 0.245581] pci 0000:00:17.0: reg 0x14: [mem 0xa091b000-0xa091b0ff]
[ 0.245596] pci 0000:00:17.0: reg 0x18: [io 0x6050-0x6057]
[ 0.245611] pci 0000:00:17.0: reg 0x1c: [io 0x6040-0x6043]
[ 0.245626] pci 0000:00:17.0: reg 0x20: [io 0x6020-0x603f]
[ 0.245641] pci 0000:00:17.0: reg 0x24: [mem 0xa091a000-0xa091a7ff]
[ 0.245722] pci 0000:00:17.0: PME# supported from D3hot
[ 0.246155] pci 0000:00:1c.0: [8086:a33d] type 01 class 0x060400
[ 0.246351] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.246401] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.247291] pci 0000:00:1c.7: [8086:a33f] type 01 class 0x060400
[ 0.247476] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 0.247518] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 0.248328] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400
[ 0.248536] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.248590] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.249847] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000
[ 0.250387] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.252976] pci 0000:00:1f.0: [8086:a304] type 00 class 0x060100
[ 0.253522] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300
[ 0.253581] pci 0000:00:1f.3: reg 0x10: [mem 0xa0910000-0xa0913fff 64bit]
[ 0.253656] pci 0000:00:1f.3: reg 0x20: [mem 0xa0200000-0xa02fffff 64bit]
[ 0.253805] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.255066] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500
[ 0.255241] pci 0000:00:1f.4: reg 0x10: [mem 0xa0918000-0xa09180ff 64bit]
[ 0.255455] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
[ 0.255925] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000
[ 0.255950] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[ 0.256132] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400
[ 0.256143] pci 0000:01:00.0: reg 0x10: [mem 0xa0500000-0xa0503fff]
[ 0.256221] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.256270] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.256358] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.256361] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.256363] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.256366] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.256402] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400
[ 0.256488] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.256600] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.256604] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.256607] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.256611] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.256645] pci 0000:03:00.0: [1002:73ff] type 00 class 0x030000
[ 0.256658] pci 0000:03:00.0: reg 0x10: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.256667] pci 0000:03:00.0: reg 0x18: [mem 0xa0000000-0xa01fffff 64bit pref]
[ 0.256673] pci 0000:03:00.0: reg 0x20: [io 0x5000-0x50ff]
[ 0.256679] pci 0000:03:00.0: reg 0x24: [mem 0xa0300000-0xa03fffff]
[ 0.256685] pci 0000:03:00.0: reg 0x30: [mem 0xa0400000-0xa041ffff pref]
[ 0.256707] pci 0000:03:00.0: BAR 0: assigned to efifb
[ 0.256753] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.256811] pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.256869] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300
[ 0.256878] pci 0000:03:00.1: reg 0x10: [mem 0xa0420000-0xa0423fff]
[ 0.256948] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.257029] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.257033] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.257035] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.257039] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.257190] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[ 0.257217] pci 0000:04:00.0: reg 0x10: [io 0x4000-0x40ff]
[ 0.257254] pci 0000:04:00.0: reg 0x18: [mem 0xa0804000-0xa0804fff 64bit]
[ 0.257277] pci 0000:04:00.0: reg 0x20: [mem 0xa0800000-0xa0803fff 64bit]
[ 0.257425] pci 0000:04:00.0: supports D1 D2
[ 0.257426] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.257699] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.257704] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.257709] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.257850] pci 0000:05:00.0: [10ec:c821] type 00 class 0x028000
[ 0.257877] pci 0000:05:00.0: reg 0x10: [io 0x3000-0x30ff]
[ 0.257909] pci 0000:05:00.0: reg 0x18: [mem 0xa0700000-0xa070ffff 64bit]
[ 0.258084] pci 0000:05:00.0: supports D1 D2
[ 0.258085] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.258427] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.258433] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.258438] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.258796] pci 0000:06:00.0: [8086:f1a8] type 00 class 0x010802
[ 0.258832] pci 0000:06:00.0: reg 0x10: [mem 0xa0600000-0xa0603fff 64bit]
[ 0.259353] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.259363] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.261713] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.261799] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.261883] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.261966] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.262050] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.262133] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.262216] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.262299] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.267889] ACPI: EC: interrupt unblocked
[ 0.267890] ACPI: EC: event unblocked
[ 0.267901] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.267902] ACPI: EC: GPE=0xb
[ 0.267904] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.267905] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.267959] iommu: Default domain type: Translated
[ 0.267959] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.267959] SCSI subsystem initialized
[ 0.267959] libata version 3.00 loaded.
[ 0.267959] ACPI: bus type USB registered
[ 0.267959] usbcore: registered new interface driver usbfs
[ 0.267959] usbcore: registered new interface driver hub
[ 0.267959] usbcore: registered new device driver usb
[ 0.267959] pps_core: LinuxPPS API ver. 1 registered
[ 0.267959] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.267959] PTP clock support registered
[ 0.267959] EDAC MC: Ver: 3.0.0
[ 0.268110] efivars: Registered efivars operations
[ 0.268110] NetLabel: Initializing
[ 0.268110] NetLabel: domain hash size = 128
[ 0.268110] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.268110] NetLabel: unlabeled traffic allowed by default
[ 0.268110] mctp: management component transport protocol core
[ 0.268110] NET: Registered PF_MCTP protocol family
[ 0.268110] PCI: Using ACPI for IRQ routing
[ 0.354022] PCI: pci_cache_line_size set to 64 bytes
[ 0.354569] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.354580] e820: reserve RAM buffer [mem 0x7bff6018-0x7bffffff]
[ 0.354581] e820: reserve RAM buffer [mem 0x7c005018-0x7fffffff]
[ 0.354582] e820: reserve RAM buffer [mem 0x86b6d000-0x87ffffff]
[ 0.354583] e820: reserve RAM buffer [mem 0x88b80000-0x8bffffff]
[ 0.354584] e820: reserve RAM buffer [mem 0x8a270000-0x8bffffff]
[ 0.354585] e820: reserve RAM buffer [mem 0x8dc0f000-0x8fffffff]
[ 0.354586] e820: reserve RAM buffer [mem 0x46e000000-0x46fffffff]
[ 0.354615] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.354615] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.354615] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.354615] vgaarb: loaded
[ 0.355617] clocksource: Switched to clocksource tsc-early
[ 0.356063] VFS: Disk quotas dquot_6.6.0
[ 0.356073] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.356127] pnp: PnP ACPI init
[ 0.356201] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[ 0.356990] system 00:01: [io 0x0a00-0x0a0f] has been reserved
[ 0.356992] system 00:01: [io 0x0a10-0x0a1f] has been reserved
[ 0.356994] system 00:01: [io 0x0a20-0x0a2f] has been reserved
[ 0.356995] system 00:01: [io 0x0a30-0x0a3f] has been reserved
[ 0.356996] system 00:01: [io 0x0a40-0x0a4f] has been reserved
[ 0.356997] system 00:01: [io 0x0a50-0x0a5f] has been reserved
[ 0.356999] system 00:01: [io 0x0a60-0x0a6f] has been reserved
[ 0.357000] system 00:01: [io 0x0a70-0x0a7f] has been reserved
[ 0.357001] system 00:01: [io 0x0a80-0x0a8f] has been reserved
[ 0.357002] system 00:01: [io 0x0a90-0x0b8e] has been reserved
[ 0.357004] system 00:01: [io 0x0aa0-0x0aaf] has been reserved
[ 0.357005] system 00:01: [io 0x0ab0-0x0abf] has been reserved
[ 0.357006] system 00:01: [io 0x0ac0-0x0acf] has been reserved
[ 0.357007] system 00:01: [io 0x0ad0-0x0adf] has been reserved
[ 0.357285] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.357285] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.357285] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.357285] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.357285] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.357285] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.357285] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.357285] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.357285] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.357285] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.357285] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.357285] system 00:05: [io 0x1800-0x18fe] could not be reserved
[ 0.357285] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.357285] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.357285] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.357285] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.357285] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.357285] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.357285] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.359202] pnp: PnP ACPI: found 8 devices
[ 0.364626] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.364680] NET: Registered PF_INET protocol family
[ 0.364810] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.367435] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.367459] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.367517] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.367716] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.367950] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.368015] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.368056] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.368093] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.368139] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.368144] NET: Registered PF_XDP protocol family
[ 0.368155] pci 0000:00:15.0: BAR 0: assigned [mem 0xa0919000-0xa0919fff 64bit]
[ 0.368427] pci 0000:00:15.1: BAR 0: assigned [mem 0xa091d000-0xa091dfff 64bit]
[ 0.368695] pci 0000:00:1e.0: BAR 0: assigned [mem 0xa091e000-0xa091efff 64bit]
[ 0.368963] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.368969] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.368973] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.368976] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.368980] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.368981] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.368985] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.368987] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.368991] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.368992] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.368994] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.368996] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.368999] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.369007] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.369014] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.369027] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.369029] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.369036] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.369049] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.369056] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.369070] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.369071] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.369073] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.369074] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.369075] pci_bus 0000:00: resource 8 [mem 0x90000000-0xdfffffff window]
[ 0.369076] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 0.369077] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.369079] pci_bus 0000:01: resource 1 [mem 0xa0300000-0xa05fffff]
[ 0.369080] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.369081] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.369082] pci_bus 0000:02: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.369083] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.369084] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.369085] pci_bus 0000:03: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.369087] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.369088] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
[ 0.369089] pci_bus 0000:04: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.369090] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[ 0.369091] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.369092] pci_bus 0000:06: resource 1 [mem 0xa0600000-0xa06fffff]
[ 0.369687] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.369751] PCI: CLS 64 bytes, default 64
[ 0.369813] DMAR: No ATSR found
[ 0.369814] DMAR: No SATC found
[ 0.369815] DMAR: dmar0: Using Queued invalidation
[ 0.369835] Trying to unpack rootfs image as initramfs...
[ 0.369848] pci 0000:00:00.0: Adding to iommu group 0
[ 0.369862] pci 0000:00:01.0: Adding to iommu group 1
[ 0.369870] pci 0000:00:08.0: Adding to iommu group 2
[ 0.369881] pci 0000:00:12.0: Adding to iommu group 3
[ 0.369899] pci 0000:00:14.0: Adding to iommu group 4
[ 0.369906] pci 0000:00:14.2: Adding to iommu group 4
[ 0.369913] pci 0000:00:14.5: Adding to iommu group 4
[ 0.369928] pci 0000:00:15.0: Adding to iommu group 5
[ 0.369935] pci 0000:00:15.1: Adding to iommu group 5
[ 0.369946] pci 0000:00:16.0: Adding to iommu group 6
[ 0.369954] pci 0000:00:17.0: Adding to iommu group 7
[ 0.369970] pci 0000:00:1c.0: Adding to iommu group 8
[ 0.369989] pci 0000:00:1c.7: Adding to iommu group 9
[ 0.370000] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.370011] pci 0000:00:1e.0: Adding to iommu group 11
[ 0.370033] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.370042] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.370051] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.370060] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.370063] pci 0000:01:00.0: Adding to iommu group 1
[ 0.370067] pci 0000:02:00.0: Adding to iommu group 1
[ 0.370072] pci 0000:03:00.0: Adding to iommu group 1
[ 0.370076] pci 0000:03:00.1: Adding to iommu group 1
[ 0.370090] pci 0000:04:00.0: Adding to iommu group 13
[ 0.370110] pci 0000:05:00.0: Adding to iommu group 14
[ 0.370120] pci 0000:06:00.0: Adding to iommu group 15
[ 0.370970] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.370972] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.370973] software IO TLB: mapped [mem 0x0000000082b6d000-0x0000000086b6d000] (64MB)
[ 0.371022] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.380002] Initialise system trusted keyrings
[ 0.380011] Key type blacklist registered
[ 0.380043] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[ 0.380052] zbud: loaded
[ 0.380169] integrity: Platform Keyring initialized
[ 0.380171] integrity: Machine keyring initialized
[ 0.386939] Key type asymmetric registered
[ 0.386941] Asymmetric key parser 'x509' registered
[ 0.386952] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 0.386981] io scheduler mq-deadline registered
[ 0.386982] io scheduler kyber registered
[ 0.386989] io scheduler bfq registered
[ 0.391303] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.391546] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[ 0.391614] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[ 0.391650] pcieport 0000:00:1c.0: DPC: enabled with IRQ 122
[ 0.391651] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.391936] pcieport 0000:00:1c.7: PME: Signaling with IRQ 123
[ 0.391985] pcieport 0000:00:1c.7: AER: enabled with IRQ 123
[ 0.392018] pcieport 0000:00:1c.7: DPC: enabled with IRQ 123
[ 0.392019] pcieport 0000:00:1c.7: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.392307] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.392358] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.392394] pcieport 0000:00:1d.0: DPC: enabled with IRQ 124
[ 0.392395] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.392763] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.393460] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.393479] ACPI: button: Sleep Button [SLPB]
[ 0.393502] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.393515] ACPI: button: Power Button [PWRB]
[ 0.393538] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.393608] ACPI: button: Power Button [PWRF]
[ 0.395031] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.395033] ACPI: thermal: Thermal Zone [HPTZ] (30 C)
[ 0.395344] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.395346] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.395497] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.397016] hpet_acpi_add: no address or irqs in _CRS
[ 0.397052] Non-volatile memory driver v1.3
[ 0.397053] Linux agpgart interface v0.103
[ 0.405273] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[ 0.405417] ACPI: bus type drm_connector registered
[ 0.406247] ahci 0000:00:17.0: version 3.0
[ 0.416577] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0x3c impl SATA mode
[ 0.416581] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.433343] Freeing initrd memory: 21220K
[ 0.446782] scsi host0: ahci
[ 0.447073] scsi host1: ahci
[ 0.447364] scsi host2: ahci
[ 0.447607] scsi host3: ahci
[ 0.447777] scsi host4: ahci
[ 0.447908] scsi host5: ahci
[ 0.447935] ata1: DUMMY
[ 0.447936] ata2: DUMMY
[ 0.447942] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126
[ 0.447945] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126
[ 0.447948] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126
[ 0.447950] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126
[ 0.448032] usbcore: registered new interface driver usbserial_generic
[ 0.448036] usbserial: USB Serial support registered for generic
[ 0.448170] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.449688] rtc_cmos rtc_cmos: registered as rtc0
[ 0.449999] rtc_cmos rtc_cmos: setting system clock to 2025-01-05T18:19:42 UTC (1736101182)
[ 0.450029] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.450311] intel_pstate: Intel P-state driver initializing
[ 0.450929] intel_pstate: Disabling energy efficiency optimization
[ 0.450930] intel_pstate: HWP enabled
[ 0.450967] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.451278] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[ 0.464123] Console: switching to colour frame buffer device 240x67
[ 0.476107] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.476168] hid: raw HID events driver (C) Jiri Kosina
[ 0.476236] intel_pmc_core INT33A1:00: initialized
[ 0.476339] drop_monitor: Initializing network drop monitor service
[ 0.484640] Initializing XFRM netlink socket
[ 0.484659] NET: Registered PF_INET6 protocol family
[ 0.488751] Segment Routing with IPv6
[ 0.488753] RPL Segment Routing with IPv6
[ 0.488758] In-situ OAM (IOAM) with IPv6
[ 0.488771] NET: Registered PF_PACKET protocol family
[ 0.489629] microcode: Microcode Update Driver: v2.2.
[ 0.489633] IPI shorthand broadcast: enabled
[ 0.490634] sched_clock: Marking stable (476930366, 12697790)->(516771613, -27143457)
[ 0.490839] registered taskstats version 1
[ 0.491363] Loading compiled-in X.509 certificates
[ 0.493288] Loaded X.509 cert 'Build time autogenerated kernel key: 09b01e69463dc50f5cc1620405d3dd01b91cbd74'
[ 0.494583] zswap: loaded using pool zstd/zsmalloc
[ 0.495690] Key type .fscrypt registered
[ 0.495691] Key type fscrypt-provisioning registered
[ 0.496901] integrity: Loading X.509 certificate: UEFI:db
[ 0.496919] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.496919] integrity: Loading X.509 certificate: UEFI:db
[ 0.496930] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.496930] integrity: Loading X.509 certificate: UEFI:db
[ 0.496939] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.498593] PM: Magic number: 9:524:341
[ 0.501149] RAS: Correctable Errors collector initialized.
[ 0.501180] clk: Disabling unused clocks
[ 0.756553] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.759958] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.760021] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.760084] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.762876] ata5.00: LPM support broken, forcing max_power
[ 0.763000] ata5.00: supports DRM functions and may not be fully accessible
[ 0.763007] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 0.763242] ata5.00: NCQ Send/Recv Log not supported
[ 0.763248] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.765038] ata5.00: Features: Trust Dev-Sleep
[ 0.765349] ata5.00: LPM support broken, forcing max_power
[ 0.765471] ata5.00: supports DRM functions and may not be fully accessible
[ 0.765714] ata5.00: NCQ Send/Recv Log not supported
[ 0.766391] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 0.766999] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.767029] ata5.00: configured for UDMA/133
[ 0.773655] ata3.00: configured for UDMA/133
[ 0.773936] scsi 2:0:0:0: Direct-Access ATA WDC WD20EARX-00P AB51 PQ: 0 ANSI: 5
[ 0.774562] sd 2:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 0.774570] sd 2:0:0:0: [sda] 4096-byte physical blocks
[ 0.774649] sd 2:0:0:0: [sda] Write Protect is off
[ 0.774656] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.774807] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.775006] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.777257] ahci 0000:00:17.0: port does not support device sleep
[ 0.777576] scsi 4:0:0:0: Direct-Access ATA SAMSUNG MZ7TD256 4L6Q PQ: 0 ANSI: 5
[ 0.778949] sd 4:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 0.779015] sd 4:0:0:0: [sdb] Write Protect is off
[ 0.779023] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.779121] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.779241] sd 4:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 0.784057] sdb: sdb1 sdb2 sdb3 sdb4
[ 0.784922] sd 4:0:0:0: [sdb] supports TCG Opal
[ 0.784930] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 1.209915] sda: sda1
[ 1.210200] sd 2:0:0:0: [sda] Attached SCSI disk
[ 1.213786] Freeing unused decrypted memory: 2028K
[ 1.214867] Freeing unused kernel image (initmem) memory: 3444K
[ 1.214872] Write protecting the kernel read-only data: 32768k
[ 1.215816] Freeing unused kernel image (rodata/data gap) memory: 1236K
[ 1.224371] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.224373] rodata_test: all tests were successful
[ 1.224376] Run /init as init process
[ 1.224377] with arguments:
[ 1.224378] /init
[ 1.224378] with environment:
[ 1.224379] HOME=/
[ 1.224379] TERM=linux
[ 1.386084] tsc: Refined TSC clocksource calibration: 2999.999 MHz
[ 1.386088] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e44b2357, max_idle_ns: 440795324996 ns
[ 1.386162] clocksource: Switched to clocksource tsc
[ 1.426213] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.426218] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.427333] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 1.427522] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.427524] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.427526] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.427554] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.427556] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.427557] usb usb1: Product: xHCI Host Controller
[ 1.427558] usb usb1: Manufacturer: Linux 6.6.69-1-lts xhci-hcd
[ 1.427559] usb usb1: SerialNumber: 0000:00:14.0
[ 1.427655] hub 1-0:1.0: USB hub found
[ 1.427673] hub 1-0:1.0: 16 ports detected
[ 1.429179] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[ 1.429181] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.429182] usb usb2: Product: xHCI Host Controller
[ 1.429183] usb usb2: Manufacturer: Linux 6.6.69-1-lts xhci-hcd
[ 1.429184] usb usb2: SerialNumber: 0000:00:14.0
[ 1.429237] hub 2-0:1.0: USB hub found
[ 1.429252] hub 2-0:1.0: 8 ports detected
[ 1.429842] usb: port power management may be unreliable
[ 1.431985] sdhci: Secure Digital Host Controller Interface driver
[ 1.431986] sdhci: Copyright(c) Pierre Ossman
[ 1.437965] nvme nvme0: pci function 0000:06:00.0
[ 1.438740] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.438753] sdhci-pci 0000:00:14.5: enabling device (0100 -> 0102)
[ 1.439493] mmc0: SDHCI controller on PCI [0000:00:14.5] using ADMA 64-bit
[ 1.447330] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.450729] nvme0n1: p1 p2
[ 1.676150] usb 1-8: new high-speed USB device number 2 using xhci_hcd
[ 1.816593] usb 1-8: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00
[ 1.816605] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.818199] hub 1-8:1.0: USB hub found
[ 1.818451] hub 1-8:1.0: 4 ports detected
[ 1.865254] EXT4-fs (nvme0n1p1): mounted filesystem 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w with ordered data mode. Quota mode: none.
[ 1.942802] usb 1-14: new full-speed USB device number 3 using xhci_hcd
[ 2.055208] systemd[1]: systemd 257.1-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 2.055219] systemd[1]: Detected architecture x86-64.
[ 2.058249] systemd[1]: Hostname set to <Ale-Arch>.
[ 2.084317] usb 1-14: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
[ 2.084330] usb 1-14: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.084336] usb 1-14: Product: Bluetooth Radio
[ 2.084340] usb 1-14: Manufacturer: Realtek
[ 2.084343] usb 1-14: SerialNumber: 00e04c000001
[ 2.121594] systemd[1]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
[ 2.172801] usb 1-8.3: new low-speed USB device number 4 using xhci_hcd
[ 2.285588] usb 1-8.3: New USB device found, idVendor=05d5, idProduct=0615, bcdDevice= 1.01
[ 2.285595] usb 1-8.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.285598] usb 1-8.3: Product: KEYBOARD
[ 2.619654] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 2.873124] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.873129] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.873207] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.876609] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.880727] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.880732] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.880735] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.880786] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.880821] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.882895] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.882899] systemd-fstab-generator[303]: Mount point is not a valid path, ignoring.
[ 2.892582] zram: Added device: zram0
[ 3.143396] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 3.252867] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.300450] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 3.303768] systemd[1]: Created slice Slice /system/backrest.
[ 3.305131] systemd[1]: Created slice CUPS Slice.
[ 3.306523] systemd[1]: Created slice Slice /system/dirmngr.
[ 3.307872] systemd[1]: Created slice Slice /system/getty.
[ 3.309292] systemd[1]: Created slice Slice /system/gpg-agent.
[ 3.310666] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 3.312013] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 3.313391] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 3.314768] systemd[1]: Created slice Slice /system/keyboxd.
[ 3.316164] systemd[1]: Created slice Slice /system/modprobe.
[ 3.317567] systemd[1]: Created slice Slice /system/nut-driver.
[ 3.318927] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 3.320328] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 3.321203] systemd[1]: Created slice User and Session Slice.
[ 3.321412] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.321894] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.321993] systemd[1]: Expecting device /dev/disk/by-uuid/0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee...
[ 3.322046] systemd[1]: Expecting device /dev/disk/by-uuid/CAB7-E233...
[ 3.322089] systemd[1]: Expecting device /dev/zram0...
[ 3.322328] systemd[1]: Reached target Login Prompts.
[ 3.322412] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 3.322623] systemd[1]: Reached target Remote File Systems.
[ 3.322753] systemd[1]: Reached target Slice Units.
[ 3.322853] systemd[1]: Reached target System Time Set.
[ 3.323165] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.323501] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 3.323855] systemd[1]: Listening on LVM2 poll daemon socket.
[ 3.331746] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 3.331832] systemd[1]: Reached target RPC Port Mapper.
[ 3.337338] systemd[1]: Listening on Process Core Dump Socket.
[ 3.338346] systemd[1]: Listening on Credential Encryption/Decryption.
[ 3.338489] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.338636] systemd[1]: Listening on Journal Sockets.
[ 3.338820] systemd[1]: Listening on Network Service Netlink Socket.
[ 3.340168] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 3.341239] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.341259] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.341353] systemd[1]: Listening on udev Control Socket.
[ 3.342384] systemd[1]: Listening on udev Kernel Socket.
[ 3.344704] systemd[1]: Mounting Huge Pages File System...
[ 3.345267] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.346054] systemd[1]: Mounting NFSD configuration filesystem...
[ 3.347040] systemd[1]: Mounting Kernel Debug File System...
[ 3.347854] systemd[1]: Mounting Kernel Trace File System...
[ 3.348272] systemd[1]: Load AppArmor profiles was skipped because of an unmet condition check (ConditionSecurity=apparmor).
[ 3.348310] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 3.349129] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.350248] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 3.351956] systemd[1]: Starting Load Kernel Module configfs...
[ 3.352957] systemd[1]: Starting Load Kernel Module dm_mod...
[ 3.353885] systemd[1]: Starting Load Kernel Module drm...
[ 3.354998] systemd[1]: Starting Load Kernel Module fuse...
[ 3.355992] systemd[1]: Starting Load Kernel Module loop...
[ 3.356869] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 3.356907] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 3.358262] systemd[1]: Starting Journal Service...
[ 3.359589] systemd[1]: Starting Load Kernel Modules...
[ 3.360806] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
[ 3.360833] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.362258] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.363275] loop: module loaded
[ 3.363372] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.364185] systemd[1]: Starting Load udev Rules from Credentials...
[ 3.365244] systemd[1]: Starting Coldplug All udev Devices...
[ 3.366253] systemd[1]: Starting Virtual Console Setup...
[ 3.367969] systemd[1]: Mounted Huge Pages File System.
[ 3.368071] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.368141] systemd[1]: Mounted Kernel Debug File System.
[ 3.368206] systemd[1]: Mounted Kernel Trace File System.
[ 3.388928] fuse: init (API version 7.39)
[ 3.389606] EXT4-fs (nvme0n1p1): re-mounted 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w. Quota mode: none.
[ 3.389651] device-mapper: uevent: version 1.0.3
[ 3.389694] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 3.393092] RPC: Registered named UNIX socket transport module.
[ 3.393093] RPC: Registered udp transport module.
[ 3.393094] RPC: Registered tcp transport module.
[ 3.393094] RPC: Registered tcp-with-tls transport module.
[ 3.393095] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.393344] vhba: loading out-of-tree module taints kernel.
[ 3.393346] vhba: module verification failed: signature and/or required key missing - tainting kernel
[ 3.393927] scsi host6: vhba
[ 3.397417] systemd-journald[343]: Collecting audit messages is disabled.
[ 3.400230] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.400296] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 3.403097] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.403778] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.405137] i2c_dev: i2c /dev entries driver
[ 3.446256] systemd[1]: Finished Load Kernel Module configfs.
[ 3.446422] systemd[1]: Started Journal Service.
[ 3.777779] systemd-journald[343]: Received client request to flush runtime journal.
[ 4.266953] zram0: detected capacity change from 0 to 32497664
[ 4.305579] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 4.305582] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 4.305582] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[ 4.305583] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[ 4.325195] intel_pch_thermal 0000:00:12.0: enabling device (0100 -> 0102)
[ 4.325377] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 4.325522] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 4.325628] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 4.327923] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 4.327925] cfg80211: failed to load regulatory.db
[ 4.332677] raid6: skipped pq benchmark and selected avx2x4
[ 4.332681] raid6: using avx2x2 recovery algorithm
[ 4.333077] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 4.334912] EDAC ie31200: No ECC support
[ 4.335671] xor: automatically using best checksumming function avx
[ 4.335722] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 4.339551] EDAC ie31200: No ECC support
[ 4.347236] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 4.354154] intel-lpss 0000:00:15.1: enabling device (0100 -> 0102)
[ 4.364808] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 4.375117] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 4.375151] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 4.377850] intel-lpss 0000:00:1e.0: enabling device (0100 -> 0102)
[ 4.378122] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 4.378696] i2c i2c-2: 2/2 memory slots populated (from DMI)
[ 4.379576] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 4.380755] input: PC Speaker as /devices/platform/pcspkr/input/input3
[ 4.409868] spi-nor spi0.0: XM25QH128A (16384 Kbytes)
[ 4.414100] Creating 1 MTD partitions on "0000:00:1f.5":
[ 4.414103] 0x000000000000-0x000001000000 : "BIOS"
[ 4.532653] Adding 16248828k swap on /dev/zram0. Priority:100 extents:1 across:16248828k SSDsc
[ 4.534087] dw-apb-uart.2: ttyS4 at MMIO 0xa091e000 (irq = 20, base_baud = 7500000) is a 16550A
[ 4.534747] iTCO_vendor_support: vendor-support=0
[ 4.535223] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 4.540462] Btrfs loaded, zoned=yes, fsverity=yes
[ 4.541501] BTRFS: device label DATA devid 1 transid 20281 /dev/sda1 scanned by (udev-worker) (417)
[ 4.542609] input: KEYBOARD as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.0/0003:05D5:0615.0001/input/input4
[ 4.544364] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 4.549263] input: HP WMI hotkeys as /devices/virtual/input/input5
[ 4.551340] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 4.551343] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 4.551343] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 4.551344] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 4.558199] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 9c:7b:ef:30:a7:6b, XID 541, IRQ 139
[ 4.558204] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 4.568623] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 4.569153] Bluetooth: Core ver 2.22
[ 4.569165] NET: Registered PF_BLUETOOTH protocol family
[ 4.569166] Bluetooth: HCI device and connection manager initialized
[ 4.569167] Bluetooth: HCI socket layer initialized
[ 4.569169] Bluetooth: L2CAP socket layer initialized
[ 4.569171] Bluetooth: SCO socket layer initialized
[ 4.569340] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 4.570779] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 4.571343] cryptd: max_cpu_qlen set to 1000
[ 4.571644] rtw_8821ce 0000:05:00.0: enabling device (0100 -> 0103)
[ 4.576054] rtw_8821ce 0000:05:00.0: Firmware version 24.11.0, H2C version 12
[ 4.579343] AVX2 version of gcm_enc/dec engaged.
[ 4.579538] AES CTR mode by8 optimization enabled
[ 4.591275] usbcore: registered new interface driver btusb
[ 4.593401] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 4.593911] snd_hda_intel 0000:03:00.1: enabling device (0100 -> 0102)
[ 4.594019] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 4.594501] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[ 4.595441] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 4.595444] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[ 4.596316] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[ 4.596462] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[ 4.602458] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input6
[ 5.064530] Bluetooth: hci0: RTL: fw version 0x75b8f098
[ 6.311359] BTRFS info (device sda1): first mount of filesystem 0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee
[ 6.311365] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 6.311370] BTRFS info (device sda1): enabling auto defrag
[ 6.311372] BTRFS info (device sda1): use zstd compression, level 3
[ 6.311373] BTRFS info (device sda1): using free space tree
[ 6.316189] hid-generic 0003:05D5:0615.0001: input,hidraw0: USB HID v1.10 Keyboard [KEYBOARD] on usb-0000:00:14.0-8.3/input0
[ 6.316231] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input7
[ 6.316263] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input8
[ 6.316286] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input9
[ 6.316307] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input10
[ 6.319723] [drm] amdgpu kernel modesetting enabled.
[ 6.319829] amdgpu: Virtual CRAT table created for CPU
[ 6.319837] amdgpu: Topology: Add CPU node
[ 6.319949] amdgpu 0000:03:00.0: enabling device (0106 -> 0107)
[ 6.320018] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1043:0x05D5 0xC7).
[ 6.320028] [drm] register mmio base: 0xA0300000
[ 6.320029] [drm] register mmio size: 1048576
[ 6.322594] [drm] add ip block number 0 <nv_common>
[ 6.322596] [drm] add ip block number 1 <gmc_v10_0>
[ 6.322597] [drm] add ip block number 2 <navi10_ih>
[ 6.322597] [drm] add ip block number 3 <psp>
[ 6.322598] [drm] add ip block number 4 <smu>
[ 6.322600] [drm] add ip block number 5 <dm>
[ 6.322600] [drm] add ip block number 6 <gfx_v10_0>
[ 6.322601] [drm] add ip block number 7 <sdma_v5_2>
[ 6.322602] [drm] add ip block number 8 <vcn_v3_0>
[ 6.322603] [drm] add ip block number 9 <jpeg_v3_0>
[ 6.322628] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 6.322630] amdgpu: ATOM BIOS: 115-D534P00-100
[ 6.324297] input: KEYBOARD Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.1/0003:05D5:0615.0002/input/input11
[ 6.325169] rtw_8821ce 0000:05:00.0 wlp5s0: renamed from wlan0
[ 6.330966] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 6.330970] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 6.330971] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 6.330972] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 6.330973] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 6.330973] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 6.330974] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 6.330975] snd_hda_codec_realtek hdaudioC0D0: Line=0x1b
[ 6.335504] intel_tcc_cooling: Programmable TCC Offset detected
[ 6.339502] [drm] VCN(0) decode is enabled in VM mode
[ 6.339504] [drm] VCN(0) encode is enabled in VM mode
[ 6.343800] [drm] JPEG decode is enabled in VM mode
[ 6.344210] intel_rapl_common: Found RAPL domain package
[ 6.344212] intel_rapl_common: Found RAPL domain core
[ 6.344213] intel_rapl_common: Found RAPL domain dram
[ 6.347685] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 6.362931] Console: switching to colour dummy device 80x25
[ 6.379558] input: KEYBOARD System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.1/0003:05D5:0615.0002/input/input12
[ 6.379806] hid-generic 0003:05D5:0615.0002: input,hidraw1: USB HID v1.10 Device [KEYBOARD] on usb-0000:00:14.0-8.3/input1
[ 6.379846] usbcore: registered new interface driver usbhid
[ 6.379847] usbhid: USB HID core driver
[ 6.379886] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 6.379971] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 6.380029] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 6.380091] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 6.387308] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 6.387312] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 6.387338] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 6.387344] amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 6.387346] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 6.387347] amdgpu 0000:03:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF
[ 6.387358] [drm] Detected VRAM RAM=8176M, BAR=256M
[ 6.387359] [drm] RAM width 128bits GDDR6
[ 6.387532] [drm] amdgpu: 8176M of VRAM memory ready
[ 6.387534] [drm] amdgpu: 7934M of GTT memory ready.
[ 6.387579] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 6.387745] [drm] PCIE GART of 512M enabled (table at 0x0000008002000000).
[ 7.865772] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 7.865949] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 7.871913] [drm] use_doorbell being set to: [true]
[ 7.871963] [drm] use_doorbell being set to: [true]
[ 7.871986] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 3
[ 7.872007] amdgpu 0000:03:00.0: amdgpu: Will use PSP to load VCN firmware
[ 7.940211] [drm] reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 8.043792] amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 8.060805] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8.060829] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
[ 8.060836] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 8.060891] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 8.107443] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 8.107663] [drm] Display Core v3.2.247 initialized on DCN 3.0.2
[ 8.107665] [drm] DP-HDMI FRL PCON supported
[ 8.108908] [drm] DMUB hardware initialized: version=0x02020020
[ 8.110994] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 8.572078] [drm] kiq ring mec 2 pipe 1 q 0
[ 8.576637] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[ 8.577007] [drm] JPEG decode initialized successfully.
[ 8.623995] amdgpu: HMM registered 8176MB device memory
[ 8.625359] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 8.625368] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 8.625589] amdgpu: Virtual CRAT table created for GPU
[ 8.625702] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 8.625704] kfd kfd: amdgpu: added device 1002:73ff
[ 8.625719] amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 8.625874] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 8.625875] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 8.625876] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 8.625877] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 8.625877] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 8.625878] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 8.625879] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 8.625879] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 8.625880] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 8.625881] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
[ 8.625882] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
[ 8.625883] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0
[ 8.625883] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 8.625884] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 8.625885] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 8.625885] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
[ 8.627287] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 8.628010] [drm] Initialized amdgpu 3.54.0 20150101 for 0000:03:00.0 on minor 1
[ 8.638026] fbcon: amdgpudrmfb (fb0) is primary device
[ 8.638332] [drm] DSC precompute is not needed.
[ 8.931126] Console: switching to colour frame buffer device 240x67
[ 8.965571] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 10.152334] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 10.152337] Bluetooth: BNEP filters: protocol multicast
[ 10.152339] Bluetooth: BNEP socket layer initialized
[ 10.155693] Bluetooth: MGMT ver 1.22
[ 10.161820] NET: Registered PF_ALG protocol family
[ 10.379464] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[ 10.440040] block nvme0n1: No UUID available providing old NGUID
[ 10.552994] r8169 0000:04:00.0 enp4s0: Link is Down
[ 11.354501] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 11.501975] u32 classifier
[ 11.501976] Performance counters on
[ 11.501977] input device check on
[ 11.501977] Actions configured
[ 13.743895] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 13.745217] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 16.188807] RPC: Registered rdma transport module.
[ 16.188809] RPC: Registered rdma backchannel transport module.
[ 16.302134] NFSD: Using nfsdcld client tracking operations.
[ 16.302136] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 16.699769] warning: `pmdalinux' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 81.230713] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 81.235708] ata4.00: ATAPI: HL-DT-ST BD-RE BU40N, 1.03, max UDMA/133
[ 81.240789] ata4.00: configured for UDMA/133
[ 81.248585] scsi 3:0:0:0: CD-ROM HL-DT-ST BD-RE BU40N 1.03 PQ: 0 ANSI: 5
[ 81.302830] scsi 3:0:0:0: Attached scsi generic sg2 type 5
[ 81.382131] sr 3:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 81.382134] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 81.446836] sr 3:0:0:0: Attached scsi CD-ROM sr0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-10 9:42 ` Christian Heusel
@ 2025-01-10 9:50 ` Damien Le Moal
0 siblings, 0 replies; 13+ messages in thread
From: Damien Le Moal @ 2025-01-10 9:50 UTC (permalink / raw)
To: Christian Heusel
Cc: Mario Limonciello, Niklas Cassel, Mika Westerberg, linux-ide,
linux-kernel, regressions
On 2025/01/10 18:42, Christian Heusel wrote:
> On 25/01/10 06:24PM, Damien Le Moal wrote:
>> On 2025/01/10 18:04, Christian Heusel wrote:
>>> Hello everyone,
>>>
>>> we have recently received a report by a user in the Arch Linux Forums
>>> user that their Blue Ray player, a HL-DT-ST BD-RE BU40N stopped working
>>> somewhere since kernel version v6.8.0. We have then bisected the issue
>>> together with them within the mainline kernel sources to the following
>>> commit that changes the default power policy:
>>>
>>> 7627a0edef54 ("ata: ahci: Drop low power policy board type")
>>>
>>> The user reports that adding "ahci.mobile_lpm_policy=1" as a kernel
>>> parameter fixes the issue for them.
>>>
>>> Additionally fellow forum user @loqs came up with a quirk patch, that
>>> sadly was reported to not work:
>>>
>>> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
>>> index c085dd8..ef01ccd 100644
>>> --- a/drivers/ata/libata-core.c
>>> +++ b/drivers/ata/libata-core.c
>>> @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
>>> { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
>>> { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
>>>
>>> + /* Hitachi-LG Data Storage models with LPM issues */
>>> + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
>>
>> Looks like "BU40N" may be the FW rev ? If we can get a dmesg ourput of the
>> failing case, we should be able to sort out this. Likely it is a bad string
>> reference here.
>
> I have attached the dmesg outputs, here is the relevant output:
>
> [ 81.230713] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
> [ 81.235708] ata4.00: ATAPI: HL-DT-ST BD-RE BU40N, 1.03, max UDMA/133
> [ 81.240789] ata4.00: configured for UDMA/133
> [ 81.248585] scsi 3:0:0:0: CD-ROM HL-DT-ST BD-RE BU40N 1.03 PQ: 0 ANSI: 5
> [ 81.302830] scsi 3:0:0:0: Attached scsi generic sg2 type 5
> [ 81.382131] sr 3:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Is this with the latest kernel 6.13-rc6 ?
>
> Aswell as the output for "hdparm -i /dev/sr0":
>
> /dev/sr0:
>
> Model=HL-DT-ST BD-RE BU40N, FwRev=1.03, SerialNo=
Odd... The device model string is correct in the patch, so it should work.
May be something is not being done correctly for ATAPI. Let me check.
> Config={ Fixed Removable DTR<=5Mbs DTR>10Mbs nonMagnetic }
> RawCHS=0/0/0, TrkSize=0, SectSize=0, ECCbytes=0
> BuffType=unknown, BuffSize=unknown, MaxMultSect=0
> CurCHS=0/0/0, CurSects=0, LBA=yes, LBAsects=0
> IORDY=on/off, tPIO={min:120,w/IORDY:120}, tDMA={min:120,rec:120}
> PIO modes: pio0 pio1 pio2 pio3 pio4
> DMA modes: mdma0 mdma1 mdma2
> UDMA modes: udma0 udma1 udma2 udma3 udma4 *udma5 udma6
> AdvancedPM=no
> Drive conforms to: unknown: ATA/ATAPI-3,4,5,6,7
>
> * signifies the current active mode
>
> Cheers,
> Chris
--
Damien Le Moal
Western Digital Research
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-10 9:04 [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54 Christian Heusel
2025-01-10 9:24 ` Damien Le Moal
@ 2025-01-10 11:24 ` Niklas Cassel
2025-01-10 16:21 ` Christian Heusel
1 sibling, 1 reply; 13+ messages in thread
From: Niklas Cassel @ 2025-01-10 11:24 UTC (permalink / raw)
To: Christian Heusel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
On Fri, Jan 10, 2025 at 10:04:46AM +0100, Christian Heusel wrote:
> Hello everyone,
>
> we have recently received a report by a user in the Arch Linux Forums
> user that their Blue Ray player, a HL-DT-ST BD-RE BU40N stopped working
> somewhere since kernel version v6.8.0. We have then bisected the issue
> together with them within the mainline kernel sources to the following
> commit that changes the default power policy:
>
> 7627a0edef54 ("ata: ahci: Drop low power policy board type")
>
> The user reports that adding "ahci.mobile_lpm_policy=1" as a kernel
> parameter fixes the issue for them.
>
> Additionally fellow forum user @loqs came up with a quirk patch, that
> sadly was reported to not work:
>
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index c085dd8..ef01ccd 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
> { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
> { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
>
> + /* Hitachi-LG Data Storage models with LPM issues */
> + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
> +
> /* devices that don't properly handle queued TRIM commands */
> { "Micron_M500IT_*", "MU01", ATA_QUIRK_NO_NCQ_TRIM |
> ATA_QUIRK_ZERO_AFTER_TRIM },
>
> So if anyone has feedback on why the patch does not work or any
> alternative ideas for a solution that would be highly appreciated!
It would be nice if you could share a dmesg.
If you have applied the quirk properly, I would expect to see something
similar to:
[ 2.989363] ata2.00: Model 'QEMU DVD-ROM', rev '2.5+', applying quirks: nolpm
Kind regards,
Niklas
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-10 11:24 ` Niklas Cassel
@ 2025-01-10 16:21 ` Christian Heusel
2025-01-11 16:41 ` Christian Heusel
0 siblings, 1 reply; 13+ messages in thread
From: Christian Heusel @ 2025-01-10 16:21 UTC (permalink / raw)
To: Niklas Cassel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
[-- Attachment #1.1: Type: text/plain, Size: 2009 bytes --]
On 25/01/10 12:24PM, Niklas Cassel wrote:
> On Fri, Jan 10, 2025 at 10:04:46AM +0100, Christian Heusel wrote:
>
> > diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> > index c085dd8..ef01ccd 100644
> > --- a/drivers/ata/libata-core.c
> > +++ b/drivers/ata/libata-core.c
> > @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
> > { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
> > { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
> >
> > + /* Hitachi-LG Data Storage models with LPM issues */
> > + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
> > +
> > /* devices that don't properly handle queued TRIM commands */
> > { "Micron_M500IT_*", "MU01", ATA_QUIRK_NO_NCQ_TRIM |
> > ATA_QUIRK_ZERO_AFTER_TRIM },
> >
> > So if anyone has feedback on why the patch does not work or any
> > alternative ideas for a solution that would be highly appreciated!
>
> It would be nice if you could share a dmesg.
See the attached dmesg, this is from the v6.13-rc6 kernel with the above
patch applied.
> If you have applied the quirk properly, I would expect to see something
> similar to:
>
> [ 2.989363] ata2.00: Model 'QEMU DVD-ROM', rev '2.5+', applying quirks: nolpm
Somehow the quirk does not apply to the model, i.e. the above line is
not to be found in the dmesg output. This is now the third time that a
kernel with this patch applied was built by two different people,
therefore I'd rule out build issues. Also I can find the following
output in my build log, which should give us a lot of confidence that
the patch was actually applied to the source:
> Applying patch add-quirk-for-blueray.patch...
> patching file drivers/ata/libata-core.c
Now the question is why the quirk does not work in the final result and
I don't know why that could be.
> Kind regards,
> Niklas
Thanks for all your inputs and quick responses!
Cheers,
Christian
[-- Attachment #1.2: dmesg-6.13-rc6-mainline.log --]
[-- Type: text/plain, Size: 91661 bytes --]
[ 0.000000] Linux version 6.13.0-rc6-1.1-mainline-dirty (linux-mainline@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.1) #1 SMP PREEMPT_DYNAMIC Fri, 10 Jan 2025 10:00:38 +0000
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008a26ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x7bf1d018-0x7bf3b457] usable ==> usable
[ 0.000000] e820: update [mem 0x7bf0e018-0x7bf1c057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007bf0e017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf0e018-0x000000007bf1c057] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1c058-0x000000007bf1d017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1d018-0x000000007bf3b457] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf3b458-0x000000008a26ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x8a6be000 ACPI=0x8a6be000 TPMFinalLog=0x8ab1e000 SMBIOS=0x8d9a5000 SMBIOS 3.0=0x8d9a4000 MEMATTR=0x86e08098 ESRT=0x88b80398 RNG=0x8a6bdf18 INITRD=0x80e3f298 TPMEventLog=0x8a6b4018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem46: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem47: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem49: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem51: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 3000.000 MHz processor
[ 0.000848] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000851] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000860] last_pfn = 0x46e000 max_arch_pfn = 0x400000000
[ 0.000864] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000866] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001141] last_pfn = 0x8dc0f max_arch_pfn = 0x400000000
[ 0.008574] esrt: Reserving ESRT space from 0x0000000088b80398 to 0x0000000088b80420.
[ 0.008579] e820: update [mem 0x88b80000-0x88b80fff] usable ==> reserved
[ 0.008595] Using GB pages for direct mapping
[ 0.009178] Secure boot disabled
[ 0.009179] RAMDISK: [mem 0x7bf3c000-0x7d3fffff]
[ 0.009199] ACPI: Early table checksum verification disabled
[ 0.009201] ACPI: RSDP 0x000000008A6BE000 000024 (v02 HPQOEM)
[ 0.009205] ACPI: XSDT 0x000000008A6BE0C0 0000FC (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009210] ACPI: FACP 0x000000008A704DC8 000114 (v06 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009215] ACPI: DSDT 0x000000008A6BE248 046B7A (v02 HPQOEM SLIC-CPC 01072009 INTL 20160527)
[ 0.009218] ACPI: FACS 0x000000008AB93080 000040
[ 0.009220] ACPI: APIC 0x000000008A704EE0 0000BC (v04 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009223] ACPI: FPDT 0x000000008A704FA0 000044 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009225] ACPI: FIDT 0x000000008A704FE8 00009C (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009228] ACPI: MCFG 0x000000008A705088 00003C (v01 HPQOEM SLIC-CPC 01072009 MSFT 00000097)
[ 0.009231] ACPI: SSDT 0x000000008A7050C8 001B5F (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009234] ACPI: MSDM 0x000000008A706C28 000055 (v03 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009236] ACPI: SSDT 0x000000008A706C80 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009239] ACPI: SSDT 0x000000008A706CE0 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009242] ACPI: SSDT 0x000000008A706D40 0031C6 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009244] ACPI: SSDT 0x000000008A709F08 00241B (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009247] ACPI: HPET 0x000000008A70C328 000038 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009249] ACPI: SSDT 0x000000008A70C360 001D39 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009252] ACPI: SSDT 0x000000008A70E0A0 000FAE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009255] ACPI: SSDT 0x000000008A70F050 000BDF (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009257] ACPI: UEFI 0x000000008A70FC30 000042 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009260] ACPI: LPIT 0x000000008A70FC78 000094 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009262] ACPI: SSDT 0x000000008A70FD10 0027DE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009265] ACPI: SSDT 0x000000008A7124F0 0014E2 (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009268] ACPI: DBGP 0x000000008A7139D8 000034 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009270] ACPI: DBG2 0x000000008A713A10 000054 (v00 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009273] ACPI: SSDT 0x000000008A713A68 001B67 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009275] ACPI: DMAR 0x000000008A7155D0 000070 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009278] ACPI: VFCT 0x000000008A715640 00B284 (v01 HPQOEM SLIC-CPC 00000001 AMD 31504F47)
[ 0.009281] ACPI: BGRT 0x000000008A7208C8 000038 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009283] ACPI: TPM2 0x000000008A720900 000034 (v04 HPQOEM SLIC-CPC 00000001 AMI 00000000)
[ 0.009286] ACPI: WSMT 0x000000008A720938 000028 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009288] ACPI: Reserving FACP table memory at [mem 0x8a704dc8-0x8a704edb]
[ 0.009289] ACPI: Reserving DSDT table memory at [mem 0x8a6be248-0x8a704dc1]
[ 0.009290] ACPI: Reserving FACS table memory at [mem 0x8ab93080-0x8ab930bf]
[ 0.009291] ACPI: Reserving APIC table memory at [mem 0x8a704ee0-0x8a704f9b]
[ 0.009292] ACPI: Reserving FPDT table memory at [mem 0x8a704fa0-0x8a704fe3]
[ 0.009293] ACPI: Reserving FIDT table memory at [mem 0x8a704fe8-0x8a705083]
[ 0.009293] ACPI: Reserving MCFG table memory at [mem 0x8a705088-0x8a7050c3]
[ 0.009294] ACPI: Reserving SSDT table memory at [mem 0x8a7050c8-0x8a706c26]
[ 0.009295] ACPI: Reserving MSDM table memory at [mem 0x8a706c28-0x8a706c7c]
[ 0.009296] ACPI: Reserving SSDT table memory at [mem 0x8a706c80-0x8a706cdf]
[ 0.009296] ACPI: Reserving SSDT table memory at [mem 0x8a706ce0-0x8a706d3f]
[ 0.009297] ACPI: Reserving SSDT table memory at [mem 0x8a706d40-0x8a709f05]
[ 0.009298] ACPI: Reserving SSDT table memory at [mem 0x8a709f08-0x8a70c322]
[ 0.009299] ACPI: Reserving HPET table memory at [mem 0x8a70c328-0x8a70c35f]
[ 0.009300] ACPI: Reserving SSDT table memory at [mem 0x8a70c360-0x8a70e098]
[ 0.009300] ACPI: Reserving SSDT table memory at [mem 0x8a70e0a0-0x8a70f04d]
[ 0.009301] ACPI: Reserving SSDT table memory at [mem 0x8a70f050-0x8a70fc2e]
[ 0.009302] ACPI: Reserving UEFI table memory at [mem 0x8a70fc30-0x8a70fc71]
[ 0.009303] ACPI: Reserving LPIT table memory at [mem 0x8a70fc78-0x8a70fd0b]
[ 0.009303] ACPI: Reserving SSDT table memory at [mem 0x8a70fd10-0x8a7124ed]
[ 0.009304] ACPI: Reserving SSDT table memory at [mem 0x8a7124f0-0x8a7139d1]
[ 0.009305] ACPI: Reserving DBGP table memory at [mem 0x8a7139d8-0x8a713a0b]
[ 0.009306] ACPI: Reserving DBG2 table memory at [mem 0x8a713a10-0x8a713a63]
[ 0.009306] ACPI: Reserving SSDT table memory at [mem 0x8a713a68-0x8a7155ce]
[ 0.009307] ACPI: Reserving DMAR table memory at [mem 0x8a7155d0-0x8a71563f]
[ 0.009308] ACPI: Reserving VFCT table memory at [mem 0x8a715640-0x8a7208c3]
[ 0.009309] ACPI: Reserving BGRT table memory at [mem 0x8a7208c8-0x8a7208ff]
[ 0.009310] ACPI: Reserving TPM2 table memory at [mem 0x8a720900-0x8a720933]
[ 0.009310] ACPI: Reserving WSMT table memory at [mem 0x8a720938-0x8a72095f]
[ 0.009634] No NUMA configuration found
[ 0.009635] Faking a node at [mem 0x0000000000000000-0x000000046dffffff]
[ 0.009644] NODE_DATA(0) allocated [mem 0x46dfd52c0-0x46dffffff]
[ 0.009899] Zone ranges:
[ 0.009900] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009902] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009903] Normal [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009905] Device empty
[ 0.009906] Movable zone start for each node
[ 0.009908] Early memory node ranges
[ 0.009908] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009910] node 0: [mem 0x0000000000100000-0x000000008a26ffff]
[ 0.009911] node 0: [mem 0x000000008dc0e000-0x000000008dc0efff]
[ 0.009912] node 0: [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009914] Initmem setup node 0 [mem 0x0000000000001000-0x000000046dffffff]
[ 0.009919] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009940] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012782] On node 0, zone DMA32: 14750 pages in unavailable ranges
[ 0.030054] On node 0, zone Normal: 9201 pages in unavailable ranges
[ 0.030146] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.031352] ACPI: PM-Timer IO Port: 0x1808
[ 0.031359] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031360] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031361] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031362] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031363] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031363] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031364] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031365] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031425] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.031428] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031429] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031433] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.031434] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031441] e820: update [mem 0x86b6d000-0x86bdffff] usable ==> reserved
[ 0.031453] TSC deadline timer available
[ 0.031458] CPU topo: Max. logical packages: 1
[ 0.031459] CPU topo: Max. logical dies: 1
[ 0.031459] CPU topo: Max. dies per package: 1
[ 0.031464] CPU topo: Max. threads per core: 1
[ 0.031465] CPU topo: Num. cores per package: 8
[ 0.031465] CPU topo: Num. threads per package: 8
[ 0.031466] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
[ 0.031479] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031481] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.031483] PM: hibernation: Registered nosave memory: [mem 0x7bf0e000-0x7bf0efff]
[ 0.031484] PM: hibernation: Registered nosave memory: [mem 0x7bf1c000-0x7bf1cfff]
[ 0.031485] PM: hibernation: Registered nosave memory: [mem 0x7bf1d000-0x7bf1dfff]
[ 0.031486] PM: hibernation: Registered nosave memory: [mem 0x7bf3b000-0x7bf3bfff]
[ 0.031488] PM: hibernation: Registered nosave memory: [mem 0x86b6d000-0x86bdffff]
[ 0.031489] PM: hibernation: Registered nosave memory: [mem 0x88b80000-0x88b80fff]
[ 0.031491] PM: hibernation: Registered nosave memory: [mem 0x8a270000-0x8a6a4fff]
[ 0.031492] PM: hibernation: Registered nosave memory: [mem 0x8a6a5000-0x8a721fff]
[ 0.031492] PM: hibernation: Registered nosave memory: [mem 0x8a722000-0x8ab95fff]
[ 0.031493] PM: hibernation: Registered nosave memory: [mem 0x8ab96000-0x8dc0dfff]
[ 0.031494] PM: hibernation: Registered nosave memory: [mem 0x8dc0f000-0x8fffffff]
[ 0.031495] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfdffffff]
[ 0.031496] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.031496] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.031497] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.031498] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.031498] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.031499] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.031500] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.031500] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.031502] [mem 0x90000000-0xfdffffff] available for PCI devices
[ 0.031503] Booting paravirtualized kernel on bare hardware
[ 0.031505] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.037894] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.038306] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[ 0.038313] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[ 0.038315] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
[ 0.038335] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.038396] DMAR: IOMMU enabled
[ 0.038420] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[ 0.039623] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.040218] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.040315] Fallback order for Node 0: 0
[ 0.040318] Built 1 zonelists, mobility grouping on. Total pages: 4162063
[ 0.040319] Policy zone: Normal
[ 0.040488] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.040495] software IO TLB: area num 8.
[ 0.082608] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.082644] ftrace: allocating 51623 entries in 202 pages
[ 0.103975] ftrace: allocated 202 pages with 4 groups
[ 0.104052] Dynamic Preempt: full
[ 0.104097] rcu: Preemptible hierarchical RCU implementation.
[ 0.104098] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.104099] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.104100] Trampoline variant of Tasks RCU enabled.
[ 0.104101] Rude variant of Tasks RCU enabled.
[ 0.104101] Tracing variant of Tasks RCU enabled.
[ 0.104102] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.104102] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.104108] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.104110] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.104112] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.109857] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[ 0.110145] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.110549] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.110581] Console: colour dummy device 80x25
[ 0.110583] printk: legacy console [tty0] enabled
[ 0.110632] ACPI: Core revision 20240827
[ 0.110876] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.110941] APIC: Switch to symmetric I/O mode setup
[ 0.110943] DMAR: Host address width 39
[ 0.110944] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.110950] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.110953] DMAR: RMRR base: 0x0000008b72e000 end: 0x0000008b977fff
[ 0.110955] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.110957] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.110958] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.114008] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.114010] x2apic enabled
[ 0.114079] APIC: Switched APIC routing to: cluster x2apic
[ 0.123236] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
[ 0.123241] Calibrating delay loop (skipped), value calculated using timer frequency.. 6002.00 BogoMIPS (lpj=10000000)
[ 0.123261] x86/cpu: SGX disabled or unsupported by BIOS.
[ 0.123269] CPU0: Thermal monitoring enabled (TM1)
[ 0.123323] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.123324] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.123328] process: using mwait in idle threads
[ 0.123330] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.123332] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[ 0.123333] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.123334] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.123334] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.123335] RETBleed: Mitigation: Enhanced IBRS
[ 0.123337] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.123338] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.123343] TAA: Mitigation: TSX disabled
[ 0.123344] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.123347] SRBDS: Mitigation: Microcode
[ 0.123352] GDS: Mitigation: Microcode
[ 0.123356] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.123358] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.123359] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.123360] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.123361] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.123362] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.123363] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.123364] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.123366] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.126572] Freeing SMP alternatives memory: 40K
[ 0.126572] pid_max: default: 32768 minimum: 301
[ 0.126572] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.126572] landlock: Up and running.
[ 0.126572] Yama: becoming mindful.
[ 0.126572] LSM support for eBPF active
[ 0.126572] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126572] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126572] smpboot: CPU0: Intel(R) Core(TM) i7-9700F CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[ 0.126572] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.126572] ... version: 4
[ 0.126572] ... bit width: 48
[ 0.126572] ... generic registers: 8
[ 0.126572] ... value mask: 0000ffffffffffff
[ 0.126572] ... max period: 00007fffffffffff
[ 0.126572] ... fixed-purpose events: 3
[ 0.126572] ... event mask: 00000007000000ff
[ 0.126572] signal: max sigframe size: 2032
[ 0.126572] Estimated ratio of average max frequency by base frequency (times 1024): 1570
[ 0.126572] rcu: Hierarchical SRCU implementation.
[ 0.126572] rcu: Max phase no-delay instances is 1000.
[ 0.126572] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.126572] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.126572] smp: Bringing up secondary CPUs ...
[ 0.126572] smpboot: x86: Booting SMP configuration:
[ 0.126572] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.129957] ------------[ cut here ]------------
[ 0.129960] workqueue: work disable count underflowed
[ 0.129962] WARNING: CPU: 1 PID: 25 at kernel/workqueue.c:4317 enable_work+0xdc/0x100
[ 0.129969] Modules linked in:
[ 0.129971] CPU: 1 UID: 0 PID: 25 Comm: cpuhp/1 Not tainted 6.13.0-rc6-1.1-mainline-dirty #1 c275e5d56fcc663358af28dad0103f8555743e5b
[ 0.129975] Hardware name: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.129976] RIP: 0010:enable_work+0xdc/0x100
[ 0.129979] Code: de 2e 02 00 74 04 31 ed eb b3 48 c7 c7 58 a7 88 9d 48 89 54 24 10 89 44 24 0c 48 89 34 24 c6 05 85 de 2e 02 01 e8 64 5e fd ff <0f> 0b 31 ed 48 8b 34 24 8b 44 24 0c 48 8b 54 24 10 eb 80 e8 0c db
[ 0.129981] RSP: 0000:ffff9b6dc0193e10 EFLAGS: 00010086
[ 0.129983] RAX: 0000000000000000 RBX: ffff8b285dab1a40 RCX: 0000000000000003
[ 0.129985] RDX: 0000000000000000 RSI: 0000000000000003 RDI: 0000000000000001
[ 0.129986] RBP: ffff9b6dc0193e28 R08: 0000000000000000 R09: ffff9b6dc0193c90
[ 0.129987] R10: ffffffff9e2b53c8 R11: 0000000000000003 R12: 00000000000000c4
[ 0.129989] R13: ffffffff9c3e3c70 R14: 0000000000000000 R15: ffff8b285daa1408
[ 0.129990] FS: 0000000000000000(0000) GS:ffff8b285da80000(0000) knlGS:0000000000000000
[ 0.129991] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 0.129993] CR2: 0000000000000000 CR3: 0000000185622001 CR4: 00000000003706f0
[ 0.129994] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[ 0.129995] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[ 0.129997] Call Trace:
[ 0.129998] <TASK>
[ 0.129999] ? enable_work+0xdc/0x100
[ 0.130002] ? __warn.cold+0x93/0xf6
[ 0.130003] ? enable_work+0xdc/0x100
[ 0.130007] ? report_bug+0xff/0x140
[ 0.130009] ? handle_bug+0x58/0x90
[ 0.130011] ? exc_invalid_op+0x17/0x70
[ 0.130012] ? asm_exc_invalid_op+0x1a/0x20
[ 0.130015] ? __pfx_vmstat_cpu_online+0x10/0x10
[ 0.130018] ? enable_work+0xdc/0x100
[ 0.130021] vmstat_cpu_online+0x61/0x70
[ 0.130024] cpuhp_invoke_callback+0x11f/0x420
[ 0.130027] ? __pfx_smpboot_thread_fn+0x10/0x10
[ 0.130028] cpuhp_thread_fun+0xa2/0x170
[ 0.130030] smpboot_thread_fn+0xda/0x1d0
[ 0.130032] kthread+0xcf/0x100
[ 0.130034] ? __pfx_kthread+0x10/0x10
[ 0.130036] ret_from_fork+0x31/0x50
[ 0.130038] ? __pfx_kthread+0x10/0x10
[ 0.130040] ret_from_fork_asm+0x1a/0x30
[ 0.130044] </TASK>
[ 0.130044] ---[ end trace 0000000000000000 ]---
[ 0.130047] smp: Brought up 1 node, 8 CPUs
[ 0.130047] smpboot: Total of 8 processors activated (48019.00 BogoMIPS)
[ 0.131956] Memory: 16201524K/16648252K available (18432K kernel code, 2692K rwdata, 14428K rodata, 4292K init, 3948K bss, 431572K reserved, 0K cma-reserved)
[ 0.133413] devtmpfs: initialized
[ 0.133413] x86/mm: Memory block size: 128MB
[ 0.134408] ACPI: PM: Registering ACPI NVS region [mem 0x8a722000-0x8ab95fff] (4669440 bytes)
[ 0.134408] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.134408] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.134408] pinctrl core: initialized pinctrl subsystem
[ 0.134408] PM: RTC time: 11:24:24, date: 2025-01-10
[ 0.134408] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.134409] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.134522] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.134635] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.134641] audit: initializing netlink subsys (disabled)
[ 0.134697] audit: type=2000 audit(1736508264.000:1): state=initialized audit_enabled=0 res=1
[ 0.134697] thermal_sys: Registered thermal governor 'fair_share'
[ 0.134697] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.134697] thermal_sys: Registered thermal governor 'step_wise'
[ 0.134697] thermal_sys: Registered thermal governor 'user_space'
[ 0.134697] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.134697] cpuidle: using governor ladder
[ 0.134697] cpuidle: using governor menu
[ 0.134697] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.134697] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.134697] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.134697] PCI: Using configuration type 1 for base access
[ 0.134697] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.137600] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.137600] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.137600] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.137600] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.137600] fbcon: Taking over console
[ 0.137600] ACPI: Added _OSI(Module Device)
[ 0.137600] ACPI: Added _OSI(Processor Device)
[ 0.137600] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.137600] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.192086] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.200402] ACPI: Dynamic OEM Table Load:
[ 0.200409] ACPI: SSDT 0xFFFF8B25010C6800 000400 (v02 HPQOEM SLIC-CPC 00003001 INTL 20160527)
[ 0.200730] ACPI: Dynamic OEM Table Load:
[ 0.200730] ACPI: SSDT 0xFFFF8B25010B8000 000605 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.201634] ACPI: Dynamic OEM Table Load:
[ 0.201638] ACPI: SSDT 0xFFFF8B25010E8C00 0000F4 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.202581] ACPI: Dynamic OEM Table Load:
[ 0.202585] ACPI: SSDT 0xFFFF8B250184EE00 000149 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.203486] ACPI: Dynamic OEM Table Load:
[ 0.203491] ACPI: SSDT 0xFFFF8B25010BF800 000724 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.204617] ACPI: Dynamic OEM Table Load:
[ 0.204623] ACPI: SSDT 0xFFFF8B25010BB000 0005FC (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.205677] ACPI: Dynamic OEM Table Load:
[ 0.205681] ACPI: SSDT 0xFFFF8B25010C1400 000317 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.206736] ACPI: Dynamic OEM Table Load:
[ 0.206742] ACPI: SSDT 0xFFFF8B25018C0000 000AB0 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.208312] ACPI: Dynamic OEM Table Load:
[ 0.208317] ACPI: SSDT 0xFFFF8B25010C4400 00030A (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.212530] ACPI: EC: EC started
[ 0.212532] ACPI: EC: interrupt blocked
[ 0.213121] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.213123] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.213125] ACPI: Interpreter enabled
[ 0.213162] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.213163] ACPI: Using IOAPIC for interrupt routing
[ 0.214366] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.214367] PCI: Ignoring E820 reservations for host bridge windows
[ 0.215550] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.232466] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.232618] ACPI: \_SB_.PCI0.PAUD: New power resource
[ 0.235075] ACPI: \SPR2: New power resource
[ 0.235252] ACPI: \SPR3: New power resource
[ 0.235552] ACPI: \ZPDR: New power resource
[ 0.235799] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.236001] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.236198] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.241823] ACPI: \_SB_.PCI0.I2C1.PXTC: New power resource
[ 0.248324] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.253483] ACPI: \_TZ_.FN00: New power resource
[ 0.253551] ACPI: \_TZ_.FN01: New power resource
[ 0.253618] ACPI: \_TZ_.FN02: New power resource
[ 0.253681] ACPI: \_TZ_.FN03: New power resource
[ 0.253743] ACPI: \_TZ_.FN04: New power resource
[ 0.254202] ACPI: \PIN_: New power resource
[ 0.254357] ACPI: \SPR0: New power resource
[ 0.254413] ACPI: \SPR1: New power resource
[ 0.254468] ACPI: \SPR5: New power resource
[ 0.255015] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.255022] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.258281] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.258283] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.259467] PCI host bridge to bus 0000:00
[ 0.259472] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.259474] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.259476] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.259478] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.259479] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[ 0.259480] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.259482] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.259575] pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000 conventional PCI endpoint
[ 0.259644] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[ 0.259657] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.259660] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.259662] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.259667] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.259693] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.260295] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.260304] pci 0000:00:08.0: BAR 0 [mem 0xa0922000-0xa0922fff 64bit]
[ 0.260478] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.260509] pci 0000:00:12.0: BAR 0 [mem 0xa0921000-0xa0921fff 64bit]
[ 0.260770] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.260806] pci 0000:00:14.0: BAR 0 [mem 0xa0900000-0xa090ffff 64bit]
[ 0.260946] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.261656] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.261687] pci 0000:00:14.2: BAR 0 [mem 0xa0916000-0xa0917fff 64bit]
[ 0.261706] pci 0000:00:14.2: BAR 2 [mem 0xa0920000-0xa0920fff 64bit]
[ 0.261857] pci 0000:00:14.5: [8086:a375] type 00 class 0x080501 conventional PCI endpoint
[ 0.261889] pci 0000:00:14.5: BAR 0 [mem 0xa091f000-0xa091ffff 64bit]
[ 0.262723] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.263277] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.266237] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.266815] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.269451] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.269484] pci 0000:00:16.0: BAR 0 [mem 0xa091c000-0xa091cfff 64bit]
[ 0.269603] pci 0000:00:16.0: PME# supported from D3hot
[ 0.270246] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
[ 0.270274] pci 0000:00:17.0: BAR 0 [mem 0xa0914000-0xa0915fff]
[ 0.270289] pci 0000:00:17.0: BAR 1 [mem 0xa091b000-0xa091b0ff]
[ 0.270304] pci 0000:00:17.0: BAR 2 [io 0x6050-0x6057]
[ 0.270319] pci 0000:00:17.0: BAR 3 [io 0x6040-0x6043]
[ 0.270334] pci 0000:00:17.0: BAR 4 [io 0x6020-0x603f]
[ 0.270349] pci 0000:00:17.0: BAR 5 [mem 0xa091a000-0xa091a7ff]
[ 0.270431] pci 0000:00:17.0: PME# supported from D3hot
[ 0.270900] pci 0000:00:1c.0: [8086:a33d] type 01 class 0x060400 PCIe Root Port
[ 0.270957] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.270965] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.270970] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.271118] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.271167] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.272031] pci 0000:00:1c.7: [8086:a33f] type 01 class 0x060400 PCIe Root Port
[ 0.272089] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.272097] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.272102] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.272244] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 0.272287] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 0.273096] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.273153] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.273164] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.273323] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.273375] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.274624] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000 conventional PCI endpoint
[ 0.275164] pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.277823] pci 0000:00:1f.0: [8086:a304] type 00 class 0x060100 conventional PCI endpoint
[ 0.278389] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.278450] pci 0000:00:1f.3: BAR 0 [mem 0xa0910000-0xa0913fff 64bit]
[ 0.278524] pci 0000:00:1f.3: BAR 4 [mem 0xa0200000-0xa02fffff 64bit]
[ 0.278673] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.280082] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.280253] pci 0000:00:1f.4: BAR 0 [mem 0xa0918000-0xa09180ff 64bit]
[ 0.280467] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.280972] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.280998] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.281185] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.281197] pci 0000:01:00.0: BAR 0 [mem 0xa0500000-0xa0503fff]
[ 0.281209] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.281214] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.281217] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.281225] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.281292] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.281340] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.281436] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.281477] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.281498] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.281503] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.281506] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.281514] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.281580] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.281702] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.281748] pci 0000:03:00.0: [1002:73ff] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.281762] pci 0000:03:00.0: BAR 0 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.281771] pci 0000:03:00.0: BAR 2 [mem 0xa0000000-0xa01fffff 64bit pref]
[ 0.281777] pci 0000:03:00.0: BAR 4 [io 0x5000-0x50ff]
[ 0.281783] pci 0000:03:00.0: BAR 5 [mem 0xa0300000-0xa03fffff]
[ 0.281789] pci 0000:03:00.0: ROM [mem 0xa0400000-0xa041ffff pref]
[ 0.281861] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.281919] pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.281994] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.282003] pci 0000:03:00.1: BAR 0 [mem 0xa0420000-0xa0423fff]
[ 0.282075] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.282166] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.282329] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.282357] pci 0000:04:00.0: BAR 0 [io 0x4000-0x40ff]
[ 0.282394] pci 0000:04:00.0: BAR 2 [mem 0xa0804000-0xa0804fff 64bit]
[ 0.282418] pci 0000:04:00.0: BAR 4 [mem 0xa0800000-0xa0803fff 64bit]
[ 0.282581] pci 0000:04:00.0: supports D1 D2
[ 0.282582] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.282891] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.283044] pci 0000:05:00.0: [10ec:c821] type 00 class 0x028000 PCIe Endpoint
[ 0.283071] pci 0000:05:00.0: BAR 0 [io 0x3000-0x30ff]
[ 0.283103] pci 0000:05:00.0: BAR 2 [mem 0xa0700000-0xa070ffff 64bit]
[ 0.283291] pci 0000:05:00.0: supports D1 D2
[ 0.283292] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.283672] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.284044] pci 0000:06:00.0: [8086:f1a8] type 00 class 0x010802 PCIe Endpoint
[ 0.284079] pci 0000:06:00.0: BAR 0 [mem 0xa0600000-0xa0603fff 64bit]
[ 0.284633] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.286943] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.287028] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.287111] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.287193] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.287276] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.287358] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.287440] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.287522] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.292917] ACPI: EC: interrupt unblocked
[ 0.292918] ACPI: EC: event unblocked
[ 0.292931] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.292932] ACPI: EC: GPE=0xb
[ 0.292933] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.292935] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.293249] iommu: Default domain type: Translated
[ 0.293249] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.293362] SCSI subsystem initialized
[ 0.293368] libata version 3.00 loaded.
[ 0.293368] ACPI: bus type USB registered
[ 0.293368] usbcore: registered new interface driver usbfs
[ 0.293368] usbcore: registered new interface driver hub
[ 0.293368] usbcore: registered new device driver usb
[ 0.293368] EDAC MC: Ver: 3.0.0
[ 0.293582] efivars: Registered efivars operations
[ 0.293582] NetLabel: Initializing
[ 0.293582] NetLabel: domain hash size = 128
[ 0.293582] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.293582] NetLabel: unlabeled traffic allowed by default
[ 0.293582] mctp: management component transport protocol core
[ 0.293582] NET: Registered PF_MCTP protocol family
[ 0.293582] PCI: Using ACPI for IRQ routing
[ 0.379036] PCI: pci_cache_line_size set to 64 bytes
[ 0.379635] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.379647] e820: reserve RAM buffer [mem 0x7bf0e018-0x7bffffff]
[ 0.379648] e820: reserve RAM buffer [mem 0x7bf1d018-0x7bffffff]
[ 0.379649] e820: reserve RAM buffer [mem 0x86b6d000-0x87ffffff]
[ 0.379650] e820: reserve RAM buffer [mem 0x88b80000-0x8bffffff]
[ 0.379651] e820: reserve RAM buffer [mem 0x8a270000-0x8bffffff]
[ 0.379652] e820: reserve RAM buffer [mem 0x8dc0f000-0x8fffffff]
[ 0.379653] e820: reserve RAM buffer [mem 0x46e000000-0x46fffffff]
[ 0.379927] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.379927] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.379927] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.379927] vgaarb: loaded
[ 0.379971] clocksource: Switched to clocksource tsc-early
[ 0.380385] VFS: Disk quotas dquot_6.6.0
[ 0.380393] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.380447] pnp: PnP ACPI init
[ 0.380524] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[ 0.381329] system 00:01: [io 0x0a00-0x0a0f] has been reserved
[ 0.381332] system 00:01: [io 0x0a10-0x0a1f] has been reserved
[ 0.381333] system 00:01: [io 0x0a20-0x0a2f] has been reserved
[ 0.381335] system 00:01: [io 0x0a30-0x0a3f] has been reserved
[ 0.381336] system 00:01: [io 0x0a40-0x0a4f] has been reserved
[ 0.381337] system 00:01: [io 0x0a50-0x0a5f] has been reserved
[ 0.381339] system 00:01: [io 0x0a60-0x0a6f] has been reserved
[ 0.381340] system 00:01: [io 0x0a70-0x0a7f] has been reserved
[ 0.381341] system 00:01: [io 0x0a80-0x0a8f] has been reserved
[ 0.381343] system 00:01: [io 0x0a90-0x0b8e] has been reserved
[ 0.381344] system 00:01: [io 0x0aa0-0x0aaf] has been reserved
[ 0.381345] system 00:01: [io 0x0ab0-0x0abf] has been reserved
[ 0.381347] system 00:01: [io 0x0ac0-0x0acf] has been reserved
[ 0.381348] system 00:01: [io 0x0ad0-0x0adf] has been reserved
[ 0.381738] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.381740] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.381860] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.382032] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.382034] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.382036] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.382038] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.382039] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.382041] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.382042] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.382044] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.382280] system 00:05: [io 0x1800-0x18fe] could not be reserved
[ 0.382283] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.382285] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.382286] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.382288] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.382290] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.382291] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.382604] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.384726] pnp: PnP ACPI: found 8 devices
[ 0.390213] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.390267] NET: Registered PF_INET protocol family
[ 0.390398] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.404991] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.405014] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.405073] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.405287] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.405509] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.405562] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.405628] UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.405702] UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.405774] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.405780] NET: Registered PF_XDP protocol family
[ 0.405795] pci 0000:00:15.0: BAR 0 [mem 0xa0919000-0xa0919fff 64bit]: assigned
[ 0.406033] pci 0000:00:15.1: BAR 0 [mem 0xa091d000-0xa091dfff 64bit]: assigned
[ 0.406315] pci 0000:00:1e.0: BAR 0 [mem 0xa091e000-0xa091efff 64bit]: assigned
[ 0.406584] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.406591] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.406595] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.406598] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406602] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.406604] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.406607] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.406610] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406614] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.406616] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.406618] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.406620] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406624] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.406632] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.406639] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.406652] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.406655] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.406663] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.406676] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.406683] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.406697] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.406698] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.406700] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.406701] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.406702] pci_bus 0000:00: resource 8 [mem 0x90000000-0xdfffffff window]
[ 0.406704] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 0.406705] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.406706] pci_bus 0000:01: resource 1 [mem 0xa0300000-0xa05fffff]
[ 0.406708] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406709] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.406710] pci_bus 0000:02: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.406711] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406713] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.406714] pci_bus 0000:03: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.406715] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406717] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
[ 0.406718] pci_bus 0000:04: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.406719] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[ 0.406721] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.406722] pci_bus 0000:06: resource 1 [mem 0xa0600000-0xa06fffff]
[ 0.407326] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.407422] PCI: CLS 64 bytes, default 64
[ 0.407486] DMAR: No ATSR found
[ 0.407486] DMAR: No SATC found
[ 0.407488] DMAR: dmar0: Using Queued invalidation
[ 0.407517] Trying to unpack rootfs image as initramfs...
[ 0.407543] pci 0000:00:00.0: Adding to iommu group 0
[ 0.407556] pci 0000:00:01.0: Adding to iommu group 1
[ 0.407564] pci 0000:00:08.0: Adding to iommu group 2
[ 0.407575] pci 0000:00:12.0: Adding to iommu group 3
[ 0.407594] pci 0000:00:14.0: Adding to iommu group 4
[ 0.407602] pci 0000:00:14.2: Adding to iommu group 4
[ 0.407609] pci 0000:00:14.5: Adding to iommu group 4
[ 0.407624] pci 0000:00:15.0: Adding to iommu group 5
[ 0.407631] pci 0000:00:15.1: Adding to iommu group 5
[ 0.407643] pci 0000:00:16.0: Adding to iommu group 6
[ 0.407651] pci 0000:00:17.0: Adding to iommu group 7
[ 0.407667] pci 0000:00:1c.0: Adding to iommu group 8
[ 0.407685] pci 0000:00:1c.7: Adding to iommu group 9
[ 0.407696] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.407707] pci 0000:00:1e.0: Adding to iommu group 11
[ 0.407729] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.407740] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.407748] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.407757] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.407761] pci 0000:01:00.0: Adding to iommu group 1
[ 0.407765] pci 0000:02:00.0: Adding to iommu group 1
[ 0.407770] pci 0000:03:00.0: Adding to iommu group 1
[ 0.407775] pci 0000:03:00.1: Adding to iommu group 1
[ 0.407790] pci 0000:04:00.0: Adding to iommu group 13
[ 0.407806] pci 0000:05:00.0: Adding to iommu group 14
[ 0.407817] pci 0000:06:00.0: Adding to iommu group 15
[ 0.408643] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.408645] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.408646] software IO TLB: mapped [mem 0x0000000082b6d000-0x0000000086b6d000] (64MB)
[ 0.408702] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.419637] Initialise system trusted keyrings
[ 0.419646] Key type blacklist registered
[ 0.419695] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.419779] fuse: init (API version 7.41)
[ 0.419841] integrity: Platform Keyring initialized
[ 0.419843] integrity: Machine keyring initialized
[ 0.430737] Key type asymmetric registered
[ 0.430739] Asymmetric key parser 'x509' registered
[ 0.430755] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.430792] io scheduler mq-deadline registered
[ 0.430793] io scheduler kyber registered
[ 0.430802] io scheduler bfq registered
[ 0.430942] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.431144] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.431380] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[ 0.431448] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[ 0.431488] pcieport 0000:00:1c.0: DPC: enabled with IRQ 122
[ 0.431490] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.431795] pcieport 0000:00:1c.7: PME: Signaling with IRQ 123
[ 0.431854] pcieport 0000:00:1c.7: AER: enabled with IRQ 123
[ 0.431893] pcieport 0000:00:1c.7: DPC: enabled with IRQ 123
[ 0.431895] pcieport 0000:00:1c.7: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432173] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.432228] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.432266] pcieport 0000:00:1d.0: DPC: enabled with IRQ 124
[ 0.432267] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432659] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.433195] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.433216] ACPI: button: Sleep Button [SLPB]
[ 0.433238] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.433251] ACPI: button: Power Button [PWRB]
[ 0.433276] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.436221] ACPI: button: Power Button [PWRF]
[ 0.438267] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.438269] ACPI: thermal: Thermal Zone [HPTZ] (30 C)
[ 0.438561] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.438563] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.438769] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.440586] hpet_acpi_add: no address or irqs in _CRS
[ 0.440623] Non-volatile memory driver v1.3
[ 0.440624] Linux agpgart interface v0.103
[ 0.471172] Freeing initrd memory: 21264K
[ 0.573750] ACPI: bus type drm_connector registered
[ 0.574642] ahci 0000:00:17.0: version 3.0
[ 0.584993] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.584998] ahci 0000:00:17.0: 4/4 ports implemented (port mask 0x3c)
[ 0.584999] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.603376] scsi host0: ahci
[ 0.603688] scsi host1: ahci
[ 0.603993] scsi host2: ahci
[ 0.604174] scsi host3: ahci
[ 0.604309] scsi host4: ahci
[ 0.604368] scsi host5: ahci
[ 0.604392] ata1: DUMMY
[ 0.604393] ata2: DUMMY
[ 0.604399] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126 lpm-pol 3
[ 0.604402] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126 lpm-pol 3
[ 0.604405] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126 lpm-pol 3
[ 0.604408] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126 lpm-pol 3
[ 0.604596] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.604601] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.605742] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 0.606019] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.606021] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.606024] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.606060] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.606063] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.606064] usb usb1: Product: xHCI Host Controller
[ 0.606066] usb usb1: Manufacturer: Linux 6.13.0-rc6-1.1-mainline-dirty xhci-hcd
[ 0.606067] usb usb1: SerialNumber: 0000:00:14.0
[ 0.606212] hub 1-0:1.0: USB hub found
[ 0.606235] hub 1-0:1.0: 16 ports detected
[ 0.607953] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.607956] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.607958] usb usb2: Product: xHCI Host Controller
[ 0.607959] usb usb2: Manufacturer: Linux 6.13.0-rc6-1.1-mainline-dirty xhci-hcd
[ 0.607961] usb usb2: SerialNumber: 0000:00:14.0
[ 0.608059] hub 2-0:1.0: USB hub found
[ 0.608074] hub 2-0:1.0: 8 ports detected
[ 0.608849] usb: port power management may be unreliable
[ 0.609168] usbcore: registered new interface driver usbserial_generic
[ 0.609172] usbserial: USB Serial support registered for generic
[ 0.609334] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.610901] rtc_cmos rtc_cmos: registered as rtc0
[ 0.611213] rtc_cmos rtc_cmos: setting system clock to 2025-01-10T11:24:25 UTC (1736508265)
[ 0.611245] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.611561] intel_pstate: Intel P-state driver initializing
[ 0.612162] intel_pstate: Disabling energy efficiency optimization
[ 0.612163] intel_pstate: HWP enabled
[ 0.612411] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.612412] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.622272] Console: switching to colour frame buffer device 240x67
[ 0.634097] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.634227] hid: raw HID events driver (C) Jiri Kosina
[ 0.634305] drop_monitor: Initializing network drop monitor service
[ 0.634394] NET: Registered PF_INET6 protocol family
[ 0.639136] Segment Routing with IPv6
[ 0.639138] RPL Segment Routing with IPv6
[ 0.639146] In-situ OAM (IOAM) with IPv6
[ 0.639161] NET: Registered PF_PACKET protocol family
[ 0.643236] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.643434] microcode: Current revision: 0x00000100
[ 0.643436] microcode: Updated early from: 0x000000fa
[ 0.643712] IPI shorthand broadcast: enabled
[ 0.644846] sched_clock: Marking stable (630914333, 12784304)->(672737517, -29038880)
[ 0.645127] registered taskstats version 1
[ 0.645717] Loading compiled-in X.509 certificates
[ 0.649335] Loaded X.509 cert 'Build time autogenerated kernel key: f6edcd9617e9783f7928ec27f28d89d95b5650eb'
[ 0.650419] Demotion targets for Node 0: null
[ 0.650602] Key type .fscrypt registered
[ 0.650603] Key type fscrypt-provisioning registered
[ 0.651967] integrity: Loading X.509 certificate: UEFI:db
[ 0.651982] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.651983] integrity: Loading X.509 certificate: UEFI:db
[ 0.651993] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.651993] integrity: Loading X.509 certificate: UEFI:db
[ 0.652003] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.653631] PM: Magic number: 9:260:428
[ 0.655633] RAS: Correctable Errors collector initialized.
[ 0.661751] clk: Disabling unused clocks
[ 0.661752] PM: genpd: Disabling unused power domains
[ 0.856357] usb 1-8: new high-speed USB device number 2 using xhci_hcd
[ 0.910020] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.913406] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.913476] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.913541] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.916294] ata5.00: Model 'SAMSUNG MZ7TD256HAFV-000L9', rev 'DXT04L6Q', applying quirks: nolpm
[ 0.916305] ata5.00: LPM support broken, forcing max_power
[ 0.916440] ata5.00: supports DRM functions and may not be fully accessible
[ 0.916446] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 0.916753] ata5.00: NCQ Send/Recv Log not supported
[ 0.916760] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.918918] ata5.00: Features: Trust Dev-Sleep
[ 0.919283] ata5.00: LPM support broken, forcing max_power
[ 0.919489] ata5.00: supports DRM functions and may not be fully accessible
[ 0.919784] ata5.00: NCQ Send/Recv Log not supported
[ 0.919936] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 0.920501] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.921268] ata5.00: configured for UDMA/133
[ 0.927188] ata3.00: configured for UDMA/133
[ 0.927432] scsi 2:0:0:0: Direct-Access ATA WDC WD20EARX-00P AB51 PQ: 0 ANSI: 5
[ 0.927936] sd 2:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 0.927945] sd 2:0:0:0: [sda] 4096-byte physical blocks
[ 0.927961] sd 2:0:0:0: [sda] Write Protect is off
[ 0.927966] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.927987] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.928021] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.931517] ahci 0000:00:17.0: port does not support device sleep
[ 0.931713] scsi 4:0:0:0: Direct-Access ATA SAMSUNG MZ7TD256 4L6Q PQ: 0 ANSI: 5
[ 0.932167] sd 4:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 0.932187] sd 4:0:0:0: [sdb] Write Protect is off
[ 0.932192] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.932212] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.932259] sd 4:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 0.976200] sdb: sdb1 sdb2 sdb3 sdb4
[ 0.976979] sd 4:0:0:0: [sdb] supports TCG Opal
[ 0.976988] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 0.986793] usb 1-8: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00
[ 0.986805] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.988589] hub 1-8:1.0: USB hub found
[ 0.988707] hub 1-8:1.0: 4 ports detected
[ 1.106495] usb 1-14: new full-speed USB device number 3 using xhci_hcd
[ 1.237828] usb 1-14: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
[ 1.237842] usb 1-14: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.237848] usb 1-14: Product: Bluetooth Radio
[ 1.237852] usb 1-14: Manufacturer: Realtek
[ 1.237856] usb 1-14: SerialNumber: 00e04c000001
[ 1.316498] usb 1-8.3: new low-speed USB device number 4 using xhci_hcd
[ 1.374834] sda: sda1
[ 1.375109] sd 2:0:0:0: [sda] Attached SCSI disk
[ 1.378046] Freeing unused decrypted memory: 2028K
[ 1.379070] Freeing unused kernel image (initmem) memory: 4292K
[ 1.379114] Write protecting the kernel read-only data: 34816k
[ 1.380789] Freeing unused kernel image (rodata/data gap) memory: 1956K
[ 1.388643] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.388646] rodata_test: all tests were successful
[ 1.388654] Run /init as init process
[ 1.388654] with arguments:
[ 1.388655] /init
[ 1.388656] with environment:
[ 1.388656] HOME=/
[ 1.388657] TERM=linux
[ 1.415394] usb 1-8.3: New USB device found, idVendor=05d5, idProduct=0615, bcdDevice= 1.01
[ 1.415397] usb 1-8.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.415398] usb 1-8.3: Product: KEYBOARD
[ 1.429572] tsc: Refined TSC clocksource calibration: 2999.999 MHz
[ 1.429575] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e44b2357, max_idle_ns: 440795324996 ns
[ 1.429656] clocksource: Switched to clocksource tsc
[ 1.591845] usbcore: registered new interface driver usbhid
[ 1.591847] usbhid: USB HID core driver
[ 1.595587] sdhci: Secure Digital Host Controller Interface driver
[ 1.595589] sdhci: Copyright(c) Pierre Ossman
[ 1.598087] input: KEYBOARD as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.0/0003:05D5:0615.0001/input/input3
[ 1.599234] nvme nvme0: pci function 0000:06:00.0
[ 1.602492] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.602505] sdhci-pci 0000:00:14.5: enabling device (0100 -> 0102)
[ 1.611549] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.616390] nvme0n1: p1 p2
[ 1.617174] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.713282] hid-generic 0003:05D5:0615.0001: input,hidraw0: USB HID v1.10 Keyboard [KEYBOARD] on usb-0000:00:14.0-8.3/input0
[ 1.713420] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.713623] input: KEYBOARD Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.1/0003:05D5:0615.0002/input/input4
[ 1.766655] input: KEYBOARD System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.3/1-8.3:1.1/0003:05D5:0615.0002/input/input5
[ 1.767033] hid-generic 0003:05D5:0615.0002: input,hidraw1: USB HID v1.10 Device [KEYBOARD] on usb-0000:00:14.0-8.3/input1
[ 1.767176] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 2.088618] EXT4-fs (nvme0n1p1): mounted filesystem 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w with ordered data mode. Quota mode: none.
[ 2.266599] systemd[1]: systemd 257.2-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 2.266609] systemd[1]: Detected architecture x86-64.
[ 2.269443] systemd[1]: Hostname set to <Ale-Arch>.
[ 2.458688] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 2.704311] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.704317] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.704404] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.706845] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.710358] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.710361] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.710364] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.710411] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.710443] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.711247] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.711250] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 2.734690] zram: Added device: zram0
[ 2.959198] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 3.044423] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.064737] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 3.065475] systemd[1]: Created slice Slice /system/backrest.
[ 3.065793] systemd[1]: Created slice CUPS Slice.
[ 3.066680] systemd[1]: Created slice Slice /system/dirmngr.
[ 3.067526] systemd[1]: Created slice Slice /system/getty.
[ 3.068348] systemd[1]: Created slice Slice /system/gpg-agent.
[ 3.069147] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 3.070000] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 3.070783] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 3.071643] systemd[1]: Created slice Slice /system/keyboxd.
[ 3.072387] systemd[1]: Created slice Slice /system/modprobe.
[ 3.073131] systemd[1]: Created slice Slice /system/nut-driver.
[ 3.073904] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 3.074668] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 3.075237] systemd[1]: Created slice User and Session Slice.
[ 3.075861] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.076722] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.077331] systemd[1]: Expecting device /dev/disk/by-uuid/0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee...
[ 3.077349] systemd[1]: Expecting device /dev/disk/by-uuid/CAB7-E233...
[ 3.077413] systemd[1]: Expecting device /dev/zram0...
[ 3.078106] systemd[1]: Reached target Login Prompts.
[ 3.078178] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 3.078914] systemd[1]: Reached target Remote File Systems.
[ 3.079648] systemd[1]: Reached target Slice Units.
[ 3.080396] systemd[1]: Reached target System Time Set.
[ 3.081187] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.082011] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 3.082800] systemd[1]: Listening on LVM2 poll daemon socket.
[ 3.086910] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 3.086972] systemd[1]: Reached target RPC Port Mapper.
[ 3.090863] systemd[1]: Listening on Process Core Dump Socket.
[ 3.091427] systemd[1]: Listening on Credential Encryption/Decryption.
[ 3.091766] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.091882] systemd[1]: Listening on Journal Sockets.
[ 3.092668] systemd[1]: Listening on Network Service Netlink Socket.
[ 3.093507] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 3.094261] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.094281] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.094347] systemd[1]: Listening on udev Control Socket.
[ 3.095081] systemd[1]: Listening on udev Kernel Socket.
[ 3.096069] systemd[1]: Mounting Huge Pages File System...
[ 3.097315] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.097870] systemd[1]: Mounting NFSD configuration filesystem...
[ 3.098764] systemd[1]: Mounting Kernel Debug File System...
[ 3.099501] systemd[1]: Mounting Kernel Trace File System...
[ 3.100636] systemd[1]: Load AppArmor profiles was skipped because of an unmet condition check (ConditionSecurity=apparmor).
[ 3.100674] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 3.101609] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.102310] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 3.103868] systemd[1]: Starting Load Kernel Module configfs...
[ 3.104675] systemd[1]: Starting Load Kernel Module dm_mod...
[ 3.105735] systemd[1]: Starting Load Kernel Module drm...
[ 3.106775] systemd[1]: Starting Load Kernel Module fuse...
[ 3.107712] systemd[1]: Starting Load Kernel Module loop...
[ 3.108072] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 3.108106] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 3.109450] systemd[1]: Starting Journal Service...
[ 3.111412] systemd[1]: Starting Load Kernel Modules...
[ 3.112520] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
[ 3.112544] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.113904] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.113962] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.114669] systemd[1]: Starting Load udev Rules from Credentials...
[ 3.117874] loop: module loaded
[ 3.117886] device-mapper: uevent: version 1.0.3
[ 3.117931] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 3.118331] systemd[1]: Starting Coldplug All udev Devices...
[ 3.119197] systemd[1]: Starting Virtual Console Setup...
[ 3.121040] systemd[1]: Mounted Huge Pages File System.
[ 3.121125] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.122129] systemd[1]: Mounted Kernel Debug File System.
[ 3.122946] systemd[1]: Mounted Kernel Trace File System.
[ 3.124091] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.124928] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.125043] systemd[1]: Finished Load Kernel Module configfs.
[ 3.125890] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.125997] systemd[1]: Finished Load Kernel Module dm_mod.
[ 3.126879] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.126981] systemd[1]: Finished Load Kernel Module drm.
[ 3.127645] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.127741] systemd[1]: Finished Load Kernel Module fuse.
[ 3.128344] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.128445] systemd[1]: Finished Load Kernel Module loop.
[ 3.143107] systemd-journald[345]: Collecting audit messages is disabled.
[ 3.146922] systemd[1]: Finished Load udev Rules from Credentials.
[ 3.146983] EXT4-fs (nvme0n1p1): re-mounted 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w. Quota mode: none.
[ 3.147575] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.148918] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.148940] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 3.150369] RPC: Registered named UNIX socket transport module.
[ 3.150370] RPC: Registered udp transport module.
[ 3.150371] RPC: Registered tcp transport module.
[ 3.150371] RPC: Registered tcp-with-tls transport module.
[ 3.150371] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.153936] i2c_dev: i2c /dev entries driver
[ 3.183259] systemd[1]: Mounting FUSE Control File System...
[ 3.183743] systemd[1]: Mounting Kernel Configuration File System...
[ 3.186910] systemd[1]: Starting Rebuild Hardware Database...
[ 3.187657] systemd[1]: Starting Load/Save OS Random Seed...
[ 3.188629] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.189322] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 3.189345] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.189821] systemd[1]: Started Journal Service.
[ 3.207769] systemd-journald[345]: Received client request to flush runtime journal.
[ 3.898915] zram0: detected capacity change from 0 to 32491520
[ 3.902127] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.921275] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.927581] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.927584] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.927585] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[ 3.927586] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[ 3.933664] mmc0: SDHCI controller on PCI [0000:00:14.5] using ADMA 64-bit
[ 3.937630] raid6: skipped pq benchmark and selected avx2x4
[ 3.937633] raid6: using avx2x2 recovery algorithm
[ 3.940834] xor: automatically using best checksumming function avx
[ 3.948101] EDAC ie31200: No ECC support
[ 3.948132] EDAC ie31200: No ECC support
[ 3.950086] intel_pmc_core INT33A1:00: initialized
[ 3.951000] intel_pch_thermal 0000:00:12.0: enabling device (0100 -> 0102)
[ 3.977425] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.980103] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.980256] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 3.986448] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 3.986452] cfg80211: failed to load regulatory.db
[ 4.012433] Adding 16245756k swap on /dev/zram0. Priority:100 extents:1 across:16245756k SSDsc
[ 4.103025] Btrfs loaded, zoned=yes, fsverity=yes
[ 4.115696] Bluetooth: Core ver 2.22
[ 4.115707] NET: Registered PF_BLUETOOTH protocol family
[ 4.115708] Bluetooth: HCI device and connection manager initialized
[ 4.115711] Bluetooth: HCI socket layer initialized
[ 4.115713] Bluetooth: L2CAP socket layer initialized
[ 4.115716] Bluetooth: SCO socket layer initialized
[ 4.117464] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 4.126688] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 4.126882] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 4.127537] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 4.130456] Creating 1 MTD partitions on "0000:00:1f.5":
[ 4.130459] 0x000000000000-0x000001000000 : "BIOS"
[ 4.141629] input: HP WMI hotkeys as /devices/virtual/input/input7
[ 4.142049] intel-lpss 0000:00:15.1: enabling device (0100 -> 0102)
[ 4.159473] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 4.170160] intel-lpss 0000:00:1e.0: enabling device (0100 -> 0102)
[ 4.170413] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 4.195565] BTRFS: device label DATA devid 1 transid 20394 /dev/sda1 (8:1) scanned by mount (567)
[ 4.195873] BTRFS info (device sda1): first mount of filesystem 0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee
[ 4.195879] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 4.195882] BTRFS info (device sda1): using free-space-tree
[ 4.202427] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 4.202464] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 4.204951] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 4.205755] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 4.205781] dw-apb-uart.2: ttyS4 at MMIO 0xa091e000 (irq = 20, base_baud = 7500000) is a 16550A
[ 4.220293] iTCO_vendor_support: vendor-support=0
[ 4.221233] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 4.221235] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 4.221236] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 4.221237] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 4.221951] usbcore: registered new interface driver btusb
[ 4.226291] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[ 4.226298] cryptd: max_cpu_qlen set to 1000
[ 4.227296] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 4.227297] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[ 4.228682] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[ 4.228757] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[ 4.229030] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 4.229208] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 4.229563] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 9c:7b:ef:30:a7:6b, XID 541, IRQ 146
[ 4.229566] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 4.234268] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 4.235490] rtw_8821ce 0000:05:00.0: enabling device (0100 -> 0103)
[ 4.236754] rtw_8821ce 0000:05:00.0: Firmware version 24.11.0, H2C version 12
[ 4.241812] AES CTR mode by8 optimization enabled
[ 4.243144] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 4.252491] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 4.252891] snd_hda_intel 0000:03:00.1: enabling device (0100 -> 0102)
[ 4.253045] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 4.262546] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input8
[ 4.262583] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input9
[ 4.262621] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input10
[ 4.262678] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input11
[ 4.262702] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input12
[ 4.283926] rtw_8821ce 0000:05:00.0 wlp5s0: renamed from wlan0
[ 4.284335] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 4.284338] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 4.284340] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 4.284341] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 4.284342] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 4.284343] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 4.284344] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 4.284345] snd_hda_codec_realtek hdaudioC0D0: Line=0x1b
[ 4.327592] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 4.327631] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 4.327662] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 4.327695] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 4.327725] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 4.380971] intel_tcc_cooling: Programmable TCC Offset detected
[ 4.693377] Bluetooth: hci0: RTL: fw version 0x75b8f098
[ 6.691816] [drm] amdgpu kernel modesetting enabled.
[ 6.691943] amdgpu: Virtual CRAT table created for CPU
[ 6.691952] amdgpu: Topology: Add CPU node
[ 6.691983] amdgpu: Overdrive is enabled, please disable it before reporting any bugs unrelated to overdrive.
[ 6.692899] amdgpu 0000:03:00.0: enabling device (0106 -> 0107)
[ 6.692989] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1043:0x05D5 0xC7).
[ 6.693002] [drm] register mmio base: 0xA0300000
[ 6.693002] [drm] register mmio size: 1048576
[ 6.698104] [drm] add ip block number 0 <nv_common>
[ 6.698106] [drm] add ip block number 1 <gmc_v10_0>
[ 6.698107] [drm] add ip block number 2 <navi10_ih>
[ 6.698108] [drm] add ip block number 3 <psp>
[ 6.698109] [drm] add ip block number 4 <smu>
[ 6.698109] [drm] add ip block number 5 <dm>
[ 6.698111] [drm] add ip block number 6 <gfx_v10_0>
[ 6.698112] [drm] add ip block number 7 <sdma_v5_2>
[ 6.698112] [drm] add ip block number 8 <vcn_v3_0>
[ 6.698113] [drm] add ip block number 9 <jpeg_v3_0>
[ 6.698133] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 6.698135] amdgpu: ATOM BIOS: 115-D534P00-100
[ 6.759610] Console: switching to colour dummy device 80x25
[ 6.782695] intel_rapl_common: Found RAPL domain package
[ 6.782698] intel_rapl_common: Found RAPL domain core
[ 6.782699] intel_rapl_common: Found RAPL domain dram
[ 6.784215] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 6.784219] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 6.784259] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 6.784267] amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 6.784270] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 6.784284] [drm] Detected VRAM RAM=8176M, BAR=256M
[ 6.784285] [drm] RAM width 128bits GDDR6
[ 6.784477] [drm] amdgpu: 8176M of VRAM memory ready
[ 6.784480] [drm] amdgpu: 7932M of GTT memory ready.
[ 6.784498] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 6.784587] [drm] PCIE GART of 512M enabled (table at 0x0000008002000000).
[ 8.382729] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 8.382938] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 8.383257] [drm] use_doorbell being set to: [true]
[ 8.383267] [drm] use_doorbell being set to: [true]
[ 8.383277] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 3
[ 8.449989] amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 8.552409] amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 8.569429] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8.569458] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
[ 8.569467] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 8.569501] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 8.615558] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 8.616008] [drm] Display Core v3.2.310 initialized on DCN 3.0.2
[ 8.616010] [drm] DP-HDMI FRL PCON supported
[ 8.617254] [drm] DMUB hardware initialized: version=0x02020020
[ 8.620354] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 9.061093] [drm] kiq ring mec 2 pipe 1 q 0
[ 9.109820] amdgpu: HMM registered 8176MB device memory
[ 9.111174] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 9.111183] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 9.111392] amdgpu: Virtual CRAT table created for GPU
[ 9.111495] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 9.111497] kfd kfd: amdgpu: added device 1002:73ff
[ 9.111513] amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 9.111516] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 9.111517] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 9.111518] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 9.111519] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 9.111520] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 9.111520] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 9.111521] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 9.111522] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 9.111523] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 9.111523] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 9.111524] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 9.111525] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 9.111526] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
[ 9.111527] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 9.111527] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 9.111528] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 9.111529] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
[ 9.113417] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 9.114031] [drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
[ 9.119606] fbcon: amdgpudrmfb (fb0) is primary device
[ 9.119842] [drm] pre_validate_dsc:1593 MST_DSC dsc precompute is not needed
[ 9.404802] Console: switching to colour frame buffer device 240x67
[ 9.440310] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 9.602148] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 9.602151] Bluetooth: BNEP filters: protocol multicast
[ 9.602153] Bluetooth: BNEP socket layer initialized
[ 9.604523] Bluetooth: MGMT ver 1.23
[ 9.609491] NET: Registered PF_ALG protocol family
[ 9.760953] nvme nvme0: using unchecked data buffer
[ 9.841576] block nvme0n1: No UUID available providing old NGUID
[ 9.906313] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[ 10.076556] r8169 0000:04:00.0 enp4s0: Link is Down
[ 10.631873] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 10.755120] u32 classifier
[ 10.755122] Performance counters on
[ 10.755123] input device check on
[ 10.755123] Actions configured
[ 12.722275] kvm: Running KVM with ignore_msrs=1 and report_ignored_msrs=0 is not a
a supported configuration. Lying to the guest about the existence of MSRs
may cause the guest operating system to hang or produce errors. If a guest
does not run without ignore_msrs=1, please report it to kvm@vger.kernel.org.
[ 13.575264] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 13.577053] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 15.965083] RPC: Registered rdma transport module.
[ 15.965086] RPC: Registered rdma backchannel transport module.
[ 16.074692] NFSD: Using nfsdcld client tracking operations.
[ 16.074696] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 16.573534] Initializing XFRM netlink socket
[ 16.673740] warning: `pmdalinux' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-10 16:21 ` Christian Heusel
@ 2025-01-11 16:41 ` Christian Heusel
2025-01-13 16:26 ` Niklas Cassel
0 siblings, 1 reply; 13+ messages in thread
From: Christian Heusel @ 2025-01-11 16:41 UTC (permalink / raw)
To: Niklas Cassel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
[-- Attachment #1.1: Type: text/plain, Size: 1503 bytes --]
On 25/01/10 05:21PM, Christian Heusel wrote:
> On 25/01/10 12:24PM, Niklas Cassel wrote:
> > On Fri, Jan 10, 2025 at 10:04:46AM +0100, Christian Heusel wrote:
> >
> > > diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> > > index c085dd8..ef01ccd 100644
> > > --- a/drivers/ata/libata-core.c
> > > +++ b/drivers/ata/libata-core.c
> > > @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
> > > { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
> > > { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
> > >
> > > + /* Hitachi-LG Data Storage models with LPM issues */
> > > + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
> > > +
> > > /* devices that don't properly handle queued TRIM commands */
> > > { "Micron_M500IT_*", "MU01", ATA_QUIRK_NO_NCQ_TRIM |
> > > ATA_QUIRK_ZERO_AFTER_TRIM },
> > >
> > > So if anyone has feedback on why the patch does not work or any
> > > alternative ideas for a solution that would be highly appreciated!
So weirdly the quirk from the patch for the same kernel _does work_ when
the user passes the kernel parameter "ahci.mobile_lpm_policy=1":
[ 24.035361] ata4.00: Model 'HL-DT-ST BD-RE BU40N', rev '1.03', applying quirks: nolpm
Any idea why that could be? Is it maybe not the device itself but the
controller that it connects to that is borked and in need of the quirk?
I have attached the full dmesg output.
Cheers,
Chris
[-- Attachment #1.2: dmesg-linux-mainline-v6.13-rc6-with-commandline.log --]
[-- Type: text/plain, Size: 93316 bytes --]
[ 0.000000] Linux version 6.13.0-rc6-1.1-mainline-dirty (linux-mainline@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.1) #1 SMP PREEMPT_DYNAMIC Fri, 10 Jan 2025 10:00:38 +0000
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on ahci.mobile_lpm_policy=1
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008a26ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x7bf1d018-0x7bf3b457] usable ==> usable
[ 0.000000] e820: update [mem 0x7bf0e018-0x7bf1c057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007bf0e017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf0e018-0x000000007bf1c057] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1c058-0x000000007bf1d017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1d018-0x000000007bf3b457] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf3b458-0x000000008a26ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x8a6be000 ACPI=0x8a6be000 TPMFinalLog=0x8ab1e000 SMBIOS=0x8d9a5000 SMBIOS 3.0=0x8d9a4000 MEMATTR=0x86e08098 ESRT=0x88b80398 RNG=0x8a6bdf18 INITRD=0x80e3fa18 TPMEventLog=0x8a6b4018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem46: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem47: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem49: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem51: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 3000.000 MHz processor
[ 0.000848] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000851] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000859] last_pfn = 0x46e000 max_arch_pfn = 0x400000000
[ 0.000864] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000865] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001141] last_pfn = 0x8dc0f max_arch_pfn = 0x400000000
[ 0.008581] esrt: Reserving ESRT space from 0x0000000088b80398 to 0x0000000088b80420.
[ 0.008586] e820: update [mem 0x88b80000-0x88b80fff] usable ==> reserved
[ 0.008602] Using GB pages for direct mapping
[ 0.009072] Secure boot disabled
[ 0.009072] RAMDISK: [mem 0x7bf3c000-0x7d3fffff]
[ 0.009093] ACPI: Early table checksum verification disabled
[ 0.009095] ACPI: RSDP 0x000000008A6BE000 000024 (v02 HPQOEM)
[ 0.009099] ACPI: XSDT 0x000000008A6BE0C0 0000FC (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009104] ACPI: FACP 0x000000008A704DC8 000114 (v06 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009109] ACPI: DSDT 0x000000008A6BE248 046B7A (v02 HPQOEM SLIC-CPC 01072009 INTL 20160527)
[ 0.009112] ACPI: FACS 0x000000008AB93080 000040
[ 0.009114] ACPI: APIC 0x000000008A704EE0 0000BC (v04 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009117] ACPI: FPDT 0x000000008A704FA0 000044 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009120] ACPI: FIDT 0x000000008A704FE8 00009C (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009123] ACPI: MCFG 0x000000008A705088 00003C (v01 HPQOEM SLIC-CPC 01072009 MSFT 00000097)
[ 0.009125] ACPI: SSDT 0x000000008A7050C8 001B5F (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009128] ACPI: MSDM 0x000000008A706C28 000055 (v03 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009131] ACPI: SSDT 0x000000008A706C80 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009133] ACPI: SSDT 0x000000008A706CE0 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009136] ACPI: SSDT 0x000000008A706D40 0031C6 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009138] ACPI: SSDT 0x000000008A709F08 00241B (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009141] ACPI: HPET 0x000000008A70C328 000038 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009143] ACPI: SSDT 0x000000008A70C360 001D39 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009146] ACPI: SSDT 0x000000008A70E0A0 000FAE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009149] ACPI: SSDT 0x000000008A70F050 000BDF (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009151] ACPI: UEFI 0x000000008A70FC30 000042 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009154] ACPI: LPIT 0x000000008A70FC78 000094 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009156] ACPI: SSDT 0x000000008A70FD10 0027DE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009159] ACPI: SSDT 0x000000008A7124F0 0014E2 (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009162] ACPI: DBGP 0x000000008A7139D8 000034 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009164] ACPI: DBG2 0x000000008A713A10 000054 (v00 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009167] ACPI: SSDT 0x000000008A713A68 001B67 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009169] ACPI: DMAR 0x000000008A7155D0 000070 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009172] ACPI: VFCT 0x000000008A715640 00B284 (v01 HPQOEM SLIC-CPC 00000001 AMD 31504F47)
[ 0.009175] ACPI: BGRT 0x000000008A7208C8 000038 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009177] ACPI: TPM2 0x000000008A720900 000034 (v04 HPQOEM SLIC-CPC 00000001 AMI 00000000)
[ 0.009180] ACPI: WSMT 0x000000008A720938 000028 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009182] ACPI: Reserving FACP table memory at [mem 0x8a704dc8-0x8a704edb]
[ 0.009183] ACPI: Reserving DSDT table memory at [mem 0x8a6be248-0x8a704dc1]
[ 0.009184] ACPI: Reserving FACS table memory at [mem 0x8ab93080-0x8ab930bf]
[ 0.009185] ACPI: Reserving APIC table memory at [mem 0x8a704ee0-0x8a704f9b]
[ 0.009186] ACPI: Reserving FPDT table memory at [mem 0x8a704fa0-0x8a704fe3]
[ 0.009186] ACPI: Reserving FIDT table memory at [mem 0x8a704fe8-0x8a705083]
[ 0.009187] ACPI: Reserving MCFG table memory at [mem 0x8a705088-0x8a7050c3]
[ 0.009188] ACPI: Reserving SSDT table memory at [mem 0x8a7050c8-0x8a706c26]
[ 0.009189] ACPI: Reserving MSDM table memory at [mem 0x8a706c28-0x8a706c7c]
[ 0.009189] ACPI: Reserving SSDT table memory at [mem 0x8a706c80-0x8a706cdf]
[ 0.009190] ACPI: Reserving SSDT table memory at [mem 0x8a706ce0-0x8a706d3f]
[ 0.009191] ACPI: Reserving SSDT table memory at [mem 0x8a706d40-0x8a709f05]
[ 0.009192] ACPI: Reserving SSDT table memory at [mem 0x8a709f08-0x8a70c322]
[ 0.009193] ACPI: Reserving HPET table memory at [mem 0x8a70c328-0x8a70c35f]
[ 0.009193] ACPI: Reserving SSDT table memory at [mem 0x8a70c360-0x8a70e098]
[ 0.009194] ACPI: Reserving SSDT table memory at [mem 0x8a70e0a0-0x8a70f04d]
[ 0.009195] ACPI: Reserving SSDT table memory at [mem 0x8a70f050-0x8a70fc2e]
[ 0.009196] ACPI: Reserving UEFI table memory at [mem 0x8a70fc30-0x8a70fc71]
[ 0.009196] ACPI: Reserving LPIT table memory at [mem 0x8a70fc78-0x8a70fd0b]
[ 0.009197] ACPI: Reserving SSDT table memory at [mem 0x8a70fd10-0x8a7124ed]
[ 0.009198] ACPI: Reserving SSDT table memory at [mem 0x8a7124f0-0x8a7139d1]
[ 0.009199] ACPI: Reserving DBGP table memory at [mem 0x8a7139d8-0x8a713a0b]
[ 0.009199] ACPI: Reserving DBG2 table memory at [mem 0x8a713a10-0x8a713a63]
[ 0.009200] ACPI: Reserving SSDT table memory at [mem 0x8a713a68-0x8a7155ce]
[ 0.009201] ACPI: Reserving DMAR table memory at [mem 0x8a7155d0-0x8a71563f]
[ 0.009202] ACPI: Reserving VFCT table memory at [mem 0x8a715640-0x8a7208c3]
[ 0.009203] ACPI: Reserving BGRT table memory at [mem 0x8a7208c8-0x8a7208ff]
[ 0.009203] ACPI: Reserving TPM2 table memory at [mem 0x8a720900-0x8a720933]
[ 0.009204] ACPI: Reserving WSMT table memory at [mem 0x8a720938-0x8a72095f]
[ 0.009527] No NUMA configuration found
[ 0.009528] Faking a node at [mem 0x0000000000000000-0x000000046dffffff]
[ 0.009537] NODE_DATA(0) allocated [mem 0x46dfd52c0-0x46dffffff]
[ 0.009793] Zone ranges:
[ 0.009793] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009795] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009796] Normal [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009798] Device empty
[ 0.009799] Movable zone start for each node
[ 0.009801] Early memory node ranges
[ 0.009801] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009803] node 0: [mem 0x0000000000100000-0x000000008a26ffff]
[ 0.009804] node 0: [mem 0x000000008dc0e000-0x000000008dc0efff]
[ 0.009805] node 0: [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009807] Initmem setup node 0 [mem 0x0000000000001000-0x000000046dffffff]
[ 0.009812] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009833] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012675] On node 0, zone DMA32: 14750 pages in unavailable ranges
[ 0.029943] On node 0, zone Normal: 9201 pages in unavailable ranges
[ 0.030035] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.031243] ACPI: PM-Timer IO Port: 0x1808
[ 0.031249] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031251] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031252] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031253] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031253] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031254] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031255] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031255] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031318] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.031321] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031322] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031326] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.031327] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031334] e820: update [mem 0x86b6d000-0x86bdffff] usable ==> reserved
[ 0.031346] TSC deadline timer available
[ 0.031351] CPU topo: Max. logical packages: 1
[ 0.031352] CPU topo: Max. logical dies: 1
[ 0.031352] CPU topo: Max. dies per package: 1
[ 0.031356] CPU topo: Max. threads per core: 1
[ 0.031357] CPU topo: Num. cores per package: 8
[ 0.031358] CPU topo: Num. threads per package: 8
[ 0.031359] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
[ 0.031372] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031374] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.031375] PM: hibernation: Registered nosave memory: [mem 0x7bf0e000-0x7bf0efff]
[ 0.031377] PM: hibernation: Registered nosave memory: [mem 0x7bf1c000-0x7bf1cfff]
[ 0.031378] PM: hibernation: Registered nosave memory: [mem 0x7bf1d000-0x7bf1dfff]
[ 0.031379] PM: hibernation: Registered nosave memory: [mem 0x7bf3b000-0x7bf3bfff]
[ 0.031381] PM: hibernation: Registered nosave memory: [mem 0x86b6d000-0x86bdffff]
[ 0.031382] PM: hibernation: Registered nosave memory: [mem 0x88b80000-0x88b80fff]
[ 0.031384] PM: hibernation: Registered nosave memory: [mem 0x8a270000-0x8a6a4fff]
[ 0.031384] PM: hibernation: Registered nosave memory: [mem 0x8a6a5000-0x8a721fff]
[ 0.031385] PM: hibernation: Registered nosave memory: [mem 0x8a722000-0x8ab95fff]
[ 0.031386] PM: hibernation: Registered nosave memory: [mem 0x8ab96000-0x8dc0dfff]
[ 0.031387] PM: hibernation: Registered nosave memory: [mem 0x8dc0f000-0x8fffffff]
[ 0.031388] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfdffffff]
[ 0.031389] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.031389] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.031390] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.031391] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.031391] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.031392] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.031393] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.031393] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.031395] [mem 0x90000000-0xfdffffff] available for PCI devices
[ 0.031396] Booting paravirtualized kernel on bare hardware
[ 0.031398] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.037806] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.038219] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[ 0.038226] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[ 0.038228] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
[ 0.038248] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on ahci.mobile_lpm_policy=1
[ 0.038309] DMAR: IOMMU enabled
[ 0.038339] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[ 0.039546] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.040142] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.040240] Fallback order for Node 0: 0
[ 0.040243] Built 1 zonelists, mobility grouping on. Total pages: 4162063
[ 0.040244] Policy zone: Normal
[ 0.040413] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.040420] software IO TLB: area num 8.
[ 0.082552] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.082588] ftrace: allocating 51623 entries in 202 pages
[ 0.103881] ftrace: allocated 202 pages with 4 groups
[ 0.103957] Dynamic Preempt: full
[ 0.104003] rcu: Preemptible hierarchical RCU implementation.
[ 0.104004] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.104005] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.104006] Trampoline variant of Tasks RCU enabled.
[ 0.104006] Rude variant of Tasks RCU enabled.
[ 0.104007] Tracing variant of Tasks RCU enabled.
[ 0.104007] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.104008] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.104014] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.104016] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.104018] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.109765] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[ 0.110054] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.110451] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.110483] Console: colour dummy device 80x25
[ 0.110486] printk: legacy console [tty0] enabled
[ 0.110535] ACPI: Core revision 20240827
[ 0.110781] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.110847] APIC: Switch to symmetric I/O mode setup
[ 0.110849] DMAR: Host address width 39
[ 0.110850] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.110856] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.110858] DMAR: RMRR base: 0x0000008b72e000 end: 0x0000008b977fff
[ 0.110861] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.110863] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.110864] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.113911] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.113912] x2apic enabled
[ 0.113982] APIC: Switched APIC routing to: cluster x2apic
[ 0.123139] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
[ 0.123144] Calibrating delay loop (skipped), value calculated using timer frequency.. 6002.00 BogoMIPS (lpj=10000000)
[ 0.123165] x86/cpu: SGX disabled or unsupported by BIOS.
[ 0.123172] CPU0: Thermal monitoring enabled (TM1)
[ 0.123226] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.123228] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.123232] process: using mwait in idle threads
[ 0.123234] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.123236] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[ 0.123237] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.123237] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.123238] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.123239] RETBleed: Mitigation: Enhanced IBRS
[ 0.123240] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.123242] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.123247] TAA: Mitigation: TSX disabled
[ 0.123248] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.123251] SRBDS: Mitigation: Microcode
[ 0.123256] GDS: Mitigation: Microcode
[ 0.123260] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.123261] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.123262] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.123263] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.123264] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.123265] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.123267] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.123268] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.123269] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.126475] Freeing SMP alternatives memory: 40K
[ 0.126475] pid_max: default: 32768 minimum: 301
[ 0.126475] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.126475] landlock: Up and running.
[ 0.126475] Yama: becoming mindful.
[ 0.126475] LSM support for eBPF active
[ 0.126475] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126475] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126475] smpboot: CPU0: Intel(R) Core(TM) i7-9700F CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[ 0.126475] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.126475] ... version: 4
[ 0.126475] ... bit width: 48
[ 0.126475] ... generic registers: 8
[ 0.126475] ... value mask: 0000ffffffffffff
[ 0.126475] ... max period: 00007fffffffffff
[ 0.126475] ... fixed-purpose events: 3
[ 0.126475] ... event mask: 00000007000000ff
[ 0.126475] signal: max sigframe size: 2032
[ 0.126475] Estimated ratio of average max frequency by base frequency (times 1024): 1570
[ 0.126475] rcu: Hierarchical SRCU implementation.
[ 0.126475] rcu: Max phase no-delay instances is 1000.
[ 0.126475] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.126475] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.126475] smp: Bringing up secondary CPUs ...
[ 0.126475] smpboot: x86: Booting SMP configuration:
[ 0.126475] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.129858] ------------[ cut here ]------------
[ 0.129862] workqueue: work disable count underflowed
[ 0.129864] WARNING: CPU: 1 PID: 25 at kernel/workqueue.c:4317 enable_work+0xdc/0x100
[ 0.129870] Modules linked in:
[ 0.129873] CPU: 1 UID: 0 PID: 25 Comm: cpuhp/1 Not tainted 6.13.0-rc6-1.1-mainline-dirty #1 c275e5d56fcc663358af28dad0103f8555743e5b
[ 0.129876] Hardware name: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.129878] RIP: 0010:enable_work+0xdc/0x100
[ 0.129881] Code: de 2e 02 00 74 04 31 ed eb b3 48 c7 c7 58 a7 28 9d 48 89 54 24 10 89 44 24 0c 48 89 34 24 c6 05 85 de 2e 02 01 e8 64 5e fd ff <0f> 0b 31 ed 48 8b 34 24 8b 44 24 0c 48 8b 54 24 10 eb 80 e8 0c db
[ 0.129883] RSP: 0000:ffffb11580193e10 EFLAGS: 00010086
[ 0.129885] RAX: 0000000000000000 RBX: ffff8d48ddab1a40 RCX: 0000000000000003
[ 0.129887] RDX: 0000000000000000 RSI: 0000000000000003 RDI: 0000000000000001
[ 0.129888] RBP: ffffb11580193e28 R08: 0000000000000000 R09: ffffb11580193c90
[ 0.129889] R10: ffffffff9dcb53c8 R11: 0000000000000003 R12: 00000000000000c4
[ 0.129890] R13: ffffffff9bde3c70 R14: 0000000000000000 R15: ffff8d48ddaa1408
[ 0.129891] FS: 0000000000000000(0000) GS:ffff8d48dda80000(0000) knlGS:0000000000000000
[ 0.129893] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 0.129894] CR2: 0000000000000000 CR3: 0000000351622001 CR4: 00000000003706f0
[ 0.129896] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[ 0.129897] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[ 0.129898] Call Trace:
[ 0.129900] <TASK>
[ 0.129901] ? enable_work+0xdc/0x100
[ 0.129904] ? __warn.cold+0x93/0xf6
[ 0.129906] ? enable_work+0xdc/0x100
[ 0.129909] ? report_bug+0xff/0x140
[ 0.129911] ? handle_bug+0x58/0x90
[ 0.129913] ? exc_invalid_op+0x17/0x70
[ 0.129914] ? asm_exc_invalid_op+0x1a/0x20
[ 0.129918] ? __pfx_vmstat_cpu_online+0x10/0x10
[ 0.129921] ? enable_work+0xdc/0x100
[ 0.129924] vmstat_cpu_online+0x61/0x70
[ 0.129927] cpuhp_invoke_callback+0x11f/0x420
[ 0.129929] ? __pfx_smpboot_thread_fn+0x10/0x10
[ 0.129931] cpuhp_thread_fun+0xa2/0x170
[ 0.129933] smpboot_thread_fn+0xda/0x1d0
[ 0.129935] kthread+0xcf/0x100
[ 0.129937] ? __pfx_kthread+0x10/0x10
[ 0.129939] ret_from_fork+0x31/0x50
[ 0.129941] ? __pfx_kthread+0x10/0x10
[ 0.129943] ret_from_fork_asm+0x1a/0x30
[ 0.129946] </TASK>
[ 0.129947] ---[ end trace 0000000000000000 ]---
[ 0.129950] smp: Brought up 1 node, 8 CPUs
[ 0.129950] smpboot: Total of 8 processors activated (48019.00 BogoMIPS)
[ 0.131852] Memory: 16201520K/16648252K available (18432K kernel code, 2692K rwdata, 14428K rodata, 4292K init, 3948K bss, 431576K reserved, 0K cma-reserved)
[ 0.133306] devtmpfs: initialized
[ 0.133306] x86/mm: Memory block size: 128MB
[ 0.134318] ACPI: PM: Registering ACPI NVS region [mem 0x8a722000-0x8ab95fff] (4669440 bytes)
[ 0.134318] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.134318] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.134318] pinctrl core: initialized pinctrl subsystem
[ 0.134318] PM: RTC time: 13:18:07, date: 2025-01-11
[ 0.134318] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.134319] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.134432] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.134546] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.134552] audit: initializing netlink subsys (disabled)
[ 0.134608] audit: type=2000 audit(1736601487.000:1): state=initialized audit_enabled=0 res=1
[ 0.134608] thermal_sys: Registered thermal governor 'fair_share'
[ 0.134608] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.134608] thermal_sys: Registered thermal governor 'step_wise'
[ 0.134608] thermal_sys: Registered thermal governor 'user_space'
[ 0.134608] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.134608] cpuidle: using governor ladder
[ 0.134608] cpuidle: using governor menu
[ 0.134608] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.134608] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.134608] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.134608] PCI: Using configuration type 1 for base access
[ 0.134608] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.137502] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.137502] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.137502] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.137502] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.137502] fbcon: Taking over console
[ 0.137502] ACPI: Added _OSI(Module Device)
[ 0.137502] ACPI: Added _OSI(Processor Device)
[ 0.137502] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.137502] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.191164] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.198073] ACPI: Dynamic OEM Table Load:
[ 0.198073] ACPI: SSDT 0xFFFF8D45810C0800 000400 (v02 HPQOEM SLIC-CPC 00003001 INTL 20160527)
[ 0.198073] ACPI: Dynamic OEM Table Load:
[ 0.198073] ACPI: SSDT 0xFFFF8D45810BD000 000605 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.200618] ACPI: Dynamic OEM Table Load:
[ 0.200622] ACPI: SSDT 0xFFFF8D45810E9100 0000F4 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.201561] ACPI: Dynamic OEM Table Load:
[ 0.201566] ACPI: SSDT 0xFFFF8D458184F600 000149 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.202461] ACPI: Dynamic OEM Table Load:
[ 0.202466] ACPI: SSDT 0xFFFF8D45810BE800 000724 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.203587] ACPI: Dynamic OEM Table Load:
[ 0.203593] ACPI: SSDT 0xFFFF8D45810B9800 0005FC (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.204646] ACPI: Dynamic OEM Table Load:
[ 0.204650] ACPI: SSDT 0xFFFF8D45810C1C00 000317 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.205703] ACPI: Dynamic OEM Table Load:
[ 0.205708] ACPI: SSDT 0xFFFF8D45818C4000 000AB0 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.207269] ACPI: Dynamic OEM Table Load:
[ 0.207274] ACPI: SSDT 0xFFFF8D45810C1800 00030A (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.211436] ACPI: EC: EC started
[ 0.211437] ACPI: EC: interrupt blocked
[ 0.212026] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.212028] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.212030] ACPI: Interpreter enabled
[ 0.212066] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.212067] ACPI: Using IOAPIC for interrupt routing
[ 0.213271] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.213273] PCI: Ignoring E820 reservations for host bridge windows
[ 0.214451] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.231173] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.231324] ACPI: \_SB_.PCI0.PAUD: New power resource
[ 0.233792] ACPI: \SPR2: New power resource
[ 0.233966] ACPI: \SPR3: New power resource
[ 0.234261] ACPI: \ZPDR: New power resource
[ 0.234506] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.234707] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.234902] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.240462] ACPI: \_SB_.PCI0.I2C1.PXTC: New power resource
[ 0.246899] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.251993] ACPI: \_TZ_.FN00: New power resource
[ 0.252061] ACPI: \_TZ_.FN01: New power resource
[ 0.252128] ACPI: \_TZ_.FN02: New power resource
[ 0.252192] ACPI: \_TZ_.FN03: New power resource
[ 0.252254] ACPI: \_TZ_.FN04: New power resource
[ 0.252712] ACPI: \PIN_: New power resource
[ 0.252866] ACPI: \SPR0: New power resource
[ 0.252922] ACPI: \SPR1: New power resource
[ 0.252976] ACPI: \SPR5: New power resource
[ 0.253522] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.253529] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.256790] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.256792] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.257974] PCI host bridge to bus 0000:00
[ 0.257978] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.257981] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.257982] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.257984] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.257986] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[ 0.257987] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.257988] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.258081] pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000 conventional PCI endpoint
[ 0.258152] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[ 0.258164] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.258167] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.258169] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.258174] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.258200] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.258802] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.258810] pci 0000:00:08.0: BAR 0 [mem 0xa0922000-0xa0922fff 64bit]
[ 0.258984] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.259016] pci 0000:00:12.0: BAR 0 [mem 0xa0921000-0xa0921fff 64bit]
[ 0.259277] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.259313] pci 0000:00:14.0: BAR 0 [mem 0xa0900000-0xa090ffff 64bit]
[ 0.259453] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.260153] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.260184] pci 0000:00:14.2: BAR 0 [mem 0xa0916000-0xa0917fff 64bit]
[ 0.260203] pci 0000:00:14.2: BAR 2 [mem 0xa0920000-0xa0920fff 64bit]
[ 0.260356] pci 0000:00:14.5: [8086:a375] type 00 class 0x080501 conventional PCI endpoint
[ 0.260388] pci 0000:00:14.5: BAR 0 [mem 0xa091f000-0xa091ffff 64bit]
[ 0.261221] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.261795] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.264713] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.265288] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.267892] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.267924] pci 0000:00:16.0: BAR 0 [mem 0xa091c000-0xa091cfff 64bit]
[ 0.268042] pci 0000:00:16.0: PME# supported from D3hot
[ 0.268672] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
[ 0.268699] pci 0000:00:17.0: BAR 0 [mem 0xa0914000-0xa0915fff]
[ 0.268715] pci 0000:00:17.0: BAR 1 [mem 0xa091b000-0xa091b0ff]
[ 0.268729] pci 0000:00:17.0: BAR 2 [io 0x6050-0x6057]
[ 0.268745] pci 0000:00:17.0: BAR 3 [io 0x6040-0x6043]
[ 0.268759] pci 0000:00:17.0: BAR 4 [io 0x6020-0x603f]
[ 0.268774] pci 0000:00:17.0: BAR 5 [mem 0xa091a000-0xa091a7ff]
[ 0.268857] pci 0000:00:17.0: PME# supported from D3hot
[ 0.269323] pci 0000:00:1c.0: [8086:a33d] type 01 class 0x060400 PCIe Root Port
[ 0.269381] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.269388] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.269393] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.269537] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.269586] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.270454] pci 0000:00:1c.7: [8086:a33f] type 01 class 0x060400 PCIe Root Port
[ 0.270511] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.270519] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.270524] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.270666] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 0.270713] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 0.271505] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.271563] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.271574] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.271733] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.271785] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.273021] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000 conventional PCI endpoint
[ 0.273563] pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.276164] pci 0000:00:1f.0: [8086:a304] type 00 class 0x060100 conventional PCI endpoint
[ 0.276731] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.276790] pci 0000:00:1f.3: BAR 0 [mem 0xa0910000-0xa0913fff 64bit]
[ 0.276864] pci 0000:00:1f.3: BAR 4 [mem 0xa0200000-0xa02fffff 64bit]
[ 0.277014] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.278397] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.278578] pci 0000:00:1f.4: BAR 0 [mem 0xa0918000-0xa09180ff 64bit]
[ 0.278785] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.279296] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.279322] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.279511] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.279522] pci 0000:01:00.0: BAR 0 [mem 0xa0500000-0xa0503fff]
[ 0.279534] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.279539] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.279542] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.279550] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.279617] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.279666] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.279761] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.279803] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.279825] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.279830] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.279832] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.279840] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.279907] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.280029] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.280075] pci 0000:03:00.0: [1002:73ff] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.280089] pci 0000:03:00.0: BAR 0 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.280098] pci 0000:03:00.0: BAR 2 [mem 0xa0000000-0xa01fffff 64bit pref]
[ 0.280104] pci 0000:03:00.0: BAR 4 [io 0x5000-0x50ff]
[ 0.280111] pci 0000:03:00.0: BAR 5 [mem 0xa0300000-0xa03fffff]
[ 0.280117] pci 0000:03:00.0: ROM [mem 0xa0400000-0xa041ffff pref]
[ 0.280188] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.280246] pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.280321] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.280330] pci 0000:03:00.1: BAR 0 [mem 0xa0420000-0xa0423fff]
[ 0.280402] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.280493] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.280657] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.280685] pci 0000:04:00.0: BAR 0 [io 0x4000-0x40ff]
[ 0.280722] pci 0000:04:00.0: BAR 2 [mem 0xa0804000-0xa0804fff 64bit]
[ 0.280745] pci 0000:04:00.0: BAR 4 [mem 0xa0800000-0xa0803fff 64bit]
[ 0.280909] pci 0000:04:00.0: supports D1 D2
[ 0.280911] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.281221] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.281375] pci 0000:05:00.0: [10ec:c821] type 00 class 0x028000 PCIe Endpoint
[ 0.281402] pci 0000:05:00.0: BAR 0 [io 0x3000-0x30ff]
[ 0.281434] pci 0000:05:00.0: BAR 2 [mem 0xa0700000-0xa070ffff 64bit]
[ 0.281619] pci 0000:05:00.0: supports D1 D2
[ 0.281620] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.282001] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.282373] pci 0000:06:00.0: [8086:f1a8] type 00 class 0x010802 PCIe Endpoint
[ 0.282408] pci 0000:06:00.0: BAR 0 [mem 0xa0600000-0xa0603fff 64bit]
[ 0.282959] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.285242] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.285325] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.285406] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.285486] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.285566] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.285646] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.285727] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.285806] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.291128] ACPI: EC: interrupt unblocked
[ 0.291130] ACPI: EC: event unblocked
[ 0.291142] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.291143] ACPI: EC: GPE=0xb
[ 0.291144] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.291146] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.291200] iommu: Default domain type: Translated
[ 0.291200] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.291200] SCSI subsystem initialized
[ 0.291200] libata version 3.00 loaded.
[ 0.291200] ACPI: bus type USB registered
[ 0.291200] usbcore: registered new interface driver usbfs
[ 0.291200] usbcore: registered new interface driver hub
[ 0.291200] usbcore: registered new device driver usb
[ 0.291200] EDAC MC: Ver: 3.0.0
[ 0.291200] efivars: Registered efivars operations
[ 0.293329] NetLabel: Initializing
[ 0.293330] NetLabel: domain hash size = 128
[ 0.293331] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.293344] NetLabel: unlabeled traffic allowed by default
[ 0.293348] mctp: management component transport protocol core
[ 0.293349] NET: Registered PF_MCTP protocol family
[ 0.293356] PCI: Using ACPI for IRQ routing
[ 0.377254] PCI: pci_cache_line_size set to 64 bytes
[ 0.377854] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.377865] e820: reserve RAM buffer [mem 0x7bf0e018-0x7bffffff]
[ 0.377866] e820: reserve RAM buffer [mem 0x7bf1d018-0x7bffffff]
[ 0.377867] e820: reserve RAM buffer [mem 0x86b6d000-0x87ffffff]
[ 0.377868] e820: reserve RAM buffer [mem 0x88b80000-0x8bffffff]
[ 0.377869] e820: reserve RAM buffer [mem 0x8a270000-0x8bffffff]
[ 0.377870] e820: reserve RAM buffer [mem 0x8dc0f000-0x8fffffff]
[ 0.377871] e820: reserve RAM buffer [mem 0x46e000000-0x46fffffff]
[ 0.377902] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.377902] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.377902] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.377902] vgaarb: loaded
[ 0.377902] clocksource: Switched to clocksource tsc-early
[ 0.377902] VFS: Disk quotas dquot_6.6.0
[ 0.377902] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.377902] pnp: PnP ACPI init
[ 0.377902] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[ 0.377938] system 00:01: [io 0x0a00-0x0a0f] has been reserved
[ 0.377941] system 00:01: [io 0x0a10-0x0a1f] has been reserved
[ 0.377942] system 00:01: [io 0x0a20-0x0a2f] has been reserved
[ 0.377944] system 00:01: [io 0x0a30-0x0a3f] has been reserved
[ 0.377945] system 00:01: [io 0x0a40-0x0a4f] has been reserved
[ 0.377946] system 00:01: [io 0x0a50-0x0a5f] has been reserved
[ 0.377948] system 00:01: [io 0x0a60-0x0a6f] has been reserved
[ 0.377949] system 00:01: [io 0x0a70-0x0a7f] has been reserved
[ 0.377950] system 00:01: [io 0x0a80-0x0a8f] has been reserved
[ 0.377952] system 00:01: [io 0x0a90-0x0b8e] has been reserved
[ 0.377953] system 00:01: [io 0x0aa0-0x0aaf] has been reserved
[ 0.377954] system 00:01: [io 0x0ab0-0x0abf] has been reserved
[ 0.377956] system 00:01: [io 0x0ac0-0x0acf] has been reserved
[ 0.377957] system 00:01: [io 0x0ad0-0x0adf] has been reserved
[ 0.378333] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.378333] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.378418] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.378590] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.378592] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.378594] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.378595] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.378597] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.378598] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.378600] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.378602] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.378834] system 00:05: [io 0x1800-0x18fe] could not be reserved
[ 0.378837] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.378839] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.378841] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.378842] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.378844] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.378845] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.379153] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.381234] pnp: PnP ACPI: found 8 devices
[ 0.386722] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.386783] NET: Registered PF_INET protocol family
[ 0.386913] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.401413] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.401523] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.401583] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.401797] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.402018] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.402072] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.402137] UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.402212] UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.402285] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.402291] NET: Registered PF_XDP protocol family
[ 0.402305] pci 0000:00:15.0: BAR 0 [mem 0xa0919000-0xa0919fff 64bit]: assigned
[ 0.402578] pci 0000:00:15.1: BAR 0 [mem 0xa091d000-0xa091dfff 64bit]: assigned
[ 0.402850] pci 0000:00:1e.0: BAR 0 [mem 0xa091e000-0xa091efff 64bit]: assigned
[ 0.403119] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.403125] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.403129] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.403132] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403136] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.403138] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.403142] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.403144] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403149] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.403150] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.403152] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.403154] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403158] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.403166] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.403173] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.403186] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.403189] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.403196] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.403209] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.403216] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.403230] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.403231] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.403233] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.403234] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.403235] pci_bus 0000:00: resource 8 [mem 0x90000000-0xdfffffff window]
[ 0.403237] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 0.403238] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.403239] pci_bus 0000:01: resource 1 [mem 0xa0300000-0xa05fffff]
[ 0.403240] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403242] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.403243] pci_bus 0000:02: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.403244] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403246] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.403247] pci_bus 0000:03: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.403248] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403250] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
[ 0.403251] pci_bus 0000:04: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.403252] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[ 0.403254] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.403255] pci_bus 0000:06: resource 1 [mem 0xa0600000-0xa06fffff]
[ 0.403864] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.403928] PCI: CLS 64 bytes, default 64
[ 0.403992] DMAR: No ATSR found
[ 0.403992] DMAR: No SATC found
[ 0.403994] DMAR: dmar0: Using Queued invalidation
[ 0.404021] Trying to unpack rootfs image as initramfs...
[ 0.404047] pci 0000:00:00.0: Adding to iommu group 0
[ 0.404061] pci 0000:00:01.0: Adding to iommu group 1
[ 0.404069] pci 0000:00:08.0: Adding to iommu group 2
[ 0.404080] pci 0000:00:12.0: Adding to iommu group 3
[ 0.404098] pci 0000:00:14.0: Adding to iommu group 4
[ 0.404107] pci 0000:00:14.2: Adding to iommu group 4
[ 0.404114] pci 0000:00:14.5: Adding to iommu group 4
[ 0.404128] pci 0000:00:15.0: Adding to iommu group 5
[ 0.404136] pci 0000:00:15.1: Adding to iommu group 5
[ 0.404147] pci 0000:00:16.0: Adding to iommu group 6
[ 0.404156] pci 0000:00:17.0: Adding to iommu group 7
[ 0.404172] pci 0000:00:1c.0: Adding to iommu group 8
[ 0.404191] pci 0000:00:1c.7: Adding to iommu group 9
[ 0.404201] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.404213] pci 0000:00:1e.0: Adding to iommu group 11
[ 0.404235] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.404244] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.404253] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.404262] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.404266] pci 0000:01:00.0: Adding to iommu group 1
[ 0.404270] pci 0000:02:00.0: Adding to iommu group 1
[ 0.404275] pci 0000:03:00.0: Adding to iommu group 1
[ 0.404279] pci 0000:03:00.1: Adding to iommu group 1
[ 0.404295] pci 0000:04:00.0: Adding to iommu group 13
[ 0.404312] pci 0000:05:00.0: Adding to iommu group 14
[ 0.404323] pci 0000:06:00.0: Adding to iommu group 15
[ 0.405084] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.405086] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.405087] software IO TLB: mapped [mem 0x0000000082b6d000-0x0000000086b6d000] (64MB)
[ 0.405141] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.419429] Initialise system trusted keyrings
[ 0.419436] Key type blacklist registered
[ 0.419481] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.419566] fuse: init (API version 7.41)
[ 0.419635] integrity: Platform Keyring initialized
[ 0.419637] integrity: Machine keyring initialized
[ 0.430512] Key type asymmetric registered
[ 0.430513] Asymmetric key parser 'x509' registered
[ 0.430528] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.430563] io scheduler mq-deadline registered
[ 0.430564] io scheduler kyber registered
[ 0.430573] io scheduler bfq registered
[ 0.430719] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.430925] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.431161] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[ 0.431245] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[ 0.431286] pcieport 0000:00:1c.0: DPC: enabled with IRQ 122
[ 0.431288] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.431591] pcieport 0000:00:1c.7: PME: Signaling with IRQ 123
[ 0.431645] pcieport 0000:00:1c.7: AER: enabled with IRQ 123
[ 0.431684] pcieport 0000:00:1c.7: DPC: enabled with IRQ 123
[ 0.431686] pcieport 0000:00:1c.7: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.431979] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.432036] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.432074] pcieport 0000:00:1d.0: DPC: enabled with IRQ 124
[ 0.432076] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432469] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.433004] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.433023] ACPI: button: Sleep Button [SLPB]
[ 0.433045] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.433057] ACPI: button: Power Button [PWRB]
[ 0.433079] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.433152] ACPI: button: Power Button [PWRF]
[ 0.435100] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.435102] ACPI: thermal: Thermal Zone [HPTZ] (30 C)
[ 0.435396] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.435398] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.435636] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.437398] hpet_acpi_add: no address or irqs in _CRS
[ 0.437434] Non-volatile memory driver v1.3
[ 0.437436] Linux agpgart interface v0.103
[ 0.467732] Freeing initrd memory: 21264K
[ 0.578936] ACPI: bus type drm_connector registered
[ 0.579795] ahci 0000:00:17.0: version 3.0
[ 0.590125] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.590129] ahci 0000:00:17.0: 4/4 ports implemented (port mask 0x3c)
[ 0.590131] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.613465] scsi host0: ahci
[ 0.613775] scsi host1: ahci
[ 0.614083] scsi host2: ahci
[ 0.614274] scsi host3: ahci
[ 0.614417] scsi host4: ahci
[ 0.614536] scsi host5: ahci
[ 0.614569] ata1: DUMMY
[ 0.614570] ata2: DUMMY
[ 0.614576] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126 lpm-pol 1
[ 0.614579] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126 lpm-pol 1
[ 0.614582] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126 lpm-pol 1
[ 0.614585] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126 lpm-pol 1
[ 0.614837] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.614842] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.615975] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 0.616262] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.616265] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.616267] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.616304] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.616306] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.616308] usb usb1: Product: xHCI Host Controller
[ 0.616309] usb usb1: Manufacturer: Linux 6.13.0-rc6-1.1-mainline-dirty xhci-hcd
[ 0.616310] usb usb1: SerialNumber: 0000:00:14.0
[ 0.616456] hub 1-0:1.0: USB hub found
[ 0.616480] hub 1-0:1.0: 16 ports detected
[ 0.618207] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.618210] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.618211] usb usb2: Product: xHCI Host Controller
[ 0.618213] usb usb2: Manufacturer: Linux 6.13.0-rc6-1.1-mainline-dirty xhci-hcd
[ 0.618214] usb usb2: SerialNumber: 0000:00:14.0
[ 0.618314] hub 2-0:1.0: USB hub found
[ 0.618328] hub 2-0:1.0: 8 ports detected
[ 0.619094] usb: port power management may be unreliable
[ 0.619415] usbcore: registered new interface driver usbserial_generic
[ 0.619419] usbserial: USB Serial support registered for generic
[ 0.619618] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.621186] rtc_cmos rtc_cmos: registered as rtc0
[ 0.621499] rtc_cmos rtc_cmos: setting system clock to 2025-01-11T13:18:07 UTC (1736601487)
[ 0.621532] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.621864] intel_pstate: Intel P-state driver initializing
[ 0.622499] intel_pstate: Disabling energy efficiency optimization
[ 0.622500] intel_pstate: HWP enabled
[ 0.622719] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.622720] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.632489] Console: switching to colour frame buffer device 240x67
[ 0.644174] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.644328] hid: raw HID events driver (C) Jiri Kosina
[ 0.644405] drop_monitor: Initializing network drop monitor service
[ 0.644486] NET: Registered PF_INET6 protocol family
[ 0.649225] Segment Routing with IPv6
[ 0.649226] RPL Segment Routing with IPv6
[ 0.649237] In-situ OAM (IOAM) with IPv6
[ 0.649254] NET: Registered PF_PACKET protocol family
[ 0.653199] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.653427] microcode: Current revision: 0x00000100
[ 0.653429] microcode: Updated early from: 0x000000fa
[ 0.653741] IPI shorthand broadcast: enabled
[ 0.654823] sched_clock: Marking stable (640925651, 12784896)->(684463509, -30752962)
[ 0.655119] registered taskstats version 1
[ 0.655788] Loading compiled-in X.509 certificates
[ 0.659661] Loaded X.509 cert 'Build time autogenerated kernel key: f6edcd9617e9783f7928ec27f28d89d95b5650eb'
[ 0.660728] Demotion targets for Node 0: null
[ 0.660969] Key type .fscrypt registered
[ 0.660971] Key type fscrypt-provisioning registered
[ 0.662332] integrity: Loading X.509 certificate: UEFI:db
[ 0.662346] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.662347] integrity: Loading X.509 certificate: UEFI:db
[ 0.662357] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.662357] integrity: Loading X.509 certificate: UEFI:db
[ 0.662365] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.663921] PM: Magic number: 9:444:331
[ 0.663947] tty tty52: hash matches
[ 0.665851] RAS: Correctable Errors collector initialized.
[ 0.671827] clk: Disabling unused clocks
[ 0.671828] PM: genpd: Disabling unused power domains
[ 0.863025] usb 1-3: new high-speed USB device number 2 using xhci_hcd
[ 0.919916] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.923334] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.923399] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.926001] ata5.00: Model 'SAMSUNG MZ7TD256HAFV-000L9', rev 'DXT04L6Q', applying quirks: nolpm
[ 0.926011] ata5.00: LPM support broken, forcing max_power
[ 0.926078] ata5.00: supports DRM functions and may not be fully accessible
[ 0.926081] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 0.926363] ata5.00: NCQ Send/Recv Log not supported
[ 0.926370] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.928376] ata5.00: Features: Trust Dev-Sleep
[ 0.928755] ata5.00: LPM support broken, forcing max_power
[ 0.928917] ata5.00: supports DRM functions and may not be fully accessible
[ 0.929230] ata5.00: NCQ Send/Recv Log not supported
[ 0.930347] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.930855] ata5.00: configured for UDMA/133
[ 0.937791] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 0.938533] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.941120] ahci 0000:00:17.0: port does not support device sleep
[ 0.946868] ata3.00: configured for UDMA/133
[ 0.957229] scsi 2:0:0:0: Direct-Access ATA WDC WD20EARX-00P AB51 PQ: 0 ANSI: 5
[ 0.957746] sd 2:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 0.957755] sd 2:0:0:0: [sda] 4096-byte physical blocks
[ 0.957771] sd 2:0:0:0: [sda] Write Protect is off
[ 0.957776] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.957796] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.957831] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.957932] scsi 4:0:0:0: Direct-Access ATA SAMSUNG MZ7TD256 4L6Q PQ: 0 ANSI: 5
[ 0.958396] sd 4:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 0.958416] sd 4:0:0:0: [sdb] Write Protect is off
[ 0.958420] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.958442] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.958491] sd 4:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 0.989972] sdb: sdb1 sdb2 sdb3 sdb4
[ 0.990876] sd 4:0:0:0: [sdb] supports TCG Opal
[ 0.990887] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 0.993522] usb 1-3: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00
[ 0.993535] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.995285] hub 1-3:1.0: USB hub found
[ 0.995410] hub 1-3:1.0: 4 ports detected
[ 0.999009] sda: sda1
[ 0.999262] sd 2:0:0:0: [sda] Attached SCSI disk
[ 1.001976] Freeing unused decrypted memory: 2028K
[ 1.003013] Freeing unused kernel image (initmem) memory: 4292K
[ 1.003055] Write protecting the kernel read-only data: 34816k
[ 1.004542] Freeing unused kernel image (rodata/data gap) memory: 1956K
[ 1.036110] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.036116] rodata_test: all tests were successful
[ 1.036125] Run /init as init process
[ 1.036127] with arguments:
[ 1.036129] /init
[ 1.036131] with environment:
[ 1.036133] HOME=/
[ 1.036134] TERM=linux
[ 1.112792] usb 1-14: new full-speed USB device number 3 using xhci_hcd
[ 1.246927] usb 1-14: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
[ 1.246930] usb 1-14: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.246932] usb 1-14: Product: Bluetooth Radio
[ 1.246933] usb 1-14: Manufacturer: Realtek
[ 1.246934] usb 1-14: SerialNumber: 00e04c000001
[ 1.250560] sdhci: Secure Digital Host Controller Interface driver
[ 1.250562] sdhci: Copyright(c) Pierre Ossman
[ 1.254271] nvme nvme0: pci function 0000:06:00.0
[ 1.258262] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.258277] sdhci-pci 0000:00:14.5: enabling device (0100 -> 0102)
[ 1.264462] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.268650] nvme0n1: p1 p2
[ 1.268816] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.326248] usb 1-3.3: new low-speed USB device number 4 using xhci_hcd
[ 1.406194] tsc: Refined TSC clocksource calibration: 3000.007 MHz
[ 1.406213] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e4c0030f, max_idle_ns: 440795221275 ns
[ 1.406292] clocksource: Switched to clocksource tsc
[ 1.428301] usb 1-3.3: New USB device found, idVendor=05d5, idProduct=0615, bcdDevice= 1.01
[ 1.428316] usb 1-3.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.428322] usb 1-3.3: Product: KEYBOARD
[ 1.435071] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.458351] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.464358] usbcore: registered new interface driver usbhid
[ 1.464367] usbhid: USB HID core driver
[ 1.464453] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.478231] input: KEYBOARD as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.3/1-3.3:1.0/0003:05D5:0615.0001/input/input3
[ 1.603466] hid-generic 0003:05D5:0615.0001: input,hidraw0: USB HID v1.10 Keyboard [KEYBOARD] on usb-0000:00:14.0-3.3/input0
[ 1.603617] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.603801] input: KEYBOARD Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.3/1-3.3:1.1/0003:05D5:0615.0002/input/input4
[ 1.656799] input: KEYBOARD System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.3/1-3.3:1.1/0003:05D5:0615.0002/input/input5
[ 1.657220] hid-generic 0003:05D5:0615.0002: input,hidraw1: USB HID v1.10 Device [KEYBOARD] on usb-0000:00:14.0-3.3/input1
[ 1.657378] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.805535] EXT4-fs (nvme0n1p1): mounted filesystem 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w with ordered data mode. Quota mode: none.
[ 2.139047] systemd[1]: systemd 257.2-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 2.139056] systemd[1]: Detected architecture x86-64.
[ 2.141922] systemd[1]: Hostname set to <Ale-Arch>.
[ 2.440758] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 2.689655] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.689660] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.689735] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.690696] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.695105] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.695110] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.695112] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.695160] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.695194] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.697289] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.697293] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.719107] zram: Added device: zram0
[ 2.970878] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 3.046918] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.073838] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 3.077082] systemd[1]: Created slice Slice /system/backrest.
[ 3.078425] systemd[1]: Created slice CUPS Slice.
[ 3.081627] systemd[1]: Created slice Slice /system/dirmngr.
[ 3.083296] systemd[1]: Created slice Slice /system/getty.
[ 3.084074] systemd[1]: Created slice Slice /system/gpg-agent.
[ 3.084828] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 3.085605] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 3.086339] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 3.087053] systemd[1]: Created slice Slice /system/keyboxd.
[ 3.087726] systemd[1]: Created slice Slice /system/modprobe.
[ 3.088399] systemd[1]: Created slice Slice /system/nut-driver.
[ 3.088979] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 3.089648] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 3.090282] systemd[1]: Created slice User and Session Slice.
[ 3.090807] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.091528] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.092044] systemd[1]: Expecting device /dev/disk/by-uuid/0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee...
[ 3.092057] systemd[1]: Expecting device /dev/disk/by-uuid/CAB7-E233...
[ 3.092067] systemd[1]: Expecting device /dev/zram0...
[ 3.092130] systemd[1]: Reached target Login Prompts.
[ 3.092745] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 3.092790] systemd[1]: Reached target Remote File Systems.
[ 3.093416] systemd[1]: Reached target Slice Units.
[ 3.094064] systemd[1]: Reached target System Time Set.
[ 3.094731] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.095455] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 3.096154] systemd[1]: Listening on LVM2 poll daemon socket.
[ 3.099815] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 3.100193] systemd[1]: Reached target RPC Port Mapper.
[ 3.103885] systemd[1]: Listening on Process Core Dump Socket.
[ 3.104377] systemd[1]: Listening on Credential Encryption/Decryption.
[ 3.104704] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.105473] systemd[1]: Listening on Journal Sockets.
[ 3.106274] systemd[1]: Listening on Network Service Netlink Socket.
[ 3.106995] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 3.107704] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.107721] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.107785] systemd[1]: Listening on udev Control Socket.
[ 3.108431] systemd[1]: Listening on udev Kernel Socket.
[ 3.109278] systemd[1]: Mounting Huge Pages File System...
[ 3.110425] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.111076] systemd[1]: Mounting NFSD configuration filesystem...
[ 3.111947] systemd[1]: Mounting Kernel Debug File System...
[ 3.112634] systemd[1]: Mounting Kernel Trace File System...
[ 3.113132] systemd[1]: Load AppArmor profiles was skipped because of an unmet condition check (ConditionSecurity=apparmor).
[ 3.113172] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 3.114158] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.115575] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 3.116475] systemd[1]: Starting Load Kernel Module configfs...
[ 3.117282] systemd[1]: Starting Load Kernel Module dm_mod...
[ 3.118907] systemd[1]: Starting Load Kernel Module drm...
[ 3.119773] systemd[1]: Starting Load Kernel Module fuse...
[ 3.120865] systemd[1]: Starting Load Kernel Module loop...
[ 3.121153] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 3.121188] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 3.122566] systemd[1]: Starting Journal Service...
[ 3.125214] systemd[1]: Starting Load Kernel Modules...
[ 3.126249] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
[ 3.127417] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.128485] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.128540] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.129896] systemd[1]: Starting Load udev Rules from Credentials...
[ 3.130229] loop: module loaded
[ 3.130277] device-mapper: uevent: version 1.0.3
[ 3.130495] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 3.130605] systemd[1]: Starting Coldplug All udev Devices...
[ 3.131217] systemd[1]: Starting Virtual Console Setup...
[ 3.133939] systemd[1]: Mounted Huge Pages File System.
[ 3.134023] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.134892] systemd[1]: Mounted Kernel Debug File System.
[ 3.135808] systemd[1]: Mounted Kernel Trace File System.
[ 3.136822] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.137564] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.137671] systemd[1]: Finished Load Kernel Module configfs.
[ 3.138394] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.138490] systemd[1]: Finished Load Kernel Module dm_mod.
[ 3.139484] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.139599] systemd[1]: Finished Load Kernel Module drm.
[ 3.139748] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.139858] systemd[1]: Finished Load Kernel Module fuse.
[ 3.140022] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.140120] systemd[1]: Finished Load Kernel Module loop.
[ 3.143875] systemd[1]: Mounting FUSE Control File System...
[ 3.144366] systemd[1]: Mounting Kernel Configuration File System...
[ 3.144777] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.145547] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 3.146216] systemd[1]: Finished Load udev Rules from Credentials.
[ 3.148168] systemd[1]: Mounted FUSE Control File System.
[ 3.148853] systemd[1]: Mounted Kernel Configuration File System.
[ 3.160174] RPC: Registered named UNIX socket transport module.
[ 3.160177] RPC: Registered udp transport module.
[ 3.160177] RPC: Registered tcp transport module.
[ 3.160178] RPC: Registered tcp-with-tls transport module.
[ 3.160178] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.163150] systemd-journald[346]: Collecting audit messages is disabled.
[ 3.163255] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.163283] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 3.163972] systemd[1]: Finished Virtual Console Setup.
[ 3.170150] i2c_dev: i2c /dev entries driver
[ 3.172980] systemd[1]: Finished Load Kernel Modules.
[ 3.173913] systemd[1]: Starting Apply Kernel Variables...
[ 3.176196] EXT4-fs (nvme0n1p1): re-mounted 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w. Quota mode: none.
[ 3.176818] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.178738] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 3.223450] systemd[1]: Starting Load/Save OS Random Seed...
[ 3.223499] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.223699] systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
[ 3.224408] systemd[1]: Started Journal Service.
[ 3.239945] systemd-journald[346]: Received client request to flush runtime journal.
[ 3.473280] zram0: detected capacity change from 0 to 32491520
[ 3.475146] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.477960] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.492172] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.508621] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.508626] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.508627] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[ 3.508628] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[ 3.509750] mmc0: SDHCI controller on PCI [0000:00:14.5] using ADMA 64-bit
[ 3.511501] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.514535] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.514647] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 3.519140] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 3.519144] cfg80211: failed to load regulatory.db
[ 3.522288] raid6: skipped pq benchmark and selected avx2x4
[ 3.522291] raid6: using avx2x2 recovery algorithm
[ 3.525025] xor: automatically using best checksumming function avx
[ 3.530513] EDAC ie31200: No ECC support
[ 3.530557] EDAC ie31200: No ECC support
[ 3.531299] intel_pch_thermal 0000:00:12.0: enabling device (0100 -> 0102)
[ 3.535656] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 3.535991] intel_pmc_core INT33A1:00: initialized
[ 3.539052] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 3.564161] intel-lpss 0000:00:15.1: enabling device (0100 -> 0102)
[ 3.564381] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 3.572266] Adding 16245756k swap on /dev/zram0. Priority:100 extents:1 across:16245756k SSDsc
[ 3.574895] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 3.575121] intel-lpss 0000:00:1e.0: enabling device (0100 -> 0102)
[ 3.576256] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 3.579393] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 3.666564] Btrfs loaded, zoned=yes, fsverity=yes
[ 3.733273] Bluetooth: Core ver 2.22
[ 3.733287] NET: Registered PF_BLUETOOTH protocol family
[ 3.733288] Bluetooth: HCI device and connection manager initialized
[ 3.733291] Bluetooth: HCI socket layer initialized
[ 3.733292] Bluetooth: L2CAP socket layer initialized
[ 3.733294] Bluetooth: SCO socket layer initialized
[ 3.734165] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 3.734198] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 3.738242] Creating 1 MTD partitions on "0000:00:1f.5":
[ 3.738244] 0x000000000000-0x000001000000 : "BIOS"
[ 3.738306] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 3.738436] dw-apb-uart.2: ttyS4 at MMIO 0xa091e000 (irq = 20, base_baud = 7500000) is a 16550A
[ 3.743236] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 3.743239] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.743240] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.743240] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 3.746313] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 3.750103] cryptd: max_cpu_qlen set to 1000
[ 3.750680] iTCO_vendor_support: vendor-support=0
[ 3.751902] input: HP WMI hotkeys as /devices/virtual/input/input7
[ 3.757615] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 3.758495] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 3.762658] AES CTR mode by8 optimization enabled
[ 3.764548] rtw_8821ce 0000:05:00.0: enabling device (0100 -> 0103)
[ 3.764587] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 3.766382] rtw_8821ce 0000:05:00.0: Firmware version 24.11.0, H2C version 12
[ 3.766920] usbcore: registered new interface driver btusb
[ 3.767076] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[ 3.767410] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 9c:7b:ef:30:a7:6b, XID 541, IRQ 146
[ 3.767413] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 3.768072] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 3.768075] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[ 3.768816] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[ 3.769206] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[ 3.777661] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 3.781418] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 3.781719] snd_hda_intel 0000:03:00.1: enabling device (0100 -> 0102)
[ 3.781801] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 3.791707] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input8
[ 3.791736] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input9
[ 3.791761] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input10
[ 3.791835] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input11
[ 3.791871] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input12
[ 3.811336] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 3.811341] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 3.811342] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 3.811343] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 3.811344] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 3.811345] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 3.811346] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 3.811347] snd_hda_codec_realtek hdaudioC0D0: Line=0x1b
[ 3.822558] rtw_8821ce 0000:05:00.0 wlp5s0: renamed from wlan0
[ 3.846419] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 3.846488] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 3.846538] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 3.846568] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 3.846601] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 3.885798] intel_tcc_cooling: Programmable TCC Offset detected
[ 4.239152] Bluetooth: hci0: RTL: fw version 0x75b8f098
[ 4.462094] BTRFS: device label DATA devid 1 transid 20412 /dev/sda1 (8:1) scanned by mount (598)
[ 4.463419] BTRFS info (device sda1): first mount of filesystem 0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee
[ 4.463426] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 4.463429] BTRFS info (device sda1): using free-space-tree
[ 6.247192] [drm] amdgpu kernel modesetting enabled.
[ 6.247333] amdgpu: Virtual CRAT table created for CPU
[ 6.247382] amdgpu: Topology: Add CPU node
[ 6.247429] amdgpu: Overdrive is enabled, please disable it before reporting any bugs unrelated to overdrive.
[ 6.248270] amdgpu 0000:03:00.0: enabling device (0106 -> 0107)
[ 6.248345] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1043:0x05D5 0xC7).
[ 6.248355] [drm] register mmio base: 0xA0300000
[ 6.248356] [drm] register mmio size: 1048576
[ 6.253620] [drm] add ip block number 0 <nv_common>
[ 6.253623] [drm] add ip block number 1 <gmc_v10_0>
[ 6.253624] [drm] add ip block number 2 <navi10_ih>
[ 6.253625] [drm] add ip block number 3 <psp>
[ 6.253626] [drm] add ip block number 4 <smu>
[ 6.253627] [drm] add ip block number 5 <dm>
[ 6.253628] [drm] add ip block number 6 <gfx_v10_0>
[ 6.253629] [drm] add ip block number 7 <sdma_v5_2>
[ 6.253631] [drm] add ip block number 8 <vcn_v3_0>
[ 6.253632] [drm] add ip block number 9 <jpeg_v3_0>
[ 6.253651] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 6.253654] amdgpu: ATOM BIOS: 115-D534P00-100
[ 6.267843] intel_rapl_common: Found RAPL domain package
[ 6.267845] intel_rapl_common: Found RAPL domain core
[ 6.267846] intel_rapl_common: Found RAPL domain dram
[ 6.303106] Console: switching to colour dummy device 80x25
[ 6.327423] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 6.327428] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 6.327461] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 6.327468] amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 6.327471] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 6.327482] [drm] Detected VRAM RAM=8176M, BAR=256M
[ 6.327484] [drm] RAM width 128bits GDDR6
[ 6.327664] [drm] amdgpu: 8176M of VRAM memory ready
[ 6.327667] [drm] amdgpu: 7932M of GTT memory ready.
[ 6.327685] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 6.327772] [drm] PCIE GART of 512M enabled (table at 0x0000008002000000).
[ 7.869019] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 7.869192] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 7.869524] [drm] use_doorbell being set to: [true]
[ 7.869535] [drm] use_doorbell being set to: [true]
[ 7.869545] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 3
[ 7.936242] amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 8.038954] amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 8.055969] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8.055994] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
[ 8.056002] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 8.056036] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 8.102458] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 8.102910] [drm] Display Core v3.2.310 initialized on DCN 3.0.2
[ 8.102912] [drm] DP-HDMI FRL PCON supported
[ 8.104156] [drm] DMUB hardware initialized: version=0x02020020
[ 8.107382] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 8.544411] [drm] kiq ring mec 2 pipe 1 q 0
[ 8.607534] amdgpu: HMM registered 8176MB device memory
[ 8.609243] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 8.609256] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 8.609514] amdgpu: Virtual CRAT table created for GPU
[ 8.609720] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 8.609722] kfd kfd: amdgpu: added device 1002:73ff
[ 8.609740] amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 8.609743] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 8.609745] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 8.609746] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 8.609747] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 8.609748] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 8.609749] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 8.609750] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 8.609751] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 8.609752] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 8.609753] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 8.609754] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 8.609755] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 8.609756] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
[ 8.609757] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 8.609758] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 8.609759] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 8.609760] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
[ 8.611421] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 8.612084] [drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
[ 8.618070] fbcon: amdgpudrmfb (fb0) is primary device
[ 8.618396] [drm] pre_validate_dsc:1593 MST_DSC dsc precompute is not needed
[ 8.924934] Console: switching to colour frame buffer device 240x67
[ 8.960304] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 9.152022] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 9.152025] Bluetooth: BNEP filters: protocol multicast
[ 9.152027] Bluetooth: BNEP socket layer initialized
[ 9.154552] Bluetooth: MGMT ver 1.23
[ 9.159884] NET: Registered PF_ALG protocol family
[ 9.337976] nvme nvme0: using unchecked data buffer
[ 9.397086] block nvme0n1: No UUID available providing old NGUID
[ 9.446200] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[ 9.629905] r8169 0000:04:00.0 enp4s0: Link is Down
[ 10.185050] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 10.329818] u32 classifier
[ 10.329820] Performance counters on
[ 10.329821] input device check on
[ 10.329821] Actions configured
[ 12.256562] kvm: Running KVM with ignore_msrs=1 and report_ignored_msrs=0 is not a
a supported configuration. Lying to the guest about the existence of MSRs
may cause the guest operating system to hang or produce errors. If a guest
does not run without ignore_msrs=1, please report it to kvm@vger.kernel.org.
[ 13.132657] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 13.134416] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 15.521587] RPC: Registered rdma transport module.
[ 15.521590] RPC: Registered rdma backchannel transport module.
[ 15.630094] NFSD: Using nfsdcld client tracking operations.
[ 15.630098] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 16.087484] Initializing XFRM netlink socket
[ 16.173000] warning: `pmdalinux' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 24.033233] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 24.035361] ata4.00: Model 'HL-DT-ST BD-RE BU40N', rev '1.03', applying quirks: nolpm
[ 24.035365] ata4.00: LPM support broken, forcing max_power
[ 24.037909] ata4.00: ATAPI: HL-DT-ST BD-RE BU40N, 1.03, max UDMA/133
[ 24.043119] ata4.00: LPM support broken, forcing max_power
[ 24.043131] ata4.00: configured for UDMA/133
[ 24.062748] scsi 3:0:0:0: CD-ROM HL-DT-ST BD-RE BU40N 1.03 PQ: 0 ANSI: 5
[ 24.132010] scsi 3:0:0:0: Attached scsi generic sg2 type 5
[ 24.218600] sr 3:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 24.218602] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 24.289158] sr 3:0:0:0: Attached scsi CD-ROM sr0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-11 16:41 ` Christian Heusel
@ 2025-01-13 16:26 ` Niklas Cassel
2025-01-14 16:05 ` Niklas Cassel
2025-01-14 16:06 ` Christian Heusel
0 siblings, 2 replies; 13+ messages in thread
From: Niklas Cassel @ 2025-01-13 16:26 UTC (permalink / raw)
To: Christian Heusel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
Hello Christian,
On Sat, Jan 11, 2025 at 05:41:10PM +0100, Christian Heusel wrote:
> On 25/01/10 05:21PM, Christian Heusel wrote:
> > On 25/01/10 12:24PM, Niklas Cassel wrote:
> > > On Fri, Jan 10, 2025 at 10:04:46AM +0100, Christian Heusel wrote:
> > >
> > > > diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> > > > index c085dd8..ef01ccd 100644
> > > > --- a/drivers/ata/libata-core.c
> > > > +++ b/drivers/ata/libata-core.c
> > > > @@ -4118,6 +4118,9 @@ static const struct ata_dev_quirks_entry __ata_dev_quirks[] = {
> > > > { "SAMSUNG MZ7TD256HAFV-000L9", NULL, ATA_QUIRK_NOLPM },
> > > > { "SAMSUNG MZ7TE512HMHP-000L1", "EXT06L0Q", ATA_QUIRK_NOLPM },
> > > >
> > > > + /* Hitachi-LG Data Storage models with LPM issues */
> > > > + { "HL-DT-ST BD-RE BU40N", NULL, ATA_QUIRK_NOLPM },
> > > > +
> > > > /* devices that don't properly handle queued TRIM commands */
> > > > { "Micron_M500IT_*", "MU01", ATA_QUIRK_NO_NCQ_TRIM |
> > > > ATA_QUIRK_ZERO_AFTER_TRIM },
> > > >
> > > > So if anyone has feedback on why the patch does not work or any
> > > > alternative ideas for a solution that would be highly appreciated!
>
> So weirdly the quirk from the patch for the same kernel _does work_ when
> the user passes the kernel parameter "ahci.mobile_lpm_policy=1":
>
> [ 24.035361] ata4.00: Model 'HL-DT-ST BD-RE BU40N', rev '1.03', applying quirks: nolpm
>
> Any idea why that could be? Is it maybe not the device itself but the
> controller that it connects to that is borked and in need of the quirk?
So from the 6.6.69-1-lts log, which you claim is working, we see this:
[ 0.447942] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126
[ 0.447945] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126
[ 0.447948] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126
[ 0.447950] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126
[ 0.756553] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.759958] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.760021] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.760084] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Since this is running AHCI, default reset is ahci_do_hardreset() (COMRESET).
The SATA link up/link down messages are printed after resetting each port.
We can see that we get link up on ata3 and ata5, but link is down on ata6
and ata4.
Seeing link down after a reset is not correct, and I think we should first
focus on seeing link up for ata4, before knowing if we also need a quirk or
not.
[ 0.762876] ata5.00: LPM support broken, forcing max_power
[ 0.763000] ata5.00: supports DRM functions and may not be fully accessible
[ 0.763007] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 0.763242] ata5.00: NCQ Send/Recv Log not supported
[ 0.763248] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.765038] ata5.00: Features: Trust Dev-Sleep
[ 0.765349] ata5.00: LPM support broken, forcing max_power
[ 0.765471] ata5.00: supports DRM functions and may not be fully accessible
[ 0.765714] ata5.00: NCQ Send/Recv Log not supported
[ 0.766391] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 0.766999] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.767029] ata5.00: configured for UDMA/133
[ 0.773655] ata3.00: configured for UDMA/133
[ 81.230713] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 81.235708] ata4.00: ATAPI: HL-DT-ST BD-RE BU40N, 1.03, max UDMA/133
[ 81.240789] ata4.00: configured for UDMA/133
After 81 seconds! we see link up on ata4...
Looking at your dmesg-6.13-rc6-mainline.log, we see similar result,
link down at initial scan, and then link up way, way later.
Right now I don't know why your device actually manages to get link up after
so long. Most likely this is from a suprious hotplug event, which can happen
when LPM is enabled in the device, but not masked in the controller.
(Linux only masks the interrupt if a LPM policy other than Max Power is set,
so it will have been enabled on v6.6.)
But like I said, we should first focus on getting link up after a reset.
I think the problem might be one out of two things:
1) The device is already in DevSleep state before the reset.
While resetting the port will bring the device out of DevSleep,
I found the following in AHCI 1.3.1 specification:
"""
Note: It is recommended that software explicitly set PxCMD.ICC to ‘1h’
and wait PxDEVSLP.DETO + PxDEVSLP.MDAT + 1ms before initiating a COMRESET.
If software initiates a COMRESET to exit from the DevSleep interface state,
PxSCTL.DET shall be set to ‘1h’ (at a minimum) for the amount of time
specified by PxDEVSLP.DETO + PxDEVSLP.MDAT + 1ms.
"""
Right now, Linux does neither set PxCMD.ICC to 1 before the COMRESET,
nor do we wait for PxDEVSLP.DETO + PxDEVSLP.MDAT + 1ms, while PxSCTL.DET in
set to 1. (We currently only hold it for 1ms.)
Could you please try this patch?
diff --git a/drivers/ata/libata-sata.c b/drivers/ata/libata-sata.c
index 9c76fb1ad2ec..b0bff5fe3e03 100644
--- a/drivers/ata/libata-sata.c
+++ b/drivers/ata/libata-sata.c
@@ -660,7 +660,7 @@ int sata_link_hardreset(struct ata_link *link, const unsigned int *timing,
/* Couldn't find anything in SATA I/II specs, but AHCI-1.1
* 10.4.2 says at least 1 ms.
*/
- ata_msleep(link->ap, 1);
+ ata_msleep(link->ap, 20 + 10 + 1);
/* bring link back */
rc = sata_link_resume(link, timing, deadline);
If that works to get link up after reset, you can continue to see if the
LPM quirk is needed or not. (And I will need to write a proper fix so
that we sleep the correct amount of time while holding PxSCTL.DET in 1).
Kind regards,
Niklas
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-13 16:26 ` Niklas Cassel
@ 2025-01-14 16:05 ` Niklas Cassel
2025-01-14 16:40 ` Christian Heusel
2025-01-14 16:06 ` Christian Heusel
1 sibling, 1 reply; 13+ messages in thread
From: Niklas Cassel @ 2025-01-14 16:05 UTC (permalink / raw)
To: Christian Heusel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
Hello Christian,
Looking at the Arch Linux thread, it seems that the person reporting the
problem says that even on a working kernel, you only see the device the
user presses the open button on the Blu-Ray player.
This suggests to me that it sends a hotplug/PhyRdy event when the user
presses the open button.
In Linux, if we don't detect anything connected to the port during initial
boot, and if the port is not marked (by firmware) as either Hotplug Capable,
or External, then we mask the PhyRdy interrupt.
We could reconsider this, and leave the PhyRdy interrupt enabled even for a
port that is not Hotplug Capable or External, if there is no devices detected
on the port.
However, a device should really show up after a COMRESET... A device that
does not do so seems to be non-spec compliant.
It would be nice if we could understand why this device does not show up
after a COMRESET. (If it did, we most likely would not need the workaround
suggested above.)
Could you please run with this debug prints, which might tell us what is
going on:
diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
index fdfa7b266218..eab9fd3316a6 100644
--- a/drivers/ata/libahci.c
+++ b/drivers/ata/libahci.c
@@ -804,6 +804,18 @@ static void ahci_power_up(struct ata_port *ap)
writel(cmd | PORT_CMD_ICC_ACTIVE, port_mmio + PORT_CMD);
}
+static void ahci_dump_regs(struct ata_port *ap, char *str)
+{
+ void __iomem *port_mmio = ahci_port_base(ap);
+
+ ata_port_err(ap, "%s PxSSTS %#x PxSCTL %#x PxCMD %#x PxDEVSLP %#x\n",
+ str,
+ readl(port_mmio + PORT_SCR_STAT),
+ readl(port_mmio + PORT_SCR_CTL),
+ readl(port_mmio + PORT_CMD),
+ readl(port_mmio + PORT_DEVSLP));
+}
+
static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
unsigned int hints)
{
@@ -824,6 +836,9 @@ static int ahci_set_lpm(struct ata_link *link, enum ata_lpm_policy policy,
pp->intr_mask &= ~PORT_IRQ_PHYRDY;
writel(pp->intr_mask, port_mmio + PORT_IRQ_MASK);
+ if (!(ata_link_nr_enabled(link) > 0))
+ ahci_dump_regs(ap, "before offline");
+
sata_link_scr_lpm(link, policy, false);
}
@@ -1607,8 +1622,15 @@ int ahci_do_hardreset(struct ata_link *link, unsigned int *class,
ahci_port_clear_pending_irq(ap);
+ ahci_dump_regs(ap, "before wakeup");
+ ahci_power_up(ap);
+ ata_msleep(ap, 500);
+
+ ahci_dump_regs(ap, "before reset");
rc = sata_link_hardreset(link, timing, deadline, online,
ahci_check_ready);
+ ata_port_err(ap, "sata_link_hardreset returned: %d online: %d\n", rc, *online);
+ ahci_dump_regs(ap, "after reset");
hpriv->start_engine(ap);
diff --git a/drivers/ata/libata-sata.c b/drivers/ata/libata-sata.c
index 9c76fb1ad2ec..21ad2828385c 100644
--- a/drivers/ata/libata-sata.c
+++ b/drivers/ata/libata-sata.c
@@ -660,15 +660,17 @@ int sata_link_hardreset(struct ata_link *link, const unsigned int *timing,
/* Couldn't find anything in SATA I/II specs, but AHCI-1.1
* 10.4.2 says at least 1 ms.
*/
- ata_msleep(link->ap, 1);
+ ata_msleep(link->ap, 500);
/* bring link back */
rc = sata_link_resume(link, timing, deadline);
if (rc)
goto out;
/* if link is offline nothing more to do */
- if (ata_phys_link_offline(link))
+ if (ata_phys_link_offline(link)) {
+ ata_port_err(link->ap, "phys link offline, no reason to wait\n");
goto out;
+ }
/* Link is online. From this point, -ENODEV too is an error. */
if (online)
Kind regards,
Niklas
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-13 16:26 ` Niklas Cassel
2025-01-14 16:05 ` Niklas Cassel
@ 2025-01-14 16:06 ` Christian Heusel
1 sibling, 0 replies; 13+ messages in thread
From: Christian Heusel @ 2025-01-14 16:06 UTC (permalink / raw)
To: Niklas Cassel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
[-- Attachment #1.1: Type: text/plain, Size: 2739 bytes --]
Hello Niklas,
On 25/01/13 05:26PM, Niklas Cassel wrote:
> Hello Christian,
>
> On Sat, Jan 11, 2025 at 05:41:10PM +0100, Christian Heusel wrote:
> > On 25/01/10 05:21PM, Christian Heusel wrote:
> > > On 25/01/10 12:24PM, Niklas Cassel wrote:
> > > > On Fri, Jan 10, 2025 at 10:04:46AM +0100, Christian Heusel wrote:
> > > >
> > > > > So if anyone has feedback on why the patch does not work or any
> > > > > alternative ideas for a solution that would be highly appreciated!
> >
> > So weirdly the quirk from the patch for the same kernel _does work_ when
> > the user passes the kernel parameter "ahci.mobile_lpm_policy=1":
> >
> > [ 24.035361] ata4.00: Model 'HL-DT-ST BD-RE BU40N', rev '1.03', applying quirks: nolpm
> >
> > Any idea why that could be? Is it maybe not the device itself but the
> > controller that it connects to that is borked and in need of the quirk?
>
> So from the 6.6.69-1-lts log, which you claim is working, we see this:
> <dmesg-snip>
>
> Since this is running AHCI, default reset is ahci_do_hardreset() (COMRESET).
>
> The SATA link up/link down messages are printed after resetting each port.
> We can see that we get link up on ata3 and ata5, but link is down on ata6
> and ata4.
>
> Seeing link down after a reset is not correct, and I think we should first
> focus on seeing link up for ata4, before knowing if we also need a quirk or
> not.
Thanks for your detailed explanation!
> Could you please try this patch?
>
> diff --git a/drivers/ata/libata-sata.c b/drivers/ata/libata-sata.c
> index 9c76fb1ad2ec..b0bff5fe3e03 100644
> --- a/drivers/ata/libata-sata.c
> +++ b/drivers/ata/libata-sata.c
> @@ -660,7 +660,7 @@ int sata_link_hardreset(struct ata_link *link, const unsigned int *timing,
> /* Couldn't find anything in SATA I/II specs, but AHCI-1.1
> * 10.4.2 says at least 1 ms.
> */
> - ata_msleep(link->ap, 1);
> + ata_msleep(link->ap, 20 + 10 + 1);
>
> /* bring link back */
> rc = sata_link_resume(link, timing, deadline);
>
>
>
> If that works to get link up after reset, you can continue to see if the
> LPM quirk is needed or not. (And I will need to write a proper fix so
> that we sleep the correct amount of time while holding PxSCTL.DET in 1).
Sadly the patch applied on top of 6.13-rc7 did not work, atleast it did
not immediately bring the device back up again after the reset. You can
see the users full answer [here][0]. I also attached the dmesg, but as
that cuts off rather quickly I have also asked the user to do a longer
test.
> Kind regards,
> Niklas
Cheers,
Chris
[0]: https://bbs.archlinux.org/viewtopic.php?pid=2220082#p2220082
[-- Attachment #1.2: linux-mainline-6.13-rc7-1.1-dmesg.log --]
[-- Type: text/plain, Size: 90078 bytes --]
[ 0.000000] Linux version 6.13.0-rc7-1.1-mainline-dirty (linux-mainline@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.1) #1 SMP PREEMPT_DYNAMIC Mon, 13 Jan 2025 16:56:59 +0000
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008a26ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x7bf1e018-0x7bf3c457] usable ==> usable
[ 0.000000] e820: update [mem 0x7bf0f018-0x7bf1d057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007bf0f017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf0f018-0x000000007bf1d057] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1d058-0x000000007bf1e017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1e018-0x000000007bf3c457] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf3c458-0x000000008a26ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x8a6be000 ACPI=0x8a6be000 TPMFinalLog=0x8ab1e000 SMBIOS=0x8d9a5000 SMBIOS 3.0=0x8d9a4000 MEMATTR=0x86e08098 ESRT=0x88b80398 RNG=0x8a6bdf18 INITRD=0x80e3f298 TPMEventLog=0x8a6b4018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem46: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem47: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem49: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem51: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 3000.000 MHz processor
[ 0.000848] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000850] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000859] last_pfn = 0x46e000 max_arch_pfn = 0x400000000
[ 0.000863] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000865] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001140] last_pfn = 0x8dc0f max_arch_pfn = 0x400000000
[ 0.008594] esrt: Reserving ESRT space from 0x0000000088b80398 to 0x0000000088b80420.
[ 0.008599] e820: update [mem 0x88b80000-0x88b80fff] usable ==> reserved
[ 0.008615] Using GB pages for direct mapping
[ 0.008961] Secure boot disabled
[ 0.008962] RAMDISK: [mem 0x7bf3d000-0x7d400fff]
[ 0.008982] ACPI: Early table checksum verification disabled
[ 0.008985] ACPI: RSDP 0x000000008A6BE000 000024 (v02 HPQOEM)
[ 0.008988] ACPI: XSDT 0x000000008A6BE0C0 0000FC (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.008993] ACPI: FACP 0x000000008A704DC8 000114 (v06 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.008998] ACPI: DSDT 0x000000008A6BE248 046B7A (v02 HPQOEM SLIC-CPC 01072009 INTL 20160527)
[ 0.009001] ACPI: FACS 0x000000008AB93080 000040
[ 0.009003] ACPI: APIC 0x000000008A704EE0 0000BC (v04 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009006] ACPI: FPDT 0x000000008A704FA0 000044 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009009] ACPI: FIDT 0x000000008A704FE8 00009C (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009012] ACPI: MCFG 0x000000008A705088 00003C (v01 HPQOEM SLIC-CPC 01072009 MSFT 00000097)
[ 0.009014] ACPI: SSDT 0x000000008A7050C8 001B5F (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009017] ACPI: MSDM 0x000000008A706C28 000055 (v03 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009019] ACPI: SSDT 0x000000008A706C80 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009022] ACPI: SSDT 0x000000008A706CE0 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009025] ACPI: SSDT 0x000000008A706D40 0031C6 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009027] ACPI: SSDT 0x000000008A709F08 00241B (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009030] ACPI: HPET 0x000000008A70C328 000038 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009032] ACPI: SSDT 0x000000008A70C360 001D39 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009035] ACPI: SSDT 0x000000008A70E0A0 000FAE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009038] ACPI: SSDT 0x000000008A70F050 000BDF (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009040] ACPI: UEFI 0x000000008A70FC30 000042 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009043] ACPI: LPIT 0x000000008A70FC78 000094 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009045] ACPI: SSDT 0x000000008A70FD10 0027DE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009048] ACPI: SSDT 0x000000008A7124F0 0014E2 (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009050] ACPI: DBGP 0x000000008A7139D8 000034 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009053] ACPI: DBG2 0x000000008A713A10 000054 (v00 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009056] ACPI: SSDT 0x000000008A713A68 001B67 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009058] ACPI: DMAR 0x000000008A7155D0 000070 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009061] ACPI: VFCT 0x000000008A715640 00B284 (v01 HPQOEM SLIC-CPC 00000001 AMD 31504F47)
[ 0.009063] ACPI: BGRT 0x000000008A7208C8 000038 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009066] ACPI: TPM2 0x000000008A720900 000034 (v04 HPQOEM SLIC-CPC 00000001 AMI 00000000)
[ 0.009068] ACPI: WSMT 0x000000008A720938 000028 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009071] ACPI: Reserving FACP table memory at [mem 0x8a704dc8-0x8a704edb]
[ 0.009072] ACPI: Reserving DSDT table memory at [mem 0x8a6be248-0x8a704dc1]
[ 0.009073] ACPI: Reserving FACS table memory at [mem 0x8ab93080-0x8ab930bf]
[ 0.009074] ACPI: Reserving APIC table memory at [mem 0x8a704ee0-0x8a704f9b]
[ 0.009075] ACPI: Reserving FPDT table memory at [mem 0x8a704fa0-0x8a704fe3]
[ 0.009075] ACPI: Reserving FIDT table memory at [mem 0x8a704fe8-0x8a705083]
[ 0.009076] ACPI: Reserving MCFG table memory at [mem 0x8a705088-0x8a7050c3]
[ 0.009077] ACPI: Reserving SSDT table memory at [mem 0x8a7050c8-0x8a706c26]
[ 0.009078] ACPI: Reserving MSDM table memory at [mem 0x8a706c28-0x8a706c7c]
[ 0.009078] ACPI: Reserving SSDT table memory at [mem 0x8a706c80-0x8a706cdf]
[ 0.009079] ACPI: Reserving SSDT table memory at [mem 0x8a706ce0-0x8a706d3f]
[ 0.009080] ACPI: Reserving SSDT table memory at [mem 0x8a706d40-0x8a709f05]
[ 0.009081] ACPI: Reserving SSDT table memory at [mem 0x8a709f08-0x8a70c322]
[ 0.009081] ACPI: Reserving HPET table memory at [mem 0x8a70c328-0x8a70c35f]
[ 0.009082] ACPI: Reserving SSDT table memory at [mem 0x8a70c360-0x8a70e098]
[ 0.009083] ACPI: Reserving SSDT table memory at [mem 0x8a70e0a0-0x8a70f04d]
[ 0.009084] ACPI: Reserving SSDT table memory at [mem 0x8a70f050-0x8a70fc2e]
[ 0.009084] ACPI: Reserving UEFI table memory at [mem 0x8a70fc30-0x8a70fc71]
[ 0.009085] ACPI: Reserving LPIT table memory at [mem 0x8a70fc78-0x8a70fd0b]
[ 0.009086] ACPI: Reserving SSDT table memory at [mem 0x8a70fd10-0x8a7124ed]
[ 0.009087] ACPI: Reserving SSDT table memory at [mem 0x8a7124f0-0x8a7139d1]
[ 0.009088] ACPI: Reserving DBGP table memory at [mem 0x8a7139d8-0x8a713a0b]
[ 0.009088] ACPI: Reserving DBG2 table memory at [mem 0x8a713a10-0x8a713a63]
[ 0.009089] ACPI: Reserving SSDT table memory at [mem 0x8a713a68-0x8a7155ce]
[ 0.009090] ACPI: Reserving DMAR table memory at [mem 0x8a7155d0-0x8a71563f]
[ 0.009091] ACPI: Reserving VFCT table memory at [mem 0x8a715640-0x8a7208c3]
[ 0.009092] ACPI: Reserving BGRT table memory at [mem 0x8a7208c8-0x8a7208ff]
[ 0.009092] ACPI: Reserving TPM2 table memory at [mem 0x8a720900-0x8a720933]
[ 0.009093] ACPI: Reserving WSMT table memory at [mem 0x8a720938-0x8a72095f]
[ 0.009417] No NUMA configuration found
[ 0.009418] Faking a node at [mem 0x0000000000000000-0x000000046dffffff]
[ 0.009427] NODE_DATA(0) allocated [mem 0x46dfd52c0-0x46dffffff]
[ 0.009682] Zone ranges:
[ 0.009683] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009684] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009686] Normal [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009687] Device empty
[ 0.009688] Movable zone start for each node
[ 0.009690] Early memory node ranges
[ 0.009691] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009692] node 0: [mem 0x0000000000100000-0x000000008a26ffff]
[ 0.009693] node 0: [mem 0x000000008dc0e000-0x000000008dc0efff]
[ 0.009694] node 0: [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009697] Initmem setup node 0 [mem 0x0000000000001000-0x000000046dffffff]
[ 0.009701] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009722] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012563] On node 0, zone DMA32: 14750 pages in unavailable ranges
[ 0.029840] On node 0, zone Normal: 9201 pages in unavailable ranges
[ 0.029933] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.031140] ACPI: PM-Timer IO Port: 0x1808
[ 0.031146] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031148] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031149] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031150] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031150] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031151] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031152] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031153] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031213] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.031215] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031217] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031221] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.031222] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031228] e820: update [mem 0x86b6d000-0x86bdffff] usable ==> reserved
[ 0.031241] TSC deadline timer available
[ 0.031245] CPU topo: Max. logical packages: 1
[ 0.031246] CPU topo: Max. logical dies: 1
[ 0.031247] CPU topo: Max. dies per package: 1
[ 0.031251] CPU topo: Max. threads per core: 1
[ 0.031252] CPU topo: Num. cores per package: 8
[ 0.031253] CPU topo: Num. threads per package: 8
[ 0.031253] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
[ 0.031266] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031268] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.031270] PM: hibernation: Registered nosave memory: [mem 0x7bf0f000-0x7bf0ffff]
[ 0.031272] PM: hibernation: Registered nosave memory: [mem 0x7bf1d000-0x7bf1dfff]
[ 0.031272] PM: hibernation: Registered nosave memory: [mem 0x7bf1e000-0x7bf1efff]
[ 0.031274] PM: hibernation: Registered nosave memory: [mem 0x7bf3c000-0x7bf3cfff]
[ 0.031275] PM: hibernation: Registered nosave memory: [mem 0x86b6d000-0x86bdffff]
[ 0.031277] PM: hibernation: Registered nosave memory: [mem 0x88b80000-0x88b80fff]
[ 0.031278] PM: hibernation: Registered nosave memory: [mem 0x8a270000-0x8a6a4fff]
[ 0.031279] PM: hibernation: Registered nosave memory: [mem 0x8a6a5000-0x8a721fff]
[ 0.031280] PM: hibernation: Registered nosave memory: [mem 0x8a722000-0x8ab95fff]
[ 0.031280] PM: hibernation: Registered nosave memory: [mem 0x8ab96000-0x8dc0dfff]
[ 0.031282] PM: hibernation: Registered nosave memory: [mem 0x8dc0f000-0x8fffffff]
[ 0.031283] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfdffffff]
[ 0.031283] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.031284] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.031285] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.031285] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.031286] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.031287] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.031287] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.031288] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.031289] [mem 0x90000000-0xfdffffff] available for PCI devices
[ 0.031290] Booting paravirtualized kernel on bare hardware
[ 0.031292] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.037700] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.038109] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[ 0.038115] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[ 0.038118] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
[ 0.038137] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.038198] DMAR: IOMMU enabled
[ 0.038222] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[ 0.039426] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.040023] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.040120] Fallback order for Node 0: 0
[ 0.040123] Built 1 zonelists, mobility grouping on. Total pages: 4162063
[ 0.040124] Policy zone: Normal
[ 0.040293] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.040300] software IO TLB: area num 8.
[ 0.082375] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.082412] ftrace: allocating 51626 entries in 202 pages
[ 0.103516] ftrace: allocated 202 pages with 4 groups
[ 0.103591] Dynamic Preempt: full
[ 0.103636] rcu: Preemptible hierarchical RCU implementation.
[ 0.103637] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.103638] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.103639] Trampoline variant of Tasks RCU enabled.
[ 0.103640] Rude variant of Tasks RCU enabled.
[ 0.103640] Tracing variant of Tasks RCU enabled.
[ 0.103641] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.103641] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.103647] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.103649] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.103650] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.109390] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[ 0.109678] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.110076] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.110108] Console: colour dummy device 80x25
[ 0.110110] printk: legacy console [tty0] enabled
[ 0.110159] ACPI: Core revision 20240827
[ 0.110404] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.110467] APIC: Switch to symmetric I/O mode setup
[ 0.110469] DMAR: Host address width 39
[ 0.110470] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.110476] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.110478] DMAR: RMRR base: 0x0000008b72e000 end: 0x0000008b977fff
[ 0.110481] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.110482] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.110484] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.113506] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.113507] x2apic enabled
[ 0.113576] APIC: Switched APIC routing to: cluster x2apic
[ 0.122710] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
[ 0.122715] Calibrating delay loop (skipped), value calculated using timer frequency.. 6002.00 BogoMIPS (lpj=10000000)
[ 0.122737] x86/cpu: SGX disabled or unsupported by BIOS.
[ 0.122744] CPU0: Thermal monitoring enabled (TM1)
[ 0.122798] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.122799] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.122803] process: using mwait in idle threads
[ 0.122805] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.122807] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[ 0.122808] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.122809] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.122809] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.122810] RETBleed: Mitigation: Enhanced IBRS
[ 0.122812] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.122813] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.122818] TAA: Mitigation: TSX disabled
[ 0.122819] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.122822] SRBDS: Mitigation: Microcode
[ 0.122827] GDS: Mitigation: Microcode
[ 0.122831] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.122832] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.122833] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.122834] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.122835] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.122836] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.122838] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.122839] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.122840] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.126046] Freeing SMP alternatives memory: 40K
[ 0.126046] pid_max: default: 32768 minimum: 301
[ 0.126046] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.126046] landlock: Up and running.
[ 0.126046] Yama: becoming mindful.
[ 0.126046] LSM support for eBPF active
[ 0.126046] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126046] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126046] smpboot: CPU0: Intel(R) Core(TM) i7-9700F CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[ 0.126046] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.126046] ... version: 4
[ 0.126046] ... bit width: 48
[ 0.126046] ... generic registers: 8
[ 0.126046] ... value mask: 0000ffffffffffff
[ 0.126046] ... max period: 00007fffffffffff
[ 0.126046] ... fixed-purpose events: 3
[ 0.126046] ... event mask: 00000007000000ff
[ 0.126046] signal: max sigframe size: 2032
[ 0.126046] Estimated ratio of average max frequency by base frequency (times 1024): 1570
[ 0.126046] rcu: Hierarchical SRCU implementation.
[ 0.126046] rcu: Max phase no-delay instances is 1000.
[ 0.126046] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.126046] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.126046] smp: Bringing up secondary CPUs ...
[ 0.126046] smpboot: x86: Booting SMP configuration:
[ 0.126046] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.129431] smp: Brought up 1 node, 8 CPUs
[ 0.129431] smpboot: Total of 8 processors activated (48019.00 BogoMIPS)
[ 0.131425] Memory: 16201524K/16648252K available (18432K kernel code, 2692K rwdata, 14432K rodata, 4292K init, 3948K bss, 431572K reserved, 0K cma-reserved)
[ 0.132791] devtmpfs: initialized
[ 0.132791] x86/mm: Memory block size: 128MB
[ 0.133881] ACPI: PM: Registering ACPI NVS region [mem 0x8a722000-0x8ab95fff] (4669440 bytes)
[ 0.133881] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.133881] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.133881] pinctrl core: initialized pinctrl subsystem
[ 0.133881] PM: RTC time: 17:52:19, date: 2025-01-13
[ 0.133881] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.133881] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.133991] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.134103] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.134109] audit: initializing netlink subsys (disabled)
[ 0.134164] audit: type=2000 audit(1736790739.000:1): state=initialized audit_enabled=0 res=1
[ 0.134164] thermal_sys: Registered thermal governor 'fair_share'
[ 0.134164] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.134164] thermal_sys: Registered thermal governor 'step_wise'
[ 0.134164] thermal_sys: Registered thermal governor 'user_space'
[ 0.134164] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.134164] cpuidle: using governor ladder
[ 0.134164] cpuidle: using governor menu
[ 0.134164] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.134164] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.134164] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.134164] PCI: Using configuration type 1 for base access
[ 0.134164] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.136983] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.136983] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.136983] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.136983] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.136983] fbcon: Taking over console
[ 0.136983] ACPI: Added _OSI(Module Device)
[ 0.136983] ACPI: Added _OSI(Processor Device)
[ 0.136983] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.136983] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.191500] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.198430] ACPI: Dynamic OEM Table Load:
[ 0.198430] ACPI: SSDT 0xFFFF98694100B400 000400 (v02 HPQOEM SLIC-CPC 00003001 INTL 20160527)
[ 0.199935] ACPI: Dynamic OEM Table Load:
[ 0.199941] ACPI: SSDT 0xFFFF986941002800 000605 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.200969] ACPI: Dynamic OEM Table Load:
[ 0.200973] ACPI: SSDT 0xFFFF986941035000 0000F4 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.201906] ACPI: Dynamic OEM Table Load:
[ 0.201910] ACPI: SSDT 0xFFFF98694184C000 000149 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.202804] ACPI: Dynamic OEM Table Load:
[ 0.202808] ACPI: SSDT 0xFFFF986941004800 000724 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.203930] ACPI: Dynamic OEM Table Load:
[ 0.203935] ACPI: SSDT 0xFFFF986941001800 0005FC (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.204974] ACPI: Dynamic OEM Table Load:
[ 0.204979] ACPI: SSDT 0xFFFF986941009C00 000317 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.206017] ACPI: Dynamic OEM Table Load:
[ 0.206021] ACPI: SSDT 0xFFFF9869418C4000 000AB0 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.207580] ACPI: Dynamic OEM Table Load:
[ 0.207584] ACPI: SSDT 0xFFFF986941008400 00030A (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.211758] ACPI: EC: EC started
[ 0.211759] ACPI: EC: interrupt blocked
[ 0.212346] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.212349] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.212350] ACPI: Interpreter enabled
[ 0.212387] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.212389] ACPI: Using IOAPIC for interrupt routing
[ 0.213593] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.213594] PCI: Ignoring E820 reservations for host bridge windows
[ 0.214772] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.231504] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.231655] ACPI: \_SB_.PCI0.PAUD: New power resource
[ 0.234076] ACPI: \SPR2: New power resource
[ 0.234248] ACPI: \SPR3: New power resource
[ 0.234545] ACPI: \ZPDR: New power resource
[ 0.234788] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.234989] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.235184] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.240773] ACPI: \_SB_.PCI0.I2C1.PXTC: New power resource
[ 0.247204] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.252308] ACPI: \_TZ_.FN00: New power resource
[ 0.252375] ACPI: \_TZ_.FN01: New power resource
[ 0.252440] ACPI: \_TZ_.FN02: New power resource
[ 0.252502] ACPI: \_TZ_.FN03: New power resource
[ 0.252564] ACPI: \_TZ_.FN04: New power resource
[ 0.253020] ACPI: \PIN_: New power resource
[ 0.253174] ACPI: \SPR0: New power resource
[ 0.253229] ACPI: \SPR1: New power resource
[ 0.253284] ACPI: \SPR5: New power resource
[ 0.253828] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.253836] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.257098] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.257100] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.258284] PCI host bridge to bus 0000:00
[ 0.258288] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.258291] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.258292] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.258294] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.258295] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[ 0.258297] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.258298] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.258390] pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000 conventional PCI endpoint
[ 0.258459] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[ 0.258471] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.258474] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.258476] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.258481] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.258506] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.259104] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.259113] pci 0000:00:08.0: BAR 0 [mem 0xa0922000-0xa0922fff 64bit]
[ 0.259285] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.259317] pci 0000:00:12.0: BAR 0 [mem 0xa0921000-0xa0921fff 64bit]
[ 0.259580] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.259615] pci 0000:00:14.0: BAR 0 [mem 0xa0900000-0xa090ffff 64bit]
[ 0.259755] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.260460] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.260490] pci 0000:00:14.2: BAR 0 [mem 0xa0916000-0xa0917fff 64bit]
[ 0.260509] pci 0000:00:14.2: BAR 2 [mem 0xa0920000-0xa0920fff 64bit]
[ 0.260660] pci 0000:00:14.5: [8086:a375] type 00 class 0x080501 conventional PCI endpoint
[ 0.260691] pci 0000:00:14.5: BAR 0 [mem 0xa091f000-0xa091ffff 64bit]
[ 0.261523] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.262097] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.265051] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.265626] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.268232] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.268264] pci 0000:00:16.0: BAR 0 [mem 0xa091c000-0xa091cfff 64bit]
[ 0.268383] pci 0000:00:16.0: PME# supported from D3hot
[ 0.269018] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
[ 0.269046] pci 0000:00:17.0: BAR 0 [mem 0xa0914000-0xa0915fff]
[ 0.269062] pci 0000:00:17.0: BAR 1 [mem 0xa091b000-0xa091b0ff]
[ 0.269077] pci 0000:00:17.0: BAR 2 [io 0x6050-0x6057]
[ 0.269092] pci 0000:00:17.0: BAR 3 [io 0x6040-0x6043]
[ 0.269107] pci 0000:00:17.0: BAR 4 [io 0x6020-0x603f]
[ 0.269122] pci 0000:00:17.0: BAR 5 [mem 0xa091a000-0xa091a7ff]
[ 0.269204] pci 0000:00:17.0: PME# supported from D3hot
[ 0.269672] pci 0000:00:1c.0: [8086:a33d] type 01 class 0x060400 PCIe Root Port
[ 0.269730] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.269737] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.269742] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.269887] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.269929] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.270793] pci 0000:00:1c.7: [8086:a33f] type 01 class 0x060400 PCIe Root Port
[ 0.270851] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.270858] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.270863] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.271005] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 0.271048] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 0.271844] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.271901] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.271913] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.272070] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.272122] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.273361] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000 conventional PCI endpoint
[ 0.273935] pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.276564] pci 0000:00:1f.0: [8086:a304] type 00 class 0x060100 conventional PCI endpoint
[ 0.277128] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.277188] pci 0000:00:1f.3: BAR 0 [mem 0xa0910000-0xa0913fff 64bit]
[ 0.277263] pci 0000:00:1f.3: BAR 4 [mem 0xa0200000-0xa02fffff 64bit]
[ 0.277412] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.278814] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.278988] pci 0000:00:1f.4: BAR 0 [mem 0xa0918000-0xa09180ff 64bit]
[ 0.279202] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.279696] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.279722] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.279909] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.279920] pci 0000:01:00.0: BAR 0 [mem 0xa0500000-0xa0503fff]
[ 0.279932] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.279938] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.279940] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.279948] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.280015] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.280063] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.280158] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.280199] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.280221] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.280225] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.280228] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.280236] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.280303] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.280424] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.280470] pci 0000:03:00.0: [1002:73ff] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.280484] pci 0000:03:00.0: BAR 0 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.280493] pci 0000:03:00.0: BAR 2 [mem 0xa0000000-0xa01fffff 64bit pref]
[ 0.280499] pci 0000:03:00.0: BAR 4 [io 0x5000-0x50ff]
[ 0.280505] pci 0000:03:00.0: BAR 5 [mem 0xa0300000-0xa03fffff]
[ 0.280511] pci 0000:03:00.0: ROM [mem 0xa0400000-0xa041ffff pref]
[ 0.280583] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.280641] pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.280715] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.280724] pci 0000:03:00.1: BAR 0 [mem 0xa0420000-0xa0423fff]
[ 0.280796] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.280886] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.281048] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.281076] pci 0000:04:00.0: BAR 0 [io 0x4000-0x40ff]
[ 0.281113] pci 0000:04:00.0: BAR 2 [mem 0xa0804000-0xa0804fff 64bit]
[ 0.281136] pci 0000:04:00.0: BAR 4 [mem 0xa0800000-0xa0803fff 64bit]
[ 0.281293] pci 0000:04:00.0: supports D1 D2
[ 0.281294] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.281594] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.281748] pci 0000:05:00.0: [10ec:c821] type 00 class 0x028000 PCIe Endpoint
[ 0.281774] pci 0000:05:00.0: BAR 0 [io 0x3000-0x30ff]
[ 0.281807] pci 0000:05:00.0: BAR 2 [mem 0xa0700000-0xa070ffff 64bit]
[ 0.281988] pci 0000:05:00.0: supports D1 D2
[ 0.281989] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.282368] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.282738] pci 0000:06:00.0: [8086:f1a8] type 00 class 0x010802 PCIe Endpoint
[ 0.282773] pci 0000:06:00.0: BAR 0 [mem 0xa0600000-0xa0603fff 64bit]
[ 0.283322] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.285605] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.285690] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.285772] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.285854] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.285935] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.286016] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.286100] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.286182] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.291529] ACPI: EC: interrupt unblocked
[ 0.291531] ACPI: EC: event unblocked
[ 0.291543] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.291544] ACPI: EC: GPE=0xb
[ 0.291546] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.291548] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.291600] iommu: Default domain type: Translated
[ 0.291600] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.291600] SCSI subsystem initialized
[ 0.291600] libata version 3.00 loaded.
[ 0.291600] ACPI: bus type USB registered
[ 0.291600] usbcore: registered new interface driver usbfs
[ 0.291600] usbcore: registered new interface driver hub
[ 0.291600] usbcore: registered new device driver usb
[ 0.291600] EDAC MC: Ver: 3.0.0
[ 0.293014] efivars: Registered efivars operations
[ 0.293014] NetLabel: Initializing
[ 0.293014] NetLabel: domain hash size = 128
[ 0.293014] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.293014] NetLabel: unlabeled traffic allowed by default
[ 0.293014] mctp: management component transport protocol core
[ 0.293014] NET: Registered PF_MCTP protocol family
[ 0.293014] PCI: Using ACPI for IRQ routing
[ 0.377657] PCI: pci_cache_line_size set to 64 bytes
[ 0.378257] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.378268] e820: reserve RAM buffer [mem 0x7bf0f018-0x7bffffff]
[ 0.378269] e820: reserve RAM buffer [mem 0x7bf1e018-0x7bffffff]
[ 0.378270] e820: reserve RAM buffer [mem 0x86b6d000-0x87ffffff]
[ 0.378271] e820: reserve RAM buffer [mem 0x88b80000-0x8bffffff]
[ 0.378273] e820: reserve RAM buffer [mem 0x8a270000-0x8bffffff]
[ 0.378274] e820: reserve RAM buffer [mem 0x8dc0f000-0x8fffffff]
[ 0.378274] e820: reserve RAM buffer [mem 0x46e000000-0x46fffffff]
[ 0.378305] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.378305] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.378305] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.378305] vgaarb: loaded
[ 0.379382] clocksource: Switched to clocksource tsc-early
[ 0.379393] VFS: Disk quotas dquot_6.6.0
[ 0.379393] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.379393] pnp: PnP ACPI init
[ 0.379393] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[ 0.380779] system 00:01: [io 0x0a00-0x0a0f] has been reserved
[ 0.380782] system 00:01: [io 0x0a10-0x0a1f] has been reserved
[ 0.380783] system 00:01: [io 0x0a20-0x0a2f] has been reserved
[ 0.380785] system 00:01: [io 0x0a30-0x0a3f] has been reserved
[ 0.380786] system 00:01: [io 0x0a40-0x0a4f] has been reserved
[ 0.380787] system 00:01: [io 0x0a50-0x0a5f] has been reserved
[ 0.380789] system 00:01: [io 0x0a60-0x0a6f] has been reserved
[ 0.380790] system 00:01: [io 0x0a70-0x0a7f] has been reserved
[ 0.380791] system 00:01: [io 0x0a80-0x0a8f] has been reserved
[ 0.380793] system 00:01: [io 0x0a90-0x0b8e] has been reserved
[ 0.380794] system 00:01: [io 0x0aa0-0x0aaf] has been reserved
[ 0.380795] system 00:01: [io 0x0ab0-0x0abf] has been reserved
[ 0.380797] system 00:01: [io 0x0ac0-0x0acf] has been reserved
[ 0.380798] system 00:01: [io 0x0ad0-0x0adf] has been reserved
[ 0.381188] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.381190] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.381308] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.381478] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.381480] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.381482] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.381484] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.381485] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.381487] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.381488] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.381490] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.381723] system 00:05: [io 0x1800-0x18fe] could not be reserved
[ 0.381726] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.381728] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.381730] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.381731] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.381733] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.381735] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.382044] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.384159] pnp: PnP ACPI: found 8 devices
[ 0.389609] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.389661] NET: Registered PF_INET protocol family
[ 0.389788] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.404398] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.404424] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.404482] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.404697] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.404918] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.404999] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.405067] UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.405145] UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.405226] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.405234] NET: Registered PF_XDP protocol family
[ 0.405247] pci 0000:00:15.0: BAR 0 [mem 0xa0919000-0xa0919fff 64bit]: assigned
[ 0.405520] pci 0000:00:15.1: BAR 0 [mem 0xa091d000-0xa091dfff 64bit]: assigned
[ 0.405788] pci 0000:00:1e.0: BAR 0 [mem 0xa091e000-0xa091efff 64bit]: assigned
[ 0.406057] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.406063] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.406073] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.406076] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406081] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.406083] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.406086] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.406089] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406093] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.406094] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.406097] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.406099] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406102] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.406110] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.406117] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.406131] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.406134] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.406141] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.406154] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.406160] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.406174] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.406176] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.406177] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.406179] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.406180] pci_bus 0000:00: resource 8 [mem 0x90000000-0xdfffffff window]
[ 0.406181] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 0.406183] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.406184] pci_bus 0000:01: resource 1 [mem 0xa0300000-0xa05fffff]
[ 0.406185] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406187] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.406188] pci_bus 0000:02: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.406189] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406191] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.406192] pci_bus 0000:03: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.406193] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.406195] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
[ 0.406196] pci_bus 0000:04: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.406197] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[ 0.406198] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.406200] pci_bus 0000:06: resource 1 [mem 0xa0600000-0xa06fffff]
[ 0.406817] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.406882] PCI: CLS 64 bytes, default 64
[ 0.406945] DMAR: No ATSR found
[ 0.406946] DMAR: No SATC found
[ 0.406947] DMAR: dmar0: Using Queued invalidation
[ 0.406972] Trying to unpack rootfs image as initramfs...
[ 0.406999] pci 0000:00:00.0: Adding to iommu group 0
[ 0.407012] pci 0000:00:01.0: Adding to iommu group 1
[ 0.407020] pci 0000:00:08.0: Adding to iommu group 2
[ 0.407031] pci 0000:00:12.0: Adding to iommu group 3
[ 0.407050] pci 0000:00:14.0: Adding to iommu group 4
[ 0.407058] pci 0000:00:14.2: Adding to iommu group 4
[ 0.407066] pci 0000:00:14.5: Adding to iommu group 4
[ 0.407080] pci 0000:00:15.0: Adding to iommu group 5
[ 0.407088] pci 0000:00:15.1: Adding to iommu group 5
[ 0.407099] pci 0000:00:16.0: Adding to iommu group 6
[ 0.407107] pci 0000:00:17.0: Adding to iommu group 7
[ 0.407123] pci 0000:00:1c.0: Adding to iommu group 8
[ 0.407134] pci 0000:00:1c.7: Adding to iommu group 9
[ 0.407149] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.407161] pci 0000:00:1e.0: Adding to iommu group 11
[ 0.407183] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.407192] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.407201] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.407210] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.407214] pci 0000:01:00.0: Adding to iommu group 1
[ 0.407218] pci 0000:02:00.0: Adding to iommu group 1
[ 0.407223] pci 0000:03:00.0: Adding to iommu group 1
[ 0.407227] pci 0000:03:00.1: Adding to iommu group 1
[ 0.407242] pci 0000:04:00.0: Adding to iommu group 13
[ 0.407261] pci 0000:05:00.0: Adding to iommu group 14
[ 0.407272] pci 0000:06:00.0: Adding to iommu group 15
[ 0.408039] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.408040] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.408041] software IO TLB: mapped [mem 0x0000000082b6d000-0x0000000086b6d000] (64MB)
[ 0.408089] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.420110] Initialise system trusted keyrings
[ 0.420117] Key type blacklist registered
[ 0.420151] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.420236] fuse: init (API version 7.41)
[ 0.420298] integrity: Platform Keyring initialized
[ 0.420300] integrity: Machine keyring initialized
[ 0.431268] Key type asymmetric registered
[ 0.431269] Asymmetric key parser 'x509' registered
[ 0.431284] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.431324] io scheduler mq-deadline registered
[ 0.431325] io scheduler kyber registered
[ 0.431334] io scheduler bfq registered
[ 0.431481] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.431692] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.431932] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[ 0.432006] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[ 0.432062] pcieport 0000:00:1c.0: DPC: enabled with IRQ 122
[ 0.432064] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432407] pcieport 0000:00:1c.7: PME: Signaling with IRQ 123
[ 0.432476] pcieport 0000:00:1c.7: AER: enabled with IRQ 123
[ 0.432516] pcieport 0000:00:1c.7: DPC: enabled with IRQ 123
[ 0.432517] pcieport 0000:00:1c.7: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432813] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.432876] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.432914] pcieport 0000:00:1d.0: DPC: enabled with IRQ 124
[ 0.432915] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.433313] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.433831] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.433851] ACPI: button: Sleep Button [SLPB]
[ 0.433873] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.433886] ACPI: button: Power Button [PWRB]
[ 0.433910] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.434074] ACPI: button: Power Button [PWRF]
[ 0.436096] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.436099] ACPI: thermal: Thermal Zone [HPTZ] (30 C)
[ 0.436396] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.436398] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.436604] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.438470] hpet_acpi_add: no address or irqs in _CRS
[ 0.438505] Non-volatile memory driver v1.3
[ 0.438506] Linux agpgart interface v0.103
[ 0.470706] Freeing initrd memory: 21264K
[ 0.571479] ACPI: bus type drm_connector registered
[ 0.572381] ahci 0000:00:17.0: version 3.0
[ 0.582725] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.582729] ahci 0000:00:17.0: 4/4 ports implemented (port mask 0x3c)
[ 0.582731] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.603348] scsi host0: ahci
[ 0.603665] scsi host1: ahci
[ 0.603971] scsi host2: ahci
[ 0.604120] scsi host3: ahci
[ 0.604234] scsi host4: ahci
[ 0.604430] scsi host5: ahci
[ 0.604462] ata1: DUMMY
[ 0.604463] ata2: DUMMY
[ 0.604468] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126 lpm-pol 3
[ 0.604471] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126 lpm-pol 3
[ 0.604474] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126 lpm-pol 3
[ 0.604477] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126 lpm-pol 3
[ 0.604731] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.604736] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.605870] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 0.606161] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.606164] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.606166] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.606202] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.606205] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.606206] usb usb1: Product: xHCI Host Controller
[ 0.606207] usb usb1: Manufacturer: Linux 6.13.0-rc7-1.1-mainline-dirty xhci-hcd
[ 0.606209] usb usb1: SerialNumber: 0000:00:14.0
[ 0.606362] hub 1-0:1.0: USB hub found
[ 0.606382] hub 1-0:1.0: 16 ports detected
[ 0.608093] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.608097] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.608098] usb usb2: Product: xHCI Host Controller
[ 0.608100] usb usb2: Manufacturer: Linux 6.13.0-rc7-1.1-mainline-dirty xhci-hcd
[ 0.608101] usb usb2: SerialNumber: 0000:00:14.0
[ 0.608201] hub 2-0:1.0: USB hub found
[ 0.608215] hub 2-0:1.0: 8 ports detected
[ 0.608983] usb: port power management may be unreliable
[ 0.609306] usbcore: registered new interface driver usbserial_generic
[ 0.609310] usbserial: USB Serial support registered for generic
[ 0.609431] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.610997] rtc_cmos rtc_cmos: registered as rtc0
[ 0.611309] rtc_cmos rtc_cmos: setting system clock to 2025-01-13T17:52:20 UTC (1736790740)
[ 0.611340] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.611669] intel_pstate: Intel P-state driver initializing
[ 0.612279] intel_pstate: Disabling energy efficiency optimization
[ 0.612280] intel_pstate: HWP enabled
[ 0.612531] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.612532] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.622390] Console: switching to colour frame buffer device 240x67
[ 0.633893] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.634025] hid: raw HID events driver (C) Jiri Kosina
[ 0.634097] drop_monitor: Initializing network drop monitor service
[ 0.634182] NET: Registered PF_INET6 protocol family
[ 0.638876] Segment Routing with IPv6
[ 0.638877] RPL Segment Routing with IPv6
[ 0.638884] In-situ OAM (IOAM) with IPv6
[ 0.638901] NET: Registered PF_PACKET protocol family
[ 0.640334] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.640545] microcode: Current revision: 0x00000100
[ 0.640546] microcode: Updated early from: 0x000000fa
[ 0.640801] IPI shorthand broadcast: enabled
[ 0.641835] sched_clock: Marking stable (628058299, 12731955)->(668724686, -27934432)
[ 0.642039] registered taskstats version 1
[ 0.642619] Loading compiled-in X.509 certificates
[ 0.646144] Loaded X.509 cert 'Build time autogenerated kernel key: 8c3af276a3f521176c68e087cb8b2ded522c945b'
[ 0.647185] Demotion targets for Node 0: null
[ 0.647340] Key type .fscrypt registered
[ 0.647341] Key type fscrypt-provisioning registered
[ 0.648657] integrity: Loading X.509 certificate: UEFI:db
[ 0.648670] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.648671] integrity: Loading X.509 certificate: UEFI:db
[ 0.648682] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.648683] integrity: Loading X.509 certificate: UEFI:db
[ 0.648692] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.650275] PM: Magic number: 9:89:896
[ 0.652406] RAS: Correctable Errors collector initialized.
[ 0.658591] clk: Disabling unused clocks
[ 0.658592] PM: genpd: Disabling unused power domains
[ 0.849504] usb 1-10: new high-speed USB device number 2 using xhci_hcd
[ 0.947084] ata6: SATA link down (SStatus 4 SControl 300)
[ 0.947152] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.947222] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.949851] ata5.00: Model 'SAMSUNG MZ7TD256HAFV-000L9', rev 'DXT04L6Q', applying quirks: nolpm
[ 0.949862] ata5.00: LPM support broken, forcing max_power
[ 0.949988] ata5.00: supports DRM functions and may not be fully accessible
[ 0.949995] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 0.950100] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.950305] ata5.00: NCQ Send/Recv Log not supported
[ 0.950312] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.952281] ata5.00: Features: Trust Dev-Sleep
[ 0.952636] ata5.00: LPM support broken, forcing max_power
[ 0.952755] ata5.00: supports DRM functions and may not be fully accessible
[ 0.953047] ata5.00: NCQ Send/Recv Log not supported
[ 0.955073] ata5.00: configured for UDMA/133
[ 0.957562] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 0.958253] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.965468] ahci 0000:00:17.0: port does not support device sleep
[ 0.966644] ata3.00: configured for UDMA/133
[ 0.966897] scsi 2:0:0:0: Direct-Access ATA WDC WD20EARX-00P AB51 PQ: 0 ANSI: 5
[ 0.967447] sd 2:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 0.967456] sd 2:0:0:0: [sda] 4096-byte physical blocks
[ 0.967471] sd 2:0:0:0: [sda] Write Protect is off
[ 0.967476] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.967497] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.967533] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.967716] scsi 4:0:0:0: Direct-Access ATA SAMSUNG MZ7TD256 4L6Q PQ: 0 ANSI: 5
[ 0.968186] sd 4:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 0.968207] sd 4:0:0:0: [sdb] Write Protect is off
[ 0.968211] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.968231] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.968279] sd 4:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 0.980114] usb 1-10: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00
[ 0.980127] usb 1-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.981865] hub 1-10:1.0: USB hub found
[ 0.981989] hub 1-10:1.0: 4 ports detected
[ 0.985893] sdb: sdb1 sdb2 sdb3 sdb4
[ 0.986889] sd 4:0:0:0: [sdb] supports TCG Opal
[ 0.986897] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 0.990433] sda: sda1
[ 0.990682] sd 2:0:0:0: [sda] Attached SCSI disk
[ 0.993138] Freeing unused decrypted memory: 2028K
[ 0.994092] Freeing unused kernel image (initmem) memory: 4292K
[ 0.994133] Write protecting the kernel read-only data: 34816k
[ 0.995618] Freeing unused kernel image (rodata/data gap) memory: 1952K
[ 1.003947] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.003949] rodata_test: all tests were successful
[ 1.003952] Run /init as init process
[ 1.003953] with arguments:
[ 1.003953] /init
[ 1.003954] with environment:
[ 1.003955] HOME=/
[ 1.003955] TERM=linux
[ 1.099405] usb 1-14: new full-speed USB device number 3 using xhci_hcd
[ 1.211316] sdhci: Secure Digital Host Controller Interface driver
[ 1.211318] sdhci: Copyright(c) Pierre Ossman
[ 1.216480] nvme nvme0: pci function 0000:06:00.0
[ 1.218438] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.218453] sdhci-pci 0000:00:14.5: enabling device (0100 -> 0102)
[ 1.225671] nvme nvme0: 8/0/0 default/read/poll queues
[ 1.228761] nvme0n1: p1 p2
[ 1.228873] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.233692] usb 1-14: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
[ 1.233694] usb 1-14: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.233696] usb 1-14: Product: Bluetooth Radio
[ 1.233697] usb 1-14: Manufacturer: Realtek
[ 1.233697] usb 1-14: SerialNumber: 00e04c000001
[ 1.235779] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.316167] usb 1-10.3: new low-speed USB device number 4 using xhci_hcd
[ 1.415377] usb 1-10.3: New USB device found, idVendor=05d5, idProduct=0615, bcdDevice= 1.01
[ 1.415392] usb 1-10.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.415398] usb 1-10.3: Product: KEYBOARD
[ 1.422121] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.429512] tsc: Refined TSC clocksource calibration: 3000.006 MHz
[ 1.429528] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e4b16716, max_idle_ns: 440795256380 ns
[ 1.429623] clocksource: Switched to clocksource tsc
[ 1.446464] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.451374] usbcore: registered new interface driver usbhid
[ 1.451382] usbhid: USB HID core driver
[ 1.451467] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.465030] input: KEYBOARD as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.0/0003:05D5:0615.0001/input/input3
[ 1.596739] hid-generic 0003:05D5:0615.0001: input,hidraw0: USB HID v1.10 Keyboard [KEYBOARD] on usb-0000:00:14.0-10.3/input0
[ 1.596889] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.597077] input: KEYBOARD Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.1/0003:05D5:0615.0002/input/input4
[ 1.650072] input: KEYBOARD System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.3/1-10.3:1.1/0003:05D5:0615.0002/input/input5
[ 1.650490] hid-generic 0003:05D5:0615.0002: input,hidraw1: USB HID v1.10 Device [KEYBOARD] on usb-0000:00:14.0-10.3/input1
[ 1.650649] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 1.828176] EXT4-fs (nvme0n1p1): mounted filesystem 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w with ordered data mode. Quota mode: none.
[ 2.028314] systemd[1]: systemd 257.2-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 2.028322] systemd[1]: Detected architecture x86-64.
[ 2.031894] systemd[1]: Hostname set to <Ale-Arch>.
[ 2.305730] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 2.560316] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.560322] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.560402] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.561901] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.568454] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.568458] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.568461] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.568507] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.568539] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.570813] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.570816] systemd-fstab-generator[308]: Mount point is not a valid path, ignoring.
[ 2.592870] zram: Added device: zram0
[ 2.847039] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 2.929931] systemd[1]: Queued start job for default target Graphical Interface.
[ 2.961196] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 2.961873] systemd[1]: Created slice Slice /system/backrest.
[ 2.962148] systemd[1]: Created slice CUPS Slice.
[ 2.962458] systemd[1]: Created slice Slice /system/dirmngr.
[ 2.962760] systemd[1]: Created slice Slice /system/getty.
[ 2.963056] systemd[1]: Created slice Slice /system/gpg-agent.
[ 2.963343] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 2.963634] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 2.963921] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 2.964217] systemd[1]: Created slice Slice /system/keyboxd.
[ 2.964515] systemd[1]: Created slice Slice /system/modprobe.
[ 2.964809] systemd[1]: Created slice Slice /system/nut-driver.
[ 2.965096] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 2.965388] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 2.965573] systemd[1]: Created slice User and Session Slice.
[ 2.965623] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 2.965733] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 2.965755] systemd[1]: Expecting device /dev/disk/by-uuid/0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee...
[ 2.965765] systemd[1]: Expecting device /dev/disk/by-uuid/CAB7-E233...
[ 2.965774] systemd[1]: Expecting device /dev/zram0...
[ 2.965790] systemd[1]: Reached target Login Prompts.
[ 2.965803] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 2.965830] systemd[1]: Reached target Remote File Systems.
[ 2.965906] systemd[1]: Reached target Slice Units.
[ 2.965945] systemd[1]: Reached target System Time Set.
[ 2.966011] systemd[1]: Reached target Local Verity Protected Volumes.
[ 2.966095] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 2.966181] systemd[1]: Listening on LVM2 poll daemon socket.
[ 2.968560] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 2.968592] systemd[1]: Reached target RPC Port Mapper.
[ 2.973881] systemd[1]: Listening on Process Core Dump Socket.
[ 2.974671] systemd[1]: Listening on Credential Encryption/Decryption.
[ 2.974749] systemd[1]: Listening on Journal Socket (/dev/log).
[ 2.974907] systemd[1]: Listening on Journal Sockets.
[ 2.975056] systemd[1]: Listening on Network Service Netlink Socket.
[ 2.975780] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 2.975843] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.975858] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.975912] systemd[1]: Listening on udev Control Socket.
[ 2.976706] systemd[1]: Listening on udev Kernel Socket.
[ 2.978534] systemd[1]: Mounting Huge Pages File System...
[ 2.979769] systemd[1]: Mounting POSIX Message Queue File System...
[ 2.980535] systemd[1]: Mounting NFSD configuration filesystem...
[ 2.981423] systemd[1]: Mounting Kernel Debug File System...
[ 2.982186] systemd[1]: Mounting Kernel Trace File System...
[ 2.982613] systemd[1]: Load AppArmor profiles was skipped because of an unmet condition check (ConditionSecurity=apparmor).
[ 2.982652] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 2.983556] systemd[1]: Starting Create List of Static Device Nodes...
[ 2.987299] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 2.988128] systemd[1]: Starting Load Kernel Module configfs...
[ 2.988919] systemd[1]: Starting Load Kernel Module dm_mod...
[ 2.990020] systemd[1]: Starting Load Kernel Module drm...
[ 2.990822] systemd[1]: Starting Load Kernel Module fuse...
[ 2.991852] systemd[1]: Starting Load Kernel Module loop...
[ 2.992662] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 2.992700] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 2.994210] systemd[1]: Starting Journal Service...
[ 2.996478] systemd[1]: Starting Load Kernel Modules...
[ 2.997609] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
[ 2.997631] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.999094] loop: module loaded
[ 2.999202] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 2.999263] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.999936] systemd[1]: Starting Load udev Rules from Credentials...
[ 3.001502] systemd[1]: Starting Coldplug All udev Devices...
[ 3.002843] device-mapper: uevent: version 1.0.3
[ 3.002979] systemd[1]: Starting Virtual Console Setup...
[ 3.002979] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 3.005085] systemd[1]: Mounted Huge Pages File System.
[ 3.005209] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.006790] systemd[1]: Mounted Kernel Debug File System.
[ 3.007894] systemd[1]: Mounted Kernel Trace File System.
[ 3.008866] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.009941] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.010058] systemd[1]: Finished Load Kernel Module configfs.
[ 3.010238] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.010335] systemd[1]: Finished Load Kernel Module dm_mod.
[ 3.011026] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.011128] systemd[1]: Finished Load Kernel Module drm.
[ 3.011912] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.012012] systemd[1]: Finished Load Kernel Module fuse.
[ 3.013927] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.014028] systemd[1]: Finished Load Kernel Module loop.
[ 3.014356] systemd[1]: Finished Load udev Rules from Credentials.
[ 3.016607] systemd[1]: Mounting FUSE Control File System...
[ 3.017171] systemd[1]: Mounting Kernel Configuration File System...
[ 3.018075] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.018939] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 3.020844] systemd[1]: Mounted Kernel Configuration File System.
[ 3.021263] systemd[1]: Mounted FUSE Control File System.
[ 3.029769] EXT4-fs (nvme0n1p1): re-mounted 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w. Quota mode: none.
[ 3.030252] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.030275] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 3.031157] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.031436] systemd[1]: Finished Virtual Console Setup.
[ 3.031597] systemd-journald[347]: Collecting audit messages is disabled.
[ 3.034654] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 3.035183] i2c_dev: i2c /dev entries driver
[ 3.035617] systemd[1]: Starting Load/Save OS Random Seed...
[ 3.035641] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.037815] systemd[1]: Finished Load Kernel Modules.
[ 3.038199] RPC: Registered named UNIX socket transport module.
[ 3.038201] RPC: Registered udp transport module.
[ 3.038201] RPC: Registered tcp transport module.
[ 3.038201] RPC: Registered tcp-with-tls transport module.
[ 3.038202] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.038764] systemd[1]: Starting Apply Kernel Variables...
[ 3.046324] systemd[1]: Finished Load/Save OS Random Seed.
[ 3.047951] systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
[ 3.055137] systemd[1]: Finished Apply Kernel Variables.
[ 3.059376] systemd[1]: Starting CLI Netfilter Manager...
[ 3.067003] systemd[1]: Started Journal Service.
[ 3.078509] systemd-journald[347]: Received client request to flush runtime journal.
[ 3.288496] zram0: detected capacity change from 0 to 32491520
[ 3.306508] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.320803] intel_pmc_core INT33A1:00: initialized
[ 3.320854] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 3.343692] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.343694] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 3.343695] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[ 3.343696] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[ 3.349250] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.349358] mmc0: SDHCI controller on PCI [0000:00:14.5] using ADMA 64-bit
[ 3.351604] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.351712] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 3.353976] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 3.353979] cfg80211: failed to load regulatory.db
[ 3.370730] Adding 16245756k swap on /dev/zram0. Priority:100 extents:1 across:16245756k SSDsc
[ 3.386843] raid6: skipped pq benchmark and selected avx2x4
[ 3.386845] raid6: using avx2x2 recovery algorithm
[ 3.388952] EDAC ie31200: No ECC support
[ 3.388988] EDAC ie31200: No ECC support
[ 3.391110] intel_pch_thermal 0000:00:12.0: enabling device (0100 -> 0102)
[ 3.396012] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 3.399994] xor: automatically using best checksumming function avx
[ 3.404749] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 3.412033] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 3.423542] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 3.423577] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 3.426390] intel-lpss 0000:00:15.1: enabling device (0100 -> 0102)
[ 3.426599] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 3.432393] i2c i2c-1: Successfully instantiated SPD at 0x50
[ 3.440475] intel-lpss 0000:00:1e.0: enabling device (0100 -> 0102)
[ 3.440740] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 3.458368] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 3.537802] iTCO_vendor_support: vendor-support=0
[ 3.537933] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 3.540575] ee1004 1-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 3.541472] Creating 1 MTD partitions on "0000:00:1f.5":
[ 3.541474] 0x000000000000-0x000001000000 : "BIOS"
[ 3.542150] dw-apb-uart.2: ttyS4 at MMIO 0xa091e000 (irq = 20, base_baud = 7500000) is a 16550A
[ 3.551104] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 9c:7b:ef:30:a7:6b, XID 541, IRQ 146
[ 3.551108] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 3.557516] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 3.608059] Bluetooth: Core ver 2.22
[ 3.608087] NET: Registered PF_BLUETOOTH protocol family
[ 3.608088] Bluetooth: HCI device and connection manager initialized
[ 3.608090] Bluetooth: HCI socket layer initialized
[ 3.608092] Bluetooth: L2CAP socket layer initialized
[ 3.608094] Bluetooth: SCO socket layer initialized
[ 3.620137] Btrfs loaded, zoned=yes, fsverity=yes
[ 3.621891] input: HP WMI hotkeys as /devices/virtual/input/input7
[ 3.622496] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 3.622498] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.622499] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.622499] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 3.629502] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 3.629610] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 3.629976] cryptd: max_cpu_qlen set to 1000
[ 3.638383] rtw_8821ce 0000:05:00.0: enabling device (0100 -> 0103)
[ 3.641261] rtw_8821ce 0000:05:00.0: Firmware version 24.11.0, H2C version 12
[ 3.642466] usbcore: registered new interface driver btusb
[ 3.644852] AES CTR mode by8 optimization enabled
[ 3.645833] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 3.646175] snd_hda_intel 0000:03:00.1: enabling device (0100 -> 0102)
[ 3.646269] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 3.651552] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[ 3.652529] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 3.652530] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[ 3.653165] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[ 3.653230] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[ 3.656320] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input8
[ 3.656363] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input9
[ 3.656389] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input10
[ 3.656412] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input11
[ 3.656446] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input12
[ 3.672933] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 3.672938] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 3.672939] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 3.672941] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 3.672941] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 3.672942] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 3.672943] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 3.672944] snd_hda_codec_realtek hdaudioC0D0: Line=0x1b
[ 3.689562] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 3.689617] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 3.689670] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 3.689721] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 3.689772] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 3.694141] rtw_8821ce 0000:05:00.0 wlp5s0: renamed from wlan0
[ 3.755142] intel_tcc_cooling: Programmable TCC Offset detected
[ 4.118633] Bluetooth: hci0: RTL: fw version 0x75b8f098
[ 4.255413] BTRFS: device label DATA devid 1 transid 20440 /dev/sda1 (8:1) scanned by mount (598)
[ 4.259971] BTRFS info (device sda1): first mount of filesystem 0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee
[ 4.259980] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 4.259983] BTRFS info (device sda1): using free-space-tree
[ 6.063298] [drm] amdgpu kernel modesetting enabled.
[ 6.063451] amdgpu: Virtual CRAT table created for CPU
[ 6.063460] amdgpu: Topology: Add CPU node
[ 6.063489] amdgpu: Overdrive is enabled, please disable it before reporting any bugs unrelated to overdrive.
[ 6.065428] amdgpu 0000:03:00.0: enabling device (0106 -> 0107)
[ 6.065564] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1043:0x05D5 0xC7).
[ 6.065608] [drm] register mmio base: 0xA0300000
[ 6.065609] [drm] register mmio size: 1048576
[ 6.070693] [drm] add ip block number 0 <nv_common>
[ 6.070696] [drm] add ip block number 1 <gmc_v10_0>
[ 6.070697] [drm] add ip block number 2 <navi10_ih>
[ 6.070698] [drm] add ip block number 3 <psp>
[ 6.070699] [drm] add ip block number 4 <smu>
[ 6.070700] [drm] add ip block number 5 <dm>
[ 6.070701] [drm] add ip block number 6 <gfx_v10_0>
[ 6.070702] [drm] add ip block number 7 <sdma_v5_2>
[ 6.070703] [drm] add ip block number 8 <vcn_v3_0>
[ 6.070704] [drm] add ip block number 9 <jpeg_v3_0>
[ 6.070728] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 6.070731] amdgpu: ATOM BIOS: 115-D534P00-100
[ 6.115566] intel_rapl_common: Found RAPL domain package
[ 6.115583] intel_rapl_common: Found RAPL domain core
[ 6.115584] intel_rapl_common: Found RAPL domain dram
[ 6.126181] Console: switching to colour dummy device 80x25
[ 6.147272] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 6.147276] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 6.147310] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 6.147317] amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 6.147319] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 6.147332] [drm] Detected VRAM RAM=8176M, BAR=256M
[ 6.147333] [drm] RAM width 128bits GDDR6
[ 6.147483] [drm] amdgpu: 8176M of VRAM memory ready
[ 6.147486] [drm] amdgpu: 7932M of GTT memory ready.
[ 6.147502] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 6.147587] [drm] PCIE GART of 512M enabled (table at 0x0000008002000000).
[ 7.577629] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 7.577846] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 7.578177] [drm] use_doorbell being set to: [true]
[ 7.578187] [drm] use_doorbell being set to: [true]
[ 7.578198] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 3
[ 7.644926] amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 7.747176] amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 7.764188] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 7.764211] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
[ 7.764220] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 7.764257] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 7.810463] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 7.810899] [drm] Display Core v3.2.310 initialized on DCN 3.0.2
[ 7.810901] [drm] DP-HDMI FRL PCON supported
[ 7.812145] [drm] DMUB hardware initialized: version=0x02020020
[ 7.815110] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 8.250509] [drm] kiq ring mec 2 pipe 1 q 0
[ 8.293339] amdgpu: HMM registered 8176MB device memory
[ 8.294691] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 8.294702] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 8.295149] amdgpu: Virtual CRAT table created for GPU
[ 8.295313] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 8.295315] kfd kfd: amdgpu: added device 1002:73ff
[ 8.295331] amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 8.295334] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 8.295335] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 8.295336] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 8.295337] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 8.295338] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 8.295339] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 8.295339] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 8.295340] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 8.295341] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 8.295342] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 8.295342] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 8.295343] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 8.295344] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
[ 8.295345] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 8.295346] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 8.295346] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 8.295347] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
[ 8.296442] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 8.297052] [drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
[ 8.302545] fbcon: amdgpudrmfb (fb0) is primary device
[ 8.302872] [drm] pre_validate_dsc:1593 MST_DSC dsc precompute is not needed
[ 8.608355] Console: switching to colour frame buffer device 240x67
[ 8.643601] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 8.851767] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 8.851770] Bluetooth: BNEP filters: protocol multicast
[ 8.851772] Bluetooth: BNEP socket layer initialized
[ 8.856038] Bluetooth: MGMT ver 1.23
[ 8.860258] NET: Registered PF_ALG protocol family
[ 9.038777] nvme nvme0: using unchecked data buffer
[ 9.098214] block nvme0n1: No UUID available providing old NGUID
[ 9.109508] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[ 9.276286] r8169 0000:04:00.0 enp4s0: Link is Down
[ 9.881822] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 10.024703] u32 classifier
[ 10.024705] Performance counters on
[ 10.024705] input device check on
[ 10.024706] Actions configured
[ 11.982560] kvm: Running KVM with ignore_msrs=1 and report_ignored_msrs=0 is not a
a supported configuration. Lying to the guest about the existence of MSRs
may cause the guest operating system to hang or produce errors. If a guest
does not run without ignore_msrs=1, please report it to kvm@vger.kernel.org.
[ 12.769751] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 12.771418] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 15.219554] RPC: Registered rdma transport module.
[ 15.219557] RPC: Registered rdma backchannel transport module.
[ 15.326918] NFSD: Using nfsdcld client tracking operations.
[ 15.326925] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 15.760300] Initializing XFRM netlink socket
[ 15.856374] warning: `pmdalinux' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-14 16:05 ` Niklas Cassel
@ 2025-01-14 16:40 ` Christian Heusel
2025-01-14 17:51 ` Christian Heusel
0 siblings, 1 reply; 13+ messages in thread
From: Christian Heusel @ 2025-01-14 16:40 UTC (permalink / raw)
To: Niklas Cassel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
[-- Attachment #1: Type: text/plain, Size: 1838 bytes --]
On 25/01/14 05:05PM, Niklas Cassel wrote:
> Hello Christian,
Hello Niklas,
> Looking at the Arch Linux thread, it seems that the person reporting the
> problem says that even on a working kernel, you only see the device the
> user presses the open button on the Blu-Ray player.
>
> This suggests to me that it sends a hotplug/PhyRdy event when the user
> presses the open button.
>
> In Linux, if we don't detect anything connected to the port during initial
> boot, and if the port is not marked (by firmware) as either Hotplug Capable,
> or External, then we mask the PhyRdy interrupt.
>
> We could reconsider this, and leave the PhyRdy interrupt enabled even for a
> port that is not Hotplug Capable or External, if there is no devices detected
> on the port.
>
>
> However, a device should really show up after a COMRESET... A device that
> does not do so seems to be non-spec compliant.
> It would be nice if we could understand why this device does not show up
> after a COMRESET. (If it did, we most likely would not need the workaround
> suggested above.)
>
> Could you please run with this debug prints, which might tell us what is
> going on:
Thanks for investigating this further, I was typing my previous mail and
sent it just after yours because I didn't see it x)
> diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
> <snip-patch>
Building a kernel with the patch applied just now! I will get back to
you once I have heard back from the user.
On a sidenote it seems like your mail client or something converts the
tabs to spaces on these inline patches, which makes them quite hard to
apply for me (I had to manually apply and format-patch).
Could add them as attachment in the future or reply via git send-mail?
> Kind regards,
> Niklas
Cheers,
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-14 16:40 ` Christian Heusel
@ 2025-01-14 17:51 ` Christian Heusel
2025-01-15 18:35 ` Niklas Cassel
0 siblings, 1 reply; 13+ messages in thread
From: Christian Heusel @ 2025-01-14 17:51 UTC (permalink / raw)
To: Niklas Cassel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
[-- Attachment #1.1: Type: text/plain, Size: 2084 bytes --]
On 25/01/14 05:40PM, Christian Heusel wrote:
> On 25/01/14 05:05PM, Niklas Cassel wrote:
> > Hello Christian,
>
> Hello Niklas,
Hello Niklas,
>
> > Looking at the Arch Linux thread, it seems that the person reporting the
> > problem says that even on a working kernel, you only see the device the
> > user presses the open button on the Blu-Ray player.
> >
> > This suggests to me that it sends a hotplug/PhyRdy event when the user
> > presses the open button.
> >
> > In Linux, if we don't detect anything connected to the port during initial
> > boot, and if the port is not marked (by firmware) as either Hotplug Capable,
> > or External, then we mask the PhyRdy interrupt.
> >
> > We could reconsider this, and leave the PhyRdy interrupt enabled even for a
> > port that is not Hotplug Capable or External, if there is no devices detected
> > on the port.
> >
> >
> > However, a device should really show up after a COMRESET... A device that
> > does not do so seems to be non-spec compliant.
> > It would be nice if we could understand why this device does not show up
> > after a COMRESET. (If it did, we most likely would not need the workaround
> > suggested above.)
> >
> > Could you please run with this debug prints, which might tell us what is
> > going on:
>
> Thanks for investigating this further, I was typing my previous mail and
> sent it just after yours because I didn't see it x)
>
> > diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
> > <snip-patch>
>
> Building a kernel with the patch applied just now! I will get back to
> you once I have heard back from the user.
I have attached the dmesg from the boot with the debug patches.
> On a sidenote it seems like your mail client or something converts the
> tabs to spaces on these inline patches, which makes them quite hard to
> apply for me (I had to manually apply and format-patch).
> Could add them as attachment in the future or reply via git send-mail?
>
> > Kind regards,
> > Niklas
>
> Cheers,
> Chris
Cheers,
Chris
[-- Attachment #1.2: linux-mainline-6.13-rc7-1.2-dmesg.log --]
[-- Type: text/plain, Size: 90952 bytes --]
[ 0.000000] Linux version 6.13.0-rc7-1.2-mainline-dirty (linux-mainline@archlinux) (gcc (GCC) 14.2.1 20240910, GNU ld (GNU Binutils) 2.43.1) #1 SMP PREEMPT_DYNAMIC Tue, 14 Jan 2025 16:39:37 +0000
[ 0.000000] Command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000008a26ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x7bf1e018-0x7bf3c457] usable ==> usable
[ 0.000000] e820: update [mem 0x7bf0f018-0x7bf1d057] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007bf0f017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf0f018-0x000000007bf1d057] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1d058-0x000000007bf1e017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf1e018-0x000000007bf3c457] usable
[ 0.000000] reserve setup_data: [mem 0x000000007bf3c458-0x000000008a26ffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008a270000-0x000000008a6a4fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008a6a5000-0x000000008a721fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000008a722000-0x000000008ab95fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000008ab96000-0x000000008dc0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000008dc0e000-0x000000008dc0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000008dc0f000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000046dffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x8a6be000 ACPI=0x8a6be000 TPMFinalLog=0x8ab1e000 SMBIOS=0x8d9a5000 SMBIOS 3.0=0x8d9a4000 MEMATTR=0x86e08098 ESRT=0x88b80398 RNG=0x8a6bdf18 INITRD=0x80e3f298 TPMEventLog=0x8a6b4018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem46: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem47: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem49: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem51: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: HP HP Pavilion Desktop TP01-0xxx/8653, BIOS F.37 10/26/2023
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Detected 3000.000 MHz processor
[ 0.000902] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000905] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000913] last_pfn = 0x46e000 max_arch_pfn = 0x400000000
[ 0.000918] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000920] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001193] last_pfn = 0x8dc0f max_arch_pfn = 0x400000000
[ 0.008646] esrt: Reserving ESRT space from 0x0000000088b80398 to 0x0000000088b80420.
[ 0.008651] e820: update [mem 0x88b80000-0x88b80fff] usable ==> reserved
[ 0.008667] Using GB pages for direct mapping
[ 0.008990] Secure boot disabled
[ 0.008991] RAMDISK: [mem 0x7bf3d000-0x7d400fff]
[ 0.009011] ACPI: Early table checksum verification disabled
[ 0.009014] ACPI: RSDP 0x000000008A6BE000 000024 (v02 HPQOEM)
[ 0.009017] ACPI: XSDT 0x000000008A6BE0C0 0000FC (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009023] ACPI: FACP 0x000000008A704DC8 000114 (v06 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009027] ACPI: DSDT 0x000000008A6BE248 046B7A (v02 HPQOEM SLIC-CPC 01072009 INTL 20160527)
[ 0.009030] ACPI: FACS 0x000000008AB93080 000040
[ 0.009032] ACPI: APIC 0x000000008A704EE0 0000BC (v04 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009035] ACPI: FPDT 0x000000008A704FA0 000044 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009038] ACPI: FIDT 0x000000008A704FE8 00009C (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009041] ACPI: MCFG 0x000000008A705088 00003C (v01 HPQOEM SLIC-CPC 01072009 MSFT 00000097)
[ 0.009043] ACPI: SSDT 0x000000008A7050C8 001B5F (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009046] ACPI: MSDM 0x000000008A706C28 000055 (v03 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009049] ACPI: SSDT 0x000000008A706C80 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009051] ACPI: SSDT 0x000000008A706CE0 000060 (v01 HPQOEM SLIC-CPC 00000001 INTL 20160527)
[ 0.009054] ACPI: SSDT 0x000000008A706D40 0031C6 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.009056] ACPI: SSDT 0x000000008A709F08 00241B (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009059] ACPI: HPET 0x000000008A70C328 000038 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009062] ACPI: SSDT 0x000000008A70C360 001D39 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009064] ACPI: SSDT 0x000000008A70E0A0 000FAE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009067] ACPI: SSDT 0x000000008A70F050 000BDF (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009069] ACPI: UEFI 0x000000008A70FC30 000042 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009072] ACPI: LPIT 0x000000008A70FC78 000094 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009074] ACPI: SSDT 0x000000008A70FD10 0027DE (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009077] ACPI: SSDT 0x000000008A7124F0 0014E2 (v02 HPQOEM SLIC-CPC 00000000 INTL 20160527)
[ 0.009080] ACPI: DBGP 0x000000008A7139D8 000034 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009082] ACPI: DBG2 0x000000008A713A10 000054 (v00 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009085] ACPI: SSDT 0x000000008A713A68 001B67 (v02 HPQOEM SLIC-CPC 00001000 INTL 20160527)
[ 0.009087] ACPI: DMAR 0x000000008A7155D0 000070 (v01 HPQOEM SLIC-CPC 00000002 01000013)
[ 0.009090] ACPI: VFCT 0x000000008A715640 00B284 (v01 HPQOEM SLIC-CPC 00000001 AMD 31504F47)
[ 0.009093] ACPI: BGRT 0x000000008A7208C8 000038 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009095] ACPI: TPM2 0x000000008A720900 000034 (v04 HPQOEM SLIC-CPC 00000001 AMI 00000000)
[ 0.009098] ACPI: WSMT 0x000000008A720938 000028 (v01 HPQOEM SLIC-CPC 01072009 AMI 00010013)
[ 0.009100] ACPI: Reserving FACP table memory at [mem 0x8a704dc8-0x8a704edb]
[ 0.009101] ACPI: Reserving DSDT table memory at [mem 0x8a6be248-0x8a704dc1]
[ 0.009102] ACPI: Reserving FACS table memory at [mem 0x8ab93080-0x8ab930bf]
[ 0.009103] ACPI: Reserving APIC table memory at [mem 0x8a704ee0-0x8a704f9b]
[ 0.009104] ACPI: Reserving FPDT table memory at [mem 0x8a704fa0-0x8a704fe3]
[ 0.009105] ACPI: Reserving FIDT table memory at [mem 0x8a704fe8-0x8a705083]
[ 0.009105] ACPI: Reserving MCFG table memory at [mem 0x8a705088-0x8a7050c3]
[ 0.009106] ACPI: Reserving SSDT table memory at [mem 0x8a7050c8-0x8a706c26]
[ 0.009107] ACPI: Reserving MSDM table memory at [mem 0x8a706c28-0x8a706c7c]
[ 0.009108] ACPI: Reserving SSDT table memory at [mem 0x8a706c80-0x8a706cdf]
[ 0.009108] ACPI: Reserving SSDT table memory at [mem 0x8a706ce0-0x8a706d3f]
[ 0.009109] ACPI: Reserving SSDT table memory at [mem 0x8a706d40-0x8a709f05]
[ 0.009110] ACPI: Reserving SSDT table memory at [mem 0x8a709f08-0x8a70c322]
[ 0.009111] ACPI: Reserving HPET table memory at [mem 0x8a70c328-0x8a70c35f]
[ 0.009111] ACPI: Reserving SSDT table memory at [mem 0x8a70c360-0x8a70e098]
[ 0.009112] ACPI: Reserving SSDT table memory at [mem 0x8a70e0a0-0x8a70f04d]
[ 0.009113] ACPI: Reserving SSDT table memory at [mem 0x8a70f050-0x8a70fc2e]
[ 0.009114] ACPI: Reserving UEFI table memory at [mem 0x8a70fc30-0x8a70fc71]
[ 0.009115] ACPI: Reserving LPIT table memory at [mem 0x8a70fc78-0x8a70fd0b]
[ 0.009115] ACPI: Reserving SSDT table memory at [mem 0x8a70fd10-0x8a7124ed]
[ 0.009116] ACPI: Reserving SSDT table memory at [mem 0x8a7124f0-0x8a7139d1]
[ 0.009117] ACPI: Reserving DBGP table memory at [mem 0x8a7139d8-0x8a713a0b]
[ 0.009118] ACPI: Reserving DBG2 table memory at [mem 0x8a713a10-0x8a713a63]
[ 0.009118] ACPI: Reserving SSDT table memory at [mem 0x8a713a68-0x8a7155ce]
[ 0.009119] ACPI: Reserving DMAR table memory at [mem 0x8a7155d0-0x8a71563f]
[ 0.009120] ACPI: Reserving VFCT table memory at [mem 0x8a715640-0x8a7208c3]
[ 0.009121] ACPI: Reserving BGRT table memory at [mem 0x8a7208c8-0x8a7208ff]
[ 0.009122] ACPI: Reserving TPM2 table memory at [mem 0x8a720900-0x8a720933]
[ 0.009122] ACPI: Reserving WSMT table memory at [mem 0x8a720938-0x8a72095f]
[ 0.009445] No NUMA configuration found
[ 0.009446] Faking a node at [mem 0x0000000000000000-0x000000046dffffff]
[ 0.009455] NODE_DATA(0) allocated [mem 0x46dfd52c0-0x46dffffff]
[ 0.009710] Zone ranges:
[ 0.009711] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009713] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009714] Normal [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009716] Device empty
[ 0.009717] Movable zone start for each node
[ 0.009719] Early memory node ranges
[ 0.009719] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009721] node 0: [mem 0x0000000000100000-0x000000008a26ffff]
[ 0.009722] node 0: [mem 0x000000008dc0e000-0x000000008dc0efff]
[ 0.009723] node 0: [mem 0x0000000100000000-0x000000046dffffff]
[ 0.009726] Initmem setup node 0 [mem 0x0000000000001000-0x000000046dffffff]
[ 0.009730] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009751] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.012592] On node 0, zone DMA32: 14750 pages in unavailable ranges
[ 0.029871] On node 0, zone Normal: 9201 pages in unavailable ranges
[ 0.029963] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.031169] ACPI: PM-Timer IO Port: 0x1808
[ 0.031176] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.031177] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.031178] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.031179] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.031179] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.031180] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.031181] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.031182] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.031242] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.031244] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.031246] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.031250] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.031251] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.031257] e820: update [mem 0x86b6d000-0x86bdffff] usable ==> reserved
[ 0.031269] TSC deadline timer available
[ 0.031274] CPU topo: Max. logical packages: 1
[ 0.031275] CPU topo: Max. logical dies: 1
[ 0.031275] CPU topo: Max. dies per package: 1
[ 0.031280] CPU topo: Max. threads per core: 1
[ 0.031280] CPU topo: Num. cores per package: 8
[ 0.031281] CPU topo: Num. threads per package: 8
[ 0.031282] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
[ 0.031295] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.031297] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.031299] PM: hibernation: Registered nosave memory: [mem 0x7bf0f000-0x7bf0ffff]
[ 0.031300] PM: hibernation: Registered nosave memory: [mem 0x7bf1d000-0x7bf1dfff]
[ 0.031301] PM: hibernation: Registered nosave memory: [mem 0x7bf1e000-0x7bf1efff]
[ 0.031302] PM: hibernation: Registered nosave memory: [mem 0x7bf3c000-0x7bf3cfff]
[ 0.031304] PM: hibernation: Registered nosave memory: [mem 0x86b6d000-0x86bdffff]
[ 0.031305] PM: hibernation: Registered nosave memory: [mem 0x88b80000-0x88b80fff]
[ 0.031307] PM: hibernation: Registered nosave memory: [mem 0x8a270000-0x8a6a4fff]
[ 0.031307] PM: hibernation: Registered nosave memory: [mem 0x8a6a5000-0x8a721fff]
[ 0.031308] PM: hibernation: Registered nosave memory: [mem 0x8a722000-0x8ab95fff]
[ 0.031309] PM: hibernation: Registered nosave memory: [mem 0x8ab96000-0x8dc0dfff]
[ 0.031310] PM: hibernation: Registered nosave memory: [mem 0x8dc0f000-0x8fffffff]
[ 0.031311] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfdffffff]
[ 0.031312] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.031312] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.031313] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.031314] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.031314] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.031315] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.031316] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.031316] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.031318] [mem 0x90000000-0xfdffffff] available for PCI devices
[ 0.031319] Booting paravirtualized kernel on bare hardware
[ 0.031321] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.037735] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.038145] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[ 0.038152] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[ 0.038154] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
[ 0.038174] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux-mainline.img root=/dev/nvme0n1p1 rw intel_iommu=on
[ 0.038235] DMAR: IOMMU enabled
[ 0.038259] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[ 0.039460] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.040057] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.040155] Fallback order for Node 0: 0
[ 0.040158] Built 1 zonelists, mobility grouping on. Total pages: 4162063
[ 0.040159] Policy zone: Normal
[ 0.040330] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.040337] software IO TLB: area num 8.
[ 0.082459] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.082496] ftrace: allocating 51627 entries in 202 pages
[ 0.103613] ftrace: allocated 202 pages with 4 groups
[ 0.103688] Dynamic Preempt: full
[ 0.103733] rcu: Preemptible hierarchical RCU implementation.
[ 0.103734] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.103735] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.103736] Trampoline variant of Tasks RCU enabled.
[ 0.103736] Rude variant of Tasks RCU enabled.
[ 0.103737] Tracing variant of Tasks RCU enabled.
[ 0.103737] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.103738] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.103744] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.103746] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.103748] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[ 0.109492] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[ 0.109780] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.110177] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.110209] Console: colour dummy device 80x25
[ 0.110212] printk: legacy console [tty0] enabled
[ 0.110261] ACPI: Core revision 20240827
[ 0.110507] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.110573] APIC: Switch to symmetric I/O mode setup
[ 0.110575] DMAR: Host address width 39
[ 0.110576] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.110581] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.110584] DMAR: RMRR base: 0x0000008b72e000 end: 0x0000008b977fff
[ 0.110587] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 0
[ 0.110588] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.110589] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.113625] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.113627] x2apic enabled
[ 0.113697] APIC: Switched APIC routing to: cluster x2apic
[ 0.122912] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b3e459bf4c, max_idle_ns: 440795289890 ns
[ 0.122918] Calibrating delay loop (skipped), value calculated using timer frequency.. 6002.00 BogoMIPS (lpj=10000000)
[ 0.122939] x86/cpu: SGX disabled or unsupported by BIOS.
[ 0.122946] CPU0: Thermal monitoring enabled (TM1)
[ 0.123000] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.123001] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.123005] process: using mwait in idle threads
[ 0.123007] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.123009] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
[ 0.123010] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.123011] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.123011] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.123012] RETBleed: Mitigation: Enhanced IBRS
[ 0.123014] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.123015] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.123020] TAA: Mitigation: TSX disabled
[ 0.123021] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.123024] SRBDS: Mitigation: Microcode
[ 0.123029] GDS: Mitigation: Microcode
[ 0.123033] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.123034] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.123035] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.123036] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.123037] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.123038] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.123040] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.123041] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.123042] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.126249] Freeing SMP alternatives memory: 40K
[ 0.126249] pid_max: default: 32768 minimum: 301
[ 0.126249] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.126249] landlock: Up and running.
[ 0.126249] Yama: becoming mindful.
[ 0.126249] LSM support for eBPF active
[ 0.126249] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126249] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.126249] smpboot: CPU0: Intel(R) Core(TM) i7-9700F CPU @ 3.00GHz (family: 0x6, model: 0x9e, stepping: 0xd)
[ 0.126249] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.126249] ... version: 4
[ 0.126249] ... bit width: 48
[ 0.126249] ... generic registers: 8
[ 0.126249] ... value mask: 0000ffffffffffff
[ 0.126249] ... max period: 00007fffffffffff
[ 0.126249] ... fixed-purpose events: 3
[ 0.126249] ... event mask: 00000007000000ff
[ 0.126249] signal: max sigframe size: 2032
[ 0.126249] Estimated ratio of average max frequency by base frequency (times 1024): 1570
[ 0.126249] rcu: Hierarchical SRCU implementation.
[ 0.126249] rcu: Max phase no-delay instances is 1000.
[ 0.126249] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.126249] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.126249] smp: Bringing up secondary CPUs ...
[ 0.126249] smpboot: x86: Booting SMP configuration:
[ 0.126249] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
[ 0.129633] smp: Brought up 1 node, 8 CPUs
[ 0.129633] smpboot: Total of 8 processors activated (48019.00 BogoMIPS)
[ 0.131620] Memory: 16201520K/16648252K available (18432K kernel code, 2692K rwdata, 14432K rodata, 4292K init, 3948K bss, 431576K reserved, 0K cma-reserved)
[ 0.132986] devtmpfs: initialized
[ 0.132986] x86/mm: Memory block size: 128MB
[ 0.134082] ACPI: PM: Registering ACPI NVS region [mem 0x8a722000-0x8ab95fff] (4669440 bytes)
[ 0.134082] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.134082] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.134082] pinctrl core: initialized pinctrl subsystem
[ 0.134082] PM: RTC time: 17:21:09, date: 2025-01-14
[ 0.134082] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.134087] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.134200] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.134313] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.134319] audit: initializing netlink subsys (disabled)
[ 0.134374] audit: type=2000 audit(1736875269.000:1): state=initialized audit_enabled=0 res=1
[ 0.134374] thermal_sys: Registered thermal governor 'fair_share'
[ 0.134374] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.134374] thermal_sys: Registered thermal governor 'step_wise'
[ 0.134374] thermal_sys: Registered thermal governor 'user_space'
[ 0.134374] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.134374] cpuidle: using governor ladder
[ 0.134374] cpuidle: using governor menu
[ 0.134374] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.134374] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.134374] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.134374] PCI: Using configuration type 1 for base access
[ 0.134374] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.137183] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.137183] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.137183] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.137183] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.137183] fbcon: Taking over console
[ 0.137183] ACPI: Added _OSI(Module Device)
[ 0.137183] ACPI: Added _OSI(Processor Device)
[ 0.137183] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.137183] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.191686] ACPI: 11 ACPI AML tables successfully acquired and loaded
[ 0.198623] ACPI: Dynamic OEM Table Load:
[ 0.198623] ACPI: SSDT 0xFFFF99F04100E800 000400 (v02 HPQOEM SLIC-CPC 00003001 INTL 20160527)
[ 0.200123] ACPI: Dynamic OEM Table Load:
[ 0.200128] ACPI: SSDT 0xFFFF99F041004000 000605 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.201155] ACPI: Dynamic OEM Table Load:
[ 0.201159] ACPI: SSDT 0xFFFF99F041034F00 0000F4 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.202089] ACPI: Dynamic OEM Table Load:
[ 0.202093] ACPI: SSDT 0xFFFF99F04184E200 000149 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.202979] ACPI: Dynamic OEM Table Load:
[ 0.202983] ACPI: SSDT 0xFFFF99F041007800 000724 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.204107] ACPI: Dynamic OEM Table Load:
[ 0.204112] ACPI: SSDT 0xFFFF99F041004800 0005FC (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.205155] ACPI: Dynamic OEM Table Load:
[ 0.205160] ACPI: SSDT 0xFFFF99F041008800 000317 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.206198] ACPI: Dynamic OEM Table Load:
[ 0.206203] ACPI: SSDT 0xFFFF99F0418C1000 000AB0 (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.207761] ACPI: Dynamic OEM Table Load:
[ 0.207765] ACPI: SSDT 0xFFFF99F04100DC00 00030A (v02 HPQOEM SLIC-CPC 00003000 INTL 20160527)
[ 0.211958] ACPI: EC: EC started
[ 0.211959] ACPI: EC: interrupt blocked
[ 0.212547] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.212549] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.212551] ACPI: Interpreter enabled
[ 0.212588] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.212589] ACPI: Using IOAPIC for interrupt routing
[ 0.213793] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.213795] PCI: Ignoring E820 reservations for host bridge windows
[ 0.214975] ACPI: Enabled 10 GPEs in block 00 to 7F
[ 0.231624] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.231774] ACPI: \_SB_.PCI0.PAUD: New power resource
[ 0.234191] ACPI: \SPR2: New power resource
[ 0.234363] ACPI: \SPR3: New power resource
[ 0.234659] ACPI: \ZPDR: New power resource
[ 0.234901] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.235102] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.235297] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.240873] ACPI: \_SB_.PCI0.I2C1.PXTC: New power resource
[ 0.247298] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.252381] ACPI: \_TZ_.FN00: New power resource
[ 0.252447] ACPI: \_TZ_.FN01: New power resource
[ 0.252512] ACPI: \_TZ_.FN02: New power resource
[ 0.252574] ACPI: \_TZ_.FN03: New power resource
[ 0.252636] ACPI: \_TZ_.FN04: New power resource
[ 0.253092] ACPI: \PIN_: New power resource
[ 0.253245] ACPI: \SPR0: New power resource
[ 0.253300] ACPI: \SPR1: New power resource
[ 0.253355] ACPI: \SPR5: New power resource
[ 0.253898] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.253906] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.257168] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.257170] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.258352] PCI host bridge to bus 0000:00
[ 0.258356] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.258359] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.258360] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.258362] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000effff window]
[ 0.258363] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
[ 0.258365] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.258366] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.258458] pci 0000:00:00.0: [8086:3e30] type 00 class 0x060000 conventional PCI endpoint
[ 0.258528] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[ 0.258540] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.258543] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.258545] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.258550] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.258575] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.259176] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.259185] pci 0000:00:08.0: BAR 0 [mem 0xa0922000-0xa0922fff 64bit]
[ 0.259358] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.259390] pci 0000:00:12.0: BAR 0 [mem 0xa0921000-0xa0921fff 64bit]
[ 0.259644] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.259680] pci 0000:00:14.0: BAR 0 [mem 0xa0900000-0xa090ffff 64bit]
[ 0.259820] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.260524] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.260554] pci 0000:00:14.2: BAR 0 [mem 0xa0916000-0xa0917fff 64bit]
[ 0.260573] pci 0000:00:14.2: BAR 2 [mem 0xa0920000-0xa0920fff 64bit]
[ 0.260724] pci 0000:00:14.5: [8086:a375] type 00 class 0x080501 conventional PCI endpoint
[ 0.260756] pci 0000:00:14.5: BAR 0 [mem 0xa091f000-0xa091ffff 64bit]
[ 0.261585] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.262159] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.265140] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.265714] pci 0000:00:15.1: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.268319] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.268352] pci 0000:00:16.0: BAR 0 [mem 0xa091c000-0xa091cfff 64bit]
[ 0.268469] pci 0000:00:16.0: PME# supported from D3hot
[ 0.269102] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
[ 0.269130] pci 0000:00:17.0: BAR 0 [mem 0xa0914000-0xa0915fff]
[ 0.269146] pci 0000:00:17.0: BAR 1 [mem 0xa091b000-0xa091b0ff]
[ 0.269161] pci 0000:00:17.0: BAR 2 [io 0x6050-0x6057]
[ 0.269175] pci 0000:00:17.0: BAR 3 [io 0x6040-0x6043]
[ 0.269190] pci 0000:00:17.0: BAR 4 [io 0x6020-0x603f]
[ 0.269205] pci 0000:00:17.0: BAR 5 [mem 0xa091a000-0xa091a7ff]
[ 0.269288] pci 0000:00:17.0: PME# supported from D3hot
[ 0.269754] pci 0000:00:1c.0: [8086:a33d] type 01 class 0x060400 PCIe Root Port
[ 0.269812] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.269819] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.269825] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.269970] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.270020] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.270883] pci 0000:00:1c.7: [8086:a33f] type 01 class 0x060400 PCIe Root Port
[ 0.270941] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.270948] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.270954] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.271096] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[ 0.271140] pci 0000:00:1c.7: PTM enabled (root), 4ns granularity
[ 0.271936] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.271994] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.272006] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.272164] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.272215] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.273451] pci 0000:00:1e.0: [8086:a328] type 00 class 0x078000 conventional PCI endpoint
[ 0.274026] pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.276690] pci 0000:00:1f.0: [8086:a304] type 00 class 0x060100 conventional PCI endpoint
[ 0.277255] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.277316] pci 0000:00:1f.3: BAR 0 [mem 0xa0910000-0xa0913fff 64bit]
[ 0.277391] pci 0000:00:1f.3: BAR 4 [mem 0xa0200000-0xa02fffff 64bit]
[ 0.277540] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.278936] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.279107] pci 0000:00:1f.4: BAR 0 [mem 0xa0918000-0xa09180ff 64bit]
[ 0.279321] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.279806] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.279832] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.280020] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.280031] pci 0000:01:00.0: BAR 0 [mem 0xa0500000-0xa0503fff]
[ 0.280043] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.280048] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.280051] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.280059] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.280126] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.280174] pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link)
[ 0.280268] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.280310] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.280331] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.280336] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.280339] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.280346] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.280413] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.280533] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.280579] pci 0000:03:00.0: [1002:73ff] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.280593] pci 0000:03:00.0: BAR 0 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.280602] pci 0000:03:00.0: BAR 2 [mem 0xa0000000-0xa01fffff 64bit pref]
[ 0.280608] pci 0000:03:00.0: BAR 4 [io 0x5000-0x50ff]
[ 0.280615] pci 0000:03:00.0: BAR 5 [mem 0xa0300000-0xa03fffff]
[ 0.280621] pci 0000:03:00.0: ROM [mem 0xa0400000-0xa041ffff pref]
[ 0.280693] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.280750] pci 0000:03:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.280824] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.280834] pci 0000:03:00.1: BAR 0 [mem 0xa0420000-0xa0423fff]
[ 0.280906] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.280996] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.281158] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.281186] pci 0000:04:00.0: BAR 0 [io 0x4000-0x40ff]
[ 0.281223] pci 0000:04:00.0: BAR 2 [mem 0xa0804000-0xa0804fff 64bit]
[ 0.281246] pci 0000:04:00.0: BAR 4 [mem 0xa0800000-0xa0803fff 64bit]
[ 0.281407] pci 0000:04:00.0: supports D1 D2
[ 0.281409] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.281720] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.281873] pci 0000:05:00.0: [10ec:c821] type 00 class 0x028000 PCIe Endpoint
[ 0.281900] pci 0000:05:00.0: BAR 0 [io 0x3000-0x30ff]
[ 0.281933] pci 0000:05:00.0: BAR 2 [mem 0xa0700000-0xa070ffff 64bit]
[ 0.282120] pci 0000:05:00.0: supports D1 D2
[ 0.282121] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.282501] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.282872] pci 0000:06:00.0: [8086:f1a8] type 00 class 0x010802 PCIe Endpoint
[ 0.282907] pci 0000:06:00.0: BAR 0 [mem 0xa0600000-0xa0603fff 64bit]
[ 0.283456] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.285723] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.285808] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.285891] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.285972] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.286054] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.286136] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.286218] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.286302] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.291639] ACPI: EC: interrupt unblocked
[ 0.291640] ACPI: EC: event unblocked
[ 0.291651] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.291653] ACPI: EC: GPE=0xb
[ 0.291654] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.291656] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.291709] iommu: Default domain type: Translated
[ 0.291709] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.291709] SCSI subsystem initialized
[ 0.291709] libata version 3.00 loaded.
[ 0.291709] ACPI: bus type USB registered
[ 0.291709] usbcore: registered new interface driver usbfs
[ 0.291709] usbcore: registered new interface driver hub
[ 0.291709] usbcore: registered new device driver usb
[ 0.291709] EDAC MC: Ver: 3.0.0
[ 0.293215] efivars: Registered efivars operations
[ 0.293215] NetLabel: Initializing
[ 0.293215] NetLabel: domain hash size = 128
[ 0.293215] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.293215] NetLabel: unlabeled traffic allowed by default
[ 0.293215] mctp: management component transport protocol core
[ 0.293215] NET: Registered PF_MCTP protocol family
[ 0.293215] PCI: Using ACPI for IRQ routing
[ 0.377763] PCI: pci_cache_line_size set to 64 bytes
[ 0.378365] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.378376] e820: reserve RAM buffer [mem 0x7bf0f018-0x7bffffff]
[ 0.378377] e820: reserve RAM buffer [mem 0x7bf1e018-0x7bffffff]
[ 0.378378] e820: reserve RAM buffer [mem 0x86b6d000-0x87ffffff]
[ 0.378379] e820: reserve RAM buffer [mem 0x88b80000-0x8bffffff]
[ 0.378380] e820: reserve RAM buffer [mem 0x8a270000-0x8bffffff]
[ 0.378382] e820: reserve RAM buffer [mem 0x8dc0f000-0x8fffffff]
[ 0.378382] e820: reserve RAM buffer [mem 0x46e000000-0x46fffffff]
[ 0.378413] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.378413] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.378413] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.378413] vgaarb: loaded
[ 0.378413] clocksource: Switched to clocksource tsc-early
[ 0.378413] VFS: Disk quotas dquot_6.6.0
[ 0.378413] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.378413] pnp: PnP ACPI init
[ 0.378413] system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
[ 0.378413] system 00:01: [io 0x0a00-0x0a0f] has been reserved
[ 0.378413] system 00:01: [io 0x0a10-0x0a1f] has been reserved
[ 0.378413] system 00:01: [io 0x0a20-0x0a2f] has been reserved
[ 0.378413] system 00:01: [io 0x0a30-0x0a3f] has been reserved
[ 0.378413] system 00:01: [io 0x0a40-0x0a4f] has been reserved
[ 0.378413] system 00:01: [io 0x0a50-0x0a5f] has been reserved
[ 0.378413] system 00:01: [io 0x0a60-0x0a6f] has been reserved
[ 0.378413] system 00:01: [io 0x0a70-0x0a7f] has been reserved
[ 0.378413] system 00:01: [io 0x0a80-0x0a8f] has been reserved
[ 0.378413] system 00:01: [io 0x0a90-0x0b8e] has been reserved
[ 0.378413] system 00:01: [io 0x0aa0-0x0aaf] has been reserved
[ 0.378413] system 00:01: [io 0x0ab0-0x0abf] has been reserved
[ 0.378413] system 00:01: [io 0x0ac0-0x0acf] has been reserved
[ 0.378413] system 00:01: [io 0x0ad0-0x0adf] has been reserved
[ 0.378413] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.378413] system 00:02: [io 0x164e-0x164f] has been reserved
[ 0.378413] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.378413] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.378413] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.378413] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.378413] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.378413] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.378413] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.378413] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.378413] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.378601] system 00:05: [io 0x1800-0x18fe] could not be reserved
[ 0.378604] system 00:05: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.378606] system 00:05: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.378608] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.378609] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.378611] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.378613] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.378923] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 0.380642] pnp: PnP ACPI: found 8 devices
[ 0.386475] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.386539] NET: Registered PF_INET protocol family
[ 0.386669] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.401331] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.401448] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.401486] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.401700] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.401922] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.401978] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.402043] UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.402121] UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.402197] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.402204] NET: Registered PF_XDP protocol family
[ 0.402217] pci 0000:00:15.0: BAR 0 [mem 0xa0919000-0xa0919fff 64bit]: assigned
[ 0.402489] pci 0000:00:15.1: BAR 0 [mem 0xa091d000-0xa091dfff 64bit]: assigned
[ 0.402758] pci 0000:00:1e.0: BAR 0 [mem 0xa091e000-0xa091efff 64bit]: assigned
[ 0.403041] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.403048] pci 0000:02:00.0: bridge window [io 0x5000-0x5fff]
[ 0.403052] pci 0000:02:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.403055] pci 0000:02:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403059] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.403061] pci 0000:01:00.0: bridge window [io 0x5000-0x5fff]
[ 0.403065] pci 0000:01:00.0: bridge window [mem 0xa0300000-0xa04fffff]
[ 0.403067] pci 0000:01:00.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403071] pci 0000:00:01.0: PCI bridge to [bus 01-03]
[ 0.403073] pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
[ 0.403075] pci 0000:00:01.0: bridge window [mem 0xa0300000-0xa05fffff]
[ 0.403077] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403081] pci 0000:00:1c.0: PCI bridge to [bus 04]
[ 0.403089] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
[ 0.403096] pci 0000:00:1c.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.403109] pci 0000:00:1c.7: PCI bridge to [bus 05]
[ 0.403112] pci 0000:00:1c.7: bridge window [io 0x3000-0x3fff]
[ 0.403119] pci 0000:00:1c.7: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.403133] pci 0000:00:1d.0: PCI bridge to [bus 06]
[ 0.403140] pci 0000:00:1d.0: bridge window [mem 0xa0600000-0xa06fffff]
[ 0.403154] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.403155] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.403157] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.403158] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000effff window]
[ 0.403159] pci_bus 0000:00: resource 8 [mem 0x90000000-0xdfffffff window]
[ 0.403161] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 0.403162] pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
[ 0.403163] pci_bus 0000:01: resource 1 [mem 0xa0300000-0xa05fffff]
[ 0.403165] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403166] pci_bus 0000:02: resource 0 [io 0x5000-0x5fff]
[ 0.403167] pci_bus 0000:02: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.403168] pci_bus 0000:02: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403170] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.403171] pci_bus 0000:03: resource 1 [mem 0xa0300000-0xa04fffff]
[ 0.403172] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa01fffff 64bit pref]
[ 0.403174] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
[ 0.403175] pci_bus 0000:04: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.403176] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
[ 0.403177] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.403179] pci_bus 0000:06: resource 1 [mem 0xa0600000-0xa06fffff]
[ 0.403780] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.403877] PCI: CLS 64 bytes, default 64
[ 0.403940] DMAR: No ATSR found
[ 0.403941] DMAR: No SATC found
[ 0.403942] DMAR: dmar0: Using Queued invalidation
[ 0.403970] Trying to unpack rootfs image as initramfs...
[ 0.403994] pci 0000:00:00.0: Adding to iommu group 0
[ 0.404008] pci 0000:00:01.0: Adding to iommu group 1
[ 0.404016] pci 0000:00:08.0: Adding to iommu group 2
[ 0.404027] pci 0000:00:12.0: Adding to iommu group 3
[ 0.404046] pci 0000:00:14.0: Adding to iommu group 4
[ 0.404054] pci 0000:00:14.2: Adding to iommu group 4
[ 0.404062] pci 0000:00:14.5: Adding to iommu group 4
[ 0.404077] pci 0000:00:15.0: Adding to iommu group 5
[ 0.404085] pci 0000:00:15.1: Adding to iommu group 5
[ 0.404096] pci 0000:00:16.0: Adding to iommu group 6
[ 0.404104] pci 0000:00:17.0: Adding to iommu group 7
[ 0.404119] pci 0000:00:1c.0: Adding to iommu group 8
[ 0.404130] pci 0000:00:1c.7: Adding to iommu group 9
[ 0.404140] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.404154] pci 0000:00:1e.0: Adding to iommu group 11
[ 0.404176] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.404184] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.404194] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.404203] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.404207] pci 0000:01:00.0: Adding to iommu group 1
[ 0.404210] pci 0000:02:00.0: Adding to iommu group 1
[ 0.404216] pci 0000:03:00.0: Adding to iommu group 1
[ 0.404220] pci 0000:03:00.1: Adding to iommu group 1
[ 0.404235] pci 0000:04:00.0: Adding to iommu group 13
[ 0.404245] pci 0000:05:00.0: Adding to iommu group 14
[ 0.404260] pci 0000:06:00.0: Adding to iommu group 15
[ 0.405077] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.405079] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.405080] software IO TLB: mapped [mem 0x0000000082b6d000-0x0000000086b6d000] (64MB)
[ 0.405134] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.420413] Initialise system trusted keyrings
[ 0.420421] Key type blacklist registered
[ 0.420456] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.420541] fuse: init (API version 7.41)
[ 0.420608] integrity: Platform Keyring initialized
[ 0.420610] integrity: Machine keyring initialized
[ 0.431546] Key type asymmetric registered
[ 0.431548] Asymmetric key parser 'x509' registered
[ 0.431564] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.431598] io scheduler mq-deadline registered
[ 0.431599] io scheduler kyber registered
[ 0.431607] io scheduler bfq registered
[ 0.431761] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.431967] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
[ 0.432201] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
[ 0.432267] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
[ 0.432307] pcieport 0000:00:1c.0: DPC: enabled with IRQ 122
[ 0.432309] pcieport 0000:00:1c.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432604] pcieport 0000:00:1c.7: PME: Signaling with IRQ 123
[ 0.432657] pcieport 0000:00:1c.7: AER: enabled with IRQ 123
[ 0.432697] pcieport 0000:00:1c.7: DPC: enabled with IRQ 123
[ 0.432698] pcieport 0000:00:1c.7: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.432997] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
[ 0.433057] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
[ 0.433100] pcieport 0000:00:1d.0: DPC: enabled with IRQ 124
[ 0.433101] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.433494] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.434015] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.434035] ACPI: button: Sleep Button [SLPB]
[ 0.434058] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.434070] ACPI: button: Power Button [PWRB]
[ 0.434093] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.434170] ACPI: button: Power Button [PWRF]
[ 0.436152] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.436155] ACPI: thermal: Thermal Zone [HPTZ] (30 C)
[ 0.436460] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.436462] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.436665] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.438533] hpet_acpi_add: no address or irqs in _CRS
[ 0.438570] Non-volatile memory driver v1.3
[ 0.438571] Linux agpgart interface v0.103
[ 0.467654] Freeing initrd memory: 21264K
[ 0.572151] ACPI: bus type drm_connector registered
[ 0.573044] ahci 0000:00:17.0: version 3.0
[ 0.573299] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.573302] ahci 0000:00:17.0: 4/4 ports implemented (port mask 0x3c)
[ 0.573304] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.593427] scsi host0: ahci
[ 0.593734] scsi host1: ahci
[ 0.594032] scsi host2: ahci
[ 0.594189] scsi host3: ahci
[ 0.594296] scsi host4: ahci
[ 0.594451] scsi host5: ahci
[ 0.594481] ata1: DUMMY
[ 0.594482] ata2: DUMMY
[ 0.594488] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126 lpm-pol 3
[ 0.594491] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126 lpm-pol 3
[ 0.594494] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126 lpm-pol 3
[ 0.594497] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126 lpm-pol 3
[ 0.594618] ata3: before wakeup PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 0.594675] ata5: before wakeup PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 0.594717] ata6: before wakeup PxSSTS 0x4 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 0.594744] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.594749] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.595698] ata4: before wakeup PxSSTS 0x0 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 0.595890] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 0.596177] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.596181] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.596183] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.596222] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.596224] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.596226] usb usb1: Product: xHCI Host Controller
[ 0.596227] usb usb1: Manufacturer: Linux 6.13.0-rc7-1.2-mainline-dirty xhci-hcd
[ 0.596228] usb usb1: SerialNumber: 0000:00:14.0
[ 0.596377] hub 1-0:1.0: USB hub found
[ 0.596398] hub 1-0:1.0: 16 ports detected
[ 0.598108] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.598111] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.598112] usb usb2: Product: xHCI Host Controller
[ 0.598113] usb usb2: Manufacturer: Linux 6.13.0-rc7-1.2-mainline-dirty xhci-hcd
[ 0.598115] usb usb2: SerialNumber: 0000:00:14.0
[ 0.598214] hub 2-0:1.0: USB hub found
[ 0.598229] hub 2-0:1.0: 8 ports detected
[ 0.598997] usb: port power management may be unreliable
[ 0.599319] usbcore: registered new interface driver usbserial_generic
[ 0.599323] usbserial: USB Serial support registered for generic
[ 0.599430] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.600983] rtc_cmos rtc_cmos: registered as rtc0
[ 0.601295] rtc_cmos rtc_cmos: setting system clock to 2025-01-14T17:21:09 UTC (1736875269)
[ 0.601327] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.601652] intel_pstate: Intel P-state driver initializing
[ 0.602305] intel_pstate: Disabling energy efficiency optimization
[ 0.602306] intel_pstate: HWP enabled
[ 0.602533] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.602535] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.612376] Console: switching to colour frame buffer device 240x67
[ 0.624123] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.624257] hid: raw HID events driver (C) Jiri Kosina
[ 0.624331] drop_monitor: Initializing network drop monitor service
[ 0.624413] NET: Registered PF_INET6 protocol family
[ 0.629012] Segment Routing with IPv6
[ 0.629015] RPL Segment Routing with IPv6
[ 0.629026] In-situ OAM (IOAM) with IPv6
[ 0.629045] NET: Registered PF_PACKET protocol family
[ 0.629646] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.629861] microcode: Current revision: 0x00000100
[ 0.629862] microcode: Updated early from: 0x000000fa
[ 0.630165] IPI shorthand broadcast: enabled
[ 0.631267] sched_clock: Marking stable (617316392, 12833377)->(661222241, -31072472)
[ 0.631510] registered taskstats version 1
[ 0.632063] Loading compiled-in X.509 certificates
[ 0.635875] Loaded X.509 cert 'Build time autogenerated kernel key: cc5f0cca11d2a24a334d5dd1f879c6165f996bc4'
[ 0.636909] Demotion targets for Node 0: null
[ 0.637130] Key type .fscrypt registered
[ 0.637131] Key type fscrypt-provisioning registered
[ 0.638449] integrity: Loading X.509 certificate: UEFI:db
[ 0.638464] integrity: Loaded X.509 cert 'HP Inc.: HP UEFI Secure Boot DB 2017: d9c01b50cfcae89d3b05345c163aa76e5dd589e7'
[ 0.638464] integrity: Loading X.509 certificate: UEFI:db
[ 0.638474] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.638475] integrity: Loading X.509 certificate: UEFI:db
[ 0.638483] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.640017] PM: Magic number: 9:646:390
[ 0.640035] thermal cooling_device5: hash matches
[ 0.640062] acpi XXXX0000:00: hash matches
[ 0.642154] RAS: Correctable Errors collector initialized.
[ 0.648546] clk: Disabling unused clocks
[ 0.648547] PM: genpd: Disabling unused power domains
[ 0.839751] usb 1-3: new low-speed USB device number 2 using xhci_hcd
[ 0.980981] usb 1-3: New USB device found, idVendor=0461, idProduct=0010, bcdDevice= 1.10
[ 0.980996] usb 1-3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 0.981001] usb 1-3: Product: USB Keyboard
[ 1.099894] usb 1-14: new full-speed USB device number 3 using xhci_hcd
[ 1.113233] ata4: before reset PxSSTS 0x0 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.113363] ata6: before reset PxSSTS 0x4 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.113481] ata5: before reset PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.113603] ata3: before reset PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.231469] usb 1-14: New USB device found, idVendor=0bda, idProduct=b00a, bcdDevice= 1.10
[ 1.231484] usb 1-14: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.231489] usb 1-14: Product: Bluetooth Radio
[ 1.231494] usb 1-14: Manufacturer: Realtek
[ 1.231498] usb 1-14: SerialNumber: 00e04c000001
[ 1.406531] tsc: Refined TSC clocksource calibration: 3000.006 MHz
[ 1.406549] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b3e4b16716, max_idle_ns: 440795256380 ns
[ 1.406650] clocksource: Switched to clocksource tsc
[ 1.926581] ata3: sata_link_hardreset returned: 0 online: 1
[ 1.926827] ata3: after reset PxSSTS 0x133 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.926958] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.927051] ata6: phys link offline, no reason to wait
[ 1.927138] ata6: sata_link_hardreset returned: 0 online: 0
[ 1.927224] ata6: after reset PxSSTS 0x4 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.927344] ata6: SATA link down (SStatus 4 SControl 300)
[ 1.927365] ata6: before offline PxSSTS 0x4 PxSCTL 0x300 PxCMD 0xc017 PxDEVSLP 0x0
[ 1.927540] ata4: phys link offline, no reason to wait
[ 1.927621] ata4: sata_link_hardreset returned: 0 online: 0
[ 1.927707] ata4: after reset PxSSTS 0x0 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.927829] ata4: SATA link down (SStatus 0 SControl 300)
[ 1.927851] ata4: before offline PxSSTS 0x0 PxSCTL 0x300 PxCMD 0xc017 PxDEVSLP 0x0
[ 1.928029] ata5: sata_link_hardreset returned: 0 online: 1
[ 1.928128] ata5: after reset PxSSTS 0x133 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
[ 1.928258] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.931212] ata5.00: Model 'SAMSUNG MZ7TD256HAFV-000L9', rev 'DXT04L6Q', applying quirks: nolpm
[ 1.931224] ata5.00: LPM support broken, forcing max_power
[ 1.931373] ata5.00: supports DRM functions and may not be fully accessible
[ 1.931381] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
[ 1.931676] ata5.00: NCQ Send/Recv Log not supported
[ 1.931684] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 1.933838] ata5.00: Features: Trust Dev-Sleep
[ 1.934202] ata5.00: LPM support broken, forcing max_power
[ 1.934347] ata5.00: supports DRM functions and may not be fully accessible
[ 1.934651] ata5.00: NCQ Send/Recv Log not supported
[ 1.934957] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
[ 1.935576] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.936139] ata5.00: configured for UDMA/133
[ 1.943280] ata3.00: configured for UDMA/133
[ 1.943556] scsi 2:0:0:0: Direct-Access ATA WDC WD20EARX-00P AB51 PQ: 0 ANSI: 5
[ 1.944156] sd 2:0:0:0: [sda] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 1.944165] sd 2:0:0:0: [sda] 4096-byte physical blocks
[ 1.944185] sd 2:0:0:0: [sda] Write Protect is off
[ 1.944190] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.944214] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.944256] sd 2:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 1.946338] ahci 0000:00:17.0: port does not support device sleep
[ 1.946605] scsi 4:0:0:0: Direct-Access ATA SAMSUNG MZ7TD256 4L6Q PQ: 0 ANSI: 5
[ 1.947150] sd 4:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 1.947173] sd 4:0:0:0: [sdb] Write Protect is off
[ 1.947179] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.947203] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.947261] sd 4:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 1.996578] sdb: sdb1 sdb2 sdb3 sdb4
[ 1.997723] sd 4:0:0:0: [sdb] supports TCG Opal
[ 1.997735] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 2.008260] sda: sda1
[ 2.008531] sd 2:0:0:0: [sda] Attached SCSI disk
[ 2.011449] Freeing unused decrypted memory: 2028K
[ 2.012552] Freeing unused kernel image (initmem) memory: 4292K
[ 2.012599] Write protecting the kernel read-only data: 34816k
[ 2.014037] Freeing unused kernel image (rodata/data gap) memory: 1952K
[ 2.021717] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.021720] rodata_test: all tests were successful
[ 2.021722] Run /init as init process
[ 2.021723] with arguments:
[ 2.021724] /init
[ 2.021725] with environment:
[ 2.021725] HOME=/
[ 2.021726] TERM=linux
[ 2.228314] sdhci: Secure Digital Host Controller Interface driver
[ 2.228316] sdhci: Copyright(c) Pierre Ossman
[ 2.229561] usbcore: registered new interface driver usbhid
[ 2.229563] usbhid: USB HID core driver
[ 2.231592] nvme nvme0: pci function 0000:06:00.0
[ 2.232084] input: USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:0461:0010.0001/input/input3
[ 2.235188] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 2.235201] sdhci-pci 0000:00:14.5: enabling device (0100 -> 0102)
[ 2.240713] nvme nvme0: 8/0/0 default/read/poll queues
[ 2.243690] nvme0n1: p1 p2
[ 2.243914] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 2.410057] hid-generic 0003:0461:0010.0001: input,hidraw0: USB HID v1.11 Keyboard [USB Keyboard] on usb-0000:00:14.0-3/input0
[ 2.410199] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 2.410419] input: USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:0461:0010.0002/input/input4
[ 2.463372] input: USB Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:0461:0010.0002/input/input5
[ 2.463764] hid-generic 0003:0461:0010.0002: input,hidraw1: USB HID v1.11 Device [USB Keyboard] on usb-0000:00:14.0-3/input1
[ 2.463909] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 2.642651] EXT4-fs (nvme0n1p1): mounted filesystem 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w with ordered data mode. Quota mode: none.
[ 2.807081] systemd[1]: systemd 257.2-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
[ 2.807091] systemd[1]: Detected architecture x86-64.
[ 2.810898] systemd[1]: Hostname set to <Ale-Arch>.
[ 3.099214] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 3.370534] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.370539] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.370615] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.371444] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.378085] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.378090] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.378093] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.378152] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.378189] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.380077] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.380082] systemd-fstab-generator[306]: Mount point is not a valid path, ignoring.
[ 3.402768] zram: Added device: zram0
[ 3.667948] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 3.753358] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.795355] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 3.796664] systemd[1]: Created slice Slice /system/backrest.
[ 3.797261] systemd[1]: Created slice CUPS Slice.
[ 3.797874] systemd[1]: Created slice Slice /system/dirmngr.
[ 3.798477] systemd[1]: Created slice Slice /system/getty.
[ 3.799123] systemd[1]: Created slice Slice /system/gpg-agent.
[ 3.799749] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 3.800367] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 3.800970] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 3.801592] systemd[1]: Created slice Slice /system/keyboxd.
[ 3.802211] systemd[1]: Created slice Slice /system/modprobe.
[ 3.802864] systemd[1]: Created slice Slice /system/nut-driver.
[ 3.803478] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 3.804084] systemd[1]: Created slice Slice /system/systemd-zram-setup.
[ 3.804491] systemd[1]: Created slice User and Session Slice.
[ 3.805667] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.807255] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.808537] systemd[1]: Expecting device /dev/disk/by-uuid/0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee...
[ 3.808673] systemd[1]: Expecting device /dev/disk/by-uuid/CAB7-E233...
[ 3.810018] systemd[1]: Expecting device /dev/zram0...
[ 3.810150] systemd[1]: Reached target Login Prompts.
[ 3.810239] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 3.811013] systemd[1]: Reached target Remote File Systems.
[ 3.811816] systemd[1]: Reached target Slice Units.
[ 3.812581] systemd[1]: Reached target System Time Set.
[ 3.813326] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.814114] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 3.814838] systemd[1]: Listening on LVM2 poll daemon socket.
[ 3.818730] systemd[1]: Listening on RPCbind Server Activation Socket.
[ 3.818798] systemd[1]: Reached target RPC Port Mapper.
[ 3.825151] systemd[1]: Listening on Process Core Dump Socket.
[ 3.825852] systemd[1]: Listening on Credential Encryption/Decryption.
[ 3.826055] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.826156] systemd[1]: Listening on Journal Sockets.
[ 3.826957] systemd[1]: Listening on Network Service Netlink Socket.
[ 3.827708] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 3.828379] systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.828405] systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.828488] systemd[1]: Listening on udev Control Socket.
[ 3.829167] systemd[1]: Listening on udev Kernel Socket.
[ 3.830271] systemd[1]: Mounting Huge Pages File System...
[ 3.831149] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.831825] systemd[1]: Mounting NFSD configuration filesystem...
[ 3.832552] systemd[1]: Mounting Kernel Debug File System...
[ 3.833326] systemd[1]: Mounting Kernel Trace File System...
[ 3.833693] systemd[1]: Load AppArmor profiles was skipped because of an unmet condition check (ConditionSecurity=apparmor).
[ 3.833730] systemd[1]: Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[ 3.834710] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.836651] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 3.838601] systemd[1]: Starting Load Kernel Module configfs...
[ 3.839401] systemd[1]: Starting Load Kernel Module dm_mod...
[ 3.840605] systemd[1]: Starting Load Kernel Module drm...
[ 3.841357] systemd[1]: Starting Load Kernel Module fuse...
[ 3.841985] systemd[1]: Starting Load Kernel Module loop...
[ 3.842145] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 3.842176] systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
[ 3.845459] systemd[1]: Starting Journal Service...
[ 3.847472] systemd[1]: Starting Load Kernel Modules...
[ 3.849082] systemd[1]: Starting Userspace Out-Of-Memory (OOM) Killer...
[ 3.849286] loop: module loaded
[ 3.849414] systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.850173] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.850241] systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.851048] systemd[1]: Starting Load udev Rules from Credentials...
[ 3.852526] device-mapper: uevent: version 1.0.3
[ 3.852599] systemd[1]: Starting Coldplug All udev Devices...
[ 3.852662] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 3.855239] systemd[1]: Starting Virtual Console Setup...
[ 3.857260] systemd[1]: Mounted Huge Pages File System.
[ 3.857361] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.857425] systemd[1]: Mounted Kernel Debug File System.
[ 3.857493] systemd[1]: Mounted Kernel Trace File System.
[ 3.857768] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.858000] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.858110] systemd[1]: Finished Load Kernel Module configfs.
[ 3.858308] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 3.858418] systemd[1]: Finished Load Kernel Module dm_mod.
[ 3.858795] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.858885] systemd[1]: Finished Load Kernel Module drm.
[ 3.859031] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.859115] systemd[1]: Finished Load Kernel Module fuse.
[ 3.859278] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 3.859369] systemd[1]: Finished Load Kernel Module loop.
[ 3.865394] systemd[1]: Finished Load udev Rules from Credentials.
[ 3.868961] systemd[1]: Mounting FUSE Control File System...
[ 3.869765] systemd[1]: Mounting Kernel Configuration File System...
[ 3.869812] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 3.871254] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 3.873624] systemd[1]: Mounted Kernel Configuration File System.
[ 3.875017] systemd[1]: Mounted FUSE Control File System.
[ 3.879048] systemd-journald[346]: Collecting audit messages is disabled.
[ 3.883228] EXT4-fs (nvme0n1p1): re-mounted 7f701c1e-4cf2-46b9-88a1-184e3dfef17e r/w. Quota mode: none.
[ 3.884988] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.885174] RPC: Registered named UNIX socket transport module.
[ 3.885176] RPC: Registered udp transport module.
[ 3.885176] RPC: Registered tcp transport module.
[ 3.885177] RPC: Registered tcp-with-tls transport module.
[ 3.885177] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.885443] systemd[1]: Finished Virtual Console Setup.
[ 3.886286] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.886318] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 3.886456] systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 3.887732] systemd[1]: Starting Load/Save OS Random Seed...
[ 3.887756] systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 3.893893] i2c_dev: i2c /dev entries driver
[ 3.896517] systemd[1]: Finished Load Kernel Modules.
[ 3.897406] systemd[1]: Starting Apply Kernel Variables...
[ 3.899374] systemd[1]: Finished Load/Save OS Random Seed.
[ 3.901664] systemd[1]: Started Userspace Out-Of-Memory (OOM) Killer.
[ 3.910944] systemd[1]: Finished Apply Kernel Variables.
[ 3.913736] systemd[1]: Starting CLI Netfilter Manager...
[ 3.914275] systemd[1]: Started Journal Service.
[ 3.927621] systemd-journald[346]: Received client request to flush runtime journal.
[ 4.179974] zram0: detected capacity change from 0 to 32491520
[ 4.210880] sdhci-pci 0000:00:14.5: SDHCI controller found [8086:a375] (rev 10)
[ 4.214924] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6436-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 4.214927] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 8F1F6435-9F42-42C8-BADC-0E9424F20C9A has zero instances
[ 4.214928] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: 7391A661-223A-47DB-A77A-7BE84C60822D has zero instances
[ 4.214929] wmi_bus wmi_bus-PNP0C14:02: [Firmware Info]: DF4E63B6-3BBC-4858-9737-C74F82F821F3 has zero instances
[ 4.218087] mmc0: SDHCI controller on PCI [0000:00:14.5] using ADMA 64-bit
[ 4.245264] raid6: skipped pq benchmark and selected avx2x4
[ 4.245267] raid6: using avx2x2 recovery algorithm
[ 4.247439] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 4.248905] xor: automatically using best checksumming function avx
[ 4.250639] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 4.250798] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 4.253589] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 4.253593] cfg80211: failed to load regulatory.db
[ 4.268335] Adding 16245756k swap on /dev/zram0. Priority:100 extents:1 across:16245756k SSDsc
[ 4.273731] intel_pmc_core INT33A1:00: initialized
[ 4.277895] intel_pch_thermal 0000:00:12.0: enabling device (0100 -> 0102)
[ 4.407573] EDAC ie31200: No ECC support
[ 4.407954] EDAC ie31200: No ECC support
[ 4.408031] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 4.409218] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 4.411289] Btrfs loaded, zoned=yes, fsverity=yes
[ 4.437668] intel-lpss 0000:00:15.1: enabling device (0100 -> 0102)
[ 4.438336] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 4.464744] Bluetooth: Core ver 2.22
[ 4.464775] NET: Registered PF_BLUETOOTH protocol family
[ 4.464779] Bluetooth: HCI device and connection manager initialized
[ 4.464785] Bluetooth: HCI socket layer initialized
[ 4.464789] Bluetooth: L2CAP socket layer initialized
[ 4.464795] Bluetooth: SCO socket layer initialized
[ 4.465428] intel-lpss 0000:00:1e.0: enabling device (0100 -> 0102)
[ 4.466028] idma64 idma64.2: Found Intel integrated DMA 64-bit
[ 4.475552] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 4.491478] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 4.496412] Creating 1 MTD partitions on "0000:00:1f.5":
[ 4.496417] 0x000000000000-0x000001000000 : "BIOS"
[ 4.557398] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 4.557456] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 4.558375] dw-apb-uart.2: ttyS4 at MMIO 0xa091e000 (irq = 20, base_baud = 7500000) is a 16550A
[ 4.581141] i2c i2c-2: Successfully instantiated SPD at 0x50
[ 4.581810] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 4.598889] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 9c:7b:ef:30:a7:6b, XID 541, IRQ 146
[ 4.598906] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 4.685041] iTCO_vendor_support: vendor-support=0
[ 4.685346] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[ 4.685348] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 4.685349] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 4.685350] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 4.685596] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 4.689067] input: HP WMI hotkeys as /devices/virtual/input/input7
[ 4.692270] cryptd: max_cpu_qlen set to 1000
[ 4.692530] ee1004 2-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 4.695980] usbcore: registered new interface driver btusb
[ 4.701143] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 4.701248] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 4.701821] Bluetooth: hci0: RTL: examining hci_ver=08 hci_rev=000c lmp_ver=08 lmp_subver=8821
[ 4.702817] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 4.702820] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_fw.bin
[ 4.704665] Bluetooth: hci0: RTL: loading rtl_bt/rtl8821c_config.bin
[ 4.704744] Bluetooth: hci0: RTL: cfg_sz 10, total sz 34926
[ 4.704808] AES CTR mode by8 optimization enabled
[ 4.713544] rtw_8821ce 0000:05:00.0: enabling device (0100 -> 0103)
[ 4.714842] rtw_8821ce 0000:05:00.0: Firmware version 24.11.0, H2C version 12
[ 4.719984] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 4.720394] snd_hda_intel 0000:03:00.1: enabling device (0100 -> 0102)
[ 4.720475] snd_hda_intel 0000:03:00.1: Force to non-snoop mode
[ 4.735203] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input8
[ 4.735461] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input9
[ 4.735505] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input10
[ 4.735533] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input11
[ 4.735556] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:00.0/0000:03:00.1/sound/card1/input12
[ 4.786026] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC671: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 4.786029] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 4.786031] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 4.786032] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 4.786032] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 4.786033] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 4.786034] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 4.786035] snd_hda_codec_realtek hdaudioC0D0: Line=0x1b
[ 4.799462] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 4.799510] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 4.799532] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 4.799562] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 4.799586] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 4.804692] rtw_8821ce 0000:05:00.0 wlp5s0: renamed from wlan0
[ 4.815214] intel_tcc_cooling: Programmable TCC Offset detected
[ 5.169907] Bluetooth: hci0: RTL: fw version 0x75b8f098
[ 5.212765] BTRFS: device label DATA devid 1 transid 20682 /dev/sda1 (8:1) scanned by mount (592)
[ 5.216416] BTRFS info (device sda1): first mount of filesystem 0f1ef58b-496b-48fd-a17b-6cbc03a2c8ee
[ 5.216426] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 5.216430] BTRFS info (device sda1): using free-space-tree
[ 7.143593] [drm] amdgpu kernel modesetting enabled.
[ 7.143731] amdgpu: Virtual CRAT table created for CPU
[ 7.143754] amdgpu: Topology: Add CPU node
[ 7.143850] amdgpu: Overdrive is enabled, please disable it before reporting any bugs unrelated to overdrive.
[ 7.144853] amdgpu 0000:03:00.0: enabling device (0106 -> 0107)
[ 7.144948] [drm] initializing kernel modesetting (DIMGREY_CAVEFISH 0x1002:0x73FF 0x1043:0x05D5 0xC7).
[ 7.144959] [drm] register mmio base: 0xA0300000
[ 7.144960] [drm] register mmio size: 1048576
[ 7.150351] [drm] add ip block number 0 <nv_common>
[ 7.150354] [drm] add ip block number 1 <gmc_v10_0>
[ 7.150356] [drm] add ip block number 2 <navi10_ih>
[ 7.150356] [drm] add ip block number 3 <psp>
[ 7.150357] [drm] add ip block number 4 <smu>
[ 7.150359] [drm] add ip block number 5 <dm>
[ 7.150360] [drm] add ip block number 6 <gfx_v10_0>
[ 7.150361] [drm] add ip block number 7 <sdma_v5_2>
[ 7.150362] [drm] add ip block number 8 <vcn_v3_0>
[ 7.150363] [drm] add ip block number 9 <jpeg_v3_0>
[ 7.150384] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 7.150386] amdgpu: ATOM BIOS: 115-D534P00-100
[ 7.166025] intel_rapl_common: Found RAPL domain package
[ 7.166027] intel_rapl_common: Found RAPL domain core
[ 7.166028] intel_rapl_common: Found RAPL domain dram
[ 7.206477] Console: switching to colour dummy device 80x25
[ 7.243989] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 7.243993] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 7.244063] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 7.244070] amdgpu 0000:03:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used)
[ 7.244072] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 7.244083] [drm] Detected VRAM RAM=8176M, BAR=256M
[ 7.244084] [drm] RAM width 128bits GDDR6
[ 7.244251] [drm] amdgpu: 8176M of VRAM memory ready
[ 7.244253] [drm] amdgpu: 7932M of GTT memory ready.
[ 7.244267] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 7.244343] [drm] PCIE GART of 512M enabled (table at 0x0000008002000000).
[ 8.731512] amdgpu 0000:03:00.0: amdgpu: STB initialized to 2048 entries
[ 8.731747] [drm] Loading DMUB firmware via PSP: version=0x02020020
[ 8.732066] [drm] use_doorbell being set to: [true]
[ 8.732077] [drm] use_doorbell being set to: [true]
[ 8.732086] [drm] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 3
[ 8.798877] amdgpu 0000:03:00.0: amdgpu: reserve 0xa00000 from 0x81fd000000 for PSP TMR
[ 8.901360] amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 8.918483] amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 8.918507] amdgpu 0000:03:00.0: amdgpu: smu driver if version = 0x0000000f, smu fw if version = 0x00000013, smu fw program = 0, version = 0x003b3100 (59.49.0)
[ 8.918515] amdgpu 0000:03:00.0: amdgpu: SMU driver if version not matched
[ 8.918549] amdgpu 0000:03:00.0: amdgpu: use vbios provided pptable
[ 8.965034] amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
[ 8.965468] [drm] Display Core v3.2.310 initialized on DCN 3.0.2
[ 8.965470] [drm] DP-HDMI FRL PCON supported
[ 8.966714] [drm] DMUB hardware initialized: version=0x02020020
[ 8.969937] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 9.408645] [drm] kiq ring mec 2 pipe 1 q 0
[ 9.481641] amdgpu: HMM registered 8176MB device memory
[ 9.483301] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 9.483314] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 9.483546] amdgpu: Virtual CRAT table created for GPU
[ 9.483882] amdgpu: Topology: Add dGPU node [0x73ff:0x1002]
[ 9.483884] kfd kfd: amdgpu: added device 1002:73ff
[ 9.483902] amdgpu 0000:03:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 8, active_cu_number 28
[ 9.483905] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
[ 9.483907] amdgpu 0000:03:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
[ 9.483908] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
[ 9.483909] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
[ 9.483911] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
[ 9.483912] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
[ 9.483913] amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
[ 9.483914] amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
[ 9.483915] amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
[ 9.483916] amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
[ 9.483917] amdgpu 0000:03:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
[ 9.483918] amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
[ 9.483920] amdgpu 0000:03:00.0: amdgpu: ring sdma1 uses VM inv eng 14 on hub 0
[ 9.483921] amdgpu 0000:03:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
[ 9.483922] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
[ 9.483923] amdgpu 0000:03:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
[ 9.483924] amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
[ 9.484909] amdgpu 0000:03:00.0: amdgpu: Using BACO for runtime pm
[ 9.485749] [drm] Initialized amdgpu 3.59.0 for 0000:03:00.0 on minor 1
[ 9.491826] fbcon: amdgpudrmfb (fb0) is primary device
[ 9.492078] [drm] pre_validate_dsc:1593 MST_DSC dsc precompute is not needed
[ 9.798319] Console: switching to colour frame buffer device 240x67
[ 9.833696] amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 10.006821] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 10.006824] Bluetooth: BNEP filters: protocol multicast
[ 10.006826] Bluetooth: BNEP socket layer initialized
[ 10.009483] Bluetooth: MGMT ver 1.23
[ 10.013447] NET: Registered PF_ALG protocol family
[ 10.209328] nvme nvme0: using unchecked data buffer
[ 10.280310] block nvme0n1: No UUID available providing old NGUID
[ 10.282945] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[ 10.469739] r8169 0000:04:00.0 enp4s0: Link is Down
[ 11.047828] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 11.184023] u32 classifier
[ 11.184026] Performance counters on
[ 11.184026] input device check on
[ 11.184026] Actions configured
[ 13.331240] kvm: Running KVM with ignore_msrs=1 and report_ignored_msrs=0 is not a
a supported configuration. Lying to the guest about the existence of MSRs
may cause the guest operating system to hang or produce errors. If a guest
does not run without ignore_msrs=1, please report it to kvm@vger.kernel.org.
[ 13.988515] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 13.990171] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 16.349009] RPC: Registered rdma transport module.
[ 16.349011] RPC: Registered rdma backchannel transport module.
[ 16.460858] NFSD: Using nfsdcld client tracking operations.
[ 16.460867] NFSD: no clients to reclaim, skipping NFSv4 grace period (net f0000000)
[ 17.016943] Initializing XFRM netlink socket
[ 17.098407] warning: `pmdalinux' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54
2025-01-14 17:51 ` Christian Heusel
@ 2025-01-15 18:35 ` Niklas Cassel
0 siblings, 0 replies; 13+ messages in thread
From: Niklas Cassel @ 2025-01-15 18:35 UTC (permalink / raw)
To: Christian Heusel
Cc: Mario Limonciello, Damien Le Moal, Mika Westerberg, linux-ide,
linux-kernel, regressions
Hello Christian,
On Tue, Jan 14, 2025 at 06:51:19PM +0100, Christian Heusel wrote:
> > > Looking at the Arch Linux thread, it seems that the person reporting the
> > > problem says that even on a working kernel, you only see the device the
> > > user presses the open button on the Blu-Ray player.
> > >
> > > This suggests to me that it sends a hotplug/PhyRdy event when the user
> > > presses the open button.
> > >
> > > In Linux, if we don't detect anything connected to the port during initial
> > > boot, and if the port is not marked (by firmware) as either Hotplug Capable,
> > > or External, then we mask the PhyRdy interrupt.
> > >
> > > We could reconsider this, and leave the PhyRdy interrupt enabled even for a
> > > port that is not Hotplug Capable or External, if there is no devices detected
> > > on the port.
Short story:
I was thinking about this a lot, and unfortunately I came to the conclusion
that we cannot with good conscience write such a workaround.
The reason is that we would increase the power usage on all SATA ports that
have no devices connected to them at boot, not just for his controller, but
for all SATA controller all around the world, just to have a workaround for
this non-spec compliant SATA Blu-Ray player.
(The reason is that would not be able to offline the port, which will shut
down the PHY).
I suggest that your user simply does:
# echo max_performance > /sys/class/scsi_host/host3/link_power_management_policy
or
$ sudo sh -c "echo max_performance > /sys/class/scsi_host/host3/link_power_management_policy"
Long story:
Each port can be marked External or Hotplug capable by firmware, if so,
ahci_update_initial_lpm_policy() will override the configured
CONFIG_SATA_MOBILE_LPM_POLICY and set it to 0.
(This is because hotplug and LPM are mutually exclusive.)
In this case, the lpm-pol is printed as 3 for all ports, this means that
CONFIG_SATA_MOBILE_LPM_POLICY was set to 3, and that none of the ports
were marked as external or hotplug capable by firmware.
Note that even though the target LPM policy is printed early in the boot,
the actual enablement of LPM is not done now, that is done _after_ all
devices have been detected.
> [ 0.594488] ata3: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a200 irq 126 lpm-pol 3
> [ 0.594491] ata4: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a280 irq 126 lpm-pol 3
> [ 0.594494] ata5: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a300 irq 126 lpm-pol 3
> [ 0.594497] ata6: SATA max UDMA/133 abar m2048@0xa091a000 port 0xa091a380 irq 126 lpm-pol 3
Note that when the AHCI driver is loaded, it will call ahci_reset_controller(),
which does a HBA reset, which will implicitly send a COMRESET to all ports.
Thus, when we dump PxSSTS (SStatus), all ports have already been reset once,
and we can see that:
0h No device detected and Phy communication not established
1h Device presence detected but Phy communication not established
3h Device presence detected and Phy communication established
4h Phy in offline mode as a result of the interface being disabled
or running in a BIST loopback mode
> [ 0.594618] ata3: before wakeup PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
> [ 0.594675] ata5: before wakeup PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
> [ 0.594717] ata6: before wakeup PxSSTS 0x4 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
> [ 0.595698] ata4: before wakeup PxSSTS 0x0 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
This is stored in the lowest hex value, so:
ata3: 0x3
ata5: 0x3
ata6: 0x4
ata4: 0x0
> [ 1.113233] ata4: before reset PxSSTS 0x0 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.113363] ata6: before reset PxSSTS 0x4 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.113481] ata5: before reset PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.113603] ata3: before reset PxSSTS 0x133 PxSCTL 0x0 PxCMD 0x4016 PxDEVSLP 0x0
After sending a wakeup to force all devices to active mode,
there was no change (this was extra test code added by me).
> [ 1.926827] ata3: after reset PxSSTS 0x133 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.927224] ata6: after reset PxSSTS 0x4 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.927707] ata4: after reset PxSSTS 0x0 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.928128] ata5: after reset PxSSTS 0x133 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
After reset, we still don't see ata4 moving to 0x3.
From the controller perspective, there is nothing plugged in.
> [ 1.926827] ata3: after reset PxSSTS 0x133 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.934957] ata3.00: ATA-8: WDC WD20EARX-00PASB0, 51.0AB51, max UDMA/133
> [ 1.935576] ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
On ata3, which did detect a device presence, we see a WDC drive.
After this, we will call set_lpm() for port ata3. Since the LPM policy is 0x3,
we will disable hotplug IRQ (since low power modes are and hotplug are mutually
exclusive).
> [ 1.927224] ata6: after reset PxSSTS 0x4 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.927365] ata6: before offline PxSSTS 0x4 PxSCTL 0x300 PxCMD 0xc017 PxDEVSLP 0x0
On ata6, we don't detect any device.
After this, we will call set_lpm() for port ata6. Since the LPM policy is 0x3,
we will disable hotplug IRQ (since low power modes are and hotplug are mutually
exclusive). Because there is no device detected, we will also offline the port,
to save even more power. (Since the port is not external or hotplug capable,
we know that there can never come a device later.)
> [ 1.927707] ata4: after reset PxSSTS 0x0 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.927851] ata4: before offline PxSSTS 0x0 PxSCTL 0x300 PxCMD 0xc017 PxDEVSLP 0x0
On ata4, we don't detect any device.
After this, we will call set_lpm() for port ata4. Since the LPM policy is 0x3,
we will disable hotplug IRQ (since low power modes are and hotplug are mutually
exclusive). Because there is no device detected, we will also offline the port,
to save even more power (since the port is not external or hotplug capable,
we know that there can never come a device later).
> [ 1.928128] ata5: after reset PxSSTS 0x133 PxSCTL 0x300 PxCMD 0x4016 PxDEVSLP 0x0
> [ 1.931381] ata5.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT04L6Q, max UDMA/133
> [ 1.931684] ata5.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
> [ 1.931212] ata5.00: Model 'SAMSUNG MZ7TD256HAFV-000L9', rev 'DXT04L6Q', applying quirks: nolpm
> [ 1.931224] ata5.00: LPM support broken, forcing max_power
On ata5, which did detect a device presence, we see a Samsung drive.
Looking up at this device string in our list of quirks, wee see that this
device does not handle low power states very well, we therefore override
the LPM policy for the port that this device is connected to to max_power 0x0).
After this, we will call set_lpm() for port ata5. Since the LPM policy is 0x0,
we will not disable the hotplug IRQ.
This seem to be in line with AHCI "10.1.1 Firmware Specific Initialization",
step 5.
"""
Wait for a positive indication that a device is attached to the port (the
maximum amount of time to wait for presence indication is specified in the
Serial ATA Revision 2.6 specification). This is done by polling PxSSTS.DET.
If PxSSTS.DET returns a value of 1h or 3h when read, then system software
shall continue to the next step, otherwise if the polling process times out
system software moves to the next implemented port and returns to step 1.
"""
Note that the Samsung drive is not well behaved, as it does not handle low
power modes very well, that is why we quirk it.
But in order to be able to quirk a device, you need to actually have a
working communication with the device. (And a COMRESET is supposed to
re-initialize communication).
We can not quirk the Blu-Ray device, since it does not seem to reply to
a COMRESET.
Perhaps there is a firmware update for this device?
Feel free to write to LG or whoever creates this device and we will be
happy help out as best as we can.
Kind regards,
Niklas
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-01-15 18:35 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-10 9:04 [REGRESSION][BISECTED] BU40N Blu-Ray drive broken since 7627a0edef54 Christian Heusel
2025-01-10 9:24 ` Damien Le Moal
2025-01-10 9:42 ` Christian Heusel
2025-01-10 9:50 ` Damien Le Moal
2025-01-10 11:24 ` Niklas Cassel
2025-01-10 16:21 ` Christian Heusel
2025-01-11 16:41 ` Christian Heusel
2025-01-13 16:26 ` Niklas Cassel
2025-01-14 16:05 ` Niklas Cassel
2025-01-14 16:40 ` Christian Heusel
2025-01-14 17:51 ` Christian Heusel
2025-01-15 18:35 ` Niklas Cassel
2025-01-14 16:06 ` Christian Heusel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).