-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror
1602 lines (1600 loc) · 130 KB
/
error
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
root@archiso /mnt/ROOTBACKUP # sudo mount -o subvolid=0 /dev/nvme0n1p7 /mnt
mount: /mnt: can't read superblock on /dev/nvme0n1p7.
dmesg(1) may have more information after failed mount system call.
32 root@archiso /mnt/ROOTBACKUP # dmesg
[ 0.026710] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.026712] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.026712] PM: hibernation: Registered nosave memory: [mem 0x09e02000-0x09ffffff]
[ 0.026713] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20ffff]
[ 0.026714] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b020fff]
[ 0.026714] PM: hibernation: Registered nosave memory: [mem 0x9e298000-0x9e298fff]
[ 0.026715] PM: hibernation: Registered nosave memory: [mem 0x9e2a2000-0x9e2a2fff]
[ 0.026716] PM: hibernation: Registered nosave memory: [mem 0x9e2a3000-0x9e2a3fff]
[ 0.026716] PM: hibernation: Registered nosave memory: [mem 0x9e2c1000-0x9e2c1fff]
[ 0.026717] PM: hibernation: Registered nosave memory: [mem 0xa9c33000-0xa9c8ffff]
[ 0.026718] PM: hibernation: Registered nosave memory: [mem 0xab730000-0xab730fff]
[ 0.026718] PM: hibernation: Registered nosave memory: [mem 0xb0329000-0xb6328fff]
[ 0.026719] PM: hibernation: Registered nosave memory: [mem 0xb6329000-0xb63d8fff]
[ 0.026719] PM: hibernation: Registered nosave memory: [mem 0xb63d9000-0xb83d8fff]
[ 0.026719] PM: hibernation: Registered nosave memory: [mem 0xb83d9000-0xb9ffefff]
[ 0.026720] PM: hibernation: Registered nosave memory: [mem 0xbbffb000-0xbcffffff]
[ 0.026720] PM: hibernation: Registered nosave memory: [mem 0xbd000000-0xbd7f2fff]
[ 0.026721] PM: hibernation: Registered nosave memory: [mem 0xbd7f3000-0xbfffffff]
[ 0.026721] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xfedfffff]
[ 0.026721] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.026721] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.026722] [mem 0xc0000000-0xfedfffff] available for PCI devices
[ 0.026723] Booting paravirtualized kernel on bare hardware
[ 0.026725] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.029540] setup_percpu: NR_CPUS:320 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[ 0.029942] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[ 0.029946] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[ 0.029947] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.029950] pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
[ 0.029959] Kernel command line: initrd=\arch\boot\x86_64\initramfs-linux.img archisobasedir=arch archisosearchuuid=2024-09-01-12-40-01-00
[ 0.029991] Unknown kernel command line parameters "archisobasedir=arch archisosearchuuid=2024-09-01-12-40-01-00", will be passed to user space.
[ 0.031438] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.032116] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.032174] Fallback order for Node 0: 0
[ 0.032176] Built 1 zonelists, mobility grouping on. Total pages: 8167573
[ 0.032177] Policy zone: Normal
[ 0.032272] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.032305] software IO TLB: area num 16.
[ 0.063124] Memory: 31706340K/32670292K available (18432K kernel code, 2177K rwdata, 13440K rodata, 3432K init, 3492K bss, 963692K reserved, 0K cma-reserved)
[ 0.063235] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 0.063263] ftrace: allocating 50279 entries in 197 pages
[ 0.070042] ftrace: allocated 197 pages with 4 groups
[ 0.070085] Dynamic Preempt: full
[ 0.070120] rcu: Preemptible hierarchical RCU implementation.
[ 0.070121] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
[ 0.070121] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.070122] Trampoline variant of Tasks RCU enabled.
[ 0.070122] Rude variant of Tasks RCU enabled.
[ 0.070122] Tracing variant of Tasks RCU enabled.
[ 0.070123] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.070123] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[ 0.070129] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.070131] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.070132] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.072009] NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
[ 0.072182] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.072322] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.072341] Console: colour dummy device 80x25
[ 0.072342] printk: legacy console [tty0] enabled
[ 0.072367] ACPI: Core revision 20240322
[ 0.072529] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.072541] APIC: Switch to symmetric I/O mode setup
[ 0.073078] AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0
[ 0.073305] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.073897] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.089212] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3c8a9f11741, max_idle_ns: 440795298189 ns
[ 0.089215] Calibrating delay loop (skipped), value calculated using timer frequency.. 8403.13 BogoMIPS (lpj=14000216)
[ 0.089227] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.089265] LVT offset 1 assigned for vector 0xf9
[ 0.089388] LVT offset 2 assigned for vector 0xf4
[ 0.089424] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
[ 0.089425] Last level dTLB entries: 4KB 3072, 2MB 3072, 4MB 1536, 1GB 0
[ 0.089426] process: using mwait in idle threads
[ 0.089427] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.089428] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.089429] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.089430] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.089431] Spectre V2 : User space: Mitigation: STIBP always-on protection
[ 0.089432] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.089433] Speculative Return Stack Overflow: IBPB-extending microcode not applied!
[ 0.089433] Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options.
[ 0.089434] Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode
[ 0.089437] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.089438] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.089438] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.089439] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[ 0.089439] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[ 0.089440] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[ 0.089440] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.089441] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.089442] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.089442] x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
[ 0.089443] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
[ 0.089443] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[ 0.089444] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
[ 0.089444] x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]: 16
[ 0.089445] x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
[ 0.106820] Freeing SMP alternatives memory: 40K
[ 0.106822] pid_max: default: 32768 minimum: 301
[ 0.109236] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[ 0.109256] landlock: Up and running.
[ 0.109257] Yama: becoming mindful.
[ 0.109260] LSM support for eBPF active
[ 0.109295] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.109314] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.220883] smpboot: CPU0: AMD Ryzen 7 7800X3D 8-Core Processor (family: 0x19, model: 0x61, stepping: 0x2)
[ 0.221024] Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
[ 0.221044] ... version: 2
[ 0.221045] ... bit width: 48
[ 0.221046] ... generic registers: 6
[ 0.221047] ... value mask: 0000ffffffffffff
[ 0.221047] ... max period: 00007fffffffffff
[ 0.221048] ... fixed-purpose events: 0
[ 0.221049] ... event mask: 000000000000003f
[ 0.221111] signal: max sigframe size: 3376
[ 0.221130] rcu: Hierarchical SRCU implementation.
[ 0.221130] rcu: Max phase no-delay instances is 1000.
[ 0.222547] MCE: In-kernel MCE decoding enabled.
[ 0.222547] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.222547] smp: Bringing up secondary CPUs ...
[ 0.222547] smpboot: x86: Booting SMP configuration:
[ 0.222547] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15
[ 0.242631] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[ 0.257881] smp: Brought up 1 node, 16 CPUs
[ 0.257881] smpboot: Total of 16 processors activated (134455.16 BogoMIPS)
[ 0.259709] devtmpfs: initialized
[ 0.259709] x86/mm: Memory block size: 128MB
[ 0.262567] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20ffff] (65536 bytes)
[ 0.262569] ACPI: PM: Registering ACPI NVS region [mem 0xb63d9000-0xb83d8fff] (33554432 bytes)
[ 0.262850] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.262859] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.262911] pinctrl core: initialized pinctrl subsystem
[ 0.263001] PM: RTC time: 02:17:06, date: 2024-11-22
[ 0.263230] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.263407] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.263498] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.263591] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.263599] audit: initializing netlink subsys (disabled)
[ 0.263605] audit: type=2000 audit(1732241825.189:1): state=initialized audit_enabled=0 res=1
[ 0.263605] thermal_sys: Registered thermal governor 'fair_share'
[ 0.263605] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.263605] thermal_sys: Registered thermal governor 'step_wise'
[ 0.263605] thermal_sys: Registered thermal governor 'user_space'
[ 0.263605] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.263605] cpuidle: using governor ladder
[ 0.263605] cpuidle: using governor menu
[ 0.263605] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.263605] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
[ 0.263605] PCI: Using configuration type 1 for base access
[ 0.263605] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.267896] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.267896] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.267896] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.267896] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.267896] Demotion targets for Node 0: null
[ 0.267896] ACPI: Added _OSI(Module Device)
[ 0.267896] ACPI: Added _OSI(Processor Device)
[ 0.267896] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.267896] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.290551] ACPI: 18 ACPI AML tables successfully acquired and loaded
[ 0.293486] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.323389] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[ 0.324143] ACPI: Interpreter enabled
[ 0.324157] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.324158] ACPI: Using IOAPIC for interrupt routing
[ 0.327192] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.327194] PCI: Ignoring E820 reservations for host bridge windows
[ 0.327631] ACPI: Enabled 11 GPEs in block 00 to 1F
[ 0.334558] ACPI: \_SB_.PCI0.GPP0.M237: New power resource
[ 0.334612] ACPI: \_SB_.PCI0.GPP0.SWUS.M237: New power resource
[ 0.334677] ACPI: \_SB_.PCI0.GPP0.SWUS.SWDS.M237: New power resource
[ 0.335052] ACPI: \_SB_.PCI0.GPP7.PWRS: New power resource
[ 0.335324] ACPI: \_SB_.PCI0.GPP7.UP00.PWRS: New power resource
[ 0.335569] ACPI: \_SB_.PCI0.GPP7.UP00.DP00.PWRS: New power resource
[ 0.336511] ACPI: \_SB_.PCI0.GPP7.UP00.DP00.NV00.PWRS: New power resource
[ 0.336723] ACPI: \_SB_.PCI0.GPP7.UP00.DP08.PWRS: New power resource
[ 0.336896] ACPI: \_SB_.PCI0.GPP7.UP00.DP08.EP00.PWRS: New power resource
[ 0.337081] ACPI: \_SB_.PCI0.GPP7.UP00.DP10.PWRS: New power resource
[ 0.337254] ACPI: \_SB_.PCI0.GPP7.UP00.DP10.WN00.PWRS: New power resource
[ 0.337438] ACPI: \_SB_.PCI0.GPP7.UP00.DP18.PWRS: New power resource
[ 0.337612] ACPI: \_SB_.PCI0.GPP7.UP00.DP18.LN00.PWRS: New power resource
[ 0.337796] ACPI: \_SB_.PCI0.GPP7.UP00.DP20.PWRS: New power resource
[ 0.338676] ACPI: \_SB_.PCI0.GPP7.UP00.DP20.NV00.PWRS: New power resource
[ 0.338886] ACPI: \_SB_.PCI0.GPP7.UP00.DP28.PWRS: New power resource
[ 0.339749] ACPI: \_SB_.PCI0.GPP7.UP00.DP28.EP00.PWRS: New power resource
[ 0.339960] ACPI: \_SB_.PCI0.GPP7.UP00.DP30.PWRS: New power resource
[ 0.340833] ACPI: \_SB_.PCI0.GPP7.UP00.DP30.EP00.PWRS: New power resource
[ 0.341043] ACPI: \_SB_.PCI0.GPP7.UP00.DP38.PWRS: New power resource
[ 0.341914] ACPI: \_SB_.PCI0.GPP7.UP00.DP38.EP00.PWRS: New power resource
[ 0.342123] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.PWRS: New power resource
[ 0.342994] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.PWRS: New power resource
[ 0.343170] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP00.PWRS: New power resource
[ 0.343321] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP00.NV00.PWRS: New power resource
[ 0.343472] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP08.PWRS: New power resource
[ 0.343620] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP08.EP00.PWRS: New power resource
[ 0.343771] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP10.PWRS: New power resource
[ 0.343920] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP10.WN00.PWRS: New power resource
[ 0.344073] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP18.PWRS: New power resource
[ 0.344222] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP18.LN00.PWRS: New power resource
[ 0.344375] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP20.PWRS: New power resource
[ 0.344526] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP20.NV00.PWRS: New power resource
[ 0.344677] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP28.PWRS: New power resource
[ 0.344826] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP28.EP00.PWRS: New power resource
[ 0.344979] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP30.PWRS: New power resource
[ 0.345126] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP30.EP00.PWRS: New power resource
[ 0.345276] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP38.PWRS: New power resource
[ 0.345424] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP38.EP00.PWRS: New power resource
[ 0.345574] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP40.PWRS: New power resource
[ 0.345722] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP40.UP00.PWRS: New power resource
[ 0.345872] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP48.PWRS: New power resource
[ 0.346045] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP48.EP00.PWRS: New power resource
[ 0.346197] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP50.PWRS: New power resource
[ 0.346345] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP50.EP00.PWRS: New power resource
[ 0.346497] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP58.PWRS: New power resource
[ 0.346645] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP58.EP00.PWRS: New power resource
[ 0.346796] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP60.PWRS: New power resource
[ 0.346943] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP60.XH00.PWRS: New power resource
[ 0.347093] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP68.PWRS: New power resource
[ 0.347244] ACPI: \_SB_.PCI0.GPP7.UP00.DP40.UP00.DP68.SA00.PWRS: New power resource
[ 0.347432] ACPI: \_SB_.PCI0.GPP7.UP00.DP48.PWRS: New power resource
[ 0.348307] ACPI: \_SB_.PCI0.GPP7.UP00.DP48.EP00.PWRS: New power resource
[ 0.348517] ACPI: \_SB_.PCI0.GPP7.UP00.DP50.PWRS: New power resource
[ 0.348759] ACPI: \_SB_.PCI0.GPP7.UP00.DP50.EP00.PWRS: New power resource
[ 0.349003] ACPI: \_SB_.PCI0.GPP7.UP00.DP58.PWRS: New power resource
[ 0.349245] ACPI: \_SB_.PCI0.GPP7.UP00.DP58.EP00.PWRS: New power resource
[ 0.349489] ACPI: \_SB_.PCI0.GPP7.UP00.DP60.PWRS: New power resource
[ 0.349730] ACPI: \_SB_.PCI0.GPP7.UP00.DP60.XH00.PWRS: New power resource
[ 0.354652] ACPI: \_SB_.PCI0.GPP7.UP00.DP68.PWRS: New power resource
[ 0.354899] ACPI: \_SB_.PCI0.GPP7.UP00.DP68.SA00.PWRS: New power resource
[ 0.355041] ACPI: \_SB_.PCI0.GPP8.PWR1: New power resource
[ 0.360436] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.360441] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.360597] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.360606] acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge
[ 0.361127] PCI host bridge to bus 0000:00
[ 0.361128] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.361130] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.361131] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.361132] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.361133] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.361134] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfcffffff window]
[ 0.361136] pci_bus 0000:00: root bus resource [mem 0x840000000-0xffffffffff window]
[ 0.361137] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.361150] pci 0000:00:00.0: [1022:14d8] type 00 class 0x060000 conventional PCI endpoint
[ 0.361236] pci 0000:00:00.2: [1022:14d9] type 00 class 0x080600 conventional PCI endpoint
[ 0.361310] pci 0000:00:01.0: [1022:14da] type 00 class 0x060000 conventional PCI endpoint
[ 0.361369] pci 0000:00:01.1: [1022:14db] type 01 class 0x060400 PCIe Root Port
[ 0.361382] pci 0000:00:01.1: PCI bridge to [bus 01-03]
[ 0.361386] pci 0000:00:01.1: bridge window [io 0xf000-0xffff]
[ 0.361388] pci 0000:00:01.1: bridge window [mem 0xfcb00000-0xfcdfffff]
[ 0.361393] pci 0000:00:01.1: bridge window [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 0.361444] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.361557] pci 0000:00:01.2: [1022:14db] type 01 class 0x060400 PCIe Root Port
[ 0.361571] pci 0000:00:01.2: PCI bridge to [bus 04]
[ 0.361575] pci 0000:00:01.2: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.361585] pci 0000:00:01.2: enabling Extended Tags
[ 0.361630] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[ 0.361742] pci 0000:00:02.0: [1022:14da] type 00 class 0x060000 conventional PCI endpoint
[ 0.361801] pci 0000:00:02.1: [1022:14db] type 01 class 0x060400 PCIe Root Port
[ 0.361814] pci 0000:00:02.1: PCI bridge to [bus 05-11]
[ 0.361818] pci 0000:00:02.1: bridge window [io 0xe000-0xefff]
[ 0.361819] pci 0000:00:02.1: bridge window [mem 0xfc700000-0xfcafffff]
[ 0.361824] pci 0000:00:02.1: bridge window [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 0.361830] pci 0000:00:02.1: enabling Extended Tags
[ 0.361875] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[ 0.362044] pci 0000:00:03.0: [1022:14da] type 00 class 0x060000 conventional PCI endpoint
[ 0.362110] pci 0000:00:04.0: [1022:14da] type 00 class 0x060000 conventional PCI endpoint
[ 0.362178] pci 0000:00:08.0: [1022:14da] type 00 class 0x060000 conventional PCI endpoint
[ 0.362239] pci 0000:00:08.1: [1022:14dd] type 01 class 0x060400 PCIe Root Port
[ 0.362250] pci 0000:00:08.1: PCI bridge to [bus 12]
[ 0.362252] pci 0000:00:08.1: bridge window [io 0xd000-0xdfff]
[ 0.362254] pci 0000:00:08.1: bridge window [mem 0xfc300000-0xfc6fffff]
[ 0.362258] pci 0000:00:08.1: bridge window [mem 0xfc20000000-0xfc301fffff 64bit pref]
[ 0.362262] pci 0000:00:08.1: enabling Extended Tags
[ 0.362288] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.362379] pci 0000:00:08.3: [1022:14dd] type 01 class 0x060400 PCIe Root Port
[ 0.362390] pci 0000:00:08.3: PCI bridge to [bus 13]
[ 0.362393] pci 0000:00:08.3: bridge window [mem 0xfce00000-0xfcefffff]
[ 0.362400] pci 0000:00:08.3: enabling Extended Tags
[ 0.362426] pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
[ 0.362517] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.362626] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
[ 0.362745] pci 0000:00:18.0: [1022:14e0] type 00 class 0x060000 conventional PCI endpoint
[ 0.362774] pci 0000:00:18.1: [1022:14e1] type 00 class 0x060000 conventional PCI endpoint
[ 0.362802] pci 0000:00:18.2: [1022:14e2] type 00 class 0x060000 conventional PCI endpoint
[ 0.362830] pci 0000:00:18.3: [1022:14e3] type 00 class 0x060000 conventional PCI endpoint
[ 0.362858] pci 0000:00:18.4: [1022:14e4] type 00 class 0x060000 conventional PCI endpoint
[ 0.362886] pci 0000:00:18.5: [1022:14e5] type 00 class 0x060000 conventional PCI endpoint
[ 0.362915] pci 0000:00:18.6: [1022:14e6] type 00 class 0x060000 conventional PCI endpoint
[ 0.362943] pci 0000:00:18.7: [1022:14e7] type 00 class 0x060000 conventional PCI endpoint
[ 0.363031] pci 0000:01:00.0: [1002:1478] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.363042] pci 0000:01:00.0: BAR 0 [mem 0xfcd00000-0xfcd03fff]
[ 0.363054] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.363059] pci 0000:01:00.0: bridge window [io 0xf000-0xffff]
[ 0.363061] pci 0000:01:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 0.363069] pci 0000:01:00.0: bridge window [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 0.363137] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.363292] pci 0000:00:01.1: PCI bridge to [bus 01-03]
[ 0.363345] pci 0000:02:00.0: [1002:1479] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.363367] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.363371] pci 0000:02:00.0: bridge window [io 0xf000-0xffff]
[ 0.363373] pci 0000:02:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 0.363381] pci 0000:02:00.0: bridge window [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 0.363448] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.363987] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 0.364046] pci 0000:03:00.0: [1002:73df] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.364060] pci 0000:03:00.0: BAR 0 [mem 0xf800000000-0xfbffffffff 64bit pref]
[ 0.364069] pci 0000:03:00.0: BAR 2 [mem 0xfc00000000-0xfc0fffffff 64bit pref]
[ 0.364075] pci 0000:03:00.0: BAR 4 [io 0xf000-0xf0ff]
[ 0.364080] pci 0000:03:00.0: BAR 5 [mem 0xfcb00000-0xfcbfffff]
[ 0.364086] pci 0000:03:00.0: ROM [mem 0xfcc00000-0xfcc1ffff pref]
[ 0.364161] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.364308] pci 0000:03:00.1: [1002:ab28] type 00 class 0x040300 PCIe Legacy Endpoint
[ 0.364318] pci 0000:03:00.1: BAR 0 [mem 0xfcc20000-0xfcc23fff]
[ 0.364389] pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.364500] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.364573] pci 0000:04:00.0: [15b7:5017] type 00 class 0x010802 PCIe Endpoint
[ 0.364584] pci 0000:04:00.0: BAR 0 [mem 0xfcf00000-0xfcf03fff 64bit]
[ 0.364743] pci 0000:00:01.2: PCI bridge to [bus 04]
[ 0.364808] pci 0000:05:00.0: [1022:43f4] type 01 class 0x060400 PCIe Switch Upstream Port
[ 0.364828] pci 0000:05:00.0: PCI bridge to [bus 06-11]
[ 0.364832] pci 0000:05:00.0: bridge window [io 0xe000-0xefff]
[ 0.364834] pci 0000:05:00.0: bridge window [mem 0xfc700000-0xfcafffff]
[ 0.364841] pci 0000:05:00.0: bridge window [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 0.364849] pci 0000:05:00.0: enabling Extended Tags
[ 0.364896] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[ 0.365097] pci 0000:00:02.1: PCI bridge to [bus 05-11]
[ 0.365223] pci 0000:06:00.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.365242] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.365261] pci 0000:06:00.0: enabling Extended Tags
[ 0.365311] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[ 0.365439] pci 0000:06:04.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.365458] pci 0000:06:04.0: PCI bridge to [bus 08]
[ 0.365477] pci 0000:06:04.0: enabling Extended Tags
[ 0.365526] pci 0000:06:04.0: PME# supported from D0 D3hot D3cold
[ 0.365653] pci 0000:06:05.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.365672] pci 0000:06:05.0: PCI bridge to [bus 09]
[ 0.365691] pci 0000:06:05.0: enabling Extended Tags
[ 0.365740] pci 0000:06:05.0: PME# supported from D0 D3hot D3cold
[ 0.365866] pci 0000:06:06.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.365925] pci 0000:06:06.0: PCI bridge to [bus 0a]
[ 0.365944] pci 0000:06:06.0: enabling Extended Tags
[ 0.365994] pci 0000:06:06.0: PME# supported from D0 D3hot D3cold
[ 0.366122] pci 0000:06:07.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.366141] pci 0000:06:07.0: PCI bridge to [bus 0b]
[ 0.366160] pci 0000:06:07.0: enabling Extended Tags
[ 0.366209] pci 0000:06:07.0: PME# supported from D0 D3hot D3cold
[ 0.366336] pci 0000:06:08.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 0.366355] pci 0000:06:08.0: PCI bridge to [bus 0c]
[ 0.366374] pci 0000:06:08.0: enabling Extended Tags
[ 0.366390] pci 0000:06:08.0: broken device, retraining non-functional downstream link at 2.5GT/s
[ 1.365882] pci 0000:06:08.0: retraining failed
[ 1.365933] pci 0000:06:08.0: PME# supported from D0 D3hot D3cold
[ 1.366085] pci 0000:06:09.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 1.366105] pci 0000:06:09.0: PCI bridge to [bus 0d]
[ 1.366126] pci 0000:06:09.0: enabling Extended Tags
[ 1.366145] pci 0000:06:09.0: broken device, retraining non-functional downstream link at 2.5GT/s
[ 2.365884] pci 0000:06:09.0: retraining failed
[ 2.365930] pci 0000:06:09.0: PME# supported from D0 D3hot D3cold
[ 2.366083] pci 0000:06:0a.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 2.366103] pci 0000:06:0a.0: PCI bridge to [bus 0e]
[ 2.366108] pci 0000:06:0a.0: bridge window [io 0xe000-0xefff]
[ 2.366111] pci 0000:06:0a.0: bridge window [mem 0xfca00000-0xfcafffff]
[ 2.366127] pci 0000:06:0a.0: enabling Extended Tags
[ 2.366179] pci 0000:06:0a.0: PME# supported from D0 D3hot D3cold
[ 2.366329] pci 0000:06:0b.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 2.366350] pci 0000:06:0b.0: PCI bridge to [bus 0f]
[ 2.366356] pci 0000:06:0b.0: bridge window [mem 0xfc900000-0xfc9fffff]
[ 2.366363] pci 0000:06:0b.0: bridge window [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.366373] pci 0000:06:0b.0: enabling Extended Tags
[ 2.366425] pci 0000:06:0b.0: PME# supported from D0 D3hot D3cold
[ 2.366579] pci 0000:06:0c.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 2.366599] pci 0000:06:0c.0: PCI bridge to [bus 10]
[ 2.366604] pci 0000:06:0c.0: bridge window [mem 0xfc800000-0xfc8fffff]
[ 2.366619] pci 0000:06:0c.0: enabling Extended Tags
[ 2.366656] pci 0000:06:0c.0: PME# supported from D0 D3hot D3cold
[ 2.366779] pci 0000:06:0d.0: [1022:43f5] type 01 class 0x060400 PCIe Switch Downstream Port
[ 2.366798] pci 0000:06:0d.0: PCI bridge to [bus 11]
[ 2.366802] pci 0000:06:0d.0: bridge window [mem 0xfc700000-0xfc7fffff]
[ 2.366817] pci 0000:06:0d.0: enabling Extended Tags
[ 2.366850] pci 0000:06:0d.0: PME# supported from D0 D3hot D3cold
[ 2.366948] pci 0000:05:00.0: PCI bridge to [bus 06-11]
[ 2.366987] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 2.367026] pci 0000:06:04.0: PCI bridge to [bus 08]
[ 2.367065] pci 0000:06:05.0: PCI bridge to [bus 09]
[ 2.367103] pci 0000:06:06.0: PCI bridge to [bus 0a]
[ 2.367141] pci 0000:06:07.0: PCI bridge to [bus 0b]
[ 2.367179] pci 0000:06:08.0: PCI bridge to [bus 0c]
[ 2.367218] pci 0000:06:09.0: PCI bridge to [bus 0d]
[ 2.367277] pci 0000:0e:00.0: [10ec:8125] type 00 class 0x020000 PCIe Endpoint
[ 2.367294] pci 0000:0e:00.0: BAR 0 [io 0xe000-0xe0ff]
[ 2.367316] pci 0000:0e:00.0: BAR 2 [mem 0xfca00000-0xfca0ffff 64bit]
[ 2.367330] pci 0000:0e:00.0: BAR 4 [mem 0xfca10000-0xfca13fff 64bit]
[ 2.367456] pci 0000:0e:00.0: supports D1 D2
[ 2.367457] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.367716] pci 0000:06:0a.0: PCI bridge to [bus 0e]
[ 2.367826] pci 0000:0f:00.0: [14c3:0616] type 00 class 0x028000 PCIe Endpoint
[ 2.367857] pci 0000:0f:00.0: BAR 0 [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.367877] pci 0000:0f:00.0: BAR 2 [mem 0xfc900000-0xfc907fff 64bit]
[ 2.367919] pci 0000:0f:00.0: enabling Extended Tags
[ 2.368031] pci 0000:0f:00.0: PME# supported from D0 D3hot D3cold
[ 2.369215] pci 0000:06:0b.0: PCI bridge to [bus 0f]
[ 2.369215] pci 0000:10:00.0: [1022:43f7] type 00 class 0x0c0330 PCIe Legacy Endpoint
[ 2.369215] pci 0000:10:00.0: BAR 0 [mem 0xfc800000-0xfc807fff 64bit]
[ 2.369215] pci 0000:10:00.0: enabling Extended Tags
[ 2.369215] pci 0000:10:00.0: PME# supported from D0 D3hot D3cold
[ 2.369215] pci 0000:06:0c.0: PCI bridge to [bus 10]
[ 2.369215] pci 0000:11:00.0: [1022:43f6] type 00 class 0x010601 PCIe Legacy Endpoint
[ 2.369215] pci 0000:11:00.0: BAR 5 [mem 0xfc780000-0xfc7803ff]
[ 2.369215] pci 0000:11:00.0: ROM [mem 0xfc700000-0xfc77ffff pref]
[ 2.369215] pci 0000:11:00.0: enabling Extended Tags
[ 2.369215] pci 0000:11:00.0: PME# supported from D0 D3hot D3cold
[ 2.369215] pci 0000:06:0d.0: PCI bridge to [bus 11]
[ 2.369215] pci 0000:12:00.0: [1002:164e] type 00 class 0x030000 PCIe Legacy Endpoint
[ 2.369215] pci 0000:12:00.0: BAR 0 [mem 0xfc20000000-0xfc2fffffff 64bit pref]
[ 2.369215] pci 0000:12:00.0: BAR 2 [mem 0xfc30000000-0xfc301fffff 64bit pref]
[ 2.369215] pci 0000:12:00.0: BAR 4 [io 0xd000-0xd0ff]
[ 2.369215] pci 0000:12:00.0: BAR 5 [mem 0xfc600000-0xfc67ffff]
[ 2.369215] pci 0000:12:00.0: enabling Extended Tags
[ 2.369215] pci 0000:12:00.0: PME# supported from D1 D2 D3hot D3cold
[ 2.369215] pci 0000:12:00.1: [1002:1640] type 00 class 0x040300 PCIe Legacy Endpoint
[ 2.369215] pci 0000:12:00.1: BAR 0 [mem 0xfc688000-0xfc68bfff]
[ 2.369215] pci 0000:12:00.1: enabling Extended Tags
[ 2.369215] pci 0000:12:00.1: PME# supported from D1 D2 D3hot D3cold
[ 2.369215] pci 0000:12:00.2: [1022:1649] type 00 class 0x108000 PCIe Endpoint
[ 2.369215] pci 0000:12:00.2: BAR 2 [mem 0xfc500000-0xfc5fffff]
[ 2.369215] pci 0000:12:00.2: BAR 5 [mem 0xfc68c000-0xfc68dfff]
[ 2.369215] pci 0000:12:00.2: enabling Extended Tags
[ 2.369251] pci 0000:12:00.3: [1022:15b6] type 00 class 0x0c0330 PCIe Endpoint
[ 2.369259] pci 0000:12:00.3: BAR 0 [mem 0xfc400000-0xfc4fffff 64bit]
[ 2.369276] pci 0000:12:00.3: enabling Extended Tags
[ 2.369300] pci 0000:12:00.3: PME# supported from D0 D3hot D3cold
[ 2.369368] pci 0000:12:00.4: [1022:15b7] type 00 class 0x0c0330 PCIe Endpoint
[ 2.369376] pci 0000:12:00.4: BAR 0 [mem 0xfc300000-0xfc3fffff 64bit]
[ 2.369393] pci 0000:12:00.4: enabling Extended Tags
[ 2.369417] pci 0000:12:00.4: PME# supported from D0 D3hot D3cold
[ 2.369485] pci 0000:12:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
[ 2.369490] pci 0000:12:00.6: BAR 0 [mem 0xfc680000-0xfc687fff]
[ 2.369505] pci 0000:12:00.6: enabling Extended Tags
[ 2.369528] pci 0000:12:00.6: PME# supported from D0 D3hot D3cold
[ 2.369606] pci 0000:00:08.1: PCI bridge to [bus 12]
[ 2.369645] pci 0000:13:00.0: [1022:15b8] type 00 class 0x0c0330 PCIe Endpoint
[ 2.369656] pci 0000:13:00.0: BAR 0 [mem 0xfce00000-0xfcefffff 64bit]
[ 2.369678] pci 0000:13:00.0: enabling Extended Tags
[ 2.369708] pci 0000:13:00.0: PME# supported from D0 D3hot D3cold
[ 2.369795] pci 0000:00:08.3: PCI bridge to [bus 13]
[ 2.372882] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 2.372932] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 2.372977] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 2.373031] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 2.373081] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 2.373122] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 2.373163] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 2.373204] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 2.374080] iommu: Default domain type: Translated
[ 2.374080] iommu: DMA domain TLB invalidation policy: lazy mode
[ 2.374080] SCSI subsystem initialized
[ 2.374080] libata version 3.00 loaded.
[ 2.374080] ACPI: bus type USB registered
[ 2.374080] usbcore: registered new interface driver usbfs
[ 2.374080] usbcore: registered new interface driver hub
[ 2.374080] usbcore: registered new device driver usb
[ 2.374080] EDAC MC: Ver: 3.0.0
[ 2.374080] efivars: Registered efivars operations
[ 2.374080] NetLabel: Initializing
[ 2.374080] NetLabel: domain hash size = 128
[ 2.374080] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 2.374080] NetLabel: unlabeled traffic allowed by default
[ 2.374080] mctp: management component transport protocol core
[ 2.374080] NET: Registered PF_MCTP protocol family
[ 2.374080] PCI: Using ACPI for IRQ routing
[ 2.377757] PCI: pci_cache_line_size set to 64 bytes
[ 2.377866] e820: reserve RAM buffer [mem 0x09e02000-0x0bffffff]
[ 2.377867] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[ 2.377868] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[ 2.377869] e820: reserve RAM buffer [mem 0x9e298018-0x9fffffff]
[ 2.377870] e820: reserve RAM buffer [mem 0x9e2a3018-0x9fffffff]
[ 2.377871] e820: reserve RAM buffer [mem 0xa9c33000-0xabffffff]
[ 2.377872] e820: reserve RAM buffer [mem 0xab730000-0xabffffff]
[ 2.377872] e820: reserve RAM buffer [mem 0xb0329000-0xb3ffffff]
[ 2.377873] e820: reserve RAM buffer [mem 0xbbffb000-0xbbffffff]
[ 2.377903] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 2.377903] pci 0000:03:00.0: vgaarb: bridge control possible
[ 2.377903] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 2.377903] pci 0000:12:00.0: vgaarb: bridge control possible
[ 2.377903] pci 0000:12:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 2.377903] vgaarb: loaded
[ 2.377903] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 2.377903] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 2.379267] clocksource: Switched to clocksource tsc-early
[ 2.379365] VFS: Disk quotas dquot_6.6.0
[ 2.379374] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.379425] pnp: PnP ACPI init
[ 2.379498] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 2.379561] system 00:01: [mem 0x818000000-0x837ffffff window] has been reserved
[ 2.379804] system 00:03: [io 0x0a00-0x0a0f] has been reserved
[ 2.379806] system 00:03: [io 0x0a10-0x0a1f] has been reserved
[ 2.379807] system 00:03: [io 0x0a20-0x0a2f] has been reserved
[ 2.380168] pnp 00:04: [dma 0 disabled]
[ 2.380451] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 2.380453] system 00:05: [io 0x040b] has been reserved
[ 2.380454] system 00:05: [io 0x04d6] has been reserved
[ 2.380455] system 00:05: [io 0x0c00-0x0c01] has been reserved
[ 2.380456] system 00:05: [io 0x0c14] has been reserved
[ 2.380457] system 00:05: [io 0x0c50-0x0c51] has been reserved
[ 2.380458] system 00:05: [io 0x0c52] has been reserved
[ 2.380460] system 00:05: [io 0x0c6c] has been reserved
[ 2.380461] system 00:05: [io 0x0c6f] has been reserved
[ 2.380462] system 00:05: [io 0x0cd8-0x0cdf] has been reserved
[ 2.380463] system 00:05: [io 0x0800-0x089f] has been reserved
[ 2.380464] system 00:05: [io 0x0b00-0x0b0f] has been reserved
[ 2.380465] system 00:05: [io 0x0b20-0x0b3f] has been reserved
[ 2.380466] system 00:05: [io 0x0900-0x090f] has been reserved
[ 2.380468] system 00:05: [io 0x0910-0x091f] has been reserved
[ 2.380469] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 2.380470] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[ 2.380472] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 2.380473] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[ 2.380475] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 2.380476] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[ 2.380478] system 00:05: [mem 0xfeb00000-0xfeb00fff] has been reserved
[ 2.380479] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 2.382576] pnp: PnP ACPI: found 6 devices
[ 2.388143] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 2.388186] NET: Registered PF_INET protocol family
[ 2.388245] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 2.396792] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 2.396816] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 2.396863] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 2.397014] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 2.397073] TCP: Hash tables configured (established 262144 bind 65536)
[ 2.397130] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 2.397166] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 2.397199] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 2.397243] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 2.397248] NET: Registered PF_XDP protocol family
[ 2.397257] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 2.397260] pci 0000:02:00.0: bridge window [io 0xf000-0xffff]
[ 2.397263] pci 0000:02:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 2.397266] pci 0000:02:00.0: bridge window [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 2.397270] pci 0000:01:00.0: PCI bridge to [bus 02-03]
[ 2.397272] pci 0000:01:00.0: bridge window [io 0xf000-0xffff]
[ 2.397275] pci 0000:01:00.0: bridge window [mem 0xfcb00000-0xfccfffff]
[ 2.397278] pci 0000:01:00.0: bridge window [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 2.397282] pci 0000:00:01.1: PCI bridge to [bus 01-03]
[ 2.397283] pci 0000:00:01.1: bridge window [io 0xf000-0xffff]
[ 2.397285] pci 0000:00:01.1: bridge window [mem 0xfcb00000-0xfcdfffff]
[ 2.397287] pci 0000:00:01.1: bridge window [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 2.397296] pci 0000:00:01.2: PCI bridge to [bus 04]
[ 2.397299] pci 0000:00:01.2: bridge window [mem 0xfcf00000-0xfcffffff]
[ 2.397309] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 2.397320] pci 0000:06:04.0: PCI bridge to [bus 08]
[ 2.397326] pci 0000:06:05.0: PCI bridge to [bus 09]
[ 2.397333] pci 0000:06:06.0: PCI bridge to [bus 0a]
[ 2.397340] pci 0000:06:07.0: PCI bridge to [bus 0b]
[ 2.397346] pci 0000:06:08.0: PCI bridge to [bus 0c]
[ 2.397353] pci 0000:06:09.0: PCI bridge to [bus 0d]
[ 2.397359] pci 0000:06:0a.0: PCI bridge to [bus 0e]
[ 2.397361] pci 0000:06:0a.0: bridge window [io 0xe000-0xefff]
[ 2.397364] pci 0000:06:0a.0: bridge window [mem 0xfca00000-0xfcafffff]
[ 2.397369] pci 0000:06:0b.0: PCI bridge to [bus 0f]
[ 2.397371] pci 0000:06:0b.0: bridge window [mem 0xfc900000-0xfc9fffff]
[ 2.397374] pci 0000:06:0b.0: bridge window [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.397377] pci 0000:06:0c.0: PCI bridge to [bus 10]
[ 2.397380] pci 0000:06:0c.0: bridge window [mem 0xfc800000-0xfc8fffff]
[ 2.397385] pci 0000:06:0d.0: PCI bridge to [bus 11]
[ 2.397388] pci 0000:06:0d.0: bridge window [mem 0xfc700000-0xfc7fffff]
[ 2.397392] pci 0000:05:00.0: PCI bridge to [bus 06-11]
[ 2.397394] pci 0000:05:00.0: bridge window [io 0xe000-0xefff]
[ 2.397397] pci 0000:05:00.0: bridge window [mem 0xfc700000-0xfcafffff]
[ 2.397399] pci 0000:05:00.0: bridge window [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.397402] pci 0000:00:02.1: PCI bridge to [bus 05-11]
[ 2.397404] pci 0000:00:02.1: bridge window [io 0xe000-0xefff]
[ 2.397406] pci 0000:00:02.1: bridge window [mem 0xfc700000-0xfcafffff]
[ 2.397408] pci 0000:00:02.1: bridge window [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.397417] pci 0000:00:08.1: PCI bridge to [bus 12]
[ 2.397423] pci 0000:00:08.1: bridge window [io 0xd000-0xdfff]
[ 2.397425] pci 0000:00:08.1: bridge window [mem 0xfc300000-0xfc6fffff]
[ 2.397427] pci 0000:00:08.1: bridge window [mem 0xfc20000000-0xfc301fffff 64bit pref]
[ 2.397429] pci 0000:00:08.3: PCI bridge to [bus 13]
[ 2.397431] pci 0000:00:08.3: bridge window [mem 0xfce00000-0xfcefffff]
[ 2.397434] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 2.397436] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 2.397437] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 2.397438] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 2.397439] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 2.397440] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfcffffff window]
[ 2.397441] pci_bus 0000:00: resource 10 [mem 0x840000000-0xffffffffff window]
[ 2.397442] pci_bus 0000:01: resource 0 [io 0xf000-0xffff]
[ 2.397443] pci_bus 0000:01: resource 1 [mem 0xfcb00000-0xfcdfffff]
[ 2.397444] pci_bus 0000:01: resource 2 [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 2.397445] pci_bus 0000:02: resource 0 [io 0xf000-0xffff]
[ 2.397446] pci_bus 0000:02: resource 1 [mem 0xfcb00000-0xfccfffff]
[ 2.397447] pci_bus 0000:02: resource 2 [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 2.397448] pci_bus 0000:03: resource 0 [io 0xf000-0xffff]
[ 2.397449] pci_bus 0000:03: resource 1 [mem 0xfcb00000-0xfccfffff]
[ 2.397450] pci_bus 0000:03: resource 2 [mem 0xf800000000-0xfc0fffffff 64bit pref]
[ 2.397451] pci_bus 0000:04: resource 1 [mem 0xfcf00000-0xfcffffff]
[ 2.397453] pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
[ 2.397453] pci_bus 0000:05: resource 1 [mem 0xfc700000-0xfcafffff]
[ 2.397454] pci_bus 0000:05: resource 2 [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.397456] pci_bus 0000:06: resource 0 [io 0xe000-0xefff]
[ 2.397457] pci_bus 0000:06: resource 1 [mem 0xfc700000-0xfcafffff]
[ 2.397458] pci_bus 0000:06: resource 2 [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.397459] pci_bus 0000:0e: resource 0 [io 0xe000-0xefff]
[ 2.397460] pci_bus 0000:0e: resource 1 [mem 0xfca00000-0xfcafffff]
[ 2.397461] pci_bus 0000:0f: resource 1 [mem 0xfc900000-0xfc9fffff]
[ 2.397462] pci_bus 0000:0f: resource 2 [mem 0xfc30300000-0xfc303fffff 64bit pref]
[ 2.397463] pci_bus 0000:10: resource 1 [mem 0xfc800000-0xfc8fffff]
[ 2.397464] pci_bus 0000:11: resource 1 [mem 0xfc700000-0xfc7fffff]
[ 2.397465] pci_bus 0000:12: resource 0 [io 0xd000-0xdfff]
[ 2.397466] pci_bus 0000:12: resource 1 [mem 0xfc300000-0xfc6fffff]
[ 2.397467] pci_bus 0000:12: resource 2 [mem 0xfc20000000-0xfc301fffff 64bit pref]
[ 2.397468] pci_bus 0000:13: resource 1 [mem 0xfce00000-0xfcefffff]
[ 2.397606] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 2.397838] pci 0000:12:00.1: D0 power state depends on 0000:12:00.0
[ 2.398066] PCI: CLS 64 bytes, default 64
[ 2.398083] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 2.398116] Trying to unpack rootfs image as initramfs...
[ 2.398119] pci 0000:00:01.0: Adding to iommu group 0
[ 2.398131] pci 0000:00:01.1: Adding to iommu group 1
[ 2.398142] pci 0000:00:01.2: Adding to iommu group 2
[ 2.398159] pci 0000:00:02.0: Adding to iommu group 3
[ 2.398170] pci 0000:00:02.1: Adding to iommu group 4
[ 2.398188] pci 0000:00:03.0: Adding to iommu group 5
[ 2.398204] pci 0000:00:04.0: Adding to iommu group 6
[ 2.398221] pci 0000:00:08.0: Adding to iommu group 7
[ 2.398232] pci 0000:00:08.1: Adding to iommu group 8
[ 2.398243] pci 0000:00:08.3: Adding to iommu group 9
[ 2.398265] pci 0000:00:14.0: Adding to iommu group 10
[ 2.398275] pci 0000:00:14.3: Adding to iommu group 10
[ 2.398334] pci 0000:00:18.0: Adding to iommu group 11
[ 2.398344] pci 0000:00:18.1: Adding to iommu group 11
[ 2.398355] pci 0000:00:18.2: Adding to iommu group 11
[ 2.398366] pci 0000:00:18.3: Adding to iommu group 11
[ 2.398376] pci 0000:00:18.4: Adding to iommu group 11
[ 2.398387] pci 0000:00:18.5: Adding to iommu group 11
[ 2.398397] pci 0000:00:18.6: Adding to iommu group 11
[ 2.398408] pci 0000:00:18.7: Adding to iommu group 11
[ 2.398419] pci 0000:01:00.0: Adding to iommu group 12
[ 2.398431] pci 0000:02:00.0: Adding to iommu group 13
[ 2.398446] pci 0000:03:00.0: Adding to iommu group 14
[ 2.398459] pci 0000:03:00.1: Adding to iommu group 15
[ 2.398471] pci 0000:04:00.0: Adding to iommu group 16
[ 2.398482] pci 0000:05:00.0: Adding to iommu group 17
[ 2.398493] pci 0000:06:00.0: Adding to iommu group 18
[ 2.398505] pci 0000:06:04.0: Adding to iommu group 19
[ 2.398516] pci 0000:06:05.0: Adding to iommu group 20
[ 2.398527] pci 0000:06:06.0: Adding to iommu group 21
[ 2.398538] pci 0000:06:07.0: Adding to iommu group 22
[ 2.398549] pci 0000:06:08.0: Adding to iommu group 23
[ 2.398560] pci 0000:06:09.0: Adding to iommu group 24
[ 2.398571] pci 0000:06:0a.0: Adding to iommu group 25
[ 2.398582] pci 0000:06:0b.0: Adding to iommu group 26
[ 2.398594] pci 0000:06:0c.0: Adding to iommu group 27
[ 2.398605] pci 0000:06:0d.0: Adding to iommu group 28
[ 2.398608] pci 0000:0e:00.0: Adding to iommu group 25
[ 2.398611] pci 0000:0f:00.0: Adding to iommu group 26
[ 2.398614] pci 0000:10:00.0: Adding to iommu group 27
[ 2.398617] pci 0000:11:00.0: Adding to iommu group 28
[ 2.398638] pci 0000:12:00.0: Adding to iommu group 29
[ 2.398650] pci 0000:12:00.1: Adding to iommu group 30
[ 2.398662] pci 0000:12:00.2: Adding to iommu group 31
[ 2.398673] pci 0000:12:00.3: Adding to iommu group 32
[ 2.398685] pci 0000:12:00.4: Adding to iommu group 33
[ 2.398696] pci 0000:12:00.6: Adding to iommu group 34
[ 2.398708] pci 0000:13:00.0: Adding to iommu group 35
[ 2.400538] AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC
[ 2.400543] AMD-Vi: Interrupt remapping enabled
[ 2.603694] AMD-Vi: Virtual APIC enabled
[ 2.603703] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 2.603705] software IO TLB: mapped [mem 0x00000000a3044000-0x00000000a7044000] (64MB)
[ 2.603736] LVT offset 0 assigned for vector 0x400
[ 2.607098] perf: AMD IBS detected (0x00000bff)
[ 2.607103] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 2.608489] Initialise system trusted keyrings
[ 2.608497] Key type blacklist registered
[ 2.608523] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[ 2.608530] zbud: loaded
[ 2.608610] fuse: init (API version 7.40)
[ 2.608674] integrity: Platform Keyring initialized
[ 2.608676] integrity: Machine keyring initialized
[ 2.615736] Key type asymmetric registered
[ 2.615737] Asymmetric key parser 'x509' registered
[ 2.615749] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 2.615775] io scheduler mq-deadline registered
[ 2.615776] io scheduler kyber registered
[ 2.615781] io scheduler bfq registered
[ 2.616796] pcieport 0000:00:01.1: PME: Signaling with IRQ 28
[ 2.616906] pcieport 0000:00:01.2: PME: Signaling with IRQ 29
[ 2.617019] pcieport 0000:00:02.1: PME: Signaling with IRQ 30
[ 2.617127] pcieport 0000:00:08.1: PME: Signaling with IRQ 31
[ 2.617221] pcieport 0000:00:08.3: PME: Signaling with IRQ 32
[ 2.618654] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 2.618786] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 2.618801] ACPI: button: Power Button [PWRB]
[ 2.618824] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 2.620364] ACPI: button: Power Button [PWRF]
[ 2.620411] Estimated ratio of average max frequency by base frequency (times 1024): 1127
[ 2.620422] Monitor-Mwait will be used to enter C-1 state
[ 2.620425] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[ 2.620535] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[ 2.620607] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[ 2.620703] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[ 2.620798] ACPI: \_SB_.PLTF.C008: Found 3 idle states
[ 2.620889] ACPI: \_SB_.PLTF.C00A: Found 3 idle states
[ 2.620994] ACPI: \_SB_.PLTF.C00C: Found 3 idle states
[ 2.621097] ACPI: \_SB_.PLTF.C00E: Found 3 idle states
[ 2.621184] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[ 2.621273] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[ 2.621361] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[ 2.621465] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[ 2.621565] ACPI: \_SB_.PLTF.C009: Found 3 idle states
[ 2.621666] ACPI: \_SB_.PLTF.C00B: Found 3 idle states
[ 2.621769] ACPI: \_SB_.PLTF.C00D: Found 3 idle states
[ 2.621859] ACPI: \_SB_.PLTF.C00F: Found 3 idle states
[ 2.622056] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 2.622579] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 2.627911] Non-volatile memory driver v1.3
[ 2.627912] Linux agpgart interface v0.103
[ 2.747063] tpm_crb MSFT0101:00: Disabling hwrng
[ 2.747303] ACPI: bus type drm_connector registered
[ 2.748730] ahci 0000:11:00.0: version 3.0
[ 2.748844] ahci 0000:11:00.0: SSS flag set, parallel bus scan disabled
[ 2.748869] ahci 0000:11:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[ 2.748872] ahci 0000:11:00.0: 4/6 ports implemented (port mask 0xf)
[ 2.748873] ahci 0000:11:00.0: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[ 2.749222] scsi host0: ahci
[ 2.749301] scsi host1: ahci
[ 2.749383] scsi host2: ahci
[ 2.749462] scsi host3: ahci
[ 2.749526] scsi host4: ahci
[ 2.749593] scsi host5: ahci
[ 2.749624] ata1: SATA max UDMA/133 abar m1024@0xfc780000 port 0xfc780100 irq 47 lpm-pol 3
[ 2.749626] ata2: SATA max UDMA/133 abar m1024@0xfc780000 port 0xfc780180 irq 47 lpm-pol 3
[ 2.749628] ata3: SATA max UDMA/133 abar m1024@0xfc780000 port 0xfc780200 irq 47 lpm-pol 3
[ 2.749629] ata4: SATA max UDMA/133 abar m1024@0xfc780000 port 0xfc780280 irq 47 lpm-pol 3
[ 2.749630] ata5: DUMMY
[ 2.749631] ata6: DUMMY
[ 2.749693] usbcore: registered new interface driver usbserial_generic
[ 2.749697] usbserial: USB Serial support registered for generic
[ 2.749742] rtc_cmos 00:02: RTC can wake from S4
[ 2.749918] rtc_cmos 00:02: registered as rtc0
[ 2.749947] rtc_cmos 00:02: setting system clock to 2024-11-22T02:17:08 UTC (1732241828)
[ 2.749966] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram
[ 2.753751] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.754039] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[ 2.754276] fbcon: Deferring console take-over
[ 2.754278] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 2.754324] hid: raw HID events driver (C) Jiri Kosina
[ 2.754376] drop_monitor: Initializing network drop monitor service
[ 2.754472] NET: Registered PF_INET6 protocol family
[ 2.977416] Freeing initrd memory: 144856K
[ 2.981519] Segment Routing with IPv6
[ 2.981521] RPL Segment Routing with IPv6
[ 2.981531] In-situ OAM (IOAM) with IPv6
[ 2.981557] NET: Registered PF_PACKET protocol family
[ 2.982614] microcode: Current revision: 0x0a601203
[ 2.982984] resctrl: L3 allocation detected
[ 2.982985] resctrl: MB allocation detected
[ 2.982986] resctrl: SMBA allocation detected
[ 2.982987] resctrl: L3 monitoring detected
[ 2.983003] IPI shorthand broadcast: enabled
[ 2.984561] sched_clock: Marking stable (2983334139, 343571)->(2994137299, -10459589)
[ 2.984653] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[ 2.984737] registered taskstats version 1
[ 2.985056] Loading compiled-in X.509 certificates
[ 2.987047] Loaded X.509 cert 'Build time autogenerated kernel key: c03c4af6d7171c30c37096597ccaf934558a29d0'
[ 2.989968] zswap: loaded using pool zstd/zsmalloc
[ 2.989993] Demotion targets for Node 0: null
[ 2.990163] Key type .fscrypt registered
[ 2.990164] Key type fscrypt-provisioning registered
[ 2.990247] integrity: Loading X.509 certificate: UEFI:db
[ 2.990255] integrity: Loaded X.509 cert 'MSI SHIP DB: ebc30d5be5f35f8041c1c2d9e613eee2'
[ 2.990256] integrity: Loading X.509 certificate: UEFI:db
[ 2.990266] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 2.990267] integrity: Loading X.509 certificate: UEFI:db
[ 2.990275] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 2.990914] PM: Magic number: 0:613:258
[ 2.990973] acpi device:6a: hash matches
[ 2.994154] RAS: Correctable Errors collector initialized.
[ 3.001767] clk: Disabling unused clocks
[ 3.001769] PM: genpd: Disabling unused power domains
[ 3.060943] ata1: SATA link down (SStatus 0 SControl 300)
[ 3.373670] ata2: SATA link down (SStatus 0 SControl 300)
[ 3.617269] tsc: Refined TSC clocksource calibration: 4200.011 MHz
[ 3.617278] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3c8a6b2b042, max_idle_ns: 440795235636 ns
[ 3.617304] clocksource: Switched to clocksource tsc
[ 3.844069] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 3.844189] ata3.00: ATA-9: Seagate BarraCuda SSD ZA1000CM10002, STAS1024, max UDMA/133
[ 3.844227] ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 3.844342] ata3.00: Features: Dev-Sleep
[ 3.844572] ata3.00: configured for UDMA/133
[ 3.844578] ahci 0000:11:00.0: port does not support device sleep
[ 3.844733] scsi 2:0:0:0: Direct-Access ATA Seagate BarraCud 1024 PQ: 0 ANSI: 5
[ 3.844972] sd 2:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 3.844977] sd 2:0:0:0: [sda] Write Protect is off
[ 3.844979] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.844989] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.845006] sd 2:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 3.846632] sda: sda1 sda2
[ 3.846699] sd 2:0:0:0: [sda] Attached SCSI disk
[ 4.314114] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 4.342625] ata4.00: ATA-10: ST4000DM004-2U9104, 0001, max UDMA/133
[ 4.351872] ata4.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 4.412122] ata4.00: configured for UDMA/133
[ 4.421454] scsi 3:0:0:0: Direct-Access ATA ST4000DM004-2U91 0001 PQ: 0 ANSI: 5
[ 4.421692] sd 3:0:0:0: [sdb] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
[ 4.421696] sd 3:0:0:0: [sdb] 4096-byte physical blocks
[ 4.421705] sd 3:0:0:0: [sdb] Write Protect is off
[ 4.421707] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 4.421719] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.421738] sd 3:0:0:0: [sdb] Preferred minimum I/O size 4096 bytes
[ 4.462683] sdb: sdb1 sdb2
[ 4.462820] sd 3:0:0:0: [sdb] Attached SCSI disk
[ 4.463556] Freeing unused decrypted memory: 2028K
[ 4.463770] Freeing unused kernel image (initmem) memory: 3432K
[ 4.463777] Write protecting the kernel read-only data: 32768k
[ 4.463984] Freeing unused kernel image (rodata/data gap) memory: 896K
[ 4.494028] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 4.494032] rodata_test: all tests were successful
[ 4.494043] Run /init as init process
[ 4.494044] with arguments:
[ 4.494045] /init
[ 4.494046] with environment:
[ 4.494046] HOME=/
[ 4.494047] TERM=linux
[ 4.494048] archisobasedir=arch
[ 4.494048] archisosearchuuid=2024-09-01-12-40-01-00
[ 4.505772] fbcon: Taking over console
[ 4.506574] Console: switching to colour frame buffer device 128x48
[ 4.613980] ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no)
[ 4.614200] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:20/LNXVIDEO:00/input/input2
[ 4.619016] xhci_hcd 0000:10:00.0: xHCI Host Controller
[ 4.619023] xhci_hcd 0000:10:00.0: new USB bus registered, assigned bus number 1
[ 4.621295] cryptd: max_cpu_qlen set to 1000
[ 4.624194] nvme nvme0: pci function 0000:04:00.0
[ 4.627341] r8169 0000:0e:00.0: enabling device (0000 -> 0003)
[ 4.628693] AVX2 version of gcm_enc/dec engaged.
[ 4.628721] AES CTR mode by8 optimization enabled
[ 4.641844] r8169 0000:0e:00.0 eth0: RTL8125B, d8:43:ae:2c:04:03, XID 641, IRQ 50
[ 4.641847] r8169 0000:0e:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 4.657658] nvme nvme0: allocated 32 MiB host memory buffer.
[ 4.659470] nvme nvme0: 16/0/0 default/read/poll queues
[ 4.663263] nvme0n1: p1 p2 p3 p4 p5 p6 p7
[ 4.675066] xhci_hcd 0000:10:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000200000010
[ 4.675364] xhci_hcd 0000:10:00.0: xHCI Host Controller
[ 4.675368] xhci_hcd 0000:10:00.0: new USB bus registered, assigned bus number 2
[ 4.675371] xhci_hcd 0000:10:00.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 4.675987] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
[ 4.675990] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.675992] usb usb1: Product: xHCI Host Controller
[ 4.675994] usb usb1: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.675995] usb usb1: SerialNumber: 0000:10:00.0
[ 4.676102] hub 1-0:1.0: USB hub found
[ 4.676120] hub 1-0:1.0: 12 ports detected
[ 4.678405] raid6: skipped pq benchmark and selected avx512x4
[ 4.678406] raid6: using avx512x2 recovery algorithm
[ 4.680287] xor: automatically using best checksumming function avx
[ 4.684054] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.684079] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
[ 4.684082] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.684084] usb usb2: Product: xHCI Host Controller
[ 4.684085] usb usb2: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.684087] usb usb2: SerialNumber: 0000:10:00.0
[ 4.684191] hub 2-0:1.0: USB hub found
[ 4.684207] hub 2-0:1.0: 5 ports detected
[ 4.687957] xhci_hcd 0000:12:00.3: xHCI Host Controller
[ 4.687961] xhci_hcd 0000:12:00.3: new USB bus registered, assigned bus number 3
[ 4.688321] xhci_hcd 0000:12:00.3: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000010
[ 4.688539] xhci_hcd 0000:12:00.3: xHCI Host Controller
[ 4.688542] xhci_hcd 0000:12:00.3: new USB bus registered, assigned bus number 4
[ 4.688544] xhci_hcd 0000:12:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 4.688567] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
[ 4.688569] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.688570] usb usb3: Product: xHCI Host Controller
[ 4.688571] usb usb3: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.688572] usb usb3: SerialNumber: 0000:12:00.3
[ 4.688648] hub 3-0:1.0: USB hub found
[ 4.688657] hub 3-0:1.0: 2 ports detected
[ 4.690278] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.690305] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
[ 4.690307] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.690308] usb usb4: Product: xHCI Host Controller
[ 4.690310] usb usb4: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.690311] usb usb4: SerialNumber: 0000:12:00.3
[ 4.690405] hub 4-0:1.0: USB hub found
[ 4.690416] hub 4-0:1.0: 2 ports detected
[ 4.691858] xhci_hcd 0000:12:00.4: xHCI Host Controller
[ 4.691863] xhci_hcd 0000:12:00.4: new USB bus registered, assigned bus number 5
[ 4.692216] xhci_hcd 0000:12:00.4: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000010
[ 4.692487] xhci_hcd 0000:12:00.4: xHCI Host Controller
[ 4.692490] xhci_hcd 0000:12:00.4: new USB bus registered, assigned bus number 6
[ 4.692492] xhci_hcd 0000:12:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[ 4.692525] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
[ 4.692528] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.692529] usb usb5: Product: xHCI Host Controller
[ 4.692530] usb usb5: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.692532] usb usb5: SerialNumber: 0000:12:00.4
[ 4.692621] hub 5-0:1.0: USB hub found
[ 4.692635] hub 5-0:1.0: 2 ports detected
[ 4.693925] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.693954] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
[ 4.693956] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.693957] usb usb6: Product: xHCI Host Controller
[ 4.693958] usb usb6: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.693960] usb usb6: SerialNumber: 0000:12:00.4
[ 4.694029] hub 6-0:1.0: USB hub found
[ 4.694041] hub 6-0:1.0: 2 ports detected
[ 4.695387] xhci_hcd 0000:13:00.0: xHCI Host Controller
[ 4.695392] xhci_hcd 0000:13:00.0: new USB bus registered, assigned bus number 7
[ 4.696665] xhci_hcd 0000:13:00.0: USB3 root hub has no ports
[ 4.696667] xhci_hcd 0000:13:00.0: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
[ 4.696897] xhci_hcd 0000:13:00.0: xHCI Host Controller
[ 4.696899] xhci_hcd 0000:13:00.0: new USB bus registered, assigned bus number 8
[ 4.696901] xhci_hcd 0000:13:00.0: Host supports USB 3.0 SuperSpeed
[ 4.696934] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10
[ 4.696935] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.696937] usb usb7: Product: xHCI Host Controller
[ 4.696938] usb usb7: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.696939] usb usb7: SerialNumber: 0000:13:00.0
[ 4.697015] hub 7-0:1.0: USB hub found
[ 4.697028] hub 7-0:1.0: 1 port detected
[ 4.697873] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[ 4.697899] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10
[ 4.697901] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 4.697902] usb usb8: Product: xHCI Host Controller
[ 4.697903] usb usb8: Manufacturer: Linux 6.10.7-arch1-1 xhci-hcd
[ 4.697904] usb usb8: SerialNumber: 0000:13:00.0
[ 4.697973] hub 8-0:1.0: USB hub found
[ 4.697980] hub 8-0:1.0: config failed, hub doesn't have any ports! (err -19)
[ 4.781236] Btrfs loaded, zoned=yes, fsverity=yes
[ 5.003694] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[ 5.230906] usb 1-2: New USB device found, idVendor=048d, idProduct=1177, bcdDevice= 1.00
[ 5.230910] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5.230912] usb 1-2: Product: USB Mass Storage Device
[ 5.230914] usb 1-2: Manufacturer: Generic
[ 5.230915] usb 1-2: SerialNumber: 22B1E3B14ACD4BC8
[ 5.337982] usb 2-3: new SuperSpeed USB device number 2 using xhci_hcd
[ 5.361905] usb 2-3: New USB device found, idVendor=0bda, idProduct=9210, bcdDevice=20.01
[ 5.361908] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5.361910] usb 2-3: Product: RTL9210
[ 5.361911] usb 2-3: Manufacturer: Realtek
[ 5.361913] usb 2-3: SerialNumber: 012345678904
[ 5.547028] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[ 5.717370] usb-storage 1-2:1.0: USB Mass Storage device detected
[ 5.717462] scsi host6: usb-storage 1-2:1.0
[ 5.717526] usbcore: registered new interface driver usb-storage
[ 5.717758] [drm] amdgpu kernel modesetting enabled.
[ 5.717775] amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
[ 5.717931] amdgpu: ATPX version 1, functions 0x00000000
[ 5.727088] amdgpu: Virtual CRAT table created for CPU
[ 5.727096] amdgpu: Topology: Add CPU node
[ 5.727143] amdgpu 0000:03:00.0: enabling device (0006 -> 0007)
[ 5.727173] [drm] initializing kernel modesetting (NAVY_FLOUNDER 0x1002:0x73DF 0x1EAE:0x6710 0xC0).
[ 5.727180] [drm] register mmio base: 0xFCB00000
[ 5.727181] [drm] register mmio size: 1048576
[ 5.730425] [drm] add ip block number 0 <nv_common>
[ 5.730426] [drm] add ip block number 1 <gmc_v10_0>
[ 5.730427] [drm] add ip block number 2 <navi10_ih>
[ 5.730427] [drm] add ip block number 3 <psp>
[ 5.730428] [drm] add ip block number 4 <smu>
[ 5.730429] [drm] add ip block number 5 <dm>
[ 5.730430] [drm] add ip block number 6 <gfx_v10_0>
[ 5.730430] [drm] add ip block number 7 <sdma_v5_2>
[ 5.730431] [drm] add ip block number 8 <vcn_v3_0>
[ 5.730432] [drm] add ip block number 9 <jpeg_v3_0>
[ 5.730441] amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
[ 5.730442] amdgpu: ATOM BIOS: 113-67KA6SCD2-L01
[ 5.732942] [drm] VCN(0) decode is enabled in VM mode
[ 5.732944] [drm] VCN(0) encode is enabled in VM mode
[ 5.734171] [drm] JPEG decode is enabled in VM mode
[ 5.750417] Console: switching to colour dummy device 80x25
[ 5.800749] amdgpu 0000:03:00.0: vgaarb: deactivate vga console
[ 5.800755] amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[ 5.800824] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 5.800831] amdgpu 0000:03:00.0: amdgpu: VRAM: 12272M 0x0000008000000000 - 0x00000082FEFFFFFF (12272M used)
[ 5.800833] amdgpu 0000:03:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[ 5.800844] [drm] Detected VRAM RAM=12272M, BAR=16384M
[ 5.800846] [drm] RAM width 192bits GDDR6
[ 5.800985] [drm] amdgpu: 12272M of VRAM memory ready
[ 5.800987] [drm] amdgpu: 15621M of GTT memory ready.
[ 5.801002] [drm] GART: num cpu pages 131072, num gpu pages 131072
[ 5.801110] [drm] PCIE GART of 512M enabled (table at 0x0000008000300000).
[ 5.819926] usb 1-5: New USB device found, idVendor=174c, idProduct=2074, bcdDevice= 0.01
[ 5.819931] usb 1-5: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[ 5.819933] usb 1-5: Product: ASM107x
[ 5.819935] usb 1-5: Manufacturer: Asmedia
[ 5.917827] usb 2-5: new SuperSpeed USB device number 3 using xhci_hcd
[ 5.936937] usb 2-5: New USB device found, idVendor=174c, idProduct=3074, bcdDevice= 0.01
[ 5.936940] usb 2-5: New USB device strings: Mfr=2, Product=3, SerialNumber=0
[ 5.936941] usb 2-5: Product: ASM107x
[ 5.936942] usb 2-5: Manufacturer: Asmedia
[ 6.148372] hub 1-5:1.0: USB hub found
[ 6.152913] hub 1-5:1.0: 4 ports detected