Ubuntu Pastebin

Paste from root at Wed, 18 Nov 2015 04:33:11 +0000

Download as text
   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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.3.0-040300-generic (kernel@gomeisa) (gcc version 5.2.1 20151010 (Ubuntu 5.2.1-22ubuntu2) ) #201511020949 SMP Mon Nov 2 14:50:44 UTC 2015
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.3.0-040300-generic root=UUID=da3285e2-a6f9-4739-b7d5-1b52825858c7 ro nomdmonddf nomdmonisw
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
[    0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 0x340 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000010000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000076651fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000076652000-0x0000000076a51fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000076a52000-0x0000000076b88fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000076b89000-0x0000000076d89fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000076d8a000-0x00000000786bffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000786c0000-0x00000000787bffff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000787c0000-0x00000000788c3fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000788c4000-0x00000000789c3fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000789c4000-0x0000000078a43fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000078a44000-0x000000007ca87fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cab8000-0x000000007caeffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007d2f0000-0x000000007d31bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007d31c000-0x000000007d35afff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007d35b000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.30 by Dell
[    0.000000] efi:  ACPI 2.0=0x789b4000  ACPI=0x789b3000  SMBIOS=0x789b1000  MPS=0x789b0000 
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Dell Inc. PowerEdge R720xd/0H5J4J, BIOS 2.5.2 01/28/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-C7FFF write-protect
[    0.000000]   C8000-D3FFF write-back
[    0.000000]   D4000-EBFFF uncachable
[    0.000000]   EC000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask 3FFF80000000 write-back
[    0.000000]   1 base 000100000000 mask 3FFF00000000 write-back
[    0.000000]   2 base 000200000000 mask 3FFE00000000 write-back
[    0.000000]   3 base 000400000000 mask 3FFC00000000 write-back
[    0.000000]   4 base 000800000000 mask 3FF800000000 write-back
[    0.000000]   5 base 001000000000 mask 3FF000000000 write-back
[    0.000000]   6 base 002000000000 mask 3FE000000000 write-back
[    0.000000]   7 base 004000000000 mask 3FFF80000000 write-back
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x7caf0 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe710-0x000fe71f] mapped at [ffff8800000fe710]
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x06ff2000, 0x06ff2fff] PGTABLE
[    0.000000] BRK [0x06ff3000, 0x06ff3fff] PGTABLE
[    0.000000] BRK [0x06ff4000, 0x06ff4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x407fe00000-0x407fffffff]
[    0.000000]  [mem 0x407fe00000-0x407fffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x4060000000-0x407fdfffff]
[    0.000000]  [mem 0x4060000000-0x407fdfffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x4000000000-0x405fffffff]
[    0.000000]  [mem 0x4000000000-0x405fffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x2000000000-0x3fffffffff]
[    0.000000]  [mem 0x2000000000-0x3fffffffff] page 1G
[    0.000000] init_memory_mapping: [mem 0x00100000-0x76651fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x765fffff] page 2M
[    0.000000]  [mem 0x76600000-0x76651fff] page 4k
[    0.000000] init_memory_mapping: [mem 0x76a52000-0x76b88fff]
[    0.000000]  [mem 0x76a52000-0x76b88fff] page 4k
[    0.000000] BRK [0x06ff5000, 0x06ff5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x76d8a000-0x786bffff]
[    0.000000]  [mem 0x76d8a000-0x76dfffff] page 4k
[    0.000000]  [mem 0x76e00000-0x785fffff] page 2M
[    0.000000]  [mem 0x78600000-0x786bffff] page 4k
[    0.000000] BRK [0x06ff6000, 0x06ff6fff] PGTABLE
[    0.000000] BRK [0x06ff7000, 0x06ff7fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x78a44000-0x7ca87fff]
[    0.000000]  [mem 0x78a44000-0x78bfffff] page 4k
[    0.000000]  [mem 0x78c00000-0x7c9fffff] page 2M
[    0.000000]  [mem 0x7ca00000-0x7ca87fff] page 4k
[    0.000000] init_memory_mapping: [mem 0x7cab8000-0x7caeffff]
[    0.000000]  [mem 0x7cab8000-0x7caeffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x1fffffffff]
[    0.000000]  [mem 0x100000000-0x1fffffffff] page 1G
[    0.000000] RAMDISK: [mem 0x34810000-0x363fffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000789B4000 000024 (v02 DELL  )
[    0.000000] ACPI: XSDT 0x00000000000F0DB8 0000A4 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: FACP 0x000000007D33534C 0000F4 (v03 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: DSDT 0x000000007D31C000 008029 (v01 DELL   PE_SC3   00000001 INTL 20110211)
[    0.000000] ACPI: FACS 0x000000007D337000 000040
[    0.000000] ACPI: FACS 0x000000007D337000 000040
[    0.000000] ACPI: APIC 0x000000007D334478 0001EA (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SPCR 0x000000007D334664 000050 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: HPET 0x000000007D3346B8 000038 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: DM__ 0x000000007D3346F4 000108 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: MCFG 0x000000007D334A10 00003C (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: WD__ 0x000000007D334A50 000134 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SLIC 0x000000007D334B88 000024 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: ERST 0x000000007D3241EC 000270 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: HEST 0x000000007D32445C 000620 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: BERT 0x000000007D32402C 000030 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: EINJ 0x000000007D32405C 000190 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: TCPA 0x000000007D3352E4 000064 (v02 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: PC__ 0x000000007D335274 00006E (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SRAT 0x000000007D334DB0 0004C0 (v01 DELL   PE_SC3   00000001 DELL 00000001)
[    0.000000] ACPI: SSDT 0x000000007D338000 0039F4 (v01 INTEL  PPM RCM  80000001 INTL 20061109)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] SRAT: PXM 1 -> APIC 0x04 -> Node 0
[    0.000000] SRAT: PXM 2 -> APIC 0x24 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x06 -> Node 0
[    0.000000] SRAT: PXM 2 -> APIC 0x26 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x08 -> Node 0
[    0.000000] SRAT: PXM 2 -> APIC 0x28 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x10 -> Node 0
[    0.000000] SRAT: PXM 2 -> APIC 0x30 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x12 -> Node 0
[    0.000000] SRAT: PXM 2 -> APIC 0x32 -> Node 1
[    0.000000] SRAT: PXM 1 -> APIC 0x14 -> Node 0
[    0.000000] SRAT: PXM 2 -> APIC 0x34 -> Node 1
[    0.000000] SRAT: Node 0 PXM 1 [mem 0x00000000-0x207fffffff]
[    0.000000] SRAT: Node 1 PXM 2 [mem 0x2080000000-0x407fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x207fffb000-0x207fffffff]
[    0.000000] NODE_DATA(1) allocated [mem 0x407fff7000-0x407fffbfff]
[    0.000000]  [ffffea0000000000-ffffea0081ffffff] PMD -> [ffff881fffe00000-ffff88207fdfffff] on node 0
[    0.000000]  [ffffea0082000000-ffffea0101ffffff] PMD -> [ffff883fff600000-ffff88407f5fffff] on node 1
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000010000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000010000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000076651fff]
[    0.000000]   node   0: [mem 0x0000000076a52000-0x0000000076b88fff]
[    0.000000]   node   0: [mem 0x0000000076d8a000-0x00000000786bffff]
[    0.000000]   node   0: [mem 0x0000000078a44000-0x000000007ca87fff]
[    0.000000]   node   0: [mem 0x000000007cab8000-0x000000007caeffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.000000]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000010000-0x000000207fffffff]
[    0.000000] On node 0 totalpages: 33538251
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 3851 pages reserved
[    0.000000]   DMA zone: 3984 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7877 pages used for memmap
[    0.000000]   DMA32 zone: 504123 pages, LIFO batch:31
[    0.000000]   Normal zone: 516096 pages used for memmap
[    0.000000]   Normal zone: 33030144 pages, LIFO batch:31
[    0.000000] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.000000] On node 1 totalpages: 33554432
[    0.000000]   Normal zone: 524288 pages used for memmap
[    0.000000]   Normal zone: 33554432 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55
[    0.000000] IOAPIC[2]: apic_id 2, version 32, address 0xfec7f000, GSI 64-87
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 48 CPUs, 36 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x0000ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x76652000-0x76a51fff]
[    0.000000] PM: Registered nosave memory: [mem 0x76b89000-0x76d89fff]
[    0.000000] PM: Registered nosave memory: [mem 0x786c0000-0x787bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x787c0000-0x788c3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x788c4000-0x789c3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x789c4000-0x78a43fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7ca88000-0x7cab7fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7caf0000-0x7d2effff]
[    0.000000] PM: Registered nosave memory: [mem 0x7d2f0000-0x7d31bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x7d31c000-0x7d35afff]
[    0.000000] PM: Registered nosave memory: [mem 0x7d35b000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xffffffff]
[    0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:48 nr_node_ids:2
[    0.000000] PERCPU: Embedded 33 pages/cpu @ffff881fff800000 s97240 r8192 d29736 u262144
[    0.000000] pcpu-alloc: s97240 r8192 d29736 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 02 04 06 08 10 12 14 [0] 16 18 20 22 24 26 28 30 
[    0.000000] pcpu-alloc: [0] 32 34 36 38 40 42 44 46 [1] 01 03 05 07 09 11 13 15 
[    0.000000] pcpu-alloc: [1] 17 19 21 23 25 27 29 31 [1] 33 35 37 39 41 43 45 47 
[    0.000000] Built 2 zonelists in Node order, mobility grouping on.  Total pages: 66040507
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.3.0-040300-generic root=UUID=da3285e2-a6f9-4739-b7d5-1b52825858c7 ro nomdmonddf nomdmonisw
[    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[    0.000000] log_buf_len total cpu_extra contributions: 192512 bytes
[    0.000000] log_buf_len min size: 262144 bytes
[    0.000000] log_buf_len: 524288 bytes
[    0.000000] early log buf free: 247352(94%)
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 263825796K/268370732K available (7904K kernel code, 1248K rwdata, 3900K rodata, 1448K init, 1300K bss, 4544936K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=48.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=48
[    0.000000] NR_IRQS:16640 nr_irqs:1896 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3500.031 MHz processor
[    0.000040] Calibrating delay loop (skipped), value calculated using timer frequency.. 7000.06 BogoMIPS (lpj=14000124)
[    0.000045] pid_max: default: 49152 minimum: 384
[    0.000053] ACPI: Core revision 20150818
[    0.002083] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.004013] Security Framework initialized
[    0.004016] Yama: becoming mindful.
[    0.004024] AppArmor: AppArmor initialized
[    0.014345] Dentry cache hash table entries: 33554432 (order: 16, 268435456 bytes)
[    0.060360] Inode-cache hash table entries: 16777216 (order: 15, 134217728 bytes)
[    0.080778] Mount-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.080972] Mountpoint-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.082266] Initializing cgroup subsys io
[    0.082272] Initializing cgroup subsys memory
[    0.082290] Initializing cgroup subsys devices
[    0.082294] Initializing cgroup subsys freezer
[    0.082297] Initializing cgroup subsys net_cls
[    0.082301] Initializing cgroup subsys perf_event
[    0.082305] Initializing cgroup subsys net_prio
[    0.082308] Initializing cgroup subsys hugetlb
[    0.082312] Initializing cgroup subsys pids
[    0.082344] CPU: Physical Processor ID: 0
[    0.082347] CPU: Processor Core ID: 2
[    0.083011] mce: CPU supports 27 MCE banks
[    0.083043] CPU0: Thermal monitoring enabled (TM1)
[    0.083068] process: using mwait in idle threads
[    0.083072] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.083075] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.083435] Freeing SMP alternatives memory: 28K (ffffffff81ea4000 - ffffffff81eab000)
[    0.090349] ftrace: allocating 31162 entries in 122 pages
[    0.101566] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.101640] Switched APIC routing to physical flat.
[    0.102242] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.141993] TSC deadline timer enabled
[    0.142002] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2643 v2 @ 3.50GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    0.142024] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.142043] ... version:                3
[    0.142045] ... bit width:              48
[    0.142047] ... generic registers:      8
[    0.142050] ... value mask:             0000ffffffffffff
[    0.142052] ... max period:             0000ffffffffffff
[    0.142054] ... fixed-purpose events:   3
[    0.142056] ... event mask:             00000007000000ff
[    0.143066] x86: Booting SMP configuration:
[    0.143069] .... node  #1, CPUs:        #1
[    0.256240] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.

