Technical details of a default CentOS 6.10 minimal installation

Author:

Kernel

Kernel version:

1
2
[root@srv ~]# uname -a
Linux srv 2.6.32-754.el6.x86_64 #1 SMP Tue Jun 19 21:26:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

Dmesg:
As you can see it detected our NVME and you can use it though we installed the system on our SSD drive.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
[root@srv ~]# dmesg
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.32-754.el6.x86_64 (mockbuild@x86-01.bsys.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-23) (GCC) ) #1 SMP Tue Jun 19 21:26:04 UTC 2018
Command line: ro root=/dev/mapper/vg_srv-lv_root rd_NO_LUKS rd_LVM_LV=vg_srv/lv_swap LANG=en_US.UTF-8 rd_NO_MD rd_LVM_LV=vg_srv/lv_root SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
KERNEL supported cpus:
  Intel GenuineIntel
  AMD AuthenticAMD
  Centaur CentaurHauls
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009d400 (usable)
 BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 0000000009df0000 (usable)
 BIOS-e820: 0000000009df0000 - 000000000a000000 (reserved)
 BIOS-e820: 000000000a000000 - 000000000b000000 (usable)
 BIOS-e820: 000000000b000000 - 000000000b020000 (reserved)
 BIOS-e820: 000000000b020000 - 0000000076a48000 (usable)
 BIOS-e820: 0000000076a48000 - 0000000077f8f000 (reserved)
 BIOS-e820: 0000000077f8f000 - 0000000077fb9000 (ACPI data)
 BIOS-e820: 0000000077fb9000 - 000000007847f000 (ACPI NVS)
 BIOS-e820: 000000007847f000 - 000000007980a000 (reserved)
 BIOS-e820: 000000007980a000 - 000000007c000000 (usable)
 BIOS-e820: 000000007c000000 - 0000000080000000 (reserved)
 BIOS-e820: 00000000b7a00000 - 00000000b7a01000 (reserved)
 BIOS-e820: 00000000b7b00000 - 00000000b7b80000 (reserved)
 BIOS-e820: 00000000ef800000 - 00000000ef900000 (reserved)
 BIOS-e820: 00000000efc00000 - 00000000efc01000 (reserved)
 BIOS-e820: 00000000efd00000 - 00000000efd80000 (reserved)
 BIOS-e820: 00000000fea00000 - 00000000feb00000 (reserved)
 BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
 BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
 BIOS-e820: 00000000fec30000 - 00000000fec31000 (reserved)
 BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
 BIOS-e820: 00000000fed40000 - 00000000fed45000 (reserved)
 BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
 BIOS-e820: 00000000fedc0000 - 00000000fedc1000 (reserved)
 BIOS-e820: 00000000fedc2000 - 00000000fedd0000 (reserved)
 BIOS-e820: 00000000fedd4000 - 00000000fedd6000 (reserved)
 BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
 BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
 BIOS-e820: 0000000100000000 - 000000087f300000 (usable)
 BIOS-e820: 000000087f300000 - 0000000880000000 (reserved)
SMBIOS version 3.0 @ 0xF05E0
SMBIOS 3.0 present.
DMI: System manufacturer System Product Name/ROG ZENITH EXTREME, BIOS 1402 08/03/2018
AMI BIOS detected: BIOS may corrupt low RAM, working around it.
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
last_pfn = 0x87f300 max_arch_pfn = 0x400000000
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
original variable MTRRs
reg 0, base: 0GB, range: 2GB, type WB
reg 1, base: 1984MB, range: 64MB, type UC
total RAM covered: 1984M
Found optimal setting for mtrr clean up
 gran_size: 64K         chunk_size: 128M        num_reg: 2      lose cover RAM: 0G
New variable MTRRs
reg 0, base: 0GB, range: 2GB, type WB
reg 1, base: 1984MB, range: 64MB, type UC
e820 update range: 000000007c000000 - 0000000100000000 (usable) ==> (reserved)
last_pfn = 0x7c000 max_arch_pfn = 0x400000000
initial memory mapped : 0 - 20000000
Using GB pages for direct mapping
init_memory_mapping: 0000000000000000-000000007c000000
 0000000000 - 0040000000 page 1G
 0040000000 - 007c000000 page 2M
kernel direct mapping tables up to 7c000000 @ 10000-12000
Use unified mapping for non-reserved e820 regions.
init_memory_mapping: 0000000100000000-000000087f300000
 0100000000 - 0840000000 page 1G
 0840000000 - 087f200000 page 2M
 087f200000 - 087f300000 page 4k
kernel direct mapping tables up to 87f300000 @ 11000-14000
RAMDISK: 08c3a000 - 09ddf883
ACPI: Deleted _OSI(Windows 2012)
ACPI: Deleted _OSI(Windows 2013)
ACPI: RSDP 00000000000f05b0 00024 (v02    AMD)
ACPI: XSDT 0000000077f97098 000AC (v01    AMD   A M I  03242016 AMI  00010013)
ACPI: FACP 0000000077fa46b0 00114 (v06    AMD   A M I  03242016 AMI  00010013)
ACPI: DSDT 0000000077f971e0 0D4CB (v02    AMD   A M I  03242016 INTL 20120913)
ACPI: FACS 000000007847c700 00040
ACPI: APIC 0000000077fa47c8 0046A (v03    AMD   A M I  03242016 AMI  00010013)
ACPI: FPDT 0000000077fa4c38 00044 (v01    AMD   A M I  03242016 AMI  00010013)
ACPI: FIDT 0000000077fa4c80 0009C (v01    AMD    A M I 03242016 AMI  00010013)
ACPI: SSDT 0000000077fb87f0 000F8 (v01    AMD   AMD PT 00001000 INTL 20120913)
ACPI: SSDT 0000000077fa4d78 08C4C (v02    AMD AMD ALIB 00000002 MSFT 04000000)
ACPI: SSDT 0000000077fad9c8 001CC (v02    AMD  CPUSSDT 03242016 AMI  03242016)
ACPI: SSDT 0000000077fadb98 02C23 (v01    AMD  AMD AOD 00000001 INTL 20120913)
ACPI: MCFG 0000000077fb07c0 0003C (v01    AMD    A M I 03242016 MSFT 00010013)
ACPI: SSDT 0000000077fb0800 04604 (v01    AMD  AMD CPU 00000001 AMD  00000001)
ACPI: CRAT 0000000077fb4e08 01DF8 (v01    AMD AMD CRAT 00000001 AMD  00000001)
ACPI: CDIT 0000000077fb6c00 00029 (v01    AMD AMD CDIT 00000001 AMD  00000001)
ACPI: HPET 0000000077fb6c30 00038 (v01    AMD    A M I 03242016 AMI  00000005)
ACPI: SSDT 0000000077fb6c68 00024 (v01 AMDFCH    FCHZP 00001000 INTL 20120913)
ACPI: UEFI 0000000077fb6c90 00042 (v01    AMD   A M I  00000002      01000013)
ACPI: IVRS 0000000077fb6cd8 000D0 (v02    AMD AMD IVRS 00000001 AMD  00000000)
ACPI: SSDT 0000000077fb6da8 01A41 (v01    AMD AmdTable 00000001 INTL 20120913)
ACPI: Local APIC address 0xfee00000
system APIC only can use physical flat
Setting APIC routing to physical flat.
No NUMA configuration found
Faking a node at 0000000000000000-000000087f300000
Bootmem setup node 0 0000000000000000-000000087f300000
  NODE_DATA [0000000000013000 - 0000000000046fff]
  bootmap [0000000000100000 -  000000000020fe5f] pages 110
(8 early reservations) ==> bootmem [0000000000 - 087f300000]
  #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
  #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
  #2 [0001000000 - 0002050a64]    TEXT DATA BSS ==> [0001000000 - 0002050a64]
  #3 [0008c3a000 - 0009ddf883]          RAMDISK ==> [0008c3a000 - 0009ddf883]
  #4 [000009d400 - 0000100000]    BIOS reserved ==> [000009d400 - 0000100000]
  #5 [0002051000 - 0002051569]              BRK ==> [0002051000 - 0002051569]
  #6 [0000010000 - 0000011000]          PGTABLE ==> [0000010000 - 0000011000]
  #7 [0000011000 - 0000013000]          PGTABLE ==> [0000011000 - 0000013000]
