Ubuntu Pastebin

Paste from daed at Fri, 29 Apr 2016 01:01:52 +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
[    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-21-generic (buildd@lgw01-21) (gcc version 5.3.1 20160413 (Ubuntu 5.3.1-14ubuntu2) ) #37-Ubuntu SMP Mon Apr 18 18:33:37 UTC 2016 (Ubuntu 4.4.0-21.37-generic 4.4.6)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-21-generic.efi.signed root=UUID=7ab2ae28-603e-4d4b-8ef5-124a1dee6066 ro noprompt 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-0x0000000000057fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000667f2fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000667f3000-0x00000000667f3fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000667f4000-0x000000006683dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006683e000-0x0000000066892fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000066893000-0x0000000066d0cfff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000066d0d000-0x0000000066d22fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000066d23000-0x0000000066d87fff] type 20
[    0.000000] BIOS-e820: [mem 0x0000000066d88000-0x00000000679c9fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000679ca000-0x0000000067f99fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000067f9a000-0x0000000067fccfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000067fcd000-0x0000000067ffffff] usable
[    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-0x0000000fffffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.40 by American Megatrends
[    0.000000] efi:  ESRT=0x675c4018  ACPI=0x67bf9000  ACPI 2.0=0x67bf9000  SMBIOS=0xf05e0  MPS=0xfc970 
[    0.000000] esrt: Reserving ESRT space from 0x00000000675c4018 to 0x00000000675c4050.
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./Z170X-Gaming 7, BIOS F6 12/16/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x1000000 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 0070000000 mask 7FF0000000 uncachable
[    0.000000]   2 base 006C000000 mask 7FFC000000 uncachable
[    0.000000]   3 base 006A000000 mask 7FFE000000 uncachable
[    0.000000]   4 base 0069000000 mask 7FFF000000 uncachable
[    0.000000]   5 base 0068800000 mask 7FFF800000 uncachable
[    0.000000]   6 disabled
[    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 = 0x68000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcc10-0x000fcc1f] mapped at [ffff8800000fcc10]
[    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 [0x031fe000, 0x031fefff] PGTABLE
[    0.000000] BRK [0x031ff000, 0x031fffff] PGTABLE
[    0.000000] BRK [0x03200000, 0x03200fff] PGTABLE
[    0.000000] BRK [0x03201000, 0x03201fff] PGTABLE
[    0.000000] BRK [0x03202000, 0x03202fff] PGTABLE
[    0.000000] BRK [0x03203000, 0x03203fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x33b62000-0x35da8fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x0000000067BF9000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x0000000067BF90A8 0000CC (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x0000000067C1B490 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x0000000067BF9208 022285 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x0000000067F99F80 000040
[    0.000000] ACPI: APIC 0x0000000067C1B5A0 0000BC (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x0000000067C1B660 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x0000000067C1B6A8 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x0000000067C1B748 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x0000000067C1B788 000038 (v01 ALASKA A M I    01072009 AMI. 0005000B)
[    0.000000] ACPI: SSDT 0x0000000067C1B7C0 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000067C1BB30 000490 (v02 Intel  PerfTune 00001000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000067C1BFC0 005384 (v02 SaSsdt SaSsdt   00003000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x0000000067C21348 000042 (v01 ALASKA A M I    00000000      00000000)
[    0.000000] ACPI: LPIT 0x0000000067C21390 000094 (v01 INTEL  SKL      00000000 MSFT 0000005F)
[    0.000000] ACPI: SSDT 0x0000000067C21428 000248 (v02 INTEL  sensrhub 00000000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000067C21670 002BAE (v02 INTEL  PtidDevc 00001000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000067C24220 000C45 (v02 INTEL  Ther_Rvp 00001000 INTL 20120913)
[    0.000000] ACPI: DBGP 0x0000000067C24E68 000034 (v01 INTEL           00000000 MSFT 0000005F)
[    0.000000] ACPI: DBG2 0x0000000067C24EA0 000054 (v00 INTEL           00000000 MSFT 0000005F)
[    0.000000] ACPI: SSDT 0x0000000067C24EF8 000619 (v02 INTEL  xh_rvp10 00000000 INTL 20120913)
[    0.000000] ACPI: SSDT 0x0000000067C25518 000E58 (v02 CpuRef CpuSsdt  00003000 INTL 20120913)
[    0.000000] ACPI: BGRT 0x0000000067C26370 000038 (v01 ALASKA ALASKAA  01072009 AMI  00010013)
[    0.000000] ACPI: DMAR 0x0000000067C263A8 000070 (v01 INTEL  SKL      00000001 INTL 00000001)
[    0.000000] ACPI: ASF! 0x0000000067C26418 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-0x0000000fffffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0xfffff9000-0xfffffdfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x0000000fffffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x0000000000057fff]
[    0.000000]   node   0: [mem 0x0000000000059000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000667f2fff]
[    0.000000]   node   0: [mem 0x000000006683e000-0x0000000066892fff]
[    0.000000]   node   0: [mem 0x0000000066d0d000-0x0000000066d22fff]
[    0.000000]   node   0: [mem 0x0000000067fcd000-0x0000000067ffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x0000000fffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000fffffffff]
[    0.000000] On node 0 totalpages: 16148526
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 28 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 6499 pages used for memmap
[    0.000000]   DMA32 zone: 415889 pages, LIFO batch:31
[    0.000000]   Normal zone: 245760 pages used for memmap
[    0.000000]   Normal zone: 15728640 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 0x00058000-0x00058fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x667f3000-0x667f3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x667f4000-0x6683dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x66893000-0x66d0cfff]
[    0.000000] PM: Registered nosave memory: [mem 0x66d23000-0x66d87fff]
[    0.000000] PM: Registered nosave memory: [mem 0x66d88000-0x679c9fff]
[    0.000000] PM: Registered nosave memory: [mem 0x679ca000-0x67f99fff]
[    0.000000] PM: Registered nosave memory: [mem 0x67f9a000-0x67fccfff]
[    0.000000] PM: Registered nosave memory: [mem 0x68000000-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 0x68000000-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 @ffff880fffc00000 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: 15896175
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-21-generic.efi.signed root=UUID=7ab2ae28-603e-4d4b-8ef5-124a1dee6066 ro noprompt 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: 63401532K/64594104K available (8356K kernel code, 1278K rwdata, 3920K rodata, 1476K init, 1292K bss, 1192572K 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: PIT calibration matches HPET. 1 loops
[    0.000000] tsc: Detected 4007.917 MHz processor
[    0.000017] Calibrating delay loop (skipped), value calculated using timer frequency.. 8015.83 BogoMIPS (lpj=16031668)
[    0.000018] pid_max: default: 32768 minimum: 301
[    0.000021] ACPI: Core revision 20150930
[    0.019847] ACPI Error: [\_SB_.PCI0.XHC_.RHUB.HS11] Namespace lookup failure, AE_NOT_FOUND (20150930/dswload-210)
[    0.019850] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20150930/psobject-227)
[    0.019875] ACPI Exception: AE_NOT_FOUND, (SSDT:xh_rvp10) while loading table (20150930/tbxfload-193)
[    0.020625] ACPI Error: 1 table load failures, 8 successful (20150930/tbxfload-214)
[    0.022286] Security Framework initialized
[    0.022288] Yama: becoming mindful.
[    0.022296] AppArmor: AppArmor initialized
[    0.024295] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes)
[    0.030927] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.033781] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.033813] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.034018] Initializing cgroup subsys io
[    0.034019] Initializing cgroup subsys memory
[    0.034022] Initializing cgroup subsys devices
[    0.034023] Initializing cgroup subsys freezer
[    0.034024] Initializing cgroup subsys net_cls
[    0.034025] Initializing cgroup subsys perf_event
[    0.034026] Initializing cgroup subsys net_prio
[    0.034027] Initializing cgroup subsys hugetlb
[    0.034028] Initializing cgroup subsys pids
[    0.034043] CPU: Physical Processor ID: 0
[    0.034043] CPU: Processor Core ID: 0
[    0.035120] mce: CPU supports 10 MCE banks
[    0.035131] CPU0: Thermal monitoring enabled (TM1)
[    0.035138] process: using mwait in idle threads
[    0.035140] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.035140] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.035337] Freeing SMP alternatives memory: 28K (ffffffff820b2000 - ffffffff820b9000)
[    0.037606] ftrace: allocating 31878 entries in 125 pages
[    0.045007] smpboot: Max logical packages: 2
[    0.045008] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.045011] DMAR: Host address width 39
[    0.045012] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
[    0.045016] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.045016] DMAR: RMRR base: 0x000000678f4000 end: 0x00000067913fff
[    0.045017] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed90000 IOMMU 0
[    0.045018] DMAR-IR: HPET id 0 under DRHD base 0xfed90000
[    0.045019] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[    0.045019] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[    0.046334] DMAR-IR: Enabled IRQ remapping in xapic mode
[    0.046334] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.050318] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.090005] TSC deadline timer enabled
[    0.090010] smpboot: CPU0: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[    0.090017] Performance Events: PEBS fmt3+, 32-deep LBR, Skylake events, full-width counters, Intel PMU driver.
[    0.090032] ... version:                4
[    0.090033] ... bit width:              48
[    0.090033] ... generic registers:      4
[    0.090034] ... value mask:             0000ffffffffffff
[    0.090034] ... max period:             0000ffffffffffff
[    0.090035] ... fixed-purpose events:   3
[    0.090035] ... event mask:             000000070000000f
[    0.090467] x86: Booting SMP configuration:
[    0.090468] .... node  #0, CPUs:      #1
[    0.093847] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.093881]  #2 #3 #4 #5 #6 #7
[    0.114167] x86: Booted up 1 node, 8 CPUs
[    0.114169] smpboot: Total of 8 processors activated (64126.67 BogoMIPS)
[    0.119515] devtmpfs: initialized
[    0.119547] memory block size : 2048MB
[    0.120446] evm: security.selinux
[    0.120447] evm: security.SMACK64
[    0.120447] evm: security.SMACK64EXEC
[    0.120448] evm: security.SMACK64TRANSMUTE
[    0.120448] evm: security.SMACK64MMAP
[    0.120448] evm: security.ima
[    0.120449] evm: security.capability
[    0.120482] PM: Registering ACPI NVS region [mem 0x667f3000-0x667f3fff] (4096 bytes)
[    0.120483] PM: Registering ACPI NVS region [mem 0x679ca000-0x67f99fff] (6094848 bytes)
[    0.120557] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.120604] pinctrl core: initialized pinctrl subsystem
[    0.120738] RTC time:  0:47:23, date: 04/29/16
[    0.121368] NET: Registered protocol family 16
[    0.131407] cpuidle: using governor ladder
[    0.147411] cpuidle: using governor menu
[    0.147421] PCCT header not found.
[    0.147539] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.147540] ACPI: bus type PCI registered
[    0.147540] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.147584] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.147585] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.147592] PCI: Using configuration type 1 for base access
[    0.163685] ACPI: Added _OSI(Module Device)
[    0.163687] ACPI: Added _OSI(Processor Device)
[    0.163687] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.163688] ACPI: Added _OSI(Processor Aggregator Device)
[    0.167888] ACPI: Executed 21 blocks of module-level executable AML code
[    0.171199] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.233352] ACPI: Dynamic OEM Table Load:
[    0.233356] ACPI: SSDT 0xFFFF880FBACB2000 0007AA (v02 PmRef  Cpu0Ist  00003000 INTL 20120913)
[    0.233849] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    0.234725] ACPI: Dynamic OEM Table Load:
[    0.234728] ACPI: SSDT 0xFFFF880FBAFF9000 00037F (v02 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    0.235603] ACPI: Dynamic OEM Table Load:
[    0.235605] ACPI: SSDT 0xFFFF880FBACB2800 0005AA (v02 PmRef  ApIst    00003000 INTL 20120913)
[    0.236208] ACPI: Dynamic OEM Table Load:
[    0.236210] ACPI: SSDT 0xFFFF880FBAFDE400 000119 (v02 PmRef  ApCst    00003000 INTL 20120913)
[    0.239420] ACPI: Interpreter enabled
[    0.239426] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
[    0.239431] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.239443] ACPI: (supports S0 S3 S4 S5)
[    0.239443] ACPI: Using IOAPIC for interrupt routing
[    0.239461] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.240564] ACPI: Power Resource [PG00] (on)
[    0.240768] ACPI: Power Resource [PG01] (on)
[    0.240953] ACPI: Power Resource [PG02] (on)
[    0.242179] ACPI: Power Resource [WRST] (off)
[    0.242348] ACPI: Power Resource [WRST] (off)
[    0.242515] ACPI: Power Resource [WRST] (off)
[    0.242685] ACPI: Power Resource [WRST] (off)
[    0.242906] ACPI: Power Resource [WRST] (off)
[    0.243076] ACPI: Power Resource [WRST] (off)
[    0.243243] ACPI: Power Resource [WRST] (off)
[    0.243412] ACPI: Power Resource [WRST] (off)
[    0.243594] ACPI: Power Resource [WRST] (off)
[    0.243763] ACPI: Power Resource [WRST] (off)
[    0.243930] ACPI: Power Resource [WRST] (off)
[    0.244098] ACPI: Power Resource [WRST] (off)
[    0.244265] ACPI: Power Resource [WRST] (off)
[    0.244432] ACPI: Power Resource [WRST] (off)
[    0.244601] ACPI: Power Resource [WRST] (off)
[    0.244775] ACPI: Power Resource [WRST] (off)
[    0.244992] ACPI: Power Resource [WRST] (off)
[    0.245161] ACPI: Power Resource [WRST] (off)
[    0.245328] ACPI: Power Resource [WRST] (off)
[    0.245495] ACPI: Power Resource [WRST] (off)
[    0.249312] ACPI: Power Resource [FN00] (off)
[    0.249349] ACPI: Power Resource [FN01] (off)
[    0.249385] ACPI: Power Resource [FN02] (off)
[    0.249420] ACPI: Power Resource [FN03] (off)
[    0.249456] ACPI: Power Resource [FN04] (off)
[    0.250083] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.250086] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.250102] \_SB_.PCI0:_OSC invalid UUID
[    0.250103] _OSC request data:1 1f 0 
[    0.250105] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.250464] PCI host bridge to bus 0000:00
[    0.250465] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.250466] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.250467] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.250468] pci_bus 0000:00: root bus resource [mem 0x69800000-0xdfffffff window]
[    0.250469] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    0.250470] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.250474] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[    0.250639] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    0.250663] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.250727] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.250828] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[    0.250849] pci 0000:00:14.0: reg 0x10: [mem 0xde530000-0xde53ffff 64bit]
[    0.250893] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.250948] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.250971] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
[    0.250991] pci 0000:00:14.2: reg 0x10: [mem 0xde54e000-0xde54efff 64bit]
[    0.251096] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[    0.251120] pci 0000:00:16.0: reg 0x10: [mem 0xde54d000-0xde54dfff 64bit]
[    0.251166] pci 0000:00:16.0: PME# supported from D3hot
[    0.251254] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[    0.251271] pci 0000:00:17.0: reg 0x10: [mem 0xde548000-0xde549fff]
[    0.251277] pci 0000:00:17.0: reg 0x14: [mem 0xde54c000-0xde54c0ff]
[    0.251282] pci 0000:00:17.0: reg 0x18: [io  0xf050-0xf057]
[    0.251288] pci 0000:00:17.0: reg 0x1c: [io  0xf040-0xf043]
[    0.251293] pci 0000:00:17.0: reg 0x20: [io  0xf020-0xf03f]
[    0.251298] pci 0000:00:17.0: reg 0x24: [mem 0xde54b000-0xde54b7ff]
[    0.251321] pci 0000:00:17.0: PME# supported from D3hot
[    0.251395] pci 0000:00:1b.0: [8086:a167] type 01 class 0x060400
[    0.251435] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.251496] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.251522] pci 0000:00:1b.3: [8086:a16a] type 01 class 0x060400
[    0.251563] pci 0000:00:1b.3: PME# supported from D0 D3hot D3cold
[    0.251626] pci 0000:00:1b.3: System wakeup disabled by ACPI
[    0.251657] pci 0000:00:1c.0: [8086:a110] type 01 class 0x060400
[    0.251698] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.251760] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.251780] pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
[    0.251821] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.251883] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.251904] pci 0000:00:1c.4: [8086:a114] type 01 class 0x060400
[    0.251945] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.252006] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.252035] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
[    0.252082] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.252145] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.252172] pci 0000:00:1d.4: [8086:a11c] type 01 class 0x060400
[    0.252213] pci 0000:00:1d.4: PME# supported from D0 D3hot D3cold
[    0.252274] pci 0000:00:1d.4: System wakeup disabled by ACPI
[    0.252304] pci 0000:00:1f.0: [8086:a145] type 00 class 0x060100
[    0.252457] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[    0.252467] pci 0000:00:1f.2: reg 0x10: [mem 0xde544000-0xde547fff]
[    0.252573] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[    0.252603] pci 0000:00:1f.3: reg 0x10: [mem 0xde540000-0xde543fff 64bit]
[    0.252630] pci 0000:00:1f.3: reg 0x20: [mem 0xde520000-0xde52ffff 64bit]
[    0.252659] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.252742] pci 0000:00:1f.3: System wakeup disabled by ACPI
[    0.252768] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[    0.252821] pci 0000:00:1f.4: reg 0x10: [mem 0xde54a000-0xde54a0ff 64bit]
[    0.252890] pci 0000:00:1f.4: reg 0x20: [io  0xf000-0xf01f]
[    0.253024] pci 0000:00:1f.6: [8086:15b8] type 00 class 0x020000
[    0.253056] pci 0000:00:1f.6: reg 0x10: [mem 0xde500000-0xde51ffff]
[    0.253135] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.253192] pci 0000:00:1f.6: System wakeup disabled by ACPI
[    0.253230] pci 0000:01:00.0: [1002:6811] type 00 class 0x030000
[    0.253243] pci 0000:01:00.0: reg 0x10: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.253248] pci 0000:01:00.0: reg 0x18: [mem 0xde400000-0xde43ffff 64bit]
[    0.253252] pci 0000:01:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.253258] pci 0000:01:00.0: reg 0x30: [mem 0xde440000-0xde45ffff pref]
[    0.253279] pci 0000:01:00.0: supports D1 D2
[    0.253279] pci 0000:01:00.0: PME# supported from D1 D2 D3hot
[    0.253292] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.253311] pci 0000:01:00.1: [1002:aab0] type 00 class 0x040300
[    0.253323] pci 0000:01:00.1: reg 0x10: [mem 0xde460000-0xde463fff 64bit]
[    0.253353] pci 0000:01:00.1: supports D1 D2
[    0.259540] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.259547] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.259553] pci 0000:00:01.0:   bridge window [mem 0xde400000-0xde4fffff]
[    0.259561] pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.259654] acpiphp: Slot [1] registered
[    0.259656] pci 0000:00:1b.0: PCI bridge to [bus 02]
[    0.259721] pci 0000:03:00.0: [1b21:0612] type 00 class 0x010601
[    0.259745] pci 0000:03:00.0: reg 0x10: [io  0xd050-0xd057]
[    0.259753] pci 0000:03:00.0: reg 0x14: [io  0xd040-0xd043]
[    0.259761] pci 0000:03:00.0: reg 0x18: [io  0xd030-0xd037]
[    0.259769] pci 0000:03:00.0: reg 0x1c: [io  0xd020-0xd023]
[    0.259778] pci 0000:03:00.0: reg 0x20: [io  0xd000-0xd01f]
[    0.259786] pci 0000:03:00.0: reg 0x24: [mem 0xde310000-0xde3101ff]
[    0.259794] pci 0000:03:00.0: reg 0x30: [mem 0xde300000-0xde30ffff pref]
[    0.259863] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.267548] pci 0000:00:1b.3: PCI bridge to [bus 03]
[    0.267555] pci 0000:00:1b.3:   bridge window [io  0xd000-0xdfff]
[    0.267561] pci 0000:00:1b.3:   bridge window [mem 0xde300000-0xde3fffff]
[    0.267655] pci 0000:00:1c.0: PCI bridge to [bus 04]
[    0.267722] pci 0000:05:00.0: [1969:e0a1] type 00 class 0x020000
[    0.267761] pci 0000:05:00.0: reg 0x10: [mem 0xde200000-0xde23ffff 64bit]
[    0.267771] pci 0000:05:00.0: reg 0x18: [io  0xc000-0xc07f]
[    0.267845] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.267892] pci 0000:05:00.0: System wakeup disabled by ACPI
[    0.275561] pci 0000:00:1c.2: PCI bridge to [bus 05]
[    0.275568] pci 0000:00:1c.2:   bridge window [io  0xc000-0xcfff]
[    0.275574] pci 0000:00:1c.2:   bridge window [mem 0xde200000-0xde2fffff]
[    0.275679] pci 0000:06:00.0: [8086:1578] type 01 class 0x060400
[    0.275759] pci 0000:06:00.0: supports D1 D2
[    0.275760] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.275813] pci 0000:06:00.0: System wakeup disabled by ACPI
[    0.283566] pci 0000:00:1c.4: PCI bridge to [bus 06-70]
[    0.283575] pci 0000:00:1c.4:   bridge window [mem 0xc8000000-0xde0fffff]
[    0.283585] pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
[    0.283590] pci 0000:06:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.283653] pci_bus 0000:07: busn_res: can not insert [bus 07-ff] under [bus 06-70] (conflicts with (null) [bus 06-70])
[    0.283666] pci 0000:07:00.0: [8086:1578] type 01 class 0x060400
[    0.283749] pci 0000:07:00.0: supports D1 D2
[    0.283750] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.283799] pci 0000:07:01.0: [8086:1578] type 01 class 0x060400
[    0.283882] pci 0000:07:01.0: supports D1 D2
[    0.283883] pci 0000:07:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.283931] pci 0000:07:02.0: [8086:1578] type 01 class 0x060400
[    0.284013] pci 0000:07:02.0: supports D1 D2
[    0.284014] pci 0000:07:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.284063] pci 0000:07:04.0: [8086:1578] type 01 class 0x060400
[    0.284146] pci 0000:07:04.0: supports D1 D2
[    0.284147] pci 0000:07:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.284210] pci 0000:06:00.0: PCI bridge to [bus 07-ff]
[    0.284215] pci 0000:06:00.0:   bridge window [io  0x0000-0x0fff]
[    0.284218] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.284222] pci 0000:06:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.284224] pci 0000:07:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.284230] pci 0000:07:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.284235] pci 0000:07:02.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.284241] pci 0000:07:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.284277] pci 0000:07:00.0: PCI bridge to [bus 08-ff]
[    0.284282] pci 0000:07:00.0:   bridge window [io  0x0000-0x0fff]
[    0.284284] pci 0000:07:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.284289] pci 0000:07:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.284290] pci_bus 0000:08: busn_res: [bus 08-ff] end is updated to 08
[    0.284324] pci 0000:07:01.0: PCI bridge to [bus 09-ff]
[    0.284329] pci 0000:07:01.0:   bridge window [io  0x0000-0x0fff]
[    0.284332] pci 0000:07:01.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.284336] pci 0000:07:01.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.284337] pci_bus 0000:09: busn_res: [bus 09-ff] end is updated to 09
[    0.284384] pci 0000:0a:00.0: [8086:15b6] type 00 class 0x0c0330
[    0.284414] pci 0000:0a:00.0: reg 0x10: [mem 0x00000000-0x0000ffff]
[    0.284519] pci 0000:0a:00.0: supports D1 D2
[    0.284520] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.284588] pci 0000:07:02.0: PCI bridge to [bus 0a-ff]
[    0.284593] pci 0000:07:02.0:   bridge window [io  0x0000-0x0fff]
[    0.284595] pci 0000:07:02.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.284600] pci 0000:07:02.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.284601] pci_bus 0000:0a: busn_res: [bus 0a-ff] end is updated to 0a
[    0.284635] pci 0000:07:04.0: PCI bridge to [bus 0b-ff]
[    0.284640] pci 0000:07:04.0:   bridge window [io  0x0000-0x0fff]
[    0.284642] pci 0000:07:04.0:   bridge window [mem 0x00000000-0x000fffff]
[    0.284647] pci 0000:07:04.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    0.284648] pci_bus 0000:0b: busn_res: [bus 0b-ff] end is updated to 0b
[    0.284650] pci_bus 0000:07: busn_res: [bus 07-ff] end is updated to 0b
[    0.284704] pci 0000:00:1d.0: PCI bridge to [bus 71]
[    0.284764] pci 0000:72:00.0: [144d:a802] type 00 class 0x010802
[    0.284791] pci 0000:72:00.0: reg 0x10: [mem 0xde110000-0xde113fff 64bit]
[    0.284797] pci 0000:72:00.0: reg 0x18: [io  0xb000-0xb0ff]
[    0.284822] pci 0000:72:00.0: reg 0x30: [mem 0xde100000-0xde10ffff pref]
[    0.284905] pci 0000:72:00.0: System wakeup disabled by ACPI
[    0.291577] pci 0000:00:1d.4: PCI bridge to [bus 72]
[    0.291584] pci 0000:00:1d.4:   bridge window [io  0xb000-0xbfff]
[    0.291590] pci 0000:00:1d.4:   bridge window [mem 0xde100000-0xde1fffff]
[    0.292680] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.292711] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.292740] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 *14 15)
[    0.292770] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 *15)
[    0.292799] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.292828] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.292857] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.292886] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.293116] ACPI: Enabled 8 GPEs in block 00 to 7F
[    0.293172] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.293173] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.293174] vgaarb: loaded
[    0.293175] vgaarb: bridge control possible 0000:01:00.0
[    0.293286] SCSI subsystem initialized
[    0.293303] libata version 3.00 loaded.
[    0.293314] ACPI: bus type USB registered
[    0.293321] usbcore: registered new interface driver usbfs
[    0.293325] usbcore: registered new interface driver hub
[    0.293335] usbcore: registered new device driver usb
[    0.293418] PCI: Using ACPI for IRQ routing
[    0.311947] PCI: pci_cache_line_size set to 64 bytes
[    0.312005] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.312005] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.312006] e820: reserve RAM buffer [mem 0x667f3000-0x67ffffff]
[    0.312007] e820: reserve RAM buffer [mem 0x66893000-0x67ffffff]
[    0.312008] e820: reserve RAM buffer [mem 0x66d23000-0x67ffffff]
[    0.312061] NetLabel: Initializing
[    0.312062] NetLabel:  domain hash size = 128
[    0.312062] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.312067] NetLabel:  unlabeled traffic allowed by default
[    0.312137] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.312139] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    0.314181] clocksource: Switched to clocksource hpet
[    0.317414] AppArmor: AppArmor Filesystem Enabled
[    0.317437] pnp: PnP ACPI init
[    0.317560] system 00:00: [io  0x0a00-0x0a2f] has been reserved
[    0.317561] system 00:00: [io  0x0a30-0x0a3f] has been reserved
[    0.317562] system 00:00: [io  0x0a40-0x0a4f] has been reserved
[    0.317564] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.317773] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.317774] system 00:01: [io  0xffff] has been reserved
[    0.317775] system 00:01: [io  0xffff] has been reserved
[    0.317775] system 00:01: [io  0xffff] has been reserved
[    0.317776] system 00:01: [io  0x1800-0x18fe] could not be reserved
[    0.317777] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.317778] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.317822] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.317823] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.317834] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.317852] system 00:04: [io  0x1854-0x1857] has been reserved
[    0.317853] system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.317961] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.317962] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.317963] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.317964] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.317964] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.317965] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.317966] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.317967] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.317968] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.317969] system 00:05: [mem 0xdffe0000-0xdfffffff] has been reserved
[    0.317970] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.317991] system 00:06: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.317992] system 00:06: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.317992] system 00:06: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.317993] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.317994] system 00:06: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.317995] system 00:06: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.317996] system 00:06: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.317997] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.318545] system 00:07: [mem 0xfdaf0000-0xfdafffff] has been reserved
[    0.318546] system 00:07: [mem 0xfdae0000-0xfdaeffff] has been reserved
[    0.318547] system 00:07: [mem 0xfdac0000-0xfdacffff] has been reserved
[    0.318548] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.318966] pnp: PnP ACPI: found 8 devices
[    0.326683] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.326716] pci 0000:07:01.0: bridge window [io  0x1000-0x0fff] to [bus 09] add_size 1000
[    0.326717] pci 0000:07:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 09] add_size 200000 add_align 100000
[    0.326718] pci 0000:07:01.0: bridge window [mem 0x00100000-0x000fffff] to [bus 09] add_size 200000 add_align 100000
[    0.326731] pci 0000:07:04.0: bridge window [io  0x1000-0x0fff] to [bus 0b] add_size 1000
[    0.326732] pci 0000:07:04.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[    0.326733] pci 0000:07:04.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0b] add_size 200000 add_align 100000
[    0.326740] pci 0000:07:01.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.326740] pci 0000:07:04.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.326741] pci 0000:06:00.0: bridge window [io  0x1000-0x0fff] to [bus 07-0b] add_size 2000
[    0.326742] pci 0000:07:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326743] pci 0000:07:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326744] pci 0000:07:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326745] pci 0000:07:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326746] pci 0000:06:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07-0b] add_size 400000 add_align 100000
[    0.326747] pci 0000:07:01.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326748] pci 0000:07:01.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326749] pci 0000:07:04.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326749] pci 0000:07:04.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326750] pci 0000:06:00.0: bridge window [mem 0x00100000-0x001fffff] to [bus 07-0b] add_size 400000 add_align 100000
[    0.326754] pci 0000:06:00.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 2000 min_align 1000
[    0.326755] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 06-70] add_size 2000
[    0.326764] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 2000 min_align 1000
[    0.326765] pci 0000:00:1c.4: res[13]=[io  0x1000-0x2fff] res_to_dev_res add_size 2000 min_align 1000
[    0.326767] pci 0000:00:1c.4: BAR 13: assigned [io  0x2000-0x3fff]
[    0.326768] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.326769] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.326771] pci 0000:00:01.0:   bridge window [mem 0xde400000-0xde4fffff]
[    0.326772] pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.326774] pci 0000:00:1b.0: PCI bridge to [bus 02]
[    0.326780] pci 0000:00:1b.3: PCI bridge to [bus 03]
[    0.326781] pci 0000:00:1b.3:   bridge window [io  0xd000-0xdfff]
[    0.326784] pci 0000:00:1b.3:   bridge window [mem 0xde300000-0xde3fffff]
[    0.326788] pci 0000:00:1c.0: PCI bridge to [bus 04]
[    0.326793] pci 0000:00:1c.2: PCI bridge to [bus 05]
[    0.326795] pci 0000:00:1c.2:   bridge window [io  0xc000-0xcfff]
[    0.326797] pci 0000:00:1c.2:   bridge window [mem 0xde200000-0xde2fffff]
[    0.326801] pci 0000:06:00.0: res[14]=[mem 0x00100000-0x001fffff] res_to_dev_res add_size 400000 min_align 100000
[    0.326802] pci 0000:06:00.0: res[14]=[mem 0x00100000-0x005fffff] res_to_dev_res add_size 400000 min_align 100000
[    0.326803] pci 0000:06:00.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 400000 min_align 100000
[    0.326804] pci 0000:06:00.0: res[15]=[mem 0x00100000-0x004fffff 64bit pref] res_to_dev_res add_size 400000 min_align 100000
[    0.326805] pci 0000:06:00.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 2000 min_align 1000
[    0.326805] pci 0000:06:00.0: res[13]=[io  0x1000-0x2fff] res_to_dev_res add_size 2000 min_align 1000
[    0.326806] pci 0000:06:00.0: BAR 14: assigned [mem 0xc8000000-0xc84fffff]
[    0.326808] pci 0000:06:00.0: BAR 15: assigned [mem 0x80000000-0x803fffff 64bit pref]
[    0.326808] pci 0000:06:00.0: BAR 13: assigned [io  0x2000-0x3fff]
[    0.326810] pci 0000:07:01.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326811] pci 0000:07:01.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326812] pci 0000:07:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326812] pci 0000:07:01.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326813] pci 0000:07:04.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326814] pci 0000:07:04.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.326815] pci 0000:07:04.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326816] pci 0000:07:04.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.326817] pci 0000:07:01.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.326817] pci 0000:07:01.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.326818] pci 0000:07:04.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.326819] pci 0000:07:04.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.326820] pci 0000:07:01.0: BAR 14: assigned [mem 0xc8000000-0xc81fffff]
[    0.326821] pci 0000:07:01.0: BAR 15: assigned [mem 0x80000000-0x801fffff 64bit pref]
[    0.326822] pci 0000:07:02.0: BAR 14: assigned [mem 0xc8200000-0xc82fffff]
[    0.326823] pci 0000:07:04.0: BAR 14: assigned [mem 0xc8300000-0xc84fffff]
[    0.326824] pci 0000:07:04.0: BAR 15: assigned [mem 0x80200000-0x803fffff 64bit pref]
[    0.326824] pci 0000:07:01.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.326825] pci 0000:07:04.0: BAR 13: assigned [io  0x3000-0x3fff]
[    0.326826] pci 0000:07:00.0: PCI bridge to [bus 08]
[    0.326836] pci 0000:07:01.0: PCI bridge to [bus 09]
[    0.326837] pci 0000:07:01.0:   bridge window [io  0x2000-0x2fff]
[    0.326841] pci 0000:07:01.0:   bridge window [mem 0xc8000000-0xc81fffff]
[    0.326844] pci 0000:07:01.0:   bridge window [mem 0x80000000-0x801fffff 64bit pref]
[    0.326849] pci 0000:0a:00.0: BAR 0: assigned [mem 0xc8200000-0xc820ffff]
[    0.326852] pci 0000:07:02.0: PCI bridge to [bus 0a]
[    0.326856] pci 0000:07:02.0:   bridge window [mem 0xc8200000-0xc82fffff]
[    0.326862] pci 0000:07:04.0: PCI bridge to [bus 0b]
[    0.326864] pci 0000:07:04.0:   bridge window [io  0x3000-0x3fff]
[    0.326868] pci 0000:07:04.0:   bridge window [mem 0xc8300000-0xc84fffff]
[    0.326870] pci 0000:07:04.0:   bridge window [mem 0x80200000-0x803fffff 64bit pref]
[    0.326875] pci 0000:06:00.0: PCI bridge to [bus 07-0b]
[    0.326876] pci 0000:06:00.0:   bridge window [io  0x2000-0x3fff]
[    0.326880] pci 0000:06:00.0:   bridge window [mem 0xc8000000-0xc84fffff]
[    0.326883] pci 0000:06:00.0:   bridge window [mem 0x80000000-0x803fffff 64bit pref]
[    0.326887] pci 0000:00:1c.4: PCI bridge to [bus 06-70]
[    0.326888] pci 0000:00:1c.4:   bridge window [io  0x2000-0x3fff]
[    0.326890] pci 0000:00:1c.4:   bridge window [mem 0xc8000000-0xde0fffff]
[    0.326892] pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
[    0.326895] pci 0000:00:1d.0: PCI bridge to [bus 71]
[    0.326901] pci 0000:00:1d.4: PCI bridge to [bus 72]
[    0.326903] pci 0000:00:1d.4:   bridge window [io  0xb000-0xbfff]
[    0.326905] pci 0000:00:1d.4:   bridge window [mem 0xde100000-0xde1fffff]
[    0.326909] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.326910] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.326911] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.326912] pci_bus 0000:00: resource 7 [mem 0x69800000-0xdfffffff window]
[    0.326912] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[    0.326913] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.326914] pci_bus 0000:01: resource 1 [mem 0xde400000-0xde4fffff]
[    0.326914] pci_bus 0000:01: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.326915] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    0.326916] pci_bus 0000:03: resource 1 [mem 0xde300000-0xde3fffff]
[    0.326917] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.326917] pci_bus 0000:05: resource 1 [mem 0xde200000-0xde2fffff]
[    0.326918] pci_bus 0000:06: resource 0 [io  0x2000-0x3fff]
[    0.326919] pci_bus 0000:06: resource 1 [mem 0xc8000000-0xde0fffff]
[    0.326919] pci_bus 0000:06: resource 2 [mem 0x80000000-0xa1ffffff 64bit pref]
[    0.326920] pci_bus 0000:07: resource 0 [io  0x2000-0x3fff]
[    0.326921] pci_bus 0000:07: resource 1 [mem 0xc8000000-0xc84fffff]
[    0.326922] pci_bus 0000:07: resource 2 [mem 0x80000000-0x803fffff 64bit pref]
[    0.326922] pci_bus 0000:09: resource 0 [io  0x2000-0x2fff]
[    0.326923] pci_bus 0000:09: resource 1 [mem 0xc8000000-0xc81fffff]
[    0.326924] pci_bus 0000:09: resource 2 [mem 0x80000000-0x801fffff 64bit pref]
[    0.326924] pci_bus 0000:0a: resource 1 [mem 0xc8200000-0xc82fffff]
[    0.326925] pci_bus 0000:0b: resource 0 [io  0x3000-0x3fff]
[    0.326926] pci_bus 0000:0b: resource 1 [mem 0xc8300000-0xc84fffff]
[    0.326926] pci_bus 0000:0b: resource 2 [mem 0x80200000-0x803fffff 64bit pref]
[    0.326927] pci_bus 0000:72: resource 0 [io  0xb000-0xbfff]
[    0.326928] pci_bus 0000:72: resource 1 [mem 0xde100000-0xde1fffff]
[    0.326943] NET: Registered protocol family 2
[    0.327120] TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.327455] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.327514] TCP: Hash tables configured (established 524288 bind 65536)
[    0.327550] UDP hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.327644] UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes)
[    0.327729] NET: Registered protocol family 1
[    0.328458] pci 0000:01:00.0: Video device with shadowed ROM
[    0.328476] pci 0000:06:00.0: enabling device (0000 -> 0003)
[    0.328483] pci 0000:07:02.0: enabling device (0000 -> 0002)
[    0.328490] pci 0000:0a:00.0: enabling device (0000 -> 0002)
[    0.328518] PCI: CLS 0 bytes, default 64
[    0.328538] Trying to unpack rootfs image as initramfs...
[    0.624927] Freeing initrd memory: 35100K (ffff880033b62000 - ffff880035da9000)
[    0.624943] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.624945] software IO TLB [mem 0x5ec56000-0x62c56000] (64MB) mapped at [ffff88005ec56000-ffff880062c55fff]
[    0.625086] Scanning for low memory corruption every 60 seconds
[    0.625337] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.625353] audit: initializing netlink subsys (disabled)
[    0.625360] audit: type=2000 audit(1461890843.624:1): initialized
[    0.625562] Initialise system trusted keyring
[    0.625838] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[    0.625839] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.626599] zbud: loaded
[    0.626739] VFS: Disk quotas dquot_6.6.0
[    0.626754] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.627048] fuse init (API version 7.23)
[    0.627134] Key type big_key registered
[    0.628056] Key type asymmetric registered
[    0.628057] Asymmetric key parser 'x509' registered
[    0.628074] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.628196] io scheduler noop registered
[    0.628198] io scheduler deadline registered (default)
[    0.628212] io scheduler cfq registered
[    0.629063] pcieport 0000:07:01.0: enabling device (0000 -> 0003)
[    0.629269] pcieport 0000:07:04.0: enabling device (0000 -> 0003)
[    0.629363] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.629366] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.629381] efifb: probing for efifb
[    0.629387] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90006c00000, using 3072k, total 3072k
[    0.629388] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.629388] efifb: scrolling: redraw
[    0.629389] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.629446] Console: switching to colour frame buffer device 128x48
[    0.629452] fb0: EFI VGA frame buffer device
[    0.629456] intel_idle: MWAIT substates: 0x142120
[    0.629457] intel_idle: v0.4.1 model 0x5E
[    0.629457] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.629727] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    0.629729] ACPI: Sleep Button [SLPB]
[    0.629745] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.629746] ACPI: Power Button [PWRB]
[    0.629763] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.629763] ACPI: Power Button [PWRF]
[    0.630419] thermal LNXTHERM:00: registered as thermal_zone0
[    0.630420] ACPI: Thermal Zone [TZ00] (28 C)
[    0.630482] thermal LNXTHERM:01: registered as thermal_zone1
[    0.630483] ACPI: Thermal Zone [TZ01] (30 C)
[    0.630505] GHES: HEST is not enabled!
[    0.630599] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.632714] Linux agpgart interface v0.103
[    0.637815] brd: module loaded
[    0.640355] loop: module loaded
[    0.640514] libphy: Fixed MDIO Bus: probed
[    0.640516] tun: Universal TUN/TAP device driver, 1.6
[    0.640517] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.640605] PPP generic driver version 2.4.2
[    0.640693] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.640695] ehci-pci: EHCI PCI platform driver
[    0.640700] ehci-platform: EHCI generic platform driver
[    0.640705] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.640707] ohci-pci: OHCI PCI platform driver
[    0.640713] ohci-platform: OHCI generic platform driver
[    0.640717] uhci_hcd: USB Universal Host Controller Interface driver
[    0.640792] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.640795] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.641858] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
[    0.641861] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.641951] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.641952] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.641953] usb usb1: Product: xHCI Host Controller
[    0.641953] usb usb1: Manufacturer: Linux 4.4.0-21-generic xhci-hcd
[    0.641954] usb usb1: SerialNumber: 0000:00:14.0
[    0.642063] hub 1-0:1.0: USB hub found
[    0.642076] hub 1-0:1.0: 16 ports detected
[    0.647971] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.647973] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.647991] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    0.647992] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.647992] usb usb2: Product: xHCI Host Controller
[    0.647993] usb usb2: Manufacturer: Linux 4.4.0-21-generic xhci-hcd
[    0.647994] usb usb2: SerialNumber: 0000:00:14.0
[    0.648098] hub 2-0:1.0: USB hub found
[    0.648107] hub 2-0:1.0: 10 ports detected
[    0.651815] xhci_hcd 0000:0a:00.0: xHCI Host Controller
[    0.651817] xhci_hcd 0000:0a:00.0: new USB bus registered, assigned bus number 3
[    0.652938] xhci_hcd 0000:0a:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x00009810
[    0.653022] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.653023] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.653024] usb usb3: Product: xHCI Host Controller
[    0.653024] usb usb3: Manufacturer: Linux 4.4.0-21-generic xhci-hcd
[    0.653025] usb usb3: SerialNumber: 0000:0a:00.0
[    0.653127] hub 3-0:1.0: USB hub found
[    0.653131] hub 3-0:1.0: 2 ports detected
[    0.653172] xhci_hcd 0000:0a:00.0: xHCI Host Controller
[    0.653173] xhci_hcd 0000:0a:00.0: new USB bus registered, assigned bus number 4
[    0.653188] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.653188] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.653189] usb usb4: Product: xHCI Host Controller
[    0.653190] usb usb4: Manufacturer: Linux 4.4.0-21-generic xhci-hcd
[    0.653190] usb usb4: SerialNumber: 0000:0a:00.0
[    0.653291] hub 4-0:1.0: USB hub found
[    0.653296] hub 4-0:1.0: 2 ports detected
[    0.653351] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.654065] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.654068] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.654411] mousedev: PS/2 mouse device common for all mice
[    0.654758] rtc_cmos 00:03: RTC can wake from S4
[    0.655147] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    0.655225] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.655229] i2c /dev entries driver
[    0.655252] device-mapper: uevent: version 1.0.3
[    0.655322] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    0.655330] Intel P-state driver initializing.
[    0.655331] intel_pstate: HWP enabled
[    0.657783] ledtrig-cpu: registered to indicate activity on CPUs
[    0.657785] EFI Variables Facility v0.08 2004-May-17
[    0.662870] NET: Registered protocol family 10
[    0.663156] NET: Registered protocol family 17
[    0.663162] Key type dns_resolver registered
[    0.663360] microcode: CPU0 sig=0x506e3, pf=0x2, revision=0x39
[    0.663362] microcode: CPU1 sig=0x506e3, pf=0x2, revision=0x39
[    0.663400] microcode: CPU2 sig=0x506e3, pf=0x2, revision=0x39
[    0.663419] microcode: CPU3 sig=0x506e3, pf=0x2, revision=0x39
[    0.663456] microcode: CPU4 sig=0x506e3, pf=0x2, revision=0x39
[    0.663474] microcode: CPU5 sig=0x506e3, pf=0x2, revision=0x39
[    0.663512] microcode: CPU6 sig=0x506e3, pf=0x2, revision=0x39
[    0.663530] microcode: CPU7 sig=0x506e3, pf=0x2, revision=0x39
[    0.663585] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.663812] registered taskstats version 1
[    0.663823] Loading compiled-in X.509 certificates
[    0.664205] Loaded X.509 cert 'Build time autogenerated kernel key: fc7c0e9f152f32eca50ea2d9722926e5127af244'
[    0.664214] zswap: loaded using pool lzo/zbud
[    0.665679] Key type trusted registered
[    0.668810] Key type encrypted registered
[    0.668828] AppArmor: AppArmor sha1 policy hashing enabled
[    0.668830] ima: No TPM chip found, activating TPM-bypass!
[    0.668838] evm: HMAC attrs: 0x1
[    0.669788]   Magic number: 12:399:760
[    0.670131] rtc_cmos 00:03: setting system clock to 2016-04-29 00:47:24 UTC (1461890844)
[    0.670450] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.670450] EDD information not available.
[    0.670487] PM: Hibernation image not present or could not be loaded.
[    0.671366] Freeing unused kernel memory: 1476K (ffffffff81f41000 - ffffffff820b2000)
[    0.671366] Write protecting the kernel read-only data: 14336k
[    0.672137] Freeing unused kernel memory: 1872K (ffff88000282c000 - ffff880002a00000)
[    0.672507] Freeing unused kernel memory: 176K (ffff880002dd4000 - ffff880002e00000)
[    0.679031] random: systemd-udevd urandom read with 1 bits of entropy available
[    0.693186] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    0.696813] hidraw: raw HID events driver (C) Jiri Kosina
[    0.703204] wmi: Mapper loaded
[    0.720302] ahci 0000:00:17.0: version 3.0
[    0.721547] [drm] Initialized drm 1.1.0 20060810
[    0.724709] pps_core: LinuxPPS API ver. 1 registered
[    0.724710] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.726186] PTP clock support registered
[    0.729482] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    0.729483] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.732928] alx 0000:05:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [40:8d:5c:bd:0d:5a]
[    0.734464] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x30 impl SATA mode
[    0.734465] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
[    0.741980] [drm] radeon kernel modesetting enabled.
[    0.744028] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.744030] AMD IOMMUv2 functionality not available on this system
[    0.746536] CRAT table not found
[    0.746538] Finished initializing topology ret=0
[    0.746659] kfd kfd: Initialized module
[    0.747060] checking generic (b0000000 300000) vs hw (b0000000 10000000)
[    0.747061] fb: switching to radeondrmfb from EFI VGA
[    0.747072] Console: switching to colour dummy device 80x25
[    0.747408] scsi host0: ahci
[    0.747537] [drm] initializing kernel modesetting (PITCAIRN 0x1002:0x6811 0x1458:0x2015).
[    0.747543] [drm] register mmio base: 0xDE400000
[    0.747543] [drm] register mmio size: 262144
[    0.747580] radeon 0000:01:00.0: Invalid ROM contents
[    0.747602] ATOM BIOS: GV
[    0.747736] scsi host1: ahci
[    0.747795] radeon 0000:01:00.0: VRAM: 2048M 0x0000000000000000 - 0x000000007FFFFFFF (2048M used)
[    0.747796] radeon 0000:01:00.0: GTT: 2048M 0x0000000080000000 - 0x00000000FFFFFFFF
[    0.747796] [drm] Detected VRAM RAM=2048M, BAR=256M
[    0.747797] [drm] RAM width 256bits DDR
[    0.747945] [TTM] Zone  kernel: Available graphics memory: 31751016 kiB
[    0.747946] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    0.747946] [TTM] Initializing pool allocator
[    0.747948] [TTM] Initializing DMA pool allocator
[    0.747955] [drm] radeon: 2048M of VRAM memory ready
[    0.747956] [drm] radeon: 2048M of GTT memory ready.
[    0.747960] [drm] Loading pitcairn Microcode
[    0.748004] [drm] Internal thermal controller with fan control
[    0.748050] [drm] probing gen 2 caps for device 8086:1901 = 261ad03/e
[    0.748150] scsi host2: ahci
[    0.748496] scsi host3: ahci
[    0.748817] scsi host4: ahci
[    0.749119] scsi host5: ahci
[    0.749171] ata1: DUMMY
[    0.749171] ata2: DUMMY
[    0.749172] ata3: DUMMY
[    0.749172] ata4: DUMMY
[    0.749177] ata5: SATA max UDMA/133 abar m2048@0xde54b000 port 0xde54b300 irq 129
[    0.749182] ata6: SATA max UDMA/133 abar m2048@0xde54b000 port 0xde54b380 irq 129
[    0.749452] ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled
[    0.749501] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    0.749539] ahci 0000:03:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.749540] ahci 0000:03:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs 
[    0.750051] scsi host6: ahci
[    0.750605] scsi host7: ahci
[    0.750642] ata7: SATA max UDMA/133 abar m512@0xde310000 port 0xde310100 irq 130
[    0.750648] ata8: SATA max UDMA/133 abar m512@0xde310000 port 0xde310180 irq 130
[    0.760171] [drm] radeon: dpm initialized
[    0.760343] alx 0000:05:00.0 enp5s0: renamed from eth0
[    0.761485] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
[    0.761488] [drm] GART: num cpu pages 524288, num gpu pages 524288
[    0.762043] [drm] probing gen 2 caps for device 8086:1901 = 261ad03/e
[    0.762046] [drm] PCIE gen 3 link speeds already enabled
[    0.778578] [drm] PCIE GART of 2048M enabled (table at 0x00000000002E8000).
[    0.778681] radeon 0000:01:00.0: WB enabled
[    0.778682] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000080000c00 and cpu addr 0xffff880fb277dc00
[    0.778683] radeon 0000:01:00.0: fence driver on ring 1 use gpu addr 0x0000000080000c04 and cpu addr 0xffff880fb277dc04
[    0.778684] radeon 0000:01:00.0: fence driver on ring 2 use gpu addr 0x0000000080000c08 and cpu addr 0xffff880fb277dc08
[    0.778685] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000080000c0c and cpu addr 0xffff880fb277dc0c
[    0.778686] radeon 0000:01:00.0: fence driver on ring 4 use gpu addr 0x0000000080000c10 and cpu addr 0xffff880fb277dc10
[    0.779291] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x0000000000075a18 and cpu addr 0xffffc90006c35a18
[    0.799282] radeon 0000:01:00.0: fence driver on ring 6 use gpu addr 0x0000000080000c18 and cpu addr 0xffff880fb277dc18
[    0.799283] radeon 0000:01:00.0: fence driver on ring 7 use gpu addr 0x0000000080000c1c and cpu addr 0xffff880fb277dc1c
[    0.799284] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    0.799285] [drm] Driver supports precise vblank timestamp query.
[    0.799285] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    0.799330] radeon 0000:01:00.0: radeon: using MSI.
[    0.799350] [drm] radeon: irq initialized.
[    0.831766]  nvme0n1: p1 p2
[    0.958409] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    0.962614] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[    0.972227] [drm] ring test on 0 succeeded in 4 usecs
[    0.972231] [drm] ring test on 1 succeeded in 1 usecs
[    0.972234] [drm] ring test on 2 succeeded in 1 usecs
[    0.972243] [drm] ring test on 3 succeeded in 6 usecs
[    0.972251] [drm] ring test on 4 succeeded in 5 usecs
[    0.980331] usb 2-1: New USB device found, idVendor=045b, idProduct=0210
[    0.980332] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.982516] hub 2-1:1.0: USB hub found
[    0.982809] hub 2-1:1.0: 4 ports detected
[    1.066443] ata6: SATA link down (SStatus 4 SControl 300)
[    1.070427] ata7: SATA link down (SStatus 0 SControl 300)
[    1.070438] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.071412] ata5.00: ATA-9: MKNSSDRE1TB, N1007C, max UDMA/133
[    1.071413] ata5.00: 1953525168 sectors, multi 2: LBA48 NCQ (depth 31/32), AA
[    1.071707] ata5.00: configured for UDMA/133
[    1.071993] scsi 4:0:0:0: Direct-Access     ATA      MKNSSDRE1TB      7C   PQ: 0 ANSI: 5
[    1.072234] sd 4:0:0:0: Attached scsi generic sg0 type 0
[    1.072264] sd 4:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.072616] sd 4:0:0:0: [sda] Write Protect is off
[    1.072617] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.072712] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.073887] sd 4:0:0:0: [sda] Attached SCSI disk
[    1.086867] usb 1-1: New USB device found, idVendor=045b, idProduct=0209
[    1.086869] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.087180] hub 1-1:1.0: USB hub found
[    1.087219] hub 1-1:1.0: 4 ports detected
[    1.148245] [drm] ring test on 5 succeeded in 1 usecs
[    1.148250] [drm] UVD initialized successfully.
[    1.254437] usb 1-3: new low-speed USB device number 3 using xhci_hcd
[    1.257464] [drm] ring test on 6 succeeded in 28 usecs
[    1.257475] [drm] ring test on 7 succeeded in 3 usecs
[    1.257475] [drm] VCE initialized successfully.
[    1.257738] [drm] ib test on ring 0 succeeded in 0 usecs
[    1.257891] [drm] ib test on ring 1 succeeded in 0 usecs
[    1.257986] [drm] ib test on ring 2 succeeded in 0 usecs
[    1.258018] [drm] ib test on ring 3 succeeded in 0 usecs
[    1.258053] [drm] ib test on ring 4 succeeded in 0 usecs
[    1.262710] e1000e 0000:00:1f.6 eth0: registered PHC clock
[    1.262712] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 40:8d:5c:bd:0d:5c
[    1.262713] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    1.262789] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[    1.263400] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[    1.385927] usb 1-3: New USB device found, idVendor=093a, idProduct=2510
[    1.385928] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.385929] usb 1-3: Product: USB Optical Mouse
[    1.385930] usb 1-3: Manufacturer: PixArt
[    1.385999] usb 1-3: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    1.389434] usbcore: registered new interface driver usbhid
[    1.389435] usbhid: USB HID core driver
[    1.390985] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:093A:2510.0001/input/input6
[    1.391206] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-3/input0
[    1.498297] usb 1-4: new full-speed USB device number 4 using xhci_hcd
[    1.566314] ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.567313] ata8.00: ATA-8: WDC WD10EZEX-00RKKA0, 80.00A80, max UDMA/133
[    1.567315] ata8.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.569320] ata8.00: configured for UDMA/133
[    1.569701] scsi 7:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00R 0A80 PQ: 0 ANSI: 5
[    1.570142] sd 7:0:0:0: Attached scsi generic sg1 type 0
[    1.570291] sd 7:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.570298] sd 7:0:0:0: [sdb] 4096-byte physical blocks
[    1.570727] sd 7:0:0:0: [sdb] Write Protect is off
[    1.570729] sd 7:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.570936] sd 7:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.622302] tsc: Refined TSC clocksource calibration: 4007.999 MHz
[    1.622310] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x39c5e149d3a, max_idle_ns: 440795336434 ns
[    1.628854] usb 1-4: New USB device found, idVendor=05f3, idProduct=0081
[    1.628856] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.628856] usb 1-4: Product: Kinesis Keyboard Hub
[    1.628857] usb 1-4: Manufacturer: PI Engineering
[    1.628976] usb 1-4: ep 0x81 - rounding interval to 1024 microframes, ep desc says 2040 microframes
[    1.629434] hub 1-4:1.0: USB hub found
[    1.629712] hub 1-4:1.0: 4 ports detected
[    1.648457]  sdb: sdb1
[    1.649115] sd 7:0:0:0: [sdb] Attached SCSI disk
[    1.902356] usb 1-4.2: new full-speed USB device number 5 using xhci_hcd
[    1.906515] [drm] ib test on ring 5 succeeded
[    1.998436] usb 1-4.2: New USB device found, idVendor=05f3, idProduct=0007
[    1.998437] usb 1-4.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.002370] input: HID 05f3:0007 as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2:1.0/0003:05F3:0007.0002/input/input7
[    2.058562] hid-generic 0003:05F3:0007.0002: input,hidraw1: USB HID v1.00 Keyboard [HID 05f3:0007] on usb-0000:00:14.0-4.2/input0
[    2.063245] input: HID 05f3:0007 as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2:1.1/0003:05F3:0007.0003/input/input8
[    2.118512] hid-generic 0003:05F3:0007.0003: input,hidraw2: USB HID v1.00 Device [HID 05f3:0007] on usb-0000:00:14.0-4.2/input1
[    2.406450] [drm] ib test on ring 6 succeeded
[    2.622772] clocksource: Switched to clocksource tsc
[    2.906413] [drm] ib test on ring 7 succeeded
[    2.907659] [drm] Radeon Display Connectors
[    2.907660] [drm] Connector 0:
[    2.907660] [drm]   DP-1
[    2.907661] [drm]   HPD4
[    2.907662] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
[    2.907662] [drm]   Encoders:
[    2.907662] [drm]     DFP1: INTERNAL_UNIPHY2
[    2.907663] [drm] Connector 1:
[    2.907663] [drm]   HDMI-A-1
[    2.907664] [drm]   HPD5
[    2.907664] [drm]   DDC: 0x6550 0x6550 0x6554 0x6554 0x6558 0x6558 0x655c 0x655c
[    2.907665] [drm]   Encoders:
[    2.907665] [drm]     DFP2: INTERNAL_UNIPHY2
[    2.907666] [drm] Connector 2:
[    2.907666] [drm]   DVI-I-1
[    2.907666] [drm]   HPD6
[    2.907667] [drm]   DDC: 0x6580 0x6580 0x6584 0x6584 0x6588 0x6588 0x658c 0x658c
[    2.907667] [drm]   Encoders:
[    2.907668] [drm]     DFP3: INTERNAL_UNIPHY
[    2.907668] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    2.907669] [drm] Connector 3:
[    2.907669] [drm]   DVI-D-1
[    2.907669] [drm]   HPD1
[    2.907670] [drm]   DDC: 0x6570 0x6570 0x6574 0x6574 0x6578 0x6578 0x657c 0x657c
[    2.907670] [drm]   Encoders:
[    2.907671] [drm]     DFP4: INTERNAL_UNIPHY1
[    2.978240] [drm] fb mappable at 0xB06EA000
[    2.978241] [drm] vram apper at 0xB0000000
[    2.978242] [drm] size 8294400
[    2.978242] [drm] fb depth is 24
[    2.978243] [drm]    pitch is 7680
[    2.978358] fbcon: radeondrmfb (fb0) is primary device
[    2.978392] Console: switching to colour frame buffer device 240x67
[    2.978405] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    2.990409] [drm] Initialized radeon 2.43.0 20080528 for 0000:01:00.0 on minor 0
[    3.013445] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    3.053647] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    3.053741] systemd[1]: Detected architecture x86-64.
[    3.053812] systemd[1]: Set hostname to <s-sky>.
[    3.096674] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    3.096745] systemd[1]: Created slice User and Session Slice.
[    3.096761] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.096797] systemd[1]: Created slice System Slice.
[    3.096814] systemd[1]: Listening on Syslog Socket.
[    3.096817] systemd[1]: Reached target User and Group Name Lookups.
[    3.096854] systemd[1]: Created slice system-getty.slice.
[    3.096858] systemd[1]: Reached target Slices.
[    3.096861] systemd[1]: Reached target Swap.
[    3.096871] systemd[1]: Listening on udev Kernel Socket.
[    3.096952] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.096979] systemd[1]: Listening on Journal Audit Socket.
[    3.096983] systemd[1]: Reached target Remote File Systems (Pre).
[    3.096986] systemd[1]: Reached target Remote File Systems.
[    3.096997] systemd[1]: Listening on fsck to fsckd communication Socket.
[    3.097008] systemd[1]: Listening on udev Control Socket.
[    3.097012] systemd[1]: Reached target Encrypted Volumes.
[    3.097052] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    3.097067] systemd[1]: Listening on Journal Socket.
[    3.106368] systemd[1]: Mounting Huge Pages File System...
[    3.106549] systemd[1]: Mounting Debug File System...
[    3.106749] systemd[1]: Started Read required files in advance.
[    3.107302] systemd[1]: Starting Load Kernel Modules...
[    3.107506] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    3.107870] systemd[1]: Starting Braille Device Support...
[    3.108117] systemd[1]: Mounting POSIX Message Queue File System...
[    3.108377] systemd[1]: Starting Uncomplicated firewall...
[    3.108409] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.108678] systemd[1]: Starting Journal Service...
[    3.109386] systemd[1]: Mounted Huge Pages File System.
[    3.109401] systemd[1]: Mounted Debug File System.
[    3.109413] systemd[1]: Mounted POSIX Message Queue File System.
[    3.109606] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    3.110591] systemd[1]: Started Uncomplicated firewall.
[    3.113601] lp: driver loaded but no devices found
[    3.114994] ppdev: user-space parallel port driver
[    3.116959] systemd[1]: Started Load Kernel Modules.
[    3.123614] systemd[1]: Starting Apply Kernel Variables...
[    3.123855] systemd[1]: Mounting FUSE Control File System...
[    3.124088] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.124544] systemd[1]: Started Apply Kernel Variables.
[    3.125642] systemd[1]: Mounted FUSE Control File System.
[    3.126878] systemd[1]: Started Create Static Device Nodes in /dev.
[    3.129695] systemd[1]: Starting udev Kernel Device Manager...
[    3.129878] systemd[1]: Started Journal Service.
[    3.149750] EXT4-fs (nvme0n1p2): re-mounted. Opts: errors=remount-ro
[    3.155523] systemd-journald[297]: Received request to flush runtime journal from PID 1
[    3.187937] random: nonblocking pool is initialized
[    3.195148] Bluetooth: Core ver 2.21
[    3.195156] NET: Registered protocol family 31
[    3.195157] Bluetooth: HCI device and connection manager initialized
[    3.195159] Bluetooth: HCI socket layer initialized
[    3.195160] Bluetooth: L2CAP socket layer initialized
[    3.195164] Bluetooth: SCO socket layer initialized
[    3.198869] Bluetooth: HCI UART driver ver 2.3
[    3.198871] Bluetooth: HCI UART protocol H4 registered
[    3.198871] Bluetooth: HCI UART protocol BCSP registered
[    3.198872] Bluetooth: HCI UART protocol LL registered
[    3.198872] Bluetooth: HCI UART protocol ATH3K registered
[    3.198873] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    3.198886] Bluetooth: HCI UART protocol Intel registered
[    3.198892] Bluetooth: HCI UART protocol BCM registered
[    3.198892] Bluetooth: HCI UART protocol QCA registered
[    3.207324] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    3.209661] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    3.236580] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    3.236583] snd_hda_intel 0000:01:00.1: Force to non-snoop mode
[    3.242682] AVX2 version of gcm_enc/dec engaged.
[    3.242684] AES CTR mode by8 optimization enabled
[    3.244279] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[    3.244314] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[    3.244344] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[    3.244379] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
[    3.244424] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[    3.244464] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[    3.266652] snd_hda_intel 0000:00:1f.3: failed to add i915_bpo component master (-19)
[    3.275727] snd_hda_codec_ca0132 hdaudioC0D0: autoconfig for CA0132: line_outs=1 (0xb/0x0/0x0/0x0/0x0) type:line
[    3.275729] snd_hda_codec_ca0132 hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.275730] snd_hda_codec_ca0132 hdaudioC0D0:    hp_outs=1 (0x10/0x0/0x0/0x0/0x0)
[    3.275731] snd_hda_codec_ca0132 hdaudioC0D0:    mono: mono_out=0x0
[    3.275731] snd_hda_codec_ca0132 hdaudioC0D0:    dig-out=0xc/0x0
[    3.275732] snd_hda_codec_ca0132 hdaudioC0D0:    inputs:
[    3.275733] snd_hda_codec_ca0132 hdaudioC0D0:      Mic=0x12
[    3.275734] snd_hda_codec_ca0132 hdaudioC0D0:      Line=0x11
[    3.277930] intel_rapl: Found RAPL domain package
[    3.277932] intel_rapl: Found RAPL domain core
[    3.277934] intel_rapl: Found RAPL domain dram
[    3.457128] audit: type=1400 audit(1461890847.280:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/ubuntu-core-launcher" pid=725 comm="apparmor_parser"
[    3.457426] audit: type=1400 audit(1461890847.280:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=728 comm="apparmor_parser"
[    3.457625] audit: type=1400 audit(1461890847.280:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=730 comm="apparmor_parser"
[    3.457779] audit: type=1400 audit(1461890847.280:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=729 comm="apparmor_parser"
[    3.457784] audit: type=1400 audit(1461890847.280:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=729 comm="apparmor_parser"
[    3.457787] audit: type=1400 audit(1461890847.280:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=729 comm="apparmor_parser"
[    3.458186] audit: type=1400 audit(1461890847.280:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=721 comm="apparmor_parser"
[    3.458190] audit: type=1400 audit(1461890847.280:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=721 comm="apparmor_parser"
[    3.458210] audit: type=1400 audit(1461890847.280:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=732 comm="apparmor_parser"
[    3.608453] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[    3.810490] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
[    3.811710] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
[    3.811929] IPv6: ADDRCONF(NETDEV_UP): enp5s0: link is not ready
[    3.812692] alx 0000:05:00.0 enp5s0: NIC Up: 1 Gbps Full
[    3.812905] IPv6: ADDRCONF(NETDEV_CHANGE): enp5s0: link becomes ready
[    3.850507] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[    4.076003] input: HDA Intel PCH Front Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.076037] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.076066] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    4.211721] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.211723] Bluetooth: BNEP filters: protocol multicast
[    4.211726] Bluetooth: BNEP socket layer initialized
[    4.694605] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[    9.026908] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
[    9.028825] vboxdrv: Found 8 processor cores
[    9.046697] vboxdrv: TSC mode is Invariant, tentative frequency 4007999165 Hz
[    9.046698] vboxdrv: Successfully loaded version 5.0.18_Ubuntu (interface 0x00240000)
[    9.048593] VBoxNetFlt: Successfully started.
[    9.050146] VBoxNetAdp: Successfully started.
[    9.051968] VBoxPciLinuxInit
[    9.053302] vboxpci: IOMMU not found (not registered)
Download as text