Software and technical details of Fedora Server 36 including cockpit screenshots

Author:

Dmesg:

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
[root@srv ~]# dmesg
[    0.000000] Linux version 5.17.9-300.fc36.x86_64 (mockbuild@bkernel02.iad2.fedoraproject.org) (gcc (GCC) 12.1.1 20220507 (Red Hat 12.1.1-1), GNU ld version 2.37-27.fc36) #1 SMP PREEMPT Wed May 18 15:08:23 UTC 2022
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.17.9-300.fc36.x86_64 root=/dev/mapper/fedora_fedora-root ro rd.lvm.lv=fedora_fedora/root rhgb quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 1776
[    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-0x0000000009deffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009df0000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x0000000076820fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000076821000-0x0000000077d67fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000077d68000-0x0000000077d97fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000077d98000-0x000000007825dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007825e000-0x00000000795e1fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000795e2000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007c000000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b7a00000-0x00000000b7a00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b7b00000-0x00000000b7b7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ef800000-0x00000000ef8fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000efc00000-0x00000000efc00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000efd00000-0x00000000efd7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000feafffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000fedc0000-0x00000000fedc0fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087f2fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000087f300000-0x000000087fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x4a279018-0x4a28a057] usable ==> usable
[    0.000000] e820: update [mem 0x4a279018-0x4a28a057] usable ==> usable
[    0.000000] e820: update [mem 0x4a259018-0x4a278a57] usable ==> usable
[    0.000000] e820: update [mem 0x4a259018-0x4a278a57] 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-0x0000000009deffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009df0000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x000000004a259017] usable
[    0.000000] reserve setup_data: [mem 0x000000004a259018-0x000000004a278a57] usable
[    0.000000] reserve setup_data: [mem 0x000000004a278a58-0x000000004a279017] usable
[    0.000000] reserve setup_data: [mem 0x000000004a279018-0x000000004a28a057] usable
[    0.000000] reserve setup_data: [mem 0x000000004a28a058-0x0000000076820fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000076821000-0x0000000077d67fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000077d68000-0x0000000077d97fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x0000000077d98000-0x000000007825dfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000007825e000-0x00000000795e1fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000795e2000-0x000000007bffffff] usable
[    0.000000] reserve setup_data: [mem 0x000000007c000000-0x000000007fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b7a00000-0x00000000b7a00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b7b00000-0x00000000b7b7ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ef800000-0x00000000ef8fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000efc00000-0x00000000efc00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000efd00000-0x00000000efd7ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000feafffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000fedc0000-0x00000000fedc0fff] 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 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000087f2fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000087f300000-0x000000087fffffff] reserved
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi: ACPI 2.0=0x77d72000 ACPI=0x77d72000 SMBIOS=0x794a3000 SMBIOS 3.0=0x794a2000 ESRT=0x74a81f18 MEMATTR=0x73066018 MOKvar=0x73119000 RNG=0x78731f98
[    0.000000] efi: seeding entropy pool
[    0.000000] random: fast init done
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.0.0 present.
[    0.000000] DMI: System manufacturer System Product Name/ROG ZENITH EXTREME, BIOS 2001 07/31/2019
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x87f300 max_arch_pfn = 0x400000000
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT 
[    0.000000] e820: update [mem 0x7c000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcf60-0x000fcf6f]
[    0.000000] esrt: Reserving ESRT space from 0x0000000074a81f18 to 0x0000000074a81f50.
[    0.000000] e820: update [mem 0x74a81000-0x74a81fff] usable ==> reserved
[    0.000000] e820: update [mem 0x73119000-0x73119fff] usable ==> reserved
[    0.000000] Using GB pages for direct mapping
[    0.000000] secureboot: Secure boot disabled
[    0.000000] RAMDISK: [mem 0x4a28b000-0x4b84afff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x0000000077D72000 000024 (v02 AMD   )
[    0.000000] ACPI: XSDT 0x0000000077D720A0 0000B4 (v01 AMD    A M I    03242016 AMI  00010013)
[    0.000000] ACPI: FACP 0x0000000077D839F8 000114 (v06 AMD    A M I    03242016 AMI  00010013)
[    0.000000] ACPI: DSDT 0x0000000077D721E8 01180A (v02 AMD    A M I    03242016 INTL 20120913)
[    0.000000] ACPI: FACS 0x000000007825B700 000040
[    0.000000] ACPI: APIC 0x0000000077D83B10 00046A (v03 AMD    A M I    03242016 AMI  00010013)
[    0.000000] ACPI: FPDT 0x0000000077D83F80 000044 (v01 AMD    A M I    03242016 AMI  00010013)
[    0.000000] ACPI: FIDT 0x0000000077D83FC8 00009C (v01 AMD    A M I    03242016 AMI  00010013)
[    0.000000] ACPI: SSDT 0x0000000077D97B70 0000F8 (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000077D840C0 008C4C (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x0000000077D8CD10 0001CC (v02 AMD    CPUSSDT  03242016 AMI  03242016)
[    0.000000] ACPI: SSDT 0x0000000077D8CEE0 002C23 (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x0000000077D8FB08 00003C (v01 AMD    A M I    03242016 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x0000000077D8FB48 004604 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x0000000077D94150 001DF8 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x0000000077D95F48 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: HPET 0x0000000077D95F78 000038 (v01 AMD    A M I    03242016 AMI  00000005)
[    0.000000] ACPI: SSDT 0x0000000077D95FB0 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x0000000077D95FD8 000042 (v01 AMD    A M I    00000002      01000013)
[    0.000000] ACPI: BGRT 0x0000000077D96020 000038 (v01 AMD    A M I    03242016 AMI  00010013)
[    0.000000] ACPI: IVRS 0x0000000077D96058 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x0000000077D96128 001A41 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Reserving FACP table memory at [mem 0x77d839f8-0x77d83b0b]
[    0.000000] ACPI: Reserving DSDT table memory at [mem 0x77d721e8-0x77d839f1]
[    0.000000] ACPI: Reserving FACS table memory at [mem 0x7825b700-0x7825b73f]
[    0.000000] ACPI: Reserving APIC table memory at [mem 0x77d83b10-0x77d83f79]
[    0.000000] ACPI: Reserving FPDT table memory at [mem 0x77d83f80-0x77d83fc3]
[    0.000000] ACPI: Reserving FIDT table memory at [mem 0x77d83fc8-0x77d84063]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d97b70-0x77d97c67]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d840c0-0x77d8cd0b]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d8cd10-0x77d8cedb]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d8cee0-0x77d8fb02]
[    0.000000] ACPI: Reserving MCFG table memory at [mem 0x77d8fb08-0x77d8fb43]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d8fb48-0x77d9414b]
[    0.000000] ACPI: Reserving CRAT table memory at [mem 0x77d94150-0x77d95f47]
[    0.000000] ACPI: Reserving CDIT table memory at [mem 0x77d95f48-0x77d95f70]
[    0.000000] ACPI: Reserving HPET table memory at [mem 0x77d95f78-0x77d95faf]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d95fb0-0x77d95fd3]
[    0.000000] ACPI: Reserving UEFI table memory at [mem 0x77d95fd8-0x77d96019]
[    0.000000] ACPI: Reserving BGRT table memory at [mem 0x77d96020-0x77d96057]
[    0.000000] ACPI: Reserving IVRS table memory at [mem 0x77d96058-0x77d96127]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0x77d96128-0x77d97b68]
[    0.000000] system APIC only can use physical flat
[    0.000000] Setting APIC routing to physical flat.
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000087f2fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x87f2d5000-0x87f2fffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000087f2fffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009deffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x0000000076820fff]
[    0.000000]   node   0: [mem 0x00000000795e2000-0x000000007bffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000087f2fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000087f2fffff]
[    0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 528 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 11713 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 3328 pages in unavailable ranges
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] system APIC only can use physical flat
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 129, version 33, address 0xefc00000, GSI 24-55
[    0.000000] IOAPIC[2]: apic_id 130, version 33, address 0xb7a00000, GSI 56-87
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] e820: update [mem 0x73b1e000-0x73c11fff] usable ==> reserved
[    0.000000] smpboot: Allowing 128 CPUs, 96 hotplug CPUs
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x09df0000-0x09ffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x4a259000-0x4a259fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x4a278000-0x4a278fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x4a279000-0x4a279fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x4a28a000-0x4a28afff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x73119000-0x73119fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x73b1e000-0x73c11fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x74a81000-0x74a81fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x76821000-0x77d67fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x77d68000-0x77d97fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x77d98000-0x7825dfff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x7825e000-0x795e1fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x7c000000-0x7fffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xb79fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xb7a00000-0xb7a00fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xb7a01000-0xb7afffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xb7b00000-0xb7b7ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xb7b80000-0xef7fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xef800000-0xef8fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xef900000-0xefbfffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xefc00000-0xefc00fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xefc01000-0xefcfffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xefd00000-0xefd7ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xefd80000-0xfe9fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfeafffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfeb00000-0xfebfffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedbffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedc0000-0xfedc0fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedc1000-0xfedc1fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] [mem 0xb7b80000-0xef7fffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:1
[    0.000000] percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 000 001 002 003 004 005 006 007
[    0.000000] pcpu-alloc: [0] 008 009 010 011 012 013 014 015
[    0.000000] pcpu-alloc: [0] 016 017 018 019 020 021 022 023
[    0.000000] pcpu-alloc: [0] 024 025 026 027 028 029 030 031
[    0.000000] pcpu-alloc: [0] 032 033 034 035 036 037 038 039
[    0.000000] pcpu-alloc: [0] 040 041 042 043 044 045 046 047
[    0.000000] pcpu-alloc: [0] 048 049 050 051 052 053 054 055
[    0.000000] pcpu-alloc: [0] 056 057 058 059 060 061 062 063
[    0.000000] pcpu-alloc: [0] 064 065 066 067 068 069 070 071
[    0.000000] pcpu-alloc: [0] 072 073 074 075 076 077 078 079
[    0.000000] pcpu-alloc: [0] 080 081 082 083 084 085 086 087
[    0.000000] pcpu-alloc: [0] 088 089 090 091 092 093 094 095
[    0.000000] pcpu-alloc: [0] 096 097 098 099 100 101 102 103
[    0.000000] pcpu-alloc: [0] 104 105 106 107 108 109 110 111
[    0.000000] pcpu-alloc: [0] 112 113 114 115 116 117 118 119
[    0.000000] pcpu-alloc: [0] 120 121 122 123 124 125 126 127
[    0.000000] Fallback order for Node 0: 0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8225794
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.17.9-300.fc36.x86_64 root=/dev/mapper/fedora_fedora-root ro rd.lvm.lv=fedora_fedora/root rhgb quiet
[    0.000000] Unknown kernel command line parameters "rhgb BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.17.9-300.fc36.x86_64", will be passed to user space.
[    0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] printk: log_buf_len total cpu_extra contributions: 520192 bytes
[    0.000000] printk: log_buf_len min size: 262144 bytes
[    0.000000] printk: log_buf_len: 1048576 bytes
[    0.000000] printk: early log buf free: 242640(92%)
[    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 32575332K/33426104K available (16393K kernel code, 3661K rwdata, 11180K rodata, 2708K init, 6180K bss, 850512K reserved, 0K cma-reserved)
[    0.000000] random: get_random_u64 called from __kmem_cache_create+0x2a/0x530 with crng_init=1
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=128, Nodes=1
[    0.000000] ftrace: allocating 49729 entries in 195 pages
[    0.000000] ftrace: allocated 195 pages with 4 groups
[    0.000000] Dynamic Preempt: voluntary
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=128.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000]  Rude variant of Tasks RCU enabled.
[    0.000000]  Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=128
[    0.000000] NR_IRQS: 524544, nr_irqs: 2536, preallocated irqs: 16
[    0.000000] random: crng init done (trusting CPU's manufacturer)
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] ACPI: Core revision 20211217
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] AMD-Vi: [Firmware Bug]: : IOAPIC[130] not in IVRS table
[    0.000000] AMD-Vi: Disabling interrupt remapping
[    0.001000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.009000] tsc: Unable to calibrate against PIT
[    0.009000] tsc: using HPET reference calibration
[    0.009000] tsc: Detected 3393.192 MHz processor
[    0.000009] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x30e92f268fc, max_idle_ns: 440795267101 ns
[    0.000012] Calibrating delay loop (skipped), value calculated using timer frequency.. 6786.38 BogoMIPS (lpj=3393192)
[    0.000014] pid_max: default: 131072 minimum: 1024
[    0.003175] LSM: Security Framework initializing
[    0.003211] Yama: becoming mindful.
[    0.003241] SELinux:  Initializing.
[    0.003337] LSM support for eBPF active
[    0.003338] landlock: Up and running.
[    0.003456] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.003508] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.004128] LVT offset 1 assigned for vector 0xf9
[    0.004192] LVT offset 2 assigned for vector 0xf4
[    0.004207] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.004208] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.004212] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.004213] Spectre V2 : Mitigation: Retpolines
[    0.004214] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.004215] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.004217] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.006709] Freeing SMP alternatives memory: 44K
[    0.110011] smpboot: CPU0: AMD Ryzen Threadripper 1950X 16-Core Processor (family: 0x17, model: 0x1, stepping: 0x1)
[    0.110011] cblist_init_generic: Setting adjustable number of callback queues.
[    0.110011] cblist_init_generic: Setting shift to 7 and lim to 1.
[    0.110011] cblist_init_generic: Setting shift to 7 and lim to 1.
[    0.110011] cblist_init_generic: Setting shift to 7 and lim to 1.
[    0.110011] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.110011] ... version:                0
[    0.110011] ... bit width:              48
[    0.110011] ... generic registers:      6
[    0.110011] ... value mask:             0000ffffffffffff
[    0.110011] ... max period:             00007fffffffffff
[    0.110011] ... fixed-purpose events:   0
[    0.110011] ... event mask:             000000000000003f
[    0.110011] rcu: Hierarchical SRCU implementation.
[    0.110011] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.110689] smp: Bringing up secondary CPUs ...
[    0.110780] x86: Booting SMP configuration:
[    0.110780] .... node  #0, CPUs:          #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
[    0.152093] smp: Brought up 1 node, 32 CPUs
[    0.152093] smpboot: Max logical packages: 4
[    0.152093] smpboot: Total of 32 processors activated (217164.28 BogoMIPS)
[    0.155266] devtmpfs: initialized
[    0.155266] x86/mm: Memory block size: 128MB
[    0.157276] ACPI: PM: Registering ACPI NVS region [mem 0x77d98000-0x7825dfff] (5005312 bytes)
[    0.157276] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.157276] futex hash table entries: 32768 (order: 9, 2097152 bytes, linear)
[    0.157644] pinctrl core: initialized pinctrl subsystem
[    0.158094] PM: RTC time: 10:30:33, date: 2022-05-26
[    0.158354] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.158446] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.158456] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.158464] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.158484] audit: initializing netlink subsys (disabled)
[    0.158491] audit: type=2000 audit(1653561033.167:1): state=initialized audit_enabled=0 res=1
[    0.158491] thermal_sys: Registered thermal governor 'fair_share'
[    0.158491] thermal_sys: Registered thermal governor 'bang_bang'
[    0.158491] thermal_sys: Registered thermal governor 'step_wise'
[    0.158491] thermal_sys: Registered thermal governor 'user_space'
[    0.158491] cpuidle: using governor menu
[    0.159058] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.159223] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.159228] PCI: not using MMCONFIG
[    0.159232] PCI: Using configuration type 1 for base access
[    0.159233] PCI: Using configuration type 1 for extended access
[    0.161175] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.161175] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.161175] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.161175] cryptd: max_cpu_qlen set to 1000
[    0.162076] raid6: skipped pq benchmark and selected avx2x4
[    0.162076] raid6: using avx2x2 recovery algorithm
[    0.162192] ACPI: Added _OSI(Module Device)
[    0.162192] ACPI: Added _OSI(Processor Device)
[    0.162193] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.162194] ACPI: Added _OSI(Processor Aggregator Device)
[    0.162195] ACPI: Added _OSI(Linux-Dell-Video)
[    0.162196] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.162197] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.173852] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.178013] ACPI: EC: EC started
[    0.178014] ACPI: EC: interrupt blocked
[    0.178077] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.178079] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
[    0.178081] ACPI: Interpreter enabled
[    0.178096] ACPI: PM: (supports S0 S3 S4 S5)
[    0.178097] ACPI: Using IOAPIC for interrupt routing
[    0.178439] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.178472] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in ACPI motherboard resources
[    0.178481] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.178935] ACPI: Enabled 4 GPEs in block 00 to 1F
[    0.185625] ACPI: PM: Power Resource [P0SA]
[    0.185643] ACPI: PM: Power Resource [P3SA]
[    0.187164] ACPI: PM: Power Resource [P0SA]
[    0.187182] ACPI: PM: Power Resource [P3SA]
[    0.192076] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    0.192082] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.192145] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
[    0.192258] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.192353] acpi PNP0A08:00: host bridge window expanded to [io  0x0000-0x2fff]; [io  0x0000-0x2fff window] ignored
[    0.192477] PCI host bridge to bus 0000:00
[    0.192478] pci_bus 0000:00: root bus resource [io  0x0000-0x2fff]
[    0.192479] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.192481] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.192482] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.192483] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    0.192484] pci_bus 0000:00: root bus resource [mem 0xb8000000-0xd9ffffff window]
[    0.192485] pci_bus 0000:00: root bus resource [mem 0x880000000-0x443fffffff window]
[    0.192487] pci_bus 0000:00: root bus resource [bus 00-3f]
[    0.192496] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.192571] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.192653] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.192697] pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
[    0.192800] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.192905] pci 0000:00:01.2: [1022:1453] type 01 class 0x060400
[    0.193007] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[    0.193666] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.193724] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.193767] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.193868] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.193974] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.194037] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.194078] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.194610] pci 0000:00:07.1: enabling Extended Tags
[    0.194674] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.194775] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.194817] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.194844] pci 0000:00:08.1: enabling Extended Tags
[    0.194908] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.195033] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.195232] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.195434] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.195466] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.195498] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.195531] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.195564] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.195595] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.195631] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.195662] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.195694] pci 0000:00:19.0: [1022:1460] type 00 class 0x060000
[    0.195730] pci 0000:00:19.1: [1022:1461] type 00 class 0x060000
[    0.195766] pci 0000:00:19.2: [1022:1462] type 00 class 0x060000
[    0.195801] pci 0000:00:19.3: [1022:1463] type 00 class 0x060000
[    0.195837] pci 0000:00:19.4: [1022:1464] type 00 class 0x060000
[    0.195873] pci 0000:00:19.5: [1022:1465] type 00 class 0x060000
[    0.195908] pci 0000:00:19.6: [1022:1466] type 00 class 0x060000
[    0.195943] pci 0000:00:19.7: [1022:1467] type 00 class 0x060000
[    0.196648] pci 0000:01:00.0: [1022:43ba] type 00 class 0x0c0330
[    0.196663] pci 0000:01:00.0: reg 0x10: [mem 0xd98a0000-0xd98a7fff 64bit]
[    0.196740] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.196833] pci 0000:01:00.1: [1022:43b6] type 00 class 0x010601
[    0.196873] pci 0000:01:00.1: reg 0x24: [mem 0xd9880000-0xd989ffff]
[    0.196880] pci 0000:01:00.1: reg 0x30: [mem 0xd9800000-0xd987ffff pref]
[    0.196917] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.196984] pci 0000:01:00.2: [1022:43b1] type 01 class 0x060400
[    0.197060] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.197146] pci 0000:00:01.1: PCI bridge to [bus 01-08]
[    0.197149] pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
[    0.197151] pci 0000:00:01.1:   bridge window [mem 0xd9200000-0xd98fffff]
[    0.197231] pci 0000:02:00.0: [1022:43b4] type 01 class 0x060400
[    0.197320] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.197406] pci 0000:02:01.0: [1022:43b4] type 01 class 0x060400
[    0.197493] pci 0000:02:01.0: PME# supported from D3hot D3cold
[    0.197577] pci 0000:02:02.0: [1022:43b4] type 01 class 0x060400
[    0.197664] pci 0000:02:02.0: PME# supported from D3hot D3cold
[    0.197746] pci 0000:02:03.0: [1022:43b4] type 01 class 0x060400
[    0.197833] pci 0000:02:03.0: PME# supported from D3hot D3cold
[    0.197918] pci 0000:02:04.0: [1022:43b4] type 01 class 0x060400
[    0.198005] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.198096] pci 0000:02:09.0: [1022:43b4] type 01 class 0x060400
[    0.198183] pci 0000:02:09.0: PME# supported from D3hot D3cold
[    0.198276] pci 0000:01:00.2: PCI bridge to [bus 02-08]
[    0.198281] pci 0000:01:00.2:   bridge window [io  0x2000-0x2fff]
[    0.198284] pci 0000:01:00.2:   bridge window [mem 0xd9200000-0xd97fffff]
[    0.198346] pci 0000:03:00.0: [168c:003e] type 00 class 0x028000
[    0.198376] pci 0000:03:00.0: reg 0x10: [mem 0xd9400000-0xd95fffff 64bit]
[    0.198543] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.198726] pci 0000:02:00.0: PCI bridge to [bus 03]
[    0.198732] pci 0000:02:00.0:   bridge window [mem 0xd9400000-0xd95fffff]
[    0.198792] pci 0000:04:00.0: [1ae9:0310] type 00 class 0x028000
[    0.198816] pci 0000:04:00.0: reg 0x10: [mem 0xd9200000-0xd93fffff 64bit]
[    0.202044] pci 0000:02:01.0: PCI bridge to [bus 04]
[    0.202051] pci 0000:02:01.0:   bridge window [mem 0xd9200000-0xd93fffff]
[    0.202130] pci 0000:05:00.0: [8086:1539] type 00 class 0x020000
[    0.202160] pci 0000:05:00.0: reg 0x10: [mem 0xd9700000-0xd971ffff]
[    0.202193] pci 0000:05:00.0: reg 0x18: [io  0x2000-0x201f]
[    0.202209] pci 0000:05:00.0: reg 0x1c: [mem 0xd9720000-0xd9723fff]
[    0.202382] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[    0.202549] pci 0000:02:02.0: PCI bridge to [bus 05]
[    0.202553] pci 0000:02:02.0:   bridge window [io  0x2000-0x2fff]
[    0.202556] pci 0000:02:02.0:   bridge window [mem 0xd9700000-0xd97fffff]
[    0.202594] pci 0000:02:03.0: PCI bridge to [bus 06]
[    0.202637] pci 0000:02:04.0: PCI bridge to [bus 07]
[    0.202712] pci 0000:08:00.0: [1b21:2142] type 00 class 0x0c0330
[    0.202739] pci 0000:08:00.0: reg 0x10: [mem 0xd9600000-0xd9607fff 64bit]
[    0.202932] pci 0000:08:00.0: PME# supported from D0
[    0.202999] pci 0000:08:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x2 link at 0000:02:09.0 (capable of 15.752 Gb/s with 8.0 GT/s PCIe x2 link)
[    0.203074] pci 0000:02:09.0: PCI bridge to [bus 08]
[    0.203080] pci 0000:02:09.0:   bridge window [mem 0xd9600000-0xd96fffff]
[    0.203666] pci 0000:09:00.0: [144d:a804] type 00 class 0x010802
[    0.203680] pci 0000:09:00.0: reg 0x10: [mem 0xd9e00000-0xd9e03fff 64bit]
[    0.203834] pci 0000:00:01.2: PCI bridge to [bus 09]
[    0.203838] pci 0000:00:01.2:   bridge window [mem 0xd9e00000-0xd9efffff]
[    0.203903] pci 0000:0a:00.0: [10de:1b06] type 00 class 0x030000
[    0.203916] pci 0000:0a:00.0: reg 0x10: [mem 0xd8000000-0xd8ffffff]
[    0.203927] pci 0000:0a:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.203938] pci 0000:0a:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.203945] pci 0000:0a:00.0: reg 0x24: [io  0x1000-0x107f]
[    0.203952] pci 0000:0a:00.0: reg 0x30: [mem 0xd9000000-0xd907ffff pref]
[    0.203974] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.204079] pci 0000:0a:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:03.1 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.204118] pci 0000:0a:00.1: [10de:10ef] type 00 class 0x040300
[    0.204131] pci 0000:0a:00.1: reg 0x10: [mem 0xd9080000-0xd9083fff]
[    0.204272] pci 0000:00:03.1: PCI bridge to [bus 0a]
[    0.204275] pci 0000:00:03.1:   bridge window [io  0x1000-0x1fff]
[    0.204277] pci 0000:00:03.1:   bridge window [mem 0xd8000000-0xd90fffff]
[    0.204280] pci 0000:00:03.1:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.204676] pci 0000:0b:00.0: [1022:145a] type 00 class 0x130000
[    0.204697] pci 0000:0b:00.0: enabling Extended Tags
[    0.204767] pci 0000:0b:00.2: [1022:1456] type 00 class 0x108000
[    0.204777] pci 0000:0b:00.2: reg 0x18: [mem 0xd9b00000-0xd9bfffff]
[    0.204785] pci 0000:0b:00.2: reg 0x24: [mem 0xd9c00000-0xd9c01fff]
[    0.204790] pci 0000:0b:00.2: enabling Extended Tags
[    0.204870] pci 0000:0b:00.3: [1022:145c] type 00 class 0x0c0330
[    0.204879] pci 0000:0b:00.3: reg 0x10: [mem 0xd9a00000-0xd9afffff 64bit]
[    0.204897] pci 0000:0b:00.3: enabling Extended Tags
[    0.204922] pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold
[    0.204991] pci 0000:00:07.1: PCI bridge to [bus 0b]
[    0.204995] pci 0000:00:07.1:   bridge window [mem 0xd9a00000-0xd9cfffff]
[    0.205074] pci 0000:0c:00.0: [1022:1455] type 00 class 0x130000
[    0.205096] pci 0000:0c:00.0: enabling Extended Tags
[    0.205167] pci 0000:0c:00.2: [1022:7901] type 00 class 0x010601
[    0.205190] pci 0000:0c:00.2: reg 0x24: [mem 0xd9d08000-0xd9d08fff]
[    0.205197] pci 0000:0c:00.2: enabling Extended Tags
[    0.205224] pci 0000:0c:00.2: PME# supported from D3hot D3cold
[    0.205287] pci 0000:0c:00.3: [1022:1457] type 00 class 0x040300
[    0.205293] pci 0000:0c:00.3: reg 0x10: [mem 0xd9d00000-0xd9d07fff]
[    0.205310] pci 0000:0c:00.3: enabling Extended Tags
[    0.205336] pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
[    0.205404] pci 0000:00:08.1: PCI bridge to [bus 0c]
[    0.205408] pci 0000:00:08.1:   bridge window [mem 0xd9d00000-0xd9dfffff]
[    0.205757] ACPI: PCI Root Bridge [S0D1] (domain 0000 [bus 40-ff])
[    0.205761] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.205823] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug LTR DPC]
[    0.205936] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.205945] acpi PNP0A08:01: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[    0.206124] PCI host bridge to bus 0000:40
[    0.206126] pci_bus 0000:40: root bus resource [io  0x3000-0xffff window]
[    0.206127] pci_bus 0000:40: root bus resource [mem 0x80000000-0x823fffff window]
[    0.206128] pci_bus 0000:40: root bus resource [mem 0x4440000000-0x7fffffffff window]
[    0.206130] pci_bus 0000:40: root bus resource [bus 40-ff]
[    0.206137] pci 0000:40:00.0: [1022:1450] type 00 class 0x060000
[    0.206202] pci 0000:40:00.2: [1022:1451] type 00 class 0x080600
[    0.206286] pci 0000:40:01.0: [1022:1452] type 00 class 0x060000
[    0.206345] pci 0000:40:02.0: [1022:1452] type 00 class 0x060000
[    0.206404] pci 0000:40:03.0: [1022:1452] type 00 class 0x060000
[    0.206462] pci 0000:40:04.0: [1022:1452] type 00 class 0x060000
[    0.206525] pci 0000:40:07.0: [1022:1452] type 00 class 0x060000
[    0.206572] pci 0000:40:07.1: [1022:1454] type 01 class 0x060400
[    0.207015] pci 0000:40:07.1: enabling Extended Tags
[    0.207085] pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
[    0.207191] pci 0000:40:08.0: [1022:1452] type 00 class 0x060000
[    0.207237] pci 0000:40:08.1: [1022:1454] type 01 class 0x060400
[    0.207267] pci 0000:40:08.1: enabling Extended Tags
[    0.207337] pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
[    0.208051] pci 0000:41:00.0: [1022:145a] type 00 class 0x130000
[    0.208075] pci 0000:41:00.0: enabling Extended Tags
[    0.208154] pci 0000:41:00.2: [1022:1456] type 00 class 0x108000
[    0.208166] pci 0000:41:00.2: reg 0x18: [mem 0x82100000-0x821fffff]
[    0.208174] pci 0000:41:00.2: reg 0x24: [mem 0x82200000-0x82201fff]
[    0.208181] pci 0000:41:00.2: enabling Extended Tags
[    0.208270] pci 0000:41:00.3: [1022:145c] type 00 class 0x0c0330
[    0.208280] pci 0000:41:00.3: reg 0x10: [mem 0x82000000-0x820fffff 64bit]
[    0.208301] pci 0000:41:00.3: enabling Extended Tags
[    0.208329] pci 0000:41:00.3: PME# supported from D0 D3hot D3cold
[    0.208399] pci 0000:40:07.1: PCI bridge to [bus 41]
[    0.208403] pci 0000:40:07.1:   bridge window [mem 0x82000000-0x822fffff]
[    0.208484] pci 0000:42:00.0: [1022:1455] type 00 class 0x130000
[    0.208509] pci 0000:42:00.0: enabling Extended Tags
[    0.208590] pci 0000:42:00.2: [1022:7901] type 00 class 0x010601
[    0.208616] pci 0000:42:00.2: reg 0x24: [mem 0x82300000-0x82300fff]
[    0.208623] pci 0000:42:00.2: enabling Extended Tags
[    0.208655] pci 0000:42:00.2: PME# supported from D3hot D3cold
[    0.208727] pci 0000:40:08.1: PCI bridge to [bus 42]
[    0.208731] pci 0000:40:08.1:   bridge window [mem 0x82300000-0x823fffff]
[    0.208841] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.208886] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.208923] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.209033] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.209074] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.209107] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.209141] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.209174] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.209710] ACPI: EC: interrupt unblocked
[    0.209711] ACPI: EC: event unblocked
[    0.209718] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.209718] ACPI: EC: GPE=0x2
[    0.209719] ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC initialization complete
[    0.209721] ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
[    0.209803] iommu: Default domain type: Translated
[    0.209803] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.209803] pci 0000:0a:00.0: vgaarb: setting as boot VGA device
[    0.209803] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.209803] pci 0000:0a:00.0: vgaarb: bridge control possible
[    0.209803] vgaarb: loaded
[    0.210025] SCSI subsystem initialized
[    0.210072] libata version 3.00 loaded.
[    0.210072] ACPI: bus type USB registered
[    0.210072] usbcore: registered new interface driver usbfs
[    0.210078] usbcore: registered new interface driver hub
[    0.210147] usbcore: registered new device driver usb
[    0.213126] pps_core: LinuxPPS API ver. 1 registered
[    0.213127] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.213129] PTP clock support registered
[    0.213169] EDAC MC: Ver: 3.0.0
[    0.213235] Registered efivars operations
[    0.213264] NetLabel: Initializing
[    0.213265] NetLabel:  domain hash size = 128
[    0.213266] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.213278] NetLabel:  unlabeled traffic allowed by default
[    0.213280] mctp: management component transport protocol core
[    0.213281] NET: Registered PF_MCTP protocol family
[    0.213285] PCI: Using ACPI for IRQ routing
[    0.222385] PCI: pci_cache_line_size set to 64 bytes
[    0.222479] e820: reserve RAM buffer [mem 0x09df0000-0x0bffffff]
[    0.222481] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.222482] e820: reserve RAM buffer [mem 0x4a259018-0x4bffffff]
[    0.222483] e820: reserve RAM buffer [mem 0x4a279018-0x4bffffff]
[    0.222484] e820: reserve RAM buffer [mem 0x73119000-0x73ffffff]
[    0.222485] e820: reserve RAM buffer [mem 0x73b1e000-0x73ffffff]
[    0.222485] e820: reserve RAM buffer [mem 0x74a81000-0x77ffffff]
[    0.222486] e820: reserve RAM buffer [mem 0x76821000-0x77ffffff]
[    0.222487] e820: reserve RAM buffer [mem 0x87f300000-0x87fffffff]
[    0.222493] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.222493] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.224126] clocksource: Switched to clocksource tsc-early
[    0.237203] VFS: Disk quotas dquot_6.6.0
[    0.237252] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.237379] pnp: PnP ACPI init
[    0.237538] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.237631] system 00:01: [mem 0xefd00000-0xefd7ffff] could not be reserved
[    0.237817] system 00:03: [io  0x02a0-0x02af] has been reserved
[    0.237819] system 00:03: [io  0x0230-0x023f] has been reserved
[    0.237822] system 00:03: [io  0x0290-0x029f] has been reserved
[    0.238036] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.238038] system 00:04: [io  0x040b] has been reserved
[    0.238039] system 00:04: [io  0x04d6] has been reserved
[    0.238040] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    0.238041] system 00:04: [io  0x0c14] has been reserved
[    0.238042] system 00:04: [io  0x0c50-0x0c51] has been reserved
[    0.238043] system 00:04: [io  0x0c52] has been reserved
[    0.238044] system 00:04: [io  0x0c6c] has been reserved
[    0.238045] system 00:04: [io  0x0c6f] has been reserved
[    0.238046] system 00:04: [io  0x0cd0-0x0cd1] has been reserved
[    0.238047] system 00:04: [io  0x0cd2-0x0cd3] has been reserved
[    0.238048] system 00:04: [io  0x0cd4-0x0cd5] has been reserved
[    0.238049] system 00:04: [io  0x0cd6-0x0cd7] has been reserved
[    0.238050] system 00:04: [io  0x0cd8-0x0cdf] has been reserved
[    0.238051] system 00:04: [io  0x0800-0x089f] has been reserved
[    0.238052] system 00:04: [io  0x0b00-0x0b0f] has been reserved
[    0.238053] system 00:04: [io  0x0b20-0x0b3f] has been reserved
[    0.238054] system 00:04: [io  0x0900-0x090f] has been reserved
[    0.238055] system 00:04: [io  0x0910-0x091f] has been reserved
[    0.238057] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.238059] system 00:04: [mem 0xfec01000-0xfec01fff] has been reserved
[    0.238060] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.238062] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.238063] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.238064] system 00:04: [mem 0xfed61000-0xfed70fff] has been reserved
[    0.238066] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.238067] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    0.238193] system 00:05: [mem 0xb7b00000-0xb7b7ffff] has been reserved
[    0.238603] pnp: PnP ACPI: found 6 devices
[    0.244592] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.244696] NET: Registered PF_INET protocol family
[    0.244924] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.246743] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.246785] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.247044] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.247164] TCP: Hash tables configured (established 262144 bind 65536)
[    0.247501] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.247563] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.247618] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.247870] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.247875] NET: Registered PF_XDP protocol family
[    0.247899] pci 0000:02:00.0: PCI bridge to [bus 03]
[    0.247905] pci 0000:02:00.0:   bridge window [mem 0xd9400000-0xd95fffff]
[    0.247912] pci 0000:02:01.0: PCI bridge to [bus 04]
[    0.247915] pci 0000:02:01.0:   bridge window [mem 0xd9200000-0xd93fffff]
[    0.247922] pci 0000:02:02.0: PCI bridge to [bus 05]
[    0.247924] pci 0000:02:02.0:   bridge window [io  0x2000-0x2fff]
[    0.247928] pci 0000:02:02.0:   bridge window [mem 0xd9700000-0xd97fffff]
[    0.247934] pci 0000:02:03.0: PCI bridge to [bus 06]
[    0.247943] pci 0000:02:04.0: PCI bridge to [bus 07]
[    0.247952] pci 0000:02:09.0: PCI bridge to [bus 08]
[    0.247955] pci 0000:02:09.0:   bridge window [mem 0xd9600000-0xd96fffff]
[    0.247961] pci 0000:01:00.2: PCI bridge to [bus 02-08]
[    0.247963] pci 0000:01:00.2:   bridge window [io  0x2000-0x2fff]
[    0.247966] pci 0000:01:00.2:   bridge window [mem 0xd9200000-0xd97fffff]
[    0.247973] pci 0000:00:01.1: PCI bridge to [bus 01-08]
[    0.247974] pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
[    0.247976] pci 0000:00:01.1:   bridge window [mem 0xd9200000-0xd98fffff]
[    0.247980] pci 0000:00:01.2: PCI bridge to [bus 09]
[    0.247982] pci 0000:00:01.2:   bridge window [mem 0xd9e00000-0xd9efffff]
[    0.247987] pci 0000:00:03.1: PCI bridge to [bus 0a]
[    0.247989] pci 0000:00:03.1:   bridge window [io  0x1000-0x1fff]
[    0.247991] pci 0000:00:03.1:   bridge window [mem 0xd8000000-0xd90fffff]
[    0.247993] pci 0000:00:03.1:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.247997] pci 0000:00:07.1: PCI bridge to [bus 0b]
[    0.247999] pci 0000:00:07.1:   bridge window [mem 0xd9a00000-0xd9cfffff]
[    0.248003] pci 0000:00:08.1: PCI bridge to [bus 0c]
[    0.248005] pci 0000:00:08.1:   bridge window [mem 0xd9d00000-0xd9dfffff]
[    0.248010] pci_bus 0000:00: resource 4 [io  0x0000-0x2fff]
[    0.248012] pci_bus 0000:00: resource 5 [io  0x0000-0x03af window]
[    0.248013] pci_bus 0000:00: resource 6 [io  0x03e0-0x0cf7 window]
[    0.248014] pci_bus 0000:00: resource 7 [io  0x03b0-0x03df window]
[    0.248015] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    0.248016] pci_bus 0000:00: resource 9 [mem 0xb8000000-0xd9ffffff window]
[    0.248017] pci_bus 0000:00: resource 10 [mem 0x880000000-0x443fffffff window]
[    0.248019] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.248020] pci_bus 0000:01: resource 1 [mem 0xd9200000-0xd98fffff]
[    0.248021] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.248022] pci_bus 0000:02: resource 1 [mem 0xd9200000-0xd97fffff]
[    0.248023] pci_bus 0000:03: resource 1 [mem 0xd9400000-0xd95fffff]
[    0.248024] pci_bus 0000:04: resource 1 [mem 0xd9200000-0xd93fffff]
[    0.248026] pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
[    0.248026] pci_bus 0000:05: resource 1 [mem 0xd9700000-0xd97fffff]
[    0.248028] pci_bus 0000:08: resource 1 [mem 0xd9600000-0xd96fffff]
[    0.248029] pci_bus 0000:09: resource 1 [mem 0xd9e00000-0xd9efffff]
[    0.248030] pci_bus 0000:0a: resource 0 [io  0x1000-0x1fff]
[    0.248031] pci_bus 0000:0a: resource 1 [mem 0xd8000000-0xd90fffff]
[    0.248032] pci_bus 0000:0a: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.248033] pci_bus 0000:0b: resource 1 [mem 0xd9a00000-0xd9cfffff]
[    0.248035] pci_bus 0000:0c: resource 1 [mem 0xd9d00000-0xd9dfffff]
[    0.248089] pci 0000:40:07.1: PCI bridge to [bus 41]
[    0.248093] pci 0000:40:07.1:   bridge window [mem 0x82000000-0x822fffff]
[    0.248097] pci 0000:40:08.1: PCI bridge to [bus 42]
[    0.248099] pci 0000:40:08.1:   bridge window [mem 0x82300000-0x823fffff]
[    0.248103] pci_bus 0000:40: resource 4 [io  0x3000-0xffff window]
[    0.248104] pci_bus 0000:40: resource 5 [mem 0x80000000-0x823fffff window]
[    0.248105] pci_bus 0000:40: resource 6 [mem 0x4440000000-0x7fffffffff window]
[    0.248107] pci_bus 0000:41: resource 1 [mem 0x82000000-0x822fffff]
[    0.248108] pci_bus 0000:42: resource 1 [mem 0x82300000-0x823fffff]
[    0.248307] pci 0000:08:00.0: PME# does not work under D0, disabling it
[    0.248470] pci 0000:0a:00.1: D0 power state depends on 0000:0a:00.0
[    0.248733] PCI: CLS 64 bytes, default 64
[    0.248764] AMD-Vi: [Firmware Warn]: EFR mismatch. Use IVHD EFR (0xf77ef22294ada : 0x400f77ef22294ada).
[    0.248768] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.248786] Trying to unpack rootfs image as initramfs...
[    0.248805] pci 0000:00:01.0: Adding to iommu group 0
[    0.248818] pci 0000:00:01.1: Adding to iommu group 1
[    0.248831] pci 0000:00:01.2: Adding to iommu group 2
[    0.248847] pci 0000:00:02.0: Adding to iommu group 3
[    0.248862] pci 0000:00:03.0: Adding to iommu group 4
[    0.248873] pci 0000:00:03.1: Adding to iommu group 5
[    0.248887] pci 0000:00:04.0: Adding to iommu group 6
[    0.248902] pci 0000:00:07.0: Adding to iommu group 7
[    0.248911] pci 0000:00:07.1: Adding to iommu group 8
[    0.248927] pci 0000:00:08.0: Adding to iommu group 9
[    0.248936] pci 0000:00:08.1: Adding to iommu group 10
[    0.248955] pci 0000:00:14.0: Adding to iommu group 11
[    0.248965] pci 0000:00:14.3: Adding to iommu group 11
[    0.249014] pci 0000:00:18.0: Adding to iommu group 12
[    0.249023] pci 0000:00:18.1: Adding to iommu group 12
[    0.249032] pci 0000:00:18.2: Adding to iommu group 12
[    0.249041] pci 0000:00:18.3: Adding to iommu group 12
[    0.249050] pci 0000:00:18.4: Adding to iommu group 12
[    0.249059] pci 0000:00:18.5: Adding to iommu group 12
[    0.249068] pci 0000:00:18.6: Adding to iommu group 12
[    0.249077] pci 0000:00:18.7: Adding to iommu group 12
[    0.249125] pci 0000:00:19.0: Adding to iommu group 13
[    0.249135] pci 0000:00:19.1: Adding to iommu group 13
[    0.249145] pci 0000:00:19.2: Adding to iommu group 13
[    0.249154] pci 0000:00:19.3: Adding to iommu group 13
[    0.249163] pci 0000:00:19.4: Adding to iommu group 13
[    0.249172] pci 0000:00:19.5: Adding to iommu group 13
[    0.249182] pci 0000:00:19.6: Adding to iommu group 13
[    0.249192] pci 0000:00:19.7: Adding to iommu group 13
[    0.249217] pci 0000:01:00.0: Adding to iommu group 14
[    0.249228] pci 0000:01:00.1: Adding to iommu group 14
[    0.249239] pci 0000:01:00.2: Adding to iommu group 14
[    0.249243] pci 0000:02:00.0: Adding to iommu group 14
[    0.249247] pci 0000:02:01.0: Adding to iommu group 14
[    0.249251] pci 0000:02:02.0: Adding to iommu group 14
[    0.249255] pci 0000:02:03.0: Adding to iommu group 14
[    0.249259] pci 0000:02:04.0: Adding to iommu group 14
[    0.249263] pci 0000:02:09.0: Adding to iommu group 14
[    0.249266] pci 0000:03:00.0: Adding to iommu group 14
[    0.249271] pci 0000:04:00.0: Adding to iommu group 14
[    0.249275] pci 0000:05:00.0: Adding to iommu group 14
[    0.249278] pci 0000:08:00.0: Adding to iommu group 14
[    0.249289] pci 0000:09:00.0: Adding to iommu group 15
[    0.249308] pci 0000:0a:00.0: Adding to iommu group 16
[    0.249319] pci 0000:0a:00.1: Adding to iommu group 16
[    0.249330] pci 0000:0b:00.0: Adding to iommu group 17
[    0.249345] pci 0000:0b:00.2: Adding to iommu group 18
[    0.249357] pci 0000:0b:00.3: Adding to iommu group 19
[    0.249368] pci 0000:0c:00.0: Adding to iommu group 20
[    0.249378] pci 0000:0c:00.2: Adding to iommu group 21
[    0.249390] pci 0000:0c:00.3: Adding to iommu group 22
[    0.267593] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.267598] AMD-Vi: Extended features (0x400f77ef22294ada): PPR NX GT IA GA PC GA_vAPIC
[    0.267766] software IO TLB: tearing down default memory pool
[    0.269627] amd_uncore: 4  amd_df counters detected
[    0.269653] amd_uncore: 6  amd_l3 counters detected
[    0.270393] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.274314] Initialise system trusted keyrings
[    0.274326] Key type blacklist registered
[    0.274374] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.275734] zbud: loaded
[    0.276670] integrity: Platform Keyring initialized
[    0.284949] NET: Registered PF_ALG protocol family
[    0.284952] xor: automatically using best checksumming function   avx      
[    0.284954] Key type asymmetric registered
[    0.284955] Asymmetric key parser 'x509' registered
[    0.466609] Freeing initrd memory: 22272K
[    0.469664] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    0.469695] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.469782] io scheduler mq-deadline registered
[    0.469784] io scheduler kyber registered
[    0.469829] io scheduler bfq registered
[    0.471017] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.473647] pcieport 0000:00:01.1: PME: Signaling with IRQ 29
[    0.473736] pcieport 0000:00:01.1: AER: enabled with IRQ 29
[    0.473793] pcieport 0000:00:01.1: DPC: enabled with IRQ 29
[    0.473794] pcieport 0000:00:01.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
[    0.474616] pcieport 0000:00:01.2: PME: Signaling with IRQ 30
[    0.474686] pcieport 0000:00:01.2: AER: enabled with IRQ 30
[    0.474740] pcieport 0000:00:01.2: DPC: enabled with IRQ 30
[    0.474742] pcieport 0000:00:01.2: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
[    0.475528] pcieport 0000:00:03.1: PME: Signaling with IRQ 31
[    0.475605] pcieport 0000:00:03.1: AER: enabled with IRQ 31
[    0.475662] pcieport 0000:00:03.1: DPC: enabled with IRQ 31
[    0.475663] pcieport 0000:00:03.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
[    0.475878] pcieport 0000:00:07.1: PME: Signaling with IRQ 32
[    0.475948] pcieport 0000:00:07.1: AER: enabled with IRQ 32
[    0.476742] pcieport 0000:00:08.1: PME: Signaling with IRQ 34
[    0.476814] pcieport 0000:00:08.1: AER: enabled with IRQ 34
[    0.478068] pcieport 0000:40:07.1: PME: Signaling with IRQ 44
[    0.478145] pcieport 0000:40:07.1: AER: enabled with IRQ 44
[    0.478399] pcieport 0000:40:08.1: PME: Signaling with IRQ 46
[    0.478466] pcieport 0000:40:08.1: AER: enabled with IRQ 46
[    0.479035] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.479193] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.479209] ACPI: button: Power Button [PWRB]
[    0.479235] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.479282] ACPI: button: Power Button [PWRF]
[    0.479317] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479319] ACPI: \_PR_.C000: Found 2 idle states
[    0.479390] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479395] ACPI: \_PR_.C002: Found 2 idle states
[    0.479491] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479495] ACPI: \_PR_.C004: Found 2 idle states
[    0.479589] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479594] ACPI: \_PR_.C006: Found 2 idle states
[    0.479690] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479700] ACPI: \_PR_.C008: Found 2 idle states
[    0.479798] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479807] ACPI: \_PR_.C00A: Found 2 idle states
[    0.479909] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.479917] ACPI: \_PR_.C00C: Found 2 idle states
[    0.480015] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480024] ACPI: \_PR_.C00E: Found 2 idle states
[    0.480118] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480128] ACPI: \_PR_.C010: Found 2 idle states
[    0.480225] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480234] ACPI: \_PR_.C012: Found 2 idle states
[    0.480328] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480337] ACPI: \_PR_.C014: Found 2 idle states
[    0.480439] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480448] ACPI: \_PR_.C016: Found 2 idle states
[    0.480539] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480548] ACPI: \_PR_.C018: Found 2 idle states
[    0.480643] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480651] ACPI: \_PR_.C01A: Found 2 idle states
[    0.480740] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480749] ACPI: \_PR_.C01C: Found 2 idle states
[    0.480845] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480854] ACPI: \_PR_.C01E: Found 2 idle states
[    0.480913] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480918] ACPI: \_PR_.C001: Found 2 idle states
[    0.480970] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.480975] ACPI: \_PR_.C003: Found 2 idle states
[    0.481062] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481066] ACPI: \_PR_.C005: Found 2 idle states
[    0.481161] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481166] ACPI: \_PR_.C007: Found 2 idle states
[    0.481258] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481267] ACPI: \_PR_.C009: Found 2 idle states
[    0.481363] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481371] ACPI: \_PR_.C00B: Found 2 idle states
[    0.481426] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481434] ACPI: \_PR_.C00D: Found 2 idle states
[    0.481525] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481531] ACPI: \_PR_.C00F: Found 2 idle states
[    0.481626] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481634] ACPI: \_PR_.C011: Found 2 idle states
[    0.481733] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481741] ACPI: \_PR_.C013: Found 2 idle states
[    0.481840] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481849] ACPI: \_PR_.C015: Found 2 idle states
[    0.481907] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.481916] ACPI: \_PR_.C017: Found 2 idle states
[    0.482004] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.482013] ACPI: \_PR_.C019: Found 2 idle states
[    0.482106] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.482115] ACPI: \_PR_.C01B: Found 2 idle states
[    0.482215] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.482223] ACPI: \_PR_.C01D: Found 2 idle states
[    0.482314] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.482322] ACPI: \_PR_.C01F: Found 2 idle states
[    0.482672] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.482755] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.484128] Non-volatile memory driver v1.3
[    0.484152] Linux agpgart interface v0.103
[    0.485037] ACPI: bus type drm_connector registered
[    0.486755] ahci 0000:01:00.1: version 3.0
[    0.486849] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[    0.486902] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    0.486904] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[    0.487446] scsi host0: ahci
[    0.487578] scsi host1: ahci
[    0.487679] scsi host2: ahci
[    0.487780] scsi host3: ahci
[    0.487882] scsi host4: ahci
[    0.487980] scsi host5: ahci
[    0.488081] scsi host6: ahci
[    0.488184] scsi host7: ahci
[    0.488219] ata1: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880100 irq 47
[    0.488222] ata2: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880180 irq 47
[    0.488223] ata3: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880200 irq 47
[    0.488225] ata4: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880280 irq 47
[    0.488226] ata5: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880300 irq 47
[    0.488228] ata6: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880380 irq 47
[    0.488229] ata7: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880400 irq 47
[    0.488231] ata8: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880480 irq 47
[    0.488361] ahci 0000:0c:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.488364] ahci 0000:0c:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[    0.488524] scsi host8: ahci
[    0.488561] ata9: SATA max UDMA/133 abar m4096@0xd9d08000 port 0xd9d08100 irq 49
[    0.488674] ahci 0000:42:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.488677] ahci 0000:42:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
[    0.488812] scsi host9: ahci
[    0.488850] ata10: SATA max UDMA/133 abar m4096@0x82300000 port 0x82300100 irq 51
[    0.489045] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.489048] ehci-pci: EHCI PCI platform driver
[    0.489060] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.489062] ohci-pci: OHCI PCI platform driver
[    0.489070] uhci_hcd: USB Universal Host Controller Interface driver
[    0.489151] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    0.489190] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    0.544543] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000008000410
[    0.544709] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.544712] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.544713] usb usb1: Product: xHCI Host Controller
[    0.544714] usb usb1: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.544715] usb usb1: SerialNumber: 0000:01:00.0
[    0.544806] hub 1-0:1.0: USB hub found
[    0.544821] hub 1-0:1.0: 14 ports detected
[    0.545114] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    0.545142] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    0.545144] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.545170] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.545186] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    0.545188] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.545189] usb usb2: Product: xHCI Host Controller
[    0.545190] usb usb2: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.545191] usb usb2: SerialNumber: 0000:01:00.0
[    0.545253] hub 2-0:1.0: USB hub found
[    0.545264] hub 2-0:1.0: 8 ports detected
[    0.545505] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    0.545537] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 3
[    0.600402] xhci_hcd 0000:08:00.0: hcc params 0x0200ef80 hci version 0x110 quirks 0x0000000000800010
[    0.601022] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.601024] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.601025] usb usb3: Product: xHCI Host Controller
[    0.601026] usb usb3: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.601027] usb usb3: SerialNumber: 0000:08:00.0
[    0.601102] hub 3-0:1.0: USB hub found
[    0.601109] hub 3-0:1.0: 2 ports detected
[    0.601221] xhci_hcd 0000:08:00.0: xHCI Host Controller
[    0.601253] xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 4
[    0.601255] xhci_hcd 0000:08:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.601282] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.601297] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    0.601299] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.601300] usb usb4: Product: xHCI Host Controller
[    0.601301] usb usb4: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.601302] usb usb4: SerialNumber: 0000:08:00.0
[    0.601365] hub 4-0:1.0: USB hub found
[    0.601372] hub 4-0:1.0: 2 ports detected
[    0.601500] xhci_hcd 0000:0b:00.3: xHCI Host Controller
[    0.601532] xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 5
[    0.601625] xhci_hcd 0000:0b:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000040000410
[    0.601745] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.601747] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.601748] usb usb5: Product: xHCI Host Controller
[    0.601749] usb usb5: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.601750] usb usb5: SerialNumber: 0000:0b:00.3
[    0.601814] hub 5-0:1.0: USB hub found
[    0.601819] hub 5-0:1.0: 4 ports detected
[    0.601965] xhci_hcd 0000:0b:00.3: xHCI Host Controller
[    0.601994] xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 6
[    0.601997] xhci_hcd 0000:0b:00.3: Host supports USB 3.0 SuperSpeed
[    0.602008] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.602022] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    0.602024] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.602025] usb usb6: Product: xHCI Host Controller
[    0.602025] usb usb6: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.602026] usb usb6: SerialNumber: 0000:0b:00.3
[    0.602086] hub 6-0:1.0: USB hub found
[    0.602092] hub 6-0:1.0: 4 ports detected
[    0.602246] xhci_hcd 0000:41:00.3: xHCI Host Controller
[    0.602276] xhci_hcd 0000:41:00.3: new USB bus registered, assigned bus number 7
[    0.602367] xhci_hcd 0000:41:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000040000410
[    0.602478] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17
[    0.602480] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.602481] usb usb7: Product: xHCI Host Controller
[    0.602482] usb usb7: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.602483] usb usb7: SerialNumber: 0000:41:00.3
[    0.602546] hub 7-0:1.0: USB hub found
[    0.602553] hub 7-0:1.0: 4 ports detected
[    0.602699] xhci_hcd 0000:41:00.3: xHCI Host Controller
[    0.602726] xhci_hcd 0000:41:00.3: new USB bus registered, assigned bus number 8
[    0.602728] xhci_hcd 0000:41:00.3: Host supports USB 3.0 SuperSpeed
[    0.602739] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.602754] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17
[    0.602755] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.602756] usb usb8: Product: xHCI Host Controller
[    0.602757] usb usb8: Manufacturer: Linux 5.17.9-300.fc36.x86_64 xhci-hcd
[    0.602758] usb usb8: SerialNumber: 0000:41:00.3
[    0.602819] hub 8-0:1.0: USB hub found
[    0.602825] hub 8-0:1.0: 4 ports detected
[    0.602957] usbcore: registered new interface driver usbserial_generic
[    0.602960] usbserial: USB Serial support registered for generic
[    0.602975] i8042: PNP: No PS/2 controller found.
[    0.603002] mousedev: PS/2 mouse device common for all mice
[    0.603095] rtc_cmos 00:02: RTC can wake from S4
[    0.603493] rtc_cmos 00:02: registered as rtc0
[    0.603560] rtc_cmos 00:02: setting system clock to 2022-05-26T10:30:34 UTC (1653561034)
[    0.603572] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.603589] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    0.603608] device-mapper: uevent: version 1.0.3
[    0.603669] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    0.604144] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[    0.604559] fbcon: Deferring console take-over
[    0.604561] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    0.604658] hid: raw HID events driver (C) Jiri Kosina
[    0.604685] usbcore: registered new interface driver usbhid
[    0.604686] usbhid: USB HID core driver
[    0.604871] drop_monitor: Initializing network drop monitor service
[    0.604943] Initializing XFRM netlink socket
[    0.605050] NET: Registered PF_INET6 protocol family
[    0.608113] Segment Routing with IPv6
[    0.608114] RPL Segment Routing with IPv6
[    0.608120] In-situ OAM (IOAM) with IPv6
[    0.608135] mip6: Mobile IPv6
[    0.608136] NET: Registered PF_PACKET protocol family
[    0.609856] microcode: CPU0: patch_level=0x08001137
[    0.609865] microcode: CPU1: patch_level=0x08001137
[    0.609871] microcode: CPU2: patch_level=0x08001137
[    0.609878] microcode: CPU3: patch_level=0x08001137
[    0.609886] microcode: CPU4: patch_level=0x08001137
[    0.609894] microcode: CPU5: patch_level=0x08001137
[    0.609901] microcode: CPU6: patch_level=0x08001137
[    0.609909] microcode: CPU7: patch_level=0x08001137
[    0.609915] microcode: CPU8: patch_level=0x08001137
[    0.609925] microcode: CPU9: patch_level=0x08001137
[    0.609934] microcode: CPU10: patch_level=0x08001137
[    0.609943] microcode: CPU11: patch_level=0x08001137
[    0.609952] microcode: CPU12: patch_level=0x08001137
[    0.609961] microcode: CPU13: patch_level=0x08001137
[    0.609969] microcode: CPU14: patch_level=0x08001137
[    0.609976] microcode: CPU15: patch_level=0x08001137
[    0.609982] microcode: CPU16: patch_level=0x08001137
[    0.609988] microcode: CPU17: patch_level=0x08001137
[    0.609994] microcode: CPU18: patch_level=0x08001137
[    0.609999] microcode: CPU19: patch_level=0x08001137
[    0.610006] microcode: CPU20: patch_level=0x08001137
[    0.610013] microcode: CPU21: patch_level=0x08001137
[    0.610020] microcode: CPU22: patch_level=0x08001137
[    0.610027] microcode: CPU23: patch_level=0x08001137
[    0.610035] microcode: CPU24: patch_level=0x08001137
[    0.610043] microcode: CPU25: patch_level=0x08001137
[    0.610052] microcode: CPU26: patch_level=0x08001137
[    0.610060] microcode: CPU27: patch_level=0x08001137
[    0.610067] microcode: CPU28: patch_level=0x08001137
[    0.610076] microcode: CPU29: patch_level=0x08001137
[    0.610084] microcode: CPU30: patch_level=0x08001137
[    0.610092] microcode: CPU31: patch_level=0x08001137
[    0.610097] microcode: Microcode Update Driver: v2.2.
[    0.610101] IPI shorthand broadcast: enabled
[    0.610107] AVX2 version of gcm_enc/dec engaged.
[    0.610629] AES CTR mode by8 optimization enabled
[    0.610974] sched_clock: Marking stable (619951007, -8988176)->(684573789, -73610958)
[    0.612122] registered taskstats version 1
[    0.612835] Loading compiled-in X.509 certificates
[    0.634056] Loaded X.509 cert 'Fedora kernel signing key: 7a6ef94c6c0be86b066a589705c6e08a4e1412f3'
[    0.636483] zswap: loaded using pool lzo/zbud
[    0.636810] page_owner is disabled
[    0.636867] Key type ._fscrypt registered
[    0.636868] Key type .fscrypt registered
[    0.636869] Key type fscrypt-provisioning registered
[    0.637206] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    0.637218] Key type big_key registered
[    0.639680] Key type encrypted registered
[    0.640882] integrity: Loading X.509 certificate: UEFI:db
[    0.661605] integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2'
[    0.661606] integrity: Loading X.509 certificate: UEFI:db
[    0.661737] integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071'
[    0.661738] integrity: Loading X.509 certificate: UEFI:db
[    0.661757] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.661758] integrity: Loading X.509 certificate: UEFI:db
[    0.661772] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.661773] integrity: Loading X.509 certificate: UEFI:db
[    0.661907] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
[    0.662989] ima: No TPM chip found, activating TPM-bypass!
[    0.662991] Loading compiled-in module X.509 certificates
[    0.663397] Loaded X.509 cert 'Fedora kernel signing key: 7a6ef94c6c0be86b066a589705c6e08a4e1412f3'
[    0.663399] ima: Allocated hash algorithm: sha256
[    0.663407] ima: No architecture policies found
[    0.663416] evm: Initialising EVM extended attributes:
[    0.663416] evm: security.selinux
[    0.663417] evm: security.SMACK64 (disabled)
[    0.663418] evm: security.SMACK64EXEC (disabled)
[    0.663418] evm: security.SMACK64TRANSMUTE (disabled)
[    0.663419] evm: security.SMACK64MMAP (disabled)
[    0.663419] evm: security.apparmor (disabled)
[    0.663420] evm: security.ima
[    0.663420] evm: security.capability
[    0.663421] evm: HMAC attrs: 0x1
[    0.681202] alg: No test for 842 (842-scomp)
[    0.681246] alg: No test for 842 (842-generic)
[    0.770263] PM:   Magic number: 6:485:528
[    0.770538] RAS: Correctable Errors collector initialized.
[    0.796222] ata9: SATA link down (SStatus 0 SControl 300)
[    0.796608] ata1: SATA link down (SStatus 0 SControl 300)
[    0.796881] ata10: SATA link down (SStatus 0 SControl 300)
[    0.878363] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    1.108285] ata2: SATA link down (SStatus 0 SControl 300)
[    1.161966] usb 1-2: New USB device found, idVendor=0b05, idProduct=1868, bcdDevice= 0.01
[    1.161970] usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.302023] tsc: Refined TSC clocksource calibration: 3393.625 MHz
[    1.302057] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30eac89f71e, max_idle_ns: 440795373609 ns
[    1.302288] clocksource: Switched to clocksource tsc
[    1.348046] usb 1-9: new full-speed USB device number 3 using xhci_hcd
[    1.419662] ata3: SATA link down (SStatus 0 SControl 300)
[    1.729041] usb 1-9: New USB device found, idVendor=046d, idProduct=c534, bcdDevice=29.01
[    1.729044] usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.729045] usb 1-9: Product: USB Receiver
[    1.729047] usb 1-9: Manufacturer: Logitech
[    1.752907] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-9/1-9:1.0/0003:046D:C534.0001/input/input2
[    1.804328] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:01:00.0-9/input0
[    1.830042] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/input/input3
[    1.830341] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/input/input4
[    1.882093] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/input/input5
[    1.882169] hid-generic 0003:046D:C534.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:01:00.0-9/input1
[    1.886042] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.886543] ata4.00: ATA-8: KINGSTON SNV425S2128GB, D100309a, max UDMA/100
[    1.886546] ata4.00: 250069680 sectors, multi 16: LBA48
[    1.887044] ata4.00: configured for UDMA/100
[    1.887290] scsi 3:0:0:0: Direct-Access     ATA      KINGSTON SNV425S 309a PQ: 0 ANSI: 5
[    1.887418] scsi 3:0:0:0: Attached scsi generic sg0 type 0
[    1.887550] sd 3:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    1.887559] sd 3:0:0:0: [sda] Write Protect is off
[    1.887562] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.887574] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.900018]  sda: sda1 sda2 sda3
[    1.906133] sd 3:0:0:0: [sda] Attached SCSI disk
[    2.058043] usb 1-10: new full-speed USB device number 4 using xhci_hcd
[    2.195598] ata5: SATA link down (SStatus 0 SControl 300)
[    2.428816] usb 1-10: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.01
[    2.428820] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.428821] usb 1-10: Product: USB Receiver
[    2.428822] usb 1-10: Manufacturer: Logitech
[    2.447004] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.0/0003:046D:C52B.0003/input/input8
[    2.498149] hid-generic 0003:046D:C52B.0003: input,hidraw2: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:01:00.0-10/input0
[    2.499588] ata6: SATA link down (SStatus 0 SControl 300)
[    2.506062] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.1/0003:046D:C52B.0004/input/input9
[    2.506330] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.1/0003:046D:C52B.0004/input/input10
[    2.558096] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.1/0003:046D:C52B.0004/input/input11
[    2.558164] hid-generic 0003:046D:C52B.0004: input,hiddev97,hidraw3: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:01:00.0-10/input1
[    2.565214] hid-generic 0003:046D:C52B.0005: hiddev98,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:01:00.0-10/input2
[    2.741050] usb 1-11: new full-speed USB device number 5 using xhci_hcd
[    3.110175] usb 1-11: New USB device found, idVendor=0b05, idProduct=1867, bcdDevice= 2.00
[    3.110178] usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.110179] usb 1-11: Product: AURA Custom Human interface
[    3.110180] usb 1-11: Manufacturer: AsusTek Computer Inc.
[    3.110181] usb 1-11: SerialNumber: 00000000001A
[    3.125183] hid-generic 0003:0B05:1867.0006: hiddev99,hidraw5: USB HID v1.11 Device [AsusTek Computer Inc. AURA Custom Human interface] on usb-0000:01:00.0-11/input0
[    3.534019] ata7: failed to resume link (SControl 0)
[    3.534030] ata7: SATA link down (SStatus 0 SControl 0)
[    4.574033] ata8: failed to resume link (SControl 0)
[    4.574043] ata8: SATA link down (SStatus 0 SControl 0)
[    4.576147] Freeing unused decrypted memory: 2036K
[    4.576728] Freeing unused kernel image (initmem) memory: 2708K
[    4.576735] Write protecting the kernel read-only data: 30720k
[    4.577547] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    4.577976] Freeing unused kernel image (rodata/data gap) memory: 1108K
[    4.615658] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    4.615662] rodata_test: all tests were successful
[    4.615668] Run /init as init process
[    4.615670]   with arguments:
[    4.615671]     /init
[    4.615672]     rhgb
[    4.615672]   with environment:
[    4.615673]     HOME=/
[    4.615674]     TERM=linux
[    4.615674]     BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.17.9-300.fc36.x86_64
[    4.691447] systemd[1]: systemd v250.3-8.fc36 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    4.704087] systemd[1]: Detected architecture x86-64.
[    4.704089] systemd[1]: Running in initial RAM disk.
[    4.704114] systemd[1]: Hostname set to <srv>.
[    4.721889] systemd[1]: Failed to open libbpf, LSM BPF is not supported: Operation not supported
[    4.762646] systemd[1]: Queued start job for default target initrd.target.
[    4.762746] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
[    4.762786] systemd[1]: Reached target local-fs.target - Local File Systems.
[    4.762799] systemd[1]: Reached target slices.target - Slice Units.
[    4.762811] systemd[1]: Reached target swap.target - Swaps.
[    4.762820] systemd[1]: Reached target timers.target - Timer Units.
[    4.762924] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    4.762997] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    4.763074] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    4.763152] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    4.763205] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    4.763216] systemd[1]: Reached target sockets.target - Socket Units.
[    4.764897] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    4.764935] systemd[1]: memstrack.service - Memstrack Anylazing Service was skipped because all trigger condition checks failed.
[    4.767166] systemd[1]: Starting systemd-journald.service - Journal Service...
[    4.767991] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    4.768689] systemd[1]: Starting systemd-vconsole-setup.service - Setup Virtual Console...
[    4.769153] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    4.769964] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[    4.774305] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[    4.776693] IPMI message handler: version 39.2
[    4.778638] ipmi device interface
[    4.779527] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    4.779574] audit: type=1130 audit(1653561038.674:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.780311] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    4.784137] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[    4.784179] audit: type=1130 audit(1653561038.679:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.807692] systemd[1]: Finished systemd-vconsole-setup.service - Setup Virtual Console.
[    4.807736] audit: type=1130 audit(1653561038.702:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.807787] systemd[1]: dracut-cmdline-ask.service - dracut ask for additional cmdline parameters was skipped because all trigger condition checks failed.
[    4.808629] systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
[    4.829664] systemd[1]: Started systemd-journald.service - Journal Service.
[    4.829735] audit: type=1130 audit(1653561038.724:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.835897] audit: type=1130 audit(1653561038.730:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.854152] audit: type=1130 audit(1653561038.749:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.870123] audit: type=1130 audit(1653561038.765:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.871256] audit: type=1334 audit(1653561038.766:9): prog-id=6 op=LOAD
[    4.871536] audit: type=1334 audit(1653561038.766:10): prog-id=7 op=LOAD
[    5.001613] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[    5.027393] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    5.027487] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    5.027588] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    5.032422] ccp 0000:0b:00.2: enabling device (0000 -> 0002)
[    5.033067] ccp 0000:0b:00.2: ccp enabled
[    5.033106] ccp 0000:41:00.2: enabling device (0000 -> 0002)
[    5.033593] ccp 0000:41:00.2: ccp enabled
[    5.041035] nvme nvme0: pci function 0000:09:00.0
[    5.062215] nvme nvme0: 7/0/0 default/read/poll queues
[    5.066966]  nvme0n1: p1 p2 p3 p4
[    5.133265] logitech-djreceiver 0003:046D:C534.0001: hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:01:00.0-9/input0
[    5.150353] MXM: GUID detected in BIOS
[    5.173347] nouveau 0000:0a:00.0: vgaarb: deactivate vga console
[    5.173396] nouveau 0000:0a:00.0: NVIDIA GP102 (132000a1)
[    5.249309] logitech-djreceiver 0003:046D:C534.0002: hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:01:00.0-9/input1
[    5.292599] nouveau 0000:0a:00.0: bios: version 86.02.39.00.d2
[    5.294981] nouveau 0000:0a:00.0: pmu: firmware unavailable
[    5.302445] nouveau 0000:0a:00.0: fb: 11264 MiB GDDR5X
[    5.305107] logitech-djreceiver 0003:046D:C534.0002: device of type eQUAD nano Lite (0x0a) connected on slot 2
[    5.305343] input: Logitech Wireless Mouse PID:4054 Mouse as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/0003:046D:4054.0007/input/input13
[    5.330431] nouveau 0000:0a:00.0: DRM: VRAM: 11264 MiB
[    5.330434] nouveau 0000:0a:00.0: DRM: GART: 536870912 MiB
[    5.330436] nouveau 0000:0a:00.0: DRM: BIT table 'A' not found
[    5.330437] nouveau 0000:0a:00.0: DRM: BIT table 'L' not found
[    5.330439] nouveau 0000:0a:00.0: DRM: TMDS table version 2.0
[    5.330440] nouveau 0000:0a:00.0: DRM: DCB version 4.1
[    5.330442] nouveau 0000:0a:00.0: DRM: DCB outp 00: 01000f42 00020030
[    5.330444] nouveau 0000:0a:00.0: DRM: DCB outp 01: 04811f96 04600020
[    5.330445] nouveau 0000:0a:00.0: DRM: DCB outp 02: 04011f92 00020020
[    5.330447] nouveau 0000:0a:00.0: DRM: DCB outp 03: 04822f86 04600010
[    5.330448] nouveau 0000:0a:00.0: DRM: DCB outp 04: 04022f82 00020010
[    5.330449] nouveau 0000:0a:00.0: DRM: DCB outp 05: 02033f72 00020010
[    5.330450] nouveau 0000:0a:00.0: DRM: DCB outp 06: 02044f62 00020020
[    5.330451] nouveau 0000:0a:00.0: DRM: DCB conn 00: 00001031
[    5.330452] nouveau 0000:0a:00.0: DRM: DCB conn 01: 02000146
[    5.330453] nouveau 0000:0a:00.0: DRM: DCB conn 02: 01000246
[    5.330454] nouveau 0000:0a:00.0: DRM: DCB conn 03: 00010361
[    5.330455] nouveau 0000:0a:00.0: DRM: DCB conn 04: 00020461
[    5.330802] nouveau 0000:0a:00.0: DRM: MM: using COPY for buffer copies
[    5.378263] hid-generic 0003:046D:4054.0007: input,hidraw2: USB HID v1.11 Mouse [Logitech Wireless Mouse PID:4054] on usb-0000:01:00.0-9/input1:2
[    5.426369] logitech-djreceiver 0003:046D:C52B.0005: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:01:00.0-10/input2
[    5.535621] input: Logitech Wireless Device PID:404d Keyboard as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0005/0003:046D:404D.0008/input/input17
[    5.535726] input: Logitech Wireless Device PID:404d Mouse as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0005/0003:046D:404D.0008/input/input18
[    5.535783] hid-generic 0003:046D:404D.0008: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:404d] on usb-0000:01:00.0-10/input2:1
[    5.585182] input: Logitech Wireless Mouse as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-9/1-9:1.1/0003:046D:C534.0002/0003:046D:4054.0007/input/input22
[    5.585353] logitech-hidpp-device 0003:046D:4054.0007: input,hidraw2: USB HID v1.11 Mouse [Logitech Wireless Mouse] on usb-0000:01:00.0-9/input1:2
[    5.693256] input: Logitech K400 Plus as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0005/0003:046D:404D.0008/input/input23
[    5.693365] logitech-hidpp-device 0003:046D:404D.0008: input,hidraw4: USB HID v1.11 Keyboard [Logitech K400 Plus] on usb-0000:01:00.0-10/input2:1
[    6.173424] nouveau 0000:0a:00.0: DRM: allocated 1920x1080 fb: 0x200000, bo 00000000a13d10ba
[    6.174398] fbcon: nouveaudrmfb (fb0) is primary device
[    6.174401] fbcon: Deferring console take-over
[    6.174404] nouveau 0000:0a:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[    6.181501] [drm] Initialized nouveau 1.3.1 20120801 for 0000:0a:00.0 on minor 0
[    6.371074] kauditd_printk_skb: 4 callbacks suppressed
[    6.371077] audit: type=1130 audit(1653561040.266:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.401338] audit: type=1130 audit(1653561040.296:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.833952] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled
[    6.837192] XFS (dm-0): Mounting V5 Filesystem
[    6.870514] XFS (dm-0): Ending clean mount
[    7.027713] audit: type=1334 audit(1653561040.922:17): prog-id=9 op=LOAD
[    7.027719] audit: type=1334 audit(1653561040.922:18): prog-id=0 op=UNLOAD
[    7.028041] audit: type=1334 audit(1653561040.923:19): prog-id=10 op=LOAD
[    7.028401] audit: type=1334 audit(1653561040.923:20): prog-id=11 op=LOAD
[    7.028412] audit: type=1334 audit(1653561040.923:21): prog-id=0 op=UNLOAD
[    7.028416] audit: type=1334 audit(1653561040.923:22): prog-id=0 op=UNLOAD
[    7.029298] audit: type=1334 audit(1653561040.924:23): prog-id=12 op=LOAD
[    7.029310] audit: type=1334 audit(1653561040.924:24): prog-id=0 op=UNLOAD
[    7.129301] systemd-journald[443]: Received SIGTERM from PID 1 (systemd).
[    7.336570] SELinux:  policy capability network_peer_controls=1
[    7.336575] SELinux:  policy capability open_perms=1
[    7.336576] SELinux:  policy capability extended_socket_class=1
[    7.336577] SELinux:  policy capability always_check_network=0
[    7.336578] SELinux:  policy capability cgroup_seclabel=1
[    7.336579] SELinux:  policy capability nnp_nosuid_transition=1
[    7.336579] SELinux:  policy capability genfs_seclabel_symlinks=1
[    7.336580] SELinux:  policy capability ioctl_skip_cloexec=0
[    7.384524] systemd[1]: Successfully loaded SELinux policy in 97.148ms.
[    7.403336] systemd[1]: RTC configured in localtime, applying delta of 180 minutes to system time.
[    7.438927] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 30.362ms.
[    7.447593] systemd[1]: systemd v250.3-8.fc36 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    7.459089] systemd[1]: Detected architecture x86-64.
[    7.890088] systemd[1]: LSM BPF program attached
[    8.063672] zram: Added device: zram0
[    8.314326] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    8.322191] systemd[1]: Stopped initrd-switch-root.service - Switch Root.
[    8.322617] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    8.323399] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    8.323775] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    8.324146] systemd[1]: Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[    8.324513] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[    8.324876] systemd[1]: Created slice system-systemd\x2dzram\x2dsetup.slice - Slice /system/systemd-zram-setup.
[    8.325281] systemd[1]: Created slice user.slice - User and Session Slice.
[    8.325323] systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of a failed condition check (ConditionPathExists=!/run/plymouth/pid).
[    8.325429] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    8.325815] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    8.325871] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    8.325928] systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
[    8.325958] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
[    8.325986] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
[    8.326022] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    8.326080] systemd[1]: Reached target paths.target - Path Units.
[    8.326121] systemd[1]: Reached target slices.target - Slice Units.
[    8.326166] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    8.326506] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[    8.327624] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[    8.327700] systemd[1]: multipathd.socket - multipathd control socket was skipped because of a failed condition check (ConditionPathExists=/etc/multipath.conf).
[    8.329140] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[    8.329266] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    8.330182] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[    8.330981] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    8.331277] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    8.331556] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[    8.332735] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    8.333855] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    8.335102] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    8.336178] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    8.336326] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of a failed condition check (ConditionPathExists=/etc/krb5.keytab).
[    8.337454] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    8.338656] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    8.339852] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[    8.340930] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[    8.342079] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[    8.343115] systemd[1]: Starting nfs-convert.service - Preprocess NFS configuration convertion...
[    8.343190] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[    8.351229] systemd[1]: Stopped plymouth-switch-root.service - Plymouth switch root service.
[    8.351410] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[    8.363064] systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
[    8.363163] systemd[1]: Stopped systemd-journald.service - Journal Service.
[    8.363319] fuse: init (API version 7.36)
[    8.366163] systemd[1]: Starting systemd-journald.service - Journal Service...
[    8.367968] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    8.369084] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
[    8.370238] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    8.370326] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because all trigger condition checks failed.
[    8.371496] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    8.373188] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    8.373332] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    8.373447] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    8.373591] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    8.386515] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    8.386903] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    8.389258] systemd-journald[839]: File /run/log/journal/31a76a55ae584c78ba5b2e4b4d729d38/system.journal corrupted or uncleanly shut down, renaming and replacing.
[    8.391620] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
[    8.395346] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[    8.396236] systemd[1]: Started systemd-journald.service - Journal Service.
[    8.469699] systemd-journald[839]: Received client request to flush runtime journal.
[    9.105717] acpi_cpufreq: overriding BIOS provided _PSD data
[    9.232066] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    9.232072] RAPL PMU: hw unit of domain package 2^-16 Joules
[    9.233455] dca service started, version 1.12.1
[    9.233558] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    9.233562] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    9.233644] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    9.256062] asus_wmi: ASUS WMI generic driver loaded
[    9.272397] asus_wmi: Initialization: 0x0
[    9.272451] asus_wmi: BIOS WMI version: 0.9
[    9.272529] asus_wmi: SFUN value: 0x0
[    9.272533] eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
[    9.273657] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input24
[    9.296328] igb: Intel(R) Gigabit Ethernet Network Driver
[    9.296335] igb: Copyright (c) 2007-2014 Intel Corporation.
[    9.330863] pps pps0: new PPS source ptp0
[    9.330913] igb 0000:05:00.0: added PHC on eth0
[    9.330915] igb 0000:05:00.0: Intel(R) Gigabit Ethernet Network Connection
[    9.330916] igb 0000:05:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 10:7b:44:93:2d:e2
[    9.330919] igb 0000:05:00.0: eth0: PBA No: FFFFFF-0FF
[    9.330922] igb 0000:05:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    9.344849] zram0: detected capacity change from 0 to 16777216
[    9.392617] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.393298] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.402057] igb 0000:05:00.0 enp5s0: renamed from eth0
[    9.416216] Bluetooth: Core ver 2.22
[    9.416258] NET: Registered PF_BLUETOOTH protocol family
[    9.416260] Bluetooth: HCI device and connection manager initialized
[    9.416269] Bluetooth: HCI socket layer initialized
[    9.416272] Bluetooth: L2CAP socket layer initialized
[    9.416278] Bluetooth: SCO socket layer initialized
[    9.426112] wil6210 0000:04:00.0: wil6210 device found [1ae9:0310] (rev 2) bar size 0x200000
[    9.426259] wil6210 0000:04:00.0: enabling device (0000 -> 0002)
[    9.426526] SVM: TSC scaling supported
[    9.426531] kvm: Nested Virtualization enabled
[    9.426533] SVM: kvm: Nested Paging enabled
[    9.426535] SEV supported: 15 ASIDs
[    9.426656] SVM: Virtual VMLOAD VMSAVE supported
[    9.426657] SVM: Virtual GIF supported
[    9.426657] SVM: LBR virtualization supported
[    9.426924] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_pcie_probe: CSR at [mem 0xd9200000-0xd93fffff 64bit] -> 0x0000000036e361bc
[    9.426937] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_set_capabilities: Board hardware is Sparrow B0, flash exist
[    9.426939] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_set_capabilities: platform_capa 0x0
[    9.459062] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_refresh_fw_capabilities: keep_radio_on_during_sleep (0)
[    9.459068] wil6210 0000:04:00.0: using dma mask 48
[    9.459097] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_if_pcie_enable: 3 MSI mode failed, try 1 MSI
[    9.487573] MCE: In-kernel MCE decoding enabled.
[    9.495277] Adding 8388604k swap on /dev/zram0.  Priority:100 extents:1 across:8388604k SSDscFS
[    9.502238] snd_hda_intel 0000:0a:00.1: Disabling MSI
[    9.502258] snd_hda_intel 0000:0a:00.1: Handle vga_switcheroo audio client
[    9.502383] snd_hda_intel 0000:0c:00.3: enabling device (0000 -> 0002)
[    9.504183] usbcore: registered new interface driver btusb
[    9.511097] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_get_bl_info: Boot Loader struct v2: MAC = dc:ef:ca:e2:d8:09 RF = 0x0000 (status 0x0000) bband = 0x00000000
[    9.511105] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_get_bl_info: Boot Loader build 255.255.0.6836
[    9.511108] wil6210 0000:04:00.0 (unnamed net_device) (uninitialized): wil_set_oob_mode: oob_mode to 0
[    9.514241] wil6210 0000:04:00.0 wlp4s0: renamed from wlan0
[    9.588135] snd_hda_intel 0000:0a:00.1: bound 0000:0a:00.0 (ops nv50_audio_component_bind_ops [nouveau])
[    9.598158] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input25
[    9.598233] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input26
[    9.598290] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input27
[    9.598431] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input28
[    9.598529] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input29
[    9.598795] input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input30
[    9.598910] input: HDA NVidia HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input31
[    9.607900] intel_rapl_common: Found RAPL domain package
[    9.607903] intel_rapl_common: Found RAPL domain core
[    9.608225] intel_rapl_common: Found RAPL domain package
[    9.608230] intel_rapl_common: Found RAPL domain core
[    9.658152] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[    9.658159] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.658162] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    9.658165] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    9.658167] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[    9.658169] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    9.658171] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    9.658173] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    9.658174] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    9.686097] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input32
[    9.686297] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input33
[    9.686364] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input34
[    9.686434] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input35
[    9.686510] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input36
[    9.686587] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input37
[    9.686681] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input38
[    9.746775] ath10k_pci 0000:03:00.0: enabling device (0000 -> 0002)
[    9.748223] ath10k_pci 0000:03:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[   10.013754] ath10k_pci 0000:03:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 1043:8751
[   10.013762] ath10k_pci 0000:03:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 0 testmode 0
[   10.014372] ath10k_pci 0000:03:00.0: firmware ver WLAN.RM.4.4.1-00288- api 6 features wowlan,ignore-otp,mfp crc32 bf907c7c
[   10.084335] ath10k_pci 0000:03:00.0: board_file api 2 bmi_id N/A crc32 62812cba
[   10.178636] ath10k_pci 0000:03:00.0: htt-ver 3.87 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
[   10.235999] ath: EEPROM regdomain: 0x6c
[   10.236003] ath: EEPROM indicates we should expect a direct regpair map
[   10.236005] ath: Country alpha2 being used: 00
[   10.236007] ath: Regpair used: 0x6c
[   10.238959] ath10k_pci 0000:03:00.0 wlp3s0: renamed from wlan0
[   10.800647] XFS (sda2): Mounting V5 Filesystem
[   10.849432] XFS (sda2): Ending clean mount
[   10.867272] xfs filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff)
[   11.167993] RPC: Registered named UNIX socket transport module.
[   11.167997] RPC: Registered udp transport module.
[   11.167998] RPC: Registered tcp transport module.
[   11.167999] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   11.806004] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   11.806009] Bluetooth: BNEP filters: protocol multicast
[   11.806024] Bluetooth: BNEP socket layer initialized
[   12.371419] NET: Registered PF_QIPCRTR protocol family
[   13.020211] fbcon: Taking over console
[   13.020374] Console: switching to colour frame buffer device 240x67
[   13.381574] wil6210 0000:04:00.0 wlp4s0: _wil6210_disconnect: disconnect bssid=(null), reason=3
[   13.381582] wil6210 0000:04:00.0 wlp4s0: _wil6210_disconnect_complete: disconnect_complete: bssid=(null), reason=3
[   13.432124] wil6210 0000:04:00.0 wlp4s0: wil_get_bl_info: Boot Loader struct v2: MAC = dc:ef:ca:e2:d8:09 RF = 0x0000 (status 0x0000) bband = 0x00000000
[   13.432131] wil6210 0000:04:00.0 wlp4s0: wil_get_bl_info: Boot Loader build 255.255.0.6836
[   13.432135] wil6210 0000:04:00.0 wlp4s0: wil_set_oob_mode: oob_mode to 0
[   13.432139] wil6210 0000:04:00.0 wlp4s0: wil_reset: Use firmware <wil6210.fw> + board <wil6210.brd>
[   13.650946] wil6210 0000:04:00.0 wlp4s0: wmi_evt_ready: FW ver. 5.2.0.18(SW 18); MAC dc:ef:ca:e2:d8:09; 0 MID's
[   13.651204] wil6210 0000:04:00.0 wlp4s0: wil_wait_for_fw_ready: FW ready after 175 ms. HW version 0x00000001
[   13.651328] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_TX_CNT_TRSH = 500 usec
[   13.651332] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_TX_IDL_CNT_TRSH = 13 usec
[   13.651335] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_RX_CNT_TRSH = 500 usec
[   13.651338] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_RX_IDL_CNT_TRSH = 13 usec
[   13.651341] wil6210 0000:04:00.0 wlp4s0: wil_refresh_fw_capabilities: keep_radio_on_during_sleep (0)
[   13.652809] wil6210 0000:04:00.0 wlp4s0: _wil6210_disconnect: disconnect bssid=(null), reason=3
[   13.652814] wil6210 0000:04:00.0 wlp4s0: _wil6210_disconnect_complete: disconnect_complete: bssid=(null), reason=3
[   13.703556] wil6210 0000:04:00.0 wlp4s0: wil_get_bl_info: Boot Loader struct v2: MAC = dc:ef:ca:e2:d8:09 RF = 0x0000 (status 0x0000) bband = 0x00000000
[   13.703563] wil6210 0000:04:00.0 wlp4s0: wil_get_bl_info: Boot Loader build 255.255.0.6836
[   13.703566] wil6210 0000:04:00.0 wlp4s0: wil_set_oob_mode: oob_mode to 0
[   13.703993] wil6210 0000:04:00.0 wlp4s0: _wil6210_disconnect: disconnect bssid=(null), reason=3
[   13.703997] wil6210 0000:04:00.0 wlp4s0: _wil6210_disconnect_complete: disconnect_complete: bssid=(null), reason=3
[   13.755106] wil6210 0000:04:00.0 wlp4s0: wil_get_bl_info: Boot Loader struct v2: MAC = dc:ef:ca:e2:d8:09 RF = 0x0000 (status 0x0000) bband = 0x00000000
[   13.755113] wil6210 0000:04:00.0 wlp4s0: wil_get_bl_info: Boot Loader build 255.255.0.6836
[   13.755116] wil6210 0000:04:00.0 wlp4s0: wil_set_oob_mode: oob_mode to 0
[   13.755120] wil6210 0000:04:00.0 wlp4s0: wil_reset: Use firmware <wil6210.fw> + board <wil6210.brd>
[   13.806440] wil6210 0000:04:00.0 wlp4s0: wmi_evt_ready: FW ver. 5.2.0.18(SW 18); MAC dc:ef:ca:e2:d8:09; 0 MID's
[   13.806458] wil6210 0000:04:00.0 wlp4s0: wil_wait_for_fw_ready: FW ready after 8 ms. HW version 0x00000001
[   13.806721] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_TX_CNT_TRSH = 500 usec
[   13.806725] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_TX_IDL_CNT_TRSH = 13 usec
[   13.806728] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_RX_CNT_TRSH = 500 usec
[   13.806731] wil6210 0000:04:00.0 wlp4s0: wil_configure_interrupt_moderation: set ITR_RX_IDL_CNT_TRSH = 13 usec
[   13.806734] wil6210 0000:04:00.0 wlp4s0: wil_refresh_fw_capabilities: keep_radio_on_during_sleep (0)
[   15.731615] igb 0000:05:00.0 enp5s0: igb: enp5s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   15.838281] IPv6: ADDRCONF(NETDEV_CHANGE): enp5s0: link becomes ready
[   24.177197] logitech-hidpp-device 0003:046D:404D.0008: HID++ 4.1 device connected.

Leave a Reply

Your email address will not be published. Required fields are marked *