found SMP MP-table at [ffff8800000fcf60] fcf60
Found 131MB of memory at 192MB for crashkernel auto
Reserving 131MB of memory at 192MB for crashkernel (System RAM: 34803MB)
 [ffffea0000000000-ffffea001dbfffff] PMD -> [ffff880028600000-ffff8800445fffff] on node 0
Zone PFN ranges:
  DMA      0x00000010 -> 0x00001000
  DMA32    0x00001000 -> 0x00100000
  Normal   0x00100000 -> 0x0087f300
Movable zone start PFN for each node
early_node_map[6] active PFN ranges
    0: 0x00000010 -> 0x0000009d
    0: 0x00000100 -> 0x00009df0
    0: 0x0000a000 -> 0x0000b000
    0: 0x0000b020 -> 0x00076a48
    0: 0x0007980a -> 0x0007c000
    0: 0x00100000 -> 0x0087f300
On node 0 totalpages: 8356507
  DMA zone: 56 pages used for memmap
  DMA zone: 104 pages reserved
  DMA zone: 3821 pages, LIFO batch:0
  DMA32 zone: 14280 pages used for memmap
  DMA32 zone: 477254 pages, LIFO batch:31
  Normal zone: 107475 pages used for memmap
  Normal zone: 7753517 pages, LIFO batch:31
