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 | [ 0.000000] Linux version 6.6.32-calculate (root@localhost) (gcc (Gentoo 13.2.1_p20240210 p14) 13.2.1 20240210, GNU ld (Gentoo 2.42 p3) 2.42.0) #1 SMP PREEMPT_DYNAMIC Wed Jun 5 05:19:39 UTC 2024
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz root=live:LABEL=CLDX-20240815 init=/linuxrc rd.live.squashimg=livecd.squashfs nodevfs quiet noresume splash calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:amdgpu,composite:on
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000be03afff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000be03b000-0x00000000be07bfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000be07c000-0x00000000be08bfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000be08c000-0x00000000be478fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000be479000-0x00000000bedc8fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bedc9000-0x00000000bedc9fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bedca000-0x00000000befcffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000befd0000-0x00000000bf44bfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bf44c000-0x00000000bf7dcfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bf7dd000-0x00000000bf7fffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100001000-0x000000023fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x784a7018-0x784c3c57] usable ==> usable
[ 0.000000] e820: update [mem 0x784a7018-0x784c3c57] usable ==> usable
[ 0.000000] e820: update [mem 0x78496018-0x784a6857] usable ==> usable
[ 0.000000] e820: update [mem 0x78496018-0x784a6857] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000078496017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000078496018-0x00000000784a6857] usable
[ 0.000000] reserve setup_data: [mem 0x00000000784a6858-0x00000000784a7017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000784a7018-0x00000000784c3c57] usable
[ 0.000000] reserve setup_data: [mem 0x00000000784c3c58-0x00000000be03afff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000be03b000-0x00000000be07bfff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000be07c000-0x00000000be08bfff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x00000000be08c000-0x00000000be478fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000be479000-0x00000000bedc8fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000bedc9000-0x00000000bedc9fff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000bedca000-0x00000000befcffff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000befd0000-0x00000000bf44bfff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000bf44c000-0x00000000bf7dcfff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000bf7dd000-0x00000000bf7fffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec20000-0x00000000fec20fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed61000-0x00000000fed70fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fef00000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100001000-0x000000023fffffff] usable
[ 0.000000] efi: EFI v2.3.1 by American Megatrends
[ 0.000000] efi: ACPI=0xbe085000 ACPI 2.0=0xbe085000 SMBIOS=0xf04c0 MOKvar=0xbea6b000 INITRD=0xaf67a898
[ 0.000000] efi: Remove mem64: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
[ 0.000000] e820: remove [mem 0xf8000000-0xfbffffff] reserved
[ 0.000000] efi: Not removing mem65: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem66: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem67: MMIO range=[0xfec20000-0xfec20fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem68: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem69: MMIO range=[0xfed61000-0xfed70fff] (64KB) from e820 map
[ 0.000000] efi: Not removing mem70: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
[ 0.000000] efi: Remove mem71: MMIO range=[0xfef00000-0xffffffff] (17MB) from e820 map
[ 0.000000] e820: remove [mem 0xfef00000-0xffffffff] reserved
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./970A-DS3P, BIOS FD 02/26/2016
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2611.925 MHz processor
[ 0.001534] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001539] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001549] last_pfn = 0x240000 max_arch_pfn = 0x400000000
[ 0.001560] total RAM covered: 3064M
[ 0.001889] Found optimal setting for mtrr clean up
[ 0.001890] gran_size: 64K chunk_size: 16M num_reg: 3 lose cover RAM: 0G
[ 0.001896] MTRR map: 8 entries (5 fixed + 3 variable; max 22), built from 9 variable MTRRs
[ 0.001900] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.002048] e820: update [mem 0xbf800000-0xffffffff] usable ==> reserved
[ 0.002058] last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[ 0.006405] found SMP MP-table at [mem 0x000fd7f0-0x000fd7ff]
[ 0.006436] Using GB pages for direct mapping
[ 0.008195] Secure boot disabled
[ 0.008196] RAMDISK: [mem 0x78eca000-0x7e54bfff]
[ 0.008219] ACPI: Early table checksum verification disabled
[ 0.008222] ACPI: RSDP 0x00000000BE085000 000024 (v02 ALASKA)
[ 0.008228] ACPI: XSDT 0x00000000BE085070 00005C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.008234] ACPI: FACP 0x00000000BE08A420 0000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
[ 0.008240] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20230628/tbfadt-615)
[ 0.008246] ACPI: DSDT 0x00000000BE085158 0052C7 (v02 ALASKA A M I 00000088 INTL 20051117)
[ 0.008250] ACPI: FACS 0x00000000BE473F80 000040
[ 0.008253] ACPI: APIC 0x00000000BE08A518 00007E (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.008257] ACPI: FPDT 0x00000000BE08A598 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.008261] ACPI: MCFG 0x00000000BE08A5E0 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
[ 0.008265] ACPI: HPET 0x00000000BE08A620 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
[ 0.008269] ACPI: SSDT 0x00000000BE08A658 0008BC (v01 AMD POWERNOW 00000001 AMD 00000001)
[ 0.008273] ACPI: IVRS 0x00000000BE08AF18 0000D0 (v01 AMD RD890S 00202031 AMD 00000000)
[ 0.008277] ACPI: Reserving FACP table memory at [mem 0xbe08a420-0xbe08a513]
[ 0.008279] ACPI: Reserving DSDT table memory at [mem 0xbe085158-0xbe08a41e]
[ 0.008280] ACPI: Reserving FACS table memory at [mem 0xbe473f80-0xbe473fbf]
[ 0.008281] ACPI: Reserving APIC table memory at [mem 0xbe08a518-0xbe08a595]
[ 0.008283] ACPI: Reserving FPDT table memory at [mem 0xbe08a598-0xbe08a5db]
[ 0.008284] ACPI: Reserving MCFG table memory at [mem 0xbe08a5e0-0xbe08a61b]
[ 0.008285] ACPI: Reserving HPET table memory at [mem 0xbe08a620-0xbe08a657]
[ 0.008287] ACPI: Reserving SSDT table memory at [mem 0xbe08a658-0xbe08af13]
[ 0.008288] ACPI: Reserving IVRS table memory at [mem 0xbe08af18-0xbe08afe7]
[ 0.008353] Scanning NUMA topology in Northbridge 24
[ 0.008364] No NUMA configuration found
[ 0.008365] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
[ 0.008376] NODE_DATA(0) allocated [mem 0x23ffd3000-0x23fffdfff]
[ 0.008762] Zone ranges:
[ 0.008763] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.008765] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.008767] Normal [mem 0x0000000100000000-0x000000023fffffff]
[ 0.008769] Device empty
[ 0.008771] Movable zone start for each node
[ 0.008774] Early memory node ranges
[ 0.008775] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.008777] node 0: [mem 0x0000000000100000-0x00000000be03afff]
[ 0.008779] node 0: [mem 0x00000000bedc9000-0x00000000bedc9fff]
[ 0.008780] node 0: [mem 0x00000000befd0000-0x00000000bf44bfff]
[ 0.008781] node 0: [mem 0x00000000bf7dd000-0x00000000bf7fffff]
[ 0.008783] node 0: [mem 0x0000000100001000-0x000000023fffffff]
[ 0.008785] Initmem setup node 0 [mem 0x0000000000001000-0x000000023fffffff]
[ 0.008793] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.008859] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.024038] On node 0, zone DMA32: 3470 pages in unavailable ranges
[ 0.024076] On node 0, zone DMA32: 518 pages in unavailable ranges
[ 0.024100] On node 0, zone DMA32: 913 pages in unavailable ranges
[ 0.049802] On node 0, zone Normal: 2049 pages in unavailable ranges
[ 0.049968] ACPI: PM-Timer IO Port: 0x808
[ 0.049978] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.049989] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
[ 0.049993] IOAPIC[1]: apic_id 6, version 33, address 0xfec20000, GSI 24-55
[ 0.049996] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.049999] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.050004] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.050005] ACPI: HPET id: 0x43538210 base: 0xfed00000
[ 0.050011] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.050036] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.050039] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.050041] PM: hibernation: Registered nosave memory: [mem 0x78496000-0x78496fff]
[ 0.050044] PM: hibernation: Registered nosave memory: [mem 0x784a6000-0x784a6fff]
[ 0.050045] PM: hibernation: Registered nosave memory: [mem 0x784a7000-0x784a7fff]
[ 0.050048] PM: hibernation: Registered nosave memory: [mem 0x784c3000-0x784c3fff]
[ 0.050050] PM: hibernation: Registered nosave memory: [mem 0xbe03b000-0xbe07bfff]
[ 0.050051] PM: hibernation: Registered nosave memory: [mem 0xbe07c000-0xbe08bfff]
[ 0.050053] PM: hibernation: Registered nosave memory: [mem 0xbe08c000-0xbe478fff]
[ 0.050054] PM: hibernation: Registered nosave memory: [mem 0xbe479000-0xbedc8fff]
[ 0.050056] PM: hibernation: Registered nosave memory: [mem 0xbedca000-0xbefcffff]
[ 0.050059] PM: hibernation: Registered nosave memory: [mem 0xbf44c000-0xbf7dcfff]
[ 0.050061] PM: hibernation: Registered nosave memory: [mem 0xbf800000-0xfebfffff]
[ 0.050062] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.050064] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
[ 0.050065] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[ 0.050066] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec1ffff]
[ 0.050067] PM: hibernation: Registered nosave memory: [mem 0xfec20000-0xfec20fff]
[ 0.050068] PM: hibernation: Registered nosave memory: [mem 0xfec21000-0xfecfffff]
[ 0.050070] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[ 0.050071] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed60fff]
[ 0.050072] PM: hibernation: Registered nosave memory: [mem 0xfed61000-0xfed70fff]
[ 0.050073] PM: hibernation: Registered nosave memory: [mem 0xfed71000-0xfed7ffff]
[ 0.050074] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[ 0.050075] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0x100000fff]
[ 0.050079] [mem 0xbf800000-0xfebfffff] available for PCI devices
[ 0.050082] Booting paravirtualized kernel on bare hardware
[ 0.050085] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.058911] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.059830] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
[ 0.059841] pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
[ 0.059846] pcpu-alloc: [0] 0 1 2 3
[ 0.059881] Kernel command line: BOOT_IMAGE=/boot/vmlinuz root=live:LABEL=CLDX-20240815 init=/linuxrc rd.live.squashimg=livecd.squashfs nodevfs quiet noresume splash calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:amdgpu,composite:on
[ 0.060077] Unknown kernel command line parameters "nodevfs splash BOOT_IMAGE=/boot/vmlinuz calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:amdgpu,composite:on", will be passed to user space.
[ 0.062469] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.063693] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.063735] Fallback order for Node 0: 0
[ 0.063741] Built 1 zonelists, mobility grouping on. Total pages: 2057286
[ 0.063742] Policy zone: Normal
[ 0.064447] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.064476] software IO TLB: area num 4.
[ 0.149591] Memory: 7818432K/8360420K available (20480K kernel code, 3562K rwdata, 9132K rodata, 4592K init, 4300K bss, 541732K reserved, 0K cma-reserved)
[ 0.159306] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.159513] ftrace: allocating 57978 entries in 227 pages
[ 0.167518] ftrace: allocated 227 pages with 5 groups
[ 0.168511] Dynamic Preempt: voluntary
[ 0.168695] rcu: Preemptible hierarchical RCU implementation.
[ 0.168696] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.168698] Trampoline variant of Tasks RCU enabled.
[ 0.168699] Rude variant of Tasks RCU enabled.
[ 0.168699] Tracing variant of Tasks RCU enabled.
[ 0.168700] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.168702] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.174812] NR_IRQS: 524544, nr_irqs: 1000, preallocated irqs: 16
[ 0.175075] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.175179] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.175281] Console: colour dummy device 80x25
[ 0.175285] printk: console [tty0] enabled
[ 0.175581] ACPI: Core revision 20230628
[ 0.176293] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.176310] APIC: Switch to symmetric I/O mode setup
[ 0.176359] AMD-Vi: Using global IVHD EFR:0x0, EFR2:0x0
[ 0.177995] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.192977] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25a63d24ed9, max_idle_ns: 440795292430 ns
[ 0.192985] Calibrating delay loop (skipped), value calculated using timer frequency.. 5225.51 BogoMIPS (lpj=8706416)
[ 0.193012] LVT offset 0 assigned for vector 0xf9
[ 0.193016] process: using AMD E400 aware idle routine
[ 0.193020] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
[ 0.193022] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
[ 0.193027] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.193030] Spectre V2 : Mitigation: Retpolines
[ 0.193032] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.193033] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.193037] x86/fpu: x87 FPU will use FXSAVE
[ 0.214256] Freeing SMP alternatives memory: 48K
[ 0.214264] pid_max: default: 32768 minimum: 301
[ 0.221310] LSM: initializing lsm=lockdown,capability,yama,integrity
[ 0.221323] Yama: becoming mindful.
[ 0.221662] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.221707] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.222900] process: System has AMD C1E enabled
[ 0.329707] process: Switch to broadcast mode on CPU0
[ 0.329715] smpboot: CPU0: AMD Athlon(tm) II X4 620e Processor (family: 0x10, model: 0x5, stepping: 0x3)
[ 0.330061] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.330090] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.330122] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[ 0.330157] Performance Events: AMD PMU driver.
[ 0.330162] ... version: 0
[ 0.330164] ... bit width: 48
[ 0.330165] ... generic registers: 4
[ 0.330166] ... value mask: 0000ffffffffffff
[ 0.330168] ... max period: 00007fffffffffff
[ 0.330169] ... fixed-purpose events: 0
[ 0.330170] ... event mask: 000000000000000f
[ 0.330308] signal: max sigframe size: 1440
[ 0.330356] rcu: Hierarchical SRCU implementation.
[ 0.330357] rcu: Max phase no-delay instances is 1000.
[ 0.330853] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.330958] smp: Bringing up secondary CPUs ...
[ 0.331148] smpboot: x86: Booting SMP configuration:
[ 0.331149] .... node #0, CPUs: #1 #2 #3
[ 0.004550] process: Switch to broadcast mode on CPU1
[ 0.004550] process: Switch to broadcast mode on CPU2
[ 0.004550] process: Switch to broadcast mode on CPU3
[ 0.336411] smp: Brought up 1 node, 4 CPUs
[ 0.336411] smpboot: Max logical packages: 1
[ 0.336411] smpboot: Total of 4 processors activated (20903.04 BogoMIPS)
[ 0.337499] devtmpfs: initialized
[ 0.339666] x86/mm: Memory block size: 128MB
[ 0.340914] ACPI: PM: Registering ACPI NVS region [mem 0xbe08c000-0xbe478fff] (4116480 bytes)
[ 0.340914] ACPI: PM: Registering ACPI NVS region [mem 0xbedca000-0xbefcffff] (2121728 bytes)
[ 0.340914] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.340914] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.340914] pinctrl core: initialized pinctrl subsystem
[ 0.340914] PM: RTC time: 04:15:00, date: 2024-08-25
[ 0.343334] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.343593] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[ 0.343600] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.343604] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.343961] audit: initializing netlink subsys (disabled)
[ 0.343989] audit: type=2000 audit(1724559299.166:1): state=initialized audit_enabled=0 res=1
[ 0.343989] thermal_sys: Registered thermal governor 'fair_share'
[ 0.343989] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.343989] thermal_sys: Registered thermal governor 'step_wise'
[ 0.343989] thermal_sys: Registered thermal governor 'user_space'
[ 0.343989] cpuidle: using governor menu
[ 0.343989] node 0 link 0: io port [d000, ffff]
[ 0.343989] TOM: 00000000c0000000 aka 3072M
[ 0.343989] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[ 0.343989] node 0 link 0: mmio [c0000000, fef0ffff] ==> [c0000000, dfffffff] and [f0000000, fef0ffff]
[ 0.343989] TOM2: 0000000240000000 aka 9216M
[ 0.343989] bus: [bus 00-1f] on node 0 link 0
[ 0.343989] bus: 00 [io 0x0000-0xffff]
[ 0.343989] bus: 00 [mem 0xc0000000-0xdfffffff]
[ 0.343989] bus: 00 [mem 0xf0000000-0xffffffff]
[ 0.343989] bus: 00 [mem 0x240000000-0xfcffffffff]
[ 0.343989] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.343989] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.343989] PCI: not using MMCONFIG
[ 0.343989] PCI: Using configuration type 1 for base access
[ 0.343989] PCI: Using configuration type 1 for extended access
[ 0.343989] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.344029] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.344029] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.344029] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.344029] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.346669] cryptd: max_cpu_qlen set to 1000
[ 0.346678] raid6: skipped pq benchmark and selected sse2x4
[ 0.346678] raid6: using intx1 recovery algorithm
[ 0.346873] ACPI: Added _OSI(Module Device)
[ 0.346874] ACPI: Added _OSI(Processor Device)
[ 0.346876] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.346877] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.351850] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.352456] ACPI: _OSC evaluation for CPUs failed, trying _PDC
[ 0.352456] ACPI: Interpreter enabled
[ 0.352456] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.352456] ACPI: Using IOAPIC for interrupt routing
[ 0.353113] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.353161] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
[ 0.353182] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.353183] PCI: Using E820 reservations for host bridge windows
[ 0.353327] ACPI: Enabled 10 GPEs in block 00 to 1F
[ 0.358685] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.358699] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.358706] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.358709] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.358711] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
[ 0.359129] PCI host bridge to bus 0000:00
[ 0.359131] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.359134] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.359136] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.359138] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.359140] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.359143] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
[ 0.359145] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.359167] pci 0000:00:00.0: [1002:5a14] type 00 class 0x060000
[ 0.359293] pci 0000:00:00.2: [1002:5a23] type 00 class 0x080600
[ 0.359395] pci 0000:00:02.0: [1002:5a16] type 01 class 0x060400
[ 0.359412] pci 0000:00:02.0: enabling Extended Tags
[ 0.359436] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[ 0.359546] pci 0000:00:04.0: [1002:5a18] type 01 class 0x060400
[ 0.359562] pci 0000:00:04.0: enabling Extended Tags
[ 0.359584] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[ 0.359711] pci 0000:00:05.0: [1002:5a19] type 01 class 0x060400
[ 0.359728] pci 0000:00:05.0: enabling Extended Tags
[ 0.359750] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[ 0.359857] pci 0000:00:09.0: [1002:5a1c] type 01 class 0x060400
[ 0.359874] pci 0000:00:09.0: enabling Extended Tags
[ 0.359895] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
[ 0.360008] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[ 0.360022] pci 0000:00:11.0: reg 0x10: [io 0xf090-0xf097]
[ 0.360063] pci 0000:00:11.0: reg 0x14: [io 0xf080-0xf083]
[ 0.360070] pci 0000:00:11.0: reg 0x18: [io 0xf070-0xf077]
[ 0.360078] pci 0000:00:11.0: reg 0x1c: [io 0xf060-0xf063]
[ 0.360085] pci 0000:00:11.0: reg 0x20: [io 0xf050-0xf05f]
[ 0.360092] pci 0000:00:11.0: reg 0x24: [mem 0xfeb0b000-0xfeb0b3ff]
[ 0.360198] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[ 0.360212] pci 0000:00:12.0: reg 0x10: [mem 0xfeb0a000-0xfeb0afff]
[ 0.360336] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[ 0.360349] pci 0000:00:12.2: reg 0x10: [mem 0xfeb09000-0xfeb090ff]
[ 0.360409] pci 0000:00:12.2: supports D1 D2
[ 0.360411] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[ 0.360499] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[ 0.360513] pci 0000:00:13.0: reg 0x10: [mem 0xfeb08000-0xfeb08fff]
[ 0.360637] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[ 0.360650] pci 0000:00:13.2: reg 0x10: [mem 0xfeb07000-0xfeb070ff]
[ 0.360710] pci 0000:00:13.2: supports D1 D2
[ 0.360711] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[ 0.360800] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[ 0.360920] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
[ 0.360933] pci 0000:00:14.1: reg 0x10: [io 0xf040-0xf047]
[ 0.360941] pci 0000:00:14.1: reg 0x14: [io 0xf030-0xf033]
[ 0.360948] pci 0000:00:14.1: reg 0x18: [io 0xf020-0xf027]
[ 0.360956] pci 0000:00:14.1: reg 0x1c: [io 0xf010-0xf013]
[ 0.360963] pci 0000:00:14.1: reg 0x20: [io 0xf000-0xf00f]
[ 0.360978] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.360980] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.360982] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.360984] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.361065] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[ 0.361082] pci 0000:00:14.2: reg 0x10: [mem 0xfeb00000-0xfeb03fff 64bit]
[ 0.361133] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[ 0.361211] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[ 0.361385] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[ 0.361495] pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
[ 0.361508] pci 0000:00:14.5: reg 0x10: [mem 0xfeb06000-0xfeb06fff]
[ 0.361632] pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
[ 0.361646] pci 0000:00:16.0: reg 0x10: [mem 0xfeb05000-0xfeb05fff]
[ 0.361770] pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
[ 0.361783] pci 0000:00:16.2: reg 0x10: [mem 0xfeb04000-0xfeb040ff]
[ 0.361843] pci 0000:00:16.2: supports D1 D2
[ 0.361845] pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
[ 0.361929] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
[ 0.361980] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
[ 0.362033] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
[ 0.362091] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
[ 0.362142] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
[ 0.362243] pci 0000:01:00.0: [1002:67ff] type 00 class 0x030000
[ 0.362259] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[ 0.362270] pci 0000:01:00.0: reg 0x18: [mem 0xd0000000-0xd01fffff 64bit pref]
[ 0.362277] pci 0000:01:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.362285] pci 0000:01:00.0: reg 0x24: [mem 0xfea00000-0xfea3ffff]
[ 0.362292] pci 0000:01:00.0: reg 0x30: [mem 0xfea40000-0xfea5ffff pref]
[ 0.362299] pci 0000:01:00.0: enabling Extended Tags
[ 0.362317] pci 0000:01:00.0: BAR 0: assigned to efifb
[ 0.362322] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.362377] pci 0000:01:00.0: supports D1 D2
[ 0.362379] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.362449] pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x8 link at 0000:00:02.0 (capable of 63.008 Gb/s with 8.0 GT/s PCIe x8 link)
[ 0.362573] pci 0000:01:00.1: [1002:aae0] type 00 class 0x040300
[ 0.362587] pci 0000:01:00.1: reg 0x10: [mem 0xfea60000-0xfea63fff 64bit]
[ 0.362613] pci 0000:01:00.1: enabling Extended Tags
[ 0.362660] pci 0000:01:00.1: supports D1 D2
[ 0.362755] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 0.362759] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
[ 0.362762] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
[ 0.362765] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.362810] pci 0000:02:00.0: [1106:3483] type 00 class 0x0c0330
[ 0.362824] pci 0000:02:00.0: reg 0x10: [mem 0xfe900000-0xfe900fff 64bit]
[ 0.362880] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.362951] pci 0000:00:04.0: PCI bridge to [bus 02]
[ 0.362955] pci 0000:00:04.0: bridge window [mem 0xfe900000-0xfe9fffff]
[ 0.363031] pci 0000:03:00.0: [1912:0014] type 00 class 0x0c0330
[ 0.363059] pci 0000:03:00.0: reg 0x10: [mem 0xfe800000-0xfe801fff 64bit]
[ 0.363194] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.363333] pci 0000:00:05.0: PCI bridge to [bus 03]
[ 0.363337] pci 0000:00:05.0: bridge window [mem 0xfe800000-0xfe8fffff]
[ 0.363402] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[ 0.363417] pci 0000:04:00.0: reg 0x10: [io 0xd000-0xd0ff]
[ 0.363435] pci 0000:04:00.0: reg 0x18: [mem 0xfe700000-0xfe700fff 64bit]
[ 0.363448] pci 0000:04:00.0: reg 0x20: [mem 0xd0300000-0xd0303fff 64bit pref]
[ 0.363523] pci 0000:04:00.0: supports D1 D2
[ 0.363524] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.363690] pci 0000:00:09.0: PCI bridge to [bus 04]
[ 0.363693] pci 0000:00:09.0: bridge window [io 0xd000-0xdfff]
[ 0.363696] pci 0000:00:09.0: bridge window [mem 0xfe700000-0xfe7fffff]
[ 0.363699] pci 0000:00:09.0: bridge window [mem 0xd0300000-0xd03fffff 64bit pref]
[ 0.363709] pci_bus 0000:05: extended config space not accessible
[ 0.363780] pci 0000:00:14.4: PCI bridge to [bus 05] (subtractive decode)
[ 0.363787] pci 0000:00:14.4: bridge window [io 0x0000-0x03af window] (subtractive decode)
[ 0.363790] pci 0000:00:14.4: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode)
[ 0.363792] pci 0000:00:14.4: bridge window [io 0x03b0-0x03df window] (subtractive decode)
[ 0.363794] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.363796] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[ 0.363798] pci 0000:00:14.4: bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
[ 0.364240] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.364303] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.364364] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.364424] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.364472] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.364511] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.364549] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.364588] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.364837] iommu: Default domain type: Translated
[ 0.364837] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.364837] SCSI subsystem initialized
[ 0.364837] libata version 3.00 loaded.
[ 0.364837] ACPI: bus type USB registered
[ 0.364837] usbcore: registered new interface driver usbfs
[ 0.364837] usbcore: registered new interface driver hub
[ 0.364837] usbcore: registered new device driver usb
[ 0.364837] pps_core: LinuxPPS API ver. 1 registered
[ 0.364837] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.364837] PTP clock support registered
[ 0.364837] EDAC MC: Ver: 3.0.0
[ 0.364837] efivars: Registered efivars operations
[ 0.366633] NetLabel: Initializing
[ 0.366636] NetLabel: domain hash size = 128
[ 0.366637] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.366659] NetLabel: unlabeled traffic allowed by default
[ 0.366664] mctp: management component transport protocol core
[ 0.366666] NET: Registered PF_MCTP protocol family
[ 0.366671] PCI: Using ACPI for IRQ routing
[ 0.372987] PCI: pci_cache_line_size set to 64 bytes
[ 0.373048] e820: reserve RAM buffer [mem 0x78496018-0x7bffffff]
[ 0.373051] e820: reserve RAM buffer [mem 0x784a7018-0x7bffffff]
[ 0.373052] e820: reserve RAM buffer [mem 0xbe03b000-0xbfffffff]
[ 0.373054] e820: reserve RAM buffer [mem 0xbedca000-0xbfffffff]
[ 0.373056] e820: reserve RAM buffer [mem 0xbf44c000-0xbfffffff]
[ 0.373057] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[ 0.373138] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[ 0.373138] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.373138] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.373138] vgaarb: loaded
[ 0.373163] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[ 0.373172] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[ 0.384509] clocksource: Switched to clocksource tsc-early
[ 0.385537] VFS: Disk quotas dquot_6.6.0
[ 0.385580] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.385731] pnp: PnP ACPI init
[ 0.385887] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.386138] system 00:01: [io 0x040b] has been reserved
[ 0.386141] system 00:01: [io 0x04d6] has been reserved
[ 0.386143] system 00:01: [io 0x0c00-0x0c01] has been reserved
[ 0.386145] system 00:01: [io 0x0c14] has been reserved
[ 0.386147] system 00:01: [io 0x0c50-0x0c51] has been reserved
[ 0.386149] system 00:01: [io 0x0c52] has been reserved
[ 0.386151] system 00:01: [io 0x0c6c] has been reserved
[ 0.386153] system 00:01: [io 0x0c6f] has been reserved
[ 0.386155] system 00:01: [io 0x0cd0-0x0cd1] has been reserved
[ 0.386157] system 00:01: [io 0x0cd2-0x0cd3] has been reserved
[ 0.386158] system 00:01: [io 0x0cd4-0x0cd5] has been reserved
[ 0.386160] system 00:01: [io 0x0cd6-0x0cd7] has been reserved
[ 0.386162] system 00:01: [io 0x0cd8-0x0cdf] has been reserved
[ 0.386168] system 00:01: [io 0x0800-0x089f] has been reserved
[ 0.386170] system 00:01: [io 0x0b20-0x0b3f] has been reserved
[ 0.386172] system 00:01: [io 0x0900-0x090f] has been reserved
[ 0.386174] system 00:01: [io 0x0910-0x091f] has been reserved
[ 0.386176] system 00:01: [io 0xfe00-0xfefe] has been reserved
[ 0.386179] system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.386182] system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.386185] system 00:01: [mem 0xfed80000-0xfed8ffff] has been reserved
[ 0.386187] system 00:01: [mem 0xfed61000-0xfed70fff] has been reserved
[ 0.386190] system 00:01: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.386192] system 00:01: [mem 0xfed00000-0xfed00fff] could not be reserved
[ 0.386195] system 00:01: [mem 0xffc00000-0xffffffff] has been reserved
[ 0.386314] system 00:02: [io 0x0220-0x0227] has been reserved
[ 0.386314] system 00:02: [io 0x0228-0x0237] has been reserved
[ 0.386314] system 00:02: [io 0x0a20-0x0a2f] has been reserved
[ 0.386314] system 00:04: [io 0x04d0-0x04d1] has been reserved
[ 0.386314] system 00:06: [mem 0xfeb20000-0xfeb23fff] could not be reserved
[ 0.386314] system 00:07: [mem 0xfec20000-0xfec200ff] could not be reserved
[ 0.386314] pnp: PnP ACPI: found 8 devices
[ 0.392059] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.392414] NET: Registered PF_INET protocol family
[ 0.392758] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.395190] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 0.395219] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.395419] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.395606] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.396357] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.396640] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[ 0.396705] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.396760] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.397130] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.397144] NET: Registered PF_XDP protocol family
[ 0.397171] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 0.397176] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
[ 0.397180] pci 0000:00:02.0: bridge window [mem 0xfea00000-0xfeafffff]
[ 0.397183] pci 0000:00:02.0: bridge window [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.397187] pci 0000:00:04.0: PCI bridge to [bus 02]
[ 0.397190] pci 0000:00:04.0: bridge window [mem 0xfe900000-0xfe9fffff]
[ 0.397194] pci 0000:00:05.0: PCI bridge to [bus 03]
[ 0.397197] pci 0000:00:05.0: bridge window [mem 0xfe800000-0xfe8fffff]
[ 0.397201] pci 0000:00:09.0: PCI bridge to [bus 04]
[ 0.397203] pci 0000:00:09.0: bridge window [io 0xd000-0xdfff]
[ 0.397206] pci 0000:00:09.0: bridge window [mem 0xfe700000-0xfe7fffff]
[ 0.397208] pci 0000:00:09.0: bridge window [mem 0xd0300000-0xd03fffff 64bit pref]
[ 0.397212] pci 0000:00:14.4: PCI bridge to [bus 05]
[ 0.397223] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.397226] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.397228] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.397230] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.397232] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.397234] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xffffffff window]
[ 0.397236] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
[ 0.397238] pci_bus 0000:01: resource 1 [mem 0xfea00000-0xfeafffff]
[ 0.397240] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd01fffff 64bit pref]
[ 0.397242] pci_bus 0000:02: resource 1 [mem 0xfe900000-0xfe9fffff]
[ 0.397244] pci_bus 0000:03: resource 1 [mem 0xfe800000-0xfe8fffff]
[ 0.397246] pci_bus 0000:04: resource 0 [io 0xd000-0xdfff]
[ 0.397248] pci_bus 0000:04: resource 1 [mem 0xfe700000-0xfe7fffff]
[ 0.397250] pci_bus 0000:04: resource 2 [mem 0xd0300000-0xd03fffff 64bit pref]
[ 0.397252] pci_bus 0000:05: resource 4 [io 0x0000-0x03af window]
[ 0.397254] pci_bus 0000:05: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.397256] pci_bus 0000:05: resource 6 [io 0x03b0-0x03df window]
[ 0.397258] pci_bus 0000:05: resource 7 [io 0x0d00-0xffff window]
[ 0.397260] pci_bus 0000:05: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.397262] pci_bus 0000:05: resource 9 [mem 0xc0000000-0xffffffff window]
[ 0.398416] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[ 0.398726] PCI: CLS 64 bytes, default 64
[ 0.398820] Trying to unpack rootfs image as initramfs...
[ 0.398943] pci 0000:00:00.0: Adding to iommu group 0
[ 0.398964] pci 0000:00:02.0: Adding to iommu group 1
[ 0.398979] pci 0000:00:04.0: Adding to iommu group 2
[ 0.398995] pci 0000:00:05.0: Adding to iommu group 3
[ 0.399015] pci 0000:00:09.0: Adding to iommu group 4
[ 0.399031] pci 0000:00:11.0: Adding to iommu group 5
[ 0.399062] pci 0000:00:12.0: Adding to iommu group 6
[ 0.399078] pci 0000:00:12.2: Adding to iommu group 6
[ 0.399111] pci 0000:00:13.0: Adding to iommu group 7
[ 0.399128] pci 0000:00:13.2: Adding to iommu group 7
[ 0.399152] pci 0000:00:14.0: Adding to iommu group 8
[ 0.399168] pci 0000:00:14.1: Adding to iommu group 9
[ 0.399189] pci 0000:00:14.2: Adding to iommu group 10
[ 0.399207] pci 0000:00:14.3: Adding to iommu group 11
[ 0.399225] pci 0000:00:14.4: Adding to iommu group 12
[ 0.399241] pci 0000:00:14.5: Adding to iommu group 13
[ 0.399275] pci 0000:00:16.0: Adding to iommu group 14
[ 0.399294] pci 0000:00:16.2: Adding to iommu group 14
[ 0.399337] pci 0000:01:00.0: Adding to iommu group 15
[ 0.399356] pci 0000:01:00.1: Adding to iommu group 15
[ 0.399379] pci 0000:02:00.0: Adding to iommu group 16
[ 0.399397] pci 0000:03:00.0: Adding to iommu group 17
[ 0.399414] pci 0000:04:00.0: Adding to iommu group 18
[ 0.402914] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[ 0.402925] AMD-Vi: Interrupt remapping enabled
[ 0.404931] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.404938] software IO TLB: mapped [mem 0x00000000ae46f000-0x00000000b246f000] (64MB)
[ 0.405035] LVT offset 1 assigned for vector 0x400
[ 0.405053] LVT offset 1 assigned
[ 0.408222] perf: AMD IBS detected (0x0000001f)
[ 0.430971] Initialise system trusted keyrings
[ 0.431010] Key type blacklist registered
[ 0.431227] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[ 0.431266] zbud: loaded
[ 0.436013] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled
[ 0.438878] integrity: Platform Keyring initialized
[ 0.438900] integrity: Machine keyring initialized
[ 0.449878] NET: Registered PF_ALG protocol family
[ 0.449883] xor: measuring software checksum speed
[ 0.450614] prefetch64-sse : 13556 MB/sec
[ 0.451393] generic_sse : 12673 MB/sec
[ 0.451395] xor: using function: prefetch64-sse (13556 MB/sec)
[ 0.451400] Key type asymmetric registered
[ 0.451401] Asymmetric key parser 'x509' registered
[ 0.451423] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 0.451627] io scheduler mq-deadline registered
[ 0.451636] io scheduler kyber registered
[ 0.451764] io scheduler bfq registered
[ 0.452120] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.454094] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.454284] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.454401] ACPI: button: Power Button [PWRB]
[ 0.454447] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.454531] ACPI: button: Power Button [PWRF]
[ 0.454562] ACPI: processor limited to max C-state 1
[ 0.455894] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.459203] Non-volatile memory driver v1.3
[ 0.459222] Linux agpgart interface v0.103
[ 0.460303] ACPI: bus type drm_connector registered
[ 0.487183] Freeing initrd memory: 88584K
[ 0.487522] loop: module loaded
[ 0.487865] ahci 0000:00:11.0: version 3.0
[ 0.488115] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[ 0.488120] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
[ 0.489011] scsi host0: ahci
[ 0.489501] scsi host1: ahci
[ 0.489913] scsi host2: ahci
[ 0.490328] scsi host3: ahci
[ 0.490415] ata1: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b100 irq 19
[ 0.490419] ata2: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b180 irq 19
[ 0.490422] ata3: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b200 irq 19
[ 0.490424] ata4: SATA max UDMA/133 abar m1024@0xfeb0b000 port 0xfeb0b280 irq 19
[ 0.491262] QUIRK: Enable AMD PLL fix
[ 0.491298] ohci-pci 0000:00:12.0: OHCI PCI host controller
[ 0.491420] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
[ 0.491515] ohci-pci 0000:00:12.0: irq 18, io mem 0xfeb0a000
[ 0.552301] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 0.552308] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.552311] usb usb1: Product: OHCI PCI host controller
[ 0.552313] usb usb1: Manufacturer: Linux 6.6.32-calculate ohci_hcd
[ 0.552315] usb usb1: SerialNumber: 0000:00:12.0
[ 0.552470] hub 1-0:1.0: USB hub found
[ 0.552479] hub 1-0:1.0: 5 ports detected
[ 0.552801] ehci-pci 0000:00:12.2: EHCI Host Controller
[ 0.552861] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 2
[ 0.552866] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 0.552876] ehci-pci 0000:00:12.2: debug port 1
[ 0.552939] ehci-pci 0000:00:12.2: irq 17, io mem 0xfeb09000
[ 0.564880] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[ 0.564950] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 0.564954] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.564956] usb usb2: Product: EHCI Host Controller
[ 0.564958] usb usb2: Manufacturer: Linux 6.6.32-calculate ehci_hcd
[ 0.564960] usb usb2: SerialNumber: 0000:00:12.2
[ 0.565098] hub 2-0:1.0: USB hub found
[ 0.565106] hub 2-0:1.0: 5 ports detected
[ 0.631602] hub 1-0:1.0: USB hub found
[ 0.631615] hub 1-0:1.0: 5 ports detected
[ 0.631793] ehci-pci 0000:00:13.2: EHCI Host Controller
[ 0.631856] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 3
[ 0.631862] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 0.631871] ehci-pci 0000:00:13.2: debug port 1
[ 0.631924] ehci-pci 0000:00:13.2: irq 17, io mem 0xfeb07000
[ 0.644884] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[ 0.644966] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 0.644969] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.644972] usb usb3: Product: EHCI Host Controller
[ 0.644973] usb usb3: Manufacturer: Linux 6.6.32-calculate ehci_hcd
[ 0.644975] usb usb3: SerialNumber: 0000:00:13.2
[ 0.645117] hub 3-0:1.0: USB hub found
[ 0.645124] hub 3-0:1.0: 5 ports detected
[ 0.645321] ehci-pci 0000:00:16.2: EHCI Host Controller
[ 0.645365] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 4
[ 0.645370] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 0.645378] ehci-pci 0000:00:16.2: debug port 1
[ 0.645427] ehci-pci 0000:00:16.2: irq 17, io mem 0xfeb04000
[ 0.658211] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
[ 0.658282] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 0.658285] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.658287] usb usb4: Product: EHCI Host Controller
[ 0.658289] usb usb4: Manufacturer: Linux 6.6.32-calculate ehci_hcd
[ 0.658290] usb usb4: SerialNumber: 0000:00:16.2
[ 0.658438] hub 4-0:1.0: USB hub found
[ 0.658446] hub 4-0:1.0: 4 ports detected
[ 0.658618] ohci-pci 0000:00:13.0: OHCI PCI host controller
[ 0.658673] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[ 0.658710] ohci-pci 0000:00:13.0: irq 18, io mem 0xfeb08000
[ 0.718983] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 0.718990] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.718992] usb usb5: Product: OHCI PCI host controller
[ 0.718994] usb usb5: Manufacturer: Linux 6.6.32-calculate ohci_hcd
[ 0.718996] usb usb5: SerialNumber: 0000:00:13.0
[ 0.719139] hub 5-0:1.0: USB hub found
[ 0.719149] hub 5-0:1.0: 5 ports detected
[ 0.719509] ohci-pci 0000:00:14.5: OHCI PCI host controller
[ 0.719578] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 6
[ 0.719612] ohci-pci 0000:00:14.5: irq 18, io mem 0xfeb06000
[ 0.778980] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 0.778987] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.778989] usb usb6: Product: OHCI PCI host controller
[ 0.778991] usb usb6: Manufacturer: Linux 6.6.32-calculate ohci_hcd
[ 0.778993] usb usb6: SerialNumber: 0000:00:14.5
[ 0.779144] hub 6-0:1.0: USB hub found
[ 0.779157] hub 6-0:1.0: 2 ports detected
[ 0.779474] ohci-pci 0000:00:16.0: OHCI PCI host controller
[ 0.779532] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 7
[ 0.779568] ohci-pci 0000:00:16.0: irq 18, io mem 0xfeb05000
[ 0.808257] ata4: SATA link down (SStatus 0 SControl 300)
[ 0.839007] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 0.839014] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.839016] usb usb7: Product: OHCI PCI host controller
[ 0.839018] usb usb7: Manufacturer: Linux 6.6.32-calculate ohci_hcd
[ 0.839019] usb usb7: SerialNumber: 0000:00:16.0
[ 0.839172] hub 7-0:1.0: USB hub found
[ 0.839181] hub 7-0:1.0: 4 ports detected
[ 0.839776] xhci_hcd 0000:02:00.0: xHCI Host Controller
[ 0.839863] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 8
[ 0.839926] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839940] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839949] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839957] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839966] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839973] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839981] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839989] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.839996] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.840004] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 0.843041] AMD-Vi: IOMMU Event log restarting
[ 0.845988] AMD-Vi: IOMMU Event log restarting
[ 0.849034] AMD-Vi: IOMMU Event log restarting
[ 0.852123] AMD-Vi: IOMMU Event log restarting
[ 0.855266] AMD-Vi: IOMMU Event log restarting
[ 0.858404] AMD-Vi: IOMMU Event log restarting
[ 0.861470] AMD-Vi: IOMMU Event log restarting
[ 0.864517] AMD-Vi: IOMMU Event log restarting
[ 0.867616] AMD-Vi: IOMMU Event log restarting
[ 0.870764] AMD-Vi: IOMMU Event log restarting
[ 0.971525] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.971574] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 0.971605] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.972341] ata2.00: HPA detected: current 1953523055, native 1953525168
[ 0.972351] ata2.00: ATA-9: ST1000DM003-1ER162, CC45, max UDMA/133
[ 0.972529] ata2.00: 1953523055 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.973647] ata2.00: configured for UDMA/133
[ 0.974094] ata3.00: ATA-8: WDC WD10EALS-00Z8A0, 05.01D05, max UDMA/133
[ 0.974574] ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.976678] ata3.00: configured for UDMA/133
[ 0.978712] ata1.00: ATA-11: ADATA SU650NS38, S211028a, max UDMA/133
[ 0.978758] ata1.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 0.980189] ata1.00: configured for UDMA/133
[ 0.980363] scsi 0:0:0:0: Direct-Access ATA ADATA SU650NS38 028a PQ: 0 ANSI: 5
[ 0.980660] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.980795] scsi 1:0:0:0: Direct-Access ATA ST1000DM003-1ER1 CC45 PQ: 0 ANSI: 5
[ 0.980830] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[ 0.980845] sd 0:0:0:0: [sda] Write Protect is off
[ 0.980848] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.980864] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.980886] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 0.981132] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 0.981320] sd 1:0:0:0: [sdb] 1953523055 512-byte logical blocks: (1.00 TB/932 GiB)
[ 0.981322] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[ 0.981334] sd 1:0:0:0: [sdb] Write Protect is off
[ 0.981337] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 0.981368] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.981384] scsi 2:0:0:0: Direct-Access ATA WDC WD10EALS-00Z 1D05 PQ: 0 ANSI: 5
[ 0.981420] sd 1:0:0:0: [sdb] Preferred minimum I/O size 4096 bytes
[ 0.982202] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 0.982309] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 0.982325] sd 2:0:0:0: [sdc] Write Protect is off
[ 0.982327] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 0.982345] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.982371] sd 2:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[ 1.022087] sdb: sdb1 sdb2 < sdb5 sdb6 sdb7 sdb8 sdb9 >
[ 1.022497] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.102818] sda: sda1 sda2
[ 1.103145] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.113342] sdc: sdc1 < sdc5 sdc6 >
[ 1.113720] sd 2:0:0:0: [sdc] Attached SCSI disk
[ 1.431268] tsc: Refined TSC clocksource calibration: 2611.978 MHz
[ 1.431280] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25a66f530ea, max_idle_ns: 440795235470 ns
[ 2.284551] sched: RT throttling activated
[ 5.844556] amd_iommu_report_page_fault: 876114 callbacks suppressed
[ 5.844558] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844567] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844576] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844583] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844591] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844599] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844607] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844615] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844623] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.844631] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 5.849552] amd_iommu_restart_log: 1608 callbacks suppressed
[ 5.849553] AMD-Vi: IOMMU Event log restarting
[ 5.852651] AMD-Vi: IOMMU Event log restarting
[ 5.855750] AMD-Vi: IOMMU Event log restarting
[ 5.858848] AMD-Vi: IOMMU Event log restarting
[ 5.861819] AMD-Vi: IOMMU Event log restarting
[ 5.864917] AMD-Vi: IOMMU Event log restarting
[ 5.868078] AMD-Vi: IOMMU Event log restarting
[ 5.871174] AMD-Vi: IOMMU Event log restarting
[ 5.874220] AMD-Vi: IOMMU Event log restarting
[ 5.877317] AMD-Vi: IOMMU Event log restarting
[ 10.847889] amd_iommu_report_page_fault: 875264 callbacks suppressed
[ 10.847891] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847899] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847907] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847915] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847923] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847931] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847939] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847947] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847955] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.847962] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 10.854073] amd_iommu_restart_log: 1606 callbacks suppressed
[ 10.854074] AMD-Vi: IOMMU Event log restarting
[ 10.857171] AMD-Vi: IOMMU Event log restarting
[ 10.860326] AMD-Vi: IOMMU Event log restarting
[ 10.863373] AMD-Vi: IOMMU Event log restarting
[ 10.866471] AMD-Vi: IOMMU Event log restarting
[ 10.869676] AMD-Vi: IOMMU Event log restarting
[ 10.872785] AMD-Vi: IOMMU Event log restarting
[ 10.875881] AMD-Vi: IOMMU Event log restarting
[ 10.878978] AMD-Vi: IOMMU Event log restarting
[ 10.882084] AMD-Vi: IOMMU Event log restarting
[ 12.177891] random: crng init done
[ 15.851222] amd_iommu_report_page_fault: 883287 callbacks suppressed
[ 15.851224] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851232] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851240] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851248] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851256] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851264] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851272] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851279] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851287] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.851295] xhci_hcd 0000:02:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x0011 address=0xbe04b880 flags=0x0000]
[ 15.856787] amd_iommu_restart_log: 1619 callbacks suppressed
[ 15.856788] AMD-Vi: IOMMU Event log restarting
[ 15.859898] AMD-Vi: IOMMU Event log restarting
[ 15.863015] AMD-Vi: IOMMU Event log restarting
[ 15.866082] AMD-Vi: IOMMU Event log restarting
[ 15.869154] AMD-Vi: IOMMU Event log restarting
[ 15.872275] AMD-Vi: IOMMU Event log restarting
[ 15.875335] AMD-Vi: IOMMU Event log restarting
[ 15.878394] AMD-Vi: IOMMU Event log restarting
[ 15.881510] AMD-Vi: IOMMU Event log restarting
[ 15.884511] AMD-Vi: IOMMU Event log restarting
[ 18.076504] xhci_hcd 0000:02:00.0: can't setup: -110
[ 18.910550] clocksource: Switched to clocksource tsc
[ 18.910861] xhci_hcd 0000:02:00.0: USB bus 8 deregistered
[ 18.911019] xhci_hcd 0000:02:00.0: init 0000:02:00.0 fail, -110
[ 18.911050] xhci_hcd: probe of 0000:02:00.0 failed with error -110
[ 18.911195] xhci_hcd 0000:03:00.0: failed to load firmware renesas_usb_fw.mem, fallback to ROM
[ 18.911381] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 18.911500] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 8
[ 18.911530] xhci_hcd 0000:03:00.0: Zeroing 64bit base registers, expecting fault
[ 19.004895] xhci_hcd 0000:03:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x0000001100000410
[ 19.005265] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 19.005361] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 9
[ 19.005366] xhci_hcd 0000:03:00.0: Host supports USB 3.0 SuperSpeed
[ 19.008487] usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 19.008491] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 19.008493] usb usb8: Product: xHCI Host Controller
[ 19.008495] usb usb8: Manufacturer: Linux 6.6.32-calculate xhci-hcd
[ 19.008497] usb usb8: SerialNumber: 0000:03:00.0
[ 19.008681] hub 8-0:1.0: USB hub found
[ 19.008729] hub 8-0:1.0: 4 ports detected
[ 19.008895] usb usb9: We don't know the algorithms for LPM for this host, disabling LPM.
[ 19.008920] usb usb9: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[ 19.008922] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 19.008925] usb usb9: Product: xHCI Host Controller
[ 19.008926] usb usb9: Manufacturer: Linux 6.6.32-calculate xhci-hcd
[ 19.008928] usb usb9: SerialNumber: 0000:03:00.0
[ 19.009098] hub 9-0:1.0: USB hub found
[ 19.009115] hub 9-0:1.0: 4 ports detected
[ 19.009403] usbcore: registered new interface driver usbserial_generic
[ 19.009413] usbserial: USB Serial support registered for generic
[ 19.009468] i8042: PNP: No PS/2 controller found.
[ 19.009584] mousedev: PS/2 mouse device common for all mice
[ 19.009702] rtc_cmos 00:03: RTC can wake from S4
[ 19.009953] rtc_cmos 00:03: registered as rtc0
[ 19.009977] rtc_cmos 00:03: setting system clock to 2024-08-25T04:15:18 UTC (1724559318)
[ 19.010006] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 19.010041] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 19.010050] device-mapper: uevent: version 1.0.3
[ 19.010172] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 19.010386] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled
[ 19.010681] efifb: probing for efifb
[ 19.010693] efifb: No BGRT, not showing boot graphics
[ 19.010695] efifb: framebuffer at 0xc0000000, using 3072k, total 3072k
[ 19.010697] efifb: mode is 1024x768x32, linelength=4096, pages=1
[ 19.010698] efifb: scrolling: redraw
[ 19.010699] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 19.010792] fbcon: Deferring console take-over
[ 19.010794] fb0: EFI VGA frame buffer device
[ 19.010820] hid: raw HID events driver (C) Jiri Kosina
[ 19.010863] usbcore: registered new interface driver usbhid
[ 19.010864] usbhid: USB HID core driver
[ 19.011016] drop_monitor: Initializing network drop monitor service
[ 19.011109] Initializing XFRM netlink socket
[ 19.011139] NET: Registered PF_INET6 protocol family
[ 19.013009] Segment Routing with IPv6
[ 19.013015] RPL Segment Routing with IPv6
[ 19.013033] In-situ OAM (IOAM) with IPv6
[ 19.013065] mip6: Mobile IPv6
[ 19.013071] NET: Registered PF_PACKET protocol family
[ 19.013966] microcode: CPU3: patch_level=0x010000c8
[ 19.013986] microcode: CPU0: patch_level=0x010000c8
[ 19.013989] microcode: CPU2: patch_level=0x010000c8
[ 19.013990] microcode: CPU1: patch_level=0x010000c8
[ 19.014024] microcode: Microcode Update Driver: v2.2.
[ 19.014030] IPI shorthand broadcast: enabled
[ 19.016815] sched_clock: Marking stable (19013340713, 1217265)->(19015790309, -1232331)
[ 19.017064] registered taskstats version 1
[ 19.017539] Loading compiled-in X.509 certificates
[ 19.018863] Loaded X.509 cert 'Build time autogenerated kernel key: 9d7f63de0b77c491ed4f65db1c83cc1080d422bf'
[ 19.022663] page_owner is disabled
[ 19.022949] Key type .fscrypt registered
[ 19.022956] Key type fscrypt-provisioning registered
[ 19.023658] Btrfs loaded, zoned=yes, fsverity=yes
[ 19.023686] Key type big_key registered
[ 19.024429] Key type encrypted registered
[ 19.024874] ima: No TPM chip found, activating TPM-bypass!
[ 19.024887] Loading compiled-in module X.509 certificates
[ 19.025979] Loaded X.509 cert 'Build time autogenerated kernel key: 9d7f63de0b77c491ed4f65db1c83cc1080d422bf'
[ 19.025982] ima: Allocated hash algorithm: sha256
[ 19.025995] ima: No architecture policies found
[ 19.026013] evm: Initialising EVM extended attributes:
[ 19.026014] evm: security.selinux
[ 19.026015] evm: security.SMACK64 (disabled)
[ 19.026016] evm: security.SMACK64EXEC (disabled)
[ 19.026017] evm: security.SMACK64TRANSMUTE (disabled)
[ 19.026018] evm: security.SMACK64MMAP (disabled)
[ 19.026019] evm: security.apparmor
[ 19.026020] evm: security.ima
[ 19.026021] evm: security.capability
[ 19.026022] evm: HMAC attrs: 0x1
[ 19.026161] PM: Magic number: 4:34:263
[ 19.026618] hid_bpf: error while preloading HID BPF dispatcher: -22
[ 19.026628] RAS: Correctable Errors collector initialized.
[ 19.026675] clk: Disabling unused clocks
[ 19.029253] Freeing unused decrypted memory: 2028K
[ 19.031007] Freeing unused kernel image (initmem) memory: 4592K
[ 19.031011] Write protecting the kernel read-only data: 30720k
[ 19.031726] Freeing unused kernel image (rodata/data gap) memory: 1108K
[ 19.077502] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 19.077554] Run /init as init process
[ 19.077561] with arguments:
[ 19.077562] /init
[ 19.077564] nodevfs
[ 19.077565] splash
[ 19.077566] with environment:
[ 19.077567] HOME=/
[ 19.077568] TERM=linux
[ 19.077569] BOOT_IMAGE=/boot/vmlinuz
[ 19.077570] calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:amdgpu,composite:on
[ 19.131286] usb 1-1: new full-speed USB device number 2 using ohci-pci
[ 19.264624] usb 8-4: new high-speed USB device number 2 using xhci_hcd
[ 19.326994] usb 1-1: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice= 1.00
[ 19.327003] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 19.327005] usb 1-1: Product: Bluetooth V2.0 Dongle
[ 19.327007] usb 1-1: Manufacturer: Bluetooth v2.0
[ 19.337960] usb 7-1: new full-speed USB device number 2 using ohci-pci
[ 19.414590] usb 8-4: New USB device found, idVendor=346d, idProduct=5678, bcdDevice= 2.00
[ 19.414600] usb 8-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 19.414602] usb 8-4: Product: Disk 2.0
[ 19.414604] usb 8-4: Manufacturer: USB
[ 19.414606] usb 8-4: SerialNumber: 7206381124419358658
[ 19.527677] usb 7-1: New USB device found, idVendor=0471, idProduct=0815, bcdDevice= 0.00
[ 19.527685] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 19.527687] usb 7-1: Product: eHome Infrared Transceiver
[ 19.527689] usb 7-1: Manufacturer: Philips
[ 19.527691] usb 7-1: SerialNumber: PH00G7Sx
[ 19.824612] usb 1-2: new low-speed USB device number 3 using ohci-pci
[ 20.027998] usb 1-2: New USB device found, idVendor=1241, idProduct=1503, bcdDevice= 2.90
[ 20.028010] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 20.028013] usb 1-2: Product: USB Keyboard
[ 20.028015] usb 1-2: Manufacturer:
[ 20.042370] input: USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb1/1-2/1-2:1.0/0003:1241:1503.0001/input/input2
[ 20.098156] hid-generic 0003:1241:1503.0001: input,hidraw0: USB HID v1.10 Keyboard [ USB Keyboard] on usb-0000:00:12.0-2/input0
[ 20.115383] input: USB Keyboard System Control as /devices/pci0000:00/0000:00:12.0/usb1/1-2/1-2:1.1/0003:1241:1503.0002/input/input3
[ 20.171438] input: USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:12.0/usb1/1-2/1-2:1.1/0003:1241:1503.0002/input/input4
[ 20.171620] hid-generic 0003:1241:1503.0002: input,hidraw1: USB HID v1.10 Device [ USB Keyboard] on usb-0000:00:12.0-2/input1
[ 20.571300] usb 1-5: new low-speed USB device number 4 using ohci-pci
[ 20.765355] usb 1-5: New USB device found, idVendor=2635, idProduct=0601, bcdDevice= 1.00
[ 20.765364] usb 1-5: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 20.765366] usb 1-5: Product: 2.4G RF MOUSE
[ 20.772379] input: 2.4G RF MOUSE as /devices/pci0000:00/0000:00:12.0/usb1/1-5/1-5:1.0/0003:2635:0601.0003/input/input5
[ 20.772523] hid-generic 0003:2635:0601.0003: input,hidraw2: USB HID v1.11 Mouse [ 2.4G RF MOUSE] on usb-0000:00:12.0-5/input0
[ 20.933710] dracut: root was live:LABEL=CLDX-20240815, is now live:/dev/disk/by-label/CLDX-20240815
[ 21.064704] dracut: TuxOnIce premodule started
[ 21.064798] dracut: Kernel has no tuxonice support, aborting
[ 21.169267] RPC: Registered named UNIX socket transport module.
[ 21.169272] RPC: Registered udp transport module.
[ 21.169273] RPC: Registered tcp transport module.
[ 21.169274] RPC: Registered tcp-with-tls transport module.
[ 21.169275] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 21.215491] fbcon: Taking over console
[ 21.216194] Console: switching to colour frame buffer device 128x48
[ 27.630932] [drm] amdgpu kernel modesetting enabled.
[ 27.631175] amdgpu: Virtual CRAT table created for CPU
[ 27.631196] amdgpu: Topology: Add CPU node
[ 27.632453] [drm] initializing kernel modesetting (POLARIS11 0x1002:0x67FF 0x1458:0x22FF 0xCF).
[ 27.632493] [drm] register mmio base: 0xFEA00000
[ 27.632494] [drm] register mmio size: 262144
[ 27.632629] [drm] add ip block number 0 <vi_common>
[ 27.632634] [drm] add ip block number 1 <gmc_v8_0>
[ 27.632636] [drm] add ip block number 2 <tonga_ih>
[ 27.632638] [drm] add ip block number 3 <gfx_v8_0>
[ 27.632639] [drm] add ip block number 4 <sdma_v3_0>
[ 27.632640] [drm] add ip block number 5 <powerplay>
[ 27.632642] [drm] add ip block number 6 <dm>
[ 27.632643] [drm] add ip block number 7 <uvd_v6_0>
[ 27.632644] [drm] add ip block number 8 <vce_v3_0>
[ 27.632915] amdgpu 0000:01:00.0: No more image in the PCI ROM
[ 27.632961] amdgpu 0000:01:00.0: amdgpu: Fetched VBIOS from ROM BAR
[ 27.632964] amdgpu: ATOM BIOS: xxx-xxx-xxx
[ 27.632991] [drm] UVD is enabled in VM mode
[ 27.632992] [drm] UVD ENC is enabled in VM mode
[ 27.632995] [drm] VCE enabled in VM mode
[ 27.633161] Console: switching to colour dummy device 80x25
[ 27.633193] amdgpu 0000:01:00.0: vgaarb: deactivate vga console
[ 27.633196] amdgpu 0000:01:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
[ 27.633199] amdgpu 0000:01:00.0: amdgpu: PCIE atomic ops is not supported
[ 27.633236] [drm] vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
[ 27.633573] amdgpu 0000:01:00.0: amdgpu: VRAM: 4096M 0x000000F400000000 - 0x000000F4FFFFFFFF (4096M used)
[ 27.633578] amdgpu 0000:01:00.0: amdgpu: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
[ 27.633588] [drm] Detected VRAM RAM=4096M, BAR=256M
[ 27.633590] [drm] RAM width 128bits GDDR5
[ 27.633843] [drm] amdgpu: 4096M of VRAM memory ready
[ 27.633852] [drm] amdgpu: 3957M of GTT memory ready.
[ 27.633887] [drm] GART: num cpu pages 65536, num gpu pages 65536
[ 27.634405] [drm] PCIE GART of 256M enabled (table at 0x000000F400300000).
[ 27.634993] [drm] Chained IB support enabled!
[ 27.640641] amdgpu: hwmgr_sw_init smu backed is polaris10_smu
[ 27.643677] [drm] Found UVD firmware Version: 1.130 Family ID: 16
[ 27.646132] [drm] Found VCE firmware Version: 53.26 Binary ID: 3
[ 27.731558] [drm] Display Core v3.2.247 initialized on DCE 11.2
[ 27.898759] [drm] UVD and UVD ENC initialized successfully.
[ 28.009689] [drm] VCE initialized successfully.
[ 28.010494] kfd kfd: amdgpu: skipped device 1002:67ff, PCI rejects atomics 730<0
[ 28.010512] amdgpu 0000:01:00.0: amdgpu: SE 2, SH per SE 1, CU per SH 8, active_cu_number 16
[ 28.014606] amdgpu 0000:01:00.0: amdgpu: Using BACO for runtime pm
[ 28.015173] [drm] Initialized amdgpu 3.54.0 20150101 for 0000:01:00.0 on minor 0
[ 28.051309] fbcon: amdgpudrmfb (fb0) is primary device
[ 28.088427] Console: switching to colour frame buffer device 240x67
[ 28.094483] amdgpu 0000:01:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 28.132147] dracut: Starting plymouth daemon
[ 28.228239] dracut: rd.md=0: removing MD RAID activation
[ 28.430472] usb-storage 8-4:1.0: USB Mass Storage device detected
[ 28.435506] scsi host4: usb-storage 8-4:1.0
[ 28.438248] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[ 28.438453] usbcore: registered new interface driver usb-storage
[ 28.438485] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[ 28.440666] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[ 28.440815] scsi host5: pata_atiixp
[ 28.441088] scsi host6: pata_atiixp
[ 28.441148] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xf000 irq 14
[ 28.441151] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xf008 irq 15
[ 28.442069] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 28.477351] usbcore: registered new interface driver uas
[ 28.521023] r8169 0000:04:00.0 eth0: RTL8168g/8111g, b4:2e:99:41:4c:8a, XID 4c0, IRQ 41
[ 28.521035] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 28.634929] ata5.00: ATAPI: HL-DT-ST DVDRAM GH22NS40, NL01, max UDMA/100
[ 28.634939] ata5.00: limited to UDMA/33 due to 40-wire cable
[ 28.668066] scsi 5:0:0:0: CD-ROM HL-DT-ST DVDRAM GH22NS40 NL01 PQ: 0 ANSI: 5
[ 28.759225] sr 5:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 28.759235] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 28.820059] sr 5:0:0:0: Attached scsi CD-ROM sr0
[ 28.820262] sr 5:0:0:0: Attached scsi generic sg3 type 5
[ 29.458955] scsi 4:0:0:0: Direct-Access VendorCo ProductCode 2.00 PQ: 0 ANSI: 4
[ 29.459318] sd 4:0:0:0: Attached scsi generic sg4 type 0
[ 29.460890] sd 4:0:0:0: [sdd] 122880000 512-byte logical blocks: (62.9 GB/58.6 GiB)
[ 29.461054] sd 4:0:0:0: [sdd] Write Protect is off
[ 29.461063] sd 4:0:0:0: [sdd] Mode Sense: 03 00 00 00
[ 29.461297] sd 4:0:0:0: [sdd] No Caching mode page found
[ 29.461305] sd 4:0:0:0: [sdd] Assuming drive cache: write through
[ 29.463395] sdd: sdd1 sdd2
[ 29.463755] sd 4:0:0:0: [sdd] Attached SCSI removable disk
[ 34.489180] dm_patch: module verification failed: signature and/or required key missing - tainting kernel
[ 34.489361] ------------[ cut here ]------------
[ 34.489362] CPA detected W^X violation: 0000000000000121 -> 0000000000000123 range: 0xffffffffb3dab000 - 0xffffffffb3dabfff PFN 1abdab
[ 34.489369] WARNING: CPU: 1 PID: 900 at arch/x86/mm/pat/set_memory.c:645 __change_page_attr_set_clr+0xef8/0x1030
[ 34.489378] Modules linked in: dm_patch(E+) ata_generic pata_acpi uas sp5100_tco pata_atiixp r8169 usb_storage amdgpu drm_exec amdxcp drm_buddy gpu_sched video wmi i2c_algo_bit drm_suballoc_helper drm_display_helper cec drm_ttm_helper ttm sunrpc
[ 34.489398] CPU: 1 PID: 900 Comm: insmod Tainted: G E 6.6.32-calculate #1
[ 34.489401] Hardware name: Gigabyte Technology Co., Ltd. To be filled by O.E.M./970A-DS3P, BIOS FD 02/26/2016
[ 34.489403] RIP: 0010:__change_page_attr_set_clr+0xef8/0x1030
[ 34.489408] Code: 89 f9 48 89 c2 48 89 44 24 08 48 c7 c7 70 77 b3 b4 c6 05 27 f2 05 02 01 4c 8d 86 ff 0f 00 00 48 89 f1 4c 89 d6 e8 d8 e1 06 00 <0f> 0b 48 8b 44 24 08 e9 52 fc ff ff 4d 89 f3 48 8b 15 ba db b6 01
[ 34.489411] RSP: 0018:ffffc900009ef8c0 EFLAGS: 00010282
[ 34.489413] RAX: 0000000000000000 RBX: 00000001abdab121 RCX: c0000000ffffdfff
[ 34.489415] RDX: 0000000000000000 RSI: 00000000ffffdfff RDI: 0000000000000001
[ 34.489417] RBP: 00000001abdab121 R08: 0000000000000000 R09: ffffc900009ef748
[ 34.489419] R10: 0000000000000003 R11: ffffffffb4f45ec8 R12: ffffffffb3e00000
[ 34.489420] R13: 0000000000000001 R14: 0000000000001000 R15: 00000000001abdab
[ 34.489422] FS: 0000000000705418(0000) GS:ffff888237c80000(0000) knlGS:0000000000000000
[ 34.489424] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 34.489426] CR2: 0000000000502ed8 CR3: 0000000109860000 CR4: 00000000000006e0
[ 34.489428] Call Trace:
[ 34.489432] <TASK>
[ 34.489434] ? __change_page_attr_set_clr+0xef8/0x1030
[ 34.489438] ? __warn+0x81/0x130
[ 34.489444] ? __change_page_attr_set_clr+0xef8/0x1030
[ 34.489447] ? report_bug+0x171/0x1a0
[ 34.489450] ? console_unlock+0x78/0x120
[ 34.489454] ? handle_bug+0x3c/0x80
[ 34.489458] ? exc_invalid_op+0x17/0x70
[ 34.489461] ? asm_exc_invalid_op+0x1a/0x20
[ 34.489465] ? hidraw_ioctl+0x380/0x3a0
[ 34.489469] ? __change_page_attr_set_clr+0xef8/0x1030
[ 34.489473] ? dm_submit_bio+0x250/0x5e0
[ 34.489478] ? _vm_unmap_aliases+0x295/0x2e0
[ 34.489482] change_page_attr_set_clr+0x104/0x1a0
[ 34.489487] ? dm_submit_bio+0x250/0x5e0
[ 34.489490] set_memory_rw+0x2a/0x40
[ 34.489494] ? dm_submit_bio+0x250/0x5e0
[ 34.489498] dmpatch_process+0x2ce/0x8d0 [dm_patch]
[ 34.489504] ? dmpatch_process+0x8d0/0x8d0 [dm_patch]
[ 34.489509] dmpatch_init+0xde/0x160 [dm_patch]
[ 34.489514] do_one_initcall+0x5d/0x320
[ 34.489519] do_init_module+0x60/0x230
[ 34.489524] __do_sys_init_module+0x17f/0x1b0
[ 34.489527] ? syscall_exit_to_user_mode+0x22/0x40
[ 34.489532] do_syscall_64+0x5a/0xb0
[ 34.489535] ? syscall_exit_to_user_mode+0x22/0x40
[ 34.489539] ? do_syscall_64+0x66/0xb0
[ 34.489541] ? copyout+0x20/0x30
[ 34.489544] ? _copy_to_iter+0x5e/0x4a0
[ 34.489547] ? current_time+0x40/0xe0
[ 34.489551] ? atime_needs_update+0xa0/0x120
[ 34.489555] ? touch_atime+0x1e/0x120
[ 34.489558] ? filemap_read+0x328/0x350
[ 34.489564] ? vfs_read+0x201/0x350
[ 34.489568] ? ksys_read+0x6f/0xf0
[ 34.489572] ? syscall_exit_to_user_mode+0x22/0x40
[ 34.489575] ? do_syscall_64+0x66/0xb0
[ 34.489577] ? do_user_addr_fault+0x30f/0x660
[ 34.489581] ? exc_page_fault+0x7f/0x180
[ 34.489585] entry_SYSCALL_64_after_hwframe+0x78/0xe2
[ 34.489589] RIP: 0033:0x4bdb7f
[ 34.489592] Code: 10 4c 8d 41 08 4c 89 44 24 10 4c 8b 01 8b 4c 24 08 83 f9 2f 77 0a 4c 8d 4c 24 20 4c 01 c9 eb 05 48 8b 4c 24 10 4c 8b 09 0f 05 <48> 89 c7 e8 29 27 f4 ff 48 83 c4 58 c3 48 83 ec 08 31 d2 be 02 00
[ 34.489594] RSP: 002b:00007ffe0bb33ff0 EFLAGS: 00000212 ORIG_RAX: 00000000000000af
[ 34.489597] RAX: ffffffffffffffda RBX: 00007ffe0bb34310 RCX: 00000000004bdb7f
[ 34.489598] RDX: 0000000000502edb RSI: 0000000000003a58 RDI: 0000000001215000
[ 34.489600] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000003a58
[ 34.489601] R10: 0000000000000000 R11: 0000000000000212 R12: 00007ffe0bb34318
[ 34.489603] R13: 0000000000502edb R14: 0000000000000000 R15: 0000000000000000
[ 34.489606] </TASK>
[ 34.489606] ---[ end trace 0000000000000000 ]---
[ 34.492966] ------------[ cut here ]------------
[ 34.492971] WARNING: CPU: 0 PID: 902 at block/holder.c:84 bd_link_disk_holder+0x1d4/0x230
[ 34.492980] Modules linked in: dm_patch(E) ata_generic pata_acpi uas sp5100_tco pata_atiixp r8169 usb_storage amdgpu drm_exec amdxcp drm_buddy gpu_sched video wmi i2c_algo_bit drm_suballoc_helper drm_display_helper cec drm_ttm_helper ttm sunrpc
[ 34.493003] CPU: 0 PID: 902 Comm: dmsetup Tainted: G W E 6.6.32-calculate #1
[ 34.493006] Hardware name: Gigabyte Technology Co., Ltd. To be filled by O.E.M./970A-DS3P, BIOS FD 02/26/2016
[ 34.493009] RIP: 0010:bd_link_disk_holder+0x1d4/0x230
[ 34.493013] Code: 89 9d 70 02 00 00 e8 1b 9c 80 00 e9 16 ff ff ff 0f 0b 41 bf ea ff ff ff 5b 5d 44 89 f8 41 5c 41 5d 41 5e 41 5f c3 cc cc cc cc <0f> 0b e9 b5 fe ff ff 48 8b b5 c8 00 00 00 49 8b bd 68 02 00 00 e8
[ 34.493016] RSP: 0018:ffffc900005539f8 EFLAGS: 00010246
[ 34.493019] RAX: 0000000000000000 RBX: 0000000000000000 RCX: ffff88810cda3800
[ 34.493021] RDX: ffff88810c9aa780 RSI: ffff88810c9e0400 RDI: ffff88810c9e05f8
[ 34.493022] RBP: ffff888100485780 R08: 0000000000000000 R09: 00000000000391a0
[ 34.493024] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000001
[ 34.493025] R13: ffff88810c9e0400 R14: ffff88810c9e05f8 R15: ffff8881085f5f80
[ 34.493027] FS: 00007f6e08bf0780(0000) GS:ffff888237c00000(0000) knlGS:0000000000000000
[ 34.493030] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 34.493031] CR2: 000055760a92abe8 CR3: 000000010d87e000 CR4: 00000000000006f0
[ 34.493034] Call Trace:
[ 34.493037] <TASK>
[ 34.493038] ? bd_link_disk_holder+0x1d4/0x230
[ 34.493041] ? __warn+0x81/0x130
[ 34.493047] ? bd_link_disk_holder+0x1d4/0x230
[ 34.493050] ? report_bug+0x171/0x1a0
[ 34.493054] ? handle_bug+0x3c/0x80
[ 34.493061] ? exc_invalid_op+0x17/0x70
[ 34.493065] ? asm_exc_invalid_op+0x1a/0x20
[ 34.493070] ? bd_link_disk_holder+0x1d4/0x230
[ 34.493073] ? bd_link_disk_holder+0x85/0x230
[ 34.493076] dm_setup_md_queue+0x12c/0x1e0
[ 34.493083] table_load+0x269/0x420
[ 34.493087] ? __pfx_table_load+0x10/0x10
[ 34.493089] ctl_ioctl+0x311/0x5e0
[ 34.493095] dm_ctl_ioctl+0xe/0x20
[ 34.493097] __x64_sys_ioctl+0x97/0xd0
[ 34.493101] do_syscall_64+0x5a/0xb0
[ 34.493104] ? syscall_exit_to_user_mode+0x22/0x40
[ 34.493109] ? do_syscall_64+0x66/0xb0
[ 34.493111] ? __mod_lruvec_page_state+0x99/0x130
[ 34.493120] ? folio_add_new_anon_rmap+0x45/0xe0
[ 34.493124] ? set_ptes.isra.0+0x1e/0xa0
[ 34.493128] ? do_anonymous_page+0x308/0x3b0
[ 34.493132] ? __handle_mm_fault+0xbf7/0xd90
[ 34.493136] ? __count_memcg_events+0x42/0x90
[ 34.493140] ? count_memcg_events.constprop.0+0x1a/0x30
[ 34.493143] ? handle_mm_fault+0xa2/0x360
[ 34.493145] ? do_user_addr_fault+0x30f/0x660
[ 34.493150] ? exc_page_fault+0x7f/0x180
[ 34.493153] entry_SYSCALL_64_after_hwframe+0x78/0xe2
[ 34.493158] RIP: 0033:0x7f6e08e2537f
[ 34.493161] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <89> c2 3d 00 f0 ff ff 77 18 48 8b 44 24 18 64 48 2b 04 25 28 00 00
[ 34.493163] RSP: 002b:00007fff685e67b0 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[ 34.493166] RAX: ffffffffffffffda RBX: 000055760a9253a0 RCX: 00007f6e08e2537f
[ 34.493167] RDX: 000055760a926be0 RSI: 00000000c138fd09 RDI: 0000000000000003
[ 34.493169] RBP: 0000000000000003 R08: 00007f6e08f585c0 R09: 00007fff685e6660
[ 34.493170] R10: 00007f6e08f509e4 R11: 0000000000000246 R12: 00007f6e08f50b4d
[ 34.493172] R13: 000055760a926c90 R14: 00007f6e08f50227 R15: 00007f6e08f50c11
[ 34.493175] </TASK>
[ 34.493176] ---[ end trace 0000000000000000 ]---
[ 34.604940] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 34.667218] UDF-fs: warning (device dm-0): udf_load_vrs: No anchor found
[ 34.667226] UDF-fs: Scanning with blocksize 512 failed
[ 34.681044] UDF-fs: warning (device dm-0): udf_load_vrs: No anchor found
[ 34.681051] UDF-fs: Scanning with blocksize 1024 failed
[ 34.690763] UDF-fs: INFO Mounting volume 'CLDX-20240815', timestamp 2024/08/15 18:37 (1000)
[ 34.719539] loop0: detected capacity change from 0 to 5962848
[ 34.768371] dracut: TuxOnIce lvmfix started
[ 34.771640] dracut: TuxOnIce udev should be now fully settled
[ 34.868749] dracut: Mounted root filesystem none
[ 35.143646] dracut: Switching root
[ 37.009849] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 37.009863] piix4_smbus 0000:00:14.0: Using register 0x2c for SMBus port selection
[ 37.010013] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[ 37.107719] r8169 0000:04:00.0 enp4s0: renamed from eth0
[ 37.177060] acpi_cpufreq: overriding BIOS provided _PSD data
[ 37.232317] input: PC Speaker as /devices/platform/pcspkr/input/input6
[ 37.348302] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[ 37.348583] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
[ 37.410552] Bluetooth: Core ver 2.22
[ 37.410584] NET: Registered PF_BLUETOOTH protocol family
[ 37.410586] Bluetooth: HCI device and connection manager initialized
[ 37.410592] Bluetooth: HCI socket layer initialized
[ 37.410595] Bluetooth: L2CAP socket layer initialized
[ 37.410601] Bluetooth: SCO socket layer initialized
[ 37.586938] usbcore: registered new interface driver btusb
[ 37.589050] Bluetooth: hci0: CSR: Setting up dongle with HCI ver=4 rev=5000
[ 37.589060] Bluetooth: hci0: LMP ver=4 subver=420e; manufacturer=15
[ 37.589078] Bluetooth: hci0: CSR: Unbranded CSR clone detected; adding workarounds and force-suspending once...
[ 37.590018] snd_hda_intel 0000:01:00.1: bound 0000:01:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 37.592350] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input7
[ 37.593161] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input8
[ 37.593269] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input9
[ 37.593324] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input10
[ 37.593379] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input11
[ 37.715585] kvm_amd: Nested Virtualization enabled
[ 37.715591] kvm_amd: Nested Paging enabled
[ 37.715598] kvm_amd: LBR virtualization supported
[ 37.774204] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 37.774214] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 37.774217] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 37.774220] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 37.774221] snd_hda_codec_realtek hdaudioC0D0: dig-out=0x11/0x0
[ 37.774223] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 37.774225] snd_hda_codec_realtek hdaudioC0D0: Front Mic=0x19
[ 37.774227] snd_hda_codec_realtek hdaudioC0D0: Rear Mic=0x18
[ 37.774229] snd_hda_codec_realtek hdaudioC0D0: Line=0x1a
[ 37.792600] input: HDA ATI SB Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
[ 37.792724] input: HDA ATI SB Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input14
[ 37.792783] input: HDA ATI SB Line as /devices/pci0000:00/0000:00:14.2/sound/card0/input15
[ 37.792874] input: HDA ATI SB Line Out as /devices/pci0000:00/0000:00:14.2/sound/card0/input16
[ 37.792927] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input17
[ 37.806197] MCE: In-kernel MCE decoding enabled.
[ 37.844654] Registered IR keymap rc-rc6-mce
[ 37.881139] Bluetooth: hci0: HCI Delete Stored Link Key command is advertised, but not supported.
[ 37.881146] Bluetooth: hci0: HCI Read Default Erroneous Data Reporting command is advertised, but not supported.
[ 37.881148] Bluetooth: hci0: HCI Set Event Filter command not supported.
[ 37.908314] IR RC6 protocol handler initialized
[ 37.971389] rc rc0: Media Center Ed. eHome Infrared Remote Transceiver (0471:0815) as /devices/pci0000:00/0000:00:16.0/usb7/7-1/7-1:1.0/rc/rc0
[ 37.971581] rc rc0: lirc_dev: driver mceusb registered at minor = 0, raw IR receiver, raw IR transmitter
[ 37.971651] input: Media Center Ed. eHome Infrared Remote Transceiver (0471:0815) as /devices/pci0000:00/0000:00:16.0/usb7/7-1/7-1:1.0/rc/rc0/input12
[ 38.138688] mceusb 7-1:1.0: long-range (0x1) receiver active
[ 38.188093] mceusb 7-1:1.0: Registered Philips eHome Infrared Transceiver with mce emulator interface version 1
[ 38.188104] mceusb 7-1:1.0: 2 tx ports (0x3 cabled) and 2 rx sensors (0x1 active)
[ 38.188153] usbcore: registered new interface driver mceusb
[ 38.664043] zram: Added device: zram0
[ 38.713399] zram0: detected capacity change from 0 to 32419504
[ 38.734364] Adding 16209748k swap on /dev/zram0. Priority:100 extents:1 across:16209748k SS
|