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 | [ 0.000000] microcode: updated early: 0x428 -> 0x42e, date = 2019-03-14
[ 0.000000] Linux version 6.5.1-xanmod1 (root@dualxeon) (gcc (Gentoo 12.3.1_p20230526 p2) 12.3.1 20230526, GNU ld (Gentoo 2.40 p5) 2.40.0) #1 SMP PREEMPT Tue Sep 5 19:30:44 +04 2023
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.5.1-xanmod1 root=UUID=9e003968-df55-478a-81c8-3d94cac4f3f8 ro video=1920x1080 resume=PARTUUID=3b1c9954-d869-d748-9fb4-0f4861e1b54d rd.retry=40 calculate=video:nvidia rd.plymouth=0 splash=off console=tty1 quiet mitigations=off trace_clock=global tsc=unstable intel_pstate=no_hwp intel_pstate=active intel_pstate=support_acpi_ppc
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007b05efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007b05f000-0x000000007b092fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007b093000-0x000000007b19efff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007b19f000-0x000000007b77dfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007b77e000-0x000000007b8a0fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007b8a1000-0x000000007b8e6fff] type 20
[ 0.000000] BIOS-e820: [mem 0x000000007b8e7000-0x000000007b8e7fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007b8e8000-0x000000007b96dfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007b96e000-0x000000007bffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.3.1 by American Megatrends
[ 0.000000] efi: ESRT=0x7b89fd18 ACPI 2.0=0x7b0c8000 SMBIOS=0x7b89fb98 ACPI=0x7b0c8000
[ 0.000000] efi: Remove mem50: MMIO range=[0xd0000000-0xdfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xd0000000-0xdfffffff] reserved
[ 0.000000] efi: Not removing mem51: MMIO range=[0xfed1c000-0xfed1ffff] (16KB) from e820 map
[ 0.000000] efi: Remove mem52: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 2.8 present.
[ 0.000000] DMI: HUANANZHI X79-16D HUANANZHI X79-16D/HUANANZHI X79-16D, BIOS 4.6.5 10/28/2019
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3300.065 MHz processor
[ 0.000364] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000366] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000371] last_pfn = 0x2080000 max_arch_pfn = 0x400000000
[ 0.000381] total RAM covered: 131040M
[ 0.000555] Found optimal setting for mtrr clean up
[ 0.000558] gran_size: 64K chunk_size: 64M num_reg: 8 lose cover RAM: 0G
[ 0.000562] MTRR map: 6 entries (3 fixed + 3 variable; max 23), built from 10 variable MTRRs
[ 0.000565] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000983] e820: update [mem 0x7e000000-0xffffffff] usable ==> reserved
[ 0.000986] last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[ 0.000999] esrt: Reserving ESRT space from 0x000000007b89fd18 to 0x000000007b89fd50.
[ 0.001008] Kernel/User page tables isolation: disabled on command line.
[ 0.001009] Using GB pages for direct mapping
[ 0.001214] Secure boot disabled
[ 0.001214] RAMDISK: [mem 0x36f2f000-0x3778efff]
[ 0.001217] ACPI: Early table checksum verification disabled
[ 0.001222] ACPI: RSDP 0x000000007B0C8000 000024 (v02 ALASKA)
[ 0.001225] ACPI: XSDT 0x000000007B0C8070 000064 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.001230] ACPI: FACP 0x000000007B0D1410 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
[ 0.001236] ACPI: DSDT 0x000000007B0C8168 0092A5 (v02 ALASKA A M I 00000017 INTL 20051117)
[ 0.001238] ACPI: FACS 0x000000007B775F80 000040
[ 0.001241] ACPI: APIC 0x000000007B0D1520 000224 (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.001243] ACPI: FPDT 0x000000007B0D1748 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.001246] ACPI: FIDT 0x000000007B0D1790 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.001248] ACPI: MCFG 0x000000007B0D1830 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[ 0.001251] ACPI: HPET 0x000000007B0D1870 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
[ 0.001253] ACPI: SSDT 0x000000007B0D18A8 0CD380 (v02 INTEL CpuPm 00004000 INTL 20051117)
[ 0.001256] ACPI: DMAR 0x000000007B19EC28 000208 (v01 A M I OEMDMAR 00000001 INTL 00000001)
[ 0.001258] ACPI: Reserving FACP table memory at [mem 0x7b0d1410-0x7b0d151b]
[ 0.001260] ACPI: Reserving DSDT table memory at [mem 0x7b0c8168-0x7b0d140c]
[ 0.001260] ACPI: Reserving FACS table memory at [mem 0x7b775f80-0x7b775fbf]
[ 0.001261] ACPI: Reserving APIC table memory at [mem 0x7b0d1520-0x7b0d1743]
[ 0.001262] ACPI: Reserving FPDT table memory at [mem 0x7b0d1748-0x7b0d178b]
[ 0.001262] ACPI: Reserving FIDT table memory at [mem 0x7b0d1790-0x7b0d182b]
[ 0.001263] ACPI: Reserving MCFG table memory at [mem 0x7b0d1830-0x7b0d186b]
[ 0.001264] ACPI: Reserving HPET table memory at [mem 0x7b0d1870-0x7b0d18a7]
[ 0.001264] ACPI: Reserving SSDT table memory at [mem 0x7b0d18a8-0x7b19ec27]
[ 0.001265] ACPI: Reserving DMAR table memory at [mem 0x7b19ec28-0x7b19ee2f]
[ 0.001364] Zone ranges:
[ 0.001364] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.001366] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.001367] Normal [mem 0x0000000100000000-0x000000207fffffff]
[ 0.001368] Movable zone start for each node
[ 0.001369] Early memory node ranges
[ 0.001369] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.001371] node 0: [mem 0x0000000000100000-0x000000007b05efff]
[ 0.001372] node 0: [mem 0x000000007b8e7000-0x000000007b8e7fff]
[ 0.001373] node 0: [mem 0x000000007b96e000-0x000000007bffffff]
[ 0.001373] node 0: [mem 0x0000000100000000-0x000000207fffffff]
[ 0.001381] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[ 0.001387] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.001422] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.005654] On node 0, zone DMA32: 2184 pages in unavailable ranges
[ 0.005677] On node 0, zone DMA32: 134 pages in unavailable ranges
[ 0.006274] On node 0, zone Normal: 16384 pages in unavailable ranges
[ 0.006634] ACPI: PM-Timer IO Port: 0x408
[ 0.006644] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.006645] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.006646] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.006647] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.006648] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.006648] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.006649] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.006650] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.006651] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.006652] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.006653] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.006654] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.006655] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[ 0.006656] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[ 0.006656] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[ 0.006657] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[ 0.006658] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.006658] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.006659] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.006660] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.006660] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.006661] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.006661] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.006662] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.006662] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.006663] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.006664] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.006664] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.006665] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[ 0.006665] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[ 0.006666] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[ 0.006667] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[ 0.006676] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[ 0.006680] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[ 0.006685] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[ 0.006687] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.006689] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.006693] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.006694] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.006698] TSC deadline timer available
[ 0.006699] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[ 0.006711] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.006713] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.006714] PM: hibernation: Registered nosave memory: [mem 0x7b05f000-0x7b092fff]
[ 0.006715] PM: hibernation: Registered nosave memory: [mem 0x7b093000-0x7b19efff]
[ 0.006716] PM: hibernation: Registered nosave memory: [mem 0x7b19f000-0x7b77dfff]
[ 0.006716] PM: hibernation: Registered nosave memory: [mem 0x7b77e000-0x7b8a0fff]
[ 0.006717] PM: hibernation: Registered nosave memory: [mem 0x7b8a1000-0x7b8e6fff]
[ 0.006718] PM: hibernation: Registered nosave memory: [mem 0x7b8e8000-0x7b96dfff]
[ 0.006719] PM: hibernation: Registered nosave memory: [mem 0x7c000000-0xfed1bfff]
[ 0.006720] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.006720] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xffffffff]
[ 0.006722] [mem 0x7c000000-0xfed1bfff] available for PCI devices
[ 0.006726] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 3821924579961850 ns
[ 0.010944] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[ 0.012591] percpu: Embedded 55 pages/cpu s186408 r8192 d30680 u262144
[ 0.012597] pcpu-alloc: s186408 r8192 d30680 u262144 alloc=1*2097152
[ 0.012600] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.012607] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
[ 0.012626] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.5.1-xanmod1 root=UUID=9e003968-df55-478a-81c8-3d94cac4f3f8 ro video=1920x1080 resume=PARTUUID=3b1c9954-d869-d748-9fb4-0f4861e1b54d rd.retry=40 calculate=video:nvidia rd.plymouth=0 splash=off console=tty1 quiet mitigations=off trace_clock=global tsc=unstable intel_pstate=no_hwp intel_pstate=active intel_pstate=support_acpi_ppc
[ 0.012697] tsc: Marking TSC unstable due to boot parameter
[ 0.012718] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.5.1-xanmod1 calculate=video:nvidia splash=off", will be passed to user space.
[ 0.012744] random: crng init done
[ 0.012745] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.012746] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[ 0.012747] printk: log_buf_len min size: 32768 bytes
[ 0.012982] printk: log_buf_len: 262144 bytes
[ 0.012983] printk: early log buf free: 21584(65%)
[ 0.022040] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.026592] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.026948] Built 1 zonelists, mobility grouping on. Total pages: 33011478
[ 0.026951] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.026962] software IO TLB: area num 32.
[ 0.057457] Memory: 2045804K/134142532K available (14336K kernel code, 1306K rwdata, 3616K rodata, 2012K init, 1100K bss, 2338428K reserved, 0K cma-reserved)
[ 0.057780] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.058087] rcu: Preemptible hierarchical RCU implementation.
[ 0.058089] Trampoline variant of Tasks RCU enabled.
[ 0.058090] Tracing variant of Tasks RCU enabled.
[ 0.058091] rcu: RCU calculated value of scheduler-enlistment delay is 50 jiffies.
[ 0.059008] NR_IRQS: 4352, nr_irqs: 1496, preallocated irqs: 16
[ 0.059238] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.059399] Console: colour dummy device 80x25
[ 0.059402] printk: console [tty1] enabled
[ 0.059450] ACPI: Core revision 20230331
[ 0.059902] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.059940] APIC: Switch to symmetric I/O mode setup
[ 0.059943] DMAR: Host address width 46
[ 0.059944] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[ 0.059951] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[ 0.059954] DMAR: DRHD base: 0x000000c7ffc000 flags: 0x1
[ 0.059957] DMAR: dmar1: reg_base_addr c7ffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[ 0.059959] DMAR: RMRR base: 0x0000007b7e0000 end: 0x0000007b7eefff
[ 0.059960] DMAR: ATSR flags: 0x0
[ 0.059962] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x0
[ 0.059963] DMAR: RHSA base: 0x000000c7ffc000 proximity domain: 0x0
[ 0.059965] DMAR-IR: IOAPIC id 3 under DRHD base 0xfbffe000 IOMMU 0
[ 0.059967] DMAR-IR: IOAPIC id 0 under DRHD base 0xc7ffc000 IOMMU 1
[ 0.059968] DMAR-IR: IOAPIC id 2 under DRHD base 0xc7ffc000 IOMMU 1
[ 0.059969] DMAR-IR: HPET id 0 under DRHD base 0xc7ffc000
[ 0.059970] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.060763] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.060765] x2apic enabled
[ 0.060772] Switched APIC routing to cluster x2apic.
[ 0.061415] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.069929] Calibrating delay loop (skipped), value calculated using timer frequency.. 6600.13 BogoMIPS (lpj=6600130)
[ 0.069957] CPU0: Thermal monitoring enabled (TM1)
[ 0.070022] process: using mwait in idle threads
[ 0.070026] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.070027] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[ 0.070032] Spectre V2 : User space: Vulnerable
[ 0.070035] Speculative Store Bypass: Vulnerable
[ 0.070040] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.070042] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.070043] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.070044] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.070046] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.084837] Freeing SMP alternatives memory: 36K
[ 0.084839] pid_max: default: 32768 minimum: 301
[ 0.086178] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.086419] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.086899] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2667 v2 @ 3.30GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[ 0.087066] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.087091] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.087106] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.087121] ... version: 3
[ 0.087122] ... bit width: 48
[ 0.087123] ... generic registers: 4
[ 0.087124] ... value mask: 0000ffffffffffff
[ 0.087125] ... max period: 00007fffffffffff
[ 0.087125] ... fixed-purpose events: 3
[ 0.087126] ... event mask: 000000070000000f
[ 0.087227] signal: max sigframe size: 1776
[ 0.087239] Estimated ratio of average max frequency by base frequency (times 1024): 1024
[ 0.087263] rcu: Hierarchical SRCU implementation.
[ 0.087264] rcu: Max phase no-delay instances is 800.
[ 0.087676] smp: Bringing up secondary CPUs ...
[ 0.087779] smpboot: x86: Booting SMP configuration:
[ 0.087780] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15
[ 0.000652] smpboot: CPU 8 Converting physical 0 to logical die 1
[ 0.162064] #16 #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[ 0.167989] smp: Brought up 1 node, 32 CPUs
[ 0.167992] smpboot: Max logical packages: 2
[ 0.167994] smpboot: Total of 32 processors activated (211419.52 BogoMIPS)
[ 0.223942] node 0 deferred pages initialised in 54ms
[ 0.230004] devtmpfs: initialized
[ 0.230016] x86/mm: Memory block size: 2048MB
[ 0.230671] ACPI: PM: Registering ACPI NVS region [mem 0x7b19f000-0x7b77dfff] (6156288 bytes)
[ 0.230671] ACPI: PM: Registering ACPI NVS region [mem 0x7b8e8000-0x7b96dfff] (548864 bytes)
[ 0.230671] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 3822520892550000 ns
[ 0.230671] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.230671] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.230671] audit: initializing netlink subsys (disabled)
[ 0.230671] audit: type=2000 audit(1693934325.172:1): state=initialized audit_enabled=0 res=1
[ 0.230671] thermal_sys: Registered thermal governor 'step_wise'
[ 0.230671] thermal_sys: Registered thermal governor 'user_space'
[ 0.231955] cpuidle: using governor ladder
[ 0.231968] cpuidle: using governor menu
[ 0.232097] dca service started, version 1.12.1
[ 0.232111] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[ 0.232116] PCI: not using MMCONFIG
[ 0.232118] PCI: Using configuration type 1 for base access
[ 0.232149] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[ 0.233938] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.233940] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.233941] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.233942] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.234023] ACPI: Added _OSI(Module Device)
[ 0.234023] ACPI: Added _OSI(Processor Device)
[ 0.234023] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.234023] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.293800] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.304069] ACPI: Interpreter enabled
[ 0.304086] ACPI: PM: (supports S0 S1 S3 S4 S5)
[ 0.304087] ACPI: Using IOAPIC for interrupt routing
[ 0.304123] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[ 0.306310] [Firmware Info]: PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] not reserved in ACPI motherboard resources
[ 0.306314] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved as EfiMemoryMappedIO
[ 0.306335] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.306336] PCI: Using E820 reservations for host bridge windows
[ 0.306617] ACPI: Enabled 5 GPEs in block 00 to 3F
[ 0.316282] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[ 0.316293] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.316342] acpi PNP0A08:00: _OSC: platform does not support [PME AER LTR DPC]
[ 0.316414] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
[ 0.316582] PCI host bridge to bus 0000:00
[ 0.316584] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.316586] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.316588] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.316589] pci_bus 0000:00: root bus resource [io 0x0d00-0x7fff window]
[ 0.316590] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.316592] pci_bus 0000:00: root bus resource [mem 0x90000000-0xc7ffffff window]
[ 0.316593] pci_bus 0000:00: root bus resource [mem 0x2080000000-0x381fffffffff window]
[ 0.316595] pci_bus 0000:00: root bus resource [bus 00-7e]
[ 0.316622] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[ 0.316692] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 0.316788] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[ 0.316866] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.317007] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[ 0.317085] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[ 0.317220] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[ 0.317298] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[ 0.317424] pci 0000:00:02.1: [8086:0e05] type 01 class 0x060400
[ 0.317502] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[ 0.317631] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[ 0.317708] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[ 0.317842] pci 0000:00:02.3: [8086:0e07] type 01 class 0x060400
[ 0.317919] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[ 0.318051] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[ 0.318082] pci 0000:00:03.0: enabling Extended Tags
[ 0.318134] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 0.318265] pci 0000:00:03.1: [8086:0e09] type 01 class 0x060400
[ 0.318343] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[ 0.318483] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[ 0.318560] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[ 0.318698] pci 0000:00:03.3: [8086:0e0b] type 01 class 0x060400
[ 0.318775] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[ 0.318899] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[ 0.318913] pci 0000:00:04.0: reg 0x10: [mem 0x381ffff20000-0x381ffff23fff 64bit]
[ 0.319020] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[ 0.319034] pci 0000:00:04.1: reg 0x10: [mem 0x381ffff1c000-0x381ffff1ffff 64bit]
[ 0.319140] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[ 0.319153] pci 0000:00:04.2: reg 0x10: [mem 0x381ffff18000-0x381ffff1bfff 64bit]
[ 0.319258] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[ 0.319272] pci 0000:00:04.3: reg 0x10: [mem 0x381ffff14000-0x381ffff17fff 64bit]
[ 0.319377] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[ 0.319390] pci 0000:00:04.4: reg 0x10: [mem 0x381ffff10000-0x381ffff13fff 64bit]
[ 0.319496] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[ 0.319509] pci 0000:00:04.5: reg 0x10: [mem 0x381ffff0c000-0x381ffff0ffff 64bit]
[ 0.319615] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[ 0.319629] pci 0000:00:04.6: reg 0x10: [mem 0x381ffff08000-0x381ffff0bfff 64bit]
[ 0.319733] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[ 0.319747] pci 0000:00:04.7: reg 0x10: [mem 0x381ffff04000-0x381ffff07fff 64bit]
[ 0.319850] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[ 0.319945] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[ 0.320050] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[ 0.320060] pci 0000:00:05.4: reg 0x10: [mem 0xc7403000-0xc7403fff]
[ 0.320167] pci 0000:00:06.0: [8086:0e10] type 00 class 0x088000
[ 0.320265] pci 0000:00:06.1: [8086:0e11] type 00 class 0x088000
[ 0.320365] pci 0000:00:06.2: [8086:0e12] type 00 class 0x088000
[ 0.320462] pci 0000:00:06.3: [8086:0e13] type 00 class 0x088000
[ 0.320558] pci 0000:00:06.4: [8086:0e14] type 00 class 0x088000
[ 0.320658] pci 0000:00:06.5: [8086:0e15] type 00 class 0x088000
[ 0.320753] pci 0000:00:06.6: [8086:0e16] type 00 class 0x088000
[ 0.320847] pci 0000:00:06.7: [8086:0e17] type 00 class 0x088000
[ 0.320945] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[ 0.321041] pci 0000:00:07.1: [8086:0e19] type 00 class 0x088000
[ 0.321138] pci 0000:00:07.2: [8086:0e1a] type 00 class 0x088000
[ 0.321240] pci 0000:00:07.3: [8086:0e1b] type 00 class 0x088000
[ 0.321335] pci 0000:00:07.4: [8086:0e1c] type 00 class 0x088000
[ 0.321445] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[ 0.321542] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[ 0.321667] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[ 0.321687] pci 0000:00:16.0: reg 0x10: [mem 0xc7402000-0xc740200f 64bit]
[ 0.321755] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.321821] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[ 0.321835] pci 0000:00:1a.0: reg 0x10: [mem 0xc7401000-0xc74013ff]
[ 0.321914] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.321988] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300
[ 0.322002] pci 0000:00:1b.0: reg 0x10: [mem 0x381ffff00000-0x381ffff03fff 64bit]
[ 0.322065] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.322132] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[ 0.322216] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.322241] pci 0000:00:1c.0: Enabling MPC IRBNCE
[ 0.322243] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[ 0.322326] pci 0000:00:1c.1: [8086:1d12] type 01 class 0x060400
[ 0.322412] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.322434] pci 0000:00:1c.1: Enabling MPC IRBNCE
[ 0.322436] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[ 0.322516] pci 0000:00:1c.2: [8086:1d14] type 01 class 0x060400
[ 0.322601] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.322622] pci 0000:00:1c.2: Enabling MPC IRBNCE
[ 0.322624] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[ 0.322704] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[ 0.322788] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.322810] pci 0000:00:1c.4: Enabling MPC IRBNCE
[ 0.322812] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[ 0.322897] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[ 0.322913] pci 0000:00:1d.0: reg 0x10: [mem 0xc7400000-0xc74003ff]
[ 0.322991] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.323066] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[ 0.323176] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[ 0.323334] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[ 0.323350] pci 0000:00:1f.3: reg 0x10: [mem 0x381ffff24000-0x381ffff240ff 64bit]
[ 0.323368] pci 0000:00:1f.3: reg 0x20: [io 0x7000-0x701f]
[ 0.323464] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.323498] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.323545] pci 0000:03:00.0: [10de:21c4] type 00 class 0x030000
[ 0.323555] pci 0000:03:00.0: reg 0x10: [mem 0xc6000000-0xc6ffffff]
[ 0.323563] pci 0000:03:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
[ 0.323572] pci 0000:03:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
[ 0.323577] pci 0000:03:00.0: reg 0x24: [io 0x6000-0x607f]
[ 0.323583] pci 0000:03:00.0: reg 0x30: [mem 0xc7000000-0xc707ffff pref]
[ 0.323599] pci 0000:03:00.0: BAR 1: assigned to efifb
[ 0.323631] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.323682] pci 0000:03:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:02.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[ 0.323767] pci 0000:03:00.1: [10de:1aeb] type 00 class 0x040300
[ 0.323776] pci 0000:03:00.1: reg 0x10: [mem 0xc7080000-0xc7083fff]
[ 0.323873] pci 0000:03:00.2: [10de:1aec] type 00 class 0x0c0330
[ 0.323885] pci 0000:03:00.2: reg 0x10: [mem 0xc2000000-0xc203ffff 64bit pref]
[ 0.323898] pci 0000:03:00.2: reg 0x1c: [mem 0xc2040000-0xc204ffff 64bit pref]
[ 0.323938] pci 0000:03:00.2: PME# supported from D0 D3hot D3cold
[ 0.323988] pci 0000:03:00.3: [10de:1aed] type 00 class 0x0c8000
[ 0.323996] pci 0000:03:00.3: reg 0x10: [mem 0xc7084000-0xc7084fff]
[ 0.324046] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[ 0.324125] pci 0000:00:02.0: PCI bridge to [bus 03]
[ 0.324128] pci 0000:00:02.0: bridge window [io 0x6000-0x6fff]
[ 0.324130] pci 0000:00:02.0: bridge window [mem 0xc6000000-0xc70fffff]
[ 0.324134] pci 0000:00:02.0: bridge window [mem 0xb0000000-0xc20fffff 64bit pref]
[ 0.324171] pci 0000:00:02.1: PCI bridge to [bus 04]
[ 0.324204] pci 0000:00:02.2: PCI bridge to [bus 05]
[ 0.324240] pci 0000:00:02.3: PCI bridge to [bus 06]
[ 0.324272] pci 0000:00:03.0: PCI bridge to [bus 07]
[ 0.324307] pci 0000:00:03.1: PCI bridge to [bus 08]
[ 0.324340] pci 0000:00:03.2: PCI bridge to [bus 09]
[ 0.324376] pci 0000:00:03.3: PCI bridge to [bus 0a]
[ 0.324424] pci 0000:00:11.0: PCI bridge to [bus 0b]
[ 0.324464] pci 0000:00:1c.0: PCI bridge to [bus 0c]
[ 0.324550] pci 0000:0d:00.0: [8086:1539] type 00 class 0x020000
[ 0.324575] pci 0000:0d:00.0: reg 0x10: [mem 0xc7300000-0xc731ffff]
[ 0.324598] pci 0000:0d:00.0: reg 0x18: [io 0x5000-0x501f]
[ 0.324613] pci 0000:0d:00.0: reg 0x1c: [mem 0xc7320000-0xc7323fff]
[ 0.324765] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[ 0.324947] pci 0000:00:1c.1: PCI bridge to [bus 0d]
[ 0.324951] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.324954] pci 0000:00:1c.1: bridge window [mem 0xc7300000-0xc73fffff]
[ 0.325018] pci 0000:0e:00.0: [1106:3483] type 00 class 0x0c0330
[ 0.325045] pci 0000:0e:00.0: reg 0x10: [mem 0xc7200000-0xc7200fff 64bit]
[ 0.325165] pci 0000:0e:00.0: PME# supported from D0 D3cold
[ 0.325257] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[ 0.325262] pci 0000:00:1c.2: bridge window [mem 0xc7200000-0xc72fffff]
[ 0.325336] pci 0000:0f:00.0: [8086:1539] type 00 class 0x020000
[ 0.325363] pci 0000:0f:00.0: reg 0x10: [mem 0xc7100000-0xc711ffff]
[ 0.325385] pci 0000:0f:00.0: reg 0x18: [io 0x4000-0x401f]
[ 0.325399] pci 0000:0f:00.0: reg 0x1c: [mem 0xc7120000-0xc7123fff]
[ 0.325550] pci 0000:0f:00.0: PME# supported from D0 D3hot D3cold
[ 0.325738] pci 0000:00:1c.4: PCI bridge to [bus 0f]
[ 0.325741] pci 0000:00:1c.4: bridge window [io 0x4000-0x4fff]
[ 0.325744] pci 0000:00:1c.4: bridge window [mem 0xc7100000-0xc71fffff]
[ 0.325765] pci_bus 0000:10: extended config space not accessible
[ 0.325807] pci 0000:00:1e.0: PCI bridge to [bus 10] (subtractive decode)
[ 0.325817] pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode)
[ 0.325820] pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode)
[ 0.325823] pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode)
[ 0.325825] pci 0000:00:1e.0: bridge window [io 0x0d00-0x7fff window] (subtractive decode)
[ 0.325826] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[ 0.325828] pci 0000:00:1e.0: bridge window [mem 0x90000000-0xc7ffffff window] (subtractive decode)
[ 0.325829] pci 0000:00:1e.0: bridge window [mem 0x2080000000-0x381fffffffff window] (subtractive decode)
[ 0.325908] pci_bus 0000:00: on NUMA node 0
[ 0.326187] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[ 0.326191] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.326201] acpi PNP0A03:00: _OSC: OS now controls [PME AER PCIeCapability LTR DPC]
[ 0.326233] PCI host bridge to bus 0000:7f
[ 0.326235] pci_bus 0000:7f: root bus resource [bus 7f]
[ 0.326243] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[ 0.326287] pci 0000:7f:08.2: [8086:0e32] type 00 class 0x110100
[ 0.326331] pci 0000:7f:08.3: [8086:0e83] type 00 class 0x088000
[ 0.326387] pci 0000:7f:08.4: [8086:0e84] type 00 class 0x088000
[ 0.326449] pci 0000:7f:08.5: [8086:0e85] type 00 class 0x088000
[ 0.326505] pci 0000:7f:08.6: [8086:0e86] type 00 class 0x088000
[ 0.326563] pci 0000:7f:08.7: [8086:0e87] type 00 class 0x088000
[ 0.326623] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[ 0.326662] pci 0000:7f:09.2: [8086:0e33] type 00 class 0x110100
[ 0.326702] pci 0000:7f:09.3: [8086:0e93] type 00 class 0x088000
[ 0.326758] pci 0000:7f:09.4: [8086:0e94] type 00 class 0x088000
[ 0.326827] pci 0000:7f:09.5: [8086:0e95] type 00 class 0x088000
[ 0.326880] pci 0000:7f:09.6: [8086:0e96] type 00 class 0x088000
[ 0.326931] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[ 0.326965] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[ 0.327000] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[ 0.327036] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[ 0.327073] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[ 0.327108] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[ 0.327142] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[ 0.327175] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[ 0.327209] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[ 0.327243] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[ 0.327281] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[ 0.327315] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[ 0.327349] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[ 0.327387] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[ 0.327421] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[ 0.327455] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[ 0.327491] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[ 0.327528] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[ 0.327569] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[ 0.327622] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[ 0.327673] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[ 0.327731] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[ 0.327786] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[ 0.327838] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[ 0.327892] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[ 0.327947] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[ 0.328003] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[ 0.328056] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[ 0.328109] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[ 0.328164] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[ 0.328223] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000
[ 0.328282] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[ 0.328338] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[ 0.328373] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[ 0.328409] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[ 0.328443] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[ 0.328480] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[ 0.328516] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[ 0.328550] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[ 0.328590] pci_bus 0000:7f: on NUMA node 0
[ 0.328711] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[ 0.328716] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.328759] acpi PNP0A08:01: _OSC: platform does not support [PME AER LTR DPC]
[ 0.328831] acpi PNP0A08:01: _OSC: OS now controls [PCIeCapability]
[ 0.328927] PCI host bridge to bus 0000:80
[ 0.328928] pci_bus 0000:80: root bus resource [io 0x8000-0xffff window]
[ 0.328930] pci_bus 0000:80: root bus resource [mem 0xc8000000-0xfbffffff window]
[ 0.328932] pci_bus 0000:80: root bus resource [mem 0x382000000000-0x383fffffffff window]
[ 0.328933] pci_bus 0000:80: root bus resource [bus 80-fe]
[ 0.328957] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400
[ 0.329043] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[ 0.329180] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400
[ 0.329269] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[ 0.329400] pci 0000:80:01.1: [8086:0e03] type 01 class 0x060400
[ 0.329488] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[ 0.329634] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400
[ 0.329722] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[ 0.329857] pci 0000:80:02.1: [8086:0e05] type 01 class 0x060400
[ 0.329946] pci 0000:80:02.1: PME# supported from D0 D3hot D3cold
[ 0.330085] pci 0000:80:02.2: [8086:0e06] type 01 class 0x060400
[ 0.330174] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[ 0.330316] pci 0000:80:02.3: [8086:0e07] type 01 class 0x060400
[ 0.330404] pci 0000:80:02.3: PME# supported from D0 D3hot D3cold
[ 0.330542] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400
[ 0.330576] pci 0000:80:03.0: enabling Extended Tags
[ 0.330636] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[ 0.330768] pci 0000:80:03.1: [8086:0e09] type 01 class 0x060400
[ 0.330857] pci 0000:80:03.1: PME# supported from D0 D3hot D3cold
[ 0.330995] pci 0000:80:03.2: [8086:0e0a] type 01 class 0x060400
[ 0.331084] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold
[ 0.331220] pci 0000:80:03.3: [8086:0e0b] type 01 class 0x060400
[ 0.331309] pci 0000:80:03.3: PME# supported from D0 D3hot D3cold
[ 0.331444] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000
[ 0.331460] pci 0000:80:04.0: reg 0x10: [mem 0x383ffff1c000-0x383ffff1ffff 64bit]
[ 0.331580] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000
[ 0.331595] pci 0000:80:04.1: reg 0x10: [mem 0x383ffff18000-0x383ffff1bfff 64bit]
[ 0.331719] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000
[ 0.331734] pci 0000:80:04.2: reg 0x10: [mem 0x383ffff14000-0x383ffff17fff 64bit]
[ 0.331855] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000
[ 0.331871] pci 0000:80:04.3: reg 0x10: [mem 0x383ffff10000-0x383ffff13fff 64bit]
[ 0.331985] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000
[ 0.332000] pci 0000:80:04.4: reg 0x10: [mem 0x383ffff0c000-0x383ffff0ffff 64bit]
[ 0.332118] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000
[ 0.332134] pci 0000:80:04.5: reg 0x10: [mem 0x383ffff08000-0x383ffff0bfff 64bit]
[ 0.332253] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000
[ 0.332269] pci 0000:80:04.6: reg 0x10: [mem 0x383ffff04000-0x383ffff07fff 64bit]
[ 0.332386] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000
[ 0.332401] pci 0000:80:04.7: reg 0x10: [mem 0x383ffff00000-0x383ffff03fff 64bit]
[ 0.332522] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000
[ 0.332629] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000
[ 0.332735] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020
[ 0.332747] pci 0000:80:05.4: reg 0x10: [mem 0xfbf00000-0xfbf00fff]
[ 0.332869] pci 0000:80:06.0: [8086:0e10] type 00 class 0x088000
[ 0.332978] pci 0000:80:06.1: [8086:0e11] type 00 class 0x088000
[ 0.333083] pci 0000:80:06.2: [8086:0e12] type 00 class 0x088000
[ 0.333191] pci 0000:80:06.3: [8086:0e13] type 00 class 0x088000
[ 0.333295] pci 0000:80:06.4: [8086:0e14] type 00 class 0x088000
[ 0.333406] pci 0000:80:06.5: [8086:0e15] type 00 class 0x088000
[ 0.333517] pci 0000:80:06.6: [8086:0e16] type 00 class 0x088000
[ 0.333624] pci 0000:80:06.7: [8086:0e17] type 00 class 0x088000
[ 0.333734] pci 0000:80:07.0: [8086:0e18] type 00 class 0x088000
[ 0.333840] pci 0000:80:07.1: [8086:0e19] type 00 class 0x088000
[ 0.333943] pci 0000:80:07.2: [8086:0e1a] type 00 class 0x088000
[ 0.334051] pci 0000:80:07.3: [8086:0e1b] type 00 class 0x088000
[ 0.334157] pci 0000:80:07.4: [8086:0e1c] type 00 class 0x088000
[ 0.334296] pci 0000:80:00.0: PCI bridge to [bus 81]
[ 0.334350] pci 0000:82:00.0: [14a4:23f1] type 00 class 0x010802
[ 0.334363] pci 0000:82:00.0: reg 0x10: [mem 0xfbe00000-0xfbe03fff 64bit]
[ 0.334532] pci 0000:80:01.0: PCI bridge to [bus 82]
[ 0.334537] pci 0000:80:01.0: bridge window [mem 0xfbe00000-0xfbefffff]
[ 0.334579] pci 0000:80:01.1: PCI bridge to [bus 83]
[ 0.334625] pci 0000:84:00.0: [126f:2262] type 00 class 0x010802
[ 0.334639] pci 0000:84:00.0: reg 0x10: [mem 0xfbd00000-0xfbd03fff 64bit]
[ 0.334802] pci 0000:80:02.0: PCI bridge to [bus 84]
[ 0.334807] pci 0000:80:02.0: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 0.334841] pci 0000:80:02.1: PCI bridge to [bus 85]
[ 0.334884] pci 0000:80:02.2: PCI bridge to [bus 86]
[ 0.334921] pci 0000:80:02.3: PCI bridge to [bus 87]
[ 0.334965] pci 0000:80:03.0: PCI bridge to [bus 88]
[ 0.335001] pci 0000:80:03.1: PCI bridge to [bus 89]
[ 0.335042] pci 0000:80:03.2: PCI bridge to [bus 8a]
[ 0.335079] pci 0000:80:03.3: PCI bridge to [bus 8b]
[ 0.335148] pci_bus 0000:80: on NUMA node 0
[ 0.335211] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[ 0.335216] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.335226] acpi PNP0A03:01: _OSC: OS now controls [PME AER PCIeCapability LTR DPC]
[ 0.335258] PCI host bridge to bus 0000:ff
[ 0.335260] pci_bus 0000:ff: root bus resource [bus ff]
[ 0.335269] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[ 0.335321] pci 0000:ff:08.2: [8086:0e32] type 00 class 0x110100
[ 0.335371] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[ 0.335442] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[ 0.335516] pci 0000:ff:08.5: [8086:0e85] type 00 class 0x088000
[ 0.335582] pci 0000:ff:08.6: [8086:0e86] type 00 class 0x088000
[ 0.335649] pci 0000:ff:08.7: [8086:0e87] type 00 class 0x088000
[ 0.335719] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[ 0.335765] pci 0000:ff:09.2: [8086:0e33] type 00 class 0x110100
[ 0.335817] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[ 0.335887] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[ 0.335959] pci 0000:ff:09.5: [8086:0e95] type 00 class 0x088000
[ 0.336020] pci 0000:ff:09.6: [8086:0e96] type 00 class 0x088000
[ 0.336083] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[ 0.336124] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[ 0.336166] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[ 0.336209] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[ 0.336253] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[ 0.336297] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[ 0.336340] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[ 0.336384] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[ 0.336427] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[ 0.336474] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[ 0.336517] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[ 0.336557] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[ 0.336604] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[ 0.336651] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[ 0.336691] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[ 0.336732] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[ 0.336776] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[ 0.336830] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[ 0.336888] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[ 0.336962] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[ 0.337036] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[ 0.337105] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[ 0.337174] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[ 0.337244] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[ 0.337314] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[ 0.337384] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[ 0.337451] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[ 0.337520] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[ 0.337589] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[ 0.337658] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[ 0.337729] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[ 0.337799] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[ 0.337867] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[ 0.337911] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[ 0.337955] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[ 0.337999] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[ 0.338045] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[ 0.338087] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[ 0.338128] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[ 0.338177] pci_bus 0000:ff: on NUMA node 0
[ 0.338256] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.338258] ACPI: PCI: Interrupt link LNKA disabled
[ 0.338285] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.338286] ACPI: PCI: Interrupt link LNKB disabled
[ 0.338312] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.338315] ACPI: PCI: Interrupt link LNKC disabled
[ 0.338341] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.338342] ACPI: PCI: Interrupt link LNKD disabled
[ 0.338367] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.338368] ACPI: PCI: Interrupt link LNKE disabled
[ 0.338394] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.338395] ACPI: PCI: Interrupt link LNKF disabled
[ 0.338421] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.338424] ACPI: PCI: Interrupt link LNKG disabled
[ 0.338449] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.338452] ACPI: PCI: Interrupt link LNKH disabled
[ 0.340129] iommu: Default domain type: Passthrough
[ 0.340286] SCSI subsystem initialized
[ 0.340295] libata version 3.00 loaded.
[ 0.340318] EDAC MC: Ver: 3.0.0
[ 0.342119] efivars: Registered efivars operations
[ 0.342119] PCI: Using ACPI for IRQ routing
[ 0.344910] PCI: pci_cache_line_size set to 64 bytes
[ 0.345159] e820: reserve RAM buffer [mem 0x7b05f000-0x7bffffff]
[ 0.345161] e820: reserve RAM buffer [mem 0x7b8e8000-0x7bffffff]
[ 0.345937] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.345939] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.345940] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.345963] vgaarb: loaded
[ 0.346040] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.346047] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.350039] clocksource: Switched to clocksource hpet
[ 0.350219] pnp: PnP ACPI init
[ 0.350310] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[ 0.350313] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[ 0.350314] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[ 0.350316] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[ 0.350317] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[ 0.350319] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[ 0.350320] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.350418] system 00:01: [mem 0xc7ffc000-0xc7ffdfff] could not be reserved
[ 0.350545] system 00:02: [io 0x0a00-0x0a0f] has been reserved
[ 0.350547] system 00:02: [io 0x0a10-0x0a1f] has been reserved
[ 0.350548] system 00:02: [io 0x0a20-0x0a2f] has been reserved
[ 0.350762] system 00:06: [io 0x04d0-0x04d1] has been reserved
[ 0.350887] system 00:07: [io 0x0400-0x0453] has been reserved
[ 0.350889] system 00:07: [io 0x0458-0x047f] has been reserved
[ 0.350890] system 00:07: [io 0x1180-0x119f] has been reserved
[ 0.350892] system 00:07: [io 0x0500-0x057f] has been reserved
[ 0.350893] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.350895] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[ 0.350896] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[ 0.350988] system 00:08: [io 0x0454-0x0457] has been reserved
[ 0.351169] system 00:0a: [mem 0xfbffe000-0xfbffffff] could not be reserved
[ 0.351336] pnp: PnP ACPI: found 11 devices
[ 0.357200] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.357279] NET: Registered PF_INET protocol family
[ 0.357790] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.360583] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.360758] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.360771] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.361335] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.361696] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.361794] UDP hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.362075] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.362414] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.362443] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.362453] pci 0000:00:01.1: PCI bridge to [bus 02]
[ 0.362461] pci 0000:00:02.0: PCI bridge to [bus 03]
[ 0.362463] pci 0000:00:02.0: bridge window [io 0x6000-0x6fff]
[ 0.362466] pci 0000:00:02.0: bridge window [mem 0xc6000000-0xc70fffff]
[ 0.362470] pci 0000:00:02.0: bridge window [mem 0xb0000000-0xc20fffff 64bit pref]
[ 0.362474] pci 0000:00:02.1: PCI bridge to [bus 04]
[ 0.362481] pci 0000:00:02.2: PCI bridge to [bus 05]
[ 0.362489] pci 0000:00:02.3: PCI bridge to [bus 06]
[ 0.362496] pci 0000:00:03.0: PCI bridge to [bus 07]
[ 0.362503] pci 0000:00:03.1: PCI bridge to [bus 08]
[ 0.362511] pci 0000:00:03.2: PCI bridge to [bus 09]
[ 0.362518] pci 0000:00:03.3: PCI bridge to [bus 0a]
[ 0.362527] pci 0000:00:11.0: PCI bridge to [bus 0b]
[ 0.362537] pci 0000:00:1c.0: PCI bridge to [bus 0c]
[ 0.362547] pci 0000:00:1c.1: PCI bridge to [bus 0d]
[ 0.362549] pci 0000:00:1c.1: bridge window [io 0x5000-0x5fff]
[ 0.362553] pci 0000:00:1c.1: bridge window [mem 0xc7300000-0xc73fffff]
[ 0.362560] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[ 0.362563] pci 0000:00:1c.2: bridge window [mem 0xc7200000-0xc72fffff]
[ 0.362570] pci 0000:00:1c.4: PCI bridge to [bus 0f]
[ 0.362572] pci 0000:00:1c.4: bridge window [io 0x4000-0x4fff]
[ 0.362575] pci 0000:00:1c.4: bridge window [mem 0xc7100000-0xc71fffff]
[ 0.362582] pci 0000:00:1e.0: PCI bridge to [bus 10]
[ 0.362591] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.362592] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.362593] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.362594] pci_bus 0000:00: resource 7 [io 0x0d00-0x7fff window]
[ 0.362595] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.362597] pci_bus 0000:00: resource 9 [mem 0x90000000-0xc7ffffff window]
[ 0.362598] pci_bus 0000:00: resource 10 [mem 0x2080000000-0x381fffffffff window]
[ 0.362600] pci_bus 0000:03: resource 0 [io 0x6000-0x6fff]
[ 0.362601] pci_bus 0000:03: resource 1 [mem 0xc6000000-0xc70fffff]
[ 0.362602] pci_bus 0000:03: resource 2 [mem 0xb0000000-0xc20fffff 64bit pref]
[ 0.362604] pci_bus 0000:0d: resource 0 [io 0x5000-0x5fff]
[ 0.362605] pci_bus 0000:0d: resource 1 [mem 0xc7300000-0xc73fffff]
[ 0.362606] pci_bus 0000:0e: resource 1 [mem 0xc7200000-0xc72fffff]
[ 0.362607] pci_bus 0000:0f: resource 0 [io 0x4000-0x4fff]
[ 0.362608] pci_bus 0000:0f: resource 1 [mem 0xc7100000-0xc71fffff]
[ 0.362609] pci_bus 0000:10: resource 4 [io 0x0000-0x03af window]
[ 0.362610] pci_bus 0000:10: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.362611] pci_bus 0000:10: resource 6 [io 0x03b0-0x03df window]
[ 0.362612] pci_bus 0000:10: resource 7 [io 0x0d00-0x7fff window]
[ 0.362613] pci_bus 0000:10: resource 8 [mem 0x000a0000-0x000dffff window]
[ 0.362614] pci_bus 0000:10: resource 9 [mem 0x90000000-0xc7ffffff window]
[ 0.362615] pci_bus 0000:10: resource 10 [mem 0x2080000000-0x381fffffffff window]
[ 0.362671] pci 0000:80:00.0: PCI bridge to [bus 81]
[ 0.362680] pci 0000:80:01.0: PCI bridge to [bus 82]
[ 0.362683] pci 0000:80:01.0: bridge window [mem 0xfbe00000-0xfbefffff]
[ 0.362689] pci 0000:80:01.1: PCI bridge to [bus 83]
[ 0.362697] pci 0000:80:02.0: PCI bridge to [bus 84]
[ 0.362701] pci 0000:80:02.0: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 0.362706] pci 0000:80:02.1: PCI bridge to [bus 85]
[ 0.362715] pci 0000:80:02.2: PCI bridge to [bus 86]
[ 0.362723] pci 0000:80:02.3: PCI bridge to [bus 87]
[ 0.362731] pci 0000:80:03.0: PCI bridge to [bus 88]
[ 0.362740] pci 0000:80:03.1: PCI bridge to [bus 89]
[ 0.362749] pci 0000:80:03.2: PCI bridge to [bus 8a]
[ 0.362758] pci 0000:80:03.3: PCI bridge to [bus 8b]
[ 0.362767] pci_bus 0000:80: resource 4 [io 0x8000-0xffff window]
[ 0.362768] pci_bus 0000:80: resource 5 [mem 0xc8000000-0xfbffffff window]
[ 0.362769] pci_bus 0000:80: resource 6 [mem 0x382000000000-0x383fffffffff window]
[ 0.362770] pci_bus 0000:82: resource 1 [mem 0xfbe00000-0xfbefffff]
[ 0.362772] pci_bus 0000:84: resource 1 [mem 0xfbd00000-0xfbdfffff]
[ 0.362819] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[ 0.363128] pci 0000:03:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.363158] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[ 0.363183] pci 0000:03:00.2: D0 power state depends on 0000:03:00.0
[ 0.363322] pci 0000:03:00.3: D0 power state depends on 0000:03:00.0
[ 0.363529] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[ 0.363634] PCI: CLS 64 bytes, default 64
[ 0.363716] DMAR: No SATC found
[ 0.363718] Unpacking initramfs...
[ 0.363718] DMAR: dmar0: Using Queued invalidation
[ 0.363723] DMAR: dmar1: Using Queued invalidation
[ 0.363813] pci 0000:80:00.0: Adding to iommu group 0
[ 0.363844] pci 0000:80:01.0: Adding to iommu group 1
[ 0.363874] pci 0000:80:01.1: Adding to iommu group 2
[ 0.363906] pci 0000:80:02.0: Adding to iommu group 3
[ 0.363936] pci 0000:80:02.1: Adding to iommu group 4
[ 0.363964] pci 0000:80:02.2: Adding to iommu group 5
[ 0.363993] pci 0000:80:02.3: Adding to iommu group 6
[ 0.364030] pci 0000:80:03.0: Adding to iommu group 7
[ 0.364059] pci 0000:80:03.1: Adding to iommu group 8
[ 0.364088] pci 0000:80:03.2: Adding to iommu group 9
[ 0.364116] pci 0000:80:03.3: Adding to iommu group 10
[ 0.364151] pci 0000:80:04.0: Adding to iommu group 11
[ 0.364179] pci 0000:80:04.1: Adding to iommu group 12
[ 0.364206] pci 0000:80:04.2: Adding to iommu group 13
[ 0.364233] pci 0000:80:04.3: Adding to iommu group 14
[ 0.364263] pci 0000:80:04.4: Adding to iommu group 15
[ 0.364291] pci 0000:80:04.5: Adding to iommu group 16
[ 0.364318] pci 0000:80:04.6: Adding to iommu group 17
[ 0.364345] pci 0000:80:04.7: Adding to iommu group 18
[ 0.364380] pci 0000:82:00.0: Adding to iommu group 19
[ 0.364409] pci 0000:84:00.0: Adding to iommu group 20
[ 0.364475] pci 0000:00:00.0: Adding to iommu group 21
[ 0.364505] pci 0000:00:01.0: Adding to iommu group 22
[ 0.364533] pci 0000:00:01.1: Adding to iommu group 23
[ 0.364566] pci 0000:00:02.0: Adding to iommu group 24
[ 0.364598] pci 0000:00:02.1: Adding to iommu group 25
[ 0.364627] pci 0000:00:02.2: Adding to iommu group 26
[ 0.364734] pci 0000:00:02.3: Adding to iommu group 27
[ 0.364764] pci 0000:00:03.0: Adding to iommu group 28
[ 0.364797] pci 0000:00:03.1: Adding to iommu group 29
[ 0.364826] pci 0000:00:03.2: Adding to iommu group 30
[ 0.364855] pci 0000:00:03.3: Adding to iommu group 31
[ 0.364883] pci 0000:00:04.0: Adding to iommu group 32
[ 0.364913] pci 0000:00:04.1: Adding to iommu group 33
[ 0.364941] pci 0000:00:04.2: Adding to iommu group 34
[ 0.364972] pci 0000:00:04.3: Adding to iommu group 35
[ 0.365000] pci 0000:00:04.4: Adding to iommu group 36
[ 0.365031] pci 0000:00:04.5: Adding to iommu group 37
[ 0.365064] pci 0000:00:04.6: Adding to iommu group 38
[ 0.365091] pci 0000:00:04.7: Adding to iommu group 39
[ 0.365118] pci 0000:00:05.0: Adding to iommu group 40
[ 0.365149] pci 0000:00:05.2: Adding to iommu group 41
[ 0.365177] pci 0000:00:05.4: Adding to iommu group 42
[ 0.365209] pci 0000:00:06.0: Adding to iommu group 43
[ 0.365236] pci 0000:00:06.1: Adding to iommu group 44
[ 0.365268] pci 0000:00:06.2: Adding to iommu group 45
[ 0.365296] pci 0000:00:06.3: Adding to iommu group 46
[ 0.365323] pci 0000:00:06.4: Adding to iommu group 47
[ 0.365350] pci 0000:00:06.5: Adding to iommu group 48
[ 0.365382] pci 0000:00:06.6: Adding to iommu group 49
[ 0.365410] pci 0000:00:06.7: Adding to iommu group 50
[ 0.365437] pci 0000:00:07.0: Adding to iommu group 51
[ 0.365465] pci 0000:00:07.1: Adding to iommu group 52
[ 0.365496] pci 0000:00:07.2: Adding to iommu group 53
[ 0.365524] pci 0000:00:07.3: Adding to iommu group 54
[ 0.365551] pci 0000:00:07.4: Adding to iommu group 55
[ 0.365579] pci 0000:00:11.0: Adding to iommu group 56
[ 0.365632] pci 0000:00:16.0: Adding to iommu group 57
[ 0.365660] pci 0000:00:1a.0: Adding to iommu group 58
[ 0.365688] pci 0000:00:1b.0: Adding to iommu group 59
[ 0.365716] pci 0000:00:1c.0: Adding to iommu group 60
[ 0.365747] pci 0000:00:1c.1: Adding to iommu group 61
[ 0.365775] pci 0000:00:1c.2: Adding to iommu group 62
[ 0.365802] pci 0000:00:1c.4: Adding to iommu group 63
[ 0.365830] pci 0000:00:1d.0: Adding to iommu group 64
[ 0.365861] pci 0000:00:1e.0: Adding to iommu group 65
[ 0.365933] pci 0000:00:1f.0: Adding to iommu group 66
[ 0.365965] pci 0000:00:1f.3: Adding to iommu group 66
[ 0.366083] pci 0000:03:00.0: Adding to iommu group 67
[ 0.366115] pci 0000:03:00.1: Adding to iommu group 67
[ 0.366152] pci 0000:03:00.2: Adding to iommu group 67
[ 0.366188] pci 0000:03:00.3: Adding to iommu group 67
[ 0.366220] pci 0000:0d:00.0: Adding to iommu group 68
[ 0.366248] pci 0000:0e:00.0: Adding to iommu group 69
[ 0.366281] pci 0000:0f:00.0: Adding to iommu group 70
[ 0.366358] pci 0000:7f:08.0: Adding to iommu group 71
[ 0.366391] pci 0000:7f:08.2: Adding to iommu group 71
[ 0.366426] pci 0000:7f:08.3: Adding to iommu group 72
[ 0.366453] pci 0000:7f:08.4: Adding to iommu group 73
[ 0.366481] pci 0000:7f:08.5: Adding to iommu group 74
[ 0.366511] pci 0000:7f:08.6: Adding to iommu group 75
[ 0.366539] pci 0000:7f:08.7: Adding to iommu group 76
[ 0.366611] pci 0000:7f:09.0: Adding to iommu group 77
[ 0.366644] pci 0000:7f:09.2: Adding to iommu group 77
[ 0.366682] pci 0000:7f:09.3: Adding to iommu group 78
[ 0.366710] pci 0000:7f:09.4: Adding to iommu group 79
[ 0.366737] pci 0000:7f:09.5: Adding to iommu group 80
[ 0.366764] pci 0000:7f:09.6: Adding to iommu group 81
[ 0.366885] pci 0000:7f:0a.0: Adding to iommu group 82
[ 0.366919] pci 0000:7f:0a.1: Adding to iommu group 82
[ 0.366953] pci 0000:7f:0a.2: Adding to iommu group 82
[ 0.366987] pci 0000:7f:0a.3: Adding to iommu group 82
[ 0.367059] pci 0000:7f:0b.0: Adding to iommu group 83
[ 0.367093] pci 0000:7f:0b.3: Adding to iommu group 83
[ 0.367236] pci 0000:7f:0c.0: Adding to iommu group 84
[ 0.367271] pci 0000:7f:0c.1: Adding to iommu group 84
[ 0.367306] pci 0000:7f:0c.2: Adding to iommu group 84
[ 0.367340] pci 0000:7f:0c.3: Adding to iommu group 84
[ 0.367374] pci 0000:7f:0c.4: Adding to iommu group 84
[ 0.367514] pci 0000:7f:0d.0: Adding to iommu group 85
[ 0.367549] pci 0000:7f:0d.1: Adding to iommu group 85
[ 0.367591] pci 0000:7f:0d.2: Adding to iommu group 85
[ 0.367626] pci 0000:7f:0d.3: Adding to iommu group 85
[ 0.367661] pci 0000:7f:0d.4: Adding to iommu group 85
[ 0.367733] pci 0000:7f:0e.0: Adding to iommu group 86
[ 0.367768] pci 0000:7f:0e.1: Adding to iommu group 86
[ 0.367795] pci 0000:7f:0f.0: Adding to iommu group 87
[ 0.367826] pci 0000:7f:0f.1: Adding to iommu group 88
[ 0.367853] pci 0000:7f:0f.2: Adding to iommu group 89
[ 0.367884] pci 0000:7f:0f.3: Adding to iommu group 90
[ 0.367911] pci 0000:7f:0f.4: Adding to iommu group 91
[ 0.367942] pci 0000:7f:0f.5: Adding to iommu group 92
[ 0.367969] pci 0000:7f:10.0: Adding to iommu group 93
[ 0.367996] pci 0000:7f:10.1: Adding to iommu group 94
[ 0.368023] pci 0000:7f:10.2: Adding to iommu group 95
[ 0.368054] pci 0000:7f:10.3: Adding to iommu group 96
[ 0.368086] pci 0000:7f:10.4: Adding to iommu group 97
[ 0.368113] pci 0000:7f:10.5: Adding to iommu group 98
[ 0.368140] pci 0000:7f:10.6: Adding to iommu group 99
[ 0.368176] pci 0000:7f:10.7: Adding to iommu group 100
[ 0.368293] pci 0000:7f:13.0: Adding to iommu group 101
[ 0.368330] pci 0000:7f:13.1: Adding to iommu group 101
[ 0.368368] pci 0000:7f:13.4: Adding to iommu group 101
[ 0.368407] pci 0000:7f:13.5: Adding to iommu group 101
[ 0.368510] pci 0000:7f:16.0: Adding to iommu group 102
[ 0.368548] pci 0000:7f:16.1: Adding to iommu group 102
[ 0.368586] pci 0000:7f:16.2: Adding to iommu group 102
[ 0.368614] pci 0000:80:05.0: Adding to iommu group 103
[ 0.368642] pci 0000:80:05.2: Adding to iommu group 104
[ 0.368681] pci 0000:80:05.4: Adding to iommu group 105
[ 0.368709] pci 0000:80:06.0: Adding to iommu group 106
[ 0.368737] pci 0000:80:06.1: Adding to iommu group 107
[ 0.368765] pci 0000:80:06.2: Adding to iommu group 108
[ 0.368795] pci 0000:80:06.3: Adding to iommu group 109
[ 0.368823] pci 0000:80:06.4: Adding to iommu group 110
[ 0.368850] pci 0000:80:06.5: Adding to iommu group 111
[ 0.368878] pci 0000:80:06.6: Adding to iommu group 112
[ 0.368909] pci 0000:80:06.7: Adding to iommu group 113
[ 0.368937] pci 0000:80:07.0: Adding to iommu group 114
[ 0.368964] pci 0000:80:07.1: Adding to iommu group 115
[ 0.368991] pci 0000:80:07.2: Adding to iommu group 116
[ 0.369022] pci 0000:80:07.3: Adding to iommu group 117
[ 0.369050] pci 0000:80:07.4: Adding to iommu group 118
[ 0.369122] pci 0000:ff:08.0: Adding to iommu group 119
[ 0.369165] pci 0000:ff:08.2: Adding to iommu group 119
[ 0.369192] pci 0000:ff:08.3: Adding to iommu group 120
[ 0.369223] pci 0000:ff:08.4: Adding to iommu group 121
[ 0.369251] pci 0000:ff:08.5: Adding to iommu group 122
[ 0.369278] pci 0000:ff:08.6: Adding to iommu group 123
[ 0.369305] pci 0000:ff:08.7: Adding to iommu group 124
[ 0.369382] pci 0000:ff:09.0: Adding to iommu group 125
[ 0.369426] pci 0000:ff:09.2: Adding to iommu group 125
[ 0.369458] pci 0000:ff:09.3: Adding to iommu group 126
[ 0.369485] pci 0000:ff:09.4: Adding to iommu group 127
[ 0.369516] pci 0000:ff:09.5: Adding to iommu group 128
[ 0.369544] pci 0000:ff:09.6: Adding to iommu group 129
[ 0.369661] pci 0000:ff:0a.0: Adding to iommu group 130
[ 0.369705] pci 0000:ff:0a.1: Adding to iommu group 130
[ 0.369749] pci 0000:ff:0a.2: Adding to iommu group 130
[ 0.369793] pci 0000:ff:0a.3: Adding to iommu group 130
[ 0.369870] pci 0000:ff:0b.0: Adding to iommu group 131
[ 0.369918] pci 0000:ff:0b.3: Adding to iommu group 131
[ 0.370058] pci 0000:ff:0c.0: Adding to iommu group 132
[ 0.370103] pci 0000:ff:0c.1: Adding to iommu group 132
[ 0.370148] pci 0000:ff:0c.2: Adding to iommu group 132
[ 0.370193] pci 0000:ff:0c.3: Adding to iommu group 132
[ 0.370241] pci 0000:ff:0c.4: Adding to iommu group 132
[ 0.370382] pci 0000:ff:0d.0: Adding to iommu group 133
[ 0.370427] pci 0000:ff:0d.1: Adding to iommu group 133
[ 0.370472] pci 0000:ff:0d.2: Adding to iommu group 133
[ 0.370517] pci 0000:ff:0d.3: Adding to iommu group 133
[ 0.370563] pci 0000:ff:0d.4: Adding to iommu group 133
[ 0.370643] pci 0000:ff:0e.0: Adding to iommu group 134
[ 0.370697] pci 0000:ff:0e.1: Adding to iommu group 134
[ 0.370725] pci 0000:ff:0f.0: Adding to iommu group 135
[ 0.370753] pci 0000:ff:0f.1: Adding to iommu group 136
[ 0.370780] pci 0000:ff:0f.2: Adding to iommu group 137
[ 0.370812] pci 0000:ff:0f.3: Adding to iommu group 138
[ 0.370840] pci 0000:ff:0f.4: Adding to iommu group 139
[ 0.370867] pci 0000:ff:0f.5: Adding to iommu group 140
[ 0.370894] pci 0000:ff:10.0: Adding to iommu group 141
[ 0.370925] pci 0000:ff:10.1: Adding to iommu group 142
[ 0.370953] pci 0000:ff:10.2: Adding to iommu group 143
[ 0.370981] pci 0000:ff:10.3: Adding to iommu group 144
[ 0.371008] pci 0000:ff:10.4: Adding to iommu group 145
[ 0.371039] pci 0000:ff:10.5: Adding to iommu group 146
[ 0.371067] pci 0000:ff:10.6: Adding to iommu group 147
[ 0.371095] pci 0000:ff:10.7: Adding to iommu group 148
[ 0.371212] pci 0000:ff:13.0: Adding to iommu group 149
[ 0.371263] pci 0000:ff:13.1: Adding to iommu group 149
[ 0.371311] pci 0000:ff:13.4: Adding to iommu group 149
[ 0.371359] pci 0000:ff:13.5: Adding to iommu group 149
[ 0.371458] pci 0000:ff:16.0: Adding to iommu group 150
[ 0.371506] pci 0000:ff:16.1: Adding to iommu group 150
[ 0.371558] pci 0000:ff:16.2: Adding to iommu group 150
[ 0.371648] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.371649] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.371650] software IO TLB: mapped [mem 0x000000007507f000-0x000000007907f000] (64MB)
[ 0.372758] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[ 0.372760] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[ 0.372760] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 0.384034] Initialise system trusted keyrings
[ 0.384085] workingset: timestamp_bits=46 max_order=25 bucket_order=0
[ 0.384280] DLM installed
[ 0.391278] Key type asymmetric registered
[ 0.391280] Asymmetric key parser 'x509' registered
[ 0.391297] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[ 0.391355] io scheduler mq-deadline registered
[ 0.391357] io scheduler kyber registered
[ 0.391367] io scheduler bfq registered
[ 0.396691] efifb: probing for efifb
[ 0.396703] efifb: No BGRT, not showing boot graphics
[ 0.396705] efifb: framebuffer at 0xb0000000, using 8640k, total 8640k
[ 0.396706] efifb: mode is 1920x1080x32, linelength=8192, pages=1
[ 0.396708] efifb: scrolling: redraw
[ 0.396709] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.396753] fbcon: Deferring console take-over
[ 0.396754] fb0: EFI VGA frame buffer device
[ 0.396816] Monitor-Mwait will be used to enter C-1 state
[ 0.396826] Monitor-Mwait will be used to enter C-2 state
[ 0.396831] ACPI: \_SB_.SCK0.C002: Found 2 idle states
[ 0.399035] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.399093] ACPI: button: Power Button [PWRB]
[ 0.399143] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.399182] ACPI: button: Power Button [PWRF]
[ 0.410221] Freeing initrd memory: 8576K
[ 0.420067] ioatdma: Intel(R) QuickData Technology Driver 5.00
[ 0.522229] Linux agpgart interface v0.103
[ 0.522232] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
[ 0.524776] nvme nvme0: pci function 0000:82:00.0
[ 0.524776] nvme nvme1: pci function 0000:84:00.0
[ 0.524854] ACPI: bus type drm_connector registered
[ 0.524936] mousedev: PS/2 mouse device common for all mice
[ 0.524989] rtc_cmos 00:05: RTC can wake from S4
[ 0.525230] rtc_cmos 00:05: registered as rtc0
[ 0.525292] rtc_cmos 00:05: setting system clock to 2023-09-05T17:18:45 UTC (1693934325)
[ 0.525314] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram
[ 0.526865] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 0.526873] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 0.526879] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[ 0.526880] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[ 0.526887] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 0.526892] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 0.526897] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[ 0.526898] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 0.526902] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 0.526907] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[ 0.526909] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 0.526913] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 0.526918] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[ 0.526919] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 0.526924] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 0.526928] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[ 0.526930] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 0.526934] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 0.526939] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[ 0.526940] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 0.526945] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 0.526949] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[ 0.526951] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[ 0.526957] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[ 0.526964] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[ 0.526971] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[ 0.526977] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[ 0.526984] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[ 0.526990] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[ 0.526997] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[ 0.527004] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 0.527009] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 0.527013] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[ 0.527014] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 0.527019] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 0.527023] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[ 0.527024] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 0.527029] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 0.527033] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[ 0.527171] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[ 0.527278] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[ 0.527279] EDAC sbridge: Ver: 1.1.2
[ 0.527322] intel_pstate: Intel P-state driver initializing
[ 0.528794] nvme nvme1: missing or invalid SUBNQN field.
[ 0.531069] pstore: Registered efi_pstore as persistent store backend
[ 0.531096] hid: raw HID events driver (C) Jiri Kosina
[ 0.531211] intel_rapl_common: Found RAPL domain package
[ 0.531218] intel_rapl_common: Found RAPL domain core
[ 0.531239] intel_rapl_common: package-0:core:long_term locked by BIOS
[ 0.531653] intel_rapl_common: Found RAPL domain package
[ 0.531661] intel_rapl_common: Found RAPL domain core
[ 0.531681] intel_rapl_common: package-1:core:long_term locked by BIOS
[ 0.533119] NET: Registered PF_INET6 protocol family
[ 0.533780] Segment Routing with IPv6
[ 0.533796] In-situ OAM (IOAM) with IPv6
[ 0.533843] NET: Registered PF_PACKET protocol family
[ 0.533861] sctp: Hash tables configured (bind 2048/2048)
[ 0.533904] nvme nvme1: 15/0/0 default/read/poll queues
[ 0.540368] nvme nvme0: 16/0/0 default/read/poll queues
[ 0.542395] nvme1n1: p1 p2
[ 0.543397] microcode: Microcode Update Driver: v2.2.
[ 0.543407] IPI shorthand broadcast: enabled
[ 0.546503] registered taskstats version 1
[ 0.546875] Loading compiled-in X.509 certificates
[ 0.547093] nvme0n1: p1
[ 0.548999] Key type .fscrypt registered
[ 0.549002] Key type fscrypt-provisioning registered
[ 0.549484] pstore: Using crash dump compression: zstd
[ 0.549865] RAS: Correctable Errors collector initialized.
[ 0.549924] clk: Disabling unused clocks
[ 0.550937] Freeing unused kernel image (initmem) memory: 2012K
[ 0.570760] Write protecting the kernel read-only data: 18432k
[ 0.571482] Freeing unused kernel image (rodata/data gap) memory: 480K
[ 0.571493] rodata_test: all tests were successful
[ 0.571504] Run /init as init process
[ 0.571506] with arguments:
[ 0.571507] /init
[ 0.571508] with environment:
[ 0.571509] HOME=/
[ 0.571510] TERM=linux
[ 0.571512] BOOT_IMAGE=/boot/vmlinuz-6.5.1-xanmod1
[ 0.571513] calculate=video:nvidia
[ 0.571514] splash=off
[ 0.669972] dracut: Calculate-23
[ 0.846126] dracut: TuxOnIce premodule started
[ 0.846279] dracut: Kernel has no tuxonice support, aborting
[ 0.863995] fbcon: Taking over console
[ 0.864759] Console: switching to colour frame buffer device 240x67
[ 0.984723] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 0.986965] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.986971] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.991244] ACPI: bus type USB registered
[ 0.991268] usbcore: registered new interface driver usbfs
[ 0.991278] usbcore: registered new interface driver hub
[ 0.991300] usbcore: registered new device driver usb
[ 0.996403] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.996420] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 0.996434] ehci-pci 0000:00:1d.0: debug port 2
[ 1.000375] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc7400000
[ 1.002062] cryptd: max_cpu_qlen set to 1000
[ 1.003985] AVX version of gcm_enc/dec engaged.
[ 1.004064] AES CTR mode by8 optimization enabled
[ 1.008674] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.008761] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 1.008765] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.008767] usb usb1: Product: EHCI Host Controller
[ 1.008768] usb usb1: Manufacturer: Linux 6.5.1-xanmod1 ehci_hcd
[ 1.008769] usb usb1: SerialNumber: 0000:00:1d.0
[ 1.008916] hub 1-0:1.0: USB hub found
[ 1.008928] hub 1-0:1.0: 2 ports detected
[ 1.009154] xhci_hcd 0000:03:00.2: xHCI Host Controller
[ 1.009163] xhci_hcd 0000:03:00.2: new USB bus registered, assigned bus number 2
[ 1.009769] xhci_hcd 0000:03:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[ 1.009962] xhci_hcd 0000:03:00.2: xHCI Host Controller
[ 1.009965] xhci_hcd 0000:03:00.2: new USB bus registered, assigned bus number 3
[ 1.009969] xhci_hcd 0000:03:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.009971] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 1.009978] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 4
[ 1.009991] ehci-pci 0000:00:1a.0: debug port 2
[ 1.010056] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 1.010060] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.010062] usb usb2: Product: xHCI Host Controller
[ 1.010063] usb usb2: Manufacturer: Linux 6.5.1-xanmod1 xhci-hcd
[ 1.010064] usb usb2: SerialNumber: 0000:03:00.2
[ 1.010165] hub 2-0:1.0: USB hub found
[ 1.010181] hub 2-0:1.0: 2 ports detected
[ 1.010325] usb usb3: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.010379] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.05
[ 1.010381] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.010383] usb usb3: Product: xHCI Host Controller
[ 1.010384] usb usb3: Manufacturer: Linux 6.5.1-xanmod1 xhci-hcd
[ 1.010385] usb usb3: SerialNumber: 0000:03:00.2
[ 1.010465] hub 3-0:1.0: USB hub found
[ 1.010478] hub 3-0:1.0: 4 ports detected
[ 1.013935] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc7401000
[ 1.022682] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.022787] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 1.022791] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.022793] usb usb4: Product: EHCI Host Controller
[ 1.022794] usb usb4: Manufacturer: Linux 6.5.1-xanmod1 ehci_hcd
[ 1.022796] usb usb4: SerialNumber: 0000:00:1a.0
[ 1.022935] hub 4-0:1.0: USB hub found
[ 1.022948] hub 4-0:1.0: 2 ports detected
[ 1.023146] xhci_hcd 0000:0e:00.0: xHCI Host Controller
[ 1.023153] xhci_hcd 0000:0e:00.0: new USB bus registered, assigned bus number 5
[ 1.023377] xhci_hcd 0000:0e:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890
[ 1.023915] xhci_hcd 0000:0e:00.0: xHCI Host Controller
[ 1.023920] xhci_hcd 0000:0e:00.0: new USB bus registered, assigned bus number 6
[ 1.023923] xhci_hcd 0000:0e:00.0: Host supports USB 3.0 SuperSpeed
[ 1.023998] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 1.024001] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.024003] usb usb5: Product: xHCI Host Controller
[ 1.024004] usb usb5: Manufacturer: Linux 6.5.1-xanmod1 xhci-hcd
[ 1.024006] usb usb5: SerialNumber: 0000:0e:00.0
[ 1.024111] hub 5-0:1.0: USB hub found
[ 1.024125] hub 5-0:1.0: 1 port detected
[ 1.024304] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.05
[ 1.024306] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.024308] usb usb6: Product: xHCI Host Controller
[ 1.024309] usb usb6: Manufacturer: Linux 6.5.1-xanmod1 xhci-hcd
[ 1.024310] usb usb6: SerialNumber: 0000:0e:00.0
[ 1.024400] hub 6-0:1.0: USB hub found
[ 1.024418] hub 6-0:1.0: 4 ports detected
[ 1.053106] dracut: TuxOnIce lvmfix started
[ 1.056489] dracut: TuxOnIce udev should be now fully settled
[ 1.092829] EXT4-fs (nvme1n1p1): mounted filesystem 9e003968-df55-478a-81c8-3d94cac4f3f8 ro with ordered data mode. Quota mode: disabled.
[ 1.174473] dracut: Mounted root filesystem /dev/nvme1n1p1
[ 1.189810] EXT4-fs (nvme1n1p1): re-mounted 9e003968-df55-478a-81c8-3d94cac4f3f8 r/w. Quota mode: disabled.
[ 1.203060] EXT4-fs (nvme1n1p1): re-mounted 9e003968-df55-478a-81c8-3d94cac4f3f8 ro. Quota mode: disabled.
[ 1.254730] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.264733] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[ 1.268734] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 1.279404] dracut: Switching root
[ 1.393396] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[ 1.393407] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.393882] hub 1-1:1.0: USB hub found
[ 1.394057] hub 1-1:1.0: 8 ports detected
[ 1.401374] usb 5-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
[ 1.401384] usb 5-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.401387] usb 5-1: Product: USB2.0 Hub
[ 1.402563] hub 5-1:1.0: USB hub found
[ 1.402965] hub 5-1:1.0: 4 ports detected
[ 1.405196] usb 4-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[ 1.405206] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.405681] hub 4-1:1.0: USB hub found
[ 1.405806] hub 4-1:1.0: 6 ports detected
[ 1.668700] usb 1-1.1: new low-speed USB device number 3 using ehci-pci
[ 1.765641] usb 1-1.1: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[ 1.765667] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.765671] usb 1-1.1: Product: USB Optical Mouse
[ 1.765674] usb 1-1.1: Manufacturer: Logitech
[ 1.834723] usb 1-1.3: new full-speed USB device number 4 using ehci-pci
[ 1.902717] usb 1-1.3: device descriptor read/64, error -32
[ 2.096593] usb 1-1.3: New USB device found, idVendor=0bda, idProduct=8771, bcdDevice= 2.00
[ 2.096604] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.096608] usb 1-1.3: Product: Bluetooth Radio
[ 2.096611] usb 1-1.3: Manufacturer: Realtek
[ 2.096614] usb 1-1.3: SerialNumber: 00E04C239987
[ 2.166735] usb 1-1.4: new low-speed USB device number 5 using ehci-pci
[ 2.263650] usb 1-1.4: New USB device found, idVendor=04b4, idProduct=0510, bcdDevice= 2.01
[ 2.263661] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.263666] usb 1-1.4: Product: HID Keyboard
[ 2.263668] usb 1-1.4: Manufacturer: HID Keyboard
[ 2.844403] i801_smbus 0000:00:1f.3: enabling device (0141 -> 0143)
[ 2.844571] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 2.845196] i2c i2c-0: 4/4 memory slots populated (from DMI)
[ 2.847538] igb: Intel(R) Gigabit Ethernet Network Driver
[ 2.847541] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 2.847580] igb 0000:0d:00.0: enabling device (0140 -> 0142)
[ 2.897831] snd_hda_intel 0000:00:1b.0: enabling device (0140 -> 0142)
[ 2.897996] igb 0000:0d:00.0: DCA enabled
[ 2.898006] igb 0000:0d:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 2.898008] igb 0000:0d:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:13:32:08:f8:b2
[ 2.898012] igb 0000:0d:00.0: eth0: PBA No: FFFFFF-0FF
[ 2.898014] igb 0000:0d:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 2.898064] snd_hda_intel 0000:03:00.1: enabling device (0140 -> 0142)
[ 2.898067] igb 0000:0f:00.0: enabling device (0140 -> 0142)
[ 2.898183] snd_hda_intel 0000:03:00.1: Disabling MSI
[ 2.904160] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:046D:C077.0001/input/input2
[ 2.904288] hid-generic 0003:046D:C077.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.1/input0
[ 2.907379] input: HID Keyboard HID Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:04B4:0510.0002/input/input3
[ 2.911652] snd_hda_codec_realtek hdaudioC0D2: autoconfig for ALC662 rev3: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[ 2.911661] snd_hda_codec_realtek hdaudioC0D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 2.911664] snd_hda_codec_realtek hdaudioC0D2: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 2.911666] snd_hda_codec_realtek hdaudioC0D2: mono: mono_out=0x0
[ 2.911668] snd_hda_codec_realtek hdaudioC0D2: dig-out=0x1e/0x0
[ 2.911670] snd_hda_codec_realtek hdaudioC0D2: inputs:
[ 2.911672] snd_hda_codec_realtek hdaudioC0D2: Front Mic=0x19
[ 2.911674] snd_hda_codec_realtek hdaudioC0D2: Rear Mic=0x18
[ 2.911676] snd_hda_codec_realtek hdaudioC0D2: Line=0x1a
[ 2.914106] Bluetooth: Core ver 2.22
[ 2.914126] NET: Registered PF_BLUETOOTH protocol family
[ 2.914128] Bluetooth: HCI device and connection manager initialized
[ 2.914137] Bluetooth: HCI socket layer initialized
[ 2.914139] Bluetooth: L2CAP socket layer initialized
[ 2.914144] Bluetooth: SCO socket layer initialized
[ 2.917274] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input4
[ 2.919114] usbcore: registered new interface driver btusb
[ 2.921812] Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000b lmp_ver=0a lmp_subver=8761
[ 2.922856] Bluetooth: hci0: RTL: rom_version status=0 version=1
[ 2.922859] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_fw.bin
[ 2.922861] Loading firmware: rtl_bt/rtl8761bu_fw.bin
[ 2.924174] Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_config.bin
[ 2.924177] Loading firmware: rtl_bt/rtl8761bu_config.bin
[ 2.924339] Bluetooth: hci0: RTL: cfg_sz 6, total sz 30210
[ 2.926580] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 2.926974] igb 0000:0f:00.0: DCA enabled
[ 2.926987] igb 0000:0f:00.0: Intel(R) Gigabit Ethernet Network Connection
[ 2.926989] igb 0000:0f:00.0: eth1: (PCIe:2.5Gb/s:Width x1) 00:13:32:08:f8:b3
[ 2.926993] igb 0000:0f:00.0: eth1: PBA No: FFFFFF-0FF
[ 2.926994] igb 0000:0f:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[ 2.930194] igb 0000:0f:00.0 enp15s0: renamed from eth1
[ 2.931092] nct6775: Found NCT6779D or compatible chip at 0x2e:0xa10
[ 2.956824] tun: Universal TUN/TAP device driver, 1.6
[ 2.960859] igb 0000:0d:00.0 enp13s0: renamed from eth0
[ 2.960928] hid-generic 0003:04B4:0510.0002: input,hidraw1: USB HID v1.11 Keyboard [HID Keyboard HID Keyboard] on usb-0000:00:1d.0-1.4/input0
[ 2.960973] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input5
[ 2.961045] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input6
[ 2.961107] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input7
[ 2.961635] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 2.961866] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 2.962195] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 2.962377] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 2.962883] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 2.963169] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[ 2.969572] input: HID Keyboard HID Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:04B4:0510.0003/input/input15
[ 2.990465] vboxdrv: loading out-of-tree module taints kernel.
[ 2.992663] vboxdrv: Found 32 processor cores/threads
[ 3.007594] nvidia: module license 'NVIDIA' taints kernel.
[ 3.007602] Disabling lock debugging due to kernel taint
[ 3.007606] nvidia: module license taints kernel.
[ 3.019779] nvidia-nvlink: Nvlink Core is being initialized, major device number 242
[ 3.020882] nvidia 0000:03:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[ 3.022857] hid-generic 0003:04B4:0510.0003: input,hidraw2: USB HID v1.11 Keyboard [HID Keyboard HID Keyboard] on usb-0000:00:1d.0-1.4/input1
[ 3.022924] usbcore: registered new interface driver usbhid
[ 3.022927] usbhid: USB HID core driver
[ 3.069958] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 535.104.05 Sat Aug 19 01:15:15 UTC 2023
[ 3.077220] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 535.104.05 Sat Aug 19 00:59:57 UTC 2023
[ 3.077817] Bluetooth: hci0: RTL: fw version 0xdfc6d922
[ 3.078492] [drm] [nvidia-drm] [GPU ID 0x00000300] Loading driver
[ 3.093079] vboxdrv: TSC mode is Asynchronous, tentative frequency 3299987418 Hz
[ 3.093082] vboxdrv: Successfully loaded version 7.0.10 r158379 (interface 0x00330004)
[ 3.100327] VBoxNetFlt: Successfully started.
[ 3.108025] VBoxNetAdp: Successfully started.
[ 4.042544] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:03:00.0 on minor 0
[ 4.063387] EXT4-fs (nvme1n1p1): re-mounted 9e003968-df55-478a-81c8-3d94cac4f3f8 r/w. Quota mode: disabled.
[ 4.078242] EXT4-fs (nvme1n1p1): re-mounted 9e003968-df55-478a-81c8-3d94cac4f3f8 r/w. Quota mode: disabled.
[ 4.279480] Adding 134217724k swap on /dev/nvme0n1p1. Priority:-2 extents:1 across:134217724k SS
[ 4.415444] zram: Added device: zram0
[ 4.813752] zram0: detected capacity change from 0 to 527389696
[ 4.877536] Adding 263694844k swap on /dev/zram0. Priority:100 extents:1 across:263694844k SS
[ 5.942807] fuse: init (API version 7.38)
[ 5.950936] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 5.950940] Bluetooth: BNEP filters: protocol multicast
[ 5.950952] Bluetooth: BNEP socket layer initialized
[ 5.952410] Bluetooth: MGMT ver 1.22
[ 5.954137] NET: Registered PF_ALG protocol family
[ 6.016728] msr: Write to unrecognized MSR 0x17f by rasdaemon (pid: 5004).
[ 6.016734] msr: See https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/about for details.
[ 6.284447] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=4557 'X'
[ 8.799204] igb 0000:0d:00.0 enp13s0: igb: enp13s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[ 13.756760] nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
[ 13.762000] nvidia-uvm: Loaded the UVM driver, major device number 240.
[ 15.636215] process 'home/optimus/Telegram/Telegram' started with executable stack
[ 15.993809] Bluetooth: RFCOMM TTY layer initialized
[ 15.993824] Bluetooth: RFCOMM socket layer initialized
[ 15.993829] Bluetooth: RFCOMM ver 1.11
[ 20.912956] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input16
[ 27.803014] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[ 27.803019] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[27548.056712] Bluetooth: hci0: command 0x0402 tx timeout
[27548.056718] Bluetooth: hci0: Opcode 0x 402 failed: -110
[64192.722960] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input17
[77233.886727] Bluetooth: Unexpected continuation frame (len 2)
[100554.956994] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input18
[100586.890237] traps: Viber[27454] general protection fault ip:7f7b2a0a0351 sp:7ffd28955828 error:0 in libgobject-2.0.so.0.7200.4[7f7b2a075000+35000]
[100590.312891] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input19
[150675.106953] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input20
[238284.472974] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input21
|