ACPI: PM-Timer IO Port: 0x808
ACPI: Local APIC address 0xfee00000
system APIC only can use physical flat
Setting APIC routing to physical flat.
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] enabled)
ACPI: LAPIC (acpi_id[0x10] lapic_id[0x10] enabled)
ACPI: LAPIC (acpi_id[0x12] lapic_id[0x12] enabled)
ACPI: LAPIC (acpi_id[0x14] lapic_id[0x14] enabled)
ACPI: LAPIC (acpi_id[0x16] lapic_id[0x16] enabled)
ACPI: LAPIC (acpi_id[0x18] lapic_id[0x18] enabled)
ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x1a] enabled)
ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x1c] enabled)
ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x1e] enabled)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] enabled)
ACPI: LAPIC (acpi_id[0x11] lapic_id[0x11] enabled)
ACPI: LAPIC (acpi_id[0x13] lapic_id[0x13] enabled)
ACPI: LAPIC (acpi_id[0x15] lapic_id[0x15] enabled)
ACPI: LAPIC (acpi_id[0x17] lapic_id[0x17] enabled)
ACPI: LAPIC (acpi_id[0x19] lapic_id[0x19] enabled)
ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x1b] enabled)
ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x1d] enabled)
ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x1f] enabled)
ACPI: LAPIC (acpi_id[0x20] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x21] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x22] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x23] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x24] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x25] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x26] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x27] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x28] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x29] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x2c] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x2d] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x2e] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x2f] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x30] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x31] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x32] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x33] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x34] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x35] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x36] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x37] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x38] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x39] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x3c] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x3d] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x3e] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x3f] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x40] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x41] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x42] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x43] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x44] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x45] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x46] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x47] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x48] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x49] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x4a] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x4b] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x4c] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x4d] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x4e] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x4f] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x50] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x51] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x52] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x53] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x54] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x55] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x56] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x57] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x58] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x59] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x5a] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x5b] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x5c] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x5d] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x5e] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x5f] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x60] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x61] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x62] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x63] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x64] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x65] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x66] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x67] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x68] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x69] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x6a] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x6b] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x6c] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x6d] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x6e] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x6f] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x70] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x71] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x72] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x73] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x74] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x75] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x76] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x77] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x78] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x79] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x7a] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x7b] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x7c] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x7d] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x7e] lapic_id[0x00] disabled)
ACPI: LAPIC (acpi_id[0x7f] lapic_id[0x00] disabled)
ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
ACPI: IOAPIC (id[0x80] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 128, version 33, address 0xfec00000, GSI 0-23
ACPI: IOAPIC (id[0x81] address[0xefc00000] gsi_base[24])
IOAPIC[1]: apic_id 129, version 33, address 0xefc00000, GSI 24-55
ACPI: IOAPIC (id[0x82] address[0xb7a00000] gsi_base[56])
IOAPIC[2]: apic_id 130, version 33, address 0xb7a00000, GSI 56-87
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x10228201 base: 0xfed00000
SMP: Allowing 128 CPUs, 96 hotplug CPUs
nr_irqs_gsi: 88
PM: Registered nosave memory: 000000000009d000 - 000000000009e000
PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
PM: Registered nosave memory: 0000000009df0000 - 000000000a000000
PM: Registered nosave memory: 000000000b000000 - 000000000b020000
PM: Registered nosave memory: 0000000076a48000 - 0000000077f8f000
PM: Registered nosave memory: 0000000077f8f000 - 0000000077fb9000
PM: Registered nosave memory: 0000000077fb9000 - 000000007847f000
PM: Registered nosave memory: 000000007847f000 - 000000007980a000
PM: Registered nosave memory: 000000007c000000 - 0000000080000000
PM: Registered nosave memory: 0000000080000000 - 00000000b7a00000
PM: Registered nosave memory: 00000000b7a00000 - 00000000b7a01000
PM: Registered nosave memory: 00000000b7a01000 - 00000000b7b00000
PM: Registered nosave memory: 00000000b7b00000 - 00000000b7b80000
PM: Registered nosave memory: 00000000b7b80000 - 00000000ef800000
PM: Registered nosave memory: 00000000ef800000 - 00000000ef900000
PM: Registered nosave memory: 00000000ef900000 - 00000000efc00000
PM: Registered nosave memory: 00000000efc00000 - 00000000efc01000
PM: Registered nosave memory: 00000000efc01000 - 00000000efd00000
PM: Registered nosave memory: 00000000efd00000 - 00000000efd80000
PM: Registered nosave memory: 00000000efd80000 - 00000000fea00000
PM: Registered nosave memory: 00000000fea00000 - 00000000feb00000
PM: Registered nosave memory: 00000000feb00000 - 00000000fec00000
PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
PM: Registered nosave memory: 00000000fec11000 - 00000000fec30000
PM: Registered nosave memory: 00000000fec30000 - 00000000fec31000
PM: Registered nosave memory: 00000000fec31000 - 00000000fed00000
PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
PM: Registered nosave memory: 00000000fed01000 - 00000000fed40000
PM: Registered nosave memory: 00000000fed40000 - 00000000fed45000
PM: Registered nosave memory: 00000000fed45000 - 00000000fed80000
PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
PM: Registered nosave memory: 00000000fed90000 - 00000000fedc0000
PM: Registered nosave memory: 00000000fedc0000 - 00000000fedc1000
PM: Registered nosave memory: 00000000fedc1000 - 00000000fedc2000
PM: Registered nosave memory: 00000000fedc2000 - 00000000fedd0000
PM: Registered nosave memory: 00000000fedd0000 - 00000000fedd4000
PM: Registered nosave memory: 00000000fedd4000 - 00000000fedd6000
PM: Registered nosave memory: 00000000fedd6000 - 00000000fee00000
PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000
PM: Registered nosave memory: 00000000fef00000 - 00000000ff000000
PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
Allocating PCI resources starting at b7b80000 (gap: b7b80000:37c80000)
Booting paravirtualized kernel on bare hardware
NR_CPUS:4096 nr_cpumask_bits:128 nr_cpu_ids:128 nr_node_ids:1
PERCPU: Embedded 33 pages/cpu @ffff880044600000 s104088 r8192 d22888 u262144
pcpu-alloc: s104088 r8192 d22888 u262144 alloc=1*2097152
pcpu-alloc: [0] 000 001 002 003 004 005 006 007
pcpu-alloc: [0] 008 009 010 011 012 013 014 015
pcpu-alloc: [0] 016 017 018 019 020 021 022 023
pcpu-alloc: [0] 024 025 026 027 028 029 030 031
pcpu-alloc: [0] 032 033 034 035 036 037 038 039
pcpu-alloc: [0] 040 041 042 043 044 045 046 047
pcpu-alloc: [0] 048 049 050 051 052 053 054 055
pcpu-alloc: [0] 056 057 058 059 060 061 062 063
pcpu-alloc: [0] 064 065 066 067 068 069 070 071
pcpu-alloc: [0] 072 073 074 075 076 077 078 079
pcpu-alloc: [0] 080 081 082 083 084 085 086 087
pcpu-alloc: [0] 088 089 090 091 092 093 094 095
pcpu-alloc: [0] 096 097 098 099 100 101 102 103
pcpu-alloc: [0] 104 105 106 107 108 109 110 111
pcpu-alloc: [0] 112 113 114 115 116 117 118 119
pcpu-alloc: [0] 120 121 122 123 124 125 126 127
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 8234592
Policy zone: Normal
Kernel command line: ro root=/dev/mapper/vg_srv-lv_root rd_NO_LUKS rd_LVM_LV=vg_srv/lv_swap LANG=en_US.UTF-8 rd_NO_MD rd_LVM_LV=vg_srv/lv_root SYSFONT=latarcyrheb-sun16 crashkernel=131M@192M  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
PID hash table entries: 4096 (order: 3, 32768 bytes)
x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
AMD-Vi disabled by default: pass amd_iommu=on to enable
Memory: 32714880k/35638272k available (5520k kernel code, 2212244k absent, 711148k reserved, 6909k data, 1340k init)
Hierarchical RCU implementation.
NR_IRQS:33024 nr_irqs:2520
Extended CMOS year: 2000
Console: colour VGA+ 80x25
console [tty0] enabled
allocated 134217728 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
hpet clockevent registered
Fast TSC calibration failed
TSC: PIT calibration matches HPET. 1 loops
Detected 3393.148 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 6786.29 BogoMIPS (lpj=3393148)
pid_max: default: 131072 minimum: 1024
Security Framework initialized
SELinux:  Initializing.
SELinux:  Starting in permissive mode
Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Mount-cache hash table entries: 256
Initializing cgroup subsys ns
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
Initializing cgroup subsys blkio
Initializing cgroup subsys perf_event
Initializing cgroup subsys net_prio
tseg: 007c000000
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
mce: CPU supports 23 MCE banks
Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
FEATURE SPEC_CTRL Not Present
FEATURE IBPB_SUPPORT Present
Spectre V2 : Mitigation: Full AMD retpoline
ACPI: Core revision 20090903
ftrace: converting mcount calls to 0f 1f 44 00 00
ftrace: allocating 22051 entries in 87 pages
APIC routing finalized to physical flat.
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: AMD Ryzen Threadripper 1950X 16-Core Processor  stepping 01
Performance Events:
core perfctr but no constraints; unknown hardware!
no PMU driver, software events only.
NMI watchdog disabled (cpu0): hardware events not enabled
Booting Node   0, Processors  #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
Brought up 32 CPUs
Total of 32 processors activated (217161.47 BogoMIPS).
sizeof(vma)=200 bytes
sizeof(page)=56 bytes
sizeof(inode)=592 bytes
sizeof(dentry)=192 bytes
sizeof(ext3inode)=800 bytes
sizeof(buffer_head)=104 bytes
sizeof(skbuff)=232 bytes
sizeof(task_struct)=2672 bytes
devtmpfs: initialized
PM: Registering ACPI NVS region at 77fb9000 (5005312 bytes)
regulator: core version 0.5
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 127
PCI: Not using MMCONFIG.
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: EC: Look up EC in DSDT
ACPI: Executed 2 blocks of module-level executable AML code
ACPI Error (psargs-0359): [RAMB] Namespace lookup failure, AE_NOT_FOUND
ACPI Exception: AE_NOT_FOUND, Could not execute arguments for [RAMW] (Region) (20090903/nsinit-347)
ACPI: Interpreter enabled
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 127
PCI: MCFG area at f0000000 reserved in ACPI motherboard resources
PCI: Using MMCONFIG at f0000000 - f7ffffff
ACPI: EC: GPE = 0x2, I/O: command/status = 0x66, data = 0x62
ACPI: No dock devices found.
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
pci_root PNP0A08:00: host bridge window [io  0x0000-0x03af]
pci_root PNP0A08:00: host bridge window [io  0x03e0-0x0cf7]
pci_root PNP0A08:00: host bridge window [io  0x03b0-0x03df]
pci_root PNP0A08:00: host bridge window [io  0x0000-0x2fff]
pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
pci_root PNP0A08:00: host bridge window [mem 0x000c0000-0x000dffff]
pci_root PNP0A08:00: host bridge window [mem 0xb8000000-0xd9ffffff]
pci_root PNP0A08:00: host bridge window [mem 0x880000000-0x82bfffffff]
pci_root PNP0A08:00: host bridge window expanded to [io  0x0000-0x2fff]; [io  0x0000-0x2fff] ignored
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [io  0x0000-0x2fff]
pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7]
pci_bus 0000:00: root bus resource [io  0x03b0-0x03df]
pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
pci_bus 0000:00: root bus resource [mem 0xb8000000-0xd9ffffff]
pci_bus 0000:00: root bus resource [mem 0x880000000-0x82bfffffff]
pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
pci 0000:00:01.1: PME# disabled
pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
pci 0000:00:01.2: PME# disabled
pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
pci 0000:00:03.1: PME# disabled
pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
pci 0000:00:07.1: PME# disabled
pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
pci 0000:00:08.1: PME# disabled
pci 0000:01:00.0: reg 10: [mem 0xd98a0000-0xd98a7fff 64bit]
pci 0000:01:00.0: PME# supported from D3hot D3cold
pci 0000:01:00.0: PME# disabled
pci 0000:01:00.1: reg 24: [mem 0xd9880000-0xd989ffff]
pci 0000:01:00.1: reg 30: [mem 0xd9800000-0xd987ffff pref]
pci 0000:01:00.1: PME# supported from D3hot D3cold
pci 0000:01:00.1: PME# disabled
pci 0000:01:00.2: PME# supported from D3hot D3cold
pci 0000:01:00.2: PME# disabled
pci 0000:00:01.1: PCI bridge to [bus 01-08]
pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
pci 0000:00:01.1:   bridge window [mem 0xd9200000-0xd98fffff]
pci 0000:02:00.0: PME# supported from D3hot D3cold
pci 0000:02:00.0: PME# disabled
pci 0000:02:01.0: PME# supported from D3hot D3cold
pci 0000:02:01.0: PME# disabled
pci 0000:02:02.0: PME# supported from D3hot D3cold
pci 0000:02:02.0: PME# disabled
pci 0000:02:03.0: PME# supported from D3hot D3cold
pci 0000:02:03.0: PME# disabled
pci 0000:02:04.0: PME# supported from D3hot D3cold
pci 0000:02:04.0: PME# disabled
pci 0000:02:09.0: PME# supported from D3hot D3cold
pci 0000:02:09.0: PME# disabled
pci 0000:01:00.2: PCI bridge to [bus 02-08]
pci 0000:01:00.2:   bridge window [io  0x2000-0x2fff]
pci 0000:01:00.2:   bridge window [mem 0xd9200000-0xd97fffff]
pci 0000:03:00.0: reg 10: [mem 0xd9400000-0xd95fffff 64bit]
pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
pci 0000:03:00.0: PME# disabled
pci 0000:02:00.0: PCI bridge to [bus 03-03]
pci 0000:02:00.0:   bridge window [mem 0xd9400000-0xd95fffff]
pci 0000:04:00.0: reg 10: [mem 0xd9200000-0xd93fffff 64bit]
pci 0000:02:01.0: PCI bridge to [bus 04-04]
pci 0000:02:01.0:   bridge window [mem 0xd9200000-0xd93fffff]
pci 0000:05:00.0: reg 10: [mem 0xd9700000-0xd971ffff]
pci 0000:05:00.0: reg 18: [io  0x2000-0x201f]
pci 0000:05:00.0: reg 1c: [mem 0xd9720000-0xd9723fff]
pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
pci 0000:05:00.0: PME# disabled
pci 0000:02:02.0: PCI bridge to [bus 05-05]
pci 0000:02:02.0:   bridge window [io  0x2000-0x2fff]
pci 0000:02:02.0:   bridge window [mem 0xd9700000-0xd97fffff]
pci 0000:02:03.0: PCI bridge to [bus 06-06]
pci 0000:02:04.0: PCI bridge to [bus 07-07]
pci 0000:08:00.0: reg 10: [mem 0xd9600000-0xd9607fff 64bit]
pci 0000:08:00.0: PME# supported from D0
pci 0000:08:00.0: PME# disabled
pci 0000:02:09.0: PCI bridge to [bus 08-08]
pci 0000:02:09.0:   bridge window [mem 0xd9600000-0xd96fffff]
pci 0000:09:00.0: reg 10: [mem 0xd9e00000-0xd9e03fff 64bit]
pci 0000:00:01.2: PCI bridge to [bus 09-09]
pci 0000:00:01.2:   bridge window [mem 0xd9e00000-0xd9efffff]
pci 0000:0a:00.0: reg 10: [mem 0xd8000000-0xd8ffffff]
pci 0000:0a:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
pci 0000:0a:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
pci 0000:0a:00.0: reg 24: [io  0x1000-0x107f]
pci 0000:0a:00.0: reg 30: [mem 0xd9000000-0xd907ffff pref]
pci 0000:0a:00.1: reg 10: [mem 0xd9080000-0xd9083fff]
pci 0000:00:03.1: PCI bridge to [bus 0a-0a]
pci 0000:00:03.1:   bridge window [io  0x1000-0x1fff]
pci 0000:00:03.1:   bridge window [mem 0xd8000000-0xd90fffff]
pci 0000:00:03.1:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
pci 0000:0b:00.2: reg 18: [mem 0xd9b00000-0xd9bfffff]
pci 0000:0b:00.2: reg 24: [mem 0xd9c00000-0xd9c01fff]
pci 0000:0b:00.3: reg 10: [mem 0xd9a00000-0xd9afffff 64bit]
pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold
pci 0000:0b:00.3: PME# disabled
pci 0000:00:07.1: PCI bridge to [bus 0b-0b]
pci 0000:00:07.1:   bridge window [mem 0xd9a00000-0xd9cfffff]
pci 0000:0c:00.2: reg 24: [mem 0xd9d08000-0xd9d08fff]
pci 0000:0c:00.2: PME# supported from D3hot D3cold
pci 0000:0c:00.2: PME# disabled
pci 0000:0c:00.3: reg 10: [mem 0xd9d00000-0xd9d07fff]
pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
pci 0000:0c:00.3: PME# disabled
pci 0000:00:08.1: PCI bridge to [bus 0c-0c]
pci 0000:00:08.1:   bridge window [mem 0xd9d00000-0xd9dfffff]
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.D0A1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.D0B0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.D0C0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.BR15._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.D0A0._PRT]
 pci0000:00: Requesting ACPI _OSC control (0x1d)
 pci0000:00: ACPI _OSC control (0x1d) granted
