Ubuntu Pastebin

Paste from derek at Sat, 5 Sep 2015 19:18:29 +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
[    0.000000] CPU0 microcode updated early to revision 0x12, date = 2013-06-21
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.19.0-15-generic (buildd@komainu) (gcc version 4.9.2 (Ubuntu 4.9.2-10ubuntu13) ) #15-Ubuntu SMP Thu Apr 16 23:32:37 UTC 2015 (Ubuntu 3.19.0-15.15-generic 3.19.3)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-15-generic root=UUID=9689bbab-6144-428e-8bd0-659a286e13ab ro quiet splash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000091fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000092000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f78ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f790000-0x000000007f7e2fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007f7e3000-0x000000007f7effff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007f7f0000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000037fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: OEM OEM/X58 SLI Classified, BIOS 6.00 PG 08/25/2011
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x380000 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask E00000000 write-back
[    0.000000]   1 base 200000000 mask F00000000 write-back
[    0.000000]   2 base 300000000 mask F80000000 write-back
[    0.000000]   3 base 080000000 mask F80000000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 8GB, type WB
[    0.000000] reg 1, base: 8GB, range: 4GB, type WB
[    0.000000] reg 2, base: 12GB, range: 2GB, type WB
[    0.000000] reg 3, base: 2GB, range: 2GB, type UC
[    0.000000] total RAM covered: 12288M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 64K 	num_reg: 4  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 4GB, range: 4GB, type WB
[    0.000000] reg 2, base: 8GB, range: 4GB, type WB
[    0.000000] reg 3, base: 12GB, range: 2GB, type WB
[    0.000000] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0x7f790 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f6490-0x000f649f] mapped at [ffff8800000f6490]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff88000008c000] 8c000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fe5000, 0x01fe5fff] PGTABLE
[    0.000000] BRK [0x01fe6000, 0x01fe6fff] PGTABLE
[    0.000000] BRK [0x01fe7000, 0x01fe7fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x37fe00000-0x37fffffff]
[    0.000000]  [mem 0x37fe00000-0x37fffffff] page 2M
[    0.000000] BRK [0x01fe8000, 0x01fe8fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x360000000-0x37fdfffff]
[    0.000000]  [mem 0x360000000-0x37fdfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x7f78ffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x7f5fffff] page 2M
[    0.000000]  [mem 0x7f600000-0x7f78ffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x35fffffff]
[    0.000000]  [mem 0x100000000-0x35fffffff] page 2M
[    0.000000] BRK [0x01fe9000, 0x01fe9fff] PGTABLE
[    0.000000] BRK [0x01fea000, 0x01feafff] PGTABLE
[    0.000000] RAMDISK: [mem 0x357f0000-0x36beffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FA6D0 000024 (v02 IntelR)
[    0.000000] ACPI: XSDT 0x000000007F7E3080 00005C (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: FACP 0x000000007F7EB440 0000F4 (v03 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aEventBlock: 32/8 (20141107/tbfadt-618)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/8 (20141107/tbfadt-618)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm2ControlBlock: 0/8 (20141107/tbfadt-618)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has zero address or length: 0x0000000000000450/0x0 (20141107/tbfadt-649)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/PmTimerBlock: 32/8 (20141107/tbfadt-618)
[    0.000000] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/8 (20141107/tbfadt-618)
[    0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aEventBlock: 8, using default 32 (20141107/tbfadt-699)
[    0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 8, using default 16 (20141107/tbfadt-699)
[    0.000000] ACPI BIOS Warning (bug): Invalid length for FADT/PmTimerBlock: 8, using default 32 (20141107/tbfadt-699)
[    0.000000] ACPI: DSDT 0x000000007F7E3200 0079E5 (v01 INTELR AWRDACPI 00001000 MSFT 03000000)
[    0.000000] ACPI: FACS 0x000000007F790000 000040
[    0.000000] ACPI: HJKL 0x000000007F7EAC00 000400 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: ZXCV 0x000000007F7EB000 000424 (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: HPET 0x000000007F7EB680 000038 (v01 IntelR AWRDACPI 42302E31 AWRD 00000098)
[    0.000000] ACPI: MCFG 0x000000007F7EB6C0 00003C (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: APIC 0x000000007F7EB540 00012C (v01 IntelR AWRDACPI 42302E31 AWRD 00000000)
[    0.000000] ACPI: SSDT 0x000000007F7EB700 001E84 (v01 INTEL  PPM RCM  80000001 INTL 20061109)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000037fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x37fff2000-0x37fff6fff]
[    0.000000]  [ffffea0000000000-ffffea000dffffff] PMD -> [ffff880373600000-ffff88037f5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x37fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x00091fff]
[    0.000000]   node   0: [mem 0x00100000-0x7f78ffff]
[    0.000000]   node   0: [mem 0x100000000-0x37fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00001000-0x37fffffff]
[    0.000000] On node 0 totalpages: 3143457
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3985 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 8095 pages used for memmap
[    0.000000]   DMA32 zone: 518032 pages, LIFO batch:31
[    0.000000]   Normal zone: 40960 pages used for memmap
[    0.000000]   Normal zone: 2621440 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x07] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x10] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 16, version 32, address 0xfec00000, GSI 0-23
[    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: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x00092000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f790000-0x7f7e2fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f7e3000-0x7f7effff]
[    0.000000] PM: Registered nosave memory: [mem 0x7f7f0000-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-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xffffffff]
[    0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:16 nr_node_ids:1
[    0.000000] PERCPU: Embedded 31 pages/cpu @ffff88037fc00000 s87040 r8192 d31744 u131072
[    0.000000] pcpu-alloc: s87040 r8192 d31744 u131072 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 3094317
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-15-generic root=UUID=9689bbab-6144-428e-8bd0-659a286e13ab ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 12272016K/12573828K available (7993K kernel code, 1232K rwdata, 3752K rodata, 1408K init, 1300K bss, 301812K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=16.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.000000] NR_IRQS:16640 nr_irqs:552 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-15.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2918.663 MHz processor
[    0.000028] Calibrating delay loop (skipped), value calculated using timer frequency.. 5837.32 BogoMIPS (lpj=11674652)
[    0.000030] pid_max: default: 32768 minimum: 301
[    0.000036] ACPI: Core revision 20141107
[    0.005144] ACPI: All ACPI Tables successfully acquired
[    0.007491] Security Framework initialized
[    0.007510] AppArmor: AppArmor initialized
[    0.007510] Yama: becoming mindful.
[    0.008386] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.011495] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.012639] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.012655] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.012883] Initializing cgroup subsys memory
[    0.012889] Initializing cgroup subsys devices
[    0.012891] Initializing cgroup subsys freezer
[    0.012893] Initializing cgroup subsys net_cls
[    0.012895] Initializing cgroup subsys blkio
[    0.012897] Initializing cgroup subsys perf_event
[    0.012899] Initializing cgroup subsys net_prio
[    0.012900] Initializing cgroup subsys hugetlb
[    0.012920] CPU: Physical Processor ID: 0
[    0.012920] CPU: Processor Core ID: 0
[    0.012924] mce: CPU supports 9 MCE banks
[    0.012932] CPU0: Thermal monitoring enabled (TM1)
[    0.012940] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.013016] Freeing SMP alternatives memory: 32K (ffffffff81e96000 - ffffffff81e9e000)
[    0.013975] ftrace: allocating 30078 entries in 118 pages
[    0.026184] Switched APIC routing to physical flat.
[    0.026610] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.066311] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         940  @ 2.93GHz (fam: 06, model: 1a, stepping: 04)
[    0.170395] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
[    0.170408] perf_event_intel: CPU erratum AAJ80 worked around
[    0.170410] ... version:                3
[    0.170411] ... bit width:              48
[    0.170412] ... generic registers:      4
[    0.170413] ... value mask:             0000ffffffffffff
[    0.170413] ... max period:             000000007fffffff
[    0.170414] ... fixed-purpose events:   3
[    0.170415] ... event mask:             000000070000000f
[    0.171142] x86: Booting SMP configuration:
[    0.171144] .... node  #0, CPUs:        #1
[    0.182510] CPU1 microcode updated early to revision 0x12, date = 2013-06-21
[    0.184746] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.184836]   #2
[    0.196201] CPU2 microcode updated early to revision 0x12, date = 2013-06-21
[    0.198375]   #3
[    0.209741] CPU3 microcode updated early to revision 0x12, date = 2013-06-21
[    0.211924]   #4  #5  #6  #7
[    0.264531] x86: Booted up 1 node, 8 CPUs
[    0.264535] smpboot: Total of 8 processors activated (46698.60 BogoMIPS)
[    0.270731] devtmpfs: initialized
[    0.273435] evm: security.selinux
[    0.273436] evm: security.SMACK64
[    0.273437] evm: security.SMACK64EXEC
[    0.273437] evm: security.SMACK64TRANSMUTE
[    0.273438] evm: security.SMACK64MMAP
[    0.273439] evm: security.ima
[    0.273440] evm: security.capability
[    0.273485] PM: Registering ACPI NVS region [mem 0x7f790000-0x7f7e2fff] (339968 bytes)
[    0.273631] pinctrl core: initialized pinctrl subsystem
[    0.273728] RTC time: 14:16:51, date: 09/05/15
[    0.273818] NET: Registered protocol family 16
[    0.274428] cpuidle: using governor ladder
[    0.278426] cpuidle: using governor menu
[    0.278466] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.278467] ACPI: bus type PCI registered
[    0.278469] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.278539] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.278541] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.278968] PCI: Using configuration type 1 for base access
[    0.282768] ACPI: Added _OSI(Module Device)
[    0.282770] ACPI: Added _OSI(Processor Device)
[    0.282771] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.282773] ACPI: Added _OSI(Processor Aggregator Device)
[    0.287933] ACPI: Interpreter enabled
[    0.287940] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
[    0.287944] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20141107/hwxface-580)
[    0.287951] ACPI: (supports S0 S1 S4 S5)
[    0.287953] ACPI: Using IOAPIC for interrupt routing
[    0.287981] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.292548] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.292553] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.292557] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.292624] acpi PNP0A08:00: ignoring host bridge window [mem 0x000c0000-0x000dffff] (conflicts with Adapter ROM [mem 0x000d7000-0x000e17ff])
[    0.292909] PCI host bridge to bus 0000:00
[    0.292911] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.292913] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.292914] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.292916] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.292917] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
[    0.292928] pci 0000:00:00.0: [8086:3400] type 00 class 0x060000
[    0.292984] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    0.293056] pci 0000:00:01.0: [8086:3408] type 01 class 0x060400
[    0.293110] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.293152] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.293191] pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
[    0.293248] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    0.293289] pci 0000:00:03.0: System wakeup disabled by ACPI
[    0.293329] pci 0000:00:07.0: [8086:340e] type 01 class 0x060400
[    0.293386] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.293427] pci 0000:00:07.0: System wakeup disabled by ACPI
[    0.293468] pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
[    0.293568] pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
[    0.293667] pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
[    0.293763] pci 0000:00:14.3: [8086:3438] type 00 class 0x080000
[    0.293868] pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
[    0.293910] pci 0000:00:1a.0: reg 0x20: [io  0xff00-0xff1f]
[    0.293988] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.294024] pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
[    0.294065] pci 0000:00:1a.1: reg 0x20: [io  0xfe00-0xfe1f]
[    0.294142] pci 0000:00:1a.1: System wakeup disabled by ACPI
[    0.294182] pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
[    0.294223] pci 0000:00:1a.2: reg 0x20: [io  0xfd00-0xfd1f]
[    0.294302] pci 0000:00:1a.2: System wakeup disabled by ACPI
[    0.294350] pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
[    0.294373] pci 0000:00:1a.7: reg 0x10: [mem 0xf3ffe000-0xf3ffe3ff]
[    0.294470] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.294517] pci 0000:00:1a.7: System wakeup disabled by ACPI
[    0.294561] pci 0000:00:1b.0: [8086:3a3e] type 00 class 0x040300
[    0.294580] pci 0000:00:1b.0: reg 0x10: [mem 0xf3ff4000-0xf3ff7fff 64bit]
[    0.294655] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.294703] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.294743] pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
[    0.294820] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.294867] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.294907] pci 0000:00:1c.1: [8086:3a42] type 01 class 0x060400
[    0.294984] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.295031] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.295070] pci 0000:00:1c.2: [8086:3a44] type 01 class 0x060400
[    0.295147] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.295193] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.295236] pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
[    0.295311] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.295357] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.295400] pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
[    0.295441] pci 0000:00:1d.0: reg 0x20: [io  0xfc00-0xfc1f]
[    0.295518] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.295557] pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
[    0.295599] pci 0000:00:1d.1: reg 0x20: [io  0xfb00-0xfb1f]
[    0.295676] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.295718] pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
[    0.295759] pci 0000:00:1d.2: reg 0x20: [io  0xfa00-0xfa1f]
[    0.295836] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.295884] pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
[    0.295907] pci 0000:00:1d.7: reg 0x10: [mem 0xf3ffd000-0xf3ffd3ff]
[    0.295998] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.296043] pci 0000:00:1d.7: System wakeup disabled by ACPI
[    0.296078] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.296164] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.296206] pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
[    0.296285] pci 0000:00:1f.0: quirk: [io  0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
[    0.296293] pci 0000:00:1f.0: quirk: [io  0x0480-0x04bf] claimed by ICH6 GPIO
[    0.296302] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0290 (mask 0007)
[    0.296403] pci 0000:00:1f.2: [8086:2822] type 00 class 0x010400
[    0.296424] pci 0000:00:1f.2: reg 0x10: [io  0xf900-0xf907]
[    0.296435] pci 0000:00:1f.2: reg 0x14: [io  0xf800-0xf803]
[    0.296446] pci 0000:00:1f.2: reg 0x18: [io  0xf700-0xf707]
[    0.296456] pci 0000:00:1f.2: reg 0x1c: [io  0xf600-0xf603]
[    0.296467] pci 0000:00:1f.2: reg 0x20: [io  0xf500-0xf51f]
[    0.296478] pci 0000:00:1f.2: reg 0x24: [mem 0xf3ffc000-0xf3ffc7ff]
[    0.296529] pci 0000:00:1f.2: PME# supported from D3hot
[    0.296607] pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
[    0.296625] pci 0000:00:1f.3: reg 0x10: [mem 0xf3ffb000-0xf3ffb0ff 64bit]
[    0.296647] pci 0000:00:1f.3: reg 0x20: [io  0x0500-0x051f]
[    0.296774] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.296779] pci 0000:00:01.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.296835] pci 0000:02:00.0: [10de:0613] type 00 class 0x030000
[    0.296850] pci 0000:02:00.0: reg 0x10: [mem 0xde000000-0xdeffffff]
[    0.296863] pci 0000:02:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.296876] pci 0000:02:00.0: reg 0x1c: [mem 0xdc000000-0xddffffff 64bit]
[    0.296884] pci 0000:02:00.0: reg 0x24: [io  0x9f00-0x9f7f]
[    0.296893] pci 0000:02:00.0: reg 0x30: [mem 0xdffe0000-0xdfffffff pref]
[    0.302440] pci 0000:00:03.0: PCI bridge to [bus 02]
[    0.302444] pci 0000:00:03.0:   bridge window [io  0x9000-0x9fff]
[    0.302446] pci 0000:00:03.0:   bridge window [mem 0xdc000000-0xdfffffff]
[    0.302450] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.302501] pci 0000:03:00.0: [10de:05b1] type 01 class 0x060400
[    0.302551] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.310439] pci 0000:00:07.0: PCI bridge to [bus 03-06]
[    0.310442] pci 0000:00:07.0:   bridge window [io  0xa000-0xafff]
[    0.310445] pci 0000:00:07.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.310449] pci 0000:00:07.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.310492] pci 0000:04:00.0: [10de:05b1] type 01 class 0x060400
[    0.310534] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.310575] pci 0000:04:02.0: [10de:05b1] type 01 class 0x060400
[    0.310619] pci 0000:04:02.0: PME# supported from D0 D3hot D3cold
[    0.310667] pci 0000:03:00.0: PCI bridge to [bus 04-06]
[    0.310672] pci 0000:03:00.0:   bridge window [io  0xa000-0xafff]
[    0.310675] pci 0000:03:00.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.310679] pci 0000:03:00.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.310709] pci 0000:04:00.0: PCI bridge to [bus 05]
[    0.310756] pci 0000:06:00.0: [10de:0613] type 00 class 0x030000
[    0.310768] pci 0000:06:00.0: reg 0x10: [mem 0xda000000-0xdaffffff]
[    0.310778] pci 0000:06:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.310787] pci 0000:06:00.0: reg 0x1c: [mem 0xd8000000-0xd9ffffff 64bit]
[    0.310794] pci 0000:06:00.0: reg 0x24: [io  0xaf00-0xaf7f]
[    0.310800] pci 0000:06:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.318444] pci 0000:04:02.0: PCI bridge to [bus 06]
[    0.318449] pci 0000:04:02.0:   bridge window [io  0xa000-0xafff]
[    0.318452] pci 0000:04:02.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.318456] pci 0000:04:02.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.318563] pci 0000:07:00.0: [197b:2363] type 00 class 0x010185
[    0.318652] pci 0000:07:00.0: reg 0x24: [mem 0xf3cfe000-0xf3cfffff]
[    0.318725] pci 0000:07:00.0: PME# supported from D3hot
[    0.318786] pci 0000:07:00.1: [197b:2363] type 00 class 0x010185
[    0.318809] pci 0000:07:00.1: reg 0x10: [io  0x8f00-0x8f07]
[    0.318822] pci 0000:07:00.1: reg 0x14: [io  0x8e00-0x8e03]
[    0.318834] pci 0000:07:00.1: reg 0x18: [io  0x8d00-0x8d07]
[    0.318847] pci 0000:07:00.1: reg 0x1c: [io  0x8c00-0x8c03]
[    0.318859] pci 0000:07:00.1: reg 0x20: [io  0x8b00-0x8b0f]
[    0.318970] pci 0000:00:1c.0: PCI bridge to [bus 07]
[    0.318978] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
[    0.318985] pci 0000:00:1c.0:   bridge window [mem 0xf3c00000-0xf3cfffff]
[    0.319079] pci 0000:08:00.0: [197b:2363] type 00 class 0x010185
[    0.319167] pci 0000:08:00.0: reg 0x24: [mem 0xf3afe000-0xf3afffff]
[    0.319240] pci 0000:08:00.0: PME# supported from D3hot
[    0.319306] pci 0000:08:00.1: [197b:2363] type 00 class 0x010185
[    0.319328] pci 0000:08:00.1: reg 0x10: [io  0xdf00-0xdf07]
[    0.319341] pci 0000:08:00.1: reg 0x14: [io  0xde00-0xde03]
[    0.319354] pci 0000:08:00.1: reg 0x18: [io  0xdd00-0xdd07]
[    0.319366] pci 0000:08:00.1: reg 0x1c: [io  0xdc00-0xdc03]
[    0.319379] pci 0000:08:00.1: reg 0x20: [io  0xdb00-0xdb0f]
[    0.319492] pci 0000:00:1c.1: PCI bridge to [bus 08]
[    0.319499] pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
[    0.319506] pci 0000:00:1c.1:   bridge window [mem 0xf3a00000-0xf3afffff]
[    0.319583] pci 0000:09:00.0: [10ec:8168] type 00 class 0x020000
[    0.319604] pci 0000:09:00.0: reg 0x10: [io  0xce00-0xceff]
[    0.319634] pci 0000:09:00.0: reg 0x18: [mem 0xf39ff000-0xf39fffff 64bit]
[    0.319654] pci 0000:09:00.0: reg 0x20: [mem 0xf38f0000-0xf38fffff 64bit pref]
[    0.319668] pci 0000:09:00.0: reg 0x30: [mem 0xf39c0000-0xf39dffff pref]
[    0.319753] pci 0000:09:00.0: supports D1 D2
[    0.319754] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.326455] pci 0000:00:1c.2: PCI bridge to [bus 09]
[    0.326463] pci 0000:00:1c.2:   bridge window [io  0xc000-0xcfff]
[    0.326470] pci 0000:00:1c.2:   bridge window [mem 0xf3900000-0xf39fffff]
[    0.326479] pci 0000:00:1c.2:   bridge window [mem 0xf3800000-0xf38fffff 64bit pref]
[    0.326553] pci 0000:0a:00.0: [10ec:8168] type 00 class 0x020000
[    0.326575] pci 0000:0a:00.0: reg 0x10: [io  0xbe00-0xbeff]
[    0.326604] pci 0000:0a:00.0: reg 0x18: [mem 0xf3eff000-0xf3efffff 64bit]
[    0.326624] pci 0000:0a:00.0: reg 0x20: [mem 0xf3df0000-0xf3dfffff 64bit pref]
[    0.326638] pci 0000:0a:00.0: reg 0x30: [mem 0xf3ec0000-0xf3edffff pref]
[    0.326723] pci 0000:0a:00.0: supports D1 D2
[    0.326724] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.334458] pci 0000:00:1c.4: PCI bridge to [bus 0a]
[    0.334466] pci 0000:00:1c.4:   bridge window [io  0xb000-0xbfff]
[    0.334473] pci 0000:00:1c.4:   bridge window [mem 0xf3e00000-0xf3efffff]
[    0.334481] pci 0000:00:1c.4:   bridge window [mem 0xf3d00000-0xf3dfffff 64bit pref]
[    0.334534] pci 0000:0b:03.0: [104c:8023] type 00 class 0x0c0010
[    0.334554] pci 0000:0b:03.0: reg 0x10: [mem 0xf3bff000-0xf3bff7ff]
[    0.334567] pci 0000:0b:03.0: reg 0x14: [mem 0xf3bf8000-0xf3bfbfff]
[    0.334640] pci 0000:0b:03.0: supports D1 D2
[    0.334642] pci 0000:0b:03.0: PME# supported from D0 D1 D2 D3hot
[    0.334715] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    0.334724] pci 0000:00:1e.0:   bridge window [mem 0xf3b00000-0xf3bfffff]
[    0.334732] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.334734] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.334735] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.334737] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
[    0.335406] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 *10 11 12 14 15)
[    0.335463] ACPI: PCI Interrupt Link [LNKB] (IRQs *5 9 10 11 12 14 15)
[    0.335516] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11 12 14 15)
[    0.335570] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11 12 14 15)
[    0.335625] ACPI: PCI Interrupt Link [LNKE] (IRQs 5 9 10 11 12 14 15) *0, disabled.
[    0.335679] ACPI: PCI Interrupt Link [LNKF] (IRQs *5 9 10 11 12 14 15)
[    0.335734] ACPI: PCI Interrupt Link [LNK0] (IRQs 5 9 10 *11 12 14 15)
[    0.335787] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 9 *10 11 12 14 15)
[    0.335860] ACPI: Enabled 1 GPEs in block 00 to 3F
[    0.335939] vgaarb: setting as boot device: PCI:0000:02:00.0
[    0.335941] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.335944] vgaarb: device added: PCI:0000:06:00.0,decodes=io+mem,owns=none,locks=none
[    0.335946] vgaarb: loaded
[    0.335947] vgaarb: bridge control possible 0000:06:00.0
[    0.335948] vgaarb: bridge control possible 0000:02:00.0
[    0.336130] SCSI subsystem initialized
[    0.336164] libata version 3.00 loaded.
[    0.336184] ACPI: bus type USB registered
[    0.336198] usbcore: registered new interface driver usbfs
[    0.336206] usbcore: registered new interface driver hub
[    0.336226] usbcore: registered new device driver usb
[    0.336333] PCI: Using ACPI for IRQ routing
[    0.341661] PCI: Discovered peer bus ff
[    0.341662] PCI: root bus ff: using default resources
[    0.341663] PCI: Probing PCI hardware (bus ff)
[    0.341686] PCI host bridge to bus 0000:ff
[    0.341688] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    0.341689] pci_bus 0000:ff: root bus resource [mem 0x00000000-0xfffffffff]
[    0.341691] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    0.341693] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[    0.341697] pci 0000:ff:00.0: [8086:2c41] type 00 class 0x060000
[    0.341734] pci 0000:ff:00.1: [8086:2c01] type 00 class 0x060000
[    0.341770] pci 0000:ff:02.0: [8086:2c10] type 00 class 0x060000
[    0.341803] pci 0000:ff:02.1: [8086:2c11] type 00 class 0x060000
[    0.341838] pci 0000:ff:03.0: [8086:2c18] type 00 class 0x060000
[    0.341871] pci 0000:ff:03.1: [8086:2c19] type 00 class 0x060000
[    0.341905] pci 0000:ff:03.4: [8086:2c1c] type 00 class 0x060000
[    0.341940] pci 0000:ff:04.0: [8086:2c20] type 00 class 0x060000
[    0.341972] pci 0000:ff:04.1: [8086:2c21] type 00 class 0x060000
[    0.342006] pci 0000:ff:04.2: [8086:2c22] type 00 class 0x060000
[    0.342039] pci 0000:ff:04.3: [8086:2c23] type 00 class 0x060000
[    0.342073] pci 0000:ff:05.0: [8086:2c28] type 00 class 0x060000
[    0.342106] pci 0000:ff:05.1: [8086:2c29] type 00 class 0x060000
[    0.342139] pci 0000:ff:05.2: [8086:2c2a] type 00 class 0x060000
[    0.342173] pci 0000:ff:05.3: [8086:2c2b] type 00 class 0x060000
[    0.342208] pci 0000:ff:06.0: [8086:2c30] type 00 class 0x060000
[    0.342241] pci 0000:ff:06.1: [8086:2c31] type 00 class 0x060000
[    0.342274] pci 0000:ff:06.2: [8086:2c32] type 00 class 0x060000
[    0.342307] pci 0000:ff:06.3: [8086:2c33] type 00 class 0x060000
[    0.342350] pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
[    0.342352] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[    0.342355] PCI: pci_cache_line_size set to 64 bytes
[    0.342462] e820: reserve RAM buffer [mem 0x00092000-0x0009ffff]
[    0.342463] e820: reserve RAM buffer [mem 0x7f790000-0x7fffffff]
[    0.342558] NetLabel: Initializing
[    0.342559] NetLabel:  domain hash size = 128
[    0.342560] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.342570] NetLabel:  unlabeled traffic allowed by default
[    0.342623] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.342631] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.342633] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.344864] Switched to clocksource hpet
[    0.349822] AppArmor: AppArmor Filesystem Enabled
[    0.349879] pnp: PnP ACPI init
[    0.350064] system 00:00: [io  0x04d0-0x04d1] has been reserved
[    0.350067] system 00:00: [io  0x0800-0x0805] has been reserved
[    0.350068] system 00:00: [io  0x0880-0x088f] has been reserved
[    0.350071] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.350133] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.350432] system 00:02: [io  0x0400-0x04bf] could not be reserved
[    0.350434] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.350621] system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
[    0.350624] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.350723] system 00:04: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.350725] system 00:04: [mem 0x7f800000-0x7fffffff] has been reserved
[    0.350727] system 00:04: [mem 0xfed00000-0xfed000ff] has been reserved
[    0.350728] system 00:04: [mem 0x7f790000-0x7f7fffff] could not be reserved
[    0.350730] system 00:04: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.350732] system 00:04: [mem 0x00100000-0x7f78ffff] could not be reserved
[    0.350734] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.350735] system 00:04: [mem 0xfed13000-0xfed1ffff] has been reserved
[    0.350737] system 00:04: [mem 0xfed20000-0xfed9ffff] has been reserved
[    0.350739] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.350740] system 00:04: [mem 0xffb00000-0xffb7ffff] has been reserved
[    0.350742] system 00:04: [mem 0xfff00000-0xffffffff] has been reserved
[    0.350744] system 00:04: [mem 0x000e0000-0x000effff] could not be reserved
[    0.350746] system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.350755] pnp: PnP ACPI: found 5 devices
[    0.357534] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
[    0.357546] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000
[    0.357572] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.357573] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.357579] pci 0000:00:1c.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
[    0.357582] pci 0000:00:1c.1: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
[    0.357584] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.357591] pci 0000:00:03.0: PCI bridge to [bus 02]
[    0.357594] pci 0000:00:03.0:   bridge window [io  0x9000-0x9fff]
[    0.357597] pci 0000:00:03.0:   bridge window [mem 0xdc000000-0xdfffffff]
[    0.357600] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.357604] pci 0000:04:00.0: PCI bridge to [bus 05]
[    0.357612] pci 0000:06:00.0: BAR 6: assigned [mem 0xdb000000-0xdb01ffff pref]
[    0.357614] pci 0000:04:02.0: PCI bridge to [bus 06]
[    0.357616] pci 0000:04:02.0:   bridge window [io  0xa000-0xafff]
[    0.357620] pci 0000:04:02.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.357623] pci 0000:04:02.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.357627] pci 0000:03:00.0: PCI bridge to [bus 04-06]
[    0.357629] pci 0000:03:00.0:   bridge window [io  0xa000-0xafff]
[    0.357632] pci 0000:03:00.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.357635] pci 0000:03:00.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.357639] pci 0000:00:07.0: PCI bridge to [bus 03-06]
[    0.357641] pci 0000:00:07.0:   bridge window [io  0xa000-0xafff]
[    0.357644] pci 0000:00:07.0:   bridge window [mem 0xd8000000-0xdbffffff]
[    0.357647] pci 0000:00:07.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.357651] pci 0000:00:1c.0: PCI bridge to [bus 07]
[    0.357658] pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
[    0.357665] pci 0000:00:1c.0:   bridge window [mem 0xf3c00000-0xf3cfffff]
[    0.357673] pci 0000:00:1c.0:   bridge window [mem 0x80000000-0x801fffff 64bit pref]
[    0.357681] pci 0000:00:1c.1: PCI bridge to [bus 08]
[    0.357687] pci 0000:00:1c.1:   bridge window [io  0xd000-0xdfff]
[    0.357695] pci 0000:00:1c.1:   bridge window [mem 0xf3a00000-0xf3afffff]
[    0.357702] pci 0000:00:1c.1:   bridge window [mem 0x80200000-0x803fffff 64bit pref]
[    0.357711] pci 0000:00:1c.2: PCI bridge to [bus 09]
[    0.357717] pci 0000:00:1c.2:   bridge window [io  0xc000-0xcfff]
[    0.357725] pci 0000:00:1c.2:   bridge window [mem 0xf3900000-0xf39fffff]
[    0.357732] pci 0000:00:1c.2:   bridge window [mem 0xf3800000-0xf38fffff 64bit pref]
[    0.357741] pci 0000:00:1c.4: PCI bridge to [bus 0a]
[    0.357747] pci 0000:00:1c.4:   bridge window [io  0xb000-0xbfff]
[    0.357755] pci 0000:00:1c.4:   bridge window [mem 0xf3e00000-0xf3efffff]
[    0.357762] pci 0000:00:1c.4:   bridge window [mem 0xf3d00000-0xf3dfffff 64bit pref]
[    0.357771] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    0.357779] pci 0000:00:1e.0:   bridge window [mem 0xf3b00000-0xf3bfffff]
[    0.357790] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.357791] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.357793] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.357794] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
[    0.357796] pci_bus 0000:02: resource 0 [io  0x9000-0x9fff]
[    0.357797] pci_bus 0000:02: resource 1 [mem 0xdc000000-0xdfffffff]
[    0.357799] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.357800] pci_bus 0000:03: resource 0 [io  0xa000-0xafff]
[    0.357802] pci_bus 0000:03: resource 1 [mem 0xd8000000-0xdbffffff]
[    0.357803] pci_bus 0000:03: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.357805] pci_bus 0000:04: resource 0 [io  0xa000-0xafff]
[    0.357806] pci_bus 0000:04: resource 1 [mem 0xd8000000-0xdbffffff]
[    0.357808] pci_bus 0000:04: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.357809] pci_bus 0000:06: resource 0 [io  0xa000-0xafff]
[    0.357811] pci_bus 0000:06: resource 1 [mem 0xd8000000-0xdbffffff]
[    0.357812] pci_bus 0000:06: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.357814] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
[    0.357815] pci_bus 0000:07: resource 1 [mem 0xf3c00000-0xf3cfffff]
[    0.357816] pci_bus 0000:07: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
[    0.357818] pci_bus 0000:08: resource 0 [io  0xd000-0xdfff]
[    0.357819] pci_bus 0000:08: resource 1 [mem 0xf3a00000-0xf3afffff]
[    0.357821] pci_bus 0000:08: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
[    0.357822] pci_bus 0000:09: resource 0 [io  0xc000-0xcfff]
[    0.357824] pci_bus 0000:09: resource 1 [mem 0xf3900000-0xf39fffff]
[    0.357825] pci_bus 0000:09: resource 2 [mem 0xf3800000-0xf38fffff 64bit pref]
[    0.357827] pci_bus 0000:0a: resource 0 [io  0xb000-0xbfff]
[    0.357828] pci_bus 0000:0a: resource 1 [mem 0xf3e00000-0xf3efffff]
[    0.357830] pci_bus 0000:0a: resource 2 [mem 0xf3d00000-0xf3dfffff 64bit pref]
[    0.357831] pci_bus 0000:0b: resource 1 [mem 0xf3b00000-0xf3bfffff]
[    0.357833] pci_bus 0000:0b: resource 4 [io  0x0000-0x0cf7]
[    0.357834] pci_bus 0000:0b: resource 5 [io  0x0d00-0xffff]
[    0.357835] pci_bus 0000:0b: resource 6 [mem 0x000a0000-0x000bffff]
[    0.357837] pci_bus 0000:0b: resource 7 [mem 0x80000000-0xfebfffff]
[    0.357839] pci_bus 0000:ff: resource 4 [io  0x0000-0xffff]
[    0.357841] pci_bus 0000:ff: resource 5 [mem 0x00000000-0xfffffffff]
[    0.357863] NET: Registered protocol family 2
[    0.358063] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.358294] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.358426] TCP: Hash tables configured (established 131072 bind 65536)
[    0.358446] TCP: reno registered
[    0.358463] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.358513] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.358594] NET: Registered protocol family 1
[    0.360177] pci 0000:02:00.0: Video device with shadowed ROM
[    0.360257] PCI: CLS 64 bytes, default 64
[    0.360298] Trying to unpack rootfs image as initramfs...
[    0.637745] Freeing initrd memory: 20480K (ffff8800357f0000 - ffff880036bf0000)
[    0.637761] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.637763] software IO TLB [mem 0x7b790000-0x7f790000] (64MB) mapped at [ffff88007b790000-ffff88007f78ffff]
[    0.638107] microcode: CPU0 sig=0x106a4, pf=0x2, revision=0x12
[    0.638116] microcode: CPU1 sig=0x106a4, pf=0x2, revision=0x12
[    0.638125] microcode: CPU2 sig=0x106a4, pf=0x2, revision=0x12
[    0.638133] microcode: CPU3 sig=0x106a4, pf=0x2, revision=0x12
[    0.638141] microcode: CPU4 sig=0x106a4, pf=0x2, revision=0x12
[    0.638148] microcode: CPU5 sig=0x106a4, pf=0x2, revision=0x12
[    0.638156] microcode: CPU6 sig=0x106a4, pf=0x2, revision=0x12
[    0.638164] microcode: CPU7 sig=0x106a4, pf=0x2, revision=0x12
[    0.638222] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.638244] Scanning for low memory corruption every 60 seconds
[    0.638672] futex hash table entries: 4096 (order: 6, 262144 bytes)
[    0.638713] Initialise system trusted keyring
[    0.638732] audit: initializing netlink subsys (disabled)
[    0.638745] audit: type=2000 audit(1441462611.528:1): initialized
[    0.639019] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.640227] zpool: loaded
[    0.640230] zbud: loaded
[    0.640385] VFS: Disk quotas dquot_6.5.2
[    0.640418] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.640833] fuse init (API version 7.23)
[    0.640960] Key type big_key registered
[    0.641526] Key type asymmetric registered
[    0.641529] Asymmetric key parser 'x509' registered
[    0.641559] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.641612] io scheduler noop registered
[    0.641614] io scheduler deadline registered (default)
[    0.641641] io scheduler cfq registered
[    0.642857] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.642870] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.642902] intel_idle: MWAIT substates: 0x1120
[    0.642914] intel_idle: v0.4 model 0x1A
[    0.642916] intel_idle: lapic_timer_reliable_states 0x2
[    0.643237] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.643241] ACPI: Power Button [PWRB]
[    0.643277] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.643279] ACPI: Power Button [PWRF]
[    0.643776] thermal LNXTHERM:00: registered as thermal_zone0
[    0.643778] ACPI: Thermal Zone [THRM] (58 C)
[    0.643803] GHES: HEST is not enabled!
[    0.643891] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.645520] Linux agpgart interface v0.103
[    0.646741] brd: module loaded
[    0.647363] loop: module loaded
[    0.647555] libphy: Fixed MDIO Bus: probed
[    0.647558] tun: Universal TUN/TAP device driver, 1.6
[    0.647559] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.647602] PPP generic driver version 2.4.2
[    0.647670] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.647674] ehci-pci: EHCI PCI platform driver
[    0.647803] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    0.647808] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    0.647823] ehci-pci 0000:00:1a.7: debug port 1
[    0.651750] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[    0.651766] ehci-pci 0000:00:1a.7: irq 18, io mem 0xf3ffe000
[    0.661022] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    0.661073] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.661074] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.661076] usb usb1: Product: EHCI Host Controller
[    0.661077] usb usb1: Manufacturer: Linux 3.19.0-15-generic ehci_hcd
[    0.661078] usb usb1: SerialNumber: 0000:00:1a.7
[    0.661173] hub 1-0:1.0: USB hub found
[    0.661181] hub 1-0:1.0: 6 ports detected
[    0.661434] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    0.661439] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    0.661453] ehci-pci 0000:00:1d.7: debug port 1
[    0.665367] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[    0.665381] ehci-pci 0000:00:1d.7: irq 23, io mem 0xf3ffd000
[    0.677039] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    0.677103] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.677106] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.677109] usb usb2: Product: EHCI Host Controller
[    0.677112] usb usb2: Manufacturer: Linux 3.19.0-15-generic ehci_hcd
[    0.677114] usb usb2: SerialNumber: 0000:00:1d.7
[    0.677217] hub 2-0:1.0: USB hub found
[    0.677222] hub 2-0:1.0: 6 ports detected
[    0.677360] ehci-platform: EHCI generic platform driver
[    0.677367] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.677371] ohci-pci: OHCI PCI platform driver
[    0.677382] ohci-platform: OHCI generic platform driver
[    0.677388] uhci_hcd: USB Universal Host Controller Interface driver
[    0.677500] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    0.677504] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    0.677513] uhci_hcd 0000:00:1a.0: detected 2 ports
[    0.677548] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff00
[    0.677587] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    0.677589] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.677590] usb usb3: Product: UHCI Host Controller
[    0.677592] usb usb3: Manufacturer: Linux 3.19.0-15-generic uhci_hcd
[    0.677593] usb usb3: SerialNumber: 0000:00:1a.0
[    0.677801] hub 3-0:1.0: USB hub found
[    0.677810] hub 3-0:1.0: 2 ports detected
[    0.678021] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    0.678026] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    0.678034] uhci_hcd 0000:00:1a.1: detected 2 ports
[    0.678068] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fe00
[    0.678105] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    0.678107] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.678109] usb usb4: Product: UHCI Host Controller
[    0.678110] usb usb4: Manufacturer: Linux 3.19.0-15-generic uhci_hcd
[    0.678111] usb usb4: SerialNumber: 0000:00:1a.1
[    0.678294] hub 4-0:1.0: USB hub found
[    0.678302] hub 4-0:1.0: 2 ports detected
[    0.678517] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    0.678522] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[    0.678531] uhci_hcd 0000:00:1a.2: detected 2 ports
[    0.678565] uhci_hcd 0000:00:1a.2: irq 19, io base 0x0000fd00
[    0.678598] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    0.678600] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.678601] usb usb5: Product: UHCI Host Controller
[    0.678602] usb usb5: Manufacturer: Linux 3.19.0-15-generic uhci_hcd
[    0.678604] usb usb5: SerialNumber: 0000:00:1a.2
[    0.678807] hub 5-0:1.0: USB hub found
[    0.678815] hub 5-0:1.0: 2 ports detected
[    0.679016] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    0.679020] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[    0.679027] uhci_hcd 0000:00:1d.0: detected 2 ports
[    0.679051] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fc00
[    0.679089] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    0.679091] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.679093] usb usb6: Product: UHCI Host Controller
[    0.679094] usb usb6: Manufacturer: Linux 3.19.0-15-generic uhci_hcd
[    0.679095] usb usb6: SerialNumber: 0000:00:1d.0
[    0.679278] hub 6-0:1.0: USB hub found
[    0.679287] hub 6-0:1.0: 2 ports detected
[    0.679507] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    0.679511] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[    0.679520] uhci_hcd 0000:00:1d.1: detected 2 ports
[    0.679542] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fb00
[    0.679579] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    0.679581] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.679582] usb usb7: Product: UHCI Host Controller
[    0.679584] usb usb7: Manufacturer: Linux 3.19.0-15-generic uhci_hcd
[    0.679585] usb usb7: SerialNumber: 0000:00:1d.1
[    0.679796] hub 7-0:1.0: USB hub found
[    0.679804] hub 7-0:1.0: 2 ports detected
[    0.680004] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    0.680009] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[    0.680018] uhci_hcd 0000:00:1d.2: detected 2 ports
[    0.680042] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fa00
[    0.680080] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
[    0.680082] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.680083] usb usb8: Product: UHCI Host Controller
[    0.680085] usb usb8: Manufacturer: Linux 3.19.0-15-generic uhci_hcd
[    0.680086] usb usb8: SerialNumber: 0000:00:1d.2
[    0.680298] hub 8-0:1.0: USB hub found
[    0.680306] hub 8-0:1.0: 2 ports detected
[    0.680435] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.682830] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.682833] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.683005] mousedev: PS/2 mouse device common for all mice
[    0.683435] rtc_cmos 00:01: RTC can wake from S4
[    0.683701] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.683740] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[    0.683766] i2c /dev entries driver
[    0.683837] device-mapper: uevent: version 1.0.3
[    0.683958] device-mapper: ioctl: 4.29.0-ioctl (2014-10-28) initialised: dm-devel@redhat.com
[    0.683988] ledtrig-cpu: registered to indicate activity on CPUs
[    0.684289] PCCT header not found.
[    0.684291] ACPI PCC probe failed.
[    0.684481] TCP: cubic registered
[    0.684564] NET: Registered protocol family 10
[    0.684821] NET: Registered protocol family 17
[    0.684829] Key type dns_resolver registered
[    0.685687] Loading compiled-in X.509 certificates
[    0.686543] Loaded X.509 cert 'Magrathea: Glacier signing key: 9e64807092f3a6a8f66f3b7ea4cb3767fdfae08a'
[    0.686555] registered taskstats version 1
[    0.689005] Key type trusted registered
[    0.695874] Key type encrypted registered
[    0.695885] AppArmor: AppArmor sha1 policy hashing enabled
[    0.695891] ima: No TPM chip found, activating TPM-bypass!
[    0.695919] evm: HMAC attrs: 0x1
[    0.696926]   Magic number: 15:596:282
[    0.696952] tty tty19: hash matches
[    0.697222] rtc_cmos 00:01: setting system clock to 2015-09-05 14:16:51 UTC (1441462611)
[    0.699616] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.699618] EDD information not available.
[    0.699658] PM: Hibernation image not present or could not be loaded.
[    0.700507] Freeing unused kernel memory: 1408K (ffffffff81d36000 - ffffffff81e96000)
[    0.700509] Write protecting the kernel read-only data: 12288k
[    0.701024] Freeing unused kernel memory: 188K (ffff8800017d1000 - ffff880001800000)
[    0.701383] Freeing unused kernel memory: 344K (ffff880001baa000 - ffff880001c00000)
[    0.711430] random: systemd-udevd urandom read with 2 bits of entropy available
[    0.729798] pata_jmicron 0000:07:00.1: enabling device (0000 -> 0001)
[    0.730669] scsi host0: pata_jmicron
[    0.730809] scsi host1: pata_jmicron
[    0.730857] ata1: PATA max UDMA/100 cmd 0x8f00 ctl 0x8e00 bmdma 0x8b00 irq 17
[    0.730859] ata2: PATA max UDMA/100 cmd 0x8d00 ctl 0x8c00 bmdma 0x8b08 irq 17
[    0.730880] pata_jmicron 0000:08:00.1: enabling device (0000 -> 0001)
[    0.731662] scsi host2: pata_jmicron
[    0.731789] scsi host3: pata_jmicron
[    0.731830] ata3: PATA max UDMA/100 cmd 0xdf00 ctl 0xde00 bmdma 0xdb00 irq 18
[    0.731832] ata4: PATA max UDMA/100 cmd 0xdd00 ctl 0xdc00 bmdma 0xdb08 irq 18
[    0.732750] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.732759] r8169 0000:09:00.0: can't disable ASPM; OS doesn't have ASPM control
[    0.732888] ahci 0000:00:1f.2: version 3.0
[    0.733006] ahci 0000:00:1f.2: controller can't do SNTF, turning off CAP_SNTF
[    0.733086] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    0.733128] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl RAID mode
[    0.733131] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ccc ems 
[    0.733153] r8169 0000:09:00.0 eth0: RTL8168c/8111c at 0xffffc900018a6000, 00:1f:bc:01:14:12, XID 1c4000c0 IRQ 28
[    0.733155] r8169 0000:09:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[    0.733169] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.733174] r8169 0000:0a:00.0: can't disable ASPM; OS doesn't have ASPM control
[    0.733490] r8169 0000:0a:00.0 eth1: RTL8168c/8111c at 0xffffc90011bb2000, 00:1f:bc:01:14:13, XID 1c4000c0 IRQ 30
[    0.733493] r8169 0000:0a:00.0 eth1: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[    0.773817] scsi host4: ahci
[    0.774079] scsi host5: ahci
[    0.774260] scsi host6: ahci
[    0.774398] scsi host7: ahci
[    0.774517] scsi host8: ahci
[    0.774624] scsi host9: ahci
[    0.774669] ata5: SATA max UDMA/133 abar m2048@0xf3ffc000 port 0xf3ffc100 irq 29
[    0.774675] ata6: SATA max UDMA/133 abar m2048@0xf3ffc000 port 0xf3ffc180 irq 29
[    0.774680] ata7: SATA max UDMA/133 abar m2048@0xf3ffc000 port 0xf3ffc200 irq 29
[    0.774686] ata8: SATA max UDMA/133 abar m2048@0xf3ffc000 port 0xf3ffc280 irq 29
[    0.774688] ata9: SATA max UDMA/133 abar m2048@0xf3ffc000 port 0xf3ffc300 irq 29
[    0.774690] ata10: SATA max UDMA/133 abar m2048@0xf3ffc000 port 0xf3ffc380 irq 29
[    0.789153] ahci 0000:07:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    0.789156] ahci 0000:07:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
[    0.789659] scsi host10: ahci
[    0.790111] scsi host11: ahci
[    0.790166] ata11: SATA max UDMA/133 abar m8192@0xf3cfe000 port 0xf3cfe100 irq 16
[    0.790170] ata12: SATA max UDMA/133 abar m8192@0xf3cfe000 port 0xf3cfe180 irq 16
[    0.793213] firewire_ohci 0000:0b:03.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[    0.805222] ahci 0000:08:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    0.805225] ahci 0000:08:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
[    0.805722] scsi host12: ahci
[    0.806032] scsi host13: ahci
[    0.806081] ata13: SATA max UDMA/133 abar m8192@0xf3afe000 port 0xf3afe100 irq 17
[    0.806084] ata14: SATA max UDMA/133 abar m8192@0xf3afe000 port 0xf3afe180 irq 17
[    1.089483] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.090636] ata5.00: ATA-8: ST3500418AS, CC38, max UDMA/133
[    1.090640] ata5.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.092001] ata5.00: configured for UDMA/133
[    1.113487] ata12: SATA link down (SStatus 0 SControl 300)
[    1.113537] ata11: SATA link down (SStatus 0 SControl 300)
[    1.121361] usb 6-1: new low-speed USB device number 2 using uhci_hcd
[    1.125401] ata14: SATA link down (SStatus 0 SControl 300)
[    1.165348] usb 5-1: new full-speed USB device number 2 using uhci_hcd
[    1.224433] scsi 4:0:0:0: Direct-Access     ATA      ST3500418AS      CC38 PQ: 0 ANSI: 5
[    1.224981] sd 4:0:0:0: Attached scsi generic sg0 type 0
[    1.225019] sd 4:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.225256] sd 4:0:0:0: [sda] Write Protect is off
[    1.225259] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.225390] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.230722]  sda: sda1 sda2
[    1.230934] sda: p2 size 2418298880 extends beyond EOD, enabling native capacity
[    1.232664]  sda: sda1 sda2
[    1.232868] sda: p2 size 2418298880 extends beyond EOD, truncated
[    1.233991] sd 4:0:0:0: [sda] Attached SCSI disk
[    1.293627] firewire_core 0000:0b:03.0: created device fw0: GUID 696100006e566964, S400
[    1.297518] ata13: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.298793] ata13.00: ATAPI: HL-DT-STDVD-RAM GH22LS30, 1.03, max UDMA/100
[    1.300325] ata13.00: configured for UDMA/100
[    1.328530] usb 5-1: New USB device found, idVendor=05e3, idProduct=0604
[    1.328534] usb 5-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    1.328537] usb 5-1: Product: USB Hub
[    1.330589] hub 5-1:1.0: USB hub found
[    1.332504] hub 5-1:1.0: 4 ports detected
[    1.520603] usb 6-1: New USB device found, idVendor=1532, idProduct=000d
[    1.520608] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.520611] usb 6-1: Product: Razer Diamondback 3G
[    1.520614] usb 6-1: Manufacturer: Razer
[    1.536815] hidraw: raw HID events driver (C) Jiri Kosina
[    1.541437] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.542489] ata6.00: ATA-8: ST3500418AS, CC38, max UDMA/133
[    1.542494] ata6.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.543732] ata6.00: configured for UDMA/133
[    1.543866] scsi 5:0:0:0: Direct-Access     ATA      ST3500418AS      CC38 PQ: 0 ANSI: 5
[    1.544093] sd 5:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.544096] sd 5:0:0:0: Attached scsi generic sg1 type 0
[    1.544194] sd 5:0:0:0: [sdb] Write Protect is off
[    1.544197] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.544224] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.553362]  sdb:
[    1.553480] sd 5:0:0:0: [sdb] Attached SCSI disk
[    1.554724] usbcore: registered new interface driver usbhid
[    1.554725] usbhid: USB HID core driver
[    1.556478] input: Razer Razer Diamondback 3G as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.0/0003:1532:000D.0001/input/input5
[    1.556680] hid-generic 0003:1532:000D.0001: input,hidraw0: USB HID v1.10 Mouse [Razer Razer Diamondback 3G] on usb-0000:00:1d.0-1/input0
[    1.614611] usb 5-1.4: new full-speed USB device number 3 using uhci_hcd
[    1.641521] tsc: Refined TSC clocksource calibration: 2918.684 MHz
[    1.752731] usb 5-1.4: New USB device found, idVendor=1532, idProduct=0102
[    1.752733] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.752735] usb 5-1.4: Product: Razer Tarantula Keyboard
[    1.752737] usb 5-1.4: Manufacturer: Razer
[    1.756931] input: Razer Razer Tarantula Keyboard as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1.4/5-1.4:1.0/0003:1532:0102.0002/input/input6
[    1.809638] hid-generic 0003:1532:0102.0002: input,hidraw1: USB HID v1.00 Keyboard [Razer Razer Tarantula Keyboard] on usb-0000:00:1a.2-1.4/input0
[    1.814835] input: Razer Razer Tarantula Keyboard as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1.4/5-1.4:1.1/0003:1532:0102.0003/input/input7
[    1.861569] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.862623] ata7.00: ATA-8: ST3500418AS, CC38, max UDMA/133
[    1.862625] ata7.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.863946] ata7.00: configured for UDMA/133
[    1.864199] scsi 6:0:0:0: Direct-Access     ATA      ST3500418AS      CC38 PQ: 0 ANSI: 5
[    1.864756] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    1.864765] sd 6:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.864948] sd 6:0:0:0: [sdc] Write Protect is off
[    1.864952] sd 6:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[    1.865088] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.869967] hid-generic 0003:1532:0102.0003: input,hidraw2: USB HID v1.00 Device [Razer Razer Tarantula Keyboard] on usb-0000:00:1a.2-1.4/input1
[    1.892866]  sdc:
[    1.893205] sd 6:0:0:0: [sdc] Attached SCSI disk
[    2.085275] device-mapper: table: 252:1: raid: unknown target type
[    2.085392] device-mapper: ioctl: error adding target to table
[    2.086355] Buffer I/O error on dev dm-0, logical block 976768776, async page read
[    2.086472] Buffer I/O error on dev dm-0, logical block 976768776, async page read
[    2.086583] Buffer I/O error on dev dm-0, logical block 976768520, async page read
[    2.086660] Buffer I/O error on dev dm-0, logical block 976768521, async page read
[    2.086773] Buffer I/O error on dev dm-0, logical block 976768522, async page read
[    2.086864] Buffer I/O error on dev dm-0, logical block 976768523, async page read
[    2.086973] Buffer I/O error on dev dm-0, logical block 976768524, async page read
[    2.087083] Buffer I/O error on dev dm-0, logical block 976768525, async page read
[    2.087167] Buffer I/O error on dev dm-0, logical block 976768526, async page read
[    2.087242] Buffer I/O error on dev dm-0, logical block 976768527, async page read
[    2.111645] device-mapper: table: 252:1: raid: unknown target type
[    2.111744] device-mapper: ioctl: error adding target to table
[    2.158757]  sda: sda1 sda2
[    2.158829] sda: p2 size 2418298880 extends beyond EOD, truncated
[    2.159586]  sdb:
[    2.181800] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.182803] ata8.00: ATA-8: ST3500418AS, CC38, max UDMA/133
[    2.182806] ata8.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.183966] ata8.00: configured for UDMA/133
[    2.184216] scsi 7:0:0:0: Direct-Access     ATA      ST3500418AS      CC38 PQ: 0 ANSI: 5
[    2.184556] sd 7:0:0:0: [sdd] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    2.184564] sd 7:0:0:0: Attached scsi generic sg3 type 0
[    2.184695] sd 7:0:0:0: [sdd] Write Protect is off
[    2.184698] sd 7:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[    2.184840] sd 7:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.190613]  sdd: sdd1 sdd2
[    2.190690] sdd: p2 size 2418298880 extends beyond EOD, enabling native capacity
[    2.191648]  sdd: sdd1 sdd2
[    2.191790] sdd: p2 size 2418298880 extends beyond EOD, truncated
[    2.192346] sd 7:0:0:0: [sdd] Attached SCSI disk
[    2.224848] random: nonblocking pool is initialized
[    2.342576] device-mapper: table: 252:0: raid: unknown target type
[    2.342703] device-mapper: ioctl: error adding target to table
[    2.355900]  sda: sda1 sda2
[    2.356078] sda: p2 size 2418298880 extends beyond EOD, truncated
[    2.356776]  sdb:
[    2.357247]  sdc:
[    2.502000] ata9: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.509676] ata9.00: ATA-8: WDC WD3000HLFS-01G6U0, 04.04V01, max UDMA/133
[    2.509681] ata9.00: 586072368 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.517666] ata9.00: configured for UDMA/133
[    2.518018] scsi 8:0:0:0: Direct-Access     ATA      WDC WD3000HLFS-0 4V01 PQ: 0 ANSI: 5
[    2.518524] sd 8:0:0:0: Attached scsi generic sg4 type 0
[    2.518543] sd 8:0:0:0: [sde] 586072368 512-byte logical blocks: (300 GB/279 GiB)
[    2.518578] sd 8:0:0:0: [sde] Write Protect is off
[    2.518580] sd 8:0:0:0: [sde] Mode Sense: 00 3a 00 00
[    2.518592] sd 8:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.539482]  sde: sde1 sde2 < sde5 >
[    2.539997] sd 8:0:0:0: [sde] Attached SCSI disk
[    2.642181] Switched to clocksource tsc
[    2.838067] ata10: SATA link down (SStatus 0 SControl 300)
[    2.839635] scsi 12:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GH22LS30 1.03 PQ: 0 ANSI: 5
[    2.856086] sr 12:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.856090] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.856392] sr 12:0:0:0: Attached scsi CD-ROM sr0
[    2.856648] sr 12:0:0:0: Attached scsi generic sg5 type 5
[    2.993529] EXT4-fs (sde1): INFO: recovery required on readonly filesystem
[    2.993532] EXT4-fs (sde1): write access will be enabled during recovery
[    3.273657] EXT4-fs (sde1): orphan cleanup on readonly fs
[    3.293755] EXT4-fs (sde1): 2 orphan inodes deleted
[    3.293758] EXT4-fs (sde1): recovery complete
[    3.370948] EXT4-fs (sde1): mounted filesystem with ordered data mode. Opts: (null)
[    3.763255] systemd[1]: RTC configured in localtime, applying delta of -240 minutes to system time.
[    3.927374] systemd[1]: Inserted module 'autofs4'
[    4.013179] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    4.013331] systemd[1]: Detected architecture x86-64.
[    4.018090] systemd[1]: Set hostname to <Leviathan>.
[    4.554622] systemd[1]: Created slice Root Slice.
[    4.554633] systemd[1]: Starting Root Slice.
[    4.554704] systemd[1]: Created slice System Slice.
[    4.554715] systemd[1]: Starting System Slice.
[    4.554840] systemd[1]: Listening on udev Kernel Socket.
[    4.554853] systemd[1]: Starting udev Kernel Socket.
[    4.554884] systemd[1]: Listening on Delayed Shutdown Socket.
[    4.554890] systemd[1]: Starting Delayed Shutdown Socket.
[    4.554908] systemd[1]: Listening on udev Control Socket.
[    4.554915] systemd[1]: Starting udev Control Socket.
[    4.554933] systemd[1]: Listening on fsck to fsckd communication Socket.
[    4.554939] systemd[1]: Starting fsck to fsckd communication Socket.
[    4.554958] systemd[1]: Listening on Journal Audit Socket.
[    4.554964] systemd[1]: Starting Journal Audit Socket.
[    4.555343] systemd[1]: Starting Increase datagram queue length...
[    4.555398] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    4.555406] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[    4.555486] systemd[1]: Created slice system-getty.slice.
[    4.555493] systemd[1]: Starting system-getty.slice.
[    4.555573] systemd[1]: Created slice User and Session Slice.
[    4.555583] systemd[1]: Starting User and Session Slice.
[    4.555594] systemd[1]: Reached target Slices.
[    4.555600] systemd[1]: Starting Slices.
[    4.555611] systemd[1]: Reached target Encrypted Volumes.
[    4.555617] systemd[1]: Starting Encrypted Volumes.
[    4.555758] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    4.555768] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[    4.555799] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    4.555806] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[    4.555839] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.555846] systemd[1]: Starting Journal Socket (/dev/log).
[    4.555858] systemd[1]: Reached target Remote File Systems (Pre).
[    4.555863] systemd[1]: Starting Remote File Systems (Pre).
[    4.555897] systemd[1]: Listening on Journal Socket.
[    4.555908] systemd[1]: Starting Journal Socket.
[    4.556303] systemd[1]: Mounting Debug File System...
[    4.556732] systemd[1]: Starting Nameserver information manager...
[    4.610520] systemd[1]: Started Set Up Additional Binary Formats.
[    4.611058] systemd[1]: Starting udev Coldplug all Devices...
[    4.611500] systemd[1]: Started Braille Device Support.
[    4.611705] systemd[1]: Starting Braille Device Support...
[    4.612155] systemd[1]: Started Read required files in advance.
[    4.612197] systemd[1]: Starting Read required files in advance...
[    4.612623] systemd[1]: Starting Uncomplicated firewall...
[    4.613057] systemd[1]: Mounting POSIX Message Queue File System...
[    4.716396] systemd[1]: Starting Load Kernel Modules...
[    4.716810] systemd[1]: Starting Setup Virtual Console...
[    4.717286] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    4.717747] systemd[1]: Mounting Huge Pages File System...
[    4.728029] systemd[1]: Started Setup Virtual Console.
[    4.750611] systemd[1]: Started Uncomplicated firewall.
[    4.788341] systemd[1]: Started udev Coldplug all Devices.
[    4.788848] systemd[1]: Starting udev Wait for Complete Device Initialization...
[    4.789249] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    4.789755] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.863436] systemd[1]: Mounted POSIX Message Queue File System.
[    4.863468] systemd[1]: Mounted Debug File System.
[    4.863494] systemd[1]: Mounted Huge Pages File System.
[    4.863668] systemd[1]: Started Increase datagram queue length.
[    4.870599] systemd[1]: Listening on Syslog Socket.
[    4.870609] systemd[1]: Starting Syslog Socket.
[    4.871055] systemd[1]: Starting Journal Service...
[    4.879404] systemd[1]: Started Nameserver information manager.
[    5.118588] lp: driver loaded but no devices found
[    5.127944] ppdev: user-space parallel port driver
[    5.202784] systemd[1]: Started Load Kernel Modules.
[    5.203292] systemd[1]: Starting Apply Kernel Variables...
[    5.203721] systemd[1]: Mounting FUSE Control File System...
[    5.203784] systemd[1]: Mounted Configuration File System.
[    5.205125] systemd[1]: Mounted FUSE Control File System.
[    5.220717] systemd[1]: Started Journal Service.
[    6.005773] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000429-0x0000000000000429 (\PM2S) (20141107/utaddress-258)
[    6.005778] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.005785] ACPI Warning: SystemIO range 0x00000000000004b0-0x00000000000004bf conflicts with OpRegion 0x00000000000004b8-0x00000000000004bb (\GPO2) (20141107/utaddress-258)
[    6.005788] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.005789] ACPI Warning: SystemIO range 0x0000000000000480-0x00000000000004af conflicts with OpRegion 0x000000000000048c-0x000000000000048f (\GPO_) (20141107/utaddress-258)
[    6.005791] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.005792] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.017913] EDAC MC: Ver: 3.0.0
[    6.037782] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.041475] i5500_temp 0000:00:14.3: Sensor seems to be disabled
[    6.043351] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
[    6.043386] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
[    6.043390] EDAC i7core: Driver loaded, 1 memory controller(s) found.
[    6.069913] wmi: Mapper loaded
[    6.241960] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[    6.331993] device-mapper: multipath: version 1.7.0 loaded
[    6.380066] [drm] Initialized drm 1.1.0 20060810
[    6.458464] sound hdaudioC0D2: autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[    6.458467] sound hdaudioC0D2:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.458469] sound hdaudioC0D2:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    6.458470] sound hdaudioC0D2:    mono: mono_out=0x0
[    6.458472] sound hdaudioC0D2:    dig-out=0x11/0x1e
[    6.458473] sound hdaudioC0D2:    inputs:
[    6.458475] sound hdaudioC0D2:      Front Mic=0x19
[    6.458476] sound hdaudioC0D2:      Rear Mic=0x18
[    6.458478] sound hdaudioC0D2:      Line=0x1a
[    6.458479] sound hdaudioC0D2:    dig-in=0x1f
[    6.471837] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    6.472182] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    6.472260] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    6.472322] input: HDA Intel Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    6.472394] input: HDA Intel Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    6.472457] input: HDA Intel Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    6.472516] input: HDA Intel Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    6.472578] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    7.049646] Adding 12571644k swap on /dev/sde5.  Priority:-1 extents:1 across:12571644k FS
[    7.082686]  sda: sda1 sda2
[    7.082740] sda: p2 size 2418298880 extends beyond EOD, truncated
[    7.083278]  sdc:
[    7.196043] raid6: sse2x1    7501 MB/s
[    7.264060] raid6: sse2x2    8899 MB/s
[    7.332074] raid6: sse2x4    9711 MB/s
[    7.332077] raid6: using algorithm sse2x4 (9711 MB/s)
[    7.332079] raid6: using ssse3x2 recovery algorithm
[    7.354045] async_tx: api initialized (async)
[    7.365011] xor: measuring software checksum speed
[    7.404021]    prefetch64-sse: 12362.000 MB/sec
[    7.444039]    generic_sse: 10986.000 MB/sec
[    7.444041] xor: using function: prefetch64-sse (12362.000 MB/sec)
[    7.538983] md: raid10 personality registered for level 10
[    7.550136] md: raid1 personality registered for level 1
[    7.576884] md: raid6 personality registered for level 6
[    7.576886] md: raid5 personality registered for level 5
[    7.576887] md: raid4 personality registered for level 4
[    7.586432] device-mapper: raid: Loading target version 1.6.0
[    7.587569] md/raid:mdX: device sdd operational as raid disk 3
[    7.587572] md/raid:mdX: device sdc operational as raid disk 2
[    7.587573] md/raid:mdX: device sdb operational as raid disk 1
[    7.587574] md/raid:mdX: device sda operational as raid disk 0
[    7.587825] md/raid:mdX: allocated 0kB
[    7.587841] md/raid:mdX: raid level 5 active with 4 out of 4 devices, algorithm 0
[    7.587842] RAID conf printout:
[    7.587843]  --- level:5 rd:4 wd:4
[    7.587844]  disk 0, o:1, dev:sda
[    7.587845]  disk 1, o:1, dev:sdb
[    7.587846]  disk 2, o:1, dev:sdc
[    7.587847]  disk 3, o:1, dev:sdd
[    7.598782] nvidia: module license 'NVIDIA' taints kernel.
[    7.598784] Disabling lock debugging due to kernel taint
[    7.604776] nvidia: module verification failed: signature and/or  required key missing - tainting kernel
[    7.610655] vgaarb: device changed decodes: PCI:0000:02:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    7.610880] nvidia 0000:06:00.0: enabling device (0000 -> 0003)
[    7.610919] vgaarb: device changed decodes: PCI:0000:06:00.0,olddecodes=io+mem,decodes=none:owns=none
[    7.611217] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:02:00.0 on minor 0
[    7.611283] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:06:00.0 on minor 1
[    7.611292] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  340.76  Thu Jan 22 12:11:08 PST 2015
[    7.617368]  sda: sda1 sda2
[    7.617479] sda: p2 size 2418298880 extends beyond EOD, truncated
[    7.618222]  sdb:
[    7.618719]  sdc:
[    8.248216] EXT4-fs (sde1): re-mounted. Opts: errors=remount-ro
[    8.360033] systemd-journald[538]: Received request to flush runtime journal from PID 1
[    8.867064] audit: type=1400 audit(1441477019.660:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=980 comm="apparmor_parser"
[    8.867071] audit: type=1400 audit(1441477019.660:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=980 comm="apparmor_parser"
[    8.878731] audit: type=1400 audit(1441477019.672:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=980 comm="apparmor_parser"
[    8.878736] audit: type=1400 audit(1441477019.672:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=980 comm="apparmor_parser"
[    8.878740] audit: type=1400 audit(1441477019.672:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=980 comm="apparmor_parser"
[    8.878744] audit: type=1400 audit(1441477019.672:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=980 comm="apparmor_parser"
[    8.902878] audit: type=1400 audit(1441477019.696:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=980 comm="apparmor_parser"
[    8.902884] audit: type=1400 audit(1441477019.696:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=980 comm="apparmor_parser"
[    8.902888] audit: type=1400 audit(1441477019.696:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=980 comm="apparmor_parser"
[    8.902892] audit: type=1400 audit(1441477019.696:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=980 comm="apparmor_parser"
[    9.626464] cgroup: new mount options do not match the existing superblock, will be ignored
[   11.815496] cfg80211: Calling CRDA to update world regulatory domain
[   12.039121] cfg80211: World regulatory domain updated:
[   12.039125] cfg80211:  DFS Master region: unset
[   12.039126] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   12.039128] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   12.039130] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   12.039131] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   12.039133] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   12.039134] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   12.311858] r8169 0000:09:00.0 eth0: link down
[   12.311881] r8169 0000:09:00.0 eth0: link down
[   12.343803] r8169 0000:0a:00.0 eth1: link down
[   14.012705] r8169 0000:09:00.0 eth0: link up
[  599.594171] show_signal_msg: 36 callbacks suppressed
[  599.594177] kscreen_backend[3833]: segfault at 7f67628ae050 ip 00007f6761b67212 sp 00007ffd9e841018 error 4 in libQt5Gui.so.5.4.1[7f6761a84000+52b000]
[  901.321029] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[  901.335775] JFS: nTxBlock = 8192, nTxLock = 65536
[  901.355428] ntfs: driver 2.1.31 [Flags: R/O MODULE].
[  901.376344] QNX4 filesystem 0.2.3 registered.
[  901.422035] Btrfs loaded
[  901.917729] EXT4-fs (sde2): unable to read superblock
[  901.919274] EXT4-fs (sde2): unable to read superblock
[  901.920638] EXT4-fs (sde2): unable to read superblock
[  901.922239] FAT-fs (sde2): bogus number of reserved sectors
[  901.922364] FAT-fs (sde2): Can't find a valid FAT filesystem
[  901.941162] XFS (sde2): Invalid superblock magic number
[  901.943264] FAT-fs (sde2): bogus number of reserved sectors
[  901.943390] FAT-fs (sde2): Can't find a valid FAT filesystem
[  901.946486] MINIX-fs: unable to read superblock
[  901.950165] attempt to access beyond end of device
[  901.950171] sde2: rw=16, want=3, limit=2
[  901.950174] hfsplus: unable to find HFS+ superblock
[  901.951828] qnx4: no qnx4 filesystem (no root dir).
[  901.953448] ufs: You didn't specify the type of your ufs filesystem

mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...

>>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is ufstype=old
[  901.956631] hfs: can't find a HFS filesystem on dev sde2
[ 1025.864027] kactivitymanage[4787]: segfault at 7ffb3bc56cd0 ip 00007ffb1c1e4031 sp 00007ffe59638108 error 4 in libQt5Sql.so.5.4.1[7ffb1c1d0000+3f000]
[ 1120.170412] traps: metacity[24444] trap int3 ip:7fc199789d00 sp:7ffc458a46b0 error:0
[ 1480.061463] perf interrupt took too long (2553 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[ 2230.473543] traps: nautilus[25355] trap int3 ip:7f6cffb3fd00 sp:7ffd43aad180 error:0
[ 2991.714625] traps: nautilus[31281] trap int3 ip:7f8688b54d00 sp:7fff5a8f6880 error:0
[ 3008.235509] traps: nautilus[4155] trap int3 ip:7f3b02122d00 sp:7ffe265decf0 error:0
[ 3029.565250] traps: nautilus[4801] trap int3 ip:7fe497df0d00 sp:7ffe718eca80 error:0
[ 3064.943426] traps: gnome-panel[25326] trap int3 ip:7fb02b15fd00 sp:7ffd44d09fe0 error:0
[ 3519.270178] traps: gnome-terminal-[25575] trap int3 ip:7f42170b8d00 sp:7fffa0ad2a40 error:0
Download as text