[    0.256326] .... node  #0, CPUs:    #2
[    0.272115] .... node  #1, CPUs:    #3
[    0.287701] .... node  #0, CPUs:    #4
[    0.301665] .... node  #1, CPUs:    #5
[    0.317270] .... node  #0, CPUs:    #6
[    0.331224] .... node  #1, CPUs:    #7
[    0.346800] .... node  #0, CPUs:    #8
[    0.360746] .... node  #1, CPUs:    #9
[    0.376304] .... node  #0, CPUs:   #10
[    0.390250] .... node  #1, CPUs:   #11
[    0.405706] x86: Booted up 2 nodes, 12 CPUs
[    0.405711] smpboot: Total of 12 processors activated (84009.83 BogoMIPS)
[    0.437330] devtmpfs: initialized
[    0.437391] Using 2GB memory block size for large-memory system
[    0.439609] evm: security.selinux
[    0.439612] evm: security.SMACK64
[    0.439614] evm: security.SMACK64EXEC
[    0.439616] evm: security.SMACK64TRANSMUTE
[    0.439618] evm: security.SMACK64MMAP
[    0.439620] evm: security.ima
[    0.439622] evm: security.capability
[    0.439696] PM: Registering ACPI NVS region [mem 0x76652000-0x76a51fff] (4194304 bytes)
[    0.439736] PM: Registering ACPI NVS region [mem 0x788c4000-0x789c3fff] (1048576 bytes)
[    0.439854] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.440036] pinctrl core: initialized pinctrl subsystem
[    0.440152] RTC time:  4:28:43, date: 11/18/15
[    0.441001] NET: Registered protocol family 16
[    0.464978] cpuidle: using governor ladder
[    0.477003] cpuidle: using governor menu
[    0.477008] PCCT header not found.
[    0.477105] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.477109] ACPI: bus type PCI registered
[    0.477112] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.477201] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.477207] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.477218] PCI: Using configuration type 1 for base access
[    0.477629] PCI: Dell System detected, enabling pci=bfsort.
[    0.480522] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.480537] perf_event_intel: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.493625] ACPI: Added _OSI(Module Device)
[    0.493628] ACPI: Added _OSI(Processor Device)
[    0.493630] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.493633] ACPI: Added _OSI(Processor Aggregator Device)
[    0.494639] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.495861] ACPI: Interpreter enabled
[    0.495867] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150818/hwxface-580)
[    0.495873] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150818/hwxface-580)
[    0.495878] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20150818/hwxface-580)
[    0.495887] ACPI: (supports S0 S4 S5)
[    0.495890] ACPI: Using IOAPIC for interrupt routing
[    0.495987] HEST: Table parsing has been initialized.
[    0.495991] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.499759] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3d])
[    0.499766] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.499822] acpi PNP0A08:00: PCIe AER handled by firmware
[    0.499920] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.499925] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.500451] PCI host bridge to bus 0000:00
[    0.500456] pci_bus 0000:00: root bus resource [bus 00-3d]
[    0.500459] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.500462] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.500465] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.500467] pci_bus 0000:00: root bus resource [io  0x0d00-0x1fff window]
[    0.500470] pci_bus 0000:00: root bus resource [io  0xe000-0xffff window]
[    0.500473] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.500478] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window]
[    0.500482] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.500496] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    0.500549] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.500600] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    0.500656] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.500729] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    0.500785] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.500864] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    0.500920] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    0.500975] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    0.501034] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.501113] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[    0.501133] pci 0000:00:04.0: reg 0x10: [mem 0xdc0dc000-0xdc0dffff 64bit]
[    0.501215] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[    0.501234] pci 0000:00:04.1: reg 0x10: [mem 0xdc0e0000-0xdc0e3fff 64bit]
[    0.501312] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[    0.501331] pci 0000:00:04.2: reg 0x10: [mem 0xdc0e4000-0xdc0e7fff 64bit]
[    0.501407] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[    0.501425] pci 0000:00:04.3: reg 0x10: [mem 0xdc0e8000-0xdc0ebfff 64bit]
[    0.501502] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[    0.501520] pci 0000:00:04.4: reg 0x10: [mem 0xdc0ec000-0xdc0effff 64bit]
[    0.501596] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[    0.501614] pci 0000:00:04.5: reg 0x10: [mem 0xdc0f0000-0xdc0f3fff 64bit]
[    0.501691] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[    0.501710] pci 0000:00:04.6: reg 0x10: [mem 0xdc0f4000-0xdc0f7fff 64bit]
[    0.501788] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[    0.501807] pci 0000:00:04.7: reg 0x10: [mem 0xdc0f8000-0xdc0fbfff 64bit]
[    0.501881] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    0.501960] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    0.502045] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    0.502117] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    0.502165] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    0.502188] pci 0000:00:16.0: reg 0x10: [mem 0xdc0fc000-0xdc0fc00f 64bit]
[    0.502230] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.502272] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000
[    0.502295] pci 0000:00:16.1: reg 0x10: [mem 0xdc0fd000-0xdc0fd00f 64bit]
[    0.502337] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    0.502389] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    0.502414] pci 0000:00:1a.0: reg 0x10: [mem 0xdc0fe000-0xdc0fe3ff]
[    0.502473] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.502520] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    0.502579] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.502641] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    0.502702] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.502752] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400
[    0.502812] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.502860] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    0.502885] pci 0000:00:1d.0: reg 0x10: [mem 0xdc0ff000-0xdc0ff3ff]
[    0.502944] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.502987] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.503060] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    0.503252] pci 0000:01:00.0: [8086:1528] type 00 class 0x020000
[    0.503273] pci 0000:01:00.0: reg 0x10: [mem 0xd5000000-0xd51fffff 64bit pref]
[    0.503292] pci 0000:01:00.0: reg 0x20: [mem 0xd55f8000-0xd55fbfff 64bit pref]
[    0.503297] pci 0000:01:00.0: reg 0x30: [mem 0xd8000000-0xd807ffff pref]
[    0.503321] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.503345] pci 0000:01:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref]
[    0.503347] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs)
[    0.503362] pci 0000:01:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref]
[    0.503363] pci 0000:01:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs)
[    0.503535] pci 0000:01:00.1: [8086:1528] type 00 class 0x020000
[    0.503556] pci 0000:01:00.1: reg 0x10: [mem 0xd5200000-0xd53fffff 64bit pref]
[    0.503573] pci 0000:01:00.1: reg 0x20: [mem 0xd55fc000-0xd55fffff 64bit pref]
[    0.503579] pci 0000:01:00.1: reg 0x30: [mem 0xd8000000-0xd807ffff pref]
[    0.503603] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    0.503623] pci 0000:01:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit pref]
[    0.503624] pci 0000:01:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR0 for 64 VFs)
[    0.503639] pci 0000:01:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit pref]
[    0.503640] pci 0000:01:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit pref] (contains BAR3 for 64 VFs)
[    0.509129] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.509135] pci 0000:00:01.0:   bridge window [mem 0xd8000000-0xd87fffff]
[    0.509139] pci 0000:00:01.0:   bridge window [mem 0xd5000000-0xd55fffff 64bit pref]
[    0.509170] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.509214] pci 0000:02:00.0: [1000:005b] type 00 class 0x010400
[    0.509232] pci 0000:02:00.0: reg 0x10: [io  0xfc00-0xfcff]
[    0.509238] pci 0000:02:00.0: reg 0x14: [mem 0xd97fc000-0xd97fffff 64bit]
[    0.509245] pci 0000:02:00.0: reg 0x1c: [mem 0xd9780000-0xd97bffff 64bit]
[    0.509253] pci 0000:02:00.0: reg 0x30: [mem 0xd8800000-0xd881ffff pref]
[    0.509273] pci 0000:02:00.0: supports D1 D2
[    0.517139] pci 0000:00:02.2: PCI bridge to [bus 02]
[    0.517159] pci 0000:00:02.2:   bridge window [io  0xf000-0xffff]
[    0.517162] pci 0000:00:02.2:   bridge window [mem 0xd8800000-0xd97fffff]
[    0.517199] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.517243] pci 0000:00:11.0: PCI bridge to [bus 05]
[    0.517288] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    0.517357] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000
[    0.517398] pci 0000:07:00.0: reg 0x10: [mem 0xda680000-0xda6fffff]
[    0.517432] pci 0000:07:00.0: reg 0x1c: [mem 0xda7f8000-0xda7fbfff]
[    0.517466] pci 0000:07:00.0: reg 0x30: [mem 0xd9800000-0xd987ffff pref]
[    0.517528] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    0.517628] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000
[    0.517669] pci 0000:07:00.1: reg 0x10: [mem 0xda700000-0xda77ffff]
[    0.517705] pci 0000:07:00.1: reg 0x1c: [mem 0xda7fc000-0xda7fffff]
[    0.517739] pci 0000:07:00.1: reg 0x30: [mem 0xd9800000-0xd987ffff pref]
[    0.517797] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    0.525170] pci 0000:00:1c.4: PCI bridge to [bus 07]
[    0.525191] pci 0000:00:1c.4:   bridge window [mem 0xd9800000-0xda7fffff]
[    0.525540] pci 0000:08:00.0: [1912:0013] type 01 class 0x060400
[    0.527729] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
[    0.533279] pci 0000:00:1c.7: PCI bridge to [bus 08-0c]
[    0.533286] pci 0000:00:1c.7:   bridge window [mem 0xda800000-0xdbffffff]
[    0.533291] pci 0000:00:1c.7:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.534457] pci 0000:09:00.0: [1912:0013] type 01 class 0x060400
[    0.537004] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.537786] pci 0000:09:01.0: [1912:0013] type 01 class 0x060400
[    0.540454] pci 0000:09:01.0: PME# supported from D0 D3hot D3cold
[    0.542577] pci 0000:08:00.0: PCI bridge to [bus 09-0c]
[    0.542770] pci 0000:08:00.0:   bridge window [mem 0xda800000-0xdbffffff]
[    0.542896] pci 0000:08:00.0:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.544108] pci 0000:0a:00.0: [1912:0012] type 01 class 0x060400
[    0.547522] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.547739] pci 0000:09:00.0:   bridge window [mem 0xda800000-0xdb7fffff]
[    0.547884] pci 0000:09:00.0:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.548964] pci 0000:0b:00.0: [102b:0534] type 00 class 0x030000
[    0.549635] pci 0000:0b:00.0: reg 0x10: [mem 0xd4000000-0xd4ffffff pref]
[    0.549896] pci 0000:0b:00.0: reg 0x14: [mem 0xdb7fc000-0xdb7fffff]
[    0.550157] pci 0000:0b:00.0: reg 0x18: [mem 0xda800000-0xdaffffff]
[    0.553841] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.554065] pci 0000:0a:00.0:   bridge window [mem 0xda800000-0xdb7fffff]
[    0.554210] pci 0000:0a:00.0:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.555450] pci 0000:09:01.0: PCI bridge to [bus 0c]
[    0.555669] pci 0000:09:01.0:   bridge window [mem 0xdbf00000-0xdbffffff]
[    0.556841] pci 0000:00:1e.0: PCI bridge to [bus 0d] (subtractive decode)
[    0.556850] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    0.556851] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    0.556852] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    0.556855] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x1fff window] (subtractive decode)
[    0.556857] pci 0000:00:1e.0:   bridge window [io  0xe000-0xffff window] (subtractive decode)
[    0.556860] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.556861] pci 0000:00:1e.0:   bridge window [mem 0xd4000000-0xdfffffff window] (subtractive decode)
[    0.556862] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode)
[    0.556907] pci_bus 0000:00: on NUMA node 0
[    0.557870] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7e])
[    0.557875] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.557928] acpi PNP0A08:01: PCIe AER handled by firmware
[    0.558026] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.558030] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.558543] PCI host bridge to bus 0000:40
[    0.558546] pci_bus 0000:40: root bus resource [bus 40-7e]
[    0.558549] pci_bus 0000:40: root bus resource [io  0x2000-0x3fff window]
[    0.558552] pci_bus 0000:40: root bus resource [io  0x4000-0x5fff window]
[    0.558554] pci_bus 0000:40: root bus resource [io  0x6000-0x7fff window]
[    0.558557] pci_bus 0000:40: root bus resource [io  0x8000-0x9fff window]
[    0.558562] pci_bus 0000:40: root bus resource [io  0xa000-0xbfff window]
[    0.558565] pci_bus 0000:40: root bus resource [io  0xc000-0xdfff window]
[    0.558568] pci_bus 0000:40: root bus resource [mem 0xcc000000-0xd3ffffff window]
[    0.558582] pci 0000:40:01.0: [8086:0e02] type 01 class 0x060400
[    0.558647] pci 0000:40:01.0: PME# supported from D0 D3hot D3cold
[    0.558728] pci 0000:40:02.0: [8086:0e04] type 01 class 0x060400
[    0.558792] pci 0000:40:02.0: PME# supported from D0 D3hot D3cold
[    0.558866] pci 0000:40:03.0: [8086:0e08] type 01 class 0x060400
[    0.558931] pci 0000:40:03.0: PME# supported from D0 D3hot D3cold
[    0.559001] pci 0000:40:03.2: [8086:0e0a] type 01 class 0x060400
[    0.559066] pci 0000:40:03.2: PME# supported from D0 D3hot D3cold
[    0.559140] pci 0000:40:04.0: [8086:0e20] type 00 class 0x088000
[    0.559162] pci 0000:40:04.0: reg 0x10: [mem 0xd13e0000-0xd13e3fff 64bit]
[    0.559242] pci 0000:40:04.1: [8086:0e21] type 00 class 0x088000
[    0.559264] pci 0000:40:04.1: reg 0x10: [mem 0xd13e4000-0xd13e7fff 64bit]
[    0.559344] pci 0000:40:04.2: [8086:0e22] type 00 class 0x088000
[    0.559365] pci 0000:40:04.2: reg 0x10: [mem 0xd13e8000-0xd13ebfff 64bit]
[    0.559444] pci 0000:40:04.3: [8086:0e23] type 00 class 0x088000
[    0.559466] pci 0000:40:04.3: reg 0x10: [mem 0xd13ec000-0xd13effff 64bit]
[    0.559545] pci 0000:40:04.4: [8086:0e24] type 00 class 0x088000
[    0.559566] pci 0000:40:04.4: reg 0x10: [mem 0xd13f0000-0xd13f3fff 64bit]
[    0.559646] pci 0000:40:04.5: [8086:0e25] type 00 class 0x088000
[    0.559667] pci 0000:40:04.5: reg 0x10: [mem 0xd13f4000-0xd13f7fff 64bit]
[    0.559747] pci 0000:40:04.6: [8086:0e26] type 00 class 0x088000
[    0.559769] pci 0000:40:04.6: reg 0x10: [mem 0xd13f8000-0xd13fbfff 64bit]
[    0.559850] pci 0000:40:04.7: [8086:0e27] type 00 class 0x088000
[    0.559872] pci 0000:40:04.7: reg 0x10: [mem 0xd13fc000-0xd13fffff 64bit]
[    0.559952] pci 0000:40:05.0: [8086:0e28] type 00 class 0x088000
[    0.560040] pci 0000:40:05.2: [8086:0e2a] type 00 class 0x088000
[    0.560294] pci 0000:41:00.0: [15b3:1003] type 00 class 0x028000
[    0.560681] pci 0000:41:00.0: reg 0x10: [mem 0xd0f00000-0xd0ffffff 64bit]
[    0.560836] pci 0000:41:00.0: reg 0x18: [mem 0xcc000000-0xcc7fffff 64bit pref]
[    0.561122] pci 0000:41:00.0: reg 0x30: [mem 0xd0000000-0xd00fffff pref]
[    0.569509] pci 0000:40:01.0: PCI bridge to [bus 41]
[    0.569516] pci 0000:40:01.0:   bridge window [mem 0xd0000000-0xd0ffffff]
[    0.569520] pci 0000:40:01.0:   bridge window [mem 0xcc000000-0xcc7fffff 64bit pref]
[    0.569564] pci 0000:42:00.0: [1344:5161] type 00 class 0x018000
[    0.569593] pci 0000:42:00.0: reg 0x18: [mem 0xd10fe000-0xd10fefff]
[    0.569599] pci 0000:42:00.0: reg 0x1c: [mem 0xd10ff000-0xd10fffff]
[    0.569605] pci 0000:42:00.0: reg 0x20: [io  0xdcf0-0xdcff]
[    0.569612] pci 0000:42:00.0: reg 0x24: [mem 0xd10fc000-0xd10fdfff]
[    0.577483] pci 0000:40:02.0: PCI bridge to [bus 42]
[    0.577504] pci 0000:40:02.0:   bridge window [io  0xd000-0xdfff]
[    0.577507] pci 0000:40:02.0:   bridge window [mem 0xd1000000-0xd10fffff]
[    0.577554] pci 0000:43:00.0: [1344:5161] type 00 class 0x018000
[    0.577583] pci 0000:43:00.0: reg 0x18: [mem 0xd11fe000-0xd11fefff]
[    0.577589] pci 0000:43:00.0: reg 0x1c: [mem 0xd11ff000-0xd11fffff]
[    0.577596] pci 0000:43:00.0: reg 0x20: [io  0xccf0-0xccff]
[    0.577602] pci 0000:43:00.0: reg 0x24: [mem 0xd11fc000-0xd11fdfff]
[    0.585500] pci 0000:40:03.0: PCI bridge to [bus 43]
[    0.585523] pci 0000:40:03.0:   bridge window [io  0xc000-0xcfff]
[    0.585525] pci 0000:40:03.0:   bridge window [mem 0xd1100000-0xd11fffff]
[    0.585573] pci 0000:44:00.0: [1344:5161] type 00 class 0x018000
[    0.585602] pci 0000:44:00.0: reg 0x18: [mem 0xd12fe000-0xd12fefff]
[    0.585608] pci 0000:44:00.0: reg 0x1c: [mem 0xd12ff000-0xd12fffff]
[    0.585614] pci 0000:44:00.0: reg 0x20: [io  0xbcf0-0xbcff]
[    0.585620] pci 0000:44:00.0: reg 0x24: [mem 0xd12fc000-0xd12fdfff]
[    0.593523] pci 0000:40:03.2: PCI bridge to [bus 44]
[    0.593546] pci 0000:40:03.2:   bridge window [io  0xb000-0xbfff]
[    0.593550] pci 0000:40:03.2:   bridge window [mem 0xd1200000-0xd12fffff]
[    0.593578] pci_bus 0000:40: on NUMA node 1
[    0.593624] ACPI: PCI Root Bridge [P0B1] (domain 0000 [bus 3f])
[    0.593628] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.593681] acpi PNP0A08:02: PCIe AER handled by firmware
[    0.593779] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.593783] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.593832] PCI host bridge to bus 0000:3f
[    0.593835] pci_bus 0000:3f: root bus resource [bus 3f]
[    0.593842] pci 0000:3f:08.0: [8086:0e80] type 00 class 0x088000
[    0.593884] pci 0000:3f:09.0: [8086:0e90] type 00 class 0x088000
[    0.593923] pci 0000:3f:0a.0: [8086:0ec0] type 00 class 0x088000
[    0.593958] pci 0000:3f:0a.1: [8086:0ec1] type 00 class 0x088000
[    0.593991] pci 0000:3f:0a.2: [8086:0ec2] type 00 class 0x088000
[    0.594024] pci 0000:3f:0a.3: [8086:0ec3] type 00 class 0x088000
[    0.594058] pci 0000:3f:0b.0: [8086:0e1e] type 00 class 0x088000
[    0.594090] pci 0000:3f:0b.3: [8086:0e1f] type 00 class 0x088000
[    0.594125] pci 0000:3f:0c.0: [8086:0ee0] type 00 class 0x088000
[    0.594157] pci 0000:3f:0c.1: [8086:0ee2] type 00 class 0x088000
[    0.594190] pci 0000:3f:0c.2: [8086:0ee4] type 00 class 0x088000
[    0.594223] pci 0000:3f:0c.3: [8086:0ee6] type 00 class 0x088000
[    0.594256] pci 0000:3f:0c.4: [8086:0ee8] type 00 class 0x088000
[    0.594289] pci 0000:3f:0d.0: [8086:0ee1] type 00 class 0x088000
[    0.594321] pci 0000:3f:0d.1: [8086:0ee3] type 00 class 0x088000
[    0.594354] pci 0000:3f:0d.2: [8086:0ee5] type 00 class 0x088000
[    0.594387] pci 0000:3f:0d.3: [8086:0ee7] type 00 class 0x088000
[    0.594419] pci 0000:3f:0d.4: [8086:0ee9] type 00 class 0x088000
[    0.594453] pci 0000:3f:0e.0: [8086:0ea0] type 00 class 0x088000
[    0.594487] pci 0000:3f:0e.1: [8086:0e30] type 00 class 0x110100
[    0.594525] pci 0000:3f:0f.0: [8086:0ea8] type 00 class 0x088000
[    0.594568] pci 0000:3f:0f.1: [8086:0e71] type 00 class 0x088000
[    0.594610] pci 0000:3f:0f.2: [8086:0eaa] type 00 class 0x088000
[    0.594653] pci 0000:3f:0f.3: [8086:0eab] type 00 class 0x088000
[    0.594696] pci 0000:3f:0f.4: [8086:0eac] type 00 class 0x088000
[    0.594738] pci 0000:3f:0f.5: [8086:0ead] type 00 class 0x088000
[    0.594783] pci 0000:3f:10.0: [8086:0eb0] type 00 class 0x088000
[    0.594829] pci 0000:3f:10.1: [8086:0eb1] type 00 class 0x088000
[    0.594872] pci 0000:3f:10.2: [8086:0eb2] type 00 class 0x088000
[    0.594920] pci 0000:3f:10.3: [8086:0eb3] type 00 class 0x088000
[    0.594963] pci 0000:3f:10.4: [8086:0eb4] type 00 class 0x088000
[    0.595007] pci 0000:3f:10.5: [8086:0eb5] type 00 class 0x088000
[    0.595049] pci 0000:3f:10.7: [8086:0eb7] type 00 class 0x088000
[    0.595091] pci 0000:3f:13.0: [8086:0e1d] type 00 class 0x088000
[    0.595123] pci 0000:3f:13.1: [8086:0e34] type 00 class 0x110100
[    0.595156] pci 0000:3f:13.4: [8086:0e81] type 00 class 0x088000
[    0.595189] pci 0000:3f:13.5: [8086:0e36] type 00 class 0x110100
[    0.595223] pci 0000:3f:16.0: [8086:0ec8] type 00 class 0x088000
[    0.595255] pci 0000:3f:16.1: [8086:0ec9] type 00 class 0x088000
[    0.595287] pci 0000:3f:16.2: [8086:0eca] type 00 class 0x088000
[    0.595326] pci_bus 0000:3f: on NUMA node 0
[    0.595358] ACPI: PCI Root Bridge [P1B1] (domain 0000 [bus 7f])
[    0.595362] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.595415] acpi PNP0A08:03: PCIe AER handled by firmware
[    0.595511] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    0.595515] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.595550] PCI host bridge to bus 0000:7f
[    0.595553] pci_bus 0000:7f: root bus resource [bus 7f]
[    0.595561] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[    0.595611] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[    0.595656] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[    0.595696] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[    0.595734] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[    0.595773] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[    0.595813] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[    0.595848] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[    0.595885] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[    0.595921] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[    0.595959] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[    0.595996] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[    0.596032] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[    0.596070] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[    0.596106] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[    0.596143] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[    0.596180] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[    0.596218] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[    0.596257] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[    0.596307] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[    0.596358] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[    0.596408] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[    0.596458] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[    0.596508] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[    0.596558] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[    0.596608] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[    0.596659] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[    0.596710] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[    0.596760] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[    0.596813] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[    0.596865] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[    0.596917] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[    0.596971] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[    0.597022] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[    0.597060] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[    0.597101] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[    0.597141] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[    0.597181] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[    0.597218] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[    0.597254] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[    0.597298] pci_bus 0000:7f: on NUMA node 1
[    0.597403] ACPI: PCI Interrupt Link [LK00] (IRQs 3 4 5 6 7 11 14 *15)
[    0.597444] ACPI: PCI Interrupt Link [LK01] (IRQs 3 4 5 6 7 11 *14 15)
[    0.597482] ACPI: PCI Interrupt Link [LK02] (IRQs 3 4 5 *6 7 11 14 15)
[    0.597526] ACPI: PCI Interrupt Link [LK03] (IRQs 3 4 5 6 7 *11 14 15)
[    0.597564] ACPI: PCI Interrupt Link [LK04] (IRQs 3 4 *5 6 7 11 14 15)
[    0.597602] ACPI: PCI Interrupt Link [LK05] (IRQs 3 4 5 6 7 11 *14 15)
[    0.597640] ACPI: PCI Interrupt Link [LK06] (IRQs 3 4 5 *6 7 11 14 15)
[    0.597677] ACPI: PCI Interrupt Link [LK07] (IRQs 3 4 5 6 7 11 *14 15)
[    0.597719] ACPI: Enabled 3 GPEs in block 00 to 3F
[    0.597936] vgaarb: setting as boot device: PCI:0000:0b:00.0
[    0.597939] vgaarb: device added: PCI:0000:0b:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.597950] vgaarb: loaded
[    0.597953] vgaarb: bridge control possible 0000:0b:00.0
[    0.598130] SCSI subsystem initialized
[    0.598188] libata version 3.00 loaded.
[    0.598209] ACPI: bus type USB registered
[    0.598225] usbcore: registered new interface driver usbfs
[    0.598233] usbcore: registered new interface driver hub
[    0.598283] usbcore: registered new device driver usb
[    0.598491] PCI: Using ACPI for IRQ routing
[    0.603033] PCI: pci_cache_line_size set to 64 bytes
[    0.603549] e820: reserve RAM buffer [mem 0x76652000-0x77ffffff]
[    0.603550] e820: reserve RAM buffer [mem 0x76b89000-0x77ffffff]
[    0.603551] e820: reserve RAM buffer [mem 0x786c0000-0x7bffffff]
[    0.603552] e820: reserve RAM buffer [mem 0x7ca88000-0x7fffffff]
[    0.603553] e820: reserve RAM buffer [mem 0x7caf0000-0x7fffffff]
[    0.603704] NetLabel: Initializing
[    0.603707] NetLabel:  domain hash size = 128
[    0.603709] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.603721] NetLabel:  unlabeled traffic allowed by default
[    0.603778] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.603783] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.605863] clocksource: Switched to clocksource hpet
[    0.612365] AppArmor: AppArmor Filesystem Enabled
[    0.612404] pnp: PnP ACPI init
[    0.612542] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.612565] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.612695] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.612813] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.613107] system 00:04: [io  0x0800-0x087f] could not be reserved
[    0.613111] system 00:04: [io  0x0880-0x08ff] has been reserved
[    0.613113] system 00:04: [io  0x0900-0x091f] has been reserved
[    0.613116] system 00:04: [io  0x0920-0x0923] has been reserved
[    0.613119] system 00:04: [io  0x0924] has been reserved
[    0.613122] system 00:04: [io  0x0370-0x0377] has been reserved
[    0.613125] system 00:04: [io  0x0ca0-0x0ca7] has been reserved
[    0.613127] system 00:04: [io  0x0ca9-0x0cab] has been reserved
[    0.613130] system 00:04: [io  0x0cad-0x0caf] has been reserved
[    0.613133] system 00:04: [io  0x0cb0-0x0cbf] has been reserved
[    0.613136] system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.613189] system 00:05: [io  0x0ca8] has been reserved
[    0.613192] system 00:05: [io  0x0cac] has been reserved
[    0.613195] system 00:05: Plug and Play ACPI device, IDs IPI0001 PNP0c01 (active)
[    0.613495] system 00:06: [mem 0xe0000000-0xe3efffff] has been reserved
[    0.613498] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.613602] system 00:07: [mem 0xe4000000-0xe7ffffff] has been reserved
[    0.613606] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.613652] system 00:08: [mem 0xe3f00000-0xe3ffffff] has been reserved
[    0.613655] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.613678] pnp 00:09: disabling [mem 0x00000000-0x00001fff] because it overlaps 0000:01:00.0 BAR 7 [mem 0x00000000-0x000fffff 64bit pref]
[    0.613683] pnp 00:09: disabling [mem 0x00000000-0x00001fff disabled] because it overlaps 0000:01:00.0 BAR 10 [mem 0x00000000-0x000fffff 64bit pref]
[    0.613688] pnp 00:09: disabling [mem 0x00000000-0x00001fff disabled] because it overlaps 0000:01:00.1 BAR 7 [mem 0x00000000-0x000fffff 64bit pref]
[    0.613693] pnp 00:09: disabling [mem 0x00000000-0x00001fff disabled] because it overlaps 0000:01:00.1 BAR 10 [mem 0x00000000-0x000fffff 64bit pref]
[    0.613725] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.613829] pnp: PnP ACPI: found 10 devices
[    0.619712] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.619723] pci 0000:01:00.1: can't claim BAR 6 [mem 0xd8000000-0xd807ffff pref]: address conflict with 0000:01:00.0 [mem 0xd8000000-0xd807ffff pref]
[    0.619729] pci 0000:07:00.1: can't claim BAR 6 [mem 0xd9800000-0xd987ffff pref]: address conflict with 0000:07:00.0 [mem 0xd9800000-0xd987ffff pref]
[    0.619737] pci_bus 0000:00: max bus depth: 4 pci_try_num: 5
[    0.620725] pci 0000:01:00.1: BAR 6: assigned [mem 0xd8080000-0xd80fffff pref]
[    0.620730] pci 0000:01:00.0: BAR 7: assigned [mem 0xd5400000-0xd54fffff 64bit pref]
[    0.620739] pci 0000:01:00.0: BAR 10: assigned [mem 0xd8100000-0xd81fffff 64bit pref]
[    0.620748] pci 0000:01:00.1: BAR 7: assigned [mem 0xd8200000-0xd82fffff 64bit pref]
[    0.620756] pci 0000:01:00.1: BAR 10: assigned [mem 0xd8300000-0xd83fffff 64bit pref]
[    0.620765] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.620770] pci 0000:00:01.0:   bridge window [mem 0xd8000000-0xd87fffff]
[    0.620774] pci 0000:00:01.0:   bridge window [mem 0xd5000000-0xd55fffff 64bit pref]
[    0.620781] pci 0000:00:02.0: PCI bridge to [bus 03]
[    0.620789] pci 0000:00:02.2: PCI bridge to [bus 02]
[    0.620793] pci 0000:00:02.2:   bridge window [io  0xf000-0xffff]
[    0.620798] pci 0000:00:02.2:   bridge window [mem 0xd8800000-0xd97fffff]
[    0.620804] pci 0000:00:03.0: PCI bridge to [bus 04]
[    0.620813] pci 0000:00:11.0: PCI bridge to [bus 05]
[    0.620825] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    0.620836] pci 0000:07:00.1: BAR 6: assigned [mem 0xd9880000-0xd98fffff pref]
[    0.620840] pci 0000:00:1c.4: PCI bridge to [bus 07]
[    0.620845] pci 0000:00:1c.4:   bridge window [mem 0xd9800000-0xda7fffff]
[    0.620854] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.620998] pci 0000:0a:00.0:   bridge window [mem 0xda800000-0xdb7fffff]
[    0.621092] pci 0000:0a:00.0:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.621287] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.621431] pci 0000:09:00.0:   bridge window [mem 0xda800000-0xdb7fffff]
[    0.621525] pci 0000:09:00.0:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.621719] pci 0000:09:01.0: PCI bridge to [bus 0c]
[    0.621864] pci 0000:09:01.0:   bridge window [mem 0xdbf00000-0xdbffffff]
[    0.622218] pci 0000:08:00.0: PCI bridge to [bus 09-0c]
[    0.622348] pci 0000:08:00.0:   bridge window [mem 0xda800000-0xdbffffff]
[    0.622433] pci 0000:08:00.0:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.622672] pci 0000:00:1c.7: PCI bridge to [bus 08-0c]
[    0.622678] pci 0000:00:1c.7:   bridge window [mem 0xda800000-0xdbffffff]
[    0.622682] pci 0000:00:1c.7:   bridge window [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.622690] pci 0000:00:1e.0: PCI bridge to [bus 0d]
[    0.622701] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.622703] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.622704] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.622705] pci_bus 0000:00: resource 7 [io  0x0d00-0x1fff window]
[    0.622706] pci_bus 0000:00: resource 8 [io  0xe000-0xffff window]
[    0.622707] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff window]
[    0.622708] pci_bus 0000:00: resource 10 [mem 0xd4000000-0xdfffffff window]
[    0.622709] pci_bus 0000:00: resource 11 [mem 0xfed40000-0xfed44fff window]
[    0.622710] pci_bus 0000:01: resource 1 [mem 0xd8000000-0xd87fffff]
[    0.622711] pci_bus 0000:01: resource 2 [mem 0xd5000000-0xd55fffff 64bit pref]
[    0.622712] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    0.622713] pci_bus 0000:02: resource 1 [mem 0xd8800000-0xd97fffff]
[    0.622714] pci_bus 0000:07: resource 1 [mem 0xd9800000-0xda7fffff]
[    0.622715] pci_bus 0000:08: resource 1 [mem 0xda800000-0xdbffffff]
[    0.622716] pci_bus 0000:08: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.622717] pci_bus 0000:09: resource 1 [mem 0xda800000-0xdbffffff]
[    0.622718] pci_bus 0000:09: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.622719] pci_bus 0000:0a: resource 1 [mem 0xda800000-0xdb7fffff]
[    0.622720] pci_bus 0000:0a: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.622721] pci_bus 0000:0b: resource 1 [mem 0xda800000-0xdb7fffff]
[    0.622722] pci_bus 0000:0b: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref]
[    0.622723] pci_bus 0000:0c: resource 1 [mem 0xdbf00000-0xdbffffff]
[    0.622724] pci_bus 0000:0d: resource 4 [io  0x0000-0x03af window]
[    0.622725] pci_bus 0000:0d: resource 5 [io  0x03e0-0x0cf7 window]
[    0.622726] pci_bus 0000:0d: resource 6 [io  0x03b0-0x03df window]
[    0.622727] pci_bus 0000:0d: resource 7 [io  0x0d00-0x1fff window]
[    0.622728] pci_bus 0000:0d: resource 8 [io  0xe000-0xffff window]
[    0.622729] pci_bus 0000:0d: resource 9 [mem 0x000a0000-0x000bffff window]
[    0.622730] pci_bus 0000:0d: resource 10 [mem 0xd4000000-0xdfffffff window]
[    0.622731] pci_bus 0000:0d: resource 11 [mem 0xfed40000-0xfed44fff window]
[    0.622754] pci 0000:40:01.0: PCI bridge to [bus 41]
[    0.622759] pci 0000:40:01.0:   bridge window [mem 0xd0000000-0xd0ffffff]
[    0.622763] pci 0000:40:01.0:   bridge window [mem 0xcc000000-0xcc7fffff 64bit pref]
[    0.622770] pci 0000:40:02.0: PCI bridge to [bus 42]
[    0.622774] pci 0000:40:02.0:   bridge window [io  0xd000-0xdfff]
[    0.622779] pci 0000:40:02.0:   bridge window [mem 0xd1000000-0xd10fffff]
[    0.622786] pci 0000:40:03.0: PCI bridge to [bus 43]
[    0.622790] pci 0000:40:03.0:   bridge window [io  0xc000-0xcfff]
[    0.622795] pci 0000:40:03.0:   bridge window [mem 0xd1100000-0xd11fffff]
[    0.622802] pci 0000:40:03.2: PCI bridge to [bus 44]
[    0.622805] pci 0000:40:03.2:   bridge window [io  0xb000-0xbfff]
[    0.622810] pci 0000:40:03.2:   bridge window [mem 0xd1200000-0xd12fffff]
[    0.622818] pci_bus 0000:40: resource 4 [io  0x2000-0x3fff window]
[    0.622819] pci_bus 0000:40: resource 5 [io  0x4000-0x5fff window]
[    0.622820] pci_bus 0000:40: resource 6 [io  0x6000-0x7fff window]
[    0.622821] pci_bus 0000:40: resource 7 [io  0x8000-0x9fff window]
[    0.622822] pci_bus 0000:40: resource 8 [io  0xa000-0xbfff window]
[    0.622823] pci_bus 0000:40: resource 9 [io  0xc000-0xdfff window]
[    0.622824] pci_bus 0000:40: resource 10 [mem 0xcc000000-0xd3ffffff window]
[    0.622825] pci_bus 0000:41: resource 1 [mem 0xd0000000-0xd0ffffff]
[    0.622826] pci_bus 0000:41: resource 2 [mem 0xcc000000-0xcc7fffff 64bit pref]
[    0.622827] pci_bus 0000:42: resource 0 [io  0xd000-0xdfff]
[    0.622827] pci_bus 0000:42: resource 1 [mem 0xd1000000-0xd10fffff]
[    0.622828] pci_bus 0000:43: resource 0 [io  0xc000-0xcfff]
[    0.622829] pci_bus 0000:43: resource 1 [mem 0xd1100000-0xd11fffff]
[    0.622830] pci_bus 0000:44: resource 0 [io  0xb000-0xbfff]
[    0.622831] pci_bus 0000:44: resource 1 [mem 0xd1200000-0xd12fffff]
[    0.622890] NET: Registered protocol family 2
[    0.623357] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.623967] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.624111] TCP: Hash tables configured (established 524288 bind 65536)
[    0.624248] UDP hash table entries: 65536 (order: 9, 2097152 bytes)
[    0.624604] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
[    0.625046] NET: Registered protocol family 1
[    0.625412] pci 0000:0b:00.0: Video device with shadowed ROM
[    0.625548] PCI: CLS 64 bytes, default 64
[    0.625588] Trying to unpack rootfs image as initramfs...
[    0.954445] Freeing initrd memory: 28608K (ffff880034810000 - ffff880036400000)
[    0.954468] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.954472] software IO TLB [mem 0x6c3e1000-0x703e1000] (64MB) mapped at [ffff88006c3e1000-ffff8800703e0fff]
[    0.954569] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    0.954573] hw unit of domain pp0-core 2^-16 Joules
[    0.954575] hw unit of domain package 2^-16 Joules
[    0.954578] hw unit of domain dram 2^-16 Joules
[    0.955536] microcode: CPU0 sig=0x306e4, pf=0x1, revision=0x428
[    0.955548] microcode: CPU1 sig=0x306e4, pf=0x1, revision=0x428
[    0.955568] microcode: CPU2 sig=0x306e4, pf=0x1, revision=0x428
[    0.955582] microcode: CPU3 sig=0x306e4, pf=0x1, revision=0x428
[    0.955598] microcode: CPU4 sig=0x306e4, pf=0x1, revision=0x428
[    0.955612] microcode: CPU5 sig=0x306e4, pf=0x1, revision=0x428
[    0.955628] microcode: CPU6 sig=0x306e4, pf=0x1, revision=0x428
[    0.955643] microcode: CPU7 sig=0x306e4, pf=0x1, revision=0x428
[    0.955659] microcode: CPU8 sig=0x306e4, pf=0x1, revision=0x428
[    0.955673] microcode: CPU9 sig=0x306e4, pf=0x1, revision=0x428
[    0.955690] microcode: CPU10 sig=0x306e4, pf=0x1, revision=0x428
[    0.955703] microcode: CPU11 sig=0x306e4, pf=0x1, revision=0x428
[    0.955758] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.956506] futex hash table entries: 16384 (order: 8, 1048576 bytes)
[    0.956679] audit: initializing netlink subsys (disabled)
[    0.956700] audit: type=2000 audit(1447820923.904:1): initialized
[    0.957084] Initialise system trusted keyring
[    0.957260] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.957262] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.958246] zbud: loaded
[    0.958499] VFS: Disk quotas dquot_6.6.0
[    0.958541] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.959043] fuse init (API version 7.23)
[    0.959163] Key type big_key registered
[    0.959813] Key type asymmetric registered
[    0.959818] Asymmetric key parser 'x509' registered
[    0.959844] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.959917] io scheduler noop registered
[    0.959921] io scheduler deadline registered (default)
[    0.959956] io scheduler cfq registered
[    0.967063] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.967067] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.967070] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.967074] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.967091] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    0.967095] pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
[    0.967109] pcieport 0000:00:02.2: Signaling PME through PCIe PME interrupt
[    0.967112] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    0.967117] pcie_pme 0000:00:02.2:pcie01: service driver pcie_pme loaded
[    0.967130] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    0.967135] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[    0.967155] pcieport 0000:00:11.0: Signaling PME through PCIe PME interrupt
[    0.967160] pcie_pme 0000:00:11.0:pcie01: service driver pcie_pme loaded
[    0.967177] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.967182] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.967197] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    0.967200] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[    0.967203] pci 0000:07:00.1: Signaling PME through PCIe PME interrupt
[    0.967208] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    0.967224] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    0.967227] pcieport 0000:08:00.0: Signaling PME through PCIe PME interrupt
[    0.967230] pcieport 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    0.967232] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    0.967235] pci 0000:0b:00.0: Signaling PME through PCIe PME interrupt
[    0.967238] pcieport 0000:09:01.0: Signaling PME through PCIe PME interrupt
[    0.967242] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[    0.967262] pcieport 0000:40:01.0: Signaling PME through PCIe PME interrupt
[    0.967265] pci 0000:41:00.0: Signaling PME through PCIe PME interrupt
[    0.967269] pcie_pme 0000:40:01.0:pcie01: service driver pcie_pme loaded
[    0.967286] pcieport 0000:40:02.0: Signaling PME through PCIe PME interrupt
[    0.967288] pci 0000:42:00.0: Signaling PME through PCIe PME interrupt
[    0.967293] pcie_pme 0000:40:02.0:pcie01: service driver pcie_pme loaded
[    0.967311] pcieport 0000:40:03.0: Signaling PME through PCIe PME interrupt
[    0.967314] pci 0000:43:00.0: Signaling PME through PCIe PME interrupt
[    0.967318] pcie_pme 0000:40:03.0:pcie01: service driver pcie_pme loaded
[    0.967335] pcieport 0000:40:03.2: Signaling PME through PCIe PME interrupt
[    0.967338] pci 0000:44:00.0: Signaling PME through PCIe PME interrupt
[    0.967343] pcie_pme 0000:40:03.2:pcie01: service driver pcie_pme loaded
[    0.967347] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.967354] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.967387] efifb: probing for efifb
[    0.967409] efifb: framebuffer at 0xd4000000, mapped to 0xffffc90019400000, using 1920k, total 1920k
[    0.967413] efifb: mode is 800x600x32, linelength=3200, pages=1
[    0.967415] efifb: scrolling: redraw
[    0.967417] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.978006] Console: switching to colour frame buffer device 100x37
[    0.988587] fb0: EFI VGA frame buffer device
[    0.988729] intel_idle: MWAIT substates: 0x1120
[    0.988731] intel_idle: v0.4 model 0x3E
[    0.988731] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.989112] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.989344] ACPI: Power Button [PWRF]
[    0.989839] ERST: Error Record Serialization Table (ERST) support is initialized.
[    0.990072] pstore: Registered erst as persistent store backend
[    0.990371] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    0.990706] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.011328] 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    1.032035] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.033321] Linux agpgart interface v0.103
[    1.037012] brd: module loaded
[    1.038766] loop: module loaded
[    1.044254] libphy: Fixed MDIO Bus: probed
[    1.049567] tun: Universal TUN/TAP device driver, 1.6
[    1.054877] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.060412] PPP generic driver version 2.4.2
[    1.066060] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.071698] ehci-pci: EHCI PCI platform driver
[    1.077558] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.083250] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.089123] ehci-pci 0000:00:1a.0: debug port 2
[    1.098770] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.098777] ehci-pci 0000:00:1a.0: irq 23, io mem 0xdc0fe000
[    1.114601] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.120269] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.125951] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.131627] usb usb1: Product: EHCI Host Controller
[    1.137236] usb usb1: Manufacturer: Linux 4.3.0-040300-generic ehci_hcd
[    1.142895] usb usb1: SerialNumber: 0000:00:1a.0
[    1.148581] hub 1-0:1.0: USB hub found
[    1.154094] hub 1-0:1.0: 2 ports detected
[    1.159696] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.165128] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.170549] ehci-pci 0000:00:1d.0: debug port 2
[    1.179759] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.179766] ehci-pci 0000:00:1d.0: irq 22, io mem 0xdc0ff000
[    1.194716] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.199991] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.205267] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.210538] usb usb2: Product: EHCI Host Controller
[    1.215696] usb usb2: Manufacturer: Linux 4.3.0-040300-generic ehci_hcd
[    1.220860] usb usb2: SerialNumber: 0000:00:1d.0
[    1.226018] hub 2-0:1.0: USB hub found
[    1.230982] hub 2-0:1.0: 2 ports detected
[    1.235903] ehci-platform: EHCI generic platform driver
[    1.240738] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.245527] ohci-pci: OHCI PCI platform driver
[    1.250388] ohci-platform: OHCI generic platform driver
[    1.255198] uhci_hcd: USB Universal Host Controller Interface driver
[    1.260143] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.471127] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.027938] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.293629] i8042: No controller found
[    2.298604] tsc: Refined TSC clocksource calibration: 3499.999 MHz
[    2.299218] mousedev: PS/2 mouse device common for all mice
[    2.299842] rtc_cmos 00:01: RTC can wake from S4
[    2.300578] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.300754] rtc_cmos 00:01: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[    2.300777] i2c /dev entries driver
[    2.300916] device-mapper: uevent: version 1.0.3
[    2.301221] device-mapper: ioctl: 4.33.0-ioctl (2015-8-18) initialised: dm-devel@redhat.com
[    2.301262] Intel P-state driver initializing.
[    2.304580] ledtrig-cpu: registered to indicate activity on CPUs
[    2.304590] EFI Variables Facility v0.08 2004-May-17
[    2.307111] NET: Registered protocol family 10
[    2.308031] NET: Registered protocol family 17
[    2.308053] Key type dns_resolver registered
[    2.309586] registered taskstats version 1
[    2.309622] Loading compiled-in X.509 certificates
[    2.311391] Loaded X.509 cert 'Build time autogenerated kernel key: 57d62c37587c99cd510d22fbde8cf1ac069cb6f6'
[    2.311451] zswap: loaded using pool lzo/zbud
[    2.314790] Key type trusted registered
[    2.318426] Key type encrypted registered
[    2.318430] AppArmor: AppArmor sha1 policy hashing enabled
[    2.318433] ima: No TPM chip found, activating TPM-bypass!
[    2.318455] evm: HMAC attrs: 0x1
[    2.323323]   Magic number: 7:730:464
[    2.325069] rtc_cmos 00:01: setting system clock to 2015-11-18 04:28:45 UTC (1447820925)
[    2.325448] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.325448] EDD information not available.
[    2.325506] PM: Hibernation image not present or could not be loaded.
[    2.444630] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x32734f9ce42, max_idle_ns: 440795224466 ns
[    2.445091] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    2.445094] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    2.445095] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.445095] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.445518] hub 1-1:1.0: USB hub found
[    2.445519] hub 2-1:1.0: USB hub found
[    2.445718] hub 2-1:1.0: 8 ports detected
[    2.445725] hub 1-1:1.0: 6 ports detected
[    2.499443] Freeing unused kernel memory: 1448K (ffffffff81d3a000 - ffffffff81ea4000)
[    2.504634] Write protecting the kernel read-only data: 12288k
[    2.510180] Freeing unused kernel memory: 276K (ffff8800067bb000 - ffff880006800000)
[    2.515664] Freeing unused kernel memory: 196K (ffff880006bcf000 - ffff880006c00000)
[    2.540771] random: systemd-udevd urandom read with 3 bits of entropy available
[    2.572202] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    2.582795] wmi: Mapper loaded
[    2.588265] megasas: 06.807.10.00-rc1
[    2.593614] pps_core: LinuxPPS API ver. 1 registered
[    2.594289] megaraid_sas 0000:02:00.0: FW now in Ready state
[    2.594395] megaraid_sas 0000:02:00.0: firmware supports msix	: (16)
[    2.594396] megaraid_sas 0000:02:00.0: current msix/online cpus	: (12/12)
[    2.615024] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.615044] mtip32xx Version 1.3.1
[    2.629177] megaraid_sas 0000:02:00.0: Init cmd success
[    2.636225] mtip32xx 0000:42:00.0: NUMA node 1 (closest: 1,1, probe on 1:1)
[    2.636733] mlx4_core: Mellanox ConnectX core driver v2.2-1 (Feb, 2014)
[    2.636755] mlx4_core: Initializing 0000:41:00.0
[    2.649122] megaraid_sas 0000:02:00.0: firmware type	: Legacy(64 VD) firmware
[    2.649123] megaraid_sas 0000:02:00.0: controller type	: MR(1024MB)
[    2.664005] PTP clock support registered
[    2.664308] mtip32xx 0000:42:00.0: Node 1 on package 1 has 6 cpu(s): 1 3 5 7 9 11 
[    2.664309] mtip32xx 0000:42:00.0: Initial IRQ binding node:cpu 1:1
[    2.664310] mtip32xx 0000:42:00.0: CPU 1: WQs 0 3 
[    2.664311] mtip32xx 0000:42:00.0: CPU 3: WQs 1 4 7 
[    2.664312] mtip32xx 0000:42:00.0: CPU 5: WQs 2 5 6 
[    2.664391] mtip32xx 0000:42:00.0: ASIC-FPGA design, HS rev 0x18, 8 slot groups [256 slots]
[    2.673350] megaraid_sas 0000:02:00.0: INIT adapter done
[    2.677519] megaraid_sas 0000:02:00.0: pci id		: (0x1000)/(0x005b)/(0x1028)/(0x1f34)
[    2.677520] megaraid_sas 0000:02:00.0: unevenspan support	: no
[    2.677521] megaraid_sas 0000:02:00.0: disable ocr		: no
[    2.677521] megaraid_sas 0000:02:00.0: firmware crash dump	: no
[    2.677522] megaraid_sas 0000:02:00.0: secure jbod		: no
[    2.677525] scsi host0: Avago SAS based MegaRAID driver
[    2.721185] usb 1-1.2: new high-speed USB device number 3 using ehci-pci
[    2.744828] dca service started, version 1.12.1
[    2.752616] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.3.0-k
[    2.757933] igb: Copyright (c) 2007-2014 Intel Corporation.
[    2.763435] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.0.1-k
[    2.768874] ixgbe: Copyright (c) 1999-2015 Intel Corporation.
[    2.806039] scsi 0:2:0:0: Direct-Access     DELL     PERC H710P       3.13 PQ: 0 ANSI: 5
[    2.817653] igb 0000:07:00.0: added PHC on eth0
[    2.817656] usb 1-1.2: New USB device found, idVendor=0424, idProduct=2512
[    2.817657] usb 1-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.818149] hub 1-1.2:1.0: USB hub found
[    2.818349] hub 1-1.2:1.0: 1 port detected
[    2.837466] mtip32xx 0000:42:00.0: Serial No.: 00000000134602066486
[    2.837467] mtip32xx 0000:42:00.0: Firmware Ver.: B2180108
[    2.837468] mtip32xx 0000:42:00.0: Model: Micron P420m-MTFDGAR1T4MAX              
[    2.837469] mtip32xx 0000:42:00.0: Security: 0001 
[    2.837470] mtip32xx 0000:42:00.0: Capacity: 2734926768 sectors (1335413 MB)
[    2.837471] mtip32xx 0000:42:00.0: Card Type: A2
[    2.838002] mtip32xx 0000:42:00.0: Write protect progress: 0% (209715 blocks)
[    2.838847] mtip32xx 0000:43:00.0: NUMA node 1 (closest: 1,1, probe on 1:1)
[    2.839034] mtip32xx 0000:43:00.0: Node 1 on package 1 has 6 cpu(s): 1 3 5 7 9 11 
[    2.839035] mtip32xx 0000:43:00.0: Initial IRQ binding node:cpu 1:7
[    2.839037] mtip32xx 0000:43:00.0: CPU 7: WQs 0 3 
[    2.839037] mtip32xx 0000:43:00.0: CPU 9: WQs 1 4 7 
[    2.839038] mtip32xx 0000:43:00.0: CPU 11: WQs 2 5 6 
[    2.839107] mtip32xx 0000:43:00.0: ASIC-FPGA design, HS rev 0x18, 8 slot groups [256 slots]
[    2.889450] usb 1-1.4: new low-speed USB device number 4 using ehci-pci
[    2.920156] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    2.925286] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x2) b8:ca:3a:67:4f:3c
[    2.930709] igb 0000:07:00.0: eth0: PBA No: G59298-000
[    2.935678] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    2.970456] sd 0:2:0:0: [sda] 467664896 512-byte logical blocks: (239 GB/223 GiB)
[    2.970493] sd 0:2:0:0: Attached scsi generic sg0 type 0
[    2.980758] sd 0:2:0:0: [sda] Write Protect is off
[    2.985930] sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08
[    2.986819] sd 0:2:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.005812] igb 0000:07:00.1: added PHC on eth1
[    3.011118] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    3.016479] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x2) b8:ca:3a:67:4f:3d
[    3.016532] usb 1-1.4: New USB device found, idVendor=413c, idProduct=2105
[    3.016533] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.016536] usb 1-1.4: Product: Dell USB Keyboard
[    3.016537] usb 1-1.4: Manufacturer: Dell
[    3.017648] mtip32xx 0000:43:00.0: Serial No.: 00000000135202068EA7
[    3.017648] mtip32xx 0000:43:00.0: Firmware Ver.: B2180108
[    3.017649] mtip32xx 0000:43:00.0: Model: Micron P420m-MTFDGAR1T4MAX              
[    3.017650] mtip32xx 0000:43:00.0: Security: 0001 
[    3.017651] mtip32xx 0000:43:00.0: Capacity: 2734926768 sectors (1335413 MB)
[    3.017652] mtip32xx 0000:43:00.0: Card Type: A2
[    3.052787] hidraw: raw HID events driver (C) Jiri Kosina
[    3.061964] ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 12, Tx Queue count = 12
[    3.082660] igb 0000:07:00.1: eth1: PBA No: G59298-000
[    3.087802] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    3.088523] mtip32xx 0000:43:00.0: Failed to ge SMART data
[    3.088525] mtip32xx 0000:43:00.0: Unable to check write protect progress
[    3.090114] mtip32xx 0000:44:00.0: NUMA node 1 (closest: 1,1, probe on 1:1)
[    3.090417] mtip32xx 0000:44:00.0: Node 1 on package 1 has 6 cpu(s): 1 3 5 7 9 11 
[    3.090419] mtip32xx 0000:44:00.0: Initial IRQ binding node:cpu 1:1
[    3.090422] mtip32xx 0000:44:00.0: CPU 1: WQs 0 3 
[    3.090424] mtip32xx 0000:44:00.0: CPU 3: WQs 1 4 7 
[    3.090427] mtip32xx 0000:44:00.0: CPU 5: WQs 2 5 6 
[    3.090591] mtip32xx 0000:44:00.0: ASIC-FPGA design, HS rev 0x18, 8 slot groups [256 slots]
[    3.093302] usbcore: registered new interface driver usbhid
[    3.093303] usbhid: USB HID core driver
[    3.109719] ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
[    3.109730] ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[    3.119811] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:413C:2105.0001/input/input1
[    3.133708] usb 1-1.6: new high-speed USB device number 5 using ehci-pci
[    3.177823] hid-generic 0003:413C:2105.0001: input,hidraw0: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1a.0-1.4/input0
[    3.179795] igb 0000:07:00.1 eno4: renamed from eth1
[    3.210105] igb 0000:07:00.0 eno3: renamed from eth0
[    3.237738] ixgbe 0000:01:00.0: MAC: 3, PHY: 0, PBA No: G59298-000
[    3.243220] ixgbe 0000:01:00.0: b8:ca:3a:67:4f:38
[    3.250669] usb 1-1.6: New USB device found, idVendor=413c, idProduct=a001
[    3.256136] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.261624] usb 1-1.6: Product: Gadget USB HUB
[    3.261936] mtip32xx 0000:44:00.0: Serial No.: 0000000013460206637D
[    3.261939] mtip32xx 0000:44:00.0: Firmware Ver.: B2180108
[    3.261941] mtip32xx 0000:44:00.0: Model: Micron P420m-MTFDGAR1T4MAX              
[    3.261943] mtip32xx 0000:44:00.0: Security: 0001 
[    3.261945] mtip32xx 0000:44:00.0: Capacity: 2734926768 sectors (1335413 MB)
[    3.261948] mtip32xx 0000:44:00.0: Card Type: A2
[    3.262551] mtip32xx 0000:44:00.0: Write protect progress: 0% (209715 blocks)
[    3.305421] usb 1-1.6: Manufacturer: no manufacturer
[    3.310938] usb 1-1.6: SerialNumber: 0123456789
[    3.316727] hub 1-1.6:1.0: USB hub found
[    3.322156] hub 1-1.6:1.0: 6 ports detected
[    3.343333]  sda: sda1 sda2 sda3
[    3.349053] sd 0:2:0:0: [sda] Attached SCSI disk
[    3.446312] clocksource: Switched to clocksource tsc
[    3.493281] ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
[    3.774520] usb 1-1.6.1: new high-speed USB device number 6 using ehci-pci
[    3.828645] ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 12, Tx Queue count = 12
[    3.894414] ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
[    3.896381] usb 1-1.6.1: New USB device found, idVendor=0624, idProduct=0249
[    3.896384] usb 1-1.6.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6
[    3.896385] usb 1-1.6.1: Product: Keyboard/Mouse Function
[    3.896387] usb 1-1.6.1: Manufacturer: Avocent
[    3.896389] usb 1-1.6.1: SerialNumber: 20121018
[    3.898018] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.0/0003:0624:0249.0002/input/input2
[    3.939266] ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
[    3.950961] hid-generic 0003:0624:0249.0002: input,hidraw1: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input0
[    3.963283] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.1/0003:0624:0249.0003/input/input3
[    3.974936] hid-generic 0003:0624:0249.0003: input,hidraw2: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input1
[    3.988038] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.2/0003:0624:0249.0004/input/input4
[    4.000920] hid-generic 0003:0624:0249.0004: input,hidraw3: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input2
[    4.086965] ixgbe 0000:01:00.1: MAC: 3, PHY: 0, PBA No: G59298-000
[    4.093578] ixgbe 0000:01:00.1: b8:ca:3a:67:4f:3a
[    4.343482] ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
[    4.351981] ixgbe 0000:01:00.1 eno2: renamed from eth1
[    4.479916] ixgbe 0000:01:00.0 eno1: renamed from eth0
[    8.154928] mlx4_core 0000:41:00.0: PCIe link speed is 8.0GT/s, device supports 8.0GT/s
[    8.161673] mlx4_core 0000:41:00.0: PCIe link width is x8, device supports x8
[    8.243106] mlx4_en: Mellanox ConnectX HCA Ethernet driver v2.2-1 (Feb 2014)
[    8.249995] mlx4_en 0000:41:00.0: registered PHC clock
[    8.261462] md: raid0 personality registered for level 0
[    8.272850] md: linear personality registered for level -1
[    8.282180] md: multipath personality registered for level -4
[    8.296647] md: raid1 personality registered for level 1
[    8.377219] raid6: sse2x1   gen()  3263 MB/s
[    8.449327] raid6: sse2x1   xor()  2617 MB/s
[    8.521443] raid6: sse2x2   gen()  4094 MB/s
[    8.593543] raid6: sse2x2   xor()  2896 MB/s
[    8.665652] raid6: sse2x4   gen()  4756 MB/s
[    8.737745] raid6: sse2x4   xor()  3561 MB/s
[    8.744110] raid6: using algorithm sse2x4 gen() 4756 MB/s
[    8.750494] raid6: .... xor() 3561 MB/s, rmw enabled
[    8.756837] raid6: using ssse3x2 recovery algorithm
[    8.764171] xor: automatically using best checksumming function:
[    8.809848]    avx       : 28341.000 MB/sec
[    8.817110] async_tx: api initialized (async)
[    8.828081] md: raid6 personality registered for level 6
[    8.834218] md: raid5 personality registered for level 5
[    8.840132] md: raid4 personality registered for level 4
[    8.851403] md: raid10 personality registered for level 10
[    9.257158] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    9.411654] systemd[1]: Failed to insert module 'kdbus': Function not implemented
[    9.417641] ERST: NVRAM ERST Log Address Range not implemented yet.
[    9.431220] systemd[1]: systemd 225 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    9.447774] systemd[1]: Detected architecture x86-64.
[    9.468595] systemd[1]: Set hostname to <SAN>.
[    9.551612] systemd[1]: display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service failed to load: No such file or directory.
[    9.563165] systemd[1]: Created slice Root Slice.
[    9.574675] systemd[1]: Listening on Journal Audit Socket.
[    9.586441] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    9.598719] systemd[1]: Listening on udev Kernel Socket.
[    9.611090] systemd[1]: Listening on udev Control Socket.
[    9.623506] systemd[1]: Reached target Encrypted Volumes.
[    9.636363] systemd[1]: Reached target Remote File Systems (Pre).
[    9.649609] systemd[1]: Listening on Journal Socket.
[    9.662927] systemd[1]: Created slice User and Session Slice.
[    9.676103] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    9.689545] systemd[1]: Listening on Journal Socket (/dev/log).
[    9.703016] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    9.723679] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    9.737652] systemd[1]: Reached target User and Group Name Lookups.
[    9.751487] systemd[1]: Created slice System Slice.
[    9.765212] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    9.779271] systemd[1]: Reached target Slices.
[    9.794162] systemd[1]: Mounting POSIX Message Queue File System...
[    9.809035] systemd[1]: Starting Uncomplicated firewall...
[    9.823933] systemd[1]: Starting udev Coldplug all Devices...
[    9.838858] systemd[1]: Starting Increase datagram queue length...
[    9.854552] systemd[1]: Starting Load Kernel Modules...
[    9.869126] systemd[1]: Mounting Huge Pages File System...
[    9.882899] systemd[1]: Created slice system-getty.slice.
[    9.897472] <mlx4_ib> mlx4_ib_add: mlx4_ib: Mellanox ConnectX InfiniBand driver v2.2-1 (Feb 2014)
[    9.897577] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    9.918947] <mlx4_ib> mlx4_ib_add: counter index 0 for port 1 allocated 0
[    9.918949] <mlx4_ib> mlx4_ib_add: counter index 1 for port 2 allocated 0
[    9.939555] systemd[1]: Listening on fsck to fsckd communication Socket.
[    9.954381] systemd[1]: Mounting Debug File System...
[    9.968956] systemd[1]: Started Read required files in advance.
[    9.983955] systemd[1]: Mounted Huge Pages File System.
[    9.996970] systemd[1]: Mounted POSIX Message Queue File System.
[   10.009954] systemd[1]: Mounted Debug File System.
[   10.016553] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
[   10.030959] systemd[1]: Started Uncomplicated firewall.
[   10.044974] systemd[1]: Started Increase datagram queue length.
[   10.058413] systemd[1]: Started Load Kernel Modules.
[   10.071726] systemd[1]: Started Create list of required static device nodes for the current kernel.
[   10.091868] systemd[1]: ureadahead.service: Main process exited, code=exited, status=5/NOTINSTALLED
[   10.106048] systemd[1]: ureadahead.service: Unit entered failed state.
[   10.112966] systemd[1]: ureadahead.service: Failed with result 'exit-code'.
[   10.138532] systemd[1]: Started udev Coldplug all Devices.
[   10.159873] systemd[1]: Starting Create Static Device Nodes in /dev...
[   10.175207] systemd[1]: Starting Apply Kernel Variables...
[   10.189699] systemd[1]: Mounting FUSE Control File System...
[   10.196427] systemd[1]: Listening on Syslog Socket.
[   10.203966] systemd[1]: Starting Journal Service...
[   10.213310] systemd[1]: Mounted FUSE Control File System.
[   10.220258] systemd[1]: Started Create Static Device Nodes in /dev.
[   10.227080] systemd[1]: Started Apply Kernel Variables.
[   10.241596] systemd[1]: Starting udev Kernel Device Manager...
[   10.259568] systemd[1]: Started udev Kernel Device Manager.
[   10.268136] systemd[1]: Starting Remount Root and Kernel File Systems...
[   10.274208] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[   10.279027] systemd[1]: Started Remount Root and Kernel File Systems.
[   10.287214] systemd[1]: Reached target Local File Systems (Pre).
[   10.295948] systemd[1]: Starting Load/Save Random Seed...
[   10.305360] systemd[1]: Started Load/Save Random Seed.
[   10.357656] systemd[1]: Created slice system-ifup.slice.
[   10.362696] ACPI Error: No handler for Region [SYSI] (ffff881fff49d120) [IPMI] (20150818/evregion-163)
[   10.362700] ACPI Error: Region IPMI (ID=7) has no handler (20150818/exfldio-297)
[   10.362713] ACPI Error: Method parse/execution failed [\_SB.PMI0._GHL] (Node ffff881fff4a8050), AE_NOT_EXIST (20150818/psparse-542)
[   10.362726] ACPI Error: Method parse/execution failed [\_SB.PMI0._PMC] (Node ffff881fff49cfa0), AE_NOT_EXIST (20150818/psparse-542)
[   10.362736] ACPI Exception: AE_NOT_EXIST, Evaluating _PMC (20150818/power_meter-755)
[   10.370894] systemd[1]: Found device /sys/subsystem/net/devices/bond0.
[   10.371456] ipmi message handler version 39.2
[   10.375829] IPMI System Interface driver.
[   10.375981] ipmi_si: probing via SMBIOS
[   10.375984] ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
[   10.375986] ipmi_si: Adding SMBIOS-specified kcs state machine
[   10.375989] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
[   10.383155] systemd[1]: Started Journal Service.
[   10.399876] systemd-journald[882]: Received request to flush runtime journal from PID 1
[   10.403384] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   10.404128] ioatdma: Intel(R) QuickData Technology Driver 4.00
[   10.413183] random: nonblocking pool is initialized
[   10.413991] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[   10.461236] EDAC MC: Ver: 3.0.0
[   10.470195] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   10.470210] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   10.470220] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[   10.470224] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   10.470232] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   10.470241] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[   10.470244] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   10.470253] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   10.470261] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[   10.470264] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   10.470273] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   10.470282] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[   10.470285] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   10.470293] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   10.470301] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[   10.470304] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   10.470313] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   10.470321] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[   10.470324] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   10.470333] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   10.470342] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[   10.470345] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   10.470354] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   10.470362] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[   10.470364] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   10.470373] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   10.470381] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[   10.470383] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   10.470392] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   10.470401] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[   10.470403] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[   10.470414] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[   10.470425] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[   10.470436] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[   10.470448] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[   10.470459] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[   10.470470] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[   10.488472] EDAC MC0: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#0: DEV 0000:3f:0e.0 (POLLED)
[   10.490974] EDAC MC1: Giving out device to module sbridge_edac.c controller Ivy Bridge Socket#1: DEV 0000:7f:0e.0 (POLLED)
[   10.490977] EDAC sbridge:  Ver: 1.1.1 
[   10.532573] AVX version of gcm_enc/dec engaged.
[   10.532574] AES CTR mode by8 optimization enabled
[   10.536958] Adding 3704828k swap on /dev/sda3.  Priority:-1 extents:1 across:3704828k FS
[   10.564720] (NULL device *): The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[   10.596640] ipmi_si ipmi_si.0: Using irq 10
[   10.606133] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   10.607928] kvm: disabled by bios
[   10.625492] ipmi device interface
[   10.657099] ipmi_si ipmi_si.0: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[   10.657113] ipmi_si ipmi_si.0: IPMI kcs interface initialized
[   10.671739] IPMI SSIF Interface driver
[   10.714703] audit: type=1400 audit(1447820933.873:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=1091 comm="apparmor_parser"
[   10.714712] audit: type=1400 audit(1447820933.873:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1091 comm="apparmor_parser"
[   10.714718] audit: type=1400 audit(1447820933.873:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1091 comm="apparmor_parser"
[   10.714725] audit: type=1400 audit(1447820933.873:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=1091 comm="apparmor_parser"
[   10.719020] audit: type=1400 audit(1447820933.877:6): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1091 comm="apparmor_parser"
[   10.776959] bond0: Setting MII monitoring interval to 100
[   10.777077] bond0: Setting down delay to 200
[   10.777144] bond0: Setting up delay to 200
[   10.785602] bond0: Setting LACP rate to fast (1)
[   10.786691] IPv6: ADDRCONF(NETDEV_UP): bond0: link is not ready
[   10.876123] bond0: Adding slave eno2
[   10.930478] pps pps0: new PPS source ptp3
[   10.930482] ixgbe 0000:01:00.1: registered PHC device on eno2
[   11.105968] IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
[   11.107039] bond0: Enslaving eno2 as a backup interface with a down link
[   11.108904] bond0: Adding slave eno1
[   11.162789] pps pps1: new PPS source ptp4
[   11.162797] ixgbe 0000:01:00.0: registered PHC device on eno1
[   11.363233] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[   11.364462] bond0: Enslaving eno1 as a backup interface with a down link
[   11.372220] bond0: option primary: mode dependency failed, not supported in mode 802.3ad(4)
[   12.736669] DLM installed
[   12.739690] scst: module verification failed: signature and/or required key missing - tainting kernel
[   12.744325] scst: User interface thread started
[   12.744728] scst: Attached to scsi0, channel 2, id 0, lun 0, type 0
[   12.747149] scst: Init thread started
[   12.748453] scst: Task management thread started
[   12.748675] scst: Management thread started
[   12.748689] scst: Target template copy_manager registered successfully
[   12.748735] scst: Target copy_manager_tgt for template copy_manager registered successfully
[   12.748742] scst: Using security group "copy_manager_tgt" for initiator "copy_manager_sess" (target copy_manager_tgt)
[   12.748770] scst: SCST version 3.2.0-pre1 loaded successfully (max mem for commands 64474MB, per device 25789MB)
[   12.755888] scst: Virtual device handler vdisk_fileio for type 0 registered successfully
[   12.755894] scst: Virtual device handler vdisk_blockio for type 0 registered successfully
[   12.755898] scst: Virtual device handler vdisk_nullio for type 0 registered successfully
[   12.755903] scst: Virtual device handler vcdrom for type 5 registered successfully
[   12.772968] scst: Target template ib_srpt registered successfully
[   12.773891] scst: Target fe80:0000:0000:0000:0002:c903:00a4:c991 for template ib_srpt registered successfully
[   12.774654] scst: Target fe80:0000:0000:0000:0002:c903:00a4:c992 for template ib_srpt registered successfully
[   13.005970] scst: Removed all devices from group fe80:0000:0000:0000:0002:c903:00a4:c991
[   13.010138] scst: Removed all devices from group fe80:0000:0000:0000:0002:c903:00a4:c992
[   13.235748] dev_vdisk: Registering virtual vdisk_fileio device IB-PSC-Net (NV_CACHE, THIN_PROVISIONED)
[   13.237378] dev_vdisk: ***ERROR***: filp_open(/dev/zvol/PSC.Net/IB.PSC.Net) failed: -2
[   13.242570] scst: ***ERROR***: New device handler's vdisk_fileio attach() failed: -2
[   13.256564] scst: Target fe80:0000:0000:0000:0002:c903:00a4:c991 for template ib_srpt unregistered successfully
[   13.256640] scst: Target fe80:0000:0000:0000:0002:c903:00a4:c992 for template ib_srpt unregistered successfully
[   13.256707] scst: Target template ib_srpt unregistered successfully
[   13.279169] scst: Device handler "vdisk_nullio" unloaded
[   13.279177] scst: Device handler "vdisk_blockio" unloaded
[   13.279181] scst: Device handler "vdisk_fileio" unloaded
[   13.279185] scst: Device handler "vcdrom" unloaded
[   13.298231] scst: Target copy_manager_tgt for template copy_manager unregistered successfully
[   13.298241] scst: Target template copy_manager unregistered successfully
[   13.298681] scst: Task management thread finished
[   13.298701] scst: Management thread finished
[   13.298719] scst: Init thread finished
[   13.298748] scst: Detached from scsi0, channel 2, id 0, lun 0, type 0
[   13.298891] scst: Exiting SCST sysfs hierarchy...
[   14.401436] ixgbe 0000:01:00.1 eno2: NIC Link is Up 1 Gbps, Flow Control: None
[   14.490196] bond0: Warning: No 802.3ad response from the link partner for any adapters in the bond
[   14.490218] bond0: link status up for interface eno2, enabling it in 0 ms
[   14.490224] bond0: link status definitely up for interface eno2, 1000 Mbps full duplex
[   14.490229] bond0: first active interface up!
[   14.490255] IPv6: ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready
[   14.680241] ixgbe 0000:01:00.0 eno1: NIC Link is Up 1 Gbps, Flow Control: None
[   14.690512] bond0: link status up for interface eno1, enabling it in 200 ms
[   14.890783] bond0: link status definitely up for interface eno1, 1000 Mbps full duplex
[   16.304885] scst: User interface thread finished
[   16.304907] scst: Exiting SCST sysfs hierarchy done
[   16.305742] scst: SCST unloaded
Download as text