ACPI: PCI Root Bridge [S0D1] (domain 0000 [bus 40-ff])
pci_root PNP0A08:01: host bridge window [io  0x3000-0xffff]
pci_root PNP0A08:01: host bridge window [mem 0x80000000-0x823fffff]
pci_root PNP0A08:01: host bridge window [mem 0x82c0000000-0xfcffffffff]
PCI host bridge to bus 0000:40
pci_bus 0000:40: root bus resource [io  0x3000-0xffff]
pci_bus 0000:40: root bus resource [mem 0x80000000-0x823fffff]
pci_bus 0000:40: root bus resource [mem 0x82c0000000-0xfcffffffff]
pci 0000:40:07.1: PME# supported from D0 D3hot D3cold
pci 0000:40:07.1: PME# disabled
pci 0000:40:08.1: PME# supported from D0 D3hot D3cold
pci 0000:40:08.1: PME# disabled
pci 0000:41:00.2: reg 18: [mem 0x82100000-0x821fffff]
pci 0000:41:00.2: reg 24: [mem 0x82200000-0x82201fff]
pci 0000:41:00.3: reg 10: [mem 0x82000000-0x820fffff 64bit]
pci 0000:41:00.3: PME# supported from D0 D3hot D3cold
pci 0000:41:00.3: PME# disabled
pci 0000:40:07.1: PCI bridge to [bus 41-41]
pci 0000:40:07.1:   bridge window [mem 0x82000000-0x822fffff]
pci 0000:42:00.2: reg 24: [mem 0x82300000-0x82300fff]
pci 0000:42:00.2: PME# supported from D3hot D3cold
pci 0000:42:00.2: PME# disabled
pci 0000:40:08.1: PCI bridge to [bus 42-42]
pci 0000:40:08.1:   bridge window [mem 0x82300000-0x823fffff]
ACPI: PCI Interrupt Routing Table [\_SB_.S0D1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.S0D1.D1C0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.S0D1.BR31._PRT]
 pci0000:40: Requesting ACPI _OSC control (0x1d)
 pci0000:40: ACPI _OSC control (0x1d) granted
ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
vgaarb: bridge control possible 0000:0a:00.0
SCSI subsystem initialized
libata version 3.00 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
HPET: 3 timers in total, 0 timers will be used for per-cpu timer
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Switching to clocksource hpet
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp 00:00: [io  0x0cf8-0x0cff]
pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
pnp 00:01: [mem 0xf0000000-0xf7ffffff]
pnp 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
pnp 00:02: [mem 0xef800000-0xef8fffff]
pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:03: [mem 0xefd00000-0xefd7ffff]
pnp 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:04: [mem 0xfed00000-0xfed003ff]
pnp 00:04: [irq 0 disabled]
pnp 00:04: [irq 8]
pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
pnp 00:05: [dma 4]
pnp 00:05: [io  0x0000-0x000f]
pnp 00:05: [io  0x0081-0x0083]
pnp 00:05: [io  0x0087]
pnp 00:05: [io  0x0089-0x008b]
pnp 00:05: [io  0x008f]
pnp 00:05: [io  0x00c0-0x00df]
pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
pnp 00:06: [io  0x0070-0x0071]
pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
pnp 00:07: [io  0x0061]
pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
pnp 00:08: [io  0x0000-0xffffffffffffffff disabled]
pnp 00:08: [io  0x02a0-0x02af]
pnp 00:08: [io  0x0230-0x023f]
pnp 00:08: [io  0x0290-0x029f]
pnp 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:09: [io  0x0010-0x001f]
pnp 00:09: [io  0x0022-0x003f]
pnp 00:09: [io  0x0063]
pnp 00:09: [io  0x0065]
pnp 00:09: [io  0x0067-0x006f]
pnp 00:09: [io  0x0072-0x007f]
pnp 00:09: [io  0x0080]
pnp 00:09: [io  0x0084-0x0086]
pnp 00:09: [io  0x0088]
pnp 00:09: [io  0x008c-0x008e]
pnp 00:09: [io  0x0090-0x009f]
pnp 00:09: [io  0x00a2-0x00bf]
pnp 00:09: [io  0x00b1]
pnp 00:09: [io  0x00e0-0x00ef]
pnp 00:09: [io  0x04d0-0x04d1]
pnp 00:09: [io  0x040b]
pnp 00:09: [io  0x04d6]
pnp 00:09: [io  0x0c00-0x0c01]
pnp 00:09: [io  0x0c14]
pnp 00:09: [io  0x0c50-0x0c51]
pnp 00:09: [io  0x0c52]
pnp 00:09: [io  0x0c6c]
pnp 00:09: [io  0x0c6f]
pnp 00:09: [io  0x0cd0-0x0cd1]
pnp 00:09: [io  0x0cd2-0x0cd3]
pnp 00:09: [io  0x0cd4-0x0cd5]
pnp 00:09: [io  0x0cd6-0x0cd7]
pnp 00:09: [io  0x0cd8-0x0cdf]
pnp 00:09: [io  0x0800-0x089f]
pnp 00:09: [io  0x0000-0xffffffffffffffff disabled]
pnp 00:09: [io  0x0b00-0x0b0f]
pnp 00:09: [io  0x0b20-0x0b3f]
pnp 00:09: [io  0x0900-0x090f]
pnp 00:09: [io  0x0910-0x091f]
pnp 00:09: [io  0x0060-0x005f disabled]
pnp 00:09: [io  0x0064-0x0063 disabled]
pnp 00:09: [mem 0xfec00000-0xfec00fff]
pnp 00:09: [mem 0xfec01000-0xfec01fff]
pnp 00:09: [mem 0xfedc0000-0xfedc0fff]
pnp 00:09: [mem 0xfee00000-0xfee00fff]
pnp 00:09: [mem 0xfed80000-0xfed8ffff]
pnp 00:09: [mem 0xfed61000-0xfed70fff]
pnp 00:09: [mem 0xfec10000-0xfec10fff]
pnp 00:09: [mem 0x00000000-0xffffffffffffffff disabled]
pnp 00:09: [mem 0xff000000-0xffffffff]
pnp 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp 00:0a: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
pnp 00:0b: [mem 0xb7b00000-0xb7b7ffff]
pnp 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
system 00:01: [mem 0xf0000000-0xf7ffffff] has been reserved
system 00:02: [mem 0xef800000-0xef8fffff] has been reserved
system 00:03: [mem 0xefd00000-0xefd7ffff] has been reserved
system 00:08: [io  0x02a0-0x02af] has been reserved
system 00:08: [io  0x0230-0x023f] has been reserved
system 00:08: [io  0x0290-0x029f] has been reserved
system 00:09: [io  0x04d0-0x04d1] has been reserved
system 00:09: [io  0x040b] has been reserved
system 00:09: [io  0x04d6] has been reserved
system 00:09: [io  0x0c00-0x0c01] has been reserved
system 00:09: [io  0x0c14] has been reserved
system 00:09: [io  0x0c50-0x0c51] has been reserved
system 00:09: [io  0x0c52] has been reserved
system 00:09: [io  0x0c6c] has been reserved
system 00:09: [io  0x0c6f] has been reserved
system 00:09: [io  0x0cd0-0x0cd1] has been reserved
system 00:09: [io  0x0cd2-0x0cd3] has been reserved
system 00:09: [io  0x0cd4-0x0cd5] has been reserved
system 00:09: [io  0x0cd6-0x0cd7] has been reserved
system 00:09: [io  0x0cd8-0x0cdf] has been reserved
system 00:09: [io  0x0800-0x089f] has been reserved
system 00:09: [io  0x0b00-0x0b0f] has been reserved
system 00:09: [io  0x0b20-0x0b3f] has been reserved
system 00:09: [io  0x0900-0x090f] has been reserved
system 00:09: [io  0x0910-0x091f] has been reserved
system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
system 00:09: [mem 0xfec01000-0xfec01fff] has been reserved
system 00:09: [mem 0xfedc0000-0xfedc0fff] has been reserved
system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
system 00:09: [mem 0xfed80000-0xfed8ffff] has been reserved
system 00:09: [mem 0xfed61000-0xfed70fff] has been reserved
system 00:09: [mem 0xfec10000-0xfec10fff] has been reserved
system 00:09: [mem 0xff000000-0xffffffff] has been reserved
system 00:0b: [mem 0xb7b00000-0xb7b7ffff] has been reserved
pci 0000:02:00.0: PCI bridge to [bus 03-03]
pci 0000:02:00.0:   bridge window [mem 0xd9400000-0xd95fffff]
pci 0000:02:01.0: PCI bridge to [bus 04-04]
pci 0000:02:01.0:   bridge window [mem 0xd9200000-0xd93fffff]
pci 0000:02:02.0: PCI bridge to [bus 05-05]
pci 0000:02:02.0:   bridge window [io  0x2000-0x2fff]
pci 0000:02:02.0:   bridge window [mem 0xd9700000-0xd97fffff]
pci 0000:02:03.0: PCI bridge to [bus 06-06]
pci 0000:02:04.0: PCI bridge to [bus 07-07]
pci 0000:02:09.0: PCI bridge to [bus 08-08]
pci 0000:02:09.0:   bridge window [mem 0xd9600000-0xd96fffff]
pci 0000:01:00.2: PCI bridge to [bus 02-08]
pci 0000:01:00.2:   bridge window [io  0x2000-0x2fff]
pci 0000:01:00.2:   bridge window [mem 0xd9200000-0xd97fffff]
pci 0000:00:01.1: PCI bridge to [bus 01-08]
pci 0000:00:01.1:   bridge window [io  0x2000-0x2fff]
pci 0000:00:01.1:   bridge window [mem 0xd9200000-0xd98fffff]
pci 0000:00:01.2: PCI bridge to [bus 09-09]
pci 0000:00:01.2:   bridge window [mem 0xd9e00000-0xd9efffff]
pci 0000:00:03.1: PCI bridge to [bus 0a-0a]
pci 0000:00:03.1:   bridge window [io  0x1000-0x1fff]
pci 0000:00:03.1:   bridge window [mem 0xd8000000-0xd90fffff]
pci 0000:00:03.1:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
pci 0000:00:07.1: PCI bridge to [bus 0b-0b]
pci 0000:00:07.1:   bridge window [mem 0xd9a00000-0xd9cfffff]
pci 0000:00:08.1: PCI bridge to [bus 0c-0c]
pci 0000:00:08.1:   bridge window [mem 0xd9d00000-0xd9dfffff]
pci 0000:40:07.1: PCI bridge to [bus 41-41]
pci 0000:40:07.1:   bridge window [mem 0x82000000-0x822fffff]
pci 0000:40:08.1: PCI bridge to [bus 42-42]
pci 0000:40:08.1:   bridge window [mem 0x82300000-0x823fffff]
pci 0000:00:01.1: setting latency timer to 64
  alloc irq_desc for 26 on node 0
  alloc kstat_irqs on node 0
