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 | [ 0.000000] Linux version 5.15.82-calculate (root@localhost) (gcc (Gentoo 11.3.1_p20221209 p3) 11.3.1 20221209, GNU ld (Gentoo 2.38 p4) 2.38) #1 SMP PREEMPT Fri Dec 30 11:30:38 UTC 2022
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate root=UUID=11d0739d-0226-4aeb-911f-b13fdbd85cb0 ro video=1791x1007 rd.retry=40 calculate=video:amdgpu splash 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-0x000000000009ebff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009e1ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000009e20000-0x0000000009ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000000a20d000-0x000000000affffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000b020000-0x000000009a0f1fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000009a0f2000-0x000000009a3fbfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000009a3fc000-0x000000009a43efff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000009a43f000-0x000000009beb7fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000009beb8000-0x000000009cdfefff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000009cdff000-0x000000009dffffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000009e000000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd600000-0x00000000fd6fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043f37ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000043f380000-0x000000043fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 3.3.0 present.
[ 0.000000] DMI: Gigabyte Technology Co., Ltd. A520I AC/A520I AC, BIOS F12 01/18/2021
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3792.843 MHz processor
[ 0.000299] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000301] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000308] last_pfn = 0x43f380 max_arch_pfn = 0x400000000
[ 0.000511] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000701] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[ 0.000705] last_pfn = 0x9e000 max_arch_pfn = 0x400000000
[ 0.003818] Using GB pages for direct mapping
[ 0.004599] RAMDISK: [mem 0x3503f000-0x36816fff]
[ 0.004604] ACPI: Early table checksum verification disabled
[ 0.004606] ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
[ 0.004609] ACPI: XSDT 0x000000009BEA0728 0000D4 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.004614] ACPI: FACP 0x000000009A426000 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
[ 0.004618] ACPI: DSDT 0x000000009A420000 0055D2 (v02 ALASKA A M I 01072009 INTL 20190509)
[ 0.004620] ACPI: FACS 0x000000009AE9B000 000040
[ 0.004621] ACPI: SSDT 0x000000009A435000 009B78 (v01 GBT GSWApp 00000001 INTL 20190509)
[ 0.004623] ACPI: IVRS 0x000000009A434000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000000)
[ 0.004625] ACPI: SSDT 0x000000009A42C000 007229 (v02 AMD Artic 00000002 MSFT 04000000)
[ 0.004627] ACPI: SSDT 0x000000009A428000 003C65 (v01 AMD AMD AOD 00000001 INTL 20190509)
[ 0.004628] ACPI: SSDT 0x000000009A427000 000139 (v02 ALASKA CPUSSDT 01072009 AMI 01072009)
[ 0.004630] ACPI: FIDT 0x000000009A41F000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.004632] ACPI: MCFG 0x000000009A41E000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
[ 0.004634] ACPI: HPET 0x000000009A41D000 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
[ 0.004636] ACPI: SSDT 0x000000009A41B000 001D0C (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.004637] ACPI: CRAT 0x000000009A41A000 0007E8 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.004639] ACPI: CDIT 0x000000009A419000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.004641] ACPI: SSDT 0x000000009A417000 001486 (v01 AMD ArticIG2 00000001 INTL 20190509)
[ 0.004642] ACPI: SSDT 0x000000009A415000 0014F6 (v01 AMD ArticTPX 00000001 INTL 20190509)
[ 0.004644] ACPI: SSDT 0x000000009A411000 0036E3 (v01 AMD ArticN 00000001 INTL 20190509)
[ 0.004646] ACPI: WSMT 0x000000009A410000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.004648] ACPI: APIC 0x000000009A40F000 00015E (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.004649] ACPI: SSDT 0x000000009A40E000 000917 (v01 AMD ArticPRN 00000001 INTL 20190509)
[ 0.004651] ACPI: SSDT 0x000000009A40D000 00008D (v01 AMD ArticDIS 00000001 INTL 20190509)
[ 0.004653] ACPI: SSDT 0x000000009A40B000 00147F (v01 AMD ArticC 00000001 INTL 20190509)
[ 0.004655] ACPI: SSDT 0x000000009A40A000 0000BF (v01 AMD AmdTable 00001000 INTL 20190509)
[ 0.004656] ACPI: FPDT 0x000000009A409000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.004658] ACPI: Reserving FACP table memory at [mem 0x9a426000-0x9a426113]
[ 0.004659] ACPI: Reserving DSDT table memory at [mem 0x9a420000-0x9a4255d1]
[ 0.004660] ACPI: Reserving FACS table memory at [mem 0x9ae9b000-0x9ae9b03f]
[ 0.004660] ACPI: Reserving SSDT table memory at [mem 0x9a435000-0x9a43eb77]
[ 0.004661] ACPI: Reserving IVRS table memory at [mem 0x9a434000-0x9a4340cf]
[ 0.004661] ACPI: Reserving SSDT table memory at [mem 0x9a42c000-0x9a433228]
[ 0.004662] ACPI: Reserving SSDT table memory at [mem 0x9a428000-0x9a42bc64]
[ 0.004663] ACPI: Reserving SSDT table memory at [mem 0x9a427000-0x9a427138]
[ 0.004663] ACPI: Reserving FIDT table memory at [mem 0x9a41f000-0x9a41f09b]
[ 0.004664] ACPI: Reserving MCFG table memory at [mem 0x9a41e000-0x9a41e03b]
[ 0.004664] ACPI: Reserving HPET table memory at [mem 0x9a41d000-0x9a41d037]
[ 0.004665] ACPI: Reserving SSDT table memory at [mem 0x9a41b000-0x9a41cd0b]
[ 0.004666] ACPI: Reserving CRAT table memory at [mem 0x9a41a000-0x9a41a7e7]
[ 0.004666] ACPI: Reserving CDIT table memory at [mem 0x9a419000-0x9a419028]
[ 0.004667] ACPI: Reserving SSDT table memory at [mem 0x9a417000-0x9a418485]
[ 0.004667] ACPI: Reserving SSDT table memory at [mem 0x9a415000-0x9a4164f5]
[ 0.004668] ACPI: Reserving SSDT table memory at [mem 0x9a411000-0x9a4146e2]
[ 0.004669] ACPI: Reserving WSMT table memory at [mem 0x9a410000-0x9a410027]
[ 0.004669] ACPI: Reserving APIC table memory at [mem 0x9a40f000-0x9a40f15d]
[ 0.004670] ACPI: Reserving SSDT table memory at [mem 0x9a40e000-0x9a40e916]
[ 0.004670] ACPI: Reserving SSDT table memory at [mem 0x9a40d000-0x9a40d08c]
[ 0.004671] ACPI: Reserving SSDT table memory at [mem 0x9a40b000-0x9a40c47e]
[ 0.004672] ACPI: Reserving SSDT table memory at [mem 0x9a40a000-0x9a40a0be]
[ 0.004672] ACPI: Reserving FPDT table memory at [mem 0x9a409000-0x9a409043]
[ 0.004694] No NUMA configuration found
[ 0.004695] Faking a node at [mem 0x0000000000000000-0x000000043f37ffff]
[ 0.004697] NODE_DATA(0) allocated [mem 0x43f37b000-0x43f37ffff]
[ 0.004716] Zone ranges:
[ 0.004717] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.004718] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.004719] Normal [mem 0x0000000100000000-0x000000043f37ffff]
[ 0.004720] Device empty
[ 0.004721] Movable zone start for each node
[ 0.004721] Early memory node ranges
[ 0.004722] node 0: [mem 0x0000000000001000-0x000000000009dfff]
[ 0.004723] node 0: [mem 0x0000000000100000-0x0000000009e1ffff]
[ 0.004723] node 0: [mem 0x000000000a000000-0x000000000a1fffff]
[ 0.004724] node 0: [mem 0x000000000a20d000-0x000000000affffff]
[ 0.004725] node 0: [mem 0x000000000b020000-0x000000009a0f1fff]
[ 0.004725] node 0: [mem 0x000000009cdff000-0x000000009dffffff]
[ 0.004726] node 0: [mem 0x0000000100000000-0x000000043f37ffff]
[ 0.004728] Initmem setup node 0 [mem 0x0000000000001000-0x000000043f37ffff]
[ 0.004731] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.004751] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.004928] On node 0, zone DMA32: 480 pages in unavailable ranges
[ 0.004946] On node 0, zone DMA32: 13 pages in unavailable ranges
[ 0.009282] On node 0, zone DMA32: 32 pages in unavailable ranges
[ 0.009423] On node 0, zone DMA32: 11533 pages in unavailable ranges
[ 0.035381] On node 0, zone Normal: 8192 pages in unavailable ranges
[ 0.035413] On node 0, zone Normal: 3200 pages in unavailable ranges
[ 0.035765] ACPI: PM-Timer IO Port: 0x808
[ 0.035770] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.035782] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
[ 0.035786] IOAPIC[1]: apic_id 10, version 33, address 0xfec01000, GSI 24-55
[ 0.035788] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.035790] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.035792] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.035793] ACPI: HPET id: 0x10228201 base: 0xfed00000
[ 0.035797] smpboot: Allowing 32 CPUs, 24 hotplug CPUs
[ 0.035826] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.035828] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.035829] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.035829] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.035830] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.035831] PM: hibernation: Registered nosave memory: [mem 0x09e20000-0x09ffffff]
[ 0.035832] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[ 0.035834] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[ 0.035835] PM: hibernation: Registered nosave memory: [mem 0x9a0f2000-0x9a3fbfff]
[ 0.035836] PM: hibernation: Registered nosave memory: [mem 0x9a3fc000-0x9a43efff]
[ 0.035836] PM: hibernation: Registered nosave memory: [mem 0x9a43f000-0x9beb7fff]
[ 0.035837] PM: hibernation: Registered nosave memory: [mem 0x9beb8000-0x9cdfefff]
[ 0.035838] PM: hibernation: Registered nosave memory: [mem 0x9e000000-0xbfffffff]
[ 0.035838] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
[ 0.035839] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[ 0.035839] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfd1fffff]
[ 0.035840] PM: hibernation: Registered nosave memory: [mem 0xfd200000-0xfd2fffff]
[ 0.035840] PM: hibernation: Registered nosave memory: [mem 0xfd300000-0xfd5fffff]
[ 0.035841] PM: hibernation: Registered nosave memory: [mem 0xfd600000-0xfd6fffff]
[ 0.035841] PM: hibernation: Registered nosave memory: [mem 0xfd700000-0xfe9fffff]
[ 0.035842] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[ 0.035842] PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[ 0.035843] PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[ 0.035843] PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[ 0.035844] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[ 0.035844] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[ 0.035845] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[ 0.035845] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[ 0.035845] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[ 0.035846] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[ 0.035846] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[ 0.035847] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[ 0.035847] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[ 0.035848] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[ 0.035848] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[ 0.035849] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[ 0.035849] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[ 0.035850] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff]
[ 0.035850] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.035851] [mem 0xc0000000-0xefffffff] available for PCI devices
[ 0.035852] Booting paravirtualized kernel on bare hardware
[ 0.035855] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.038716] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1
[ 0.040079] percpu: Embedded 45 pages/cpu s145048 r8192 d31080 u262144
[ 0.040090] pcpu-alloc: s145048 r8192 d31080 u262144 alloc=1*2097152
[ 0.040092] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.040098] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
[ 0.040130] Built 1 zonelists, mobility grouping on. Total pages: 3976404
[ 0.040131] Policy zone: Normal
[ 0.040132] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate root=UUID=11d0739d-0226-4aeb-911f-b13fdbd85cb0 ro video=1791x1007 rd.retry=40 calculate=video:amdgpu splash quiet
[ 0.040176] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate calculate=video:amdgpu", will be passed to user space.
[ 0.040177] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.040178] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[ 0.040179] printk: log_buf_len min size: 32768 bytes
[ 0.040360] printk: log_buf_len: 262144 bytes
[ 0.040361] printk: early log buf free: 18304(55%)
[ 0.042132] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.043004] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.043083] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.083645] Memory: 15756972K/16158732K available (12290K kernel code, 806K rwdata, 3236K rodata, 1292K init, 468K bss, 401504K reserved, 0K cma-reserved)
[ 0.084299] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.084498] rcu: Preemptible hierarchical RCU implementation.
[ 0.084499] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
[ 0.084500] Trampoline variant of Tasks RCU enabled.
[ 0.084500] Tracing variant of Tasks RCU enabled.
[ 0.084501] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.084502] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.084529] NR_IRQS: 4352, nr_irqs: 1224, preallocated irqs: 16
[ 0.084783] random: crng init done
[ 0.084820] spurious 8259A interrupt: IRQ7.
[ 0.084843] Console: colour dummy device 80x25
[ 0.084853] printk: console [tty0] enabled
[ 0.084908] ACPI: Core revision 20210730
[ 0.085062] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.085079] APIC: Switch to symmetric I/O mode setup
[ 0.086072] Switched APIC routing to physical flat.
[ 0.086680] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.091085] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6d57de4627d, max_idle_ns: 881590678623 ns
[ 0.091088] Calibrating delay loop (skipped), value calculated using timer frequency.. 7585.68 BogoMIPS (lpj=3792843)
[ 0.091090] pid_max: default: 32768 minimum: 301
[ 0.091132] LSM: Security Framework initializing
[ 0.091188] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.091214] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.091571] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.091624] LVT offset 1 assigned for vector 0xf9
[ 0.091715] LVT offset 2 assigned for vector 0xf4
[ 0.091739] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[ 0.091740] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
[ 0.091743] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.091745] Spectre V2 : Mitigation: Retpolines
[ 0.091746] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.091746] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.091747] Spectre V2 : Enabling Speculation Barrier for firmware calls
[ 0.091747] RETBleed: Mitigation: untrained return thunk
[ 0.091749] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.091749] Spectre V2 : Selecting STIBP always-on mode to complement retbleed mitigation
[ 0.091750] Spectre V2 : User space: Mitigation: STIBP always-on protection
[ 0.091751] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.095906] Freeing SMP alternatives memory: 32K
[ 0.198404] smpboot: CPU0: AMD Ryzen 3 PRO 4350G with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)
[ 0.198533] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[ 0.198538] ... version: 0
[ 0.198539] ... bit width: 48
[ 0.198540] ... generic registers: 6
[ 0.198540] ... value mask: 0000ffffffffffff
[ 0.198541] ... max period: 00007fffffffffff
[ 0.198541] ... fixed-purpose events: 0
[ 0.198541] ... event mask: 000000000000003f
[ 0.198620] rcu: Hierarchical SRCU implementation.
[ 0.198857] smp: Bringing up secondary CPUs ...
[ 0.198918] x86: Booting SMP configuration:
[ 0.198919] .... node #0, CPUs: #1
[ 0.001331] __common_interrupt: 1.55 No irq handler for vector
[ 0.199146] #2
[ 0.001331] __common_interrupt: 2.55 No irq handler for vector
[ 0.201144] #3
[ 0.001331] __common_interrupt: 3.55 No irq handler for vector
[ 0.202128] #4
[ 0.001331] __common_interrupt: 4.55 No irq handler for vector
[ 0.203101] Spectre V2 : Update user space SMT mitigation: STIBP always-on
[ 0.203154] #5
[ 0.001331] __common_interrupt: 5.55 No irq handler for vector
[ 0.204130] #6
[ 0.001331] __common_interrupt: 6.55 No irq handler for vector
[ 0.206137] #7
[ 0.001331] __common_interrupt: 7.55 No irq handler for vector
[ 0.207102] smp: Brought up 1 node, 8 CPUs
[ 0.207102] smpboot: Max logical packages: 4
[ 0.207102] smpboot: Total of 8 processors activated (60685.48 BogoMIPS)
[ 0.208224] devtmpfs: initialized
[ 0.208224] x86/mm: Memory block size: 128MB
[ 0.208713] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)
[ 0.208713] ACPI: PM: Registering ACPI NVS region [mem 0x9a43f000-0x9beb7fff] (27758592 bytes)
[ 0.209265] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.209268] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.209359] pinctrl core: initialized pinctrl subsystem
[ 0.209567] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.209609] audit: initializing netlink subsys (disabled)
[ 0.209612] audit: type=2000 audit(1683016216.124:1): state=initialized audit_enabled=0 res=1
[ 0.209612] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.209612] thermal_sys: Registered thermal governor 'step_wise'
[ 0.209612] thermal_sys: Registered thermal governor 'user_space'
[ 0.209612] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.209612] cpuidle: using governor ladder
[ 0.209612] cpuidle: using governor menu
[ 0.209612] ACPI: bus type PCI registered
[ 0.209612] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.209612] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[ 0.209612] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[ 0.209612] PCI: Using configuration type 1 for base access
[ 0.210256] mtrr: your CPUs had inconsistent variable MTRR settings
[ 0.210257] mtrr: probably your BIOS does not setup all CPUs.
[ 0.210257] mtrr: corrected configuration.
[ 0.210891] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.210891] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.212132] ACPI: Added _OSI(Module Device)
[ 0.212133] ACPI: Added _OSI(Processor Device)
[ 0.212133] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.212134] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.212135] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.212135] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.212136] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.219202] ACPI: 13 ACPI AML tables successfully acquired and loaded
[ 0.219996] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.225108] ACPI: Interpreter enabled
[ 0.225120] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.225121] ACPI: Using IOAPIC for interrupt routing
[ 0.225297] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.225535] ACPI: Enabled 6 GPEs in block 00 to 1F
[ 0.229767] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.229771] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.229854] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[ 0.229931] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[ 0.229937] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[ 0.230079] PCI host bridge to bus 0000:00
[ 0.230080] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.230081] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.230082] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.230083] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.230084] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.230085] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.230086] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfec2ffff window]
[ 0.230086] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[ 0.230089] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.230115] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
[ 0.230199] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
[ 0.230276] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
[ 0.230339] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
[ 0.230405] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400
[ 0.230425] pci 0000:00:02.1: enabling Extended Tags
[ 0.230451] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[ 0.230517] pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
[ 0.230537] pci 0000:00:02.2: enabling Extended Tags
[ 0.230562] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[ 0.230624] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
[ 0.230692] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
[ 0.230711] pci 0000:00:08.1: enabling Extended Tags
[ 0.230737] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.230829] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[ 0.230943] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[ 0.231052] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000
[ 0.231094] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000
[ 0.231132] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000
[ 0.231170] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000
[ 0.231208] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000
[ 0.231246] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000
[ 0.231284] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000
[ 0.231322] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000
[ 0.231396] pci 0000:01:00.0: [1022:43ec] type 00 class 0x0c0330
[ 0.231412] pci 0000:01:00.0: reg 0x10: [mem 0xfcea0000-0xfcea7fff 64bit]
[ 0.231449] pci 0000:01:00.0: enabling Extended Tags
[ 0.231498] pci 0000:01:00.0: PME# supported from D3hot D3cold
[ 0.231563] pci 0000:01:00.1: [1022:43eb] type 00 class 0x010601
[ 0.231606] pci 0000:01:00.1: reg 0x24: [mem 0xfce80000-0xfce9ffff]
[ 0.231614] pci 0000:01:00.1: reg 0x30: [mem 0xfce00000-0xfce7ffff pref]
[ 0.231619] pci 0000:01:00.1: enabling Extended Tags
[ 0.231657] pci 0000:01:00.1: PME# supported from D3hot D3cold
[ 0.231706] pci 0000:01:00.2: [1022:43e9] type 01 class 0x060400
[ 0.231746] pci 0000:01:00.2: enabling Extended Tags
[ 0.231788] pci 0000:01:00.2: PME# supported from D3hot D3cold
[ 0.231837] pci 0000:00:02.1: PCI bridge to [bus 01-06]
[ 0.231839] pci 0000:00:02.1: bridge window [io 0xf000-0xffff]
[ 0.231841] pci 0000:00:02.1: bridge window [mem 0xfcc00000-0xfcefffff]
[ 0.231884] pci 0000:02:00.0: [1022:43ea] type 01 class 0x060400
[ 0.231927] pci 0000:02:00.0: enabling Extended Tags
[ 0.231974] pci 0000:02:00.0: PME# supported from D3hot D3cold
[ 0.232035] pci 0000:02:01.0: [1022:43ea] type 01 class 0x060400
[ 0.232078] pci 0000:02:01.0: enabling Extended Tags
[ 0.232126] pci 0000:02:01.0: PME# supported from D3hot D3cold
[ 0.232183] pci 0000:02:02.0: [1022:43ea] type 01 class 0x060400
[ 0.232227] pci 0000:02:02.0: enabling Extended Tags
[ 0.232274] pci 0000:02:02.0: PME# supported from D3hot D3cold
[ 0.232332] pci 0000:02:03.0: [1022:43ea] type 01 class 0x060400
[ 0.232375] pci 0000:02:03.0: enabling Extended Tags
[ 0.232423] pci 0000:02:03.0: PME# supported from D3hot D3cold
[ 0.232492] pci 0000:01:00.2: PCI bridge to [bus 02-06]
[ 0.232496] pci 0000:01:00.2: bridge window [io 0xf000-0xffff]
[ 0.232499] pci 0000:01:00.2: bridge window [mem 0xfcc00000-0xfcdfffff]
[ 0.232530] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.232568] pci 0000:02:01.0: PCI bridge to [bus 04]
[ 0.232634] pci 0000:05:00.0: [8086:2526] type 00 class 0x028000
[ 0.232666] pci 0000:05:00.0: reg 0x10: [mem 0xfcd00000-0xfcd03fff 64bit]
[ 0.232837] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
[ 0.232955] pci 0000:02:02.0: PCI bridge to [bus 05]
[ 0.232961] pci 0000:02:02.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.233026] pci 0000:06:00.0: [10ec:8168] type 00 class 0x020000
[ 0.233052] pci 0000:06:00.0: reg 0x10: [io 0xf000-0xf0ff]
[ 0.233090] pci 0000:06:00.0: reg 0x18: [mem 0xfcc04000-0xfcc04fff 64bit]
[ 0.233112] pci 0000:06:00.0: reg 0x20: [mem 0xfcc00000-0xfcc03fff 64bit]
[ 0.233254] pci 0000:06:00.0: supports D1 D2
[ 0.233255] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.233394] pci 0000:02:03.0: PCI bridge to [bus 06]
[ 0.233399] pci 0000:02:03.0: bridge window [io 0xf000-0xffff]
[ 0.233401] pci 0000:02:03.0: bridge window [mem 0xfcc00000-0xfccfffff]
[ 0.233463] pci 0000:07:00.0: [144d:a804] type 00 class 0x010802
[ 0.233478] pci 0000:07:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit]
[ 0.233622] pci 0000:00:02.2: PCI bridge to [bus 07]
[ 0.233625] pci 0000:00:02.2: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.233677] pci 0000:08:00.0: [1002:1636] type 00 class 0x030000
[ 0.233687] pci 0000:08:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.233694] pci 0000:08:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
[ 0.233698] pci 0000:08:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.233703] pci 0000:08:00.0: reg 0x24: [mem 0xfcb00000-0xfcb7ffff]
[ 0.233710] pci 0000:08:00.0: enabling Extended Tags
[ 0.233721] pci 0000:08:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.233755] pci 0000:08:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.233779] pci 0000:08:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.233826] pci 0000:08:00.1: [1002:1637] type 00 class 0x040300
[ 0.233834] pci 0000:08:00.1: reg 0x10: [mem 0xfcb88000-0xfcb8bfff]
[ 0.233859] pci 0000:08:00.1: enabling Extended Tags
[ 0.233883] pci 0000:08:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.233933] pci 0000:08:00.2: [1022:15df] type 00 class 0x108000
[ 0.233948] pci 0000:08:00.2: reg 0x18: [mem 0xfca00000-0xfcafffff]
[ 0.233959] pci 0000:08:00.2: reg 0x24: [mem 0xfcb8c000-0xfcb8dfff]
[ 0.233967] pci 0000:08:00.2: enabling Extended Tags
[ 0.234040] pci 0000:08:00.3: [1022:1639] type 00 class 0x0c0330
[ 0.234049] pci 0000:08:00.3: reg 0x10: [mem 0xfc900000-0xfc9fffff 64bit]
[ 0.234071] pci 0000:08:00.3: enabling Extended Tags
[ 0.234098] pci 0000:08:00.3: PME# supported from D0 D3hot D3cold
[ 0.234149] pci 0000:08:00.4: [1022:1639] type 00 class 0x0c0330
[ 0.234159] pci 0000:08:00.4: reg 0x10: [mem 0xfc800000-0xfc8fffff 64bit]
[ 0.234180] pci 0000:08:00.4: enabling Extended Tags
[ 0.234207] pci 0000:08:00.4: PME# supported from D0 D3hot D3cold
[ 0.234257] pci 0000:08:00.6: [1022:15e3] type 00 class 0x040300
[ 0.234265] pci 0000:08:00.6: reg 0x10: [mem 0xfcb80000-0xfcb87fff]
[ 0.234290] pci 0000:08:00.6: enabling Extended Tags
[ 0.234314] pci 0000:08:00.6: PME# supported from D0 D3hot D3cold
[ 0.234367] pci 0000:00:08.1: PCI bridge to [bus 08]
[ 0.234370] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.234372] pci 0000:00:08.1: bridge window [mem 0xfc800000-0xfcbfffff]
[ 0.234374] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.234620] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.234649] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.234674] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.234706] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.234734] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.234758] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.234781] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.234804] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.235239] iommu: Default domain type: Translated
[ 0.235240] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.235248] pci 0000:08:00.0: vgaarb: setting as boot VGA device
[ 0.235248] pci 0000:08:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.235248] pci 0000:08:00.0: vgaarb: bridge control possible
[ 0.235248] vgaarb: loaded
[ 0.235248] SCSI subsystem initialized
[ 0.235248] libata version 3.00 loaded.
[ 0.235248] ACPI: bus type USB registered
[ 0.235248] usbcore: registered new interface driver usbfs
[ 0.235248] usbcore: registered new interface driver hub
[ 0.235248] usbcore: registered new device driver usb
[ 0.235248] pps_core: LinuxPPS API ver. 1 registered
[ 0.235248] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.235248] PTP clock support registered
[ 0.235248] PCI: Using ACPI for IRQ routing
[ 0.239699] PCI: pci_cache_line_size set to 64 bytes
[ 0.239751] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
[ 0.239752] e820: reserve RAM buffer [mem 0x09e20000-0x0bffffff]
[ 0.239753] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[ 0.239754] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[ 0.239754] e820: reserve RAM buffer [mem 0x9a0f2000-0x9bffffff]
[ 0.239755] e820: reserve RAM buffer [mem 0x9e000000-0x9fffffff]
[ 0.239756] e820: reserve RAM buffer [mem 0x43f380000-0x43fffffff]
[ 0.240094] clocksource: Switched to clocksource tsc-early
[ 0.240094] VFS: Disk quotas dquot_6.6.0
[ 0.240094] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.240094] pnp: PnP ACPI init
[ 0.240094] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 0.240094] system 00:01: [mem 0xa0000000-0xbfffffff window] has been reserved
[ 0.240094] system 00:03: [io 0x0a00-0x0a2f] has been reserved
[ 0.240094] system 00:03: [io 0x0a30-0x0a3f] has been reserved
[ 0.240094] system 00:03: [io 0x0a40-0x0a4f] has been reserved
[ 0.240094] system 00:03: [mem 0xfe000000-0xfe00ffff] has been reserved
[ 0.240094] pnp 00:04: [dma 0 disabled]
[ 0.240734] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 0.240735] system 00:05: [io 0x040b] has been reserved
[ 0.240736] system 00:05: [io 0x04d6] has been reserved
[ 0.240737] system 00:05: [io 0x0c00-0x0c01] has been reserved
[ 0.240738] system 00:05: [io 0x0c14] has been reserved
[ 0.240739] system 00:05: [io 0x0c50-0x0c51] has been reserved
[ 0.240739] system 00:05: [io 0x0c52] has been reserved
[ 0.240740] system 00:05: [io 0x0c6c] has been reserved
[ 0.240741] system 00:05: [io 0x0c6f] has been reserved
[ 0.240742] system 00:05: [io 0x0cd0-0x0cd1] has been reserved
[ 0.240743] system 00:05: [io 0x0cd2-0x0cd3] has been reserved
[ 0.240744] system 00:05: [io 0x0cd4-0x0cd5] has been reserved
[ 0.240745] system 00:05: [io 0x0cd6-0x0cd7] has been reserved
[ 0.240746] system 00:05: [io 0x0cd8-0x0cdf] has been reserved
[ 0.240747] system 00:05: [io 0x0800-0x089f] has been reserved
[ 0.240747] system 00:05: [io 0x0b00-0x0b0f] has been reserved
[ 0.240748] system 00:05: [io 0x0b20-0x0b3f] has been reserved
[ 0.240749] system 00:05: [io 0x0900-0x090f] has been reserved
[ 0.240750] system 00:05: [io 0x0910-0x091f] has been reserved
[ 0.240751] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.240752] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[ 0.240753] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 0.240754] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.240755] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 0.240756] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.240757] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.241037] pnp: PnP ACPI: found 6 devices
[ 0.246518] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.246564] NET: Registered PF_INET protocol family
[ 0.246749] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.248123] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.248139] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.248143] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.248287] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.248415] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.248526] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.248552] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.248582] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.248661] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.248692] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.248709] pci 0000:02:01.0: PCI bridge to [bus 04]
[ 0.248718] pci 0000:02:02.0: PCI bridge to [bus 05]
[ 0.248722] pci 0000:02:02.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.248730] pci 0000:02:03.0: PCI bridge to [bus 06]
[ 0.248732] pci 0000:02:03.0: bridge window [io 0xf000-0xffff]
[ 0.248736] pci 0000:02:03.0: bridge window [mem 0xfcc00000-0xfccfffff]
[ 0.248742] pci 0000:01:00.2: PCI bridge to [bus 02-06]
[ 0.248744] pci 0000:01:00.2: bridge window [io 0xf000-0xffff]
[ 0.248748] pci 0000:01:00.2: bridge window [mem 0xfcc00000-0xfcdfffff]
[ 0.248754] pci 0000:00:02.1: PCI bridge to [bus 01-06]
[ 0.248755] pci 0000:00:02.1: bridge window [io 0xf000-0xffff]
[ 0.248757] pci 0000:00:02.1: bridge window [mem 0xfcc00000-0xfcefffff]
[ 0.248761] pci 0000:00:02.2: PCI bridge to [bus 07]
[ 0.248763] pci 0000:00:02.2: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.248777] pci 0000:00:08.1: PCI bridge to [bus 08]
[ 0.248778] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.248780] pci 0000:00:08.1: bridge window [mem 0xfc800000-0xfcbfffff]
[ 0.248782] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.248787] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.248788] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.248789] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.248790] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.248790] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 0.248791] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[ 0.248792] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfec2ffff window]
[ 0.248793] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[ 0.248794] pci_bus 0000:01: resource 0 [io 0xf000-0xffff]
[ 0.248795] pci_bus 0000:01: resource 1 [mem 0xfcc00000-0xfcefffff]
[ 0.248796] pci_bus 0000:02: resource 0 [io 0xf000-0xffff]
[ 0.248797] pci_bus 0000:02: resource 1 [mem 0xfcc00000-0xfcdfffff]
[ 0.248798] pci_bus 0000:05: resource 1 [mem 0xfcd00000-0xfcdfffff]
[ 0.248799] pci_bus 0000:06: resource 0 [io 0xf000-0xffff]
[ 0.248800] pci_bus 0000:06: resource 1 [mem 0xfcc00000-0xfccfffff]
[ 0.248801] pci_bus 0000:07: resource 1 [mem 0xfcf00000-0xfcffffff]
[ 0.248802] pci_bus 0000:08: resource 0 [io 0xe000-0xefff]
[ 0.248802] pci_bus 0000:08: resource 1 [mem 0xfc800000-0xfcbfffff]
[ 0.248803] pci_bus 0000:08: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.249017] pci 0000:08:00.1: D0 power state depends on 0000:08:00.0
[ 0.249043] pci 0000:08:00.3: extending delay after power-on from D3hot to 20 msec
[ 0.249114] pci 0000:08:00.4: extending delay after power-on from D3hot to 20 msec
[ 0.249160] PCI: CLS 64 bytes, default 64
[ 0.249170] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 0.249195] pci 0000:00:00.2: can't derive routing for PCI INT A
[ 0.249196] pci 0000:00:00.2: PCI INT A: not connected
[ 0.249213] pci 0000:00:01.0: Adding to iommu group 0
[ 0.249228] pci 0000:00:02.0: Adding to iommu group 1
[ 0.249234] pci 0000:00:02.1: Adding to iommu group 1
[ 0.249240] pci 0000:00:02.2: Adding to iommu group 1
[ 0.249244] Trying to unpack rootfs image as initramfs...
[ 0.249253] pci 0000:00:08.0: Adding to iommu group 2
[ 0.249260] pci 0000:00:08.1: Adding to iommu group 2
[ 0.249271] pci 0000:00:14.0: Adding to iommu group 3
[ 0.249278] pci 0000:00:14.3: Adding to iommu group 3
[ 0.249308] pci 0000:00:18.0: Adding to iommu group 4
[ 0.249315] pci 0000:00:18.1: Adding to iommu group 4
[ 0.249323] pci 0000:00:18.2: Adding to iommu group 4
[ 0.249330] pci 0000:00:18.3: Adding to iommu group 4
[ 0.249337] pci 0000:00:18.4: Adding to iommu group 4
[ 0.249344] pci 0000:00:18.5: Adding to iommu group 4
[ 0.249351] pci 0000:00:18.6: Adding to iommu group 4
[ 0.249358] pci 0000:00:18.7: Adding to iommu group 4
[ 0.249361] pci 0000:01:00.0: Adding to iommu group 1
[ 0.249366] pci 0000:01:00.1: Adding to iommu group 1
[ 0.249369] pci 0000:01:00.2: Adding to iommu group 1
[ 0.249374] pci 0000:02:00.0: Adding to iommu group 1
[ 0.249378] pci 0000:02:01.0: Adding to iommu group 1
[ 0.249381] pci 0000:02:02.0: Adding to iommu group 1
[ 0.249384] pci 0000:02:03.0: Adding to iommu group 1
[ 0.249388] pci 0000:05:00.0: Adding to iommu group 1
[ 0.249392] pci 0000:06:00.0: Adding to iommu group 1
[ 0.249396] pci 0000:07:00.0: Adding to iommu group 1
[ 0.249408] pci 0000:08:00.0: Adding to iommu group 2
[ 0.249411] pci 0000:08:00.1: Adding to iommu group 2
[ 0.249415] pci 0000:08:00.2: Adding to iommu group 2
[ 0.249418] pci 0000:08:00.3: Adding to iommu group 2
[ 0.249422] pci 0000:08:00.4: Adding to iommu group 2
[ 0.249426] pci 0000:08:00.6: Adding to iommu group 2
[ 0.250592] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[ 0.250596] AMD-Vi: Extended features (0x206d73ef22254ade): PPR X2APIC NX GT IA GA PC GA_vAPIC
[ 0.250602] AMD-Vi: Interrupt remapping enabled
[ 0.250602] AMD-Vi: Virtual APIC enabled
[ 0.250603] AMD-Vi: X2APIC enabled
[ 0.250736] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.250737] software IO TLB: mapped [mem 0x00000000960f2000-0x000000009a0f2000] (64MB)
[ 0.258331] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[ 0.258336] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 0.258339] LVT offset 0 assigned for vector 0x400
[ 0.258501] perf: AMD IBS detected (0x000003ff)
[ 0.258520] amd_uncore: 4 amd_df counters detected
[ 0.258542] amd_uncore: 6 amd_l3 counters detected
[ 0.258777] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 0.259315] Initialise system trusted keyrings
[ 0.259344] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[ 0.260311] zbud: loaded
[ 0.262975] Key type asymmetric registered
[ 0.262979] Asymmetric key parser 'x509' registered
[ 0.263004] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.263057] io scheduler mq-deadline registered
[ 0.263059] io scheduler kyber registered
[ 0.263099] io scheduler bfq registered
[ 0.263364] pcieport 0000:00:02.1: PME: Signaling with IRQ 26
[ 0.263475] pcieport 0000:00:02.2: PME: Signaling with IRQ 27
[ 0.263587] pcieport 0000:00:08.1: PME: Signaling with IRQ 28
[ 0.264414] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.264529] Monitor-Mwait will be used to enter C-1 state
[ 0.264537] ACPI: \_SB_.PLTF.C000: Found 3 idle states
[ 0.264549] ACPI: FW issue: working around C-state latencies out of order
[ 0.264674] ACPI: \_SB_.PLTF.C002: Found 3 idle states
[ 0.264684] ACPI: FW issue: working around C-state latencies out of order
[ 0.264779] ACPI: \_SB_.PLTF.C004: Found 3 idle states
[ 0.264785] ACPI: FW issue: working around C-state latencies out of order
[ 0.264889] ACPI: \_SB_.PLTF.C006: Found 3 idle states
[ 0.264899] ACPI: FW issue: working around C-state latencies out of order
[ 0.265041] ACPI: \_SB_.PLTF.C001: Found 3 idle states
[ 0.265053] ACPI: FW issue: working around C-state latencies out of order
[ 0.265135] ACPI: \_SB_.PLTF.C003: Found 3 idle states
[ 0.265141] ACPI: FW issue: working around C-state latencies out of order
[ 0.265300] ACPI: \_SB_.PLTF.C005: Found 3 idle states
[ 0.265308] ACPI: FW issue: working around C-state latencies out of order
[ 0.265392] ACPI: \_SB_.PLTF.C007: Found 3 idle states
[ 0.265396] ACPI: FW issue: working around C-state latencies out of order
[ 0.265574] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.265652] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.365546] Freeing initrd memory: 24416K
[ 0.366572] lp: driver loaded but no devices found
[ 0.366576] Linux agpgart interface v0.103
[ 0.369770] loop: module loaded
[ 0.370150] nvme 0000:07:00.0: platform quirk: setting simple suspend
[ 0.370204] nvme nvme0: pci function 0000:07:00.0
[ 0.370253] ahci 0000:01:00.1: version 3.0
[ 0.370388] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[ 0.370425] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x33 impl SATA mode
[ 0.370427] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[ 0.370830] scsi host0: ahci
[ 0.370964] scsi host1: ahci
[ 0.371075] scsi host2: ahci
[ 0.371178] scsi host3: ahci
[ 0.371242] scsi host4: ahci
[ 0.371288] scsi host5: ahci
[ 0.371318] ata1: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80100 irq 40
[ 0.371321] ata2: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80180 irq 40
[ 0.371322] ata3: DUMMY
[ 0.371323] ata4: DUMMY
[ 0.371324] ata5: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80300 irq 40
[ 0.371326] ata6: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80380 irq 40
[ 0.371400] PPP generic driver version 2.4.2
[ 0.371510] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.371513] ehci-pci: EHCI PCI platform driver
[ 0.371548] ehci-platform: EHCI generic platform driver
[ 0.371573] usbcore: registered new interface driver usb-storage
[ 0.371609] i8042: PNP: No PS/2 controller found.
[ 0.371672] mousedev: PS/2 mouse device common for all mice
[ 0.371718] rtc_cmos 00:02: RTC can wake from S4
[ 0.371916] rtc_cmos 00:02: registered as rtc0
[ 0.371951] rtc_cmos 00:02: setting system clock to 2023-05-02T08:30:16 UTC (1683016216)
[ 0.371994] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 0.372081] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.372124] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[ 0.372125] vesafb: scrolling: redraw
[ 0.372126] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[ 0.372138] vesafb: framebuffer at 0xd0000000, mapped to 0x00000000af3594ec, using 3072k, total 3072k
[ 0.372201] Console: switching to colour frame buffer device 128x48
[ 0.379712] nvme nvme0: 7/0/0 default/read/poll queues
[ 0.384688] fb0: VESA VGA frame buffer device
[ 0.384719] hid: raw HID events driver (C) Jiri Kosina
[ 0.384821] usbcore: registered new interface driver usbhid
[ 0.384822] usbhid: USB HID core driver
[ 0.385105] NET: Registered PF_INET6 protocol family
[ 0.388581] Segment Routing with IPv6
[ 0.388584] RPL Segment Routing with IPv6
[ 0.388597] In-situ OAM (IOAM) with IPv6
[ 0.388625] NET: Registered PF_PACKET protocol family
[ 0.388775] Key type dns_resolver registered
[ 0.389634] microcode: CPU0: patch_level=0x08600106
[ 0.389641] microcode: CPU1: patch_level=0x08600106
[ 0.389651] microcode: CPU2: patch_level=0x08600106
[ 0.389674] microcode: CPU3: patch_level=0x08600106
[ 0.389687] microcode: CPU4: patch_level=0x08600106
[ 0.389710] microcode: CPU5: patch_level=0x08600106
[ 0.389714] microcode: CPU6: patch_level=0x08600106
[ 0.389723] microcode: CPU7: patch_level=0x08600106
[ 0.389792] microcode: Microcode Update Driver: v2.2.
[ 0.389797] IPI shorthand broadcast: enabled
[ 0.389812] sched_clock: Marking stable (389444017, 331845)->(518093949, -128318087)
[ 0.389879] registered taskstats version 1
[ 0.389882] Loading compiled-in X.509 certificates
[ 0.391076] zswap: loaded using pool zstd/zbud
[ 0.424523] nvme0n1: p1 p2 p3 p4
[ 0.682144] ata1: SATA link down (SStatus 0 SControl 330)
[ 0.987574] ata2: SATA link down (SStatus 0 SControl 330)
[ 1.596710] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d57de4627d, max_idle_ns: 881590678623 ns
[ 1.596762] clocksource: Switched to clocksource tsc
[ 1.630336] ata5: SATA link down (SStatus 0 SControl 330)
[ 1.943189] ata6: SATA link down (SStatus 0 SControl 330)
[ 1.943690] Freeing unused kernel image (initmem) memory: 1292K
[ 1.943702] Write protecting the kernel read-only data: 18432k
[ 1.944407] Freeing unused kernel image (text/rodata gap) memory: 2044K
[ 1.944831] Freeing unused kernel image (rodata/data gap) memory: 860K
[ 1.944845] rodata_test: all tests were successful
[ 1.944853] Run /init as init process
[ 1.944854] with arguments:
[ 1.944854] /init
[ 1.944855] splash
[ 1.944855] with environment:
[ 1.944856] HOME=/
[ 1.944856] TERM=linux
[ 1.944856] BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate
[ 1.944857] calculate=video:amdgpu
[ 1.972179] dracut: Calculate-23
[ 1.994090] raid6: avx2x4 gen() 38474 MB/s
[ 2.011093] raid6: avx2x4 xor() 9347 MB/s
[ 2.028090] raid6: avx2x2 gen() 40851 MB/s
[ 2.045090] raid6: avx2x2 xor() 23707 MB/s
[ 2.062090] raid6: avx2x1 gen() 31334 MB/s
[ 2.079095] raid6: avx2x1 xor() 17986 MB/s
[ 2.096091] raid6: sse2x4 gen() 18131 MB/s
[ 2.113091] raid6: sse2x4 xor() 8646 MB/s
[ 2.130092] raid6: sse2x2 gen() 19899 MB/s
[ 2.147090] raid6: sse2x2 xor() 12132 MB/s
[ 2.164091] raid6: sse2x1 gen() 15350 MB/s
[ 2.181091] raid6: sse2x1 xor() 9161 MB/s
[ 2.181095] raid6: using algorithm avx2x2 gen() 40851 MB/s
[ 2.181095] raid6: .... xor() 23707 MB/s, rmw enabled
[ 2.181097] raid6: using avx2x2 recovery algorithm
[ 2.181629] xor: automatically using best checksumming function avx
[ 2.202239] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no
[ 2.229006] dracut: TuxOnIce premodule started
[ 2.229049] dracut: Kernel has no tuxonice support, aborting
[ 2.268179] AMD-Vi: AMD IOMMUv2 loaded and initialized
[ 2.274999] ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no)
[ 2.275301] acpi device:0b: registered as cooling_device8
[ 2.275339] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:00/input/input0
[ 2.276586] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[ 2.334025] [drm] amdgpu kernel modesetting enabled.
[ 2.337691] amdgpu: Virtual CRAT table created for CPU
[ 2.337699] amdgpu: Topology: Add CPU node
[ 2.337756] checking generic (d0000000 300000) vs hw (d0000000 10000000)
[ 2.337808] Console: switching to colour dummy device 80x25
[ 2.337834] amdgpu 0000:08:00.0: vgaarb: deactivate vga console
[ 2.337895] [drm] initializing kernel modesetting (RENOIR 0x1002:0x1636 0x1458:0xD000 0xDA).
[ 2.337898] amdgpu 0000:08:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[ 2.337904] [drm] register mmio base: 0xFCB00000
[ 2.337905] [drm] register mmio size: 524288
[ 2.337907] [drm] PCIE atomic ops is not supported
[ 2.338961] [drm] add ip block number 0 <soc15_common>
[ 2.338963] [drm] add ip block number 1 <gmc_v9_0>
[ 2.338964] [drm] add ip block number 2 <vega10_ih>
[ 2.338965] [drm] add ip block number 3 <psp>
[ 2.338965] [drm] add ip block number 4 <smu>
[ 2.338966] [drm] add ip block number 5 <gfx_v9_0>
[ 2.338967] [drm] add ip block number 6 <sdma_v4_0>
[ 2.338968] [drm] add ip block number 7 <dm>
[ 2.338969] [drm] add ip block number 8 <vcn_v2_0>
[ 2.338969] [drm] add ip block number 9 <jpeg_v2_0>
[ 2.342449] [drm] BIOS signature incorrect 0 0
[ 2.342466] amdgpu 0000:08:00.0: amdgpu: Fetched VBIOS from ROM BAR
[ 2.342468] amdgpu: ATOM BIOS: 113-RENOIR-031
[ 2.342492] [drm] VCN decode is enabled in VM mode
[ 2.342492] [drm] VCN encode is enabled in VM mode
[ 2.342493] [drm] JPEG decode is enabled in VM mode
[ 2.342509] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 2.342513] amdgpu 0000:08:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
[ 2.342515] amdgpu 0000:08:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[ 2.342516] amdgpu 0000:08:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[ 2.342520] [drm] Detected VRAM RAM=512M, BAR=512M
[ 2.342521] [drm] RAM width 128bits DDR4
[ 2.342553] [drm] amdgpu: 512M of VRAM memory ready
[ 2.342553] [drm] amdgpu: 3072M of GTT memory ready.
[ 2.342556] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 2.342647] [drm] PCIE GART of 1024M enabled.
[ 2.342648] [drm] PTB located at 0x000000F400900000
[ 2.342777] amdgpu 0000:08:00.0: amdgpu: PSP runtime database doesn't exist
[ 2.343439] [drm] Loading DMUB firmware via PSP: version=0x01010026
[ 2.343500] [drm] Found VCN firmware Version ENC: 1.19 DEC: 5 VEP: 0 Revision: 0
[ 2.343505] amdgpu 0000:08:00.0: amdgpu: Will use PSP to load VCN firmware
[ 3.024345] [drm] reserve 0x400000 from 0xf41f800000 for PSP TMR
[ 3.109398] amdgpu 0000:08:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 3.118092] amdgpu 0000:08:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 3.118093] amdgpu 0000:08:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 3.118342] amdgpu 0000:08:00.0: amdgpu: SMU is initialized successfully!
[ 3.119618] [drm] kiq ring mec 2 pipe 1 q 0
[ 3.120047] [drm] Display Core initialized with v3.2.149!
[ 3.120595] [drm] DMUB hardware initialized: version=0x01010026
[ 3.331513] [drm] VCN decode and encode initialized successfully(under DPG Mode).
[ 3.331534] [drm] JPEG decode initialized successfully.
[ 3.332505] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 3.332617] amdgpu: SRAT table not found
[ 3.332619] amdgpu: Virtual CRAT table created for GPU
[ 3.332672] amdgpu: Topology: Add dGPU node [0x1636:0x1002]
[ 3.332676] kfd kfd: amdgpu: added device 1002:1636
[ 3.332687] amdgpu 0000:08:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 6
[ 3.335779] [drm] fb mappable at 0xA0CD3000
[ 3.335781] [drm] vram apper at 0xA0000000
[ 3.335782] [drm] size 7225344
[ 3.335782] [drm] fb depth is 24
[ 3.335783] [drm] pitch is 7168
[ 3.336130] fbcon: amdgpudrmfb (fb0) is primary device
[ 3.422994] Console: switching to colour frame buffer device 224x62
[ 3.442667] amdgpu 0000:08:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 3.448731] amdgpu 0000:08:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[ 3.448736] amdgpu 0000:08:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 3.448738] amdgpu 0000:08:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 3.448739] amdgpu 0000:08:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 3.448740] amdgpu 0000:08:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 3.448741] amdgpu 0000:08:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 3.448742] amdgpu 0000:08:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 3.448743] amdgpu 0000:08:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 3.448744] amdgpu 0000:08:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 3.448746] amdgpu 0000:08:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[ 3.448747] amdgpu 0000:08:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[ 3.448749] amdgpu 0000:08:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[ 3.448750] amdgpu 0000:08:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[ 3.448751] amdgpu 0000:08:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[ 3.448752] amdgpu 0000:08:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[ 3.450500] [drm] Initialized amdgpu 3.42.0 20150101 for 0000:08:00.0 on minor 0
[ 3.456402] dracut: Starting plymouth daemon
[ 3.541318] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[ 3.541405] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[ 3.541467] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[ 3.541546] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 3.541585] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[ 3.548077] ccp 0000:08:00.2: ccp: unable to access the device: you might be running a broken BIOS.
[ 3.549763] cryptd: max_cpu_qlen set to 1000
[ 3.553911] AVX2 version of gcm_enc/dec engaged.
[ 3.553925] AES CTR mode by8 optimization enabled
[ 3.557553] BTRFS: device label DX-23 devid 1 transid 51126 /dev/nvme0n1p1 scanned by (udev-worker) (905)
[ 3.558230] ccp 0000:08:00.2: tee enabled
[ 3.558234] ccp 0000:08:00.2: psp enabled
[ 3.558363] BTRFS: device label Calculate devid 1 transid 133176 /dev/nvme0n1p3 scanned by (udev-worker) (901)
[ 3.559817] BTRFS: device label DX-23 devid 1 transid 51628 /dev/nvme0n1p2 scanned by (udev-worker) (922)
[ 3.579522] dracut: TuxOnIce lvmfix started
[ 3.638701] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[ 3.639044] xhci_hcd 0000:01:00.0: xHCI Host Controller
[ 3.639295] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[ 3.639303] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 3.639364] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 3.639369] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.639370] usb usb1: Product: xHCI Host Controller
[ 3.639371] usb usb1: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 3.639372] usb usb1: SerialNumber: 0000:01:00.0
[ 3.639478] hub 1-0:1.0: USB hub found
[ 3.639489] hub 1-0:1.0: 9 ports detected
[ 3.639636] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.639649] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 3.639650] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.639651] usb usb2: Product: xHCI Host Controller
[ 3.639652] usb usb2: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 3.639653] usb usb2: SerialNumber: 0000:01:00.0
[ 3.639732] hub 2-0:1.0: USB hub found
[ 3.639739] hub 2-0:1.0: 3 ports detected
[ 3.639903] xhci_hcd 0000:08:00.3: xHCI Host Controller
[ 3.639941] xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 3
[ 3.640017] xhci_hcd 0000:08:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[ 3.640295] xhci_hcd 0000:08:00.3: xHCI Host Controller
[ 3.640314] xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 4
[ 3.640316] xhci_hcd 0000:08:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 3.640337] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 3.640339] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.640339] usb usb3: Product: xHCI Host Controller
[ 3.640340] usb usb3: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 3.640341] usb usb3: SerialNumber: 0000:08:00.3
[ 3.640402] hub 3-0:1.0: USB hub found
[ 3.640408] hub 3-0:1.0: 4 ports detected
[ 3.640499] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.640511] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 3.640512] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.640513] usb usb4: Product: xHCI Host Controller
[ 3.640514] usb usb4: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 3.640514] usb usb4: SerialNumber: 0000:08:00.3
[ 3.640563] hub 4-0:1.0: USB hub found
[ 3.640568] hub 4-0:1.0: 2 ports detected
[ 3.640666] xhci_hcd 0000:08:00.4: xHCI Host Controller
[ 3.640685] xhci_hcd 0000:08:00.4: new USB bus registered, assigned bus number 5
[ 3.640758] xhci_hcd 0000:08:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
[ 3.640999] xhci_hcd 0000:08:00.4: xHCI Host Controller
[ 3.641016] xhci_hcd 0000:08:00.4: new USB bus registered, assigned bus number 6
[ 3.641018] xhci_hcd 0000:08:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[ 3.641035] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 3.641037] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.641038] usb usb5: Product: xHCI Host Controller
[ 3.641038] usb usb5: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 3.641039] usb usb5: SerialNumber: 0000:08:00.4
[ 3.641095] hub 5-0:1.0: USB hub found
[ 3.641101] hub 5-0:1.0: 4 ports detected
[ 3.641235] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 3.641248] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 3.641249] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 3.641250] usb usb6: Product: xHCI Host Controller
[ 3.641251] usb usb6: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 3.641251] usb usb6: SerialNumber: 0000:08:00.4
[ 3.641299] hub 6-0:1.0: USB hub found
[ 3.641304] hub 6-0:1.0: 2 ports detected
[ 3.644252] dracut: TuxOnIce udev should be now fully settled
[ 3.650674] BTRFS info (device nvme0n1p1): enabling ssd optimizations
[ 3.650679] BTRFS info (device nvme0n1p1): using free space tree
[ 3.650680] BTRFS info (device nvme0n1p1): has skinny extents
[ 3.677410] dracut: Mounted root filesystem /dev/nvme0n1p1
[ 3.775978] dracut: Switching root
[ 3.880121] usb 3-1: new high-speed USB device number 2 using xhci_hcd
[ 3.942118] usb 1-7: new full-speed USB device number 2 using xhci_hcd
[ 4.008098] usb 3-1: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= b.b3
[ 4.008106] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.056513] hub 3-1:1.0: USB hub found
[ 4.056837] hub 3-1:1.0: 4 ports detected
[ 4.324188] usb 1-7: New USB device found, idVendor=048d, idProduct=5702, bcdDevice= 0.01
[ 4.324195] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.324196] usb 1-7: Product: ITE Device
[ 4.324198] usb 1-7: Manufacturer: ITE Tech. Inc.
[ 4.340127] hid-generic 0003:048D:5702.0001: hiddev96,hidraw0: USB HID v1.12 Device [ITE Tech. Inc. ITE Device] on usb-0000:01:00.0-7/input0
[ 4.347372] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 4.347454] ACPI: button: Power Button [PWRB]
[ 4.347521] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 4.352493] ACPI: button: Power Button [PWRF]
[ 4.353527] acpi_cpufreq: overriding BIOS provided _PSD data
[ 4.367674] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\GSA1.SMBI) (20210730/utaddress-204)
[ 4.367683] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 4.395614] input: PC Speaker as /devices/platform/pcspkr/input/input3
[ 4.405218] snd_hda_intel 0000:08:00.1: Handle vga_switcheroo audio client
[ 4.410152] usb 3-1.1: new low-speed USB device number 3 using xhci_hcd
[ 4.436387] snd_hda_intel 0000:08:00.1: bound 0000:08:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 4.450917] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:08:00.1/sound/card0/input4
[ 4.450973] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:08:00.1/sound/card0/input5
[ 4.451007] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:08:00.1/sound/card0/input6
[ 4.451036] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:08.1/0000:08:00.1/sound/card0/input7
[ 4.451298] kvm: Nested Virtualization enabled
[ 4.451299] SVM: kvm: Nested Paging enabled
[ 4.451314] SVM: Virtual VMLOAD VMSAVE supported
[ 4.451315] SVM: Virtual GIF supported
[ 4.462464] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 4.462471] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 4.462473] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 4.462474] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 4.462475] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 4.462476] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19
[ 4.462477] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18
[ 4.462478] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a
[ 4.469360] EDAC MC: Ver: 3.0.0
[ 4.470038] MCE: In-kernel MCE decoding enabled.
[ 4.476236] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 4.484497] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card1/input8
[ 4.484502] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 4.484536] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card1/input9
[ 4.484564] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card1/input10
[ 4.484590] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card1/input11
[ 4.484617] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:08:00.6/sound/card1/input12
[ 4.485982] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 4.500677] Bridge firewalling registered
[ 4.505117] Intel(R) Wireless WiFi driver for Linux
[ 4.511268] r8169 0000:06:00.0 eth0: RTL8168h/8111h, b4:2e:99:f5:2a:d8, XID 541, IRQ 77
[ 4.511275] r8169 0000:06:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 4.516416] usb 3-1.1: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[ 4.516421] usb 3-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.516423] usb 3-1.1: Product: USB Optical Mouse
[ 4.516424] usb 3-1.1: Manufacturer: Logitech
[ 4.517098] usb 1-8: new full-speed USB device number 3 using xhci_hcd
[ 4.519740] iwlwifi 0000:05:00.0: WRT: Overriding region id 0
[ 4.519745] iwlwifi 0000:05:00.0: WRT: Overriding region id 1
[ 4.519747] iwlwifi 0000:05:00.0: WRT: Overriding region id 2
[ 4.519748] iwlwifi 0000:05:00.0: WRT: Overriding region id 3
[ 4.519748] iwlwifi 0000:05:00.0: WRT: Overriding region id 4
[ 4.519749] iwlwifi 0000:05:00.0: WRT: Overriding region id 6
[ 4.519750] iwlwifi 0000:05:00.0: WRT: Overriding region id 8
[ 4.519751] iwlwifi 0000:05:00.0: WRT: Overriding region id 9
[ 4.519752] iwlwifi 0000:05:00.0: WRT: Overriding region id 10
[ 4.519753] iwlwifi 0000:05:00.0: WRT: Overriding region id 11
[ 4.519754] iwlwifi 0000:05:00.0: WRT: Overriding region id 15
[ 4.519755] iwlwifi 0000:05:00.0: WRT: Overriding region id 16
[ 4.519756] iwlwifi 0000:05:00.0: WRT: Overriding region id 18
[ 4.519757] iwlwifi 0000:05:00.0: WRT: Overriding region id 19
[ 4.519758] iwlwifi 0000:05:00.0: WRT: Overriding region id 20
[ 4.519759] iwlwifi 0000:05:00.0: WRT: Overriding region id 21
[ 4.519760] iwlwifi 0000:05:00.0: WRT: Overriding region id 28
[ 4.520048] iwlwifi 0000:05:00.0: loaded firmware version 46.ea3728ee.0 9260-th-b0-jf-b0-46.ucode op_mode iwlmvm
[ 4.539517] r8169 0000:06:00.0 enp6s0: renamed from eth0
[ 4.549999] wl: loading out-of-tree module taints kernel.
[ 4.550004] wl: module license 'MIXED/Proprietary' taints kernel.
[ 4.550005] Disabling lock debugging due to kernel taint
[ 4.574660] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1.1/3-1.1:1.0/0003:046D:C077.0002/input/input13
[ 4.574734] hid-generic 0003:046D:C077.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:08:00.3-1.1/input0
[ 4.577280] iwlwifi 0000:05:00.0: Detected Intel(R) Wireless-AC 9260 160MHz, REV=0x324
[ 4.583668] thermal thermal_zone0: failed to read out thermal zone (-61)
[ 4.618993] vboxdrv: Found 8 processor cores/threads
[ 4.628846] iwlwifi 0000:05:00.0: base HW address: 38:68:93:f5:42:27
[ 4.636237] vboxdrv: TSC mode is Invariant, tentative frequency 3792842925 Hz
[ 4.636239] vboxdrv: Successfully loaded version 7.0.6 r155176 (interface 0x00330004)
[ 4.650675] VBoxNetFlt: Successfully started.
[ 4.652098] usb 3-1.2: new low-speed USB device number 4 using xhci_hcd
[ 4.652806] VBoxNetAdp: Successfully started.
[ 4.696248] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 4.697454] iwlwifi 0000:05:00.0 wlp5s0: renamed from wlan0
[ 4.759447] usb 3-1.2: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[ 4.759457] usb 3-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.759460] usb 3-1.2: Product: USB Keyboard
[ 4.759463] usb 3-1.2: Manufacturer: Logitech
[ 4.837781] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1.2/3-1.2:1.0/0003:046D:C31C.0003/input/input14
[ 4.886923] usb 1-8: New USB device found, idVendor=8087, idProduct=0025, bcdDevice= 0.02
[ 4.886933] usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.890349] hid-generic 0003:046D:C31C.0003: input,hidraw2: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:08:00.3-1.2/input0
[ 4.901871] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1.2/3-1.2:1.1/0003:046D:C31C.0004/input/input15
[ 4.953261] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1.2/3-1.2:1.1/0003:046D:C31C.0004/input/input16
[ 4.953355] hid-generic 0003:046D:C31C.0004: input,hiddev97,hidraw3: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:08:00.3-1.2/input1
[ 4.986764] Bluetooth: Core ver 2.22
[ 4.986804] NET: Registered PF_BLUETOOTH protocol family
[ 4.986806] Bluetooth: HCI device and connection manager initialized
[ 4.986813] Bluetooth: HCI socket layer initialized
[ 4.986816] Bluetooth: L2CAP socket layer initialized
[ 4.986821] Bluetooth: SCO socket layer initialized
[ 4.992288] usbcore: registered new interface driver btusb
[ 4.995895] Bluetooth: hci0: Bootloader revision 0.1 build 42 week 52 2015
[ 5.000935] Bluetooth: hci0: Device revision is 2
[ 5.000943] Bluetooth: hci0: Secure boot is enabled
[ 5.000945] Bluetooth: hci0: OTP lock is enabled
[ 5.000947] Bluetooth: hci0: API lock is enabled
[ 5.000948] Bluetooth: hci0: Debug lock is disabled
[ 5.000949] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 5.002940] Bluetooth: hci0: Found device firmware: intel/ibt-18-16-1.sfi
[ 5.030133] usb 3-1.3: new high-speed USB device number 5 using xhci_hcd
[ 5.337608] usb 3-1.3: New USB device found, idVendor=046d, idProduct=0825, bcdDevice= 0.12
[ 5.337612] usb 3-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=2
[ 5.337613] usb 3-1.3: SerialNumber: 85BA8650
[ 5.396229] zram: Added device: zram0
[ 5.416434] zram0: detected capacity change from 0 to 63143488
[ 5.423560] Adding 31571740k swap on /dev/zram0. Priority:100 extents:1 across:31571740k SSFS
[ 5.427258] mc: Linux media interface: v0.10
[ 5.431283] videodev: Linux video capture interface: v2.00
[ 5.446142] BTRFS info (device nvme0n1p3): enabling ssd optimizations
[ 5.446146] BTRFS info (device nvme0n1p3): using free space tree
[ 5.446147] BTRFS info (device nvme0n1p3): has skinny extents
[ 5.478173] BTRFS info (device nvme0n1p3): checking UUID tree
[ 5.864505] fuse: init (API version 7.34)
[ 6.005144] Generic FE-GE Realtek PHY r8169-0-600:00: attached PHY driver (mii_bus:phy_addr=r8169-0-600:00, irq=MAC)
[ 6.179242] r8169 0000:06:00.0 enp6s0: Link is Down
[ 6.180770] br0: port 1(enp6s0) entered blocking state
[ 6.180786] br0: port 1(enp6s0) entered disabled state
[ 6.180910] device enp6s0 entered promiscuous mode
[ 6.186990] device br0 entered promiscuous mode
[ 6.188671] br0: port 1(enp6s0) entered blocking state
[ 6.188676] br0: port 1(enp6s0) entered forwarding state
[ 6.390222] ACPI: \_TZ_.TZ10: Invalid passive threshold
[ 6.390496] thermal LNXTHERM:00: registered as thermal_zone1
[ 6.390499] ACPI: thermal: Thermal Zone [TZ10] (17 C)
[ 7.029422] br0: port 1(enp6s0) entered disabled state
[ 7.059104] usb 3-1.3: set resolution quirk: cval->res = 384
[ 7.059321] usbcore: registered new interface driver snd-usb-audio
[ 7.059344] usb 3-1.3: Found UVC 1.00 device <unnamed> (046d:0825)
[ 7.099037] input: UVC Camera (046d:0825) as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/usb3/3-1/3-1.3/3-1.3:1.0/input/input17
[ 7.099145] usbcore: registered new interface driver uvcvideo
[ 9.406291] r8169 0000:06:00.0 enp6s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 9.406310] IPv6: ADDRCONF(NETDEV_CHANGE): enp6s0: link becomes ready
[ 9.406370] br0: port 1(enp6s0) entered blocking state
[ 9.406374] br0: port 1(enp6s0) entered forwarding state
[ 9.406509] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[ 9.619219] Bluetooth: hci0: Waiting for firmware download to complete
[ 9.619950] Bluetooth: hci0: Firmware loaded in 4508794 usecs
[ 9.620038] Bluetooth: hci0: Waiting for device to boot
[ 9.635966] Bluetooth: hci0: Device booted in 15611 usecs
[ 9.636082] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-18-16-1.ddc
[ 9.644805] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 9.659834] Bluetooth: hci0: Firmware revision 0.1 build 108 week 45 2022
[ 16.076487] Key type cifs.spnego registered
[ 16.076503] Key type cifs.idmap registered
[ 16.076815] CIFS: No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 on mount.
[ 16.076818] CIFS: Attempting to mount \\domain.spb.calculate.ru\remote
[ 16.696581] usb 3-1.3: reset high-speed USB device number 5 using xhci_hcd
[ 17.755075] Key type encrypted registered
[ 19.761593] ecryptfs_parse_options: eCryptfs: unrecognized option [passphrase_passwd_fd=0]
[ 19.858096] CIFS: Attempting to mount \\domain.dmz.calculate.ru\share
[ 20.084360] CIFS: Attempting to mount \\domain.dmz.calculate.ru\homes
[ 20.491910] CIFS: Attempting to mount \\ftp.spb.calculate.ru\ftp
[ 20.779226] CIFS: Attempting to mount \\domain.msk.calculate.ru\homes
[ 21.456926] CIFS: Attempting to mount \\domain.msk.calculate.ru\share
[ 21.823846] CIFS: Attempting to mount \\domain.verevo.calculate.ru\homes
[ 22.144883] CIFS: Attempting to mount \\domain.verevo.calculate.ru\share
[ 33.190156] rdesktop[6070]: segfault at 0 ip 00005645b2dd0f9d sp 00007ffe89834780 error 4 in rdesktop[5645b2d8a000+4a000]
[ 33.190168] Code: 89 ef 31 c0 be 00 20 00 00 e8 0f 98 fb ff 59 31 c0 5e 31 c9 48 8d 15 d2 15 01 00 48 89 ef 48 8d 35 cc 15 01 00 e8 23 f5 ff ff <80> 38 6e 75 0a 80 78 01 6f 0f 84 04 01 00 00 48 8b 5c 24 10 4c 8d
[ 2929.975331] usb 5-2: new high-speed USB device number 2 using xhci_hcd
[ 2930.105315] usb 5-2: New USB device found, idVendor=18d1, idProduct=4ee7, bcdDevice= 3.18
[ 2930.105329] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2930.105332] usb 5-2: Product: Android
[ 2930.105335] usb 5-2: Manufacturer: Android
[ 2930.105338] usb 5-2: SerialNumber: 09b8ff8d0805
[ 2936.785429] usb 3-1.3: reset high-speed USB device number 5 using xhci_hcd
[ 2946.078495] usb 5-2: USB disconnect, device number 2
[ 2946.487334] usb 5-2: new high-speed USB device number 3 using xhci_hcd
[ 2946.617664] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[ 2946.617678] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2946.617681] usb 5-2: Product: Android
[ 2946.617684] usb 5-2: Manufacturer: Android
[ 2946.617687] usb 5-2: SerialNumber: 09b8ff8d0805
[ 3101.218517] usb 5-2: USB disconnect, device number 3
[ 3105.599104] usb 5-2: new high-speed USB device number 4 using xhci_hcd
[ 3105.728515] usb 5-2: New USB device found, idVendor=18d1, idProduct=d00d, bcdDevice= 1.00
[ 3105.728526] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3105.728529] usb 5-2: Product: Android
[ 3105.728532] usb 5-2: Manufacturer: Google
[ 3105.728534] usb 5-2: SerialNumber: 09b8ff8d0805
[ 3392.090451] usb 5-2: USB disconnect, device number 4
[ 3488.695326] usb 5-2: new high-speed USB device number 5 using xhci_hcd
[ 3488.825282] usb 5-2: New USB device found, idVendor=2717, idProduct=ff40, bcdDevice= 3.18
[ 3488.825295] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3488.825298] usb 5-2: Product: Android
[ 3488.825301] usb 5-2: Manufacturer: Android
[ 3488.825304] usb 5-2: SerialNumber: 09b8ff8d0805
[ 3534.395503] usb 5-2: USB disconnect, device number 5
[ 4860.335313] usb 5-2: new high-speed USB device number 6 using xhci_hcd
[ 4860.466326] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[ 4860.466340] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4860.466343] usb 5-2: Product: Android
[ 4860.466346] usb 5-2: Manufacturer: Android
[ 4860.466348] usb 5-2: SerialNumber: 09b8ff8d0805
[ 5436.995449] usb 5-2: USB disconnect, device number 6
[ 5437.407253] usb 5-2: new high-speed USB device number 7 using xhci_hcd
[ 5437.993325] usb 5-2: device descriptor read/64, error -32
[ 5438.215285] usb 5-2: new high-speed USB device number 8 using xhci_hcd
[ 5438.346934] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[ 5438.346944] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5438.346947] usb 5-2: Product: Android
[ 5438.346949] usb 5-2: Manufacturer: Android
[ 5438.346951] usb 5-2: SerialNumber: 09b8ff8d0805
[ 5552.284120] usb 5-2: USB disconnect, device number 8
[ 5608.536029] usb 5-2: new high-speed USB device number 9 using xhci_hcd
[ 5608.665468] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[ 5608.665480] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5608.665483] usb 5-2: Product: Android
[ 5608.665486] usb 5-2: Manufacturer: Android
[ 5608.665488] usb 5-2: SerialNumber: 09b8ff8d0805
[ 6498.516943] usb 5-2: USB disconnect, device number 9
[ 6552.951282] usb 5-2: new high-speed USB device number 10 using xhci_hcd
[ 6553.081093] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[ 6553.081108] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 6553.081112] usb 5-2: Product: Android
[ 6553.081116] usb 5-2: Manufacturer: Android
[ 6553.081119] usb 5-2: SerialNumber: 09b8ff8d0805
[ 7360.425768] usb 5-2: USB disconnect, device number 10
[15260.327186] usb 5-2: new high-speed USB device number 11 using xhci_hcd
[15260.458479] usb 5-2: New USB device found, idVendor=18d1, idProduct=4ee7, bcdDevice= 3.18
[15260.458493] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[15260.458496] usb 5-2: Product: Android
[15260.458499] usb 5-2: Manufacturer: Android
[15260.458502] usb 5-2: SerialNumber: 6c1e493d0205
[15302.364309] usb 5-2: USB disconnect, device number 11
[15302.589172] usb 5-2: new high-speed USB device number 12 using xhci_hcd
[15302.853211] usb usb5-port2: Cannot enable. Maybe the USB cable is bad?
[15302.967181] usb 5-2: new high-speed USB device number 13 using xhci_hcd
[15303.097457] usb 5-2: New USB device found, idVendor=18d1, idProduct=4ee7, bcdDevice= 3.18
[15303.097470] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[15303.097474] usb 5-2: Product: Android
[15303.097477] usb 5-2: Manufacturer: Android
[15303.097479] usb 5-2: SerialNumber: 6c1e493d0205
[15325.719873] usb 5-2: USB disconnect, device number 13
[15326.143172] usb 5-2: new high-speed USB device number 14 using xhci_hcd
[15326.273405] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[15326.273418] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[15326.273421] usb 5-2: Product: Android
[15326.273424] usb 5-2: Manufacturer: Android
[15326.273427] usb 5-2: SerialNumber: 6c1e493d0205
[15335.479724] usb 5-2: USB disconnect, device number 14
[15340.062968] usb 5-2: new high-speed USB device number 15 using xhci_hcd
[15340.192318] usb 5-2: New USB device found, idVendor=18d1, idProduct=d00d, bcdDevice= 1.00
[15340.192327] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[15340.192330] usb 5-2: Product: Android
[15340.192333] usb 5-2: Manufacturer: Google
[15340.192335] usb 5-2: SerialNumber: 6c1e493d0205
[15724.542847] usb 5-2: USB disconnect, device number 15
[15809.799961] usb 5-2: new high-speed USB device number 16 using xhci_hcd
[15809.930312] usb 5-2: New USB device found, idVendor=2717, idProduct=ff40, bcdDevice= 3.18
[15809.930323] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[15809.930326] usb 5-2: Product: Android
[15809.930329] usb 5-2: Manufacturer: Android
[15809.930331] usb 5-2: SerialNumber: 6c1e493d0205
[15814.656965] usb 5-2: USB disconnect, device number 16
[15902.007171] usb 5-2: new high-speed USB device number 17 using xhci_hcd
[15902.137022] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[15902.137032] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[15902.137036] usb 5-2: Product: Android
[15902.137038] usb 5-2: Manufacturer: Android
[15902.137041] usb 5-2: SerialNumber: 6c1e493d0205
[16008.253939] usb 5-2: USB disconnect, device number 17
[16064.774923] usb 5-2: new high-speed USB device number 18 using xhci_hcd
[16064.905425] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[16064.905438] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[16064.905441] usb 5-2: Product: Android
[16064.905444] usb 5-2: Manufacturer: Android
[16064.905447] usb 5-2: SerialNumber: 6c1e493d0205
[16175.756707] usb 5-2: USB disconnect, device number 18
[16229.974902] usb 5-2: new high-speed USB device number 19 using xhci_hcd
[16230.104323] usb 5-2: New USB device found, idVendor=2717, idProduct=ff48, bcdDevice= 3.18
[16230.104328] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[16230.104329] usb 5-2: Product: Android
[16230.104330] usb 5-2: Manufacturer: Android
[16230.104331] usb 5-2: SerialNumber: 6c1e493d0205
[16294.895664] usb 5-2: USB disconnect, device number 19
[87951.453580] ecryptfs_parse_options: eCryptfs: unrecognized option [passphrase_passwd_fd=0]
[87951.549334] CIFS: Attempting to mount \\domain.dmz.calculate.ru\share
[87951.714200] CIFS: Attempting to mount \\domain.dmz.calculate.ru\homes
[87952.143781] CIFS: Attempting to mount \\ftp.spb.calculate.ru\ftp
[87952.375993] CIFS: Attempting to mount \\domain.msk.calculate.ru\homes
[87953.026317] CIFS: Attempting to mount \\domain.msk.calculate.ru\share
[87953.380016] CIFS: Attempting to mount \\domain.verevo.calculate.ru\homes
[87953.688165] CIFS: Attempting to mount \\domain.verevo.calculate.ru\share
[87958.551199] rdesktop[2842]: segfault at 0 ip 000055cccb2bef9d sp 00007ffcaf72e050 error 4 in rdesktop[55cccb278000+4a000]
[87958.551209] Code: 89 ef 31 c0 be 00 20 00 00 e8 0f 98 fb ff 59 31 c0 5e 31 c9 48 8d 15 d2 15 01 00 48 89 ef 48 8d 35 cc 15 01 00 e8 23 f5 ff ff <80> 38 6e 75 0a 80 78 01 6f 0f 84 04 01 00 00 48 8b 5c 24 10 4c 8d
[91911.744012] usb 3-2: new high-speed USB device number 6 using xhci_hcd
[91911.875355] usb 3-2: New USB device found, idVendor=125f, idProduct=dc1a, bcdDevice=11.00
[91911.875368] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[91911.875372] usb 3-2: Product: ADATA USB Flash Drive
[91911.875375] usb 3-2: Manufacturer: ADATA
[91911.875377] usb 3-2: SerialNumber: 20109045700900A0
[91911.876134] usb-storage 3-2:1.0: USB Mass Storage device detected
[91911.876370] scsi host6: usb-storage 3-2:1.0
[91911.900192] usbcore: registered new interface driver uas
[91912.117816] usb 3-2: USB disconnect, device number 6
[92963.575220] usb 3-2: new high-speed USB device number 7 using xhci_hcd
[92963.706342] usb 3-2: New USB device found, idVendor=125f, idProduct=dc1a, bcdDevice=11.00
[92963.706353] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[92963.706356] usb 3-2: Product: ADATA USB Flash Drive
[92963.706359] usb 3-2: Manufacturer: ADATA
[92963.706361] usb 3-2: SerialNumber: 2010904560010106
[92963.707157] usb-storage 3-2:1.0: USB Mass Storage device detected
[92963.707524] scsi host6: usb-storage 3-2:1.0
[92964.782927] scsi 6:0:0:0: Direct-Access ADATA USB Flash Drive 1100 PQ: 0 ANSI: 6
[92964.783655] sd 6:0:0:0: [sda] 121241600 512-byte logical blocks: (62.1 GB/57.8 GiB)
[92964.783835] sd 6:0:0:0: [sda] Write Protect is off
[92964.783838] sd 6:0:0:0: [sda] Mode Sense: 43 00 00 00
[92964.784023] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[92964.786618] sda: sda1
[92964.787469] sd 6:0:0:0: [sda] Attached SCSI removable disk
[93043.100601] sda:
[93043.103577] sda:
[93043.240576] sda: sda1 sda2
[93110.896718] BTRFS: device label LiveData devid 1 transid 6 /dev/sda2 scanned by mkfs.btrfs (12030)
[93112.644657] loop0: detected capacity change from 0 to 6092800
[93112.656653] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[93112.656656] UDF-fs: Scanning with blocksize 512 failed
[93112.656838] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[93112.656839] UDF-fs: Scanning with blocksize 1024 failed
[93112.656968] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[93112.659996] loop1: detected capacity change from 0 to 5897736
[93112.661921] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[93115.930224] loop0: detected capacity change from 0 to 6092800
[93115.932108] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[93115.932111] UDF-fs: Scanning with blocksize 512 failed
[93115.932425] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[93115.932429] UDF-fs: Scanning with blocksize 1024 failed
[93115.932625] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[93115.935371] loop1: detected capacity change from 0 to 5897736
[93118.724232] sda: sda1 sda2
[93118.726972] sda: sda1 sda2
[93118.841167] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[93118.890833] loop0: detected capacity change from 0 to 6092800
[93118.892760] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[93118.892765] UDF-fs: Scanning with blocksize 512 failed
[93118.893092] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[93118.893095] UDF-fs: Scanning with blocksize 1024 failed
[93118.893205] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[93624.474298] sda: sda1 sda2
[93624.476388] sda: sda1 sda2
[93626.905389] BTRFS info (device sda2): using free space tree
[93626.905396] BTRFS info (device sda2): has skinny extents
[93626.905397] BTRFS info (device sda2): flagging fs with big metadata feature
[93626.913262] BTRFS info (device sda2): checking UUID tree
[97906.448168] sda: sda1 sda2 sda3
[97906.451346] sda: sda1 sda2 sda3
[97938.611898] loop0: detected capacity change from 0 to 6092800
[97938.613538] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[97938.613541] UDF-fs: Scanning with blocksize 512 failed
[97938.613903] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[97938.613908] UDF-fs: Scanning with blocksize 1024 failed
[97938.614149] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[97938.616547] loop1: detected capacity change from 0 to 5897736
[97939.681247] loop0: detected capacity change from 0 to 6092800
[97939.683370] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[97939.683375] UDF-fs: Scanning with blocksize 512 failed
[97939.683729] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[97939.683736] UDF-fs: Scanning with blocksize 1024 failed
[97939.684033] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[97939.685995] loop1: detected capacity change from 0 to 5897736
[97942.950191] sda: sda1 sda2 sda3
[97942.952844] sda: sda1 sda2 sda3
[97943.070835] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[97943.100143] loop0: detected capacity change from 0 to 6092800
[97943.101553] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[97943.101557] UDF-fs: Scanning with blocksize 512 failed
[97943.101811] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[97943.101815] UDF-fs: Scanning with blocksize 1024 failed
[97943.102108] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[98487.242308] sda: sda1 sda2 sda3
[98487.245584] sda: sda1 sda2 sda3
[98487.708592] sda: sda1 sda2 sda3
[98489.829590] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[98526.258694] usb 3-2: USB disconnect, device number 7
[98526.269928] sd 6:0:0:0: [sda] Synchronizing SCSI cache
[98526.269964] sd 6:0:0:0: [sda] Synchronize Cache(10) failed: Result: hostbyte=0x01 driverbyte=DRIVER_OK
[99575.149209] usb 3-2: new high-speed USB device number 8 using xhci_hcd
[99575.279872] usb 3-2: New USB device found, idVendor=125f, idProduct=dc1a, bcdDevice=11.00
[99575.279882] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[99575.279886] usb 3-2: Product: ADATA USB Flash Drive
[99575.279889] usb 3-2: Manufacturer: ADATA
[99575.279891] usb 3-2: SerialNumber: 20109045700900A0
[99575.280628] usb-storage 3-2:1.0: USB Mass Storage device detected
[99575.281149] scsi host6: usb-storage 3-2:1.0
[99576.373502] scsi 6:0:0:0: Direct-Access ADATA USB Flash Drive 1100 PQ: 0 ANSI: 6
[99576.374121] sd 6:0:0:0: [sda] 121241600 512-byte logical blocks: (62.1 GB/57.8 GiB)
[99576.374254] sd 6:0:0:0: [sda] Write Protect is off
[99576.374257] sd 6:0:0:0: [sda] Mode Sense: 43 00 00 00
[99576.374375] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[99576.376887] sda: sda1
[99576.377719] sd 6:0:0:0: [sda] Attached SCSI removable disk
[99576.467912] BTRFS: device label CL-20230425 devid 1 transid 16 /dev/sda1 scanned by (udev-worker) (23017)
[99611.323248] usb 3-2: USB disconnect, device number 8
[99611.332907] sd 6:0:0:0: [sda] Synchronizing SCSI cache
[99611.332932] sd 6:0:0:0: [sda] Synchronize Cache(10) failed: Result: hostbyte=0x01 driverbyte=DRIVER_OK
[99616.248249] usb 3-2: new high-speed USB device number 9 using xhci_hcd
[99616.379467] usb 3-2: New USB device found, idVendor=125f, idProduct=dc1a, bcdDevice=11.00
[99616.379481] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[99616.379484] usb 3-2: Product: ADATA USB Flash Drive
[99616.379487] usb 3-2: Manufacturer: ADATA
[99616.379489] usb 3-2: SerialNumber: 20109045700900A0
[99616.380854] usb-storage 3-2:1.0: USB Mass Storage device detected
[99616.381131] scsi host6: usb-storage 3-2:1.0
[99617.461513] scsi 6:0:0:0: Direct-Access ADATA USB Flash Drive 1100 PQ: 0 ANSI: 6
[99617.462356] sd 6:0:0:0: [sda] 121241600 512-byte logical blocks: (62.1 GB/57.8 GiB)
[99617.462535] sd 6:0:0:0: [sda] Write Protect is off
[99617.462540] sd 6:0:0:0: [sda] Mode Sense: 43 00 00 00
[99617.462666] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[99617.465571] sda: sda1
[99617.466767] sd 6:0:0:0: [sda] Attached SCSI removable disk
[99629.691455] sda: sda1 sda2 sda3
[99629.695453] sda: sda1 sda2 sda3
[99653.881485] loop0: detected capacity change from 0 to 6092800
[99653.883222] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[99653.883226] UDF-fs: Scanning with blocksize 512 failed
[99653.883474] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[99653.883475] UDF-fs: Scanning with blocksize 1024 failed
[99653.883655] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[99653.887616] loop1: detected capacity change from 0 to 5897736
[99654.946267] loop0: detected capacity change from 0 to 6092800
[99654.947990] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[99654.947994] UDF-fs: Scanning with blocksize 512 failed
[99654.948124] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[99654.948125] UDF-fs: Scanning with blocksize 1024 failed
[99654.948545] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[99654.950525] loop1: detected capacity change from 0 to 5897736
[99658.253240] sda: sda1 sda2 sda3
[99658.256031] sda: sda1 sda2 sda3
[99658.361647] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[99658.405013] loop0: detected capacity change from 0 to 6092800
[99658.406671] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[99658.406675] UDF-fs: Scanning with blocksize 512 failed
[99658.407028] UDF-fs: warning (device loop0): udf_load_vrs: No anchor found
[99658.407033] UDF-fs: Scanning with blocksize 1024 failed
[99658.407188] UDF-fs: INFO Mounting volume 'CLDX-20210915', timestamp 2021/09/15 11:36 (10b4)
[100074.176083] sda: sda1 sda2 sda3
[100074.179258] sda: sda1 sda2 sda3
[100076.720073] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[100082.212267] usb 3-2: USB disconnect, device number 9
[100082.228937] sd 6:0:0:0: [sda] Synchronizing SCSI cache
[100082.228963] sd 6:0:0:0: [sda] Synchronize Cache(10) failed: Result: hostbyte=0x01 driverbyte=DRIVER_OK
[108964.412221] CIFS: Attempting to mount \\domain.spb.calculate.ru\remote
[113323.913762] ecryptfs_parse_options: eCryptfs: unrecognized option [passphrase_passwd_fd=0]
[113324.021122] CIFS: Attempting to mount \\domain.dmz.calculate.ru\share
[113324.233459] CIFS: Attempting to mount \\domain.dmz.calculate.ru\homes
[113324.620955] CIFS: Attempting to mount \\ftp.spb.calculate.ru\ftp
[113324.867913] CIFS: Attempting to mount \\domain.msk.calculate.ru\homes
[113325.562173] CIFS: Attempting to mount \\domain.msk.calculate.ru\share
[113325.919411] CIFS: Attempting to mount \\domain.verevo.calculate.ru\homes
[113326.230069] CIFS: Attempting to mount \\domain.verevo.calculate.ru\share
[113328.434956] rdesktop[12936]: segfault at 0 ip 000055a6b5ce6f9d sp 00007ffe820e5cb0 error 4 in rdesktop[55a6b5ca0000+4a000]
[113328.434968] Code: 89 ef 31 c0 be 00 20 00 00 e8 0f 98 fb ff 59 31 c0 5e 31 c9 48 8d 15 d2 15 01 00 48 89 ef 48 8d 35 cc 15 01 00 e8 23 f5 ff ff <80> 38 6e 75 0a 80 78 01 6f 0f 84 04 01 00 00 48 8b 5c 24 10 4c 8d
[115504.181676] usb 5-1: new full-speed USB device number 20 using xhci_hcd
[115504.326561] usb 5-1: New USB device found, idVendor=1b3f, idProduct=2008, bcdDevice= 1.00
[115504.326569] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[115504.326571] usb 5-1: Product: USB Audio Device
[115504.326574] usb 5-1: Manufacturer: GeneralPlus
[115504.657778] input: GeneralPlus USB Audio Device as /devices/pci0000:00/0000:00:08.1/0000:08:00.4/usb5/5-1/5-1:1.3/0003:1B3F:2008.0005/input/input18
[115504.709795] hid-generic 0003:1B3F:2008.0005: input,hidraw4: USB HID v2.01 Device [GeneralPlus USB Audio Device] on usb-0000:08:00.4-1/input3
[115540.744009] usb 3-1.3: USB disconnect, device number 5
[115570.095671] usb 1-4: new high-speed USB device number 4 using xhci_hcd
[115570.570562] usb 1-4: New USB device found, idVendor=046d, idProduct=0825, bcdDevice= 0.12
[115570.570566] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=2
[115570.570567] usb 1-4: SerialNumber: 85BA8650
[115570.577592] usb 1-4: Found UVC 1.00 device <unnamed> (046d:0825)
[115570.739189] input: UVC Camera (046d:0825) as /devices/pci0000:00/0000:00:02.1/0000:01:00.0/usb1/1-4/1-4:1.0/input/input19
[115572.170722] usb 1-4: set resolution quirk: cval->res = 384
[117059.539215] usb 5-1: USB disconnect, device number 20
[119190.065527] usb 1-4: reset high-speed USB device number 4 using xhci_hcd
|