Ubuntu Pastebin

Paste from christiancanale at Sun, 19 Mar 2017 22:02:08 +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
[    0.000000] Linux version 4.8.0-42-generic (buildd@lgw01-59) (gcc version 6.2.0 20161005 (Ubuntu 6.2.0-5ubuntu12) ) #45-Ubuntu SMP Wed Mar 8 20:06:06 UTC 2017 (Ubuntu 4.8.0-42.45-generic 4.8.17)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.8.0-42-generic root=UUID=ba959a0d-ffa1-4d21-b975-ffd558bc6d47 ro quiet splash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bfd6ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bfd70000-0x00000000bfdbefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bfdbf000-0x00000000bfe57fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bfe58000-0x00000000bfebefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bfebf000-0x00000000bfeebfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bfeec000-0x00000000bfefefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bfeff000-0x00000000bfefffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e0ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: Hewlett-Packard HP Pavilion dv7 Notebook PC/30FD, BIOS F.49 08/17/2009
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-through
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 00FFF00000 mask FFFFF00000 write-protect
[    0.000000]   1 base 0000000000 mask FF80000000 write-back
[    0.000000]   2 base 0080000000 mask FFC0000000 write-back
[    0.000000]   3 base 0100000000 mask FFC0000000 write-back
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000140000000 aka 5120M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xbff00 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff9aa440099000] 99000 size 24576
[    0.000000] BRK [0x8be3c000, 0x8be3cfff] PGTABLE
[    0.000000] BRK [0x8be3d000, 0x8be3dfff] PGTABLE
[    0.000000] BRK [0x8be3e000, 0x8be3efff] PGTABLE
[    0.000000] BRK [0x8be3f000, 0x8be3ffff] PGTABLE
[    0.000000] BRK [0x8be40000, 0x8be40fff] PGTABLE
[    0.000000] BRK [0x8be41000, 0x8be41fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x33140000-0x35897fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 HP    )
[    0.000000] ACPI: XSDT 0x00000000BFEFE120 00005C (v01 HPQOEM SLIC-MPC 00000001      01000013)
[    0.000000] ACPI: FACP 0x00000000BFEFD000 0000F4 (v04 HP     TRINITY  00000003 LOHR 01000013)
[    0.000000] ACPI: DSDT 0x00000000BFEEF000 00A2F0 (v01 HP     TRINITY  F0000000 LOHR 01000013)
[    0.000000] ACPI: FACS 0x00000000BFE61000 000040
[    0.000000] ACPI: FACS 0x00000000BFE61000 000040
[    0.000000] ACPI: HPET 0x00000000BFEFC000 000038 (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013)
[    0.000000] ACPI: APIC 0x00000000BFEFB000 000084 (v02 HPQOEM SLIC-MPC 00000001 LOHR 01000013)
[    0.000000] ACPI: MCFG 0x00000000BFEFA000 00003C (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013)
[    0.000000] ACPI: BOOT 0x00000000BFEEE000 000028 (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013)
[    0.000000] ACPI: SLIC 0x00000000BFEED000 000176 (v01 HPQOEM SLIC-MPC 00000001 LOHR 01000013)
[    0.000000] ACPI: SSDT 0x00000000BFEEC000 000386 (v01 AMD    PowerNow 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13fff8000-0x13fffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bfd6ffff]
[    0.000000]   node   0: [mem 0x00000000bfdbf000-0x00000000bfe57fff]
[    0.000000]   node   0: [mem 0x00000000bfebf000-0x00000000bfeebfff]
[    0.000000]   node   0: [mem 0x00000000bfeff000-0x00000000bfefffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff]
[    0.000000] On node 0 totalpages: 1048021
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12217 pages used for memmap
[    0.000000]   DMA32 zone: 781879 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low 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: 0x1002a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-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 0xbfd70000-0xbfdbefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbfe58000-0xbfebefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbfeec000-0xbfefefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbff00000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xe0ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe1000000-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-0xffefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfff00000-0xffffffff]
[    0.000000] e820: [mem 0xbff00000-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:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu @ffff9aa57fc00000 s107864 r8192 d31400 u524288
[    0.000000] pcpu-alloc: s107864 r8192 d31400 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1031623
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.8.0-42-generic root=UUID=ba959a0d-ffa1-4d21-b975-ffd558bc6d47 ro quiet splash
[    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: 4000544K/4192084K available (8848K kernel code, 1441K rwdata, 3824K rodata, 1552K init, 1296K bss, 191540K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=512 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:456 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133817403424 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2200.250 MHz processor
[    0.000043] Calibrating delay loop (skipped), value calculated using timer frequency.. 4400.50 BogoMIPS (lpj=8801000)
[    0.000047] pid_max: default: 32768 minimum: 301
[    0.000069] ACPI: Core revision 20160422
[    0.010302] ACPI: 2 ACPI AML tables successfully acquired and loaded

[    0.010357] Security Framework initialized
[    0.010360] Yama: becoming mindful.
[    0.010386] AppArmor: AppArmor initialized
[    0.010781] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.013422] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.014643] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.014654] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.015156] CPU: Physical Processor ID: 0
[    0.015157] CPU: Processor Core ID: 0
[    0.015160] mce: CPU supports 5 MCE banks
[    0.015173] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.015174] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
[    0.015744] Freeing SMP alternatives memory: 32K (ffffffff88aee000 - ffffffff88af6000)
[    0.055892] ftrace: allocating 33425 entries in 131 pages
[    0.082534] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.082536] smpboot: Max logical packages: 2
[    0.083029] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.227973] smpboot: CPU0: AMD Turion(tm) X2 Ultra Dual-Core Mobile ZM-82 (family: 0x11, model: 0x3, stepping: 0x1)
[    0.227980] Performance Events: AMD PMU driver.
[    0.227986] ... version:                0
[    0.227987] ... bit width:              48
[    0.227988] ... generic registers:      4
[    0.227988] ... value mask:             0000ffffffffffff
[    0.227989] ... max period:             00007fffffffffff
[    0.227990] ... fixed-purpose events:   0
[    0.227990] ... event mask:             000000000000000f
[    0.229123] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.229317] x86: Booting SMP configuration:
[    0.229319] .... node  #0, CPUs:      #1
[    0.231538] TSC synchronization [CPU#0 -> CPU#1]:
[    0.231539] Measured 239559651 cycles TSC warp between CPUs, turning off TSC clock.
[    0.231544] tsc: Marking TSC unstable due to check_tsc_sync_source failed
[    0.231682] x86: Booted up 1 node, 2 CPUs
[    0.231684] smpboot: Total of 2 processors activated (8801.00 BogoMIPS)
[    0.088454] devtmpfs: initialized
[    0.088454] x86/mm: Memory block size: 128MB
[    0.090876] evm: security.selinux
[    0.090878] evm: security.SMACK64
[    0.090878] evm: security.SMACK64EXEC
[    0.090879] evm: security.SMACK64TRANSMUTE
[    0.090880] evm: security.SMACK64MMAP
[    0.090881] evm: security.ima
[    0.090881] evm: security.capability
[    0.092045] PM: Registering ACPI NVS region [mem 0xbfe58000-0xbfebefff] (421888 bytes)
[    0.092136] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.092183] pinctrl core: initialized pinctrl subsystem
[    0.092416] RTC time: 20:36:21, date: 03/19/17
[    0.092587] NET: Registered protocol family 16
[    0.104006] cpuidle: using governor ladder
[    0.116005] cpuidle: using governor menu
[    0.116007] PCCT header not found.
[    0.116241] TOM: 00000000c0000000 aka 3072M
[    0.116245] Fam 10h mmconf [mem 0xe0000000-0xe0ffffff]
[    0.116251] TOM2: 0000000140000000 aka 5120M
[    0.116387] Simple Boot Flag at 0x44 set to 0x1
[    0.116398] ACPI: bus type PCI registered
[    0.116400] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.116516] PCI: MMCONFIG for domain 0000 [bus 00-0f] at [mem 0xe0000000-0xe0ffffff] (base 0xe0000000)
[    0.116519] PCI: MMCONFIG at [mem 0xe0000000-0xe0ffffff] reserved in E820
[    0.116524] PCI: Using configuration type 1 for base access
[    0.120192] mtrr: your CPUs had inconsistent fixed MTRR settings
[    0.120193] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.120193] mtrr: probably your BIOS does not setup all CPUs.
[    0.120194] mtrr: corrected configuration.
[    0.128052] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.132124] ACPI: Added _OSI(Module Device)
[    0.132125] ACPI: Added _OSI(Processor Device)
[    0.132127] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.132128] ACPI: Added _OSI(Processor Aggregator Device)
[    0.132406] ACPI: Executed 1 blocks of module-level executable AML code
[    0.136150] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.142757] ACPI : EC: EC started
[    0.252330] ACPI: Interpreter enabled
[    0.252363] ACPI: (supports S0 S3 S4 S5)
[    0.252364] ACPI: Using IOAPIC for interrupt routing
[    0.252494] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.253093] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.253467] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    0.439302] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.439309] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.439355] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.439371] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-0f] only partially covers this bridge
[    0.439897] acpi PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff window] (conflicts with Video ROM [mem 0x000c0000-0x000cfdff])
[    0.440273] PCI host bridge to bus 0000:00
[    0.440276] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.440278] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.440280] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.440282] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[    0.440283] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    0.440285] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[    0.440287] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.440289] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.440290] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.440293] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.440294] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.440296] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.440298] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.440300] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.440301] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff window]
[    0.440304] pci_bus 0000:00: root bus resource [mem 0xe1000000-0xffffffff window]
[    0.440306] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.440323] pci 0000:00:00.0: [1022:9600] type 00 class 0x060000
[    0.440533] pci 0000:00:02.0: [1022:9603] type 01 class 0x060400
[    0.440600] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.440756] pci 0000:00:04.0: [1022:9604] type 01 class 0x060400
[    0.440816] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[    0.440942] pci 0000:00:05.0: [1022:9605] type 01 class 0x060400
[    0.441001] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[    0.441119] pci 0000:00:06.0: [1022:9606] type 01 class 0x060400
[    0.441179] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.441299] pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
[    0.441358] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.452051] pci 0000:00:07.0: System wakeup disabled by ACPI
[    0.452120] pci 0000:00:11.0: [1002:4391] type 00 class 0x010601
[    0.452142] pci 0000:00:11.0: reg 0x10: [io  0x8038-0x803f]
[    0.452154] pci 0000:00:11.0: reg 0x14: [io  0x804c-0x804f]
[    0.452166] pci 0000:00:11.0: reg 0x18: [io  0x8030-0x8037]
[    0.452178] pci 0000:00:11.0: reg 0x1c: [io  0x8048-0x804b]
[    0.452189] pci 0000:00:11.0: reg 0x20: [io  0x8010-0x801f]
[    0.452202] pci 0000:00:11.0: reg 0x24: [mem 0xd2408000-0xd24083ff]
[    0.452395] pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
[    0.452413] pci 0000:00:12.0: reg 0x10: [mem 0xd2407000-0xd2407fff]
[    0.464012] pci 0000:00:12.0: System wakeup disabled by ACPI
[    0.464098] pci 0000:00:12.1: [1002:4398] type 00 class 0x0c0310
[    0.464116] pci 0000:00:12.1: reg 0x10: [mem 0xd2406000-0xd2406fff]
[    0.480050] pci 0000:00:12.1: System wakeup disabled by ACPI
[    0.480102] pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
[    0.480124] pci 0000:00:12.2: reg 0x10: [mem 0xd2408500-0xd24085ff]
[    0.480227] pci 0000:00:12.2: supports D1 D2
[    0.480229] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.496036] pci 0000:00:12.2: System wakeup disabled by ACPI
[    0.496111] pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
[    0.496129] pci 0000:00:13.0: reg 0x10: [mem 0xd2405000-0xd2405fff]
[    0.496333] pci 0000:00:13.1: [1002:4398] type 00 class 0x0c0310
[    0.496351] pci 0000:00:13.1: reg 0x10: [mem 0xd2404000-0xd2404fff]
[    0.496566] pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
[    0.496588] pci 0000:00:13.2: reg 0x10: [mem 0xd2408400-0xd24084ff]
[    0.496692] pci 0000:00:13.2: supports D1 D2
[    0.496693] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.496855] pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
[    0.497103] pci 0000:00:14.1: [1002:439c] type 00 class 0x01018a
[    0.497123] pci 0000:00:14.1: reg 0x10: [io  0x0000-0x0007]
[    0.497135] pci 0000:00:14.1: reg 0x14: [io  0x0000-0x0003]
[    0.497147] pci 0000:00:14.1: reg 0x18: [io  0x0000-0x0007]
[    0.497158] pci 0000:00:14.1: reg 0x1c: [io  0x0000-0x0003]
[    0.497171] pci 0000:00:14.1: reg 0x20: [io  0x8000-0x800f]
[    0.497197] pci 0000:00:14.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.497199] pci 0000:00:14.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.497200] pci 0000:00:14.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.497202] pci 0000:00:14.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.497375] pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
[    0.497401] pci 0000:00:14.2: reg 0x10: [mem 0xd2400000-0xd2403fff 64bit]
[    0.497487] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.497629] pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
[    0.497854] pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
[    0.498041] pci 0000:00:18.0: [1022:1300] type 00 class 0x060000
[    0.498165] pci 0000:00:18.1: [1022:1301] type 00 class 0x060000
[    0.498280] pci 0000:00:18.2: [1022:1302] type 00 class 0x060000
[    0.498401] pci 0000:00:18.3: [1022:1303] type 00 class 0x060000
[    0.498535] pci 0000:00:18.4: [1022:1304] type 00 class 0x060000
[    0.500184] pci 0000:01:00.0: [1002:95c4] type 00 class 0x030000
[    0.500201] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
[    0.500210] pci 0000:01:00.0: reg 0x14: [io  0x7000-0x70ff]
[    0.500220] pci 0000:01:00.0: reg 0x18: [mem 0xd2300000-0xd230ffff]
[    0.500252] pci 0000:01:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
[    0.500300] pci 0000:01:00.0: supports D1 D2
[    0.500377] pci 0000:01:00.1: [1002:aa28] type 00 class 0x040300
[    0.500392] pci 0000:01:00.1: reg 0x10: [mem 0xd2310000-0xd2313fff]
[    0.500483] pci 0000:01:00.1: supports D1 D2
[    0.512023] pci 0000:00:02.0: PCI bridge to [bus 01]
[    0.512029] pci 0000:00:02.0:   bridge window [io  0x7000-0x7fff]
[    0.512033] pci 0000:00:02.0:   bridge window [mem 0xd2300000-0xd23fffff]
[    0.512037] pci 0000:00:02.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.512134] acpiphp: Slot [1] registered
[    0.512141] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.512146] pci 0000:00:04.0:   bridge window [io  0x3000-0x6fff]
[    0.512149] pci 0000:00:04.0:   bridge window [mem 0xd1300000-0xd22fffff]
[    0.512154] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd0ffffff 64bit pref]
[    0.512282] pci 0000:08:00.0: [197b:2380] type 00 class 0x0c0010
[    0.512307] pci 0000:08:00.0: reg 0x10: [mem 0xd1200000-0xd12007ff]
[    0.512323] pci 0000:08:00.0: reg 0x14: [mem 0xd1200d00-0xd1200d7f]
[    0.512367] pci 0000:08:00.0: reg 0x20: [mem 0xd1200c80-0xd1200cff]
[    0.512383] pci 0000:08:00.0: reg 0x24: [mem 0xd1200c00-0xd1200c7f]
[    0.512563] pci 0000:08:00.1: [197b:2382] type 00 class 0x088000
[    0.512584] pci 0000:08:00.1: reg 0x10: [mem 0xd1200b00-0xd1200bff]
[    0.512807] pci 0000:08:00.2: [197b:2381] type 00 class 0x080501
[    0.512829] pci 0000:08:00.2: reg 0x10: [mem 0xd1200a00-0xd1200aff]
[    0.513051] pci 0000:08:00.3: [197b:2383] type 00 class 0x088000
[    0.513073] pci 0000:08:00.3: reg 0x10: [mem 0xd1200900-0xd12009ff]
[    0.513298] pci 0000:08:00.4: [197b:2384] type 00 class 0x088000
[    0.513320] pci 0000:08:00.4: reg 0x10: [mem 0xd1200800-0xd12008ff]
[    0.524029] pci 0000:00:05.0: PCI bridge to [bus 08]
[    0.524036] pci 0000:00:05.0:   bridge window [mem 0xd1200000-0xd12fffff]
[    0.524117] pci 0000:09:00.0: [168c:002a] type 00 class 0x028000
[    0.524141] pci 0000:09:00.0: reg 0x10: [mem 0xd1100000-0xd110ffff 64bit]
[    0.524276] pci 0000:09:00.0: supports D1
[    0.524277] pci 0000:09:00.0: PME# supported from D0 D1 D3hot
[    0.524368] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.524377] pci 0000:00:06.0: PCI bridge to [bus 09]
[    0.524383] pci 0000:00:06.0:   bridge window [mem 0xd1100000-0xd11fffff]
[    0.524463] pci 0000:0a:00.0: [10ec:8168] type 00 class 0x020000
[    0.524481] pci 0000:0a:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.524508] pci 0000:0a:00.0: reg 0x18: [mem 0xd1010000-0xd1010fff 64bit pref]
[    0.524525] pci 0000:0a:00.0: reg 0x20: [mem 0xd1000000-0xd100ffff 64bit pref]
[    0.524537] pci 0000:0a:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.524611] pci 0000:0a:00.0: supports D1 D2
[    0.524613] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.536210] pci 0000:00:07.0: PCI bridge to [bus 0a]
[    0.536215] pci 0000:00:07.0:   bridge window [io  0x2000-0x2fff]
[    0.536222] pci 0000:00:07.0:   bridge window [mem 0xd1000000-0xd10fffff 64bit pref]
[    0.536328] pci 0000:00:14.4: PCI bridge to [bus 80-8f] (subtractive decode)
[    0.536333] pci 0000:00:14.4:   bridge window [io  0x1000-0x1fff]
[    0.536342] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.536343] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.536345] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.536348] pci 0000:00:14.4:   bridge window [mem 0x000c0000-0x000c3fff window] (subtractive decode)
[    0.536349] pci 0000:00:14.4:   bridge window [mem 0x000c4000-0x000c7fff window] (subtractive decode)
[    0.536351] pci 0000:00:14.4:   bridge window [mem 0x000c8000-0x000cbfff window] (subtractive decode)
[    0.536353] pci 0000:00:14.4:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    0.536355] pci 0000:00:14.4:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    0.536357] pci 0000:00:14.4:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    0.536359] pci 0000:00:14.4:   bridge window [mem 0x000dc000-0x000dffff window] (subtractive decode)
[    0.536361] pci 0000:00:14.4:   bridge window [mem 0x000e0000-0x000e3fff window] (subtractive decode)
[    0.536363] pci 0000:00:14.4:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    0.536365] pci 0000:00:14.4:   bridge window [mem 0x000e8000-0x000ebfff window] (subtractive decode)
[    0.536367] pci 0000:00:14.4:   bridge window [mem 0x000ec000-0x000effff window] (subtractive decode)
[    0.536369] pci 0000:00:14.4:   bridge window [mem 0xc0000000-0xdfffffff window] (subtractive decode)
[    0.536371] pci 0000:00:14.4:   bridge window [mem 0xe1000000-0xffffffff window] (subtractive decode)
[    0.604285] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604356] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604423] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604488] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604552] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604617] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604681] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.604747] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0, disabled.
[    0.605285] ACPI: Enabled 4 GPEs in block 00 to 1F
[    0.605410] ACPI : EC: EC stopped
[    0.605455] ACPI : EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.605456] ACPI : EC: EC started
[    0.716723] SCSI subsystem initialized
[    0.716792] libata version 3.00 loaded.
[    0.716792] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.716792] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.716792] vgaarb: loaded
[    0.716792] vgaarb: bridge control possible 0000:01:00.0
[    0.716792] ACPI: bus type USB registered
[    0.716792] usbcore: registered new interface driver usbfs
[    0.716792] usbcore: registered new interface driver hub
[    0.716792] usbcore: registered new device driver usb
[    0.716792] PCI: Using ACPI for IRQ routing
[    0.716792] PCI: pci_cache_line_size set to 64 bytes
[    0.716792] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.716792] e820: reserve RAM buffer [mem 0xbfd70000-0xbfffffff]
[    0.716792] e820: reserve RAM buffer [mem 0xbfe58000-0xbfffffff]
[    0.716792] e820: reserve RAM buffer [mem 0xbfeec000-0xbfffffff]
[    0.716792] e820: reserve RAM buffer [mem 0xbff00000-0xbfffffff]
[    0.716792] NetLabel: Initializing
[    0.716792] NetLabel:  domain hash size = 128
[    0.716792] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.716792] NetLabel:  unlabeled traffic allowed by default
[    0.716792] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.716792] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    0.720039] clocksource: Switched to clocksource hpet
[    0.735500] VFS: Disk quotas dquot_6.6.0
[    0.735535] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.735712] AppArmor: AppArmor Filesystem Enabled
[    0.735809] pnp: PnP ACPI init
[    0.736155] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.736157] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.736165] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.736435] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.736486] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.736525] pnp 00:03: Plug and Play ACPI device, IDs SYN0153 AUI0216 AUI0217 PNP0f13 (active)
[    0.736611] system 00:04: [io  0x0400-0x04cf] has been reserved
[    0.736614] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.736616] system 00:04: [io  0x04d6] has been reserved
[    0.736618] system 00:04: [io  0x0680-0x06ff] has been reserved
[    0.736620] system 00:04: [io  0x077a] has been reserved
[    0.736623] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    0.736624] system 00:04: [io  0x0c14] has been reserved
[    0.736627] system 00:04: [io  0x0c50-0x0c52] has been reserved
[    0.736629] system 00:04: [io  0x0c6c] has been reserved
[    0.736631] system 00:04: [io  0x0c6f] has been reserved
[    0.736633] system 00:04: [io  0x0cd0-0x0cdb] has been reserved
[    0.736636] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.736706] system 00:05: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.736709] system 00:05: [mem 0xfff00000-0xffffffff] has been reserved
[    0.736712] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.804343] pnp 00:06: Plug and Play ACPI device, IDs ENE0100 (active)
[    0.804601] pnp: PnP ACPI: found 7 devices
[    0.812984] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.812991] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
[    0.812994] pci 0000:0a:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.813086] pci 0000:00:07.0: BAR 14: assigned [mem 0xd2500000-0xd25fffff]
[    0.813090] pci 0000:01:00.0: BAR 6: assigned [mem 0xd2320000-0xd233ffff pref]
[    0.813094] pci 0000:00:02.0: PCI bridge to [bus 01]
[    0.813097] pci 0000:00:02.0:   bridge window [io  0x7000-0x7fff]
[    0.813102] pci 0000:00:02.0:   bridge window [mem 0xd2300000-0xd23fffff]
[    0.813106] pci 0000:00:02.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.813113] pci 0000:00:04.0: PCI bridge to [bus 02-07]
[    0.813115] pci 0000:00:04.0:   bridge window [io  0x3000-0x6fff]
[    0.813120] pci 0000:00:04.0:   bridge window [mem 0xd1300000-0xd22fffff]
[    0.813123] pci 0000:00:04.0:   bridge window [mem 0xd0000000-0xd0ffffff 64bit pref]
[    0.813130] pci 0000:00:05.0: PCI bridge to [bus 08]
[    0.813134] pci 0000:00:05.0:   bridge window [mem 0xd1200000-0xd12fffff]
[    0.813141] pci 0000:00:06.0: PCI bridge to [bus 09]
[    0.813145] pci 0000:00:06.0:   bridge window [mem 0xd1100000-0xd11fffff]
[    0.813153] pci 0000:0a:00.0: BAR 6: assigned [mem 0xd2500000-0xd250ffff pref]
[    0.813155] pci 0000:00:07.0: PCI bridge to [bus 0a]
[    0.813157] pci 0000:00:07.0:   bridge window [io  0x2000-0x2fff]
[    0.813162] pci 0000:00:07.0:   bridge window [mem 0xd2500000-0xd25fffff]
[    0.813166] pci 0000:00:07.0:   bridge window [mem 0xd1000000-0xd10fffff 64bit pref]
[    0.813172] pci 0000:00:14.4: PCI bridge to [bus 80-8f]
[    0.813209] pci 0000:00:14.4:   bridge window [io  0x1000-0x1fff]
[    0.813226] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.813229] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.813231] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.813232] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.813234] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.813236] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.813238] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff window]
[    0.813240] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff window]
[    0.813242] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff window]
[    0.813244] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff window]
[    0.813245] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff window]
[    0.813247] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff window]
[    0.813249] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff window]
[    0.813251] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff window]
[    0.813253] pci_bus 0000:00: resource 18 [mem 0xc0000000-0xdfffffff window]
[    0.813255] pci_bus 0000:00: resource 19 [mem 0xe1000000-0xffffffff window]
[    0.813258] pci_bus 0000:01: resource 0 [io  0x7000-0x7fff]
[    0.813259] pci_bus 0000:01: resource 1 [mem 0xd2300000-0xd23fffff]
[    0.813261] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.813264] pci_bus 0000:02: resource 0 [io  0x3000-0x6fff]
[    0.813265] pci_bus 0000:02: resource 1 [mem 0xd1300000-0xd22fffff]
[    0.813267] pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd0ffffff 64bit pref]
[    0.813270] pci_bus 0000:08: resource 1 [mem 0xd1200000-0xd12fffff]
[    0.813272] pci_bus 0000:09: resource 1 [mem 0xd1100000-0xd11fffff]
[    0.813274] pci_bus 0000:0a: resource 0 [io  0x2000-0x2fff]
[    0.813275] pci_bus 0000:0a: resource 1 [mem 0xd2500000-0xd25fffff]
[    0.813277] pci_bus 0000:0a: resource 2 [mem 0xd1000000-0xd10fffff 64bit pref]
[    0.813280] pci_bus 0000:80: resource 0 [io  0x1000-0x1fff]
[    0.813281] pci_bus 0000:80: resource 4 [io  0x0000-0x0cf7 window]
[    0.813283] pci_bus 0000:80: resource 5 [io  0x0d00-0xffff window]
[    0.813285] pci_bus 0000:80: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.813287] pci_bus 0000:80: resource 7 [mem 0x000c0000-0x000c3fff window]
[    0.813289] pci_bus 0000:80: resource 8 [mem 0x000c4000-0x000c7fff window]
[    0.813291] pci_bus 0000:80: resource 9 [mem 0x000c8000-0x000cbfff window]
[    0.813293] pci_bus 0000:80: resource 10 [mem 0x000d0000-0x000d3fff window]
[    0.813294] pci_bus 0000:80: resource 11 [mem 0x000d4000-0x000d7fff window]
[    0.813297] pci_bus 0000:80: resource 12 [mem 0x000d8000-0x000dbfff window]
[    0.813298] pci_bus 0000:80: resource 13 [mem 0x000dc000-0x000dffff window]
[    0.813300] pci_bus 0000:80: resource 14 [mem 0x000e0000-0x000e3fff window]
[    0.813302] pci_bus 0000:80: resource 15 [mem 0x000e4000-0x000e7fff window]
[    0.813304] pci_bus 0000:80: resource 16 [mem 0x000e8000-0x000ebfff window]
[    0.813306] pci_bus 0000:80: resource 17 [mem 0x000ec000-0x000effff window]
[    0.813307] pci_bus 0000:80: resource 18 [mem 0xc0000000-0xdfffffff window]
[    0.813310] pci_bus 0000:80: resource 19 [mem 0xe1000000-0xffffffff window]
[    0.813369] NET: Registered protocol family 2
[    0.813626] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.813807] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.814079] TCP: Hash tables configured (established 32768 bind 32768)
[    0.814166] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.814214] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.814338] NET: Registered protocol family 1
[    1.052649] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    1.052684] PCI: CLS 64 bytes, default 64
[    1.052781] Unpacking initramfs...
[    1.969147] Freeing initrd memory: 40288K (ffff9aa473140000 - ffff9aa475898000)
[    1.969153] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.969155] software IO TLB [mem 0xbbd70000-0xbfd70000] (64MB) mapped at [ffff9aa4fbd70000-ffff9aa4ffd6ffff]
[    1.969355] Scanning for low memory corruption every 60 seconds
[    1.969374] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fb71ef839a, max_idle_ns: 440795261812 ns
[    1.969905] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.969952] audit: initializing netlink subsys (disabled)
[    1.969978] audit: type=2000 audit(1489955782.967:1): initialized
[    1.970425] Initialise system trusted keyrings
[    1.970597] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[    1.973807] zbud: loaded
[    1.974507] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.975013] fuse init (API version 7.25)
[    1.975355] Allocating IMA blacklist keyring.
[    1.977781] Key type asymmetric registered
[    1.977783] Asymmetric key parser 'x509' registered
[    1.977849] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
[    1.977925] io scheduler noop registered
[    1.977927] io scheduler deadline registered (default)
[    1.977940] io scheduler cfq registered
[    1.979082] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.979092] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.980534] ACPI: AC Adapter [ACAD] (on-line)
[    1.980618] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.980623] ACPI: Power Button [PWRB]
[    1.980698] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[    1.980812] ACPI: Lid Switch [LID]
[    1.980876] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.980878] ACPI: Power Button [PWRF]
[    2.085573] thermal LNXTHERM:00: registered as thermal_zone0
[    2.085574] ACPI: Thermal Zone [TZ01] (65 C)
[    2.085609] GHES: HEST is not enabled!
[    2.085752] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.089727] Linux agpgart interface v0.103
[    2.092872] loop: module loaded
[    2.093256] libphy: Fixed MDIO Bus: probed
[    2.093257] tun: Universal TUN/TAP device driver, 1.6
[    2.093258] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    2.093355] PPP generic driver version 2.4.2
[    2.093468] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.093472] ehci-pci: EHCI PCI platform driver
[    2.093726] QUIRK: Enable AMD PLL fix
[    2.093769] ehci-pci 0000:00:12.2: EHCI Host Controller
[    2.093778] ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 1
[    2.093785] ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.093787] ehci-pci 0000:00:12.2: applying AMD SB600/SB700 USB freeze workaround
[    2.093804] ehci-pci 0000:00:12.2: debug port 1
[    2.093876] ehci-pci 0000:00:12.2: irq 17, io mem 0xd2408500
[    2.108085] ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    2.108171] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.108173] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.108175] usb usb1: Product: EHCI Host Controller
[    2.108176] usb usb1: Manufacturer: Linux 4.8.0-42-generic ehci_hcd
[    2.108178] usb usb1: SerialNumber: 0000:00:12.2
[    2.108406] hub 1-0:1.0: USB hub found
[    2.108416] hub 1-0:1.0: 6 ports detected
[    2.108930] ehci-pci 0000:00:13.2: EHCI Host Controller
[    2.108937] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    2.108942] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    2.108944] ehci-pci 0000:00:13.2: applying AMD SB600/SB700 USB freeze workaround
[    2.108958] ehci-pci 0000:00:13.2: debug port 1
[    2.109003] ehci-pci 0000:00:13.2: irq 19, io mem 0xd2408400
[    2.124076] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    2.124127] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    2.124129] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.124130] usb usb2: Product: EHCI Host Controller
[    2.124132] usb usb2: Manufacturer: Linux 4.8.0-42-generic ehci_hcd
[    2.124134] usb usb2: SerialNumber: 0000:00:13.2
[    2.124336] hub 2-0:1.0: USB hub found
[    2.124350] hub 2-0:1.0: 6 ports detected
[    2.124673] ehci-platform: EHCI generic platform driver
[    2.124701] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.124705] ohci-pci: OHCI PCI platform driver
[    2.124883] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    2.124889] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 3
[    2.124920] ohci-pci 0000:00:12.0: irq 16, io mem 0xd2407000
[    2.148271] ACPI: Battery Slot [BAT0] (battery absent)
[    2.188355] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.188357] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.188359] usb usb3: Product: OHCI PCI host controller
[    2.188361] usb usb3: Manufacturer: Linux 4.8.0-42-generic ohci_hcd
[    2.188362] usb usb3: SerialNumber: 0000:00:12.0
[    2.188567] hub 3-0:1.0: USB hub found
[    2.188595] hub 3-0:1.0: 3 ports detected
[    2.188887] ohci-pci 0000:00:12.1: OHCI PCI host controller
[    2.188897] ohci-pci 0000:00:12.1: new USB bus registered, assigned bus number 4
[    2.188920] ohci-pci 0000:00:12.1: irq 16, io mem 0xd2406000
[    2.252123] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.252125] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.252127] usb usb4: Product: OHCI PCI host controller
[    2.252129] usb usb4: Manufacturer: Linux 4.8.0-42-generic ohci_hcd
[    2.252130] usb usb4: SerialNumber: 0000:00:12.1
[    2.252341] hub 4-0:1.0: USB hub found
[    2.252369] hub 4-0:1.0: 3 ports detected
[    2.252664] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    2.252670] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 5
[    2.252700] ohci-pci 0000:00:13.0: irq 18, io mem 0xd2405000
[    2.316126] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.316128] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.316129] usb usb5: Product: OHCI PCI host controller
[    2.316131] usb usb5: Manufacturer: Linux 4.8.0-42-generic ohci_hcd
[    2.316132] usb usb5: SerialNumber: 0000:00:13.0
[    2.316339] hub 5-0:1.0: USB hub found
[    2.316369] hub 5-0:1.0: 3 ports detected
[    2.316711] ohci-pci 0000:00:13.1: OHCI PCI host controller
[    2.316721] ohci-pci 0000:00:13.1: new USB bus registered, assigned bus number 6
[    2.316755] ohci-pci 0000:00:13.1: irq 18, io mem 0xd2404000
[    2.380159] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    2.380161] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.380163] usb usb6: Product: OHCI PCI host controller
[    2.380165] usb usb6: Manufacturer: Linux 4.8.0-42-generic ohci_hcd
[    2.380166] usb usb6: SerialNumber: 0000:00:13.1
[    2.380376] hub 6-0:1.0: USB hub found
[    2.380404] hub 6-0:1.0: 3 ports detected
[    2.380571] ohci-platform: OHCI generic platform driver
[    2.380597] uhci_hcd: USB Universal Host Controller Interface driver
[    2.380706] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.413634] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.413640] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.413984] mousedev: PS/2 mouse device common for all mice
[    2.416385] rtc_cmos 00:01: RTC can wake from S4
[    2.416545] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.416574] rtc_cmos 00:01: alarms up to one day, 114 bytes nvram, hpet irqs
[    2.416583] i2c /dev entries driver
[    2.416691] device-mapper: uevent: version 1.0.3
[    2.416852] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[    2.416888] ledtrig-cpu: registered to indicate activity on CPUs
[    2.417394] NET: Registered protocol family 10
[    2.417846] NET: Registered protocol family 17
[    2.417861] Key type dns_resolver registered
[    2.418202] microcode: CPU0: patch_level=0x02000057
[    2.418249] microcode: CPU1: patch_level=0x02000057
[    2.418316] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    2.418576] registered taskstats version 1
[    2.418582] Loading compiled-in X.509 certificates
[    2.424263] Loaded X.509 cert 'Build time autogenerated kernel key: cfdee602db06785faa24d5a223c58724a16eb423'
[    2.424312] zswap: loaded using pool lzo/zbud
[    2.452843] Key type big_key registered
[    2.455976] Key type trusted registered
[    2.458255] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    2.460470] Key type encrypted registered
[    2.460475] AppArmor: AppArmor sha1 policy hashing enabled
[    2.460479] ima: No TPM chip found, activating TPM-bypass!
[    2.460515] evm: HMAC attrs: 0x1
[    2.461164]   Magic number: 9:113:650
[    2.461198] tty ttyprintk: hash matches
[    2.461383] rtc_cmos 00:01: setting system clock to 2017-03-19 20:36:23 UTC (1489955783)
[    2.461565] acpi_cpufreq: overriding BIOS provided _PSD data
[    2.461685] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.461685] EDD information not available.
[    2.461784] PM: Hibernation image not present or could not be loaded.
[    2.464486] Freeing unused kernel memory: 1552K (ffffffff8896a000 - ffffffff88aee000)
[    2.464489] Write protecting the kernel read-only data: 14336k
[    2.465604] Freeing unused kernel memory: 1376K (ffff9aa4cb4a8000 - ffff9aa4cb600000)
[    2.466658] Freeing unused kernel memory: 272K (ffff9aa4cb9bc000 - ffff9aa4cba00000)
[    2.480418] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.504948] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    2.505081] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    2.505097] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    2.506543] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.506609] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.509783] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.509908] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.509933] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.510462] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.510567] random: udevadm: uninitialized urandom read (16 bytes read)
[    2.579633] ACPI: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
[    2.579695] [Firmware Bug]: ACPI: No _BQC method, cannot determine initial brightness
[    2.585684] acpi device:08: registered as cooling_device2
[    2.585799] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:01/input/input5
[    2.586253] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    2.594285] wmi: Mapper loaded
[    2.607491] sdhci: Secure Digital Host Controller Interface driver
[    2.607493] sdhci: Copyright(c) Pierre Ossman
[    2.609740] sdhci-pci 0000:08:00.1: SDHCI controller found [197b:2382] (rev 0)
[    2.614565] mmc0: SDHCI controller on PCI [0000:08:00.1] using DMA
[    2.614601] sdhci-pci 0000:08:00.2: SDHCI controller found [197b:2381] (rev 0)
[    2.614722] sdhci-pci 0000:08:00.2: Refusing to bind to secondary interface.
[    2.620325] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    2.620347] r8169 0000:0a:00.0: can't disable ASPM; OS doesn't have ASPM control
[    2.620909] r8169 0000:0a:00.0 eth0: RTL8168c/8111c at 0xffffb674807f0000, 00:1e:ec:ac:2b:27, XID 1c4000c0 IRQ 29
[    2.620911] r8169 0000:0a:00.0 eth0: jumbo features [frames: 6128 bytes, tx checksumming: ko]
[    2.624403] ahci 0000:00:11.0: version 3.0
[    2.627332] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    2.627337] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    2.633420] [drm] Initialized drm 1.1.0 20060810
[    2.647328] scsi host0: ahci
[    2.653150] scsi host1: ahci
[    2.658018] scsi host2: ahci
[    2.660253] firewire_ohci 0000:08:00.0: overriding IsoXmitIntMask
[    2.664090] scsi host3: ahci
[    2.670687] scsi host4: ahci
[    2.676090] scsi host5: ahci
[    2.676274] ata1: SATA max UDMA/133 abar m1024@0xd2408000 port 0xd2408100 irq 22
[    2.676277] ata2: SATA max UDMA/133 abar m1024@0xd2408000 port 0xd2408180 irq 22
[    2.676280] ata3: SATA max UDMA/133 abar m1024@0xd2408000 port 0xd2408200 irq 22
[    2.676283] ata4: SATA max UDMA/133 abar m1024@0xd2408000 port 0xd2408280 irq 22
[    2.676286] ata5: SATA max UDMA/133 abar m1024@0xd2408000 port 0xd2408300 irq 22
[    2.676289] ata6: SATA max UDMA/133 abar m1024@0xd2408000 port 0xd2408380 irq 22
[    2.704842] scsi host6: pata_atiixp
[    2.713996] scsi host7: pata_atiixp
[    2.714110] ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x8000 irq 14
[    2.714112] ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x8008 irq 15
[    2.715819] [drm] radeon kernel modesetting enabled.
[    2.719762] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    2.719765] AMD IOMMUv2 functionality not available on this system
[    2.727625] CRAT table not found
[    2.727628] Finished initializing topology ret=0
[    2.727652] kfd kfd: Initialized module
[    2.729429] [drm] initializing kernel modesetting (RV620 0x1002:0x95C4 0x103C:0x30FC 0x00).
[    2.729451] [drm] register mmio base: 0xD2300000
[    2.729452] [drm] register mmio size: 65536
[    2.730741] ATOM BIOS: BR32964.001
[    2.730792] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
[    2.730794] radeon 0000:01:00.0: GTT: 512M 0x0000000020000000 - 0x000000003FFFFFFF
[    2.730796] [drm] Detected VRAM RAM=512M, BAR=256M
[    2.730797] [drm] RAM width 64bits DDR
[    2.730926] [TTM] Zone  kernel: Available graphics memory: 2022032 kiB
[    2.730927] [TTM] Initializing pool allocator
[    2.730933] [TTM] Initializing DMA pool allocator
[    2.730970] [drm] radeon: 512M of VRAM memory ready
[    2.730971] [drm] radeon: 512M of GTT memory ready.
[    2.730987] [drm] Loading RV620 Microcode
[    2.731318] [drm] radeon: power management initialized
[    2.731430] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    2.732184] firewire_ohci 0000:08:00.0: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x10
[    2.738104] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
[    2.752513] [drm] PCIE GART of 512M enabled (table at 0x0000000000142000).
[    2.752637] radeon 0000:01:00.0: WB enabled
[    2.752642] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff9aa57239fc00
[    2.752891] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x00000000000521d0 and cpu addr 0xffffb67480a121d0
[    2.752895] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.752896] [drm] Driver supports precise vblank timestamp query.
[    2.752897] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
[    2.752976] radeon 0000:01:00.0: radeon: using MSI.
[    2.753013] [drm] radeon: irq initialized.
[    2.754625] r8169 0000:0a:00.0 enp10s0: renamed from eth0
[    2.785289] usb 3-1: new full-speed USB device number 2 using ohci-pci
[    2.785344] [drm] ring test on 0 succeeded in 1 usecs
[    2.960994] [drm] ring test on 5 succeeded in 1 usecs
[    2.961004] [drm] UVD initialized successfully.
[    2.961774] [drm] ib test on ring 0 succeeded in 0 usecs
[    3.000845] ata6: SATA link down (SStatus 0 SControl 300)
[    3.000909] ata3: SATA link down (SStatus 0 SControl 300)
[    3.000942] ata5: SATA link down (SStatus 0 SControl 300)
[    3.146595] usb 3-1: New USB device found, idVendor=3938, idProduct=1031
[    3.146597] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.146599] usb 3-1: Product: 2.4G Wireless Mouse
[    3.146601] usb 3-1: Manufacturer: MOSART Semi.
[    3.152077] ata1: softreset failed (device not ready)
[    3.152127] ata1: applying PMP SRST workaround and retrying
[    3.154532] hidraw: raw HID events driver (C) Jiri Kosina
[    3.160050] ata4: softreset failed (device not ready)
[    3.160093] ata4: applying PMP SRST workaround and retrying
[    3.160115] ata2: softreset failed (device not ready)
[    3.160164] ata2: applying PMP SRST workaround and retrying
[    3.161050] usbcore: registered new interface driver usbhid
[    3.161052] usbhid: USB HID core driver
[    3.163980] input: MOSART Semi. 2.4G Wireless Mouse as /devices/pci0000:00/0000:00:12.0/usb3/3-1/3-1:1.0/0003:3938:1031.0001/input/input7
[    3.164239] hid-generic 0003:3938:1031.0001: input,hiddev0,hidraw0: USB HID v1.10 Mouse [MOSART Semi. 2.4G Wireless Mouse] on usb-0000:00:12.0-1/input0
[    3.260198] firewire_core 0000:08:00.0: created device fw0: GUID 893f02001b0f40d7, S400
[    3.312096] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.312540] ata1.00: ATA-9: M4-CT064M4SSD2, 070H, max UDMA/100
[    3.312543] ata1.00: 125045424 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    3.313040] ata1.00: configured for UDMA/100
[    3.313455] scsi 0:0:0:0: Direct-Access     ATA      M4-CT064M4SSD2   070H PQ: 0 ANSI: 5
[    3.320088] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.320115] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.320660] ata2.00: ATA-8: FUJITSU MHZ2320BH G2, 8909, max UDMA/100
[    3.320661] ata2.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    3.321376] ata2.00: configured for UDMA/100
[    3.322328] ata4.00: ATAPI: Optiarc BD ROM BC-5500S, 1.83, max UDMA/100
[    3.324585] ata4.00: configured for UDMA/100
[    3.344329] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.344334] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[    3.344574] scsi 1:0:0:0: Direct-Access     ATA      FUJITSU MHZ2320B 8909 PQ: 0 ANSI: 5
[    3.344602] sd 0:0:0:0: [sda] Write Protect is off
[    3.344605] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.344634] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.345153]  sda: sda1 sda2
[    3.345576] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.376282] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.376369] sd 1:0:0:0: [sdb] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    3.376435] sd 1:0:0:0: [sdb] Write Protect is off
[    3.376437] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.376461] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.377452] scsi 3:0:0:0: CD-ROM            Optiarc  BD ROM BC-5500S  1.83 PQ: 0 ANSI: 5
[    3.389158] sr 3:0:0:0: [sr0] scsi3-mmc drive: 16x/16x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.389160] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.389326] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    3.389426] sr 3:0:0:0: Attached scsi generic sg2 type 5
[    3.475994]  sdb: sdb1 sdb2 < sdb5 >
[    3.476504] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.500033] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    3.538414] random: fast init done
[    3.612065] [drm] ib test on ring 5 succeeded
[    3.613461] [drm] radeon atom DIG backlight initialized
[    3.613463] [drm] Radeon Display Connectors
[    3.613464] [drm] Connector 0:
[    3.613464] [drm]   LVDS-1
[    3.613465] [drm]   Encoders:
[    3.613466] [drm]     LCD1: INTERNAL_KLDSCP_LVTMA
[    3.613467] [drm] Connector 1:
[    3.613467] [drm]   VGA-1
[    3.613469] [drm]   DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
[    3.613470] [drm]   Encoders:
[    3.613470] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    3.613471] [drm] Connector 2:
[    3.613472] [drm]   HDMI-A-1
[    3.613472] [drm]   HPD1
[    3.613474] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
[    3.613474] [drm]   Encoders:
[    3.613475] [drm]     DFP1: INTERNAL_UNIPHY
[    3.649017] usb 1-2: New USB device found, idVendor=0781, idProduct=5566
[    3.649021] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.649023] usb 1-2: Product: Cruzer Slice
[    3.649024] usb 1-2: Manufacturer: SanDisk
[    3.649026] usb 1-2: SerialNumber: 20051536400A6100EA7B
[    3.768077] usb 1-6: new high-speed USB device number 4 using ehci-pci
[    3.945840] usb 1-6: New USB device found, idVendor=046d, idProduct=09b8
[    3.945844] usb 1-6: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    3.945846] usb 1-6: Product: HP Webcam 
[    4.093884] usb-storage 1-2:1.0: USB Mass Storage device detected
[    4.094078] scsi host8: usb-storage 1-2:1.0
[    4.094208] usbcore: registered new interface driver usb-storage
[    4.098516] usbcore: registered new interface driver uas
[    4.298940] psmouse serio1: synaptics: queried max coordinates: x [..5608], y [..4638]
[    4.400642] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1a0b1, caps: 0xd04751/0xa00000/0x20000/0x0, board id: 0, fw id: 509933
[    4.535223] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
[    4.574709] [drm] fb mappable at 0xC0243000
[    4.574710] [drm] vram apper at 0xC0000000
[    4.574712] [drm] size 5324800
[    4.574712] [drm] fb depth is 24
[    4.574713] [drm]    pitch is 5888
[    4.574849] fbcon: radeondrmfb (fb0) is primary device
[    4.669749] Console: switching to colour frame buffer device 180x56
[    4.675391] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    4.688240] [drm] Initialized radeon 2.46.0 20080528 for 0000:01:00.0 on minor 0
[    5.051070] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[    5.116899] scsi 8:0:0:0: Direct-Access     SanDisk  Cruzer Slice     1.20 PQ: 0 ANSI: 5
[    5.119036] sd 8:0:0:0: Attached scsi generic sg3 type 0
[    5.122394] sd 8:0:0:0: [sdc] 125031680 512-byte logical blocks: (64.0 GB/59.6 GiB)
[    5.123358] sd 8:0:0:0: [sdc] Write Protect is off
[    5.123361] sd 8:0:0:0: [sdc] Mode Sense: 43 00 00 00
[    5.124357] sd 8:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    5.130133]  sdc: sdc1
[    5.133491] sd 8:0:0:0: [sdc] Attached SCSI removable disk
[    6.396105] random: crng init done
[    6.848108] ip_tables: (C) 2000-2006 Netfilter Core Team
[    7.146177] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    7.146380] systemd[1]: Detected architecture x86-64.
[    7.171789] systemd[1]: Set hostname to <christiancanale-HP-Pavilion-dv7-Notebook-PC>.
[    9.400607] systemd[1]: Listening on Syslog Socket.
[    9.400756] systemd[1]: Reached target User and Group Name Lookups.
[    9.400889] systemd[1]: Listening on udev Control Socket.
[    9.400960] systemd[1]: Listening on Journal Socket.
[    9.400994] systemd[1]: Reached target Remote File Systems.
[    9.401060] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    9.401082] systemd[1]: Reached target Encrypted Volumes.
[   10.286415] lp: driver loaded but no devices found
[   10.358947] ppdev: user-space parallel port driver
[   25.488266] EXT4-fs (sdb1): re-mounted. Opts: errors=remount-ro
[   25.820287] systemd-journald[254]: Received request to flush runtime journal from PID 1
[   31.255939] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   31.290111] ene_ir: chip is 0x3926 - kbver = 0x00, rev = 0xc0
[   31.290114] ene_ir: PLL freq = 1406
[   31.290115] ene_ir: KB3926C detected
[   31.290128] ene_ir: Firmware regs: e1 01
[   31.290128] ene_ir: Hardware features:
[   31.290129] ene_ir: * Uses GPIO 40 for IR demodulated input
[   31.368072] Registered IR keymap rc-rc6-mce
[   31.368201] input: ENE eHome Infrared Remote Receiver as /devices/virtual/rc/rc0/input8
[   31.368368] rc rc0: ENE eHome Infrared Remote Receiver as /devices/virtual/rc/rc0
[   31.373042] ene_ir: driver has been successfully loaded
[   31.390629] lirc_dev: IR Remote Control driver registered, major 243
[   31.647780] hp_accel: hardware type DV7 found
[   31.648534] lis3lv02d: 8 bits sensor found
[   31.659642] rc rc0: lirc_dev: driver ir-lirc-codec (ene_ir) registered at minor = 0
[   31.659644] IR LIRC bridge handler initialized
[   31.692173] input: ST LIS3LV02DL Accelerometer as /devices/platform/lis3lv02d/input/input9
[   32.290898] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[   32.291082] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[   33.494272] media: Linux media interface: v0.10
[   33.857987] Linux video capture interface: v2.00
[   34.865705] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[   34.890785] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card1/input10
[   34.984547] uvcvideo: Found UVC 1.00 device HP Webcam  (046d:09b8)
[   34.990600] uvcvideo 1-6:1.0: Entity type for entity Processing 3 was not initialized!
[   34.990604] uvcvideo 1-6:1.0: Entity type for entity Camera 1 was not initialized!
[   34.990606] uvcvideo 1-6:1.0: Entity type for entity Extension 4 was not initialized!
[   34.990609] uvcvideo 1-6:1.0: Entity type for entity Extension 13 was not initialized!
[   34.990611] uvcvideo 1-6:1.0: Entity type for entity Extension 12 was not initialized!
[   34.990612] uvcvideo 1-6:1.0: Entity type for entity Extension 10 was not initialized!
[   34.990614] uvcvideo 1-6:1.0: Entity type for entity Extension 14 was not initialized!
[   34.990719] input: HP Webcam  as /devices/pci0000:00/0000:00:12.2/usb1/1-6/1-6:1.0/input/input11
[   34.990800] usbcore: registered new interface driver uvcvideo
[   34.990801] USB Video Class driver (1.1.1)
[   34.995210] snd_hda_codec_idt hdaudioC0D0: autoconfig for 92HD71B7X: line_outs=1 (0xd/0x0/0x0/0x0/0x0) type:speaker
[   34.995225] snd_hda_codec_idt hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   34.995228] snd_hda_codec_idt hdaudioC0D0:    hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[   34.995229] snd_hda_codec_idt hdaudioC0D0:    mono: mono_out=0x0
[   34.995231] snd_hda_codec_idt hdaudioC0D0:    dig-out=0x1e/0x0
[   34.995232] snd_hda_codec_idt hdaudioC0D0:    inputs:
[   34.995234] snd_hda_codec_idt hdaudioC0D0:      Internal Mic=0x18
[   34.995236] snd_hda_codec_idt hdaudioC0D0:      Mic=0xb
[   35.042013] input: HDA ATI SB Mic as /devices/pci0000:00/0000:00:14.2/sound/card0/input12
[   35.042145] input: HDA ATI SB Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input13
[   35.093771] kvm: disabled by bios
[   35.124857] kvm: disabled by bios
[   37.642555] ath: EEPROM regdomain: 0x6a
[   37.642558] ath: EEPROM indicates we should expect a direct regpair map
[   37.642561] ath: Country alpha2 being used: 00
[   37.642562] ath: Regpair used: 0x6a
[   38.422038] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   38.422668] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffb674809c0000, irq=18
[   40.677898] input: HP WMI hotkeys as /devices/virtual/input/input14
[   41.152136] ath9k 0000:09:00.0 wlp9s0: renamed from wlan0
[   41.280076] usb 1-6: reset high-speed USB device number 4 using ehci-pci
[   42.239300] audit: type=1400 audit(1489955823.275:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=549 comm="apparmor_parser"
[   42.239311] audit: type=1400 audit(1489955823.275:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=549 comm="apparmor_parser"
[   42.239317] audit: type=1400 audit(1489955823.275:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=549 comm="apparmor_parser"
[   42.239324] audit: type=1400 audit(1489955823.275:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=549 comm="apparmor_parser"
[   42.699890] audit: type=1400 audit(1489955823.731:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=548 comm="apparmor_parser"
[   42.699904] audit: type=1400 audit(1489955823.731:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=548 comm="apparmor_parser"
[   43.083330] audit: type=1400 audit(1489955824.119:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="unity8-dash" pid=722 comm="apparmor_parser"
[   43.985281] Adding 4191228k swap on /dev/sdb5.  Priority:-1 extents:1 across:4191228k FS
[   45.152571] audit: type=1400 audit(1489955826.187:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=716 comm="apparmor_parser"
[   45.152585] audit: type=1400 audit(1489955826.187:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=716 comm="apparmor_parser"
[   45.152591] audit: type=1400 audit(1489955826.187:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=716 comm="apparmor_parser"
[   47.535258] audit_printk_skb: 51 callbacks suppressed
[   47.535261] audit: type=1400 audit(1489955828.571:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/ippusbxd" pid=738 comm="apparmor_parser"
[   47.673172] audit: type=1400 audit(1489955828.707:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=740 comm="apparmor_parser"
[   50.655387] cgroup: new mount options do not match the existing superblock, will be ignored
[   60.917737] IPv6: ADDRCONF(NETDEV_UP): wlp9s0: link is not ready
[   60.932501] IPv6: ADDRCONF(NETDEV_UP): wlp9s0: link is not ready
[   60.943355] IPv6: ADDRCONF(NETDEV_UP): enp10s0: link is not ready
[   60.957441] r8169 0000:0a:00.0 enp10s0: link down
[   60.957575] IPv6: ADDRCONF(NETDEV_UP): enp10s0: link is not ready
[   62.424846] IPv6: ADDRCONF(NETDEV_UP): wlp9s0: link is not ready
[   69.995650] wlp9s0: authenticate with 9c:80:df:95:20:11
[   70.037283] wlp9s0: send auth to 9c:80:df:95:20:11 (try 1/3)
[   70.037909] wlp9s0: authenticated
[   70.042636] wlp9s0: associate with 9c:80:df:95:20:11 (try 1/3)
[   70.043887] wlp9s0: RX AssocResp from 9c:80:df:95:20:11 (capab=0x11 status=0 aid=1)
[   70.044091] wlp9s0: associated
[   70.044761] IPv6: ADDRCONF(NETDEV_CHANGE): wlp9s0: link becomes ready
[   70.052575] ath: EEPROM regdomain: 0x8114
[   70.052578] ath: EEPROM indicates we should expect a country code
[   70.052580] ath: doing EEPROM country->regdmn map search
[   70.052580] ath: country maps to regdmn code: 0x37
[   70.052582] ath: Country alpha2 being used: DE
[   70.052582] ath: Regpair used: 0x37
[   70.052584] ath: regdomain 0x8114 dynamically updated by country IE
[   74.816543] audit: type=1400 audit(1489955855.851:31): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=944 comm="cups-browsed" capability=12  capname="net_admin"
[   93.319874] FAT-fs (sdc1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 2655.484135] usb 1-5: new high-speed USB device number 5 using ehci-pci
[ 2655.641569] usb 1-5: New USB device found, idVendor=15a9, idProduct=0025
[ 2655.641575] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2655.641579] usb 1-5: Product: HP Wireless Audio Adapter
[ 2655.641582] usb 1-5: Manufacturer: Standard Microsystems Corp.
[ 2655.752206] input: Standard Microsystems Corp. HP Wireless Audio Adapter as /devices/pci0000:00/0000:00:12.2/usb1/1-5/1-5:1.3/0003:15A9:0025.0002/input/input15
[ 2655.814532] hid-generic 0003:15A9:0025.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Standard Microsystems Corp. HP Wireless Audio Adapter] on usb-0000:00:12.2-5/input3
[ 2656.009155] usb 1-5: 1:1: cannot get freq at ep 0x1
[ 2780.124173] INFO: task fwupd:2085 blocked for more than 120 seconds.
[ 2780.124182]       Not tainted 4.8.0-42-generic #45-Ubuntu
[ 2780.124184] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[ 2780.124187] fwupd           D ffff9aa575163b58     0  2085      1 0x00000000
[ 2780.124193]  ffff9aa575163b58 00ff9aa575163f20 ffff9aa578112880 ffff9aa5774fb600
[ 2780.124196]  ffff9aa575163b58 ffff9aa575164000 ffff9aa4d081b0fc ffff9aa5774fb600
[ 2780.124199]  00000000ffffffff ffff9aa4d081b100 ffff9aa575163b70 ffffffff8829ad35
[ 2780.124202] Call Trace:
[ 2780.124212]  [<ffffffff8829ad35>] schedule+0x35/0x80
[ 2780.124215]  [<ffffffff8829afde>] schedule_preempt_disabled+0xe/0x10
[ 2780.124218]  [<ffffffff8829cc19>] __mutex_lock_slowpath+0xb9/0x130
[ 2780.124220]  [<ffffffff8829ccaf>] mutex_lock+0x1f/0x30
[ 2780.124224]  [<ffffffff88079372>] usbdev_open+0xd2/0x220
[ 2780.124227]  [<ffffffff87c3893c>] chrdev_open+0xbc/0x1a0
[ 2780.124230]  [<ffffffff87c30cf5>] do_dentry_open+0x205/0x300
[ 2780.124232]  [<ffffffff87c38880>] ? cdev_put+0x30/0x30
[ 2780.124234]  [<ffffffff87c31e8c>] vfs_open+0x4c/0x70
[ 2780.124237]  [<ffffffff87c3f07b>] ? may_open+0x9b/0x100
[ 2780.124239]  [<ffffffff87c43184>] path_openat+0x664/0x1450
[ 2780.124242]  [<ffffffff87c498a0>] ? poll_select_copy_remaining+0x150/0x150
[ 2780.124246]  [<ffffffff88163960>] ? move_addr_to_user+0xc0/0xe0
[ 2780.124248]  [<ffffffff87c452b1>] do_filp_open+0x91/0x100
[ 2780.124251]  [<ffffffff87c53d06>] ? __alloc_fd+0x46/0x180
[ 2780.124253]  [<ffffffff87c322a5>] do_sys_open+0x135/0x280
[ 2780.124256]  [<ffffffff87afce39>] ? do_gettimeofday+0x29/0x90
[ 2780.124258]  [<ffffffff87c3240e>] SyS_open+0x1e/0x20
[ 2780.124261]  [<ffffffff8829f4f6>] entry_SYSCALL_64_fastpath+0x1e/0xa8
[ 2860.768659] usb 1-5: 12:0: cannot get min/max values for control 2 (id 12)
[ 2860.769085] usbcore: registered new interface driver snd-usb-audio
[ 3071.200620] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3076.319658] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3081.440402] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3086.564392] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3091.680545] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3096.799705] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3101.919676] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3107.040521] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3112.163731] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3117.280491] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3122.399825] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3127.520515] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3132.640511] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3137.759802] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3142.879270] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3147.999468] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3153.120306] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3158.240308] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3163.360395] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3168.480531] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3173.600434] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3178.724456] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3183.840510] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3188.960609] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3194.080496] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3199.200430] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3204.324505] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3209.440503] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3214.560599] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3219.680601] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3224.802540] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3229.919751] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3235.040643] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3240.159179] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3245.280427] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3250.400533] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3255.520448] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3260.640595] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3265.760693] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3270.880498] usb 1-5: 1:1: cannot set freq 44100 to ep 0x1
[ 3313.943905] Bluetooth: Core ver 2.21
[ 3313.943943] NET: Registered protocol family 31
[ 3313.943944] Bluetooth: HCI device and connection manager initialized
[ 3313.943952] Bluetooth: HCI socket layer initialized
[ 3313.943955] Bluetooth: L2CAP socket layer initialized
[ 3313.943965] Bluetooth: SCO socket layer initialized
[ 3343.433978] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 3343.433982] Bluetooth: BNEP filters: protocol multicast
[ 3343.433992] Bluetooth: BNEP socket layer initialized
Download as text