pci 0000:01:00.2: PCI INT C -> GSI 26 (level, low) -> IRQ 26
pci 0000:01:00.2: setting latency timer to 64
  alloc irq_desc for 24 on node 0
  alloc kstat_irqs on node 0
pci 0000:02:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
pci 0000:02:00.0: setting latency timer to 64
  alloc irq_desc for 25 on node 0
  alloc kstat_irqs on node 0
pci 0000:02:01.0: PCI INT A -> GSI 25 (level, low) -> IRQ 25
pci 0000:02:01.0: setting latency timer to 64
pci 0000:02:02.0: PCI INT A -> GSI 26 (level, low) -> IRQ 26
pci 0000:02:02.0: setting latency timer to 64
  alloc irq_desc for 27 on node 0
  alloc kstat_irqs on node 0
pci 0000:02:03.0: PCI INT A -> GSI 27 (level, low) -> IRQ 27
pci 0000:02:03.0: setting latency timer to 64
pci 0000:02:04.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
pci 0000:02:04.0: setting latency timer to 64
pci 0000:02:09.0: PCI INT A -> GSI 25 (level, low) -> IRQ 25
pci 0000:02:09.0: setting latency timer to 64
pci 0000:00:01.2: setting latency timer to 64
pci 0000:00:03.1: setting latency timer to 64
  alloc irq_desc for 44 on node 0
  alloc kstat_irqs on node 0
pci 0000:00:07.1: PCI INT A -> GSI 44 (level, low) -> IRQ 44
pci 0000:00:07.1: setting latency timer to 64
  alloc irq_desc for 32 on node 0
  alloc kstat_irqs on node 0
pci 0000:00:08.1: PCI INT A -> GSI 32 (level, low) -> IRQ 32
pci 0000:00:08.1: setting latency timer to 64
  alloc irq_desc for 76 on node -1
  alloc kstat_irqs on node -1
pci 0000:40:07.1: PCI INT A -> GSI 76 (level, low) -> IRQ 76
pci 0000:40:07.1: setting latency timer to 64
  alloc irq_desc for 64 on node -1
  alloc kstat_irqs on node -1
pci 0000:40:08.1: PCI INT A -> GSI 64 (level, low) -> IRQ 64
pci 0000:40:08.1: setting latency timer to 64
pci_bus 0000:00: resource 4 [io  0x0000-0x2fff]
pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7]
pci_bus 0000:00: resource 6 [io  0x03b0-0x03df]
pci_bus 0000:00: resource 7 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 8 [mem 0x000c0000-0x000dffff]
pci_bus 0000:00: resource 9 [mem 0xb8000000-0xd9ffffff]
pci_bus 0000:00: resource 10 [mem 0x880000000-0x82bfffffff]
pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
pci_bus 0000:01: resource 1 [mem 0xd9200000-0xd98fffff]
pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
pci_bus 0000:02: resource 1 [mem 0xd9200000-0xd97fffff]
pci_bus 0000:03: resource 1 [mem 0xd9400000-0xd95fffff]
pci_bus 0000:04: resource 1 [mem 0xd9200000-0xd93fffff]
pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
pci_bus 0000:05: resource 1 [mem 0xd9700000-0xd97fffff]
pci_bus 0000:08: resource 1 [mem 0xd9600000-0xd96fffff]
pci_bus 0000:09: resource 1 [mem 0xd9e00000-0xd9efffff]
pci_bus 0000:0a: resource 0 [io  0x1000-0x1fff]
pci_bus 0000:0a: resource 1 [mem 0xd8000000-0xd90fffff]
pci_bus 0000:0a: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
pci_bus 0000:0b: resource 1 [mem 0xd9a00000-0xd9cfffff]
pci_bus 0000:0c: resource 1 [mem 0xd9d00000-0xd9dfffff]
pci_bus 0000:40: resource 4 [io  0x3000-0xffff]
pci_bus 0000:40: resource 5 [mem 0x80000000-0x823fffff]
pci_bus 0000:40: resource 6 [mem 0x82c0000000-0xfcffffffff]
pci_bus 0000:41: resource 1 [mem 0x82000000-0x822fffff]
pci_bus 0000:42: resource 1 [mem 0x82300000-0x823fffff]
NET: Registered protocol family 2
IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 524288 bind 65536)
TCP reno registered
NET: Registered protocol family 1
pci 0000:01:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
pci 0000:01:00.0: PCI INT A disabled
pci 0000:08:00.0: PCI INT A -> GSI 25 (level, low) -> IRQ 25
pci 0000:08:00.0: PCI INT A disabled
pci 0000:0a:00.0: Boot video device
  alloc irq_desc for 37 on node 0
  alloc kstat_irqs on node 0
