You are not logged in.
Hiya, I'm getting some warning trace in dmesg early in boot
[ 0.656631] ------------[ cut here ]------------
[ 0.656633] TLB flush not stride 200000 aligned. Start 7fffc0000000, end 7fffffe01000
[ 0.656637] WARNING: CPU: 1 PID: 167 at arch/x86/mm/tlb.c:1342 flush_tlb_mm_range+0x577/0x600
[ 0.656642] Modules linked in:
[ 0.656645] CPU: 1 UID: 0 PID: 167 Comm: modprobe Not tainted 6.13.3-zen1-1-zen #1 4eb5d478c0b89d357d430d5db88dfd1ce4224b4f
[ 0.656648] Hardware name: ASUS System Product Name/TUF GAMING B550-PLUS, BIOS 3611 09/30/2024
[ 0.656650] RIP: 0010:flush_tlb_mm_range+0x577/0x600
[ 0.656653] Code: 5f e9 0d d5 3f 00 e8 68 62 f5 ff e9 e9 fc ff ff 48 8b 0c 24 4c 89 e2 48 c7 c7 10 e8 e6 94 c6 05 81 2a 31 02 01 e8 19 e9 01 00 <0f> 0b e9 36 fb ff ff fa 0f 1f 44 00 00 48 89 df e8 a4 f4 ff ff fb
[ 0.656654] RSP: 0018:ffffb3ee80757a38 EFLAGS: 00010286
[ 0.656657] RAX: 0000000000000000 RBX: ffff88d535ab5d80 RCX: 00000000ffffefff
[ 0.656658] RDX: 0000000000000000 RSI: 00000000ffffffea RDI: 00000000ffffefff
[ 0.656660] RBP: ffff88c855a1cd00 R08: ffffffff956b5888 R09: 00000000ffffefff
[ 0.656661] R10: 0000000000000003 R11: 0000000000000002 R12: 00007fffc0000000
[ 0.656662] R13: 0000000000000001 R14: 0000000000000015 R15: ffff88d535a80000
[ 0.656664] FS: 0000000000000000(0000) GS:ffff88d535a80000(0000) knlGS:0000000000000000
[ 0.656665] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 0.656667] CR2: 0000000000000000 CR3: 0000000106402000 CR4: 0000000000f50ef0
[ 0.656669] PKRU: 55555554
[ 0.656670] Call Trace:
[ 0.656672] <TASK>
[ 0.656674] ? flush_tlb_mm_range+0x577/0x600
[ 0.656676] ? __warn.cold+0x93/0xed
[ 0.656679] ? flush_tlb_mm_range+0x577/0x600
[ 0.656681] ? report_bug+0xe7/0x210
[ 0.656685] ? handle_bug+0x58/0x90
[ 0.656688] ? exc_invalid_op+0x19/0xc0
[ 0.656690] ? asm_exc_invalid_op+0x1a/0x20
[ 0.656694] ? flush_tlb_mm_range+0x577/0x600
[ 0.656697] ? flush_tlb_mm_range+0x577/0x600
[ 0.656700] tlb_flush_mmu+0x125/0x1a0
[ 0.656703] tlb_finish_mmu+0x41/0x80
[ 0.656706] relocate_vma_down+0x183/0x200
[ 0.656713] setup_arg_pages+0x201/0x390
[ 0.656719] load_elf_binary+0x3a5/0x17b0
[ 0.656722] ? srso_alias_return_thunk+0x5/0xfbef5
[ 0.656724] ? __kernel_read+0x19d/0x300
[ 0.656728] ? srso_alias_return_thunk+0x5/0xfbef5
[ 0.656730] ? load_misc_binary+0x265/0x380
[ 0.656732] bprm_execve+0x244/0x630
[ 0.656735] kernel_execve+0x17d/0x1e0
[ 0.656738] call_usermodehelper_exec_async+0xd0/0x190
[ 0.656741] ? __pfx_call_usermodehelper_exec_async+0x10/0x10
[ 0.656743] ret_from_fork+0x34/0x50
[ 0.656746] ? __pfx_call_usermodehelper_exec_async+0x10/0x10
[ 0.656748] ret_from_fork_asm+0x1a/0x30
[ 0.656753] </TASK>
[ 0.656754] ---[ end trace 0000000000000000 ]---It seems to be related to this in kernel source:
https://github.com/torvalds/linux/blob/ … lb.c#L1024
void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
unsigned long end, unsigned int stride_shift,
bool freed_tables)
{
struct flush_tlb_info *info;
u64 new_tlb_gen;
int cpu;
cpu = get_cpu();
/* Should we flush just the requested range? */
if ((end == TLB_FLUSH_ALL) ||
((end - start) >> stride_shift) > tlb_single_page_flush_ceiling) {
start = 0;
end = TLB_FLUSH_ALL;
}
/* This is also a barrier that synchronizes with switch_mm(). */
new_tlb_gen = inc_mm_tlb_gen(mm);
info = get_flush_tlb_info(mm, start, end, stride_shift, freed_tables,
new_tlb_gen);
/*
* flush_tlb_multi() is not optimized for the common case in which only
* a local TLB flush is needed. Optimize this use-case by calling
* flush_tlb_func_local() directly in this case.
*/
if (cpumask_any_but(mm_cpumask(mm), cpu) < nr_cpu_ids) {
info->trim_cpumask = should_trim_cpumask(mm);
flush_tlb_multi(mm_cpumask(mm), info);
} else if (mm == this_cpu_read(cpu_tlbstate.loaded_mm)) {
lockdep_assert_irqs_enabled();
local_irq_disable();
flush_tlb_func(info);
local_irq_enable();
}
put_flush_tlb_info();
put_cpu();
mmu_notifier_arch_invalidate_secondary_tlbs(mm, start, end);
}Does anyone know should i be worried and do something about it?
my system
Operating System: Arch Linux
KDE Plasma Version: 6.3.1
KDE Frameworks Version: 6.11.0
Qt Version: 6.8.2
Kernel Version: 6.13.3-zen1-1-zen (64-bit)
Graphics Platform: Wayland
Processors: 16 × AMD Ryzen 7 5700G with Radeon Graphics
Memory: 54,7 GiB of RAM
Graphics Processor: AMD Radeon Graphics
Manufacturer: ASUSdmidecode
# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Table at 0xC67ED000.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends Inc.
Version: 3611
Release Date: 09/30/2024
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
APM is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: ASUS
Product Name: System Product Name
Version: System Version
Serial Number: System Serial Number
UUID: c853a664-89ea-817d-81a5-107c614b3889
Wake-up Type: Power Switch
SKU Number: SKU
Family: To be filled by O.E.M.
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: ASUSTeK COMPUTER INC.
Product Name: TUF GAMING B550-PLUS
Version: Rev X.0x
Serial Number: 240132988400186
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x0003, DMI type 3, 22 bytes
Chassis Information
Manufacturer: Default string
Type: Desktop
Lock: Not Present
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Safe
Security Status: None
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: 1
Contained Elements: 0
SKU Number: Default string
Handle 0x0004, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: U32G2_3
Internal Connector Type: None
External Reference Designator: U32G2_3
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0005, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: U32G2_C4
Internal Connector Type: None
External Reference Designator: U32G2_C4
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0006, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: U32G1_56
Internal Connector Type: None
External Reference Designator: U32G1_56
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0007, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: LAN
Internal Connector Type: None
External Reference Designator: LAN
External Connector Type: RJ-45
Port Type: Network Port
Handle 0x0008, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: DP
Internal Connector Type: None
External Reference Designator: DP port
External Connector Type: Other
Port Type: Video Port
Handle 0x0009, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: HDMI
Internal Connector Type: None
External Reference Designator: HDMI port
External Connector Type: Other
Port Type: Video Port
Handle 0x000A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: U2_56
Internal Connector Type: None
External Reference Designator: U2_56
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x000B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: U32G1_78
Internal Connector Type: None
External Reference Designator: U32G1_78
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x000C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: AUDIO
Internal Connector Type: None
External Reference Designator: AUDIO
External Connector Type: Other
Port Type: Audio Port
Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA6G_1
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA6G_2
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA6G_3
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA6G_4
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA6G_5
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA6G_6
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: M.2_1(SOCKET3)
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: M.2_2(SOCKET3)
Internal Connector Type: SAS/SATA Plug Receptacle
External Reference Designator: Not Specified
External Connector Type: None
Port Type: SATA
Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: USBE12
Internal Connector Type: Access Bus (USB)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: USB
Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: USBE34
Internal Connector Type: Access Bus (USB)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: USB
Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: U32G1_12
Internal Connector Type: Access Bus (USB)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: USB
Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: CPU_FAN
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: CPU_OPT
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: CHA_FAN1
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: CHA_FAN2
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: CHA_FAN3
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: AIO_PUMP
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SPI_TPM
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x001F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: AAFP
Internal Connector Type: Mini Jack (headphones)
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Audio Port
Handle 0x0020, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: PANEL
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0021, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: RGB_HEADER1
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0022, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: RGB_HEADER2
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0023, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: ADD_GEN 2
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0024, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: M.2(WIFI)
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Network Port
Handle 0x0025, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: TB_HEADER
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Thunderbolt
Handle 0x0026, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: T_SENSOR
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0027, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: COM
Internal Connector Type: DB-9 male
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Serial Port 16550A Compatible
Handle 0x0028, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: COM_DEBUG
Internal Connector Type: Other
External Reference Designator: Not Specified
External Connector Type: None
Port Type: Other
Handle 0x0029, DMI type 10, 6 bytes
On Board Device Information
Type: Video
Status: Enabled
Description: To Be Filled By O.E.M.
Handle 0x002A, DMI type 11, 5 bytes
OEM Strings
String 1: Default string
String 2: Default string
String 3: MOLESKIN
String 4: Default string
String 5: Default string
String 6: Default string
String 7: Default string
String 8: Default string
Handle 0x002B, DMI type 12, 5 bytes
System Configuration Options
Option 1: Default string
Option 2: Default string
Option 3: Default string
Option 4: Default string
Handle 0x002C, DMI type 32, 20 bytes
System Boot Information
Status: No errors detected
Handle 0x002D, DMI type 34, 11 bytes
Management Device
Description: NCT6798D-R
Type: Other
Address: 0x00000295
Address Type: I/O Port
Handle 0x002E, DMI type 40, 50 bytes
Additional Information 1
Referenced Handle: 0x0029
Referenced Offset: 0x01
String: To Be Filled By O.E.M. 1
Value: 0x00000000
Additional Information 2
Referenced Handle: 0x0001
Referenced Offset: 0x0f
String: Not Specified
Value: 0x0000001e
Additional Information 3
Referenced Handle: 0x0001
Referenced Offset: 0x1a
String: Mordor 2
Value: 0x00000000
Additional Information 4
Referenced Handle: 0x0001
Referenced Offset: 0x1a
String: PRODUCT_LINE
Value: 0x00000000
Additional Information 5
Referenced Handle: 0x0001
Referenced Offset: 0x19
String: PRODUCT_SKU
Value: 0x00000003
Handle 0x002F, DMI type 41, 11 bytes
Onboard Device
Reference Designation: Onboard IGD
Type: Video
Status: Enabled
Type Instance: 1
Bus Address: 0000:00:02.0
Handle 0x0030, DMI type 44, 9 bytes
Unknown Type
Header and Data:
2C 09 30 00 FF FF 01 01 00
Handle 0x0031, DMI type 43, 31 bytes
TPM Device
Vendor ID: AMD
Specification Version: 2.0
Firmware Revision: 3.92
Description: AMD
Characteristics:
Family configurable via platform software support
OEM-specific Information: 0x00000000
Handle 0x0032, DMI type 18, 23 bytes
32-bit Memory Error Information
Type: OK
Granularity: Unknown
Operation: Unknown
Vendor Syndrome: Unknown
Memory Array Address: Unknown
Device Address: Unknown
Resolution: Unknown
Handle 0x0033, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x0032
Number Of Devices: 4
Handle 0x0034, DMI type 19, 31 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x00FFFFFFFFF
Range Size: 64 GB
Physical Array Handle: 0x0033
Partition Width: 2
Handle 0x0035, DMI type 7, 27 bytes
Cache Information
Socket Designation: L1 - Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 512 kB
Maximum Size: 512 kB
Supported SRAM Types:
Pipeline Burst
Installed SRAM Type: Pipeline Burst
Speed: 1 ns
Error Correction Type: Multi-bit ECC
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0036, DMI type 7, 27 bytes
Cache Information
Socket Designation: L2 - Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 4 MB
Maximum Size: 4 MB
Supported SRAM Types:
Pipeline Burst
Installed SRAM Type: Pipeline Burst
Speed: 1 ns
Error Correction Type: Multi-bit ECC
System Type: Unified
Associativity: 8-way Set-associative
Handle 0x0037, DMI type 7, 27 bytes
Cache Information
Socket Designation: L3 - Cache
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 16 MB
Maximum Size: 16 MB
Supported SRAM Types:
Pipeline Burst
Installed SRAM Type: Pipeline Burst
Speed: 1 ns
Error Correction Type: Multi-bit ECC
System Type: Unified
Associativity: 16-way Set-associative
Handle 0x0038, DMI type 4, 48 bytes
Processor Information
Socket Designation: AM4
Type: Central Processor
Family: Zen
Manufacturer: Advanced Micro Devices, Inc.
ID: 00 0F A5 00 FF FB 8B 17
Signature: Family 25, Model 80, Stepping 0
Flags:
FPU (Floating-point unit on-chip)
VME (Virtual mode extension)
DE (Debugging extension)
PSE (Page size extension)
TSC (Time stamp counter)
MSR (Model specific registers)
PAE (Physical address extension)
MCE (Machine check exception)
CX8 (CMPXCHG8 instruction supported)
APIC (On-chip APIC hardware supported)
SEP (Fast system call)
MTRR (Memory type range registers)
PGE (Page global enable)
MCA (Machine check architecture)
CMOV (Conditional move instruction supported)
PAT (Page attribute table)
PSE-36 (36-bit page size extension)
CLFSH (CLFLUSH instruction supported)
MMX (MMX technology supported)
FXSR (FXSAVE and FXSTOR instructions supported)
SSE (Streaming SIMD extensions)
SSE2 (Streaming SIMD extensions 2)
HTT (Multi-threading)
Version: AMD Ryzen 7 5700G with Radeon Graphics
Voltage: 1.4 V
External Clock: 100 MHz
Max Speed: 4650 MHz
Current Speed: 3800 MHz
Status: Populated, Enabled
Upgrade: Socket AM4
L1 Cache Handle: 0x0035
L2 Cache Handle: 0x0036
L3 Cache Handle: 0x0037
Serial Number: Unknown
Asset Tag: Unknown
Part Number: Unknown
Core Count: 8
Core Enabled: 8
Thread Count: 16
Characteristics:
64-bit capable
Multi-Core
Hardware Thread
Execute Protection
Enhanced Virtualization
Power/Performance Control
Handle 0x0039, DMI type 18, 23 bytes
32-bit Memory Error Information
Type: OK
Granularity: Unknown
Operation: Unknown
Vendor Syndrome: Unknown
Memory Array Address: Unknown
Device Address: Unknown
Resolution: Unknown
Handle 0x003A, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x0033
Error Information Handle: 0x0039
Total Width: Unknown
Data Width: Unknown
Size: No Module Installed
Form Factor: Unknown
Set: None
Locator: DIMM_A1
Bank Locator: BANK 0
Type: Unknown
Type Detail: Unknown
Handle 0x003B, DMI type 18, 23 bytes
32-bit Memory Error Information
Type: OK
Granularity: Unknown
Operation: Unknown
Vendor Syndrome: Unknown
Memory Array Address: Unknown
Device Address: Unknown
Resolution: Unknown
Handle 0x003C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x0033
Error Information Handle: 0x003B
Total Width: 64 bits
Data Width: 64 bits
Size: 32 GB
Form Factor: DIMM
Set: None
Locator: DIMM_A2
Bank Locator: BANK 1
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: G Skill Intl
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: F4-3200C16-32GVK
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 5, Hex 0xCD
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 32 GB
Cache Size: None
Logical Size: None
Handle 0x003D, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x00FFFFFFFFF
Range Size: 64 GB
Physical Device Handle: 0x003C
Memory Array Mapped Address Handle: 0x0034
Partition Row Position: Unknown
Interleave Position: Unknown
Interleaved Data Depth: Unknown
Handle 0x003E, DMI type 18, 23 bytes
32-bit Memory Error Information
Type: OK
Granularity: Unknown
Operation: Unknown
Vendor Syndrome: Unknown
Memory Array Address: Unknown
Device Address: Unknown
Resolution: Unknown
Handle 0x003F, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x0033
Error Information Handle: 0x003E
Total Width: Unknown
Data Width: Unknown
Size: No Module Installed
Form Factor: Unknown
Set: None
Locator: DIMM_B1
Bank Locator: BANK 2
Type: Unknown
Type Detail: Unknown
Handle 0x0040, DMI type 18, 23 bytes
32-bit Memory Error Information
Type: OK
Granularity: Unknown
Operation: Unknown
Vendor Syndrome: Unknown
Memory Array Address: Unknown
Device Address: Unknown
Resolution: Unknown
Handle 0x0041, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x0033
Error Information Handle: 0x0040
Total Width: 64 bits
Data Width: 64 bits
Size: 32 GB
Form Factor: DIMM
Set: None
Locator: DIMM_B2
Bank Locator: BANK 3
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: G Skill Intl
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: F4-3200C16-32GVK
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 5, Hex 0xCD
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 32 GB
Cache Size: None
Logical Size: None
Handle 0x0042, DMI type 20, 35 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x00FFFFFFFFF
Range Size: 64 GB
Physical Device Handle: 0x0041
Memory Array Mapped Address Handle: 0x0034
Partition Row Position: Unknown
Interleave Position: Unknown
Interleaved Data Depth: Unknown
Handle 0x0043, DMI type 13, 22 bytes
BIOS Language Information
Language Description Format: Long
Installable Languages: 9
en|US|iso8859-1
fr|FR|iso8859-1
zh|TW|unicode
zh|CN|unicode
ja|JP|unicode
de|DE|iso8859-1
es|ES|iso8859-1
ru|RU|iso8859-5
ko|KR|unicode
Currently Installed Language: en|US|iso8859-1
Handle 0x0044, DMI type 9, 17 bytes
System Slot Information
Designation: PCIEX16_1
Type: PCI Express x16
Data Bus Width: 16x or x16
Current Usage: Available
Length: Long
ID: 0
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:00:1f.7
Handle 0x0045, DMI type 9, 17 bytes
System Slot Information
Designation: PCIEX16_2
Type: PCI Express x16
Data Bus Width: 4x or x4
Current Usage: Available
Length: Long
ID: 1
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:00:1f.7
Handle 0x0046, DMI type 9, 17 bytes
System Slot Information
Designation: PCIEX1_1
Type: PCI Express x1
Data Bus Width: 1x or x1
Current Usage: Available
Length: Short
ID: 2
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:00:1f.7
Handle 0x0047, DMI type 9, 17 bytes
System Slot Information
Designation: PCIEX1_2
Type: PCI Express x1
Data Bus Width: 1x or x1
Current Usage: Available
Length: Short
ID: 3
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:00:1f.7
Handle 0x0048, DMI type 9, 17 bytes
System Slot Information
Designation: PCIEX1_3
Type: PCI Express x1
Data Bus Width: 1x or x1
Current Usage: Available
Length: Short
ID: 4
Characteristics:
3.3 V is provided
PME signal is supported
Bus Address: 0000:00:1f.7
Handle 0x0049, DMI type 127, 4 bytes
End Of TableFull dmesg
[ 0.000000] Linux version 6.13.3-zen1-1-zen (linux-zen@archlinux) (gcc (GCC) 14.2.1 20250207, GNU ld (GNU Binutils) 2.44) #1 ZEN SMP PREEMPT_DYNAMIC Mon, 17 Feb 2025 17:41:56 +0000
[ 0.000000] Command line: net.ifnames=0 root=UUID=8dd6209b-5aaf-45f3-baa5-40483b160f27 rw amd_pstate=active nowatchdog zswap.enabled=0
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009d1efff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000009d1f000-0x0000000009ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000000a20d000-0x000000000affffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000be276fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000be277000-0x00000000be277fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000be278000-0x00000000c3d50fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c3d51000-0x00000000c40b6fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c40b7000-0x00000000c4223fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000c4224000-0x00000000c59d0fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000c59d1000-0x00000000c69fefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c69ff000-0x00000000c7ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c8000000-0x00000000caffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000cf000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000e2e2fffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000e2e300000-0x000000102fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0xa6650018-0xa665d867] usable ==> usable
[ 0.000000] e820: update [mem 0xa6642018-0xa664f857] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009d1efff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000009d1f000-0x0000000009ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000000a20d000-0x000000000affffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000000b020000-0x00000000a6642017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000a6642018-0x00000000a664f857] usable
[ 0.000000] reserve setup_data: [mem 0x00000000a664f858-0x00000000a6650017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000a6650018-0x00000000a665d867] usable
[ 0.000000] reserve setup_data: [mem 0x00000000a665d868-0x00000000be276fff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000be277000-0x00000000be277fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000be278000-0x00000000c3d50fff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c3d51000-0x00000000c40b6fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c40b7000-0x00000000c4223fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x00000000c4224000-0x00000000c59d0fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000c59d1000-0x00000000c69fefff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c69ff000-0x00000000c7ffffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c8000000-0x00000000caffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000cf000000-0x00000000cfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000e2e2fffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000e2e300000-0x000000102fffffff] reserved
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI=0xc4223000 ACPI 2.0=0xc4223014 TPMFinalLog=0xc4986000 SMBIOS=0xc67f0000 SMBIOS 3.0=0xc67ef000 MEMATTR=0xc09fb318 ESRT=0xc23bae18 RNG=0xc4203f18 INITRD=0xbb34d198 TPMEventLog=0xc40f7018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem74: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map
[ 0.000000] e820: remove [mem 0xf0000000-0xf7ffffff] reserved
[ 0.000000] efi: Remove mem75: MMIO range=[0xfd200000-0xfd2fffff] (1MB) from e820 map
[ 0.000000] e820: remove [mem 0xfd200000-0xfd2fffff] reserved
[ 0.000000] efi: Remove mem76: MMIO range=[0xfd600000-0xfd6fffff] (1MB) from e820 map
[ 0.000000] e820: remove [mem 0xfd600000-0xfd6fffff] reserved
[ 0.000000] efi: Not removing mem77: MMIO range=[0xfea00000-0xfea0ffff] (64KB) from e820 map
[ 0.000000] efi: Remove mem78: MMIO range=[0xfeb80000-0xfec01fff] (0MB) from e820 map
[ 0.000000] e820: remove [mem 0xfeb80000-0xfec01fff] reserved
[ 0.000000] efi: Not removing mem79: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem80: MMIO range=[0xfec30000-0xfec30fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem81: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem82: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map
[ 0.000000] efi: Not removing mem83: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
[ 0.000000] efi: Not removing mem84: MMIO range=[0xfedc2000-0xfedcffff] (56KB) from e820 map
[ 0.000000] efi: Not removing mem85: MMIO range=[0xfedd4000-0xfedd5fff] (8KB) from e820 map
[ 0.000000] efi: Remove mem86: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.3.0 present.
[ 0.000000] DMI: ASUS System Product Name/TUF GAMING B550-PLUS, BIOS 3611 09/30/2024
[ 0.000000] DMI: Memory slots populated: 2/4
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3800.052 MHz processor
[ 0.000128] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000130] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000136] last_pfn = 0xe2e300 max_arch_pfn = 0x400000000
[ 0.000141] MTRR map: 6 entries (4 fixed + 2 variable; max 21), built from 9 variable MTRRs
[ 0.000143] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000286] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[ 0.000291] last_pfn = 0xc8000 max_arch_pfn = 0x400000000
[ 0.002982] esrt: Reserving ESRT space from 0x00000000c23bae18 to 0x00000000c23bae50.
[ 0.002987] e820: update [mem 0xc23ba000-0xc23bafff] usable ==> reserved
[ 0.003000] Using GB pages for direct mapping
[ 0.003474] Secure boot disabled
[ 0.003474] RAMDISK: [mem 0xa665f000-0xb04d8fff]
[ 0.003882] ACPI: Early table checksum verification disabled
[ 0.003884] ACPI: RSDP 0x00000000C4223014 000024 (v02 ALASKA)
[ 0.003887] ACPI: XSDT 0x00000000C4222728 0000DC (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.003890] ACPI: FACP 0x00000000C4213000 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
[ 0.003893] ACPI: DSDT 0x00000000C4208000 00ADD6 (v02 ALASKA A M I 01072009 INTL 20120913)
[ 0.003895] ACPI: FACS 0x00000000C49B6000 000040
[ 0.003896] ACPI: IVRS 0x00000000C4221000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.003897] ACPI: SSDT 0x00000000C4219000 0072B0 (v02 AMD Artic 00000002 MSFT 04000000)
[ 0.003899] ACPI: SSDT 0x00000000C4215000 003B8E (v02 AMD AMD AOD 00000001 INTL 20120913)
[ 0.003900] ACPI: SSDT 0x00000000C4214000 000221 (v02 ALASKA CPUSSDT 01072009 AMI 01072009)
[ 0.003901] ACPI: FIDT 0x00000000C4207000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.003903] ACPI: MCFG 0x00000000C4205000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
[ 0.003904] ACPI: HPET 0x00000000C4204000 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
[ 0.003905] ACPI: VFCT 0x00000000C41F5000 00D884 (v01 ALASKA A M I 00000001 AMD 31504F47)
[ 0.003907] ACPI: BGRT 0x00000000C41F4000 000038 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.003908] ACPI: WPBT 0x00000000C4115000 00003C (v01 ALASKA A M I 00000001 ASUS 00000001)
[ 0.003909] ACPI: TPM2 0x00000000C4114000 00004C (v04 ALASKA A M I 00000001 AMI 00000000)
[ 0.003910] ACPI: SSDT 0x00000000C410E000 005354 (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.003912] ACPI: CRAT 0x00000000C410D000 000EE8 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.003913] ACPI: CDIT 0x00000000C410C000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.003914] ACPI: SSDT 0x00000000C410B000 000D53 (v02 AMD ArticIG2 00000001 INTL 20120913)
[ 0.003915] ACPI: SSDT 0x00000000C4109000 0010C1 (v02 AMD ArticTPX 00000001 INTL 20120913)
[ 0.003917] ACPI: SSDT 0x00000000C4105000 003E6E (v02 AMD ArticN 00000001 INTL 20120913)
[ 0.003918] ACPI: WSMT 0x00000000C4104000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.003919] ACPI: APIC 0x00000000C4103000 00015E (v04 ALASKA A M I 01072009 AMI 00010013)
[ 0.003920] ACPI: SSDT 0x00000000C4102000 00007D (v02 AMD ArticDIS 00000001 INTL 20120913)
[ 0.003922] ACPI: SSDT 0x00000000C4101000 0000BF (v01 AMD AmdTable 00001000 INTL 20120913)
[ 0.003923] ACPI: FPDT 0x00000000C4100000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.003924] ACPI: Reserving FACP table memory at [mem 0xc4213000-0xc4213113]
[ 0.003925] ACPI: Reserving DSDT table memory at [mem 0xc4208000-0xc4212dd5]
[ 0.003925] ACPI: Reserving FACS table memory at [mem 0xc49b6000-0xc49b603f]
[ 0.003926] ACPI: Reserving IVRS table memory at [mem 0xc4221000-0xc42210cf]
[ 0.003926] ACPI: Reserving SSDT table memory at [mem 0xc4219000-0xc42202af]
[ 0.003926] ACPI: Reserving SSDT table memory at [mem 0xc4215000-0xc4218b8d]
[ 0.003927] ACPI: Reserving SSDT table memory at [mem 0xc4214000-0xc4214220]
[ 0.003927] ACPI: Reserving FIDT table memory at [mem 0xc4207000-0xc420709b]
[ 0.003928] ACPI: Reserving MCFG table memory at [mem 0xc4205000-0xc420503b]
[ 0.003928] ACPI: Reserving HPET table memory at [mem 0xc4204000-0xc4204037]
[ 0.003928] ACPI: Reserving VFCT table memory at [mem 0xc41f5000-0xc4202883]
[ 0.003929] ACPI: Reserving BGRT table memory at [mem 0xc41f4000-0xc41f4037]
[ 0.003929] ACPI: Reserving WPBT table memory at [mem 0xc4115000-0xc411503b]
[ 0.003929] ACPI: Reserving TPM2 table memory at [mem 0xc4114000-0xc411404b]
[ 0.003930] ACPI: Reserving SSDT table memory at [mem 0xc410e000-0xc4113353]
[ 0.003930] ACPI: Reserving CRAT table memory at [mem 0xc410d000-0xc410dee7]
[ 0.003931] ACPI: Reserving CDIT table memory at [mem 0xc410c000-0xc410c028]
[ 0.003931] ACPI: Reserving SSDT table memory at [mem 0xc410b000-0xc410bd52]
[ 0.003931] ACPI: Reserving SSDT table memory at [mem 0xc4109000-0xc410a0c0]
[ 0.003932] ACPI: Reserving SSDT table memory at [mem 0xc4105000-0xc4108e6d]
[ 0.003932] ACPI: Reserving WSMT table memory at [mem 0xc4104000-0xc4104027]
[ 0.003932] ACPI: Reserving APIC table memory at [mem 0xc4103000-0xc410315d]
[ 0.003933] ACPI: Reserving SSDT table memory at [mem 0xc4102000-0xc410207c]
[ 0.003933] ACPI: Reserving SSDT table memory at [mem 0xc4101000-0xc41010be]
[ 0.003933] ACPI: Reserving FPDT table memory at [mem 0xc4100000-0xc4100043]
[ 0.003987] No NUMA configuration found
[ 0.003987] Faking a node at [mem 0x0000000000000000-0x0000000e2e2fffff]
[ 0.003992] NODE_DATA(0) allocated [mem 0xe2e2d52c0-0xe2e2fffff]
[ 0.004105] Zone ranges:
[ 0.004105] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.004106] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.004107] Normal [mem 0x0000000100000000-0x0000000e2e2fffff]
[ 0.004107] Device empty
[ 0.004108] Movable zone start for each node
[ 0.004109] Early memory node ranges
[ 0.004109] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.004110] node 0: [mem 0x0000000000100000-0x0000000009d1efff]
[ 0.004110] node 0: [mem 0x000000000a000000-0x000000000a1fffff]
[ 0.004111] node 0: [mem 0x000000000a20d000-0x000000000affffff]
[ 0.004111] node 0: [mem 0x000000000b020000-0x00000000be276fff]
[ 0.004112] node 0: [mem 0x00000000be278000-0x00000000c3d50fff]
[ 0.004112] node 0: [mem 0x00000000c69ff000-0x00000000c7ffffff]
[ 0.004112] node 0: [mem 0x0000000100000000-0x0000000e2e2fffff]
[ 0.004116] Initmem setup node 0 [mem 0x0000000000001000-0x0000000e2e2fffff]
[ 0.004119] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.004129] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.004210] On node 0, zone DMA32: 737 pages in unavailable ranges
[ 0.004219] On node 0, zone DMA32: 13 pages in unavailable ranges
[ 0.006804] On node 0, zone DMA32: 32 pages in unavailable ranges
[ 0.006898] On node 0, zone DMA32: 1 pages in unavailable ranges
[ 0.006974] On node 0, zone DMA32: 11438 pages in unavailable ranges
[ 0.061121] On node 0, zone Normal: 7424 pages in unavailable ranges
[ 0.061428] ACPI: PM-Timer IO Port: 0x808
[ 0.061434] CPU topo: Ignoring hot-pluggable APIC ID 0 in present package.
[ 0.061437] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.061448] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[ 0.061452] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[ 0.061454] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.061455] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.061457] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.061458] ACPI: HPET id: 0x10228201 base: 0xfed00000
[ 0.061465] e820: update [mem 0xc0280000-0xc0430fff] usable ==> reserved
[ 0.061478] CPU topo: Max. logical packages: 1
[ 0.061478] CPU topo: Max. logical dies: 1
[ 0.061479] CPU topo: Max. dies per package: 1
[ 0.061481] CPU topo: Max. threads per core: 2
[ 0.061481] CPU topo: Num. cores per package: 8
[ 0.061482] CPU topo: Num. threads per package: 16
[ 0.061482] CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
[ 0.061483] CPU topo: Rejected CPUs 16
[ 0.061498] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.061499] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.061500] PM: hibernation: Registered nosave memory: [mem 0x09d1f000-0x09ffffff]
[ 0.061501] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[ 0.061501] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[ 0.061502] PM: hibernation: Registered nosave memory: [mem 0xa6642000-0xa6642fff]
[ 0.061503] PM: hibernation: Registered nosave memory: [mem 0xa664f000-0xa664ffff]
[ 0.061503] PM: hibernation: Registered nosave memory: [mem 0xa6650000-0xa6650fff]
[ 0.061504] PM: hibernation: Registered nosave memory: [mem 0xa665d000-0xa665dfff]
[ 0.061505] PM: hibernation: Registered nosave memory: [mem 0xbe277000-0xbe277fff]
[ 0.061506] PM: hibernation: Registered nosave memory: [mem 0xc0280000-0xc0430fff]
[ 0.061507] PM: hibernation: Registered nosave memory: [mem 0xc23ba000-0xc23bafff]
[ 0.061507] PM: hibernation: Registered nosave memory: [mem 0xc3d51000-0xc40b6fff]
[ 0.061508] PM: hibernation: Registered nosave memory: [mem 0xc40b7000-0xc4223fff]
[ 0.061508] PM: hibernation: Registered nosave memory: [mem 0xc4224000-0xc59d0fff]
[ 0.061508] PM: hibernation: Registered nosave memory: [mem 0xc59d1000-0xc69fefff]
[ 0.061509] PM: hibernation: Registered nosave memory: [mem 0xc8000000-0xcaffffff]
[ 0.061509] PM: hibernation: Registered nosave memory: [mem 0xcb000000-0xceffffff]
[ 0.061510] PM: hibernation: Registered nosave memory: [mem 0xcf000000-0xcfffffff]
[ 0.061510] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfe9fffff]
[ 0.061510] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[ 0.061511] PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfec0ffff]
[ 0.061511] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[ 0.061511] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[ 0.061511] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[ 0.061512] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[ 0.061512] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[ 0.061512] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[ 0.061513] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[ 0.061513] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[ 0.061513] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[ 0.061513] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[ 0.061514] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[ 0.061514] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[ 0.061514] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[ 0.061515] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xffffffff]
[ 0.061515] [mem 0xd0000000-0xfe9fffff] available for PCI devices
[ 0.061516] Booting paravirtualized kernel on bare hardware
[ 0.061518] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.065218] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[ 0.065807] percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
[ 0.065811] pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
[ 0.065812] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.065814] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.065827] Kernel command line: net.ifnames=0 root=UUID=8dd6209b-5aaf-45f3-baa5-40483b160f27 rw amd_pstate=active nowatchdog zswap.enabled=0
[ 0.065879] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[ 0.069755] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.071682] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.071751] Fallback order for Node 0: 0
[ 0.071756] Built 1 zonelists, mobility grouping on. Total pages: 14627554
[ 0.071756] Policy zone: Normal
[ 0.071908] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.071948] software IO TLB: area num 16.
[ 0.145351] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 0.145386] ftrace: allocating 49181 entries in 193 pages
[ 0.157581] ftrace: allocated 193 pages with 3 groups
[ 0.157637] Dynamic Preempt: full
[ 0.157684] rcu: Preemptible hierarchical RCU implementation.
[ 0.157685] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[ 0.157685] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.157686] Trampoline variant of Tasks RCU enabled.
[ 0.157686] Rude variant of Tasks RCU enabled.
[ 0.157686] Tracing variant of Tasks RCU enabled.
[ 0.157687] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.157687] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[ 0.157695] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[ 0.157696] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[ 0.157698] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
[ 0.160275] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[ 0.160455] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.160546] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.160568] Console: colour dummy device 80x25
[ 0.160570] printk: legacy console [tty0] enabled
[ 0.160599] ACPI: Core revision 20240827
[ 0.160704] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.160721] APIC: Switch to symmetric I/O mode setup
[ 0.161375] AMD-Vi: Using global IVHD EFR:0x206d73ef22254ade, EFR2:0x0
[ 0.161617] x2apic enabled
[ 0.161658] APIC: Switched APIC routing to: cluster x2apic
[ 0.162273] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.166726] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6d8d1480c54, max_idle_ns: 881591034888 ns
[ 0.166730] Calibrating delay loop (skipped), value calculated using timer frequency.. 7600.10 BogoMIPS (lpj=3800052)
[ 0.166742] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.166761] LVT offset 1 assigned for vector 0xf9
[ 0.166817] LVT offset 2 assigned for vector 0xf4
[ 0.166833] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[ 0.166834] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[ 0.166836] process: using mwait in idle threads
[ 0.166837] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.166838] Spectre V2 : Mitigation: Retpolines
[ 0.166838] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.166839] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.166839] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.166840] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.166841] Spectre V2 : User space: Mitigation: STIBP always-on protection
[ 0.166842] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.166842] Speculative Return Stack Overflow: Mitigation: Safe RET
[ 0.166845] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.166846] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.166847] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.166847] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.166848] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.166849] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.166850] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.166850] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.166851] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.188028] Freeing SMP alternatives memory: 52K
[ 0.188030] pid_max: default: 32768 minimum: 301
[ 0.190437] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.190506] landlock: Up and running.
[ 0.190508] Yama: becoming mindful.
[ 0.190702] LSM support for eBPF active
[ 0.190776] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.190832] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.293991] smpboot: CPU0: AMD Ryzen 7 5700G with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
[ 0.294227] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[ 0.294233] ... version: 0
[ 0.294234] ... bit width: 48
[ 0.294235] ... generic registers: 6
[ 0.294236] ... value mask: 0000ffffffffffff
[ 0.294237] ... max period: 00007fffffffffff
[ 0.294239] ... fixed-purpose events: 0
[ 0.294240] ... event mask: 000000000000003f
[ 0.294322] signal: max sigframe size: 3376
[ 0.294375] rcu: Hierarchical SRCU implementation.
[ 0.294376] rcu: Max phase no-delay instances is 400.
[ 0.294436] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 0.299112] MCE: In-kernel MCE decoding enabled.
[ 0.299267] smp: Bringing up secondary CPUs ...
[ 0.299372] smpboot: x86: Booting SMP configuration:
[ 0.299374] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15
[ 0.310839] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[ 0.317762] smp: Brought up 1 node, 16 CPUs
[ 0.317762] smpboot: Total of 16 processors activated (121601.66 BogoMIPS)
[ 0.319909] Memory: 57188732K/58510216K available (20480K kernel code, 2695K rwdata, 14216K rodata, 4432K init, 3672K bss, 1303080K reserved, 0K cma-reserved)
[ 0.321428] devtmpfs: initialized
[ 0.321428] x86/mm: Memory block size: 128MB
[ 0.326919] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[ 0.326919] ACPI: PM: Registering ACPI NVS region [mem 0xc4224000-0xc59d0fff] (24825856 bytes)
[ 0.327183] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.327197] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.327277] pinctrl core: initialized pinctrl subsystem
[ 0.327399] PM: RTC time: 17:29:44, date: 2025-02-21
[ 0.327972] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.328286] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.328458] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.328664] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.328675] audit: initializing netlink subsys (disabled)
[ 0.328685] audit: type=2000 audit(1740158984.167:1): state=initialized audit_enabled=0 res=1
[ 0.328819] thermal_sys: Registered thermal governor 'fair_share'
[ 0.328821] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.328822] thermal_sys: Registered thermal governor 'step_wise'
[ 0.328823] thermal_sys: Registered thermal governor 'user_space'
[ 0.328825] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.328835] cpuidle: using governor ladder
[ 0.328840] cpuidle: using governor menu
[ 0.328867] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.328893] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
[ 0.328905] PCI: Using configuration type 1 for base access
[ 0.329063] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.329863] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.329863] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.329863] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.329863] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.329877] ACPI: Added _OSI(Module Device)
[ 0.329877] ACPI: Added _OSI(Processor Device)
[ 0.329877] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.329877] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.352239] ACPI: 10 ACPI AML tables successfully acquired and loaded
[ 0.354836] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.359202] ACPI: Interpreter enabled
[ 0.359218] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.359220] ACPI: Using IOAPIC for interrupt routing
[ 0.360891] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.360893] PCI: Ignoring E820 reservations for host bridge windows
[ 0.361386] ACPI: Enabled 5 GPEs in block 00 to 1F
[ 0.395611] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.395617] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.395803] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR DPC]
[ 0.396140] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[ 0.396152] acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge
[ 0.396770] PCI host bridge to bus 0000:00
[ 0.396775] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.396778] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.396780] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.396781] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.396783] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.396785] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfec2ffff window]
[ 0.396787] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[ 0.396789] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.396803] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint
[ 0.396924] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint
[ 0.397038] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
[ 0.397106] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
[ 0.397170] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port
[ 0.397187] pci 0000:00:02.1: PCI bridge to [bus 01-05]
[ 0.397192] pci 0000:00:02.1: bridge window [io 0xf000-0xffff]
[ 0.397194] pci 0000:00:02.1: bridge window [mem 0xfcd00000-0xfcefffff]
[ 0.397206] pci 0000:00:02.1: enabling Extended Tags
[ 0.397244] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[ 0.397418] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400 PCIe Root Port
[ 0.397434] pci 0000:00:02.2: PCI bridge to [bus 06]
[ 0.397440] pci 0000:00:02.2: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.397485] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[ 0.397600] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint
[ 0.397664] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port
[ 0.397679] pci 0000:00:08.1: PCI bridge to [bus 07]
[ 0.397684] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.397686] pci 0000:00:08.1: bridge window [mem 0xfc900000-0xfccfffff]
[ 0.397692] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.397699] pci 0000:00:08.1: enabling Extended Tags
[ 0.397737] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.397903] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.398041] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[ 0.398206] pci 0000:00:18.0: [1022:166a] type 00 class 0x060000 conventional PCI endpoint
[ 0.398246] pci 0000:00:18.1: [1022:166b] type 00 class 0x060000 conventional PCI endpoint
[ 0.398286] pci 0000:00:18.2: [1022:166c] type 00 class 0x060000 conventional PCI endpoint
[ 0.398328] pci 0000:00:18.3: [1022:166d] type 00 class 0x060000 conventional PCI endpoint
[ 0.398368] pci 0000:00:18.4: [1022:166e] type 00 class 0x060000 conventional PCI endpoint
[ 0.398407] pci 0000:00:18.5: [1022:166f] type 00 class 0x060000 conventional PCI endpoint
[ 0.398449] pci 0000:00:18.6: [1022:1670] type 00 class 0x060000 conventional PCI endpoint
[ 0.398488] pci 0000:00:18.7: [1022:1671] type 00 class 0x060000 conventional PCI endpoint
[ 0.398605] pci 0000:01:00.0: [1022:43ee] type 00 class 0x0c0330 PCIe Legacy Endpoint
[ 0.398624] pci 0000:01:00.0: BAR 0 [mem 0xfcea0000-0xfcea7fff 64bit]
[ 0.398664] pci 0000:01:00.0: enabling Extended Tags
[ 0.398721] pci 0000:01:00.0: PME# supported from D3hot D3cold
[ 0.398935] pci 0000:01:00.1: [1022:43eb] type 00 class 0x010601 PCIe Legacy Endpoint
[ 0.398982] pci 0000:01:00.1: BAR 5 [mem 0xfce80000-0xfce9ffff]
[ 0.398991] pci 0000:01:00.1: ROM [mem 0xfce00000-0xfce7ffff pref]
[ 0.398998] pci 0000:01:00.1: enabling Extended Tags
[ 0.399041] pci 0000:01:00.1: PME# supported from D3hot D3cold
[ 0.399153] pci 0000:01:00.2: [1022:43e9] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.399181] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[ 0.399189] pci 0000:01:00.2: bridge window [io 0xf000-0xffff]
[ 0.399192] pci 0000:01:00.2: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.399213] pci 0000:01:00.2: enabling Extended Tags
[ 0.399261] pci 0000:01:00.2: PME# supported from D3hot D3cold
[ 0.399393] pci 0000:00:02.1: PCI bridge to [bus 01-05]
[ 0.399540] pci 0000:02:00.0: [1022:43ea] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.399569] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.399599] pci 0000:02:00.0: enabling Extended Tags
[ 0.399658] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.399800] pci 0000:02:08.0: [1022:43ea] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.399830] pci 0000:02:08.0: PCI bridge to [bus 04]
[ 0.399859] pci 0000:02:08.0: enabling Extended Tags
[ 0.399918] pci 0000:02:08.0: PME# supported from D3hot D3cold
[ 0.400047] pci 0000:02:09.0: [1022:43ea] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.400076] pci 0000:02:09.0: PCI bridge to [bus 05]
[ 0.400083] pci 0000:02:09.0: bridge window [io 0xf000-0xffff]
[ 0.400086] pci 0000:02:09.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.400109] pci 0000:02:09.0: enabling Extended Tags
[ 0.400167] pci 0000:02:09.0: PME# supported from D3hot D3cold
[ 0.400320] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[ 0.400376] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.400434] pci 0000:02:08.0: PCI bridge to [bus 04]
[ 0.400520] pci 0000:05:00.0: [10ec:8125] type 00 class 0x020000 PCIe Endpoint
[ 0.400545] pci 0000:05:00.0: BAR 0 [io 0xf000-0xf0ff]
[ 0.400578] pci 0000:05:00.0: BAR 2 [mem 0xfcd00000-0xfcd0ffff 64bit]
[ 0.400599] pci 0000:05:00.0: BAR 4 [mem 0xfcd10000-0xfcd13fff 64bit]
[ 0.400758] pci 0000:05:00.0: supports D1 D2
[ 0.400759] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.401084] pci 0000:02:09.0: PCI bridge to [bus 05]
[ 0.401170] pci 0000:06:00.0: [1344:5416] type 00 class 0x010802 PCIe Endpoint
[ 0.401188] pci 0000:06:00.0: BAR 0 [mem 0xfcf00000-0xfcf03fff 64bit]
[ 0.401425] pci 0000:00:02.2: PCI bridge to [bus 06]
[ 0.401527] pci 0000:07:00.0: [1002:1638] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.401539] pci 0000:07:00.0: BAR 0 [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.401547] pci 0000:07:00.0: BAR 2 [mem 0xe0000000-0xe01fffff 64bit pref]
[ 0.401553] pci 0000:07:00.0: BAR 4 [io 0xe000-0xe0ff]
[ 0.401559] pci 0000:07:00.0: BAR 5 [mem 0xfcc00000-0xfcc7ffff]
[ 0.401568] pci 0000:07:00.0: enabling Extended Tags
[ 0.401623] pci 0000:07:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.401771] pci 0000:07:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.401780] pci 0000:07:00.1: BAR 0 [mem 0xfcc88000-0xfcc8bfff]
[ 0.401802] pci 0000:07:00.1: enabling Extended Tags
[ 0.401836] pci 0000:07:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.401931] pci 0000:07:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint
[ 0.401945] pci 0000:07:00.2: BAR 2 [mem 0xfcb00000-0xfcbfffff]
[ 0.401956] pci 0000:07:00.2: BAR 5 [mem 0xfcc8c000-0xfcc8dfff]
[ 0.401964] pci 0000:07:00.2: enabling Extended Tags
[ 0.402089] pci 0000:07:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
[ 0.402101] pci 0000:07:00.3: BAR 0 [mem 0xfca00000-0xfcafffff 64bit]
[ 0.402126] pci 0000:07:00.3: enabling Extended Tags
[ 0.402162] pci 0000:07:00.3: PME# supported from D0 D3hot D3cold
[ 0.402269] pci 0000:07:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint
[ 0.402281] pci 0000:07:00.4: BAR 0 [mem 0xfc900000-0xfc9fffff 64bit]
[ 0.402306] pci 0000:07:00.4: enabling Extended Tags
[ 0.402342] pci 0000:07:00.4: PME# supported from D0 D3hot D3cold
[ 0.402444] pci 0000:07:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
[ 0.402453] pci 0000:07:00.6: BAR 0 [mem 0xfcc80000-0xfcc87fff]
[ 0.402475] pci 0000:07:00.6: enabling Extended Tags
[ 0.402508] pci 0000:07:00.6: PME# supported from D0 D3hot D3cold
[ 0.402620] pci 0000:00:08.1: PCI bridge to [bus 07]
[ 0.403469] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.403546] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.403614] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.403695] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.403773] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.403835] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.403897] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.403959] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.405733] iommu: Default domain type: Translated
[ 0.405734] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.405904] SCSI subsystem initialized
[ 0.405914] libata version 3.00 loaded.
[ 0.405914] ACPI: bus type USB registered
[ 0.405914] usbcore: registered new interface driver usbfs
[ 0.405914] usbcore: registered new interface driver hub
[ 0.405914] usbcore: registered new device driver usb
[ 0.409226] EDAC MC: Ver: 3.0.0
[ 0.409755] efivars: Registered efivars operations
[ 0.409933] NetLabel: Initializing
[ 0.409935] NetLabel: domain hash size = 128
[ 0.409936] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.409955] NetLabel: unlabeled traffic allowed by default
[ 0.409961] mctp: management component transport protocol core
[ 0.409962] NET: Registered PF_MCTP protocol family
[ 0.409972] PCI: Using ACPI for IRQ routing
[ 0.413922] PCI: pci_cache_line_size set to 64 bytes
[ 0.413973] e820: reserve RAM buffer [mem 0x09d1f000-0x0bffffff]
[ 0.413975] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[ 0.413976] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[ 0.413978] e820: reserve RAM buffer [mem 0xa6642018-0xa7ffffff]
[ 0.413979] e820: reserve RAM buffer [mem 0xa6650018-0xa7ffffff]
[ 0.413980] e820: reserve RAM buffer [mem 0xbe277000-0xbfffffff]
[ 0.413982] e820: reserve RAM buffer [mem 0xc0280000-0xc3ffffff]
[ 0.413983] e820: reserve RAM buffer [mem 0xc23ba000-0xc3ffffff]
[ 0.413985] e820: reserve RAM buffer [mem 0xc3d51000-0xc3ffffff]
[ 0.413986] e820: reserve RAM buffer [mem 0xe2e300000-0xe2fffffff]
[ 0.414052] pci 0000:07:00.0: vgaarb: setting as boot VGA device
[ 0.414052] pci 0000:07:00.0: vgaarb: bridge control possible
[ 0.414052] pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.414052] vgaarb: loaded
[ 0.414052] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.414052] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.416728] clocksource: Switched to clocksource tsc-early
[ 0.417693] VFS: Disk quotas dquot_6.6.0
[ 0.417702] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.417778] pnp: PnP ACPI init
[ 0.417880] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 0.417971] system 00:01: [mem 0xe30000000-0x102fffffff window] has been reserved
[ 0.418255] system 00:03: [io 0x0290-0x029f] has been reserved
[ 0.418258] system 00:03: [io 0x0200-0x021f] has been reserved
[ 0.418605] pnp 00:04: [dma 0 disabled]
[ 0.419014] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 0.419017] system 00:05: [io 0x040b] has been reserved
[ 0.419019] system 00:05: [io 0x04d6] has been reserved
[ 0.419021] system 00:05: [io 0x0c00-0x0c01] has been reserved
[ 0.419023] system 00:05: [io 0x0c14] has been reserved
[ 0.419025] system 00:05: [io 0x0c50-0x0c51] has been reserved
[ 0.419027] system 00:05: [io 0x0c52] has been reserved
[ 0.419029] system 00:05: [io 0x0c6c] has been reserved
[ 0.419032] system 00:05: [io 0x0c6f] has been reserved
[ 0.419034] system 00:05: [io 0x0cd8-0x0cdf] has been reserved
[ 0.419036] system 00:05: [io 0x0800-0x089f] has been reserved
[ 0.419037] system 00:05: [io 0x0b00-0x0b0f] has been reserved
[ 0.419039] system 00:05: [io 0x0b20-0x0b3f] has been reserved
[ 0.419041] system 00:05: [io 0x0900-0x090f] has been reserved
[ 0.419043] system 00:05: [io 0x0910-0x091f] has been reserved
[ 0.419045] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.419048] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[ 0.419050] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 0.419052] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.419054] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 0.419057] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.419059] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.420081] pnp: PnP ACPI: found 6 devices
[ 0.426079] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.426150] NET: Registered PF_INET protocol family
[ 0.426315] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.438427] tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 0.438471] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.438713] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.439122] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.439242] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.439421] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[ 0.439591] UDP hash table entries: 32768 (order: 9, 2097152 bytes, linear)
[ 0.439828] UDP-Lite hash table entries: 32768 (order: 9, 2097152 bytes, linear)
[ 0.440000] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.440009] NET: Registered PF_XDP protocol family
[ 0.440026] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.440044] pci 0000:02:08.0: PCI bridge to [bus 04]
[ 0.440055] pci 0000:02:09.0: PCI bridge to [bus 05]
[ 0.440058] pci 0000:02:09.0: bridge window [io 0xf000-0xffff]
[ 0.440063] pci 0000:02:09.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.440071] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[ 0.440074] pci 0000:01:00.2: bridge window [io 0xf000-0xffff]
[ 0.440079] pci 0000:01:00.2: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.440086] pci 0000:00:02.1: PCI bridge to [bus 01-05]
[ 0.440089] pci 0000:00:02.1: bridge window [io 0xf000-0xffff]
[ 0.440092] pci 0000:00:02.1: bridge window [mem 0xfcd00000-0xfcefffff]
[ 0.440097] pci 0000:00:02.2: PCI bridge to [bus 06]
[ 0.440100] pci 0000:00:02.2: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.440107] pci 0000:00:08.1: PCI bridge to [bus 07]
[ 0.440110] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.440113] pci 0000:00:08.1: bridge window [mem 0xfc900000-0xfccfffff]
[ 0.440116] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.440120] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.440123] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.440124] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.440126] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.440128] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.440130] pci_bus 0000:00: resource 9 [mem 0xd0000000-0xfec2ffff window]
[ 0.440132] pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
[ 0.440134] pci_bus 0000:01: resource 0 [io 0xf000-0xffff]
[ 0.440136] pci_bus 0000:01: resource 1 [mem 0xfcd00000-0xfcefffff]
[ 0.440138] pci_bus 0000:02: resource 0 [io 0xf000-0xffff]
[ 0.440139] pci_bus 0000:02: resource 1 [mem 0xfcd00000-0xfcdfffff]
[ 0.440142] pci_bus 0000:05: resource 0 [io 0xf000-0xffff]
[ 0.440143] pci_bus 0000:05: resource 1 [mem 0xfcd00000-0xfcdfffff]
[ 0.440145] pci_bus 0000:06: resource 1 [mem 0xfcf00000-0xfcffffff]
[ 0.440147] pci_bus 0000:07: resource 0 [io 0xe000-0xefff]
[ 0.440149] pci_bus 0000:07: resource 1 [mem 0xfc900000-0xfccfffff]
[ 0.440151] pci_bus 0000:07: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.440477] pci 0000:07:00.1: D0 power state depends on 0000:07:00.0
[ 0.440510] pci 0000:07:00.3: extending delay after power-on from D3hot to 20 msec
[ 0.440642] pci 0000:07:00.4: extending delay after power-on from D3hot to 20 msec
[ 0.440727] PCI: CLS 64 bytes, default 64
[ 0.440749] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 0.440789] Trying to unpack rootfs image as initramfs...
[ 0.440806] pci 0000:00:01.0: Adding to iommu group 0
[ 0.440834] pci 0000:00:02.0: Adding to iommu group 1
[ 0.440850] pci 0000:00:02.1: Adding to iommu group 2
[ 0.440866] pci 0000:00:02.2: Adding to iommu group 3
[ 0.440889] pci 0000:00:08.0: Adding to iommu group 4
[ 0.440905] pci 0000:00:08.1: Adding to iommu group 5
[ 0.440933] pci 0000:00:14.0: Adding to iommu group 6
[ 0.440946] pci 0000:00:14.3: Adding to iommu group 6
[ 0.441008] pci 0000:00:18.0: Adding to iommu group 7
[ 0.441022] pci 0000:00:18.1: Adding to iommu group 7
[ 0.441036] pci 0000:00:18.2: Adding to iommu group 7
[ 0.441049] pci 0000:00:18.3: Adding to iommu group 7
[ 0.441064] pci 0000:00:18.4: Adding to iommu group 7
[ 0.441078] pci 0000:00:18.5: Adding to iommu group 7
[ 0.441091] pci 0000:00:18.6: Adding to iommu group 7
[ 0.441105] pci 0000:00:18.7: Adding to iommu group 7
[ 0.441147] pci 0000:01:00.0: Adding to iommu group 8
[ 0.441167] pci 0000:01:00.1: Adding to iommu group 8
[ 0.441187] pci 0000:01:00.2: Adding to iommu group 8
[ 0.441201] pci 0000:02:00.0: Adding to iommu group 8
[ 0.441208] pci 0000:02:08.0: Adding to iommu group 8
[ 0.441215] pci 0000:02:09.0: Adding to iommu group 8
[ 0.441223] pci 0000:05:00.0: Adding to iommu group 8
[ 0.441239] pci 0000:06:00.0: Adding to iommu group 9
[ 0.441259] pci 0000:07:00.0: Adding to iommu group 10
[ 0.441277] pci 0000:07:00.1: Adding to iommu group 11
[ 0.441294] pci 0000:07:00.2: Adding to iommu group 12
[ 0.441311] pci 0000:07:00.3: Adding to iommu group 13
[ 0.441330] pci 0000:07:00.4: Adding to iommu group 14
[ 0.441347] pci 0000:07:00.6: Adding to iommu group 15
[ 0.442865] AMD-Vi: Extended features (0x206d73ef22254ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
[ 0.442875] AMD-Vi: Interrupt remapping enabled
[ 0.442876] AMD-Vi: X2APIC enabled
[ 0.453347] AMD-Vi: Virtual APIC enabled
[ 0.453356] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.453357] software IO TLB: mapped [mem 0x00000000b71e3000-0x00000000bb1e3000] (64MB)
[ 0.453420] LVT offset 0 assigned for vector 0x400
[ 0.453976] perf: AMD IBS detected (0x000003ff)
[ 0.453983] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 0.472896] Initialise system trusted keyrings
[ 0.472907] Key type blacklist registered
[ 0.472981] workingset: timestamp_bits=36 max_order=24 bucket_order=0
[ 0.473103] fuse: init (API version 7.41)
[ 0.473187] integrity: Platform Keyring initialized
[ 0.473190] integrity: Machine keyring initialized
[ 0.481020] Key type asymmetric registered
[ 0.481022] Asymmetric key parser 'x509' registered
[ 0.481042] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.481117] io scheduler mq-deadline registered
[ 0.481119] io scheduler kyber registered
[ 0.481128] io scheduler bfq registered
[ 0.482264] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.483299] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.483436] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.483461] ACPI: button: Power Button [PWRB]
[ 0.483495] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.484718] ACPI: button: Power Button [PWRF]
[ 0.485311] Monitor-Mwait will be used to enter C-1 state
[ 0.487012] Estimated ratio of average max frequency by base frequency (times 1024): 1141
[ 0.487283] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.487478] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.490320] Non-volatile memory driver v1.3
[ 0.490322] Linux agpgart interface v0.103
[ 0.566741] tpm_crb MSFT0101:00: Disabling hwrng
[ 0.568079] ahci 0000:01:00.1: version 3.0
[ 0.568241] ahci 0000:01:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 0.568244] ahci 0000:01:00.1: 6/6 ports implemented (port mask 0x3f)
[ 0.568246] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[ 0.568708] scsi host0: ahci
[ 0.568817] scsi host1: ahci
[ 0.568914] scsi host2: ahci
[ 0.569005] scsi host3: ahci
[ 0.569093] scsi host4: ahci
[ 0.569181] scsi host5: ahci
[ 0.569217] ata1: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80100 irq 37 lpm-pol 3
[ 0.569220] ata2: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80180 irq 37 lpm-pol 3
[ 0.569222] ata3: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80200 irq 37 lpm-pol 3
[ 0.569224] ata4: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80280 irq 37 lpm-pol 3
[ 0.569226] ata5: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80300 irq 37 lpm-pol 3
[ 0.569228] ata6: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80380 irq 37 lpm-pol 3
[ 0.569287] ACPI: bus type drm_connector registered
[ 0.569863] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 0.569869] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[ 0.625295] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000010
[ 0.625596] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 0.625600] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[ 0.625603] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.625666] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.625669] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.625671] usb usb1: Product: xHCI Host Controller
[ 0.625672] usb usb1: Manufacturer: Linux 6.13.3-zen1-1-zen xhci-hcd
[ 0.625674] usb usb1: SerialNumber: 0000:01:00.0
[ 0.625824] hub 1-0:1.0: USB hub found
[ 0.625838] hub 1-0:1.0: 10 ports detected
[ 0.641630] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.641653] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.641655] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.641657] usb usb2: Product: xHCI Host Controller
[ 0.641659] usb usb2: Manufacturer: Linux 6.13.3-zen1-1-zen xhci-hcd
[ 0.641661] usb usb2: SerialNumber: 0000:01:00.0
[ 0.641746] hub 2-0:1.0: USB hub found
[ 0.641755] hub 2-0:1.0: 4 ports detected
[ 0.648837] xhci_hcd 0000:07:00.3: xHCI Host Controller
[ 0.648843] xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 3
[ 0.648942] xhci_hcd 0000:07:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
[ 0.649247] xhci_hcd 0000:07:00.3: xHCI Host Controller
[ 0.649250] xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 4
[ 0.649252] xhci_hcd 0000:07:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.649285] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.649288] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.649289] usb usb3: Product: xHCI Host Controller
[ 0.649291] usb usb3: Manufacturer: Linux 6.13.3-zen1-1-zen xhci-hcd
[ 0.649293] usb usb3: SerialNumber: 0000:07:00.3
[ 0.649381] hub 3-0:1.0: USB hub found
[ 0.649389] hub 3-0:1.0: 4 ports detected
[ 0.649552] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.649573] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.649576] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.649577] usb usb4: Product: xHCI Host Controller
[ 0.649579] usb usb4: Manufacturer: Linux 6.13.3-zen1-1-zen xhci-hcd
[ 0.649580] usb usb4: SerialNumber: 0000:07:00.3
[ 0.649657] hub 4-0:1.0: USB hub found
[ 0.649664] hub 4-0:1.0: 2 ports detected
[ 0.649822] xhci_hcd 0000:07:00.4: xHCI Host Controller
[ 0.649827] xhci_hcd 0000:07:00.4: new USB bus registered, assigned bus number 5
[ 0.649919] xhci_hcd 0000:07:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010
[ 0.650187] xhci_hcd 0000:07:00.4: xHCI Host Controller
[ 0.650191] xhci_hcd 0000:07:00.4: new USB bus registered, assigned bus number 6
[ 0.650195] xhci_hcd 0000:07:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[ 0.650220] Freeing initrd memory: 162280K
[ 0.650228] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.13
[ 0.650230] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.650232] usb usb5: Product: xHCI Host Controller
[ 0.650234] usb usb5: Manufacturer: Linux 6.13.3-zen1-1-zen xhci-hcd
[ 0.650235] usb usb5: SerialNumber: 0000:07:00.4
[ 0.650317] hub 5-0:1.0: USB hub found
[ 0.650325] hub 5-0:1.0: 4 ports detected
[ 0.650484] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 0.650509] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.13
[ 0.650511] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.650513] usb usb6: Product: xHCI Host Controller
[ 0.650514] usb usb6: Manufacturer: Linux 6.13.3-zen1-1-zen xhci-hcd
[ 0.650516] usb usb6: SerialNumber: 0000:07:00.4
[ 0.650590] hub 6-0:1.0: USB hub found
[ 0.650596] hub 6-0:1.0: 2 ports detected
[ 0.650728] usbcore: registered new interface driver usbserial_generic
[ 0.650734] usbserial: USB Serial support registered for generic
[ 0.650798] rtc_cmos 00:02: RTC can wake from S4
[ 0.651019] rtc_cmos 00:02: registered as rtc0
[ 0.651048] rtc_cmos 00:02: setting system clock to 2025-02-21T17:29:45 UTC (1740158985)
[ 0.651074] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[ 0.652489] simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
[ 0.652492] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 0.655963] fbcon: Deferring console take-over
[ 0.655966] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.656006] hid: raw HID events driver (C) Jiri Kosina
[ 0.656076] drop_monitor: Initializing network drop monitor service
[ 0.656183] NET: Registered PF_INET6 protocol family
[ 0.656631] ------------[ cut here ]------------
[ 0.656633] TLB flush not stride 200000 aligned. Start 7fffc0000000, end 7fffffe01000
[ 0.656637] WARNING: CPU: 1 PID: 167 at arch/x86/mm/tlb.c:1342 flush_tlb_mm_range+0x577/0x600
[ 0.656642] Modules linked in:
[ 0.656645] CPU: 1 UID: 0 PID: 167 Comm: modprobe Not tainted 6.13.3-zen1-1-zen #1 4eb5d478c0b89d357d430d5db88dfd1ce4224b4f
[ 0.656648] Hardware name: ASUS System Product Name/TUF GAMING B550-PLUS, BIOS 3611 09/30/2024
[ 0.656650] RIP: 0010:flush_tlb_mm_range+0x577/0x600
[ 0.656653] Code: 5f e9 0d d5 3f 00 e8 68 62 f5 ff e9 e9 fc ff ff 48 8b 0c 24 4c 89 e2 48 c7 c7 10 e8 e6 94 c6 05 81 2a 31 02 01 e8 19 e9 01 00 <0f> 0b e9 36 fb ff ff fa 0f 1f 44 00 00 48 89 df e8 a4 f4 ff ff fb
[ 0.656654] RSP: 0018:ffffb3ee80757a38 EFLAGS: 00010286
[ 0.656657] RAX: 0000000000000000 RBX: ffff88d535ab5d80 RCX: 00000000ffffefff
[ 0.656658] RDX: 0000000000000000 RSI: 00000000ffffffea RDI: 00000000ffffefff
[ 0.656660] RBP: ffff88c855a1cd00 R08: ffffffff956b5888 R09: 00000000ffffefff
[ 0.656661] R10: 0000000000000003 R11: 0000000000000002 R12: 00007fffc0000000
[ 0.656662] R13: 0000000000000001 R14: 0000000000000015 R15: ffff88d535a80000
[ 0.656664] FS: 0000000000000000(0000) GS:ffff88d535a80000(0000) knlGS:0000000000000000
[ 0.656665] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 0.656667] CR2: 0000000000000000 CR3: 0000000106402000 CR4: 0000000000f50ef0
[ 0.656669] PKRU: 55555554
[ 0.656670] Call Trace:
[ 0.656672] <TASK>
[ 0.656674] ? flush_tlb_mm_range+0x577/0x600
[ 0.656676] ? __warn.cold+0x93/0xed
[ 0.656679] ? flush_tlb_mm_range+0x577/0x600
[ 0.656681] ? report_bug+0xe7/0x210
[ 0.656685] ? handle_bug+0x58/0x90
[ 0.656688] ? exc_invalid_op+0x19/0xc0
[ 0.656690] ? asm_exc_invalid_op+0x1a/0x20
[ 0.656694] ? flush_tlb_mm_range+0x577/0x600
[ 0.656697] ? flush_tlb_mm_range+0x577/0x600
[ 0.656700] tlb_flush_mmu+0x125/0x1a0
[ 0.656703] tlb_finish_mmu+0x41/0x80
[ 0.656706] relocate_vma_down+0x183/0x200
[ 0.656713] setup_arg_pages+0x201/0x390
[ 0.656719] load_elf_binary+0x3a5/0x17b0
[ 0.656722] ? srso_alias_return_thunk+0x5/0xfbef5
[ 0.656724] ? __kernel_read+0x19d/0x300
[ 0.656728] ? srso_alias_return_thunk+0x5/0xfbef5
[ 0.656730] ? load_misc_binary+0x265/0x380
[ 0.656732] bprm_execve+0x244/0x630
[ 0.656735] kernel_execve+0x17d/0x1e0
[ 0.656738] call_usermodehelper_exec_async+0xd0/0x190
[ 0.656741] ? __pfx_call_usermodehelper_exec_async+0x10/0x10
[ 0.656743] ret_from_fork+0x34/0x50
[ 0.656746] ? __pfx_call_usermodehelper_exec_async+0x10/0x10
[ 0.656748] ret_from_fork_asm+0x1a/0x30
[ 0.656753] </TASK>
[ 0.656754] ---[ end trace 0000000000000000 ]---
[ 0.661906] Segment Routing with IPv6
[ 0.661908] RPL Segment Routing with IPv6
[ 0.661918] In-situ OAM (IOAM) with IPv6
[ 0.661942] NET: Registered PF_PACKET protocol family
[ 0.663046] microcode: Current revision: 0x0a500011
[ 0.663048] microcode: Updated early from: 0x0a500011
[ 0.663348] resctrl: L3 allocation detected
[ 0.663350] resctrl: MB allocation detected
[ 0.663351] resctrl: L3 monitoring detected
[ 0.663377] IPI shorthand broadcast: enabled
[ 0.665553] sched_clock: Marking stable (664454585, 246135)->(793989164, -129288444)
[ 0.665731] registered taskstats version 1
[ 0.666180] Loading compiled-in X.509 certificates
[ 0.670312] Loaded X.509 cert 'Build time autogenerated kernel key: 0785f24f93a5afdf336f2e5a37417c7cc397a074'
[ 0.672511] Demotion targets for Node 0: null
[ 0.672627] Key type .fscrypt registered
[ 0.672629] Key type fscrypt-provisioning registered
[ 0.672748] integrity: Loading X.509 certificate: UEFI:db
[ 0.675544] integrity: Loaded X.509 cert 'Database Key: 2525f26582d456f1b67720ff92925b1f'
[ 0.675546] integrity: Loading X.509 certificate: UEFI:db
[ 0.675567] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.675569] integrity: Loading X.509 certificate: UEFI:db
[ 0.675585] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.677208] PM: Magic number: 13:283:492
[ 0.677245] pci 0000:06:00.0: hash matches
[ 0.680298] RAS: Correctable Errors collector initialized.
[ 0.691118] clk: Disabling unused clocks
[ 0.691120] PM: genpd: Disabling unused power domains
[ 0.878421] ata3: SATA link down (SStatus 0 SControl 330)
[ 0.879320] ata1: SATA link down (SStatus 0 SControl 330)
[ 0.879416] ata2: SATA link down (SStatus 0 SControl 330)
[ 0.879513] ata4: SATA link down (SStatus 0 SControl 330)
[ 0.881606] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[ 0.889601] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[ 0.889608] usb 3-1: new full-speed USB device number 2 using xhci_hcd
[ 1.032716] usb 5-1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.29
[ 1.032721] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.032723] usb 5-1: Product: USB2.1 Hub
[ 1.032725] usb 5-1: Manufacturer: Generic
[ 1.035290] usb 3-1: New USB device found, idVendor=0bda, idProduct=8771, bcdDevice= 2.00
[ 1.035294] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.035296] usb 3-1: Product: Bluetooth Radio
[ 1.035298] usb 3-1: Manufacturer: Realtek
[ 1.035300] usb 3-1: SerialNumber: 00E04C239987
[ 1.041144] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.041337] ata5.00: Model 'Samsung SSD 860 EVO 500GB', rev 'RVT04B6Q', applying quirks: noncqtrim zeroaftertrim noncqonati
[ 1.041382] ata5.00: supports DRM functions and may not be fully accessible
[ 1.041383] ata5.00: ATA-11: Samsung SSD 860 EVO 500GB, RVT04B6Q, max UDMA/133
[ 1.041623] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.041754] ata5.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 1.045426] ata5.00: Features: Trust Dev-Sleep NCQ-sndrcv
[ 1.045700] ata5.00: supports DRM functions and may not be fully accessible
[ 1.050076] ata5.00: configured for UDMA/133
[ 1.060144] ahci 0000:01:00.1: port does not support device sleep
[ 1.060284] scsi 4:0:0:0: Direct-Access ATA Samsung SSD 860 4B6Q PQ: 0 ANSI: 5
[ 1.060567] ata5.00: Enabling discard_zeroes_data
[ 1.060578] sd 4:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 1.060588] sd 4:0:0:0: [sda] Write Protect is off
[ 1.060591] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.060604] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.060642] sd 4:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 1.060921] ata5.00: Enabling discard_zeroes_data
[ 1.067009] hub 5-1:1.0: USB hub found
[ 1.068588] hub 5-1:1.0: 5 ports detected
[ 1.068999] sda: sda1
[ 1.069926] sd 4:0:0:0: [sda] supports TCG Opal
[ 1.069928] sd 4:0:0:0: [sda] Attached SCSI disk
[ 1.095538] ata6.00: ATA-8: TOSHIBA MK6475GSX, GT001M, max UDMA/100
[ 1.095596] ata6.00: 1250263728 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.096345] ata6.00: configured for UDMA/100
[ 1.096482] scsi 5:0:0:0: Direct-Access ATA TOSHIBA MK6475GS 1M PQ: 0 ANSI: 5
[ 1.096736] sd 5:0:0:0: [sdb] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
[ 1.096749] sd 5:0:0:0: [sdb] Write Protect is off
[ 1.096751] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.096766] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.096790] sd 5:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 1.122231] usb 1-1: New USB device found, idVendor=145f, idProduct=02d9, bcdDevice= 1.00
[ 1.122235] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.122237] usb 1-1: Product: Trust USB microphone
[ 1.122239] usb 1-1: Manufacturer: Trust USB microphone
[ 1.122241] usb 1-1: SerialNumber: 20210415
[ 1.135542] usb 6-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.159646] usb 6-1: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.29
[ 1.159650] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.159653] usb 6-1: Product: USB3.2 Hub
[ 1.159655] usb 6-1: Manufacturer: Generic
[ 1.178951] hub 6-1:1.0: USB hub found
[ 1.180561] hub 6-1:1.0: 3 ports detected
[ 1.198519] sdb: sdb1
[ 1.198700] sd 5:0:0:0: [sdb] Attached SCSI disk
[ 1.200208] Freeing unused decrypted memory: 2028K
[ 1.200706] Freeing unused kernel image (initmem) memory: 4432K
[ 1.200720] Write protecting the kernel read-only data: 34816k
[ 1.200912] Freeing unused kernel image (rodata/data gap) memory: 120K
[ 1.241408] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.241411] rodata_test: all tests were successful
[ 1.241415] Run /init as init process
[ 1.241416] with arguments:
[ 1.241417] /init
[ 1.241418] with environment:
[ 1.241419] HOME=/
[ 1.241420] TERM=linux
[ 1.243281] usb 1-2: new full-speed USB device number 3 using xhci_hcd
[ 1.249072] systemd[1]: Successfully made /usr/ read-only.
[ 1.249216] systemd[1]: systemd 257.3-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)
[ 1.249233] systemd[1]: Detected architecture x86-64.
[ 1.249235] systemd[1]: Running in initrd.
[ 1.249381] fbcon: Taking over console
[ 1.251845] Console: switching to colour frame buffer device 160x45
[ 1.256010] systemd[1]: Initializing machine ID from random generator.
[ 1.291421] systemd[1]: Queued start job for default target Initrd Default Target.
[ 1.302660] systemd[1]: Expecting device /dev/disk/by-uuid/8dd6209b-5aaf-45f3-baa5-40483b160f27...
[ 1.302786] systemd[1]: Reached target Path Units.
[ 1.302848] systemd[1]: Reached target Slice Units.
[ 1.302904] systemd[1]: Reached target Swaps.
[ 1.302953] systemd[1]: Reached target Timer Units.
[ 1.303086] systemd[1]: Listening on Journal Socket (/dev/log).
[ 1.303216] systemd[1]: Listening on Journal Sockets.
[ 1.303344] systemd[1]: Listening on udev Control Socket.
[ 1.303440] systemd[1]: Listening on udev Kernel Socket.
[ 1.303502] systemd[1]: Reached target Socket Units.
[ 1.304208] systemd[1]: Starting Create List of Static Device Nodes...
[ 1.304308] systemd[1]: Check battery level during early boot was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/power_supply).
[ 1.304887] systemd[1]: Started Display Boot-Time Emergency Messages In Full Screen.
[ 1.306282] systemd[1]: Starting Journal Service...
[ 1.306933] systemd[1]: Starting Load Kernel Modules...
[ 1.307715] systemd[1]: Starting TPM PCR Barrier (initrd)...
[ 1.308414] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 1.308919] systemd[1]: Starting Coldplug All udev Devices...
[ 1.309518] systemd[1]: Finished Create List of Static Device Nodes.
[ 1.313671] systemd[1]: Finished Create Static Device Nodes in /dev.
[ 1.314098] systemd[1]: Reached target Preparation for Local File Systems.
[ 1.314260] systemd[1]: Reached target Local File Systems.
[ 1.314933] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[ 1.316023] systemd-journald[208]: Collecting audit messages is disabled.
[ 1.328948] systemd[1]: Started Rule-based Manager for Device Events and Files.
[ 1.344144] Bluetooth: Core ver 2.22
[ 1.344157] NET: Registered PF_BLUETOOTH protocol family
[ 1.344158] Bluetooth: HCI device and connection manager initialized
[ 1.344161] Bluetooth: HCI socket layer initialized
[ 1.344163] Bluetooth: L2CAP socket layer initialized
[ 1.344165] Bluetooth: SCO socket layer initialized
[ 1.352019] systemd[1]: Finished TPM PCR Barrier (initrd).
[ 1.355953] usbcore: registered new interface driver btusb
[ 1.359060] mc: Linux media interface: v0.10
[ 1.359301] Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000b lmp_ver=0a lmp_subver=8761
[ 1.361286] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 1.361288] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_fw.bin
[ 1.361583] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_config.bin
[ 1.361622] Bluetooth: hci0: RTL: cfg_sz 6, total sz 30210
[ 1.367584] videodev: Linux video capture interface: v2.00
[ 1.368399] v4l2loopback: loading out-of-tree module taints kernel.
[ 1.368403] v4l2loopback: module verification failed: signature and/or required key missing - tainting kernel
[ 1.372051] v4l2loopback driver version 0.13.2 loaded
[ 1.372647] systemd[1]: Finished Load Kernel Modules.
[ 1.420268] usb 5-1.1: new high-speed USB device number 3 using xhci_hcd
[ 1.437152] systemd[1]: Finished Coldplug All udev Devices.
[ 1.444367] cryptd: max_cpu_qlen set to 1000
[ 1.451858] nvme nvme0: pci function 0000:06:00.0
[ 1.453699] AES CTR mode by8 optimization enabled
[ 1.462173] systemd[1]: Starting Virtual Console Setup...
[ 1.469943] usb 1-2: New USB device found, idVendor=8087, idProduct=1024, bcdDevice= 1.00
[ 1.469947] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.469949] usb 1-2: Product: USB2.0 Device
[ 1.469950] usb 1-2: Manufacturer: Generic
[ 1.469952] usb 1-2: SerialNumber: 20170726905923
[ 1.472259] tsc: Refined TSC clocksource calibration: 3799.997 MHz
[ 1.472266] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d8cab05ec1, max_idle_ns: 881590646801 ns
[ 1.472298] clocksource: Switched to clocksource tsc
[ 1.479985] nvme nvme0: allocated 64 MiB host memory buffer (1 segment).
[ 1.486075] systemd[1]: Finished Virtual Console Setup.
[ 1.512847] nvme nvme0: 16/0/0 default/read/poll queues
[ 1.516409] nvme0n1: p1 p2
[ 1.523710] usb 5-1.1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.29
[ 1.523714] usb 5-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.523716] usb 5-1.1: Product: USB2.1 Hub
[ 1.523717] usb 5-1.1: Manufacturer: Generic
[ 1.529137] systemd[1]: Found device CT1000P3SSD8 2.
[ 1.532877] systemd[1]: Reached target Initrd Root Device.
[ 1.533620] systemd[1]: Starting File System Check on /dev/disk/by-uuid/8dd6209b-5aaf-45f3-baa5-40483b160f27...
[ 1.565595] systemd[1]: Finished File System Check on /dev/disk/by-uuid/8dd6209b-5aaf-45f3-baa5-40483b160f27.
[ 1.579015] hub 5-1.1:1.0: USB hub found
[ 1.580460] hub 5-1.1:1.0: 4 ports detected
[ 1.580886] usb 6-1.1: new SuperSpeed USB device number 3 using xhci_hcd
[ 1.586257] usb 1-6: new full-speed USB device number 4 using xhci_hcd
[ 1.606736] usb 6-1.1: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.29
[ 1.606741] usb 6-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.606743] usb 6-1.1: Product: USB3.2 Hub
[ 1.606745] usb 6-1.1: Manufacturer: Generic
[ 1.629318] Bluetooth: hci0: RTL: fw version 0xdfc6d922
[ 1.658950] hub 6-1.1:1.0: USB hub found
[ 1.660398] hub 6-1.1:1.0: 2 ports detected
[ 1.734267] usb 5-1.2: new full-speed USB device number 4 using xhci_hcd
[ 1.846238] usb 5-1.2: New USB device found, idVendor=248a, idProduct=5b2f, bcdDevice= 1.77
[ 1.846243] usb 5-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.846245] usb 5-1.2: Product: Wireless-Receiver
[ 1.846251] usb 5-1.2: Manufacturer: SSCYPL
[ 1.879242] usb 1-6: config 1 has an invalid interface number: 2 but max is 1
[ 1.879246] usb 1-6: config 1 has no interface number 1
[ 1.891224] usb 1-6: New USB device found, idVendor=0b05, idProduct=1939, bcdDevice= 1.00
[ 1.891227] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.891229] usb 1-6: Product: AURA LED Controller
[ 1.891231] usb 1-6: Manufacturer: AsusTek Computer Inc.
[ 1.891233] usb 1-6: SerialNumber: 9876543210
[ 2.012256] usb 1-7: new high-speed USB device number 5 using xhci_hcd
[ 2.158432] usb 1-7: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.70
[ 2.158436] usb 1-7: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.158438] usb 1-7: Product: USB2.0 Hub
[ 2.167453] hub 1-7:1.0: USB hub found
[ 2.171423] hub 1-7:1.0: 4 ports detected
[ 2.304268] usb 1-9: new low-speed USB device number 6 using xhci_hcd
[ 2.310050] systemd[1]: Mounting /sysroot...
[ 2.544301] usb 1-9: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=49.20
[ 2.544305] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.544307] usb 1-9: Product: USB Keyboard
[ 2.544309] usb 1-9: Manufacturer: Logitech
[ 2.691253] usb 1-10: new high-speed USB device number 7 using xhci_hcd
[ 2.936437] usb 1-10: New USB device found, idVendor=145f, idProduct=02e7, bcdDevice= 0.20
[ 2.936441] usb 1-10: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[ 2.936443] usb 1-10: Product: Trust QHD Webcam
[ 2.936445] usb 1-10: Manufacturer: SC
[ 2.936447] usb 1-10: SerialNumber: 202001010001
[ 2.971014] [drm] amdgpu kernel modesetting enabled.
[ 2.982020] amdgpu: Virtual CRAT table created for CPU
[ 2.982033] amdgpu: Topology: Add CPU node
[ 2.982127] amdgpu 0000:07:00.0: enabling device (0006 -> 0007)
[ 2.982161] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1638 0x1043:0x8809 0xC8).
[ 2.982169] [drm] register mmio base: 0xFCC00000
[ 2.982170] [drm] register mmio size: 524288
[ 2.985056] [drm] add ip block number 0 <soc15_common>
[ 2.985058] [drm] add ip block number 1 <gmc_v9_0>
[ 2.985060] [drm] add ip block number 2 <vega10_ih>
[ 2.985061] [drm] add ip block number 3 <psp>
[ 2.985062] [drm] add ip block number 4 <smu>
[ 2.985064] [drm] add ip block number 5 <dm>
[ 2.985065] [drm] add ip block number 6 <gfx_v9_0>
[ 2.985066] [drm] add ip block number 7 <sdma_v4_0>
[ 2.985068] [drm] add ip block number 8 <vcn_v2_0>
[ 2.985069] [drm] add ip block number 9 <jpeg_v2_0>
[ 2.985082] amdgpu 0000:07:00.0: amdgpu: Fetched VBIOS from VFCT
[ 2.985084] amdgpu: ATOM BIOS: 13-CEZANNE-019
[ 3.002992] EXT4-fs (nvme0n1p2): Supports (experimental) DIO atomic writes awu_min: 4096, awu_max: 4096
[ 3.016323] Console: switching to colour dummy device 80x25
[ 3.019560] EXT4-fs (nvme0n1p2): mounted filesystem 8dd6209b-5aaf-45f3-baa5-40483b160f27 r/w with ordered data mode. Quota mode: none.
[ 3.020055] systemd[1]: Mounted /sysroot.
[ 3.020157] systemd[1]: Reached target Initrd Root File System.
[ 3.020701] systemd[1]: Starting Mountpoints Configured in the Real Root...
[ 3.029957] amdgpu 0000:07:00.0: vgaarb: deactivate vga console
[ 3.029962] amdgpu 0000:07:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[ 3.029967] amdgpu 0000:07:00.0: amdgpu: MODE2 reset
[ 3.030752] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 3.030758] amdgpu 0000:07:00.0: amdgpu: VRAM: 8192M 0x000000F400000000 - 0x000000F5FFFFFFFF (8192M used)
[ 3.030761] amdgpu 0000:07:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[ 3.030769] [drm] Detected VRAM RAM=8192M, BAR=8192M
[ 3.030770] [drm] RAM width 128bits DDR4
[ 3.030958] [drm] amdgpu: 8192M of VRAM memory ready
[ 3.030960] [drm] amdgpu: 28015M of GTT memory ready.
[ 3.030971] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 3.031091] [drm] PCIE GART of 1024M enabled.
[ 3.031093] [drm] PTB located at 0x000000F5FFC00000
[ 3.031448] [drm] Loading DMUB firmware via PSP: version=0x0101002B
[ 3.031831] [drm] Found VCN firmware Version ENC: 1.24 DEC: 8 VEP: 0 Revision: 3
[ 3.043243] usbcore: registered new interface driver usbhid
[ 3.043260] usbhid: USB HID core driver
[ 3.045676] hid-generic 0003:145F:02D9.0001: No inputs registered, leaving
[ 3.045715] hid-generic 0003:145F:02D9.0001: hidraw0: USB HID v1.11 Device [Trust USB microphone Trust USB microphone ] on usb-0000:01:00.0-1/input2
[ 3.045795] hid-generic 0003:0B05:1939.0002: hiddev96,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:01:00.0-6/input2
[ 3.045855] input: SSCYPL Wireless-Receiver as /devices/pci0000:00/0000:00:08.1/0000:07:00.4/usb5/5-1/5-1.2/5-1.2:1.0/0003:248A:5B2F.0003/input/input3
[ 3.045896] hid-generic 0003:248A:5B2F.0003: input,hidraw2: USB HID v1.11 Mouse [SSCYPL Wireless-Receiver] on usb-0000:07:00.4-1.2/input0
[ 3.046263] input: SSCYPL Wireless-Receiver Keyboard as /devices/pci0000:00/0000:00:08.1/0000:07:00.4/usb5/5-1/5-1.2/5-1.2:1.1/0003:248A:5B2F.0004/input/input4
[ 3.056188] systemd[1]: initrd-parse-etc.service: Deactivated successfully.
[ 3.056318] systemd[1]: Finished Mountpoints Configured in the Real Root.
[ 3.056424] systemd[1]: Reached target Initrd File Systems.
[ 3.125338] input: SSCYPL Wireless-Receiver as /devices/pci0000:00/0000:00:08.1/0000:07:00.4/usb5/5-1/5-1.2/5-1.2:1.1/0003:248A:5B2F.0004/input/input5
[ 3.125425] hid-generic 0003:248A:5B2F.0004: input,hiddev97,hidraw3: USB HID v1.11 Keyboard [SSCYPL Wireless-Receiver] on usb-0000:07:00.4-1.2/input1
[ 3.125531] hid-generic 0003:248A:5B2F.0005: hiddev98,hidraw4: USB HID v1.11 Device [SSCYPL Wireless-Receiver] on usb-0000:07:00.4-1.2/input2
[ 3.125631] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-9/1-9:1.0/0003:046D:C31C.0006/input/input6
[ 3.216380] hid-generic 0003:046D:C31C.0006: input,hidraw5: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:01:00.0-9/input0
[ 3.216481] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C31C.0007/input/input7
[ 3.267458] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C31C.0007/input/input8
[ 3.267920] hid-generic 0003:046D:C31C.0007: input,hidraw6: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:01:00.0-9/input1
[ 3.742362] amdgpu 0000:07:00.0: amdgpu: reserve 0x400000 from 0xf5ff800000 for PSP TMR
[ 3.826778] amdgpu 0000:07:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 3.837569] amdgpu 0000:07:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 3.837572] amdgpu 0000:07:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 3.837785] amdgpu 0000:07:00.0: amdgpu: SMU is initialized successfully!
[ 3.838932] [drm] Display Core v3.2.310 initialized on DCN 2.1
[ 3.838934] [drm] DP-HDMI FRL PCON supported
[ 3.839482] [drm] DMUB hardware initialized: version=0x0101002B
[ 4.078500] [drm] kiq ring mec 2 pipe 1 q 0
[ 4.083122] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 4.083132] kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
[ 4.083210] amdgpu: Virtual CRAT table created for GPU
[ 4.083610] amdgpu: Topology: Add dGPU node [0x1638:0x1002]
[ 4.083612] kfd kfd: amdgpu: added device 1002:1638
[ 4.083680] amdgpu 0000:07:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 8
[ 4.083684] amdgpu 0000:07:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[ 4.083685] amdgpu 0000:07:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 4.083687] amdgpu 0000:07:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 4.083688] amdgpu 0000:07:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 4.083689] amdgpu 0000:07:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 4.083691] amdgpu 0000:07:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 4.083692] amdgpu 0000:07:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 4.083693] amdgpu 0000:07:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 4.083694] amdgpu 0000:07:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 4.083696] amdgpu 0000:07:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
[ 4.083697] amdgpu 0000:07:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 8
[ 4.083698] amdgpu 0000:07:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 8
[ 4.083699] amdgpu 0000:07:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 8
[ 4.083701] amdgpu 0000:07:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 8
[ 4.083702] amdgpu 0000:07:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 8
[ 4.084740] amdgpu 0000:07:00.0: amdgpu: Runtime PM not available
[ 4.085002] [drm] Initialized amdgpu 3.60.0 for 0000:07:00.0 on minor 1
[ 4.091881] fbcon: amdgpudrmfb (fb0) is primary device
[ 4.092066] [drm] pre_validate_dsc:1600 MST_DSC dsc precompute is not needed
[ 4.201662] Console: switching to colour frame buffer device 160x64
[ 4.220018] amdgpu 0000:07:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 4.235700] systemd[1]: Started Journal Service.
[ 4.331939] systemd-journald[208]: Received SIGTERM from PID 1 (systemd).
[ 4.411308] systemd[1]: systemd 257.3-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)
[ 4.411314] systemd[1]: Detected architecture x86-64.
[ 4.412517] systemd[1]: Hostname set to <ugjka>.
[ 4.514880] systemd[1]: bpf-restrict-fs: LSM BPF program attached
[ 4.770707] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[ 4.770816] systemd[1]: Stopped Switch Root.
[ 4.771429] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[ 4.771703] systemd[1]: Created slice Virtual Machine and Container Slice.
[ 4.772005] systemd[1]: Created slice Slice /system/dirmngr.
[ 4.772716] systemd[1]: Created slice Slice /system/getty.
[ 4.773252] systemd[1]: Created slice Slice /system/gpg-agent.
[ 4.773778] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 4.774261] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 4.774738] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 4.775202] systemd[1]: Created slice Slice /system/keyboxd.
[ 4.775674] systemd[1]: Created slice Slice /system/modprobe.
[ 4.776144] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 4.776624] systemd[1]: Created slice Slice /system/wg-quick.
[ 4.777035] systemd[1]: Created slice User and Session Slice.
[ 4.777306] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 4.777641] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 4.777869] systemd[1]: Expecting device /dev/disk/by-uuid/6DE0-04A5...
[ 4.778084] systemd[1]: Expecting device /dev/disk/by-uuid/7c41a39e-06f1-4fc5-a3c2-91dcb4631783...
[ 4.778314] systemd[1]: Expecting device /dev/disk/by-uuid/87a57acb-3d76-4c97-a926-134987cc7e62...
[ 4.778544] systemd[1]: Reached target Login Prompts.
[ 4.778779] systemd[1]: Stopped target Switch Root.
[ 4.779008] systemd[1]: Stopped target Initrd File Systems.
[ 4.779232] systemd[1]: Stopped target Initrd Root File System.
[ 4.779470] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 4.779711] systemd[1]: Reached target Remote File Systems.
[ 4.779937] systemd[1]: Reached target Slice Units.
[ 4.780162] systemd[1]: Reached target Swaps.
[ 4.780404] systemd[1]: Reached target Local Verity Protected Volumes.
[ 4.780675] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 4.780960] systemd[1]: Listening on LVM2 poll daemon socket.
[ 4.781902] systemd[1]: Listening on Process Core Dump Socket.
[ 4.782556] systemd[1]: Listening on Credential Encryption/Decryption.
[ 4.783473] systemd[1]: Listening on TPM PCR Measurements.
[ 4.784181] systemd[1]: Listening on Make TPM PCR Policy.
[ 4.784472] systemd[1]: Listening on udev Control Socket.
[ 4.784736] systemd[1]: Listening on udev Kernel Socket.
[ 4.785003] systemd[1]: Listening on User Database Manager Socket.
[ 4.785970] systemd[1]: Mounting Huge Pages File System...
[ 4.786738] systemd[1]: Mounting POSIX Message Queue File System...
[ 4.787541] systemd[1]: Mounting Kernel Debug File System...
[ 4.788268] systemd[1]: Mounting Kernel Trace File System...
[ 4.803509] systemd[1]: Mounting Temporary Directory /tmp...
[ 4.804702] systemd[1]: Starting Create List of Static Device Nodes...
[ 4.805558] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 4.806390] systemd[1]: Starting Load Kernel Module configfs...
[ 4.807352] systemd[1]: Starting Load Kernel Module dm_mod...
[ 4.808196] systemd[1]: Starting Load Kernel Module drm...
[ 4.809119] systemd[1]: Starting Load Kernel Module fuse...
[ 4.810133] systemd[1]: Starting Load Kernel Module loop...
[ 4.810522] 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).
[ 4.811647] systemd[1]: Starting Load Kernel Modules...
[ 4.812474] systemd[1]: Starting TPM PCR Machine ID Measurement...
[ 4.813309] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 4.814338] systemd[1]: Starting Early TPM SRK Setup...
[ 4.815137] systemd[1]: Starting Load udev Rules from Credentials...
[ 4.816173] systemd[1]: Starting Coldplug All udev Devices...
[ 4.817174] systemd[1]: Starting Virtual Console Setup...
[ 4.817617] loop: module loaded
[ 4.817618] device-mapper: uevent: version 1.0.3
[ 4.817689] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 4.819296] systemd[1]: Mounted Huge Pages File System.
[ 4.819849] systemd[1]: Mounted POSIX Message Queue File System.
[ 4.820148] systemd[1]: Mounted Kernel Debug File System.
[ 4.820451] systemd[1]: Mounted Kernel Trace File System.
[ 4.820732] systemd[1]: Mounted Temporary Directory /tmp.
[ 4.821365] systemd[1]: Finished Create List of Static Device Nodes.
[ 4.821788] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 4.821911] systemd[1]: Finished Load Kernel Module configfs.
[ 4.822341] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 4.822464] systemd[1]: Finished Load Kernel Module dm_mod.
[ 4.822869] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 4.822996] systemd[1]: Finished Load Kernel Module drm.
[ 4.823197] scsi host6: vhba
[ 4.823411] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 4.823530] systemd[1]: Finished Load Kernel Module fuse.
[ 4.823901] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 4.824016] systemd[1]: Finished Load Kernel Module loop.
[ 4.824505] systemd[1]: Finished Load udev Rules from Credentials.
[ 4.825612] systemd[1]: Mounting FUSE Control File System...
[ 4.826449] systemd[1]: Mounting Kernel Configuration File System...
[ 4.826544] sd 4:0:0:0: Attached scsi generic sg0 type 0
[ 4.826572] sd 5:0:0:0: Attached scsi generic sg1 type 0
[ 4.827299] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 4.828620] EXT4-fs (nvme0n1p2): re-mounted 8dd6209b-5aaf-45f3-baa5-40483b160f27 r/w. Quota mode: none.
[ 4.829290] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 4.829789] i2c_dev: i2c /dev entries driver
[ 4.830076] systemd[1]: Mounted FUSE Control File System.
[ 4.830613] systemd[1]: Mounted Kernel Configuration File System.
[ 4.831049] systemd[1]: Finished Load Kernel Modules.
[ 4.831735] systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
[ 4.832428] systemd[1]: Starting Load/Save OS Random Seed...
[ 4.854087] systemd[1]: Starting Apply Kernel Variables...
[ 4.856160] systemd[1]: Starting User Database Manager...
[ 4.859488] systemd[1]: Finished Load/Save OS Random Seed.
[ 4.864459] systemd[1]: Finished Early TPM SRK Setup.
[ 4.865316] systemd[1]: Finished TPM PCR Machine ID Measurement.
[ 4.866039] systemd[1]: Finished Virtual Console Setup.
[ 4.866683] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 4.867643] systemd[1]: Starting TPM SRK Setup...
[ 4.874337] systemd[1]: Started User Database Manager.
[ 4.880497] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[ 4.891478] systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
[ 4.893116] systemd[1]: Starting Create System Users...
[ 4.900838] systemd[1]: Finished TPM SRK Setup.
[ 4.914368] systemd[1]: Finished Create System Users.
[ 4.916396] systemd[1]: Starting Network Time Synchronization...
[ 4.917836] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 4.937309] systemd[1]: Finished Create Static Device Nodes in /dev.
[ 4.938029] systemd[1]: Reached target Preparation for Local File Systems.
[ 4.938589] systemd[1]: Entropy Daemon based on the HAVEGE algorithm was skipped because of an unmet condition check (ConditionKernelVersion=<5.6).
[ 4.939900] systemd[1]: Starting Journal Service...
[ 4.940989] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[ 4.941628] systemd[1]: Finished Apply Kernel Variables.
[ 4.943177] systemd[1]: Starting Network Name Resolution...
[ 4.959917] systemd[1]: Starting CLI Netfilter Manager...
[ 4.960411] systemd[1]: Started Network Time Synchronization.
[ 4.961268] systemd[1]: Reached target System Time Set.
[ 4.962831] systemd[1]: Finished Coldplug All udev Devices.
[ 4.967301] systemd-journald[432]: Collecting audit messages is disabled.
[ 4.972822] systemd[1]: Started Journal Service.
[ 5.016278] systemd-journald[432]: Received client request to flush runtime journal.
[ 5.074583] mousedev: PS/2 mouse device common for all mice
[ 5.086705] input: PC Speaker as /devices/platform/pcspkr/input/input9
[ 5.086794] ccp 0000:07:00.2: enabling device (0000 -> 0002)
[ 5.087883] ccp 0000:07:00.2: ccp: unable to access the device: you might be running a broken BIOS.
[ 5.089028] ccp 0000:07:00.2: tee enabled
[ 5.089107] ccp 0000:07:00.2: psp enabled
[ 5.092101] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 5.092104] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[ 5.093879] i2c i2c-4: Successfully instantiated SPD at 0x52
[ 5.094416] i2c i2c-4: Successfully instantiated SPD at 0x53
[ 5.094603] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[ 5.097169] i2c i2c-6: Successfully instantiated SPD at 0x53
[ 5.097957] i8042: PNP: No PS/2 controller found.
[ 5.100850] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[ 5.100975] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[ 5.101178] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[ 5.109309] asus_wmi: ASUS WMI generic driver loaded
[ 5.109472] usb 1-10: Found UVC 1.00 device Trust QHD Webcam (145f:02e7)
[ 5.114160] r8169 0000:05:00.0 eth0: RTL8125B, 10:7c:61:4b:38:89, XID 641, IRQ 83
[ 5.114165] r8169 0000:05:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 5.137922] asus_wmi: Initialization: 0x0
[ 5.137980] asus_wmi: BIOS WMI version: 0.9
[ 5.138205] asus_wmi: SFUN value: 0x0
[ 5.138209] eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
[ 5.139819] ee1004 4-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 5.141142] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input10
[ 5.141810] ee1004 4-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 5.142316] ee1004 6-0053: probe with driver ee1004 failed with error -5
[ 5.181647] kvm_amd: TSC scaling supported
[ 5.181650] kvm_amd: Nested Virtualization enabled
[ 5.181650] kvm_amd: Nested Paging enabled
[ 5.181651] kvm_amd: LBR virtualization supported
[ 5.181656] kvm_amd: Virtual VMLOAD VMSAVE supported
[ 5.181656] kvm_amd: Virtual GIF supported
[ 5.188586] usbcore: registered new interface driver uvcvideo
[ 5.193368] snd_hda_intel 0000:07:00.1: enabling device (0000 -> 0002)
[ 5.193449] snd_hda_intel 0000:07:00.1: Handle vga_switcheroo audio client
[ 5.193525] snd_hda_intel 0000:07:00.6: enabling device (0000 -> 0002)
[ 5.200196] snd_hda_intel 0000:07:00.1: bound 0000:07:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 5.200894] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:07:00.1/sound/card1/input11
[ 5.200948] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:07:00.1/sound/card1/input12
[ 5.228611] snd_hda_codec_realtek hdaudioC2D0: ALCS1200A: picked fixup for PCI SSID 1043:8797
[ 5.228617] snd_hda_codec_realtek hdaudioC2D0: ALCS1200A: SKU not ready 0x00000000
[ 5.229345] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALCS1200A: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[ 5.229348] snd_hda_codec_realtek hdaudioC2D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 5.229360] snd_hda_codec_realtek hdaudioC2D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 5.229361] snd_hda_codec_realtek hdaudioC2D0: mono: mono_out=0x0
[ 5.229362] snd_hda_codec_realtek hdaudioC2D0: dig-out=0x1e/0x0
[ 5.229364] snd_hda_codec_realtek hdaudioC2D0: inputs:
[ 5.229365] snd_hda_codec_realtek hdaudioC2D0: Rear Mic=0x18
[ 5.229367] snd_hda_codec_realtek hdaudioC2D0: Front Mic=0x19
[ 5.229368] snd_hda_codec_realtek hdaudioC2D0: Line=0x1a
[ 5.231309] amd_atl: AMD Address Translation Library initialized
[ 5.247663] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input13
[ 5.247725] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input14
[ 5.247798] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input15
[ 5.247848] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input16
[ 5.247899] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input17
[ 5.247968] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input18
[ 5.248016] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:07:00.6/sound/card2/input19
[ 5.322944] usb 1-2: 2:0: bogus dB values (-12800/-12700), disabling dB reporting
[ 5.500957] usbcore: registered new interface driver snd-usb-audio
[ 5.813456] EXT4-fs (sda1): mounted filesystem 87a57acb-3d76-4c97-a926-134987cc7e62 r/w with ordered data mode. Quota mode: none.
[ 6.055185] EXT4-fs (sdb1): mounted filesystem 7c41a39e-06f1-4fc5-a3c2-91dcb4631783 r/w with ordered data mode. Quota mode: none.
[ 6.942122] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 6.942124] Bluetooth: BNEP filters: protocol multicast
[ 6.942128] Bluetooth: BNEP socket layer initialized
[ 6.942620] zram: Added device: zram0
[ 6.942965] Bluetooth: MGMT ver 1.23
[ 6.943030] Bluetooth: ISO socket layer initialized
[ 6.946974] NET: Registered PF_ALG protocol family
[ 6.970314] zram0: detected capacity change from 0 to 57376008
[ 7.031270] Realtek Internal NBASE-T PHY r8169-0-500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-500:00, irq=MAC)
[ 7.117869] Adding 28688000k swap on /dev/zram0. Priority:100 extents:1 across:28688000k SSDsc
[ 7.189436] r8169 0000:05:00.0 eth0: Link is Down
[ 7.207938] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 7.289938] nvme nvme0: using unchecked data buffer
[ 7.420261] r8169 0000:05:00.0: invalid VPD tag 0x00 (size 0) at offset 0; assume missing optional EEPROM
[ 9.263216] r8169 0000:05:00.0 eth0: Link is Up - 1Gbps/Full - flow control off
[ 9.265244] br0: port 1(eth0) entered blocking state
[ 9.265266] br0: port 1(eth0) entered disabled state
[ 9.265276] r8169 0000:05:00.0 eth0: entered allmulticast mode
[ 9.265384] r8169 0000:05:00.0 eth0: entered promiscuous mode
[ 9.265509] br0: port 1(eth0) entered blocking state
[ 9.265511] br0: port 1(eth0) entered forwarding state
[ 10.477259] block nvme0n1: No UUID available providing old NGUID
[ 12.713636] Bluetooth: RFCOMM TTY layer initialized
[ 12.713642] Bluetooth: RFCOMM socket layer initialized
[ 12.713645] Bluetooth: RFCOMM ver 1.11
[ 13.517668] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[ 13.517672] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[ 77.618665] ddcci: WARNING: Auto-probing of displays is not available on kernel 6.8 and laterLast edited by ugjka (2025-03-02 19:35:39)
Offline
Offline
Ok, I see there's some work in progress on the kernel mailing list. Will mark this as solved when the patch land in the zen kernel on Arch
Offline
Some update fixed this, marking as Solved
Offline