Ubuntu Pastebin

Paste from root at Fri, 2 Sep 2016 18:30: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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.0-37-generic (buildd@lcy01-03) (gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.3) ) #56~14.04.1-Ubuntu SMP Mon Aug 29 20:51:23 UTC 2016 (Ubuntu 4.4.0-37.56~14.04.1-generic 4.4.19)
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.4.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  960, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]: 1024, xstate_sizes[4]:   64
[    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: Supporting XSAVE feature 0x08: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x10: 'MPX CSR'
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 1088 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 0x0000000000000000-0x000000000009c7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009c800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000045e4bfff] usable
[    0.000000] BIOS-e820: [mem 0x0000000045e4c000-0x0000000045e4cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000045e4d000-0x0000000045e96fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000045e97000-0x0000000045eeefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000045eef000-0x0000000046bdffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000046be0000-0x0000000046bf5fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000046bf6000-0x00000000479cbfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000479cc000-0x0000000047f99fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000047f9a000-0x0000000047fcbfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000047fcc000-0x0000000047ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000048000000-0x00000000480fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000008b67fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./Z170X-GamingG1, BIOS F7 03/11/2016
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x8b6800 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0080000000 mask 7F80000000 uncachable
[    0.000000]   1 base 0060000000 mask 7FE0000000 uncachable
[    0.000000]   2 base 0050000000 mask 7FF0000000 uncachable
[    0.000000]   3 base 004C000000 mask 7FFC000000 uncachable
[    0.000000]   4 base 004A000000 mask 7FFE000000 uncachable
[    0.000000]   5 base 0049000000 mask 7FFF000000 uncachable
[    0.000000]   6 base 0048800000 mask 7FFF800000 uncachable
[    0.000000]   7 disabled
[    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: last_pfn = 0x48000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcc90-0x000fcc9f] mapped at [ffff8800000fcc90]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x02204000, 0x02204fff] PGTABLE
[    0.000000] BRK [0x02205000, 0x02205fff] PGTABLE
[    0.000000] BRK [0x02206000, 0x02206fff] PGTABLE
[    0.000000] BRK [0x02207000, 0x02207fff] PGTABLE
[    0.000000] BRK [0x02208000, 0x02208fff] PGTABLE
[    0.000000] BRK [0x02209000, 0x02209fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x3563c000-0x36b15fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x0000000047F1E0A0 0000BC (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x0000000047F40FE8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x0000000047F1E1F0 022DF5 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x0000000047F99F80 000040
[    0.000000] ACPI: APIC 0x0000000047F410F8 0000BC (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x0000000047F411B8 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x0000000047F41200 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x0000000047F412A0 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x0000000047F412E0 000038 (v01 ALASKA A M I    01072009 AMI. 0005000B)
[    0.000000] ACPI: SSDT 0x0000000047F41318 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000047F41688 000490 (v02 Intel  PerfTune 00001000 INTL 20120913)
[    0.000000] ACPI: LPIT 0x0000000047F41B18 000094 (v01 INTEL  SKL      00000000 MSFT 0000005F)
[    0.000000] ACPI: SSDT 0x0000000047F41BB0 000248 (v02 INTEL  sensrhub 00000000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000047F41DF8 002BAE (v02 INTEL  PtidDevc 00001000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000047F449A8 000C45 (v02 INTEL  Ther_Rvp 00001000 INTL 20120913)
[    0.000000] ACPI: DBGP 0x0000000047F455F0 000034 (v01 INTEL           00000000 MSFT 0000005F)
[    0.000000] ACPI: DBG2 0x0000000047F45628 000054 (v00 INTEL           00000000 MSFT 0000005F)
[    0.000000] ACPI: SSDT 0x0000000047F45680 002103 (v02 INTEL  xh_rvp10 00000000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000047F47788 005384 (v02 SaSsdt SaSsdt   00003000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x0000000047F4CB10 000042 (v01 ALASKA A M I    00000000      00000000)
[    0.000000] ACPI: SSDT 0x0000000047F4CB58 000E58 (v02 CpuRef CpuSsdt  00003000 INTL 20120913)
[    0.000000] ACPI: ASF! 0x0000000047F4D9B0 0000A5 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x00000008b67fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x8b67f9000-0x8b67fdfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000008b67fffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009bfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000045e4bfff]
[    0.000000]   node   0: [mem 0x0000000045e97000-0x0000000045eeefff]
[    0.000000]   node   0: [mem 0x0000000046be0000-0x0000000046bf5fff]
[    0.000000]   node   0: [mem 0x0000000047fcc000-0x0000000047ffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x00000008b67fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x00000008b67fffff]
[    0.000000] On node 0 totalpages: 8373897
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3995 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 4412 pages used for memmap
[    0.000000]   DMA32 zone: 282350 pages, LIFO batch:31
[    0.000000]   Normal zone: 126368 pages used for memmap
[    0.000000]   Normal zone: 8087552 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    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] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    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 8 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x45e4c000-0x45e4cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x45e4d000-0x45e96fff]
[    0.000000] PM: Registered nosave memory: [mem 0x45eef000-0x46bdffff]
[    0.000000] PM: Registered nosave memory: [mem 0x46bf6000-0x479cbfff]
[    0.000000] PM: Registered nosave memory: [mem 0x479cc000-0x47f99fff]
[    0.000000] PM: Registered nosave memory: [mem 0x47f9a000-0x47fcbfff]
[    0.000000] PM: Registered nosave memory: [mem 0x48000000-0x480fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x48100000-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-0xfe010fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0x48100000-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:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 33 pages/cpu @ffff8808b6400000 s98008 r8192 d28968 u262144
[    0.000000] pcpu-alloc: s98008 r8192 d28968 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 8243032
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.4.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
[    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: 32863996K/33495588K available (8187K kernel code, 1292K rwdata, 3960K rodata, 1484K init, 1292K bss, 631592K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    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=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:16640 nr_irqs:2048 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Unable to calibrate against PIT
[    0.000000] tsc: using HPET reference calibration
[    0.000000] tsc: Detected 3408.307 MHz processor
[    0.000019] Calibrating delay loop (skipped), value calculated using timer frequency.. 6816.61 BogoMIPS (lpj=13633228)
[    0.000021] pid_max: default: 32768 minimum: 301
[    0.000024] ACPI: Core revision 20150930
[    0.020707] ACPI: 9 ACPI AML tables successfully acquired and loaded
[    0.020719] Security Framework initialized
[    0.020720] Yama: becoming mindful.
[    0.020729] AppArmor: AppArmor initialized
[    0.021975] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.025479] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.026948] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.026965] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.027139] Initializing cgroup subsys io
[    0.027141] Initializing cgroup subsys memory
[    0.027144] Initializing cgroup subsys devices
[    0.027145] Initializing cgroup subsys freezer
[    0.027146] Initializing cgroup subsys net_cls
[    0.027147] Initializing cgroup subsys perf_event
[    0.027149] Initializing cgroup subsys net_prio
[    0.027150] Initializing cgroup subsys hugetlb
[    0.027151] Initializing cgroup subsys pids
[    0.027260] CPU: Physical Processor ID: 0
[    0.027261] CPU: Processor Core ID: 0
[    0.028260] mce: CPU supports 10 MCE banks
[    0.028272] CPU0: Thermal monitoring enabled (TM1)
[    0.028279] process: using mwait in idle threads
[    0.028281] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.028281] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.028499] Freeing SMP alternatives memory: 28K (ffffffff820b8000 - ffffffff820bf000)
[    0.038708] ftrace: allocating 32041 entries in 126 pages
[    0.047082] smpboot: Max logical packages: 2
[    0.047084] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.048385] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.051490] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.091177] TSC deadline timer enabled
[    0.091182] smpboot: CPU0: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.091192] Performance Events: PEBS fmt3+, 32-deep LBR, Skylake events, full-width counters, Intel PMU driver.
[    0.091209] ... version:                4
[    0.091210] ... bit width:              48
[    0.091210] ... generic registers:      4
[    0.091211] ... value mask:             0000ffffffffffff
[    0.091211] ... max period:             0000ffffffffffff
[    0.091212] ... fixed-purpose events:   3
[    0.091212] ... event mask:             000000070000000f
[    0.091708] x86: Booting SMP configuration:
[    0.091709] .... node  #0, CPUs:      #1
[    0.095363] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.095402]  #2 #3 #4 #5 #6 #7
[    0.116351] x86: Booted up 1 node, 8 CPUs
[    0.116353] smpboot: Total of 8 processors activated (54532.91 BogoMIPS)
[    0.122727] devtmpfs: initialized
[    0.125423] evm: security.selinux
[    0.125424] evm: security.SMACK64
[    0.125424] evm: security.SMACK64EXEC
[    0.125425] evm: security.SMACK64TRANSMUTE
[    0.125425] evm: security.SMACK64MMAP
[    0.125426] evm: security.ima
[    0.125426] evm: security.capability
[    0.125456] PM: Registering ACPI NVS region [mem 0x45e4c000-0x45e4cfff] (4096 bytes)
[    0.125457] PM: Registering ACPI NVS region [mem 0x479cc000-0x47f99fff] (6086656 bytes)
[    0.125546] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.125606] pinctrl core: initialized pinctrl subsystem
[    0.125746] RTC time: 18:24:57, date: 09/02/16
[    0.125819] NET: Registered protocol family 16
[    0.134596] cpuidle: using governor ladder
[    0.146595] cpuidle: using governor menu
[    0.146603] PCCT header not found.
[    0.146734] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.146735] ACPI: bus type PCI registered
[    0.146736] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.146785] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.146787] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.146795] PCI: Using configuration type 1 for base access
[    0.158882] ACPI: Added _OSI(Module Device)
[    0.158883] ACPI: Added _OSI(Processor Device)
[    0.158884] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.158885] ACPI: Added _OSI(Processor Aggregator Device)
[    0.163722] ACPI: Executed 23 blocks of module-level executable AML code
[    0.167524] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.228487] ACPI: Dynamic OEM Table Load:
[    0.228493] ACPI: SSDT 0xFFFF8808927FA000 0006E4 (v02 PmRef  Cpu0Ist  00003000 INTL 20120913)
[    0.229204] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.230101] ACPI: Dynamic OEM Table Load:
[    0.230104] ACPI: SSDT 0xFFFF880891D13400 00037F (v02 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    0.231049] ACPI: Dynamic OEM Table Load:
[    0.231052] ACPI: SSDT 0xFFFF8808927FA800 0005AA (v02 PmRef  ApIst    00003000 INTL 20120913)
[    0.231724] ACPI: Dynamic OEM Table Load:
[    0.231727] ACPI: SSDT 0xFFFF880891CFBC00 000119 (v02 PmRef  ApCst    00003000 INTL 20120913)
[    0.235034] ACPI: Interpreter enabled
[    0.235040] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
[    0.235044] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.235056] ACPI: (supports S0 S3 S4 S5)
[    0.235056] ACPI: Using IOAPIC for interrupt routing
[    0.235075] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.236205] ACPI: Power Resource [PG00] (on)
[    0.236419] ACPI: Power Resource [PG01] (on)
[    0.236615] ACPI: Power Resource [PG02] (on)
[    0.237810] ACPI: Power Resource [WRST] (off)
[    0.237986] ACPI: Power Resource [WRST] (off)
[    0.238212] ACPI: Power Resource [WRST] (off)
[    0.238388] ACPI: Power Resource [WRST] (off)
[    0.238569] ACPI: Power Resource [WRST] (off)
[    0.238749] ACPI: Power Resource [WRST] (off)
[    0.238924] ACPI: Power Resource [WRST] (off)
[    0.239099] ACPI: Power Resource [WRST] (off)
[    0.239288] ACPI: Power Resource [WRST] (off)
[    0.239477] ACPI: Power Resource [WRST] (off)
[    0.239649] ACPI: Power Resource [WRST] (off)
[    0.239822] ACPI: Power Resource [WRST] (off)
[    0.239993] ACPI: Power Resource [WRST] (off)
[    0.240168] ACPI: Power Resource [WRST] (off)
[    0.240345] ACPI: Power Resource [WRST] (off)
[    0.240521] ACPI: Power Resource [WRST] (off)
[    0.240694] ACPI: Power Resource [WRST] (off)
[    0.240866] ACPI: Power Resource [WRST] (off)
[    0.241038] ACPI: Power Resource [WRST] (off)
[    0.241210] ACPI: Power Resource [WRST] (off)
[    0.245516] ACPI: Power Resource [FN00] (off)
[    0.245558] ACPI: Power Resource [FN01] (off)
[    0.245599] ACPI: Power Resource [FN02] (off)
[    0.245641] ACPI: Power Resource [FN03] (off)
[    0.245681] ACPI: Power Resource [FN04] (off)
[    0.246381] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.246385] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.246403] \_SB_.PCI0:_OSC invalid UUID
[    0.246404] _OSC request data:1 1f 0 
[    0.246406] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.246795] PCI host bridge to bus 0000:00
[    0.246796] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.246797] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.246798] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.246799] pci_bus 0000:00: root bus resource [mem 0x48800000-0xdfffffff window]
[    0.246800] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.246801] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.246805] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[    0.246979] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    0.247005] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.247075] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.247178] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[    0.247201] pci 0000:00:14.0: reg 0x10: [mem 0xdc910000-0xdc91ffff 64bit]
[    0.247246] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.247306] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.247331] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
[    0.247352] pci 0000:00:14.2: reg 0x10: [mem 0xdc92e000-0xdc92efff 64bit]
[    0.247464] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[    0.247490] pci 0000:00:16.0: reg 0x10: [mem 0xdc92d000-0xdc92dfff 64bit]
[    0.247540] pci 0000:00:16.0: PME# supported from D3hot
[    0.247635] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[    0.247655] pci 0000:00:17.0: reg 0x10: [mem 0xdc928000-0xdc929fff]
[    0.247663] pci 0000:00:17.0: reg 0x14: [mem 0xdc92c000-0xdc92c0ff]
[    0.247671] pci 0000:00:17.0: reg 0x18: [io  0xf050-0xf057]
[    0.247678] pci 0000:00:17.0: reg 0x1c: [io  0xf040-0xf043]
[    0.247684] pci 0000:00:17.0: reg 0x20: [io  0xf020-0xf03f]
[    0.247690] pci 0000:00:17.0: reg 0x24: [mem 0xdc92b000-0xdc92b7ff]
[    0.247717] pci 0000:00:17.0: PME# supported from D3hot
[    0.247799] pci 0000:00:1b.0: [8086:a167] type 01 class 0x060400
[    0.247848] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.247918] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.247961] pci 0000:00:1c.0: [8086:a110] type 01 class 0x060400
[    0.248003] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.248070] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.248091] pci 0000:00:1c.1: [8086:a111] type 01 class 0x060400
[    0.248133] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.248200] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.248219] pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
[    0.248262] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.248329] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.248349] pci 0000:00:1c.3: [8086:a113] type 01 class 0x060400
[    0.248391] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.248457] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.248478] pci 0000:00:1c.4: [8086:a114] type 01 class 0x060400
[    0.248520] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.248586] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.248616] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
[    0.248660] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.248726] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.248749] pci 0000:00:1d.2: [8086:a11a] type 01 class 0x060400
[    0.248793] pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold
[    0.248861] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.248886] pci 0000:00:1d.4: [8086:a11c] type 01 class 0x060400
[    0.248934] pci 0000:00:1d.4: PME# supported from D0 D3hot D3cold
[    0.248998] pci 0000:00:1d.4: System wakeup disabled by ACPI
[    0.249031] pci 0000:00:1f.0: [8086:a145] type 00 class 0x060100
[    0.249189] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[    0.249201] pci 0000:00:1f.2: reg 0x10: [mem 0xdc924000-0xdc927fff]
[    0.249314] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[    0.249344] pci 0000:00:1f.3: reg 0x10: [mem 0xdc920000-0xdc923fff 64bit]
[    0.249372] pci 0000:00:1f.3: reg 0x20: [mem 0xdc900000-0xdc90ffff 64bit]
[    0.249402] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.249488] pci 0000:00:1f.3: System wakeup disabled by ACPI
[    0.249516] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[    0.249569] pci 0000:00:1f.4: reg 0x10: [mem 0xdc92a000-0xdc92a0ff 64bit]
[    0.249638] pci 0000:00:1f.4: reg 0x20: [io  0xf000-0xf01f]
[    0.249799] pci 0000:01:00.0: [10b5:8747] type 01 class 0x060400
[    0.249813] pci 0000:01:00.0: reg 0x10: [mem 0xdc100000-0xdc13ffff]
[    0.249854] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.249872] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.258685] pci 0000:00:01.0: PCI bridge to [bus 01-04]
[    0.258692] pci 0000:00:01.0:   bridge window [io  0x9000-0xafff]
[    0.258698] pci 0000:00:01.0:   bridge window [mem 0xd9000000-0xdc1fffff]
[    0.258706] pci 0000:00:01.0:   bridge window [mem 0x70000000-0xa1ffffff 64bit pref]
[    0.258777] pci 0000:02:08.0: [10b5:8747] type 01 class 0x060400
[    0.258831] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
[    0.258870] pci 0000:02:10.0: [10b5:8747] type 01 class 0x060400
[    0.258924] pci 0000:02:10.0: PME# supported from D0 D3hot D3cold
[    0.258961] pci 0000:01:00.0: PCI bridge to [bus 02-04]
[    0.258964] pci 0000:01:00.0:   bridge window [io  0x9000-0xafff]
[    0.258966] pci 0000:01:00.0:   bridge window [mem 0xd9000000-0xdc0fffff]
[    0.258969] pci 0000:01:00.0:   bridge window [mem 0x70000000-0xa1ffffff 64bit pref]
[    0.258997] pci 0000:03:00.0: [10de:1402] type 00 class 0x030000
[    0.259013] pci 0000:03:00.0: reg 0x10: [mem 0xdb000000-0xdbffffff]
[    0.259021] pci 0000:03:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref]
[    0.259028] pci 0000:03:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref]
[    0.259032] pci 0000:03:00.0: reg 0x24: [io  0xa000-0xa07f]
[    0.259037] pci 0000:03:00.0: reg 0x30: [mem 0xdc000000-0xdc07ffff pref]
[    0.259111] pci 0000:03:00.1: [10de:0fba] type 00 class 0x040300
[    0.259128] pci 0000:03:00.1: reg 0x10: [mem 0xdc080000-0xdc083fff]
[    0.270700] pci 0000:02:08.0: PCI bridge to [bus 03]
[    0.270709] pci 0000:02:08.0:   bridge window [io  0xa000-0xafff]
[    0.270715] pci 0000:02:08.0:   bridge window [mem 0xdb000000-0xdc0fffff]
[    0.270724] pci 0000:02:08.0:   bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[    0.270789] pci 0000:04:00.0: [10de:1402] type 00 class 0x030000
[    0.270811] pci 0000:04:00.0: reg 0x10: [mem 0xd9000000-0xd9ffffff]
[    0.270821] pci 0000:04:00.0: reg 0x14: [mem 0x70000000-0x7fffffff 64bit pref]
[    0.270832] pci 0000:04:00.0: reg 0x1c: [mem 0x80000000-0x81ffffff 64bit pref]
[    0.270839] pci 0000:04:00.0: reg 0x24: [io  0x9000-0x907f]
[    0.270846] pci 0000:04:00.0: reg 0x30: [mem 0xda000000-0xda07ffff pref]
[    0.270930] pci 0000:04:00.1: [10de:0fba] type 00 class 0x040300
[    0.270952] pci 0000:04:00.1: reg 0x10: [mem 0xda080000-0xda083fff]
[    0.282708] pci 0000:02:10.0: PCI bridge to [bus 04]
[    0.282717] pci 0000:02:10.0:   bridge window [io  0x9000-0x9fff]
[    0.282723] pci 0000:02:10.0:   bridge window [mem 0xd9000000-0xda0fffff]
[    0.282732] pci 0000:02:10.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
[    0.282828] pci 0000:00:1b.0: PCI bridge to [bus 05]
[    0.282898] pci 0000:06:00.0: [168c:003e] type 00 class 0x028000
[    0.282932] pci 0000:06:00.0: reg 0x10: [mem 0xdc200000-0xdc3fffff 64bit]
[    0.283024] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.283082] pci 0000:06:00.0: System wakeup disabled by ACPI
[    0.294720] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    0.294729] pci 0000:00:1c.0:   bridge window [mem 0xdc200000-0xdc3fffff]
[    0.294832] pci 0000:07:00.0: [1b21:1184] type 01 class 0x060400
[    0.294914] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    0.294961] pci 0000:07:00.0: System wakeup disabled by ACPI
[    0.302724] pci 0000:00:1c.1: PCI bridge to [bus 07-0c]
[    0.302730] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.302737] pci 0000:00:1c.1:   bridge window [mem 0xdc400000-0xdc5fffff]
[    0.302816] pci 0000:08:01.0: [1b21:1184] type 01 class 0x060400
[    0.302900] pci 0000:08:01.0: PME# supported from D0 D3hot D3cold
[    0.302945] pci 0000:08:03.0: [1b21:1184] type 01 class 0x060400
[    0.303028] pci 0000:08:03.0: PME# supported from D0 D3hot D3cold
[    0.303073] pci 0000:08:05.0: [1b21:1184] type 01 class 0x060400
[    0.303157] pci 0000:08:05.0: PME# supported from D0 D3hot D3cold
[    0.303201] pci 0000:08:07.0: [1b21:1184] type 01 class 0x060400
[    0.303285] pci 0000:08:07.0: PME# supported from D0 D3hot D3cold
[    0.303343] pci 0000:07:00.0: PCI bridge to [bus 08-0c]
[    0.303348] pci 0000:07:00.0:   bridge window [io  0xe000-0xefff]
[    0.303350] pci 0000:07:00.0:   bridge window [mem 0xdc400000-0xdc5fffff]
[    0.303387] pci 0000:08:01.0: PCI bridge to [bus 09]
[    0.303447] pci 0000:0a:00.0: [1b21:0612] type 00 class 0x010601
[    0.303484] pci 0000:0a:00.0: reg 0x10: [io  0xe050-0xe057]
[    0.303496] pci 0000:0a:00.0: reg 0x14: [io  0xe040-0xe043]
[    0.303508] pci 0000:0a:00.0: reg 0x18: [io  0xe030-0xe037]
[    0.303520] pci 0000:0a:00.0: reg 0x1c: [io  0xe020-0xe023]
[    0.303533] pci 0000:0a:00.0: reg 0x20: [io  0xe000-0xe01f]
[    0.303545] pci 0000:0a:00.0: reg 0x24: [mem 0xdc510000-0xdc5101ff]
[    0.303557] pci 0000:0a:00.0: reg 0x30: [mem 0xdc500000-0xdc50ffff pref]
[    0.310735] pci 0000:08:03.0: PCI bridge to [bus 0a]
[    0.310746] pci 0000:08:03.0:   bridge window [io  0xe000-0xefff]
[    0.310754] pci 0000:08:03.0:   bridge window [mem 0xdc500000-0xdc5fffff]
[    0.310835] pci 0000:0b:00.0: [1033:0194] type 00 class 0x0c0330
[    0.310883] pci 0000:0b:00.0: reg 0x10: [mem 0xdc400000-0xdc401fff 64bit]
[    0.311001] pci 0000:0b:00.0: PME# supported from D0 D3hot
[    0.318745] pci 0000:08:05.0: PCI bridge to [bus 0b]
[    0.318759] pci 0000:08:05.0:   bridge window [mem 0xdc400000-0xdc4fffff]
[    0.318824] pci 0000:08:07.0: PCI bridge to [bus 0c]
[    0.318926] pci 0000:0d:00.0: [1969:e0a1] type 00 class 0x020000
[    0.318966] pci 0000:0d:00.0: reg 0x10: [mem 0xdc800000-0xdc83ffff 64bit]
[    0.318976] pci 0000:0d:00.0: reg 0x18: [io  0xd000-0xd07f]
[    0.319051] pci 0000:0d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.319101] pci 0000:0d:00.0: System wakeup disabled by ACPI
[    0.326751] pci 0000:00:1c.2: PCI bridge to [bus 0d]
[    0.326757] pci 0000:00:1c.2:   bridge window [io  0xd000-0xdfff]
[    0.326764] pci 0000:00:1c.2:   bridge window [mem 0xdc800000-0xdc8fffff]
[    0.326864] pci 0000:0e:00.0: [1969:e0a1] type 00 class 0x020000
[    0.326904] pci 0000:0e:00.0: reg 0x10: [mem 0xdc700000-0xdc73ffff 64bit]
[    0.326914] pci 0000:0e:00.0: reg 0x18: [io  0xc000-0xc07f]
[    0.326989] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.327038] pci 0000:0e:00.0: System wakeup disabled by ACPI
[    0.334760] pci 0000:00:1c.3: PCI bridge to [bus 0e]
[    0.334766] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
[    0.334772] pci 0000:00:1c.3:   bridge window [mem 0xdc700000-0xdc7fffff]
[    0.334870] pci 0000:0f:00.0: [8086:1578] type 01 class 0x060400
[    0.334952] pci 0000:0f:00.0: supports D1 D2
[    0.334953] pci 0000:0f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.335008] pci 0000:0f:00.0: System wakeup disabled by ACPI
[    0.342765] pci 0000:00:1c.4: PCI bridge to [bus 0f-79]
[    0.342774] pci 0000:00:1c.4:   bridge window [mem 0xc8000000-0xd80fffff]
[    0.342783] pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xc7ffffff 64bit pref]
[    0.342789] pci 0000:0f:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.342846] pci_bus 0000:10: busn_res: can not insert [bus 10-ff] under [bus 0f-79] (conflicts with (null) [bus 0f-79])
[    0.342859] pci 0000:10:00.0: [8086:1578] type 01 class 0x060400
[    0.342945] pci 0000:10:00.0: supports D1 D2
[    0.342946] pci 0000:10:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.342998] pci 0000:10:01.0: [8086:1578] type 01 class 0x060400
[    0.343084] pci 0000:10:01.0: supports D1 D2
[    0.343085] pci 0000:10:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.343135] pci 0000:10:02.0: [8086:1578] type 01 class 0x060400
[    0.343220] pci 0000:10:02.0: supports D1 D2
[    0.343220] pci 0000:10:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.343272] pci 0000:10:04.0: [8086:1578] type 01 class 0x060400
[    0.343357] pci 0000:10:04.0: supports D1 D2
[    0.343358] pci 0000:10:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.343424] pci 0000:0f:00.0: PCI bridge to [bus 10-ff]
[    0.343429] pci 0000:0f:00.0:   bridge window [io  0x0000-0x0fff]
[    0.343431] pci 0000:0f:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.343436] pci 0000:0f:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.343438] pci 0000:10:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.343444] pci 0000:10:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.343450] pci 0000:10:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.343455] pci 0000:10:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.343494] pci 0000:10:00.0: PCI bridge to [bus 11-ff]
[    0.343499] pci 0000:10:00.0:   bridge window [io  0x0000-0x0fff]
[    0.343502] pci 0000:10:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.343506] pci 0000:10:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.343508] pci_bus 0000:11: busn_res: [bus 11-ff] end is updated to 11
[    0.343543] pci 0000:10:01.0: PCI bridge to [bus 12-ff]
[    0.343548] pci 0000:10:01.0:   bridge window [io  0x0000-0x0fff]
[    0.343551] pci 0000:10:01.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.343556] pci 0000:10:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.343557] pci_bus 0000:12: busn_res: [bus 12-ff] end is updated to 12
[    0.343606] pci 0000:13:00.0: [8086:15b6] type 00 class 0x0c0330
[    0.343637] pci 0000:13:00.0: reg 0x10: [mem 0x00000000-0x0000ffff]
[    0.343743] pci 0000:13:00.0: supports D1 D2
[    0.343744] pci 0000:13:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.343814] pci 0000:10:02.0: PCI bridge to [bus 13-ff]
[    0.343819] pci 0000:10:02.0:   bridge window [io  0x0000-0x0fff]
[    0.343822] pci 0000:10:02.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.343827] pci 0000:10:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.343828] pci_bus 0000:13: busn_res: [bus 13-ff] end is updated to 13
[    0.343864] pci 0000:10:04.0: PCI bridge to [bus 14-ff]
[    0.343869] pci 0000:10:04.0:   bridge window [io  0x0000-0x0fff]
[    0.343872] pci 0000:10:04.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.343877] pci 0000:10:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.343878] pci_bus 0000:14: busn_res: [bus 14-ff] end is updated to 14
[    0.343880] pci_bus 0000:10: busn_res: [bus 10-ff] end is updated to 14
[    0.343936] pci 0000:00:1d.0: PCI bridge to [bus 7a]
[    0.344003] pci 0000:7b:00.0: [1b21:0612] type 00 class 0x010601
[    0.344029] pci 0000:7b:00.0: reg 0x10: [io  0xb050-0xb057]
[    0.344037] pci 0000:7b:00.0: reg 0x14: [io  0xb040-0xb043]
[    0.344045] pci 0000:7b:00.0: reg 0x18: [io  0xb030-0xb037]
[    0.344054] pci 0000:7b:00.0: reg 0x1c: [io  0xb020-0xb023]
[    0.344062] pci 0000:7b:00.0: reg 0x20: [io  0xb000-0xb01f]
[    0.344071] pci 0000:7b:00.0: reg 0x24: [mem 0xdc610000-0xdc6101ff]
[    0.344079] pci 0000:7b:00.0: reg 0x30: [mem 0xdc600000-0xdc60ffff pref]
[    0.344150] pci 0000:7b:00.0: System wakeup disabled by ACPI
[    0.350775] pci 0000:00:1d.2: PCI bridge to [bus 7b]
[    0.350782] pci 0000:00:1d.2:   bridge window [io  0xb000-0xbfff]
[    0.350788] pci 0000:00:1d.2:   bridge window [mem 0xdc600000-0xdc6fffff]
[    0.350877] acpiphp: Slot [1] registered
[    0.350886] pci 0000:00:1d.4: PCI bridge to [bus 7c]
[    0.351835] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.351868] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.351899] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 *14 15)
[    0.351930] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 *15)
[    0.351961] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.351992] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.352023] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.352054] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.352307] ACPI: Enabled 8 GPEs in block 00 to 7F
[    0.352375] vgaarb: device added: PCI:0000:03:00.0,decodes=io+mem,owns=none,locks=none
[    0.352378] vgaarb: setting as boot device: PCI:0000:04:00.0
[    0.352379] vgaarb: device added: PCI:0000:04:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.352381] vgaarb: loaded
[    0.352382] vgaarb: bridge control possible 0000:04:00.0
[    0.352382] vgaarb: bridge control possible 0000:03:00.0
[    0.352503] SCSI subsystem initialized
[    0.352522] libata version 3.00 loaded.
[    0.352534] ACPI: bus type USB registered
[    0.352542] usbcore: registered new interface driver usbfs
[    0.352547] usbcore: registered new interface driver hub
[    0.352557] usbcore: registered new device driver usb
[    0.352632] PCI: Using ACPI for IRQ routing
[    0.370558] PCI: pci_cache_line_size set to 64 bytes
[    0.370654] e820: reserve RAM buffer [mem 0x0009c800-0x0009ffff]
[    0.370655] e820: reserve RAM buffer [mem 0x45e4c000-0x47ffffff]
[    0.370656] e820: reserve RAM buffer [mem 0x45eef000-0x47ffffff]
[    0.370657] e820: reserve RAM buffer [mem 0x46bf6000-0x47ffffff]
[    0.370658] e820: reserve RAM buffer [mem 0x8b6800000-0x8b7ffffff]
[    0.370721] NetLabel: Initializing
[    0.370722] NetLabel:  domain hash size = 128
[    0.370723] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.370729] NetLabel:  unlabeled traffic allowed by default
[    0.370798] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.370801] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.372956] amd_nb: Cannot enumerate AMD northbridges
[    0.372968] clocksource: Switched to clocksource hpet
[    0.376608] AppArmor: AppArmor Filesystem Enabled
[    0.376634] pnp: PnP ACPI init
[    0.376773] system 00:00: [io  0x0a00-0x0a2f] has been reserved
[    0.376774] system 00:00: [io  0x0a30-0x0a3f] has been reserved
[    0.376775] system 00:00: [io  0x0a40-0x0a4f] has been reserved
[    0.376777] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.376883] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.376884] system 00:01: [io  0xffff] has been reserved
[    0.376886] system 00:01: [io  0xffff] has been reserved
[    0.376887] system 00:01: [io  0xffff] has been reserved
[    0.376888] system 00:01: [io  0x1800-0x18fe] could not be reserved
[    0.376889] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.376890] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.376938] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.376940] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.376952] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.376977] system 00:04: [io  0x1854-0x1857] has been reserved
[    0.376979] system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.377119] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.377120] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.377121] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.377122] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.377123] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.377124] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.377125] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.377126] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.377127] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.377128] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[    0.377129] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.377158] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.377159] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.377160] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.377161] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.377162] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.377163] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.377164] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.377165] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.377684] system 00:07: [mem 0xfdaf0000-0xfdafffff] has been reserved
[    0.377685] system 00:07: [mem 0xfdae0000-0xfdaeffff] has been reserved
[    0.377686] system 00:07: [mem 0xfdac0000-0xfdacffff] has been reserved
[    0.377687] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.378107] pnp: PnP ACPI: found 8 devices
[    0.386089] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.386170] pci 0000:10:01.0: bridge window [io  0x1000-0x0fff] to [bus 12] add_size 1000
[    0.386171] pci 0000:10:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 12] add_size 200000 add_align 100000
[    0.386173] pci 0000:10:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 12] add_size 200000 add_align 100000
[    0.386186] pci 0000:10:04.0: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    0.386187] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 14] add_size 200000 add_align 100000
[    0.386188] pci 0000:10:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 14] add_size 200000 add_align 100000
[    0.386195] pci 0000:10:01.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.386196] pci 0000:10:04.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.386197] pci 0000:0f:00.0: bridge window [io  0x1000-0x0fff] to [bus 10-14] add_size 2000
[    0.386198] pci 0000:10:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386199] pci 0000:10:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386200] pci 0000:10:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386201] pci 0000:10:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386202] pci 0000:0f:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 10-14] add_size 400000 add_align 100000
[    0.386203] pci 0000:10:01.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386204] pci 0000:10:01.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386205] pci 0000:10:04.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386206] pci 0000:10:04.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386207] pci 0000:0f:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 10-14] add_size 400000 add_align 100000
[    0.386211] pci 0000:0f:00.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 2000 min_align 1000
[    0.386212] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 0f-79] add_size 2000
[    0.386227] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 2000 min_align 1000
[    0.386228] pci 0000:00:1c.4: res[13]=[io  0x1000-0x2fff] res_to_dev_res add_size 2000 min_align 1000
[    0.386230] pci 0000:00:1c.4: BAR 13: assigned [io  0x2000-0x3fff]
[    0.386232] pci 0000:02:08.0: PCI bridge to [bus 03]
[    0.386233] pci 0000:02:08.0:   bridge window [io  0xa000-0xafff]
[    0.386236] pci 0000:02:08.0:   bridge window [mem 0xdb000000-0xdc0fffff]
[    0.386238] pci 0000:02:08.0:   bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[    0.386241] pci 0000:02:10.0: PCI bridge to [bus 04]
[    0.386242] pci 0000:02:10.0:   bridge window [io  0x9000-0x9fff]
[    0.386245] pci 0000:02:10.0:   bridge window [mem 0xd9000000-0xda0fffff]
[    0.386246] pci 0000:02:10.0:   bridge window [mem 0x70000000-0x81ffffff 64bit pref]
[    0.386249] pci 0000:01:00.0: PCI bridge to [bus 02-04]
[    0.386251] pci 0000:01:00.0:   bridge window [io  0x9000-0xafff]
[    0.386253] pci 0000:01:00.0:   bridge window [mem 0xd9000000-0xdc0fffff]
[    0.386255] pci 0000:01:00.0:   bridge window [mem 0x70000000-0xa1ffffff 64bit pref]
[    0.386258] pci 0000:00:01.0: PCI bridge to [bus 01-04]
[    0.386259] pci 0000:00:01.0:   bridge window [io  0x9000-0xafff]
[    0.386261] pci 0000:00:01.0:   bridge window [mem 0xd9000000-0xdc1fffff]
[    0.386262] pci 0000:00:01.0:   bridge window [mem 0x70000000-0xa1ffffff 64bit pref]
[    0.386265] pci 0000:00:1b.0: PCI bridge to [bus 05]
[    0.386271] pci 0000:00:1c.0: PCI bridge to [bus 06]
[    0.386274] pci 0000:00:1c.0:   bridge window [mem 0xdc200000-0xdc3fffff]
[    0.386278] pci 0000:08:01.0: PCI bridge to [bus 09]
[    0.386289] pci 0000:08:03.0: PCI bridge to [bus 0a]
[    0.386290] pci 0000:08:03.0:   bridge window [io  0xe000-0xefff]
[    0.386294] pci 0000:08:03.0:   bridge window [mem 0xdc500000-0xdc5fffff]
[    0.386301] pci 0000:08:05.0: PCI bridge to [bus 0b]
[    0.386305] pci 0000:08:05.0:   bridge window [mem 0xdc400000-0xdc4fffff]
[    0.386312] pci 0000:08:07.0: PCI bridge to [bus 0c]
[    0.386322] pci 0000:07:00.0: PCI bridge to [bus 08-0c]
[    0.386324] pci 0000:07:00.0:   bridge window [io  0xe000-0xefff]
[    0.386328] pci 0000:07:00.0:   bridge window [mem 0xdc400000-0xdc5fffff]
[    0.386334] pci 0000:00:1c.1: PCI bridge to [bus 07-0c]
[    0.386336] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.386338] pci 0000:00:1c.1:   bridge window [mem 0xdc400000-0xdc5fffff]
[    0.386342] pci 0000:00:1c.2: PCI bridge to [bus 0d]
[    0.386344] pci 0000:00:1c.2:   bridge window [io  0xd000-0xdfff]
[    0.386346] pci 0000:00:1c.2:   bridge window [mem 0xdc800000-0xdc8fffff]
[    0.386350] pci 0000:00:1c.3: PCI bridge to [bus 0e]
[    0.386352] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
[    0.386354] pci 0000:00:1c.3:   bridge window [mem 0xdc700000-0xdc7fffff]
[    0.386359] pci 0000:0f:00.0: res[14]=[mem 0x00100000-0x001fffff] res_to_dev_res add_size 400000 min_align 100000
[    0.386360] pci 0000:0f:00.0: res[14]=[mem 0x00100000-0x005fffff] res_to_dev_res add_size 400000 min_align 100000
[    0.386361] pci 0000:0f:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 400000 min_align 100000
[    0.386362] pci 0000:0f:00.0: res[15]=[mem 0x00100000-0x004fffff 64bit pref] res_to_dev_res add_size 400000 min_align 100000
[    0.386362] pci 0000:0f:00.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 2000 min_align 1000
[    0.386363] pci 0000:0f:00.0: res[13]=[io  0x1000-0x2fff] res_to_dev_res add_size 2000 min_align 1000
[    0.386364] pci 0000:0f:00.0: BAR 14: assigned [mem 0xc8000000-0xc84fffff]
[    0.386366] pci 0000:0f:00.0: BAR 15: assigned [mem 0xb0000000-0xb03fffff 64bit pref]
[    0.386367] pci 0000:0f:00.0: BAR 13: assigned [io  0x2000-0x3fff]
[    0.386369] pci 0000:10:01.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386370] pci 0000:10:01.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386371] pci 0000:10:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386372] pci 0000:10:01.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386373] pci 0000:10:04.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386374] pci 0000:10:04.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.386375] pci 0000:10:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386376] pci 0000:10:04.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.386377] pci 0000:10:01.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.386378] pci 0000:10:01.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.386379] pci 0000:10:04.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.386380] pci 0000:10:04.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.386381] pci 0000:10:01.0: BAR 14: assigned [mem 0xc8000000-0xc81fffff]
[    0.386382] pci 0000:10:01.0: BAR 15: assigned [mem 0xb0000000-0xb01fffff 64bit pref]
[    0.386383] pci 0000:10:02.0: BAR 14: assigned [mem 0xc8200000-0xc82fffff]
[    0.386384] pci 0000:10:04.0: BAR 14: assigned [mem 0xc8300000-0xc84fffff]
[    0.386385] pci 0000:10:04.0: BAR 15: assigned [mem 0xb0200000-0xb03fffff 64bit pref]
[    0.386386] pci 0000:10:01.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.386386] pci 0000:10:04.0: BAR 13: assigned [io  0x3000-0x3fff]
[    0.386388] pci 0000:10:00.0: PCI bridge to [bus 11]
[    0.386398] pci 0000:10:01.0: PCI bridge to [bus 12]
[    0.386400] pci 0000:10:01.0:   bridge window [io  0x2000-0x2fff]
[    0.386403] pci 0000:10:01.0:   bridge window [mem 0xc8000000-0xc81fffff]
[    0.386406] pci 0000:10:01.0:   bridge window [mem 0xb0000000-0xb01fffff 64bit pref]
[    0.386412] pci 0000:13:00.0: BAR 0: assigned [mem 0xc8200000-0xc820ffff]
[    0.386415] pci 0000:10:02.0: PCI bridge to [bus 13]
[    0.386419] pci 0000:10:02.0:   bridge window [mem 0xc8200000-0xc82fffff]
[    0.386426] pci 0000:10:04.0: PCI bridge to [bus 14]
[    0.386428] pci 0000:10:04.0:   bridge window [io  0x3000-0x3fff]
[    0.386431] pci 0000:10:04.0:   bridge window [mem 0xc8300000-0xc84fffff]
[    0.386434] pci 0000:10:04.0:   bridge window [mem 0xb0200000-0xb03fffff 64bit pref]
[    0.386439] pci 0000:0f:00.0: PCI bridge to [bus 10-14]
[    0.386441] pci 0000:0f:00.0:   bridge window [io  0x2000-0x3fff]
[    0.386444] pci 0000:0f:00.0:   bridge window [mem 0xc8000000-0xc84fffff]
[    0.386447] pci 0000:0f:00.0:   bridge window [mem 0xb0000000-0xb03fffff 64bit pref]
[    0.386452] pci 0000:00:1c.4: PCI bridge to [bus 0f-79]
[    0.386453] pci 0000:00:1c.4:   bridge window [io  0x2000-0x3fff]
[    0.386455] pci 0000:00:1c.4:   bridge window [mem 0xc8000000-0xd80fffff]
[    0.386457] pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xc7ffffff 64bit pref]
[    0.386460] pci 0000:00:1d.0: PCI bridge to [bus 7a]
[    0.386466] pci 0000:00:1d.2: PCI bridge to [bus 7b]
[    0.386468] pci 0000:00:1d.2:   bridge window [io  0xb000-0xbfff]
[    0.386470] pci 0000:00:1d.2:   bridge window [mem 0xdc600000-0xdc6fffff]
[    0.386474] pci 0000:00:1d.4: PCI bridge to [bus 7c]
[    0.386483] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.386484] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.386485] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.386485] pci_bus 0000:00: resource 7 [mem 0x48800000-0xdfffffff window]
[    0.386486] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[    0.386487] pci_bus 0000:01: resource 0 [io  0x9000-0xafff]
[    0.386488] pci_bus 0000:01: resource 1 [mem 0xd9000000-0xdc1fffff]
[    0.386489] pci_bus 0000:01: resource 2 [mem 0x70000000-0xa1ffffff 64bit pref]
[    0.386489] pci_bus 0000:02: resource 0 [io  0x9000-0xafff]
[    0.386490] pci_bus 0000:02: resource 1 [mem 0xd9000000-0xdc0fffff]
[    0.386491] pci_bus 0000:02: resource 2 [mem 0x70000000-0xa1ffffff 64bit pref]
[    0.386492] pci_bus 0000:03: resource 0 [io  0xa000-0xafff]
[    0.386493] pci_bus 0000:03: resource 1 [mem 0xdb000000-0xdc0fffff]
[    0.386493] pci_bus 0000:03: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
[    0.386494] pci_bus 0000:04: resource 0 [io  0x9000-0x9fff]
[    0.386495] pci_bus 0000:04: resource 1 [mem 0xd9000000-0xda0fffff]
[    0.386496] pci_bus 0000:04: resource 2 [mem 0x70000000-0x81ffffff 64bit pref]
[    0.386497] pci_bus 0000:06: resource 1 [mem 0xdc200000-0xdc3fffff]
[    0.386498] pci_bus 0000:07: resource 0 [io  0xe000-0xefff]
[    0.386499] pci_bus 0000:07: resource 1 [mem 0xdc400000-0xdc5fffff]
[    0.386499] pci_bus 0000:08: resource 0 [io  0xe000-0xefff]
[    0.386500] pci_bus 0000:08: resource 1 [mem 0xdc400000-0xdc5fffff]
[    0.386501] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
[    0.386502] pci_bus 0000:0a: resource 1 [mem 0xdc500000-0xdc5fffff]
[    0.386503] pci_bus 0000:0b: resource 1 [mem 0xdc400000-0xdc4fffff]
[    0.386503] pci_bus 0000:0d: resource 0 [io  0xd000-0xdfff]
[    0.386504] pci_bus 0000:0d: resource 1 [mem 0xdc800000-0xdc8fffff]
[    0.386505] pci_bus 0000:0e: resource 0 [io  0xc000-0xcfff]
[    0.386506] pci_bus 0000:0e: resource 1 [mem 0xdc700000-0xdc7fffff]
[    0.386507] pci_bus 0000:0f: resource 0 [io  0x2000-0x3fff]
[    0.386507] pci_bus 0000:0f: resource 1 [mem 0xc8000000-0xd80fffff]
[    0.386508] pci_bus 0000:0f: resource 2 [mem 0xb0000000-0xc7ffffff 64bit pref]
[    0.386509] pci_bus 0000:10: resource 0 [io  0x2000-0x3fff]
[    0.386510] pci_bus 0000:10: resource 1 [mem 0xc8000000-0xc84fffff]
[    0.386511] pci_bus 0000:10: resource 2 [mem 0xb0000000-0xb03fffff 64bit pref]
[    0.386512] pci_bus 0000:12: resource 0 [io  0x2000-0x2fff]
[    0.386512] pci_bus 0000:12: resource 1 [mem 0xc8000000-0xc81fffff]
[    0.386513] pci_bus 0000:12: resource 2 [mem 0xb0000000-0xb01fffff 64bit pref]
[    0.386514] pci_bus 0000:13: resource 1 [mem 0xc8200000-0xc82fffff]
[    0.386515] pci_bus 0000:14: resource 0 [io  0x3000-0x3fff]
[    0.386515] pci_bus 0000:14: resource 1 [mem 0xc8300000-0xc84fffff]
[    0.386516] pci_bus 0000:14: resource 2 [mem 0xb0200000-0xb03fffff 64bit pref]
[    0.386517] pci_bus 0000:7b: resource 0 [io  0xb000-0xbfff]
[    0.386518] pci_bus 0000:7b: resource 1 [mem 0xdc600000-0xdc6fffff]
[    0.386535] NET: Registered protocol family 2
[    0.386648] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.386849] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.386933] TCP: Hash tables configured (established 262144 bind 65536)
[    0.386953] UDP hash table entries: 16384 (order: 7, 524288 bytes)
[    0.387007] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes)
[    0.387072] NET: Registered protocol family 1
[    0.388317] pci 0000:04:00.0: Video device with shadowed ROM
[    0.388544] pci 0000:0f:00.0: enabling device (0000 -> 0003)
[    0.388568] pci 0000:10:02.0: enabling device (0000 -> 0002)
[    0.388591] pci 0000:13:00.0: enabling device (0000 -> 0002)
[    0.388651] PCI: CLS 0 bytes, default 64
[    0.388675] Trying to unpack rootfs image as initramfs...
[    0.592217] Freeing initrd memory: 21352K (ffff88003563c000 - ffff880036b16000)
[    0.592225] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.592226] software IO TLB [mem 0x41e4c000-0x45e4c000] (64MB) mapped at [ffff880041e4c000-ffff880045e4bfff]
[    0.592392] Scanning for low memory corruption every 60 seconds
[    0.592672] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.592692] audit: initializing netlink subsys (disabled)
[    0.592700] audit: type=2000 audit(1472840697.592:1): initialized
[    0.592917] Initialise system trusted keyring
[    0.593345] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.593346] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.594111] zbud: loaded
[    0.594277] VFS: Disk quotas dquot_6.6.0
[    0.594295] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.594430] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.594679] fuse init (API version 7.23)
[    0.594787] Key type big_key registered
[    0.594798] Allocating IMA MOK and blacklist keyrings.
[    0.596338] Key type asymmetric registered
[    0.596340] Asymmetric key parser 'x509' registered
[    0.596358] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.596509] io scheduler noop registered
[    0.596510] io scheduler deadline registered (default)
[    0.596526] io scheduler cfq registered
[    0.598012] pcieport 0000:10:01.0: enabling device (0000 -> 0003)
[    0.598171] pcieport 0000:10:04.0: enabling device (0000 -> 0003)
[    0.598271] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.598275] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.598292] vesafb: mode is 640x480x32, linelength=2560, pages=0
[    0.598292] vesafb: scrolling: redraw
[    0.598293] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.598300] vesafb: framebuffer at 0x81000000, mapped to 0xffffc90003600000, using 1216k, total 1216k
[    0.598378] Console: switching to colour frame buffer device 80x30
[    0.598382] fb0: VESA VGA frame buffer device
[    0.598389] intel_idle: MWAIT substates: 0x142120
[    0.598390] intel_idle: v0.4.1 model 0x5E
[    0.598391] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.598671] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    0.598673] ACPI: Sleep Button [SLPB]
[    0.598691] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.598693] ACPI: Power Button [PWRB]
[    0.598710] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.598711] ACPI: Power Button [PWRF]
[    0.599353] thermal LNXTHERM:00: registered as thermal_zone0
[    0.599354] ACPI: Thermal Zone [TZ00] (28 C)
[    0.599422] thermal LNXTHERM:01: registered as thermal_zone1
[    0.599423] ACPI: Thermal Zone [TZ01] (30 C)
[    0.599445] GHES: HEST is not enabled!
[    0.599548] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.602442] Linux agpgart interface v0.103
[    0.607798] brd: module loaded
[    0.610766] loop: module loaded
[    0.610928] libphy: Fixed MDIO Bus: probed
[    0.610931] tun: Universal TUN/TAP device driver, 1.6
[    0.610931] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.611029] PPP generic driver version 2.4.2
[    0.611117] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.611120] ehci-pci: EHCI PCI platform driver
[    0.611126] ehci-platform: EHCI generic platform driver
[    0.611132] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.611134] ohci-pci: OHCI PCI platform driver
[    0.611140] ohci-platform: OHCI generic platform driver
[    0.611144] uhci_hcd: USB Universal Host Controller Interface driver
[    0.611225] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.611228] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.612294] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[    0.612297] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.612345] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.612346] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.612347] usb usb1: Product: xHCI Host Controller
[    0.612348] usb usb1: Manufacturer: Linux 4.4.0-37-generic xhci-hcd
[    0.612348] usb usb1: SerialNumber: 0000:00:14.0
[    0.612448] hub 1-0:1.0: USB hub found
[    0.612462] hub 1-0:1.0: 16 ports detected
[    0.618568] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.618570] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.618585] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    0.618586] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.618587] usb usb2: Product: xHCI Host Controller
[    0.618587] usb usb2: Manufacturer: Linux 4.4.0-37-generic xhci-hcd
[    0.618588] usb usb2: SerialNumber: 0000:00:14.0
[    0.618686] hub 2-0:1.0: USB hub found
[    0.618695] hub 2-0:1.0: 10 ports detected
[    0.622457] xhci_hcd 0000:0b:00.0: xHCI Host Controller
[    0.622460] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 3
[    0.622606] xhci_hcd 0000:0b:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x00000004
[    0.622735] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.622736] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.622737] usb usb3: Product: xHCI Host Controller
[    0.622738] usb usb3: Manufacturer: Linux 4.4.0-37-generic xhci-hcd
[    0.622738] usb usb3: SerialNumber: 0000:0b:00.0
[    0.622830] hub 3-0:1.0: USB hub found
[    0.622835] hub 3-0:1.0: 2 ports detected
[    0.622883] xhci_hcd 0000:0b:00.0: xHCI Host Controller
[    0.622884] xhci_hcd 0000:0b:00.0: new USB bus registered, assigned bus number 4
[    0.625952] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.625958] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.625959] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.625960] usb usb4: Product: xHCI Host Controller
[    0.625960] usb usb4: Manufacturer: Linux 4.4.0-37-generic xhci-hcd
[    0.625961] usb usb4: SerialNumber: 0000:0b:00.0
[    0.626049] hub 4-0:1.0: USB hub found
[    0.626070] hub 4-0:1.0: 2 ports detected
[    0.626159] xhci_hcd 0000:13:00.0: xHCI Host Controller
[    0.626161] xhci_hcd 0000:13:00.0: new USB bus registered, assigned bus number 5
[    0.627283] xhci_hcd 0000:13:00.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    0.627351] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[    0.627352] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.627352] usb usb5: Product: xHCI Host Controller
[    0.627353] usb usb5: Manufacturer: Linux 4.4.0-37-generic xhci-hcd
[    0.627354] usb usb5: SerialNumber: 0000:13:00.0
[    0.627441] hub 5-0:1.0: USB hub found
[    0.627458] hub 5-0:1.0: 2 ports detected
[    0.627500] xhci_hcd 0000:13:00.0: xHCI Host Controller
[    0.627501] xhci_hcd 0000:13:00.0: new USB bus registered, assigned bus number 6
[    0.627516] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
[    0.627517] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.627517] usb usb6: Product: xHCI Host Controller
[    0.627518] usb usb6: Manufacturer: Linux 4.4.0-37-generic xhci-hcd
[    0.627519] usb usb6: SerialNumber: 0000:13:00.0
[    0.627604] hub 6-0:1.0: USB hub found
[    0.627608] hub 6-0:1.0: 2 ports detected
[    0.627677] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.628373] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.628375] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.628527] mousedev: PS/2 mouse device common for all mice
[    0.628803] rtc_cmos 00:03: RTC can wake from S4
[    0.629363] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    0.629453] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.629457] i2c /dev entries driver
[    0.629483] device-mapper: uevent: version 1.0.3
[    0.629609] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    0.629621] Intel P-state driver initializing.
[    0.629635] intel_pstate: HWP enabled
[    0.632800] ledtrig-cpu: registered to indicate activity on CPUs
[    0.633653] NET: Registered protocol family 10
[    0.633982] NET: Registered protocol family 17
[    0.633988] Key type dns_resolver registered
[    0.634172] microcode: CPU0 sig=0x506e3, pf=0x2, revision=0x74
[    0.634199] microcode: CPU1 sig=0x506e3, pf=0x2, revision=0x74
[    0.634218] microcode: CPU2 sig=0x506e3, pf=0x2, revision=0x74
[    0.634275] microcode: CPU3 sig=0x506e3, pf=0x2, revision=0x74
[    0.634293] microcode: CPU4 sig=0x506e3, pf=0x2, revision=0x74
[    0.634350] microcode: CPU5 sig=0x506e3, pf=0x2, revision=0x74
[    0.634368] microcode: CPU6 sig=0x506e3, pf=0x2, revision=0x74
[    0.634425] microcode: CPU7 sig=0x506e3, pf=0x2, revision=0x74
[    0.634501] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.634731] registered taskstats version 1
[    0.634740] Loading compiled-in X.509 certificates
[    0.635156] Loaded X.509 cert 'Build time autogenerated kernel key: 55d65f7811a81576978e56d260d8e24d2b804832'
[    0.635166] zswap: loaded using pool lzo/zbud
[    0.636436] Key type trusted registered
[    0.639372] Key type encrypted registered
[    0.639376] AppArmor: AppArmor sha1 policy hashing enabled
[    0.639378] ima: No TPM chip found, activating TPM-bypass!
[    0.639401] evm: HMAC attrs: 0x1
[    0.640640]   Magic number: 0:452:442
[    0.640678] pcieport 0000:00:1c.3: hash matches
[    0.641153] rtc_cmos 00:03: setting system clock to 2016-09-02 18:24:58 UTC (1472840698)
[    0.641417] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.641418] EDD information not available.
[    0.641458] PM: Hibernation image not present or could not be loaded.
[    0.642237] Freeing unused kernel memory: 1484K (ffffffff81f45000 - ffffffff820b8000)
[    0.642238] Write protecting the kernel read-only data: 14336k
[    0.642943] Freeing unused kernel memory: 2040K (ffff880001802000 - ffff880001a00000)
[    0.643324] Freeing unused kernel memory: 136K (ffff880001dde000 - ffff880001e00000)
[    0.650867] systemd-udevd[153]: starting version 204
[    0.657988] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    0.676925] ahci 0000:00:17.0: version 3.0
[    0.677309] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[    0.677312] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
[    0.689657] alx 0000:0d:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [40:8d:5c:50:5a:3a]
[    0.692634] alx 0000:0e:00.0 eth1: Qualcomm Atheros AR816x/AR817x Ethernet [40:8d:5c:50:5a:3c]
[    0.806020] scsi host0: ahci
[    0.806574] scsi host1: ahci
[    0.807144] scsi host2: ahci
[    0.807626] scsi host3: ahci
[    0.807661] ata1: SATA max UDMA/133 abar m2048@0xdc92b000 port 0xdc92b100 irq 144
[    0.807665] ata2: SATA max UDMA/133 abar m2048@0xdc92b000 port 0xdc92b180 irq 144
[    0.807666] ata3: SATA max UDMA/133 abar m2048@0xdc92b000 port 0xdc92b200 irq 144
[    0.807671] ata4: SATA max UDMA/133 abar m2048@0xdc92b000 port 0xdc92b280 irq 144
[    0.807991] ahci 0000:0a:00.0: SSS flag set, parallel bus scan disabled
[    0.808136] ahci 0000:0a:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.808138] ahci 0000:0a:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs 
[    0.809019] scsi host4: ahci
[    0.809502] scsi host5: ahci
[    0.809567] ata5: SATA max UDMA/133 abar m512@0xdc510000 port 0xdc510100 irq 145
[    0.809571] ata6: SATA max UDMA/133 abar m512@0xdc510000 port 0xdc510180 irq 145
[    0.809756] ahci 0000:7b:00.0: SSS flag set, parallel bus scan disabled
[    0.809830] ahci 0000:7b:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.809831] ahci 0000:7b:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs 
[    0.810551] scsi host6: ahci
[    0.810979] scsi host7: ahci
[    0.811010] ata7: SATA max UDMA/133 abar m512@0xdc610000 port 0xdc610100 irq 146
[    0.811014] ata8: SATA max UDMA/133 abar m512@0xdc610000 port 0xdc610180 irq 146
[    0.929303] usb 1-3: new high-speed USB device number 2 using xhci_hcd
[    1.057811] usb 1-3: New USB device found, idVendor=045b, idProduct=0209
[    1.057813] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.058410] hub 1-3:1.0: USB hub found
[    1.058465] hub 1-3:1.0: 4 ports detected
[    1.125341] ata1: SATA link down (SStatus 4 SControl 300)
[    1.125394] ata3: SATA link down (SStatus 4 SControl 300)
[    1.125521] ata2: SATA link down (SStatus 4 SControl 300)
[    1.125627] ata4: SATA link down (SStatus 4 SControl 300)
[    1.129249] ata7: SATA link down (SStatus 0 SControl 300)
[    1.169649] usb 2-3: new SuperSpeed USB device number 2 using xhci_hcd
[    1.197782] usb 2-3: New USB device found, idVendor=045b, idProduct=0210
[    1.197783] usb 2-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.201619] hub 2-3:1.0: USB hub found
[    1.202092] hub 2-3:1.0: 4 ports detected
[    1.301276] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.303726] ata5.00: ATAPI: TSSTcorp CDDVDW SH-224DB, SB01, max UDMA/100
[    1.305033] usb 1-4: new high-speed USB device number 3 using xhci_hcd
[    1.305038] ata5.00: configured for UDMA/100
[    1.307326] scsi 4:0:0:0: CD-ROM            TSSTcorp CDDVDW SH-224DB  SB01 PQ: 0 ANSI: 5
[    1.325225] sr 4:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.325227] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.325494] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    1.325663] sr 4:0:0:0: Attached scsi generic sg0 type 5
[    1.433762] usb 1-4: New USB device found, idVendor=045b, idProduct=0209
[    1.433764] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.434204] hub 1-4:1.0: USB hub found
[    1.434282] hub 1-4:1.0: 4 ports detected
[    1.545191] usb 2-4: new SuperSpeed USB device number 3 using xhci_hcd
[    1.564813] usb 2-4: New USB device found, idVendor=045b, idProduct=0210
[    1.564815] usb 2-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.567781] hub 2-4:1.0: USB hub found
[    1.568392] hub 2-4:1.0: 4 ports detected
[    1.589230] tsc: Refined TSC clocksource calibration: 3407.981 MHz
[    1.589232] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x311fc2208fe, max_idle_ns: 440795218440 ns
[    1.649255] usb 1-3.2: new high-speed USB device number 4 using xhci_hcd
[    1.821217] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.823874] ata6.00: ATAPI: TSSTcorp CDDVDW SH-224DB, SB01, max UDMA/100
[    1.825449] ata6.00: configured for UDMA/100
[    1.828492] scsi 5:0:0:0: CD-ROM            TSSTcorp CDDVDW SH-224DB  SB01 PQ: 0 ANSI: 5
[    1.848543] sr 5:0:0:0: [sr1] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.848748] sr 5:0:0:0: Attached scsi CD-ROM sr1
[    1.849139] sr 5:0:0:0: Attached scsi generic sg1 type 5
[    1.851118] usb 1-3.2: New USB device found, idVendor=041e, idProduct=4097
[    1.851120] usb 1-3.2: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.851121] usb 1-3.2: Product: Live! Cam Chat HD VF0790
[    1.851122] usb 1-3.2: Manufacturer: Creative Technology Ltd.
[    1.851122] usb 1-3.2: SerialNumber: 2015052005290
[    1.861588] hidraw: raw HID events driver (C) Jiri Kosina
[    1.865118] usb 1-7: new full-speed USB device number 5 using xhci_hcd
[    1.867269] usbcore: registered new interface driver usbhid
[    1.867271] usbhid: USB HID core driver
[    1.869408] hid-generic 0003:041E:4097.0001: hiddev0,hidraw0: USB HID v1.11 Device [Creative Technology Ltd. Live! Cam Chat HD VF0790] on usb-0000:00:14.0-3.2/input4
[    1.995436] usb 1-7: New USB device found, idVendor=1e7d, idProduct=3264
[    1.995438] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.995439] usb 1-7: Product: ROCCAT Isku FX
[    1.995439] usb 1-7: Manufacturer: ROCCAT
[    2.165162] usb 1-8: new full-speed USB device number 6 using xhci_hcd
[    2.293654] usb 1-8: not running at top speed; connect to a high speed hub
[    2.295525] usb 1-8: New USB device found, idVendor=1e7d, idProduct=2e4b
[    2.295527] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.295528] usb 1-8: Product: ROCCAT Tyon White
[    2.295529] usb 1-8: Manufacturer: ROCCAT
[    2.295530] usb 1-8: SerialNumber: ROC-11-851
[    2.295676] usb 1-8: ep 0x84 - rounding interval to 64 microframes, ep desc says 80 microframes
[    2.298047] input: ROCCAT ROCCAT Tyon White as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:1E7D:2E4B.0004/input/input6
[    2.341179] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.342833] ata8.00: ATA-8: ST9750423AS, 0001SDM1, max UDMA/133
[    2.342835] ata8.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.344929] ata8.00: configured for UDMA/133
[    2.345482] scsi 7:0:0:0: Direct-Access     ATA      ST9750423AS      SDM1 PQ: 0 ANSI: 5
[    2.346129] sd 7:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/699 GiB)
[    2.346135] sd 7:0:0:0: [sda] 4096-byte physical blocks
[    2.346158] sd 7:0:0:0: Attached scsi generic sg2 type 0
[    2.346717] sd 7:0:0:0: [sda] Write Protect is off
[    2.346719] sd 7:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.346882] sd 7:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.353300] hid-generic 0003:1E7D:2E4B.0004: input,hiddev0,hidraw1: USB HID v1.11 Mouse [ROCCAT ROCCAT Tyon White] on usb-0000:00:14.0-8/input0
[    2.353949] input: ROCCAT ROCCAT Tyon White as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1E7D:2E4B.0005/input/input7
[    2.365839]  sda: sda1 sda2 < sda5 >
[    2.367093] sd 7:0:0:0: [sda] Attached SCSI disk
[    2.409218] hid-generic 0003:1E7D:2E4B.0005: input,hidraw2: USB HID v1.11 Keyboard [ROCCAT ROCCAT Tyon White] on usb-0000:00:14.0-8/input1
[    2.410282] input: ROCCAT ROCCAT Tyon White as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.2/0003:1E7D:2E4B.0006/input/input8
[    2.410514] hid-generic 0003:1E7D:2E4B.0006: input,hidraw3: USB HID v1.11 Joystick [ROCCAT ROCCAT Tyon White] on usb-0000:00:14.0-8/input2
[    2.411347] hid-generic 0003:1E7D:2E4B.0007: hiddev0,hidraw4: USB HID v1.11 Device [ROCCAT ROCCAT Tyon White] on usb-0000:00:14.0-8/input3
[    2.577126] usb 1-13: new full-speed USB device number 7 using xhci_hcd
[    2.589547] clocksource: Switched to clocksource tsc
[    2.658466] random: lvm: uninitialized urandom read (4 bytes read, 64 bits of entropy available)
[    2.706914] usb 1-13: New USB device found, idVendor=0cf3, idProduct=e300
[    2.706916] usb 1-13: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.808365] random: lvm: uninitialized urandom read (4 bytes read, 77 bits of entropy available)
[    2.944258] random: lvm: uninitialized urandom read (2 bytes read, 85 bits of entropy available)
[    3.697705] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[    3.817104] random: nonblocking pool is initialized
[   18.509008] Adding 33497084k swap on /dev/mapper/ubuntu--vg-swap_1.  Priority:-1 extents:1 across:33497084k FS
[   19.103794] systemd-udevd[406]: starting version 204
[   19.487282] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro
[   19.669811] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
[   19.894354] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
[   20.318408] lp: driver loaded but no devices found
[   20.321496] ppdev: user-space parallel port driver
[   21.517802] audit: type=1400 audit(1472840719.372:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=586 comm="apparmor_parser"
[   21.517806] audit: type=1400 audit(1472840719.372:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=586 comm="apparmor_parser"
[   21.517988] audit: type=1400 audit(1472840719.372:4): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=586 comm="apparmor_parser"
[   21.924618] wmi: Mapper loaded
[   22.037269] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   22.093289] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   22.100623] AVX2 version of gcm_enc/dec engaged.
[   22.100624] AES CTR mode by8 optimization enabled
[   22.200452] audit: type=1400 audit(1472840720.056:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=704 comm="apparmor_parser"
[   22.200456] audit: type=1400 audit(1472840720.056:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=704 comm="apparmor_parser"
[   22.200458] audit: type=1400 audit(1472840720.056:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=704 comm="apparmor_parser"
[   22.200463] audit: type=1400 audit(1472840720.056:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=706 comm="apparmor_parser"
[   22.200466] audit: type=1400 audit(1472840720.056:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=706 comm="apparmor_parser"
[   22.200469] audit: type=1400 audit(1472840720.056:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=706 comm="apparmor_parser"
[   22.200474] audit: type=1400 audit(1472840720.056:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=705 comm="apparmor_parser"
[   22.202306] compat: module verification failed: signature and/or required key missing - tainting kernel
[   22.202413] Loading modules backported from Linux version v4.2.6-0-g1c02865
[   22.202413] Backport generated by backports.git v4.2.6-1-0-g90118c7
[   22.399323] Bluetooth: Core ver 2.21
[   22.399333] NET: Registered protocol family 31
[   22.399334] Bluetooth: HCI device and connection manager initialized
[   22.399336] Bluetooth: HCI socket layer initialized
[   22.399337] Bluetooth: L2CAP socket layer initialized
[   22.399340] Bluetooth: SCO socket layer initialized
[   22.401559] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   22.401561] Bluetooth: BNEP filters: protocol multicast
[   22.401563] Bluetooth: BNEP socket layer initialized
[   22.447892] Bluetooth: RFCOMM TTY layer initialized
[   22.447895] Bluetooth: RFCOMM socket layer initialized
[   22.447898] Bluetooth: RFCOMM ver 1.11
[   22.461549] Bluetooth: HCI UART driver ver 2.3
[   22.461551] Bluetooth: HCI UART protocol H4 registered
[   22.461551] Bluetooth: HCI UART protocol BCSP registered
[   22.461552] Bluetooth: HCI UART protocol LL registered
[   22.461552] Bluetooth: HCI UART protocol ATH3K registered
[   22.461553] Bluetooth: HCI UART protocol Three-wire (H5) registered
[   22.461571] Bluetooth: HCI UART protocol Intel registered
[   22.461578] Bluetooth: HCI UART protocol BCM registered
[   22.461578] Bluetooth: HCI UART protocol QCA registered
[   22.476701] [drm] Initialized drm 1.1.0 20060810
[   22.556466] intel_rapl: Found RAPL domain package
[   22.556469] intel_rapl: Found RAPL domain core
[   22.556471] intel_rapl: Found RAPL domain dram
[   22.655540] ath10k_pci 0000:06:00.0: pci irq msi interrupts 1 irq_mode 0 reset_mode 0
[   22.800840] usbcore: registered new interface driver btusb
[   22.919426] ath10k_pci 0000:06:00.0: Direct firmware load for ath10k/cal-pci-0000:06:00.0.bin failed with error -2
[   22.929562] ath10k_pci 0000:06:00.0: Direct firmware load for ath10k/QCA6174/hw3.0/board-pci-168c:003e:1a56:1535.bin failed with error -2
[   22.929564] ath10k_pci 0000:06:00.0: failed to load spec board file, falling back to generic: -2
[   23.108810] snd_hda_intel 0000:03:00.1: Disabling MSI
[   23.108814] snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
[   23.108849] snd_hda_intel 0000:04:00.1: Disabling MSI
[   23.108852] snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client
[   23.158727] MXM: GUID detected in BIOS
[   23.158745] nouveau 0000:03:00.0: enabling device (0000 -> 0003)
[   23.158859] checking generic (81000000 130000) vs hw (90000000 10000000)
[   23.158860] checking generic (81000000 130000) vs hw (a0000000 2000000)
[   23.158896] nouveau 0000:03:00.0: NVIDIA GM206 (126020a1)
[   23.216447] cfg80211: World regulatory domain updated:
[   23.216449] cfg80211:  DFS Master region: unset
[   23.216450] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   23.216451] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   23.216452] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   23.216453] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   23.216453] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   23.216454] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   23.250226] nouveau 0000:03:00.0: bios: version 84.06.2f.00.b0
[   23.250684] nouveau 0000:03:00.0: gr: using external firmware
[   23.250696] nouveau 0000:03:00.0: Direct firmware load for nvidia/gm206/fecs_inst.bin failed with error -2
[   23.250698] nouveau 0000:03:00.0: gr: failed to load fecs_inst
[   23.250705] nouveau 0000:03:00.0: disp: dcb 15 type 8 unknown
[   23.262307] init: failsafe main process (722) killed by TERM signal
[   23.262329] nouveau 0000:03:00.0: fb: 2048 MiB GDDR5
[   23.263937] [TTM] Zone  kernel: Available graphics memory: 16444518 kiB
[   23.263938] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[   23.263938] [TTM] Initializing pool allocator
[   23.263941] [TTM] Initializing DMA pool allocator
[   23.263946] nouveau 0000:03:00.0: DRM: VRAM: 2048 MiB
[   23.263946] nouveau 0000:03:00.0: DRM: GART: 1048576 MiB
[   23.263948] nouveau 0000:03:00.0: DRM: TMDS table version 2.0
[   23.263949] nouveau 0000:03:00.0: DRM: DCB version 4.1
[   23.263950] nouveau 0000:03:00.0: DRM: DCB outp 00: 01000f02 00020030
[   23.263952] nouveau 0000:03:00.0: DRM: DCB outp 01: 02000f00 00000000
[   23.263952] nouveau 0000:03:00.0: DRM: DCB outp 02: 02811f76 04400020
[   23.263953] nouveau 0000:03:00.0: DRM: DCB outp 03: 02011f72 00020020
[   23.263954] nouveau 0000:03:00.0: DRM: DCB outp 04: 04822f86 04400010
[   23.263955] nouveau 0000:03:00.0: DRM: DCB outp 05: 04022f82 00020010
[   23.263956] nouveau 0000:03:00.0: DRM: DCB outp 06: 04833f96 04400020
[   23.263956] nouveau 0000:03:00.0: DRM: DCB outp 07: 04033f92 00020020
[   23.263957] nouveau 0000:03:00.0: DRM: DCB outp 08: 02044f62 00020010
[   23.263958] nouveau 0000:03:00.0: DRM: DCB outp 15: 01df5ff8 00000000
[   23.263959] nouveau 0000:03:00.0: DRM: DCB conn 00: 00001030
[   23.263960] nouveau 0000:03:00.0: DRM: DCB conn 01: 00020146
[   23.263960] nouveau 0000:03:00.0: DRM: DCB conn 02: 01000246
[   23.263961] nouveau 0000:03:00.0: DRM: DCB conn 03: 02000346
[   23.263962] nouveau 0000:03:00.0: DRM: DCB conn 04: 00010461
[   23.263963] nouveau 0000:03:00.0: DRM: DCB conn 05: 00000570
[   23.263964] nouveau 0000:03:00.0: DRM: Pointer to flat panel table invalid
[   23.280895] nouveau 0000:03:00.0: DRM: unknown connector type 70
[   23.280914] nouveau 0000:03:00.0: DRM: failed to create encoder 1/8/0: -19
[   23.280915] nouveau 0000:03:00.0: DRM: Unknown-1 has no encoders, removing
[   23.280929] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   23.280930] [drm] Driver supports precise vblank timestamp query.
[   23.391155] init: cups main process (587) killed by HUP signal
[   23.391161] init: cups main process ended, respawning
[   23.546754] nouveau 0000:03:00.0: DRM: MM: using COPY for buffer copies
[   23.689909] input: ROCCAT ROCCAT Isku FX as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:1E7D:3264.0002/input/input13
[   23.742966] isku 0003:1E7D:3264.0002: input,hidraw5: USB HID v1.11 Keyboard [ROCCAT ROCCAT Isku FX] on usb-0000:00:14.0-7/input0
[   23.752176] nouveau 0000:03:00.0: No connectors reported connected with modes
[   23.752193] [drm] Cannot find any crtc or sizes - going 1024x768
[   23.754528] nouveau 0000:03:00.0: DRM: allocated 1024x768 fb: 0x60000, bo ffff880891184800
[   23.754530] checking generic (81000000 130000) vs hw (0 0)
[   23.754558] nouveau 0000:03:00.0: fb1: nouveaufb frame buffer device
[   23.761801] input: ROCCAT ROCCAT Isku FX as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:1E7D:3264.0003/input/input14
[   23.766779] [drm] Initialized nouveau 1.3.1 20120801 for 0000:03:00.0 on minor 0
[   23.766889] checking generic (81000000 130000) vs hw (70000000 10000000)
[   23.766890] checking generic (81000000 130000) vs hw (80000000 2000000)
[   23.766891] fb: switching to nouveaufb from VESA VGA
[   23.766913] Console: switching to colour dummy device 80x25
[   23.767082] nouveau 0000:04:00.0: NVIDIA GM206 (126020a1)
[   23.802920] usbcore: registered new interface driver snd-usb-audio
[   23.814851] isku 0003:1E7D:3264.0003: input,hiddev0,hidraw6: USB HID v1.11 Mouse [ROCCAT ROCCAT Isku FX] on usb-0000:00:14.0-7/input1
[   23.923141] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.1/sound/card2/input15
[   23.923193] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.1/sound/card2/input16
[   23.923237] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.1/sound/card2/input17
[   23.923313] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:10.0/0000:04:00.1/sound/card2/input18
[   23.923514] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:08.0/0000:03:00.1/sound/card1/input9
[   23.923583] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:08.0/0000:03:00.1/sound/card1/input10
[   23.923628] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:08.0/0000:03:00.1/sound/card1/input11
[   23.923668] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.0/0000:02:08.0/0000:03:00.1/sound/card1/input12
[   23.930359] nouveau 0000:04:00.0: bios: version 84.06.2f.00.b0
[   23.930970] nouveau 0000:04:00.0: gr: using external firmware
[   23.930977] nouveau 0000:04:00.0: Direct firmware load for nvidia/gm206/fecs_inst.bin failed with error -2
[   23.930979] nouveau 0000:04:00.0: gr: failed to load fecs_inst
[   23.930988] nouveau 0000:04:00.0: disp: dcb 15 type 8 unknown
[   23.931290] nouveau 0000:04:00.0: fb: 2048 MiB GDDR5
[   23.932901] nouveau 0000:04:00.0: DRM: VRAM: 2048 MiB
[   23.932902] nouveau 0000:04:00.0: DRM: GART: 1048576 MiB
[   23.932904] nouveau 0000:04:00.0: DRM: TMDS table version 2.0
[   23.932905] nouveau 0000:04:00.0: DRM: DCB version 4.1
[   23.932906] nouveau 0000:04:00.0: DRM: DCB outp 00: 01000f02 00020030
[   23.932907] nouveau 0000:04:00.0: DRM: DCB outp 01: 02000f00 00000000
[   23.932908] nouveau 0000:04:00.0: DRM: DCB outp 02: 02811f76 04400020
[   23.932909] nouveau 0000:04:00.0: DRM: DCB outp 03: 02011f72 00020020
[   23.932909] nouveau 0000:04:00.0: DRM: DCB outp 04: 04822f86 04400010
[   23.932910] nouveau 0000:04:00.0: DRM: DCB outp 05: 04022f82 00020010
[   23.932911] nouveau 0000:04:00.0: DRM: DCB outp 06: 04833f96 04400020
[   23.932912] nouveau 0000:04:00.0: DRM: DCB outp 07: 04033f92 00020020
[   23.932913] nouveau 0000:04:00.0: DRM: DCB outp 08: 02044f62 00020010
[   23.932914] nouveau 0000:04:00.0: DRM: DCB outp 15: 01df5ff8 00000000
[   23.932914] nouveau 0000:04:00.0: DRM: DCB conn 00: 00001030
[   23.932915] nouveau 0000:04:00.0: DRM: DCB conn 01: 00020146
[   23.932916] nouveau 0000:04:00.0: DRM: DCB conn 02: 01000246
[   23.932917] nouveau 0000:04:00.0: DRM: DCB conn 03: 02000346
[   23.932917] nouveau 0000:04:00.0: DRM: DCB conn 04: 00010461
[   23.932918] nouveau 0000:04:00.0: DRM: DCB conn 05: 00000570
[   23.932919] nouveau 0000:04:00.0: DRM: Pointer to flat panel table invalid
[   23.950309] nouveau 0000:04:00.0: DRM: unknown connector type 70
[   23.950332] nouveau 0000:04:00.0: DRM: failed to create encoder 1/8/0: -19
[   23.950334] nouveau 0000:04:00.0: DRM: Unknown-1 has no encoders, removing
[   23.950354] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   23.950355] [drm] Driver supports precise vblank timestamp query.
[   23.955979] snd_hda_intel 0000:00:1f.3: failed to add i915_bpo component master (-19)
[   23.964162] snd_hda_codec_ca0132 hdaudioC0D0: autoconfig for CA0132: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:line
[   23.964165] snd_hda_codec_ca0132 hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   23.964167] snd_hda_codec_ca0132 hdaudioC0D0:    hp_outs=2 (0x10/0xf/0x0/0x0/0x0)
[   23.964168] snd_hda_codec_ca0132 hdaudioC0D0:    mono: mono_out=0x0
[   23.964169] snd_hda_codec_ca0132 hdaudioC0D0:    dig-out=0xc/0x0
[   23.964170] snd_hda_codec_ca0132 hdaudioC0D0:    inputs:
[   23.964172] snd_hda_codec_ca0132 hdaudioC0D0:      Mic=0x12
[   24.243912] nouveau 0000:04:00.0: DRM: MM: using COPY for buffer copies
[   24.552664] nouveau 0000:04:00.0: DRM: allocated 1920x1080 fb: 0x60000, bo ffff88087e0e9800
[   24.552715] fbcon: nouveaufb (fb0) is primary device
[   24.552789] Console: switching to colour frame buffer device 240x67
[   24.552803] nouveau 0000:04:00.0: fb0: nouveaufb frame buffer device
[   24.552805] [drm] Initialized nouveau 1.3.1 20120801 for 0000:04:00.0 on minor 1
[   24.666913] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[   24.848463] media: Linux media interface: v0.10
[   24.959687] input: HDA Intel PCH SPDIF as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[   24.959771] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[   24.959843] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
[   25.026393] Linux video capture interface: v2.00
[   25.786815] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[   25.834574] ath10k_pci 0000:06:00.0: failed to receive control response completion, polling..
[   26.524032] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.524817] alx 0000:0d:00.0 eth0: NIC Up: 100 Mbps Full
[   26.525015] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   26.531449] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   26.733865] uvcvideo: Found UVC 1.00 device Live! Cam Chat HD VF0790 (041e:4097)
[   26.745879] input: Live! Cam Chat HD VF0790 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.2/1-3.2:1.0/input/input22
[   26.745939] usbcore: registered new interface driver uvcvideo
[   26.745941] USB Video Class driver (1.1.1)
[   26.834606] ath10k_pci 0000:06:00.0: ctl_resp never came in (-110)
[   26.834609] ath10k_pci 0000:06:00.0: failed to connect to HTC: -110
[   26.900839] ath10k_pci 0000:06:00.0: could not init core (-110)
[   26.900853] ath10k_pci 0000:06:00.0: could not probe fw (-110)
[   28.944429] init: gdm main process (1215) killed by TERM signal
[   28.945156] audit_printk_skb: 183 callbacks suppressed
[   28.945158] audit: type=1400 audit(1472840726.800:73): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1229 comm="apparmor_parser"
[   38.408965] vgaarb: device changed decodes: PCI:0000:04:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   38.408967] vgaarb: device changed decodes: PCI:0000:03:00.0,olddecodes=io+mem,decodes=none:owns=none
[   41.503643] init: plymouth-upstart-bridge main process ended, respawning
[   41.506579] init: plymouth-upstart-bridge main process (2116) terminated with status 1
[   41.506587] init: plymouth-upstart-bridge main process ended, respawning
[   51.599197] audit: type=1400 audit(1472840749.449:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2565 comm="apparmor_parser"
[   51.599201] audit: type=1400 audit(1472840749.449:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2565 comm="apparmor_parser"
[   51.599472] audit: type=1400 audit(1472840749.453:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2565 comm="apparmor_parser"
[  240.692129] systemd-hostnamed[3550]: Warning: nss-myhostname is not installed. Changing the local hostname might make it unresolveable. Please install nss-myhostname!
Download as text