pci 0000:0b:00.3: PCI INT C -> GSI 37 (level, low) -> IRQ 37
pci 0000:0b:00.3: PCI INT C disabled
  alloc irq_desc for 69 on node -1
  alloc kstat_irqs on node -1
pci 0000:41:00.3: PCI INT C -> GSI 69 (level, low) -> IRQ 69
pci 0000:41:00.3: PCI INT C disabled
Trying to unpack rootfs image as initramfs...
Freeing initrd memory: 18070k freed
PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000
software IO TLB at phys 0x20000000 - 0x24000000
perf: AMD NB counters detected
perf: AMD L2I counters detected
sha256_ssse3: Using AVX optimized SHA-256 implementation
futex hash table entries: 32768 (order: 9, 2097152 bytes)
audit: initializing netlink socket (disabled)
type=2000 audit(1541695348.612:1): initialized
HugeTLB registered 2 MB page size, pre-allocated 0 pages
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
msgmni has been set to 32768
SELinux:  Registering netfilter hooks
ksign: Installing public key data
Loading keyring
- Added public key 283EE91FE7BCC01A
- User ID: CentOS (Kernel Module GPG key)
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
pcieport 0000:00:01.1: setting latency timer to 64
  alloc irq_desc for 88 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:00:01.1: irq 88 for MSI/MSI-X
pcieport 0000:00:01.2: setting latency timer to 64
  alloc irq_desc for 89 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:00:01.2: irq 89 for MSI/MSI-X
pcieport 0000:00:03.1: setting latency timer to 64
  alloc irq_desc for 90 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:00:03.1: irq 90 for MSI/MSI-X
pcieport 0000:00:07.1: setting latency timer to 64
  alloc irq_desc for 91 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:00:07.1: irq 91 for MSI/MSI-X
pcieport 0000:00:08.1: setting latency timer to 64
  alloc irq_desc for 92 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:00:08.1: irq 92 for MSI/MSI-X
pcieport 0000:01:00.2: setting latency timer to 64
  alloc irq_desc for 93 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:01:00.2: irq 93 for MSI/MSI-X
pcieport 0000:02:00.0: setting latency timer to 64
  alloc irq_desc for 94 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:02:00.0: irq 94 for MSI/MSI-X
pcieport 0000:02:01.0: setting latency timer to 64
  alloc irq_desc for 95 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:02:01.0: irq 95 for MSI/MSI-X
pcieport 0000:02:02.0: setting latency timer to 64
  alloc irq_desc for 96 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:02:02.0: irq 96 for MSI/MSI-X
pcieport 0000:02:03.0: setting latency timer to 64
  alloc irq_desc for 97 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:02:03.0: irq 97 for MSI/MSI-X
pcieport 0000:02:04.0: setting latency timer to 64
  alloc irq_desc for 98 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:02:04.0: irq 98 for MSI/MSI-X
pcieport 0000:02:09.0: setting latency timer to 64
  alloc irq_desc for 99 on node 0
  alloc kstat_irqs on node 0
pcieport 0000:02:09.0: irq 99 for MSI/MSI-X
pcieport 0000:40:07.1: setting latency timer to 64
  alloc irq_desc for 100 on node -1
  alloc kstat_irqs on node -1
pcieport 0000:40:07.1: irq 100 for MSI/MSI-X
pcieport 0000:40:08.1: setting latency timer to 64
  alloc irq_desc for 101 on node -1
  alloc kstat_irqs on node -1
pcieport 0000:40:08.1: irq 101 for MSI/MSI-X
aer 0000:00:01.1:pcie02: service driver aer loaded
aer 0000:00:01.2:pcie02: service driver aer loaded
aer 0000:00:03.1:pcie02: service driver aer loaded
aer 0000:00:07.1:pcie02: service driver aer loaded
aer 0000:00:08.1:pcie02: service driver aer loaded
aer 0000:40:07.1:pcie02: service driver aer loaded
aer 0000:40:08.1:pcie02: service driver aer loaded
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
pciehp: PCI Express Hot Plug Controller Driver version: 0.4
acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
ACPI: Power Button [PWRB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
ACPI: Power Button [PWRF]
ACPI: acpi_idle registered with cpuidle
[Firmware Bug]: No valid trip found
GHES: HEST is not enabled!
Non-volatile memory driver v1.3
Linux agpgart interface v0.103
crash memory driver: version 1.1
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
brd: module loaded
loop: module loaded
input: Macintosh mouse button emulation as /devices/virtual/input/input2
Fixed MDIO Bus: probed
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
uhci_hcd: USB Universal Host Controller Interface driver
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
rtc_cmos 00:06: RTC can wake from S4
rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
cpuidle: using governor ladder
cpuidle: using governor menu
EFI Variables Facility v0.08 2004-May-17
usbcore: registered new interface driver hiddev
usbcore: registered new interface driver usbhid
usbhid: v2.6:USB HID core driver
GRE over IPv4 demultiplexor driver
TCP cubic registered
Initializing XFRM netlink socket
NET: Registered protocol family 17
registered taskstats version 1
rtc_cmos 00:06: setting system clock to 2018-11-08 16:42:30 UTC (1541695350)
Initalizing network drop monitor service
Freeing unused kernel memory: 1340k freed
Write protecting the kernel read-only data: 10240k
Freeing unused kernel memory: 604k freed
Freeing unused kernel memory: 1528k freed
dracut: dracut-004-411.el6
dracut: rd_NO_LUKS: removing cryptoluks activation
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.33.1-ioctl (2015-8-18) initialised: dm-devel@redhat.com
udev: starting version 147
ACPI: WMI: Mapper loaded
[drm] Initialized drm 1.1.0 20060810
MXM: GUID detected in BIOS
  alloc irq_desc for 54 on node 0
  alloc kstat_irqs on node 0
nouveau 0000:0a:00.0: PCI INT A -> GSI 54 (level, low) -> IRQ 54
nouveau 0000:0a:00.0: unknown chipset (132000a1)
nouveau: probe of 0000:0a:00.0 failed with error -12
dracut: Starting plymouth daemon
dracut: rd_NO_MD: removing MD RAID activation
xhci_hcd 0000:01:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
xhci_hcd 0000:01:00.0: setting latency timer to 64
xhci_hcd 0000:01:00.0: xHCI Host Controller
xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
  alloc irq_desc for 102 on node 0
  alloc kstat_irqs on node 0
xhci_hcd 0000:01:00.0: irq 102 for MSI/MSI-X
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: xHCI Host Controller
usb usb1: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb1: SerialNumber: 0000:01:00.0
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 14 ports detected
xhci_hcd 0000:01:00.0: xHCI Host Controller
xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
usb usb2: config 1 interface 0 altsetting 0 endpoint 0x81 has no SuperSpeed companion descriptor
usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: xHCI Host Controller
usb usb2: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb2: SerialNumber: 0000:01:00.0
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 8 ports detected
xhci_hcd 0000:08:00.0: PCI INT A -> GSI 25 (level, low) -> IRQ 25
xhci_hcd 0000:08:00.0: setting latency timer to 64
xhci_hcd 0000:08:00.0: xHCI Host Controller
xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 3
  alloc irq_desc for 103 on node 0
  alloc kstat_irqs on node 0
xhci_hcd 0000:08:00.0: irq 103 for MSI/MSI-X
usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb3: Product: xHCI Host Controller
usb usb3: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb3: SerialNumber: 0000:08:00.0
usb usb3: configuration #1 chosen from 1 choice
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
xhci_hcd 0000:08:00.0: xHCI Host Controller
xhci_hcd 0000:08:00.0: new USB bus registered, assigned bus number 4
usb usb4: config 1 interface 0 altsetting 0 endpoint 0x81 has no SuperSpeed companion descriptor
usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb4: Product: xHCI Host Controller
usb usb4: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb4: SerialNumber: 0000:08:00.0
usb usb4: configuration #1 chosen from 1 choice
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
xhci_hcd 0000:0b:00.3: PCI INT C -> GSI 37 (level, low) -> IRQ 37
xhci_hcd 0000:0b:00.3: setting latency timer to 64
xhci_hcd 0000:0b:00.3: xHCI Host Controller
xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 5
  alloc irq_desc for 104 on node 0
  alloc kstat_irqs on node 0
xhci_hcd 0000:0b:00.3: irq 104 for MSI/MSI-X
usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb5: Product: xHCI Host Controller
usb usb5: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb5: SerialNumber: 0000:0b:00.3
usb usb5: configuration #1 chosen from 1 choice
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 4 ports detected
xhci_hcd 0000:0b:00.3: xHCI Host Controller
xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 6
usb usb6: config 1 interface 0 altsetting 0 endpoint 0x81 has no SuperSpeed companion descriptor
usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb6: Product: xHCI Host Controller
usb usb6: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb6: SerialNumber: 0000:0b:00.3
usb usb6: configuration #1 chosen from 1 choice
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 4 ports detected
xhci_hcd 0000:41:00.3: PCI INT C -> GSI 69 (level, low) -> IRQ 69
xhci_hcd 0000:41:00.3: setting latency timer to 64
xhci_hcd 0000:41:00.3: xHCI Host Controller
xhci_hcd 0000:41:00.3: new USB bus registered, assigned bus number 7
  alloc irq_desc for 105 on node -1
  alloc kstat_irqs on node -1
xhci_hcd 0000:41:00.3: irq 105 for MSI/MSI-X
usb usb7: New USB device found, idVendor=1d6b, idProduct=0002
usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb7: Product: xHCI Host Controller
usb usb7: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb7: SerialNumber: 0000:41:00.3
usb usb7: configuration #1 chosen from 1 choice
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 4 ports detected
xhci_hcd 0000:41:00.3: xHCI Host Controller
xhci_hcd 0000:41:00.3: new USB bus registered, assigned bus number 8
usb usb8: config 1 interface 0 altsetting 0 endpoint 0x81 has no SuperSpeed companion descriptor
usb usb8: New USB device found, idVendor=1d6b, idProduct=0003
usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb8: Product: xHCI Host Controller
usb usb8: Manufacturer: Linux 2.6.32-754.el6.x86_64 xhci_hcd
usb usb8: SerialNumber: 0000:41:00.3
usb usb8: configuration #1 chosen from 1 choice
hub 8-0:1.0: USB hub found
hub 8-0:1.0: 4 ports detected
ahci 0000:01:00.1: version 3.0
ahci 0000:01:00.1: PCI INT B -> GSI 25 (level, low) -> IRQ 25
  alloc irq_desc for 106 on node 0
  alloc kstat_irqs on node 0
ahci 0000:01:00.1: irq 106 for MSI/MSI-X
ahci: SSS flag set, parallel bus scan disabled
ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs apst
ahci 0000:01:00.1: setting latency timer to 64
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
scsi6 : ahci
scsi7 : ahci
ata1: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880100 irq 106
ata2: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880180 irq 106
ata3: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880200 irq 106
ata4: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880280 irq 106
ata5: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880300 irq 106
ata6: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880380 irq 106
ata7: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880400 irq 106
ata8: SATA max UDMA/133 abar m131072@0xd9880000 port 0xd9880480 irq 106
  alloc irq_desc for 42 on node 0
  alloc kstat_irqs on node 0
ahci 0000:0c:00.2: PCI INT B -> GSI 42 (level, low) -> IRQ 42
  alloc irq_desc for 107 on node 0
  alloc kstat_irqs on node 0
ahci 0000:0c:00.2: irq 107 for MSI/MSI-X
ahci 0000:0c:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
ahci 0000:0c:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
ahci 0000:0c:00.2: setting latency timer to 64
scsi8 : ahci
ata9: SATA max UDMA/133 abar m4096@0xd9d08000 port 0xd9d08100 irq 107
  alloc irq_desc for 74 on node -1
  alloc kstat_irqs on node -1
ahci 0000:42:00.2: PCI INT B -> GSI 74 (level, low) -> IRQ 74
  alloc irq_desc for 108 on node -1
  alloc kstat_irqs on node -1
ahci 0000:42:00.2: irq 108 for MSI/MSI-X
ahci 0000:42:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
ahci 0000:42:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
ahci 0000:42:00.2: setting latency timer to 64
scsi9 : ahci
ata10: SATA max UDMA/133 abar m4096@0x82300000 port 0x82300100 irq 108
Refined TSC clocksource calibration: 3393.621 MHz.
Switching to clocksource tsc
usb 1-2: new full speed USB device number 2 using xhci_hcd
ata1: SATA link down (SStatus 0 SControl 300)
ata9: SATA link down (SStatus 0 SControl 300)
ata10: SATA link down (SStatus 0 SControl 300)
usb 1-2: New USB device found, idVendor=0b05, idProduct=1868
usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
usb 1-2: configuration #1 chosen from 1 choice
ata2: SATA link down (SStatus 0 SControl 300)
usb 1-6: new high speed USB device number 3 using xhci_hcd
usb 1-6: New USB device found, idVendor=0e8d, idProduct=1887
usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-6: Product: Portable Super Multi Drive
usb 1-6: Manufacturer: Hitachi-LG Data Storage Inc
usb 1-6: SerialNumber: KZ5D9SG0336        
usb 1-6: configuration #1 chosen from 1 choice
ata3: SATA link down (SStatus 0 SControl 300)
usb 1-10: new full speed USB device number 4 using xhci_hcd
ata4: SATA link down (SStatus 0 SControl 300)
usb 1-10: New USB device found, idVendor=046d, idProduct=c534
usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 1-10: Product: USB Receiver
usb 1-10: Manufacturer: Logitech
usb 1-10: configuration #1 chosen from 1 choice
input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.0/input/input3
generic-usb 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:01:00.0-10/input0
input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.1/0000:01:00.0/usb1/1-10/1-10:1.1/input/input4
generic-usb 0003:046D:C534.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:01:00.0-10/input1
usb 1-11: new full speed USB device number 5 using xhci_hcd
ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata5.00: ATA-8: KINGSTON SNV425S2128GB, D100309a, max UDMA/100
ata5.00: 250069680 sectors, multi 16: LBA48
ata5.00: configured for UDMA/100
scsi 4:0:0:0: Direct-Access     ATA      KINGSTON SNV425S 309a PQ: 0 ANSI: 5
usb 1-11: New USB device found, idVendor=0b05, idProduct=1867
usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-11: Product: AURA Custom Human interface
usb 1-11: Manufacturer: AsusTek Computer Inc.
usb 1-11: SerialNumber: 00000000001A
usb 1-11: configuration #1 chosen from 1 choice
generic-usb 0003:0B05:1867.0003: hiddev97,hidraw2: USB HID v1.11 Device [AsusTek Computer Inc. AURA Custom Human interface] on usb-0000:01:00.0-11/input0
ata6: SATA link down (SStatus 0 SControl 300)
usb 5-4: new low speed USB device number 2 using xhci_hcd
usb 5-4: New USB device found, idVendor=04ca, idProduct=004b
usb 5-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 5-4: Product: USB Keyboard
usb 5-4: Manufacturer: Lite-On Technology Corp.
usb 5-4: configuration #1 chosen from 1 choice
usb 5-4: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
usb 5-4: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
input: Lite-On Technology Corp. USB Keyboard as /devices/pci0000:00/0000:00:07.1/0000:0b:00.3/usb5/5-4/5-4:1.0/input/input5
generic-usb 0003:04CA:004B.0004: input,hidraw3: USB HID v1.10 Keyboard [Lite-On Technology Corp. USB Keyboard] on usb-0000:0b:00.3-4/input0
input: Lite-On Technology Corp. USB Keyboard as /devices/pci0000:00/0000:00:07.1/0000:0b:00.3/usb5/5-4/5-4:1.1/input/input6
generic-usb 0003:04CA:004B.0005: input,hidraw4: USB HID v1.10 Device [Lite-On Technology Corp. USB Keyboard] on usb-0000:0b:00.3-4/input1
ata7: failed to resume link (SControl 0)
ata7: SATA link down (SStatus 0 SControl 0)
ata8: SATA link down (SStatus 0 SControl 330)
  alloc irq_desc for 28 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: PCI INT A -> GSI 28 (level, low) -> IRQ 28
nvme 0000:09:00.0: setting latency timer to 64
  alloc irq_desc for 109 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 109 for MSI/MSI-X
Initializing USB Mass Storage driver...
scsi10 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 3
usb-storage: waiting for device to settle before scanning
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
sd 4:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
sd 4:0:0:0: [sda] Write Protect is off
sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sda: sda1 sda2
sd 4:0:0:0: [sda] Attached SCSI disk
dracut: Scanning devices sda2  for LVM logical volumes vg_srv/lv_swap vg_srv/lv_root
dracut: inactive '/dev/vg_srv/lv_root' [50.00 GiB] inherit
dracut: inactive '/dev/vg_srv/lv_home' [56.83 GiB] inherit
dracut: inactive '/dev/vg_srv/lv_swap' [11.92 GiB] inherit
IRQ 109/nvme0q0: IRQF_DISABLED is not guaranteed on shared IRQs
nvme 0000:09:00.0: irq 109 for MSI/MSI-X
  alloc irq_desc for 110 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 110 for MSI/MSI-X
  alloc irq_desc for 111 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 111 for MSI/MSI-X
  alloc irq_desc for 112 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 112 for MSI/MSI-X
  alloc irq_desc for 113 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 113 for MSI/MSI-X
  alloc irq_desc for 114 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 114 for MSI/MSI-X
  alloc irq_desc for 115 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 115 for MSI/MSI-X
  alloc irq_desc for 116 on node 0
  alloc kstat_irqs on node 0
nvme 0000:09:00.0: irq 116 for MSI/MSI-X
IRQ 109/nvme0q0: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 109/nvme0q1: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 110/nvme0q2: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 111/nvme0q3: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 112/nvme0q4: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 113/nvme0q5: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 114/nvme0q6: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 115/nvme0q7: IRQF_DISABLED is not guaranteed on shared IRQs
IRQ 116/nvme0q8: IRQF_DISABLED is not guaranteed on shared IRQs
 nvme0n1: p1 p2 p3 p4 p5 p6
EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts:
dracut: Mounted root filesystem /dev/mapper/vg_srv-lv_root
dracut: Loading SELinux policy
type=1404 audit(1541695354.814:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
SELinux: 2048 avtab hash slots, 309333 rules.
SELinux: 2048 avtab hash slots, 309333 rules.
SELinux:  9 users, 12 roles, 4215 types, 237 bools, 1 sens, 1024 cats
SELinux:  81 classes, 309333 rules
SELinux:  Completing initialization.
SELinux:  Setting up existing superblocks.
SELinux: initialized (dev dm-0, type ext4), uses xattr
SELinux: initialized (dev usbfs, type usbfs), uses genfs_contexts
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
SELinux: initialized (dev devpts, type devpts), uses transition SIDs
SELinux: initialized (dev inotifyfs, type inotifyfs), uses genfs_contexts
SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
SELinux: initialized (dev proc, type proc), uses genfs_contexts
SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
type=1403 audit(1541695355.224:3): policy loaded auid=4294967295 ses=4294967295
dracut:
dracut: Switching root
usb-storage: device scan complete
scsi 10:0:0:0: CD-ROM            HL-DT-ST DVDRAM GP50NB40  1.00 PQ: 0 ANSI: 0
udev: starting version 147
sd 4:0:0:0: Attached scsi generic sg0 type 0
scsi 10:0:0:0: Attached scsi generic sg1 type 5
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
PTP clock support registered
dca service started, version 1.12.1
igb: Intel(R) Gigabit Ethernet Network Driver - version 5.3.0-k
igb: Copyright (c) 2007-2014 Intel Corporation.
igb 0000:05:00.0: PCI INT A -> GSI 26 (level, low) -> IRQ 26
igb 0000:05:00.0: setting latency timer to 64
  alloc irq_desc for 117 on node 0
  alloc kstat_irqs on node 0
igb 0000:05:00.0: irq 117 for MSI/MSI-X
  alloc irq_desc for 118 on node 0
  alloc kstat_irqs on node 0
igb 0000:05:00.0: irq 118 for MSI/MSI-X
  alloc irq_desc for 119 on node 0
  alloc kstat_irqs on node 0
igb 0000:05:00.0: irq 119 for MSI/MSI-X
  alloc irq_desc for 120 on node 0
  alloc kstat_irqs on node 0
igb 0000:05:00.0: irq 120 for MSI/MSI-X
  alloc irq_desc for 121 on node 0
  alloc kstat_irqs on node 0
igb 0000:05:00.0: irq 121 for MSI/MSI-X
pps pps0: new PPS source ptp0
igb 0000:05:00.0: added PHC on eth0
igb 0000:05:00.0: Intel(R) Gigabit Ethernet Network Connection
igb 0000:05:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 10:7b:44:93:2d:e2
igb 0000:05:00.0: eth0: PBA No: FFFFFF-0FF
igb 0000:05:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
  alloc irq_desc for 55 on node 0
  alloc kstat_irqs on node 0
snd_hda_intel 0000:0a:00.1: PCI INT B -> GSI 55 (level, low) -> IRQ 55
snd_hda_intel 0000:0a:00.1: Disabling MSI
snd_hda_intel 0000:0a:00.1: Handle VGA-switcheroo audio client
snd_hda_intel 0000:0a:00.1: setting latency timer to 64
  alloc irq_desc for 43 on node 0
  alloc kstat_irqs on node 0
snd_hda_intel 0000:0c:00.3: PCI INT C -> GSI 43 (level, low) -> IRQ 43
Bluetooth: Core ver 2.15
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: Generic Bluetooth USB driver ver 0.6
usbcore: registered new interface driver btusb
sr0: scsi3-mmc drive: 24x/62x writer dvd-ram cd/rw xa/form2 cdda tray
Uniform CD-ROM driver Revision: 3.20
sr 10:0:0:0: Attached scsi CD-ROM sr0
input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input7
input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input8
input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input9
input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:0a:00.1/sound/card0/input10
snd_hda_intel 0000:0c:00.3: setting latency timer to 64
sound hdaudioC1D0: autoconfig for ID 1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
sound hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
sound hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
sound hdaudioC1D0:    mono: mono_out=0x0
sound hdaudioC1D0:    dig-out=0x1e/0x0
sound hdaudioC1D0:    inputs:
sound hdaudioC1D0:      Front Mic=0x19
sound hdaudioC1D0:      Rear Mic=0x18
sound hdaudioC1D0:      Line=0x1a
input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input11
input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input12
input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input13
input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input14
input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input15
input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input16
input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0c:00.3/sound/card1/input17
EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts:
SELinux: initialized (dev sda1, type ext4), uses xattr
EXT4-fs (dm-2): mounted filesystem with ordered data mode. Opts:
SELinux: initialized (dev dm-2, type ext4), uses xattr
Adding 12500988k swap on /dev/mapper/vg_srv-lv_swap.  Priority:-1 extents:1 across:12500988k SS
Adding 3999740k swap on /dev/nvme0n1p5.  Priority:-2 extents:1 across:3999740k SS
SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
ip6_tables: (C) 2000-2006 Netfilter Core Team
nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
ip_tables: (C) 2000-2006 Netfilter Core Team
ADDRCONF(NETDEV_UP): eth0: link is not ready
igb 0000:05:00.0: eth0: igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
type=1305 audit(1541695362.846:4): audit_pid=2614 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
eth0: no IPv6 routers present

One thought on “Technical details of a default CentOS 6.10 minimal installation”

Leave a Reply

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