Ubuntu Pastebin

Paste from marcuswilkinson at Sun, 1 Mar 2015 13:47:49 +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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-31-generic (buildd@batsu) (gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ) #41-Ubuntu SMP Tue Feb 10 15:24:04 UTC 2015 (Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-31-generic root=UUID=6000da35-e244-444f-be96-b9cf8164c8e9 ro quiet splash noautogroup vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000006efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000006f000-0x000000000006ffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000070000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000094caffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000094cb0000-0x00000000960affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000960b0000-0x000000009a6befff] usable
[    0.000000] BIOS-e820: [mem 0x000000009a6bf000-0x000000009a8befff] type 20
[    0.000000] BIOS-e820: [mem 0x000000009a8bf000-0x000000009aebefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009aebf000-0x000000009afbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009afbf000-0x000000009affefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000009b000000-0x000000009f9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000015f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0x9affe000  ACPI 2.0=0x9affe014  SMBIOS=0x9aebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=7, attr=0xf, range=[0x0000000000001000-0x000000000006f000) (0MB)
[    0.000000] efi: mem02: type=0, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem04: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x000000000009f000) (0MB)
[    0.000000] efi: mem05: type=0, attr=0xf, range=[0x000000000009f000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000000100000-0x00000000014f6000) (19MB)
[    0.000000] efi: mem07: type=7, attr=0xf, range=[0x00000000014f6000-0x0000000002000000) (11MB)
[    0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000002000000-0x00000000033f6000) (19MB)
[    0.000000] efi: mem09: type=7, attr=0xf, range=[0x00000000033f6000-0x0000000035902000) (805MB)
[    0.000000] efi: mem10: type=2, attr=0xf, range=[0x0000000035902000-0x0000000036c79000) (19MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000036c79000-0x000000006dcf6000) (880MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x000000006dcf6000-0x00000000930c0000) (595MB)
[    0.000000] efi: mem13: type=4, attr=0xf, range=[0x00000000930c0000-0x00000000930e0000) (0MB)
[    0.000000] efi: mem14: type=7, attr=0xf, range=[0x00000000930e0000-0x0000000093c55000) (11MB)
[    0.000000] efi: mem15: type=2, attr=0xf, range=[0x0000000093c55000-0x0000000093e29000) (1MB)
[    0.000000] efi: mem16: type=4, attr=0xf, range=[0x0000000093e29000-0x0000000094cb0000) (14MB)
[    0.000000] efi: mem17: type=0, attr=0xf, range=[0x0000000094cb0000-0x00000000960b0000) (20MB)
[    0.000000] efi: mem18: type=7, attr=0xf, range=[0x00000000960b0000-0x00000000960bd000) (0MB)
[    0.000000] efi: mem19: type=2, attr=0xf, range=[0x00000000960bd000-0x00000000960bf000) (0MB)
[    0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000960bf000-0x000000009619c000) (0MB)
[    0.000000] efi: mem21: type=1, attr=0xf, range=[0x000000009619c000-0x00000000962bf000) (1MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000962bf000-0x00000000975ad000) (18MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000975ad000-0x00000000975b9000) (0MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x00000000975b9000-0x00000000975ef000) (0MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000975ef000-0x00000000975f0000) (0MB)
[    0.000000] efi: mem26: type=4, attr=0xf, range=[0x00000000975f0000-0x0000000097f87000) (9MB)
[    0.000000] efi: mem27: type=7, attr=0xf, range=[0x0000000097f87000-0x0000000097f8c000) (0MB)
[    0.000000] efi: mem28: type=4, attr=0xf, range=[0x0000000097f8c000-0x0000000097fbb000) (0MB)
[    0.000000] efi: mem29: type=7, attr=0xf, range=[0x0000000097fbb000-0x0000000097fbc000) (0MB)
[    0.000000] efi: mem30: type=4, attr=0xf, range=[0x0000000097fbc000-0x0000000097fbd000) (0MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x0000000097fbd000-0x0000000097fbe000) (0MB)
[    0.000000] efi: mem32: type=4, attr=0xf, range=[0x0000000097fbe000-0x00000000980fc000) (1MB)
[    0.000000] efi: mem33: type=3, attr=0xf, range=[0x00000000980fc000-0x0000000098109000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x0000000098109000-0x0000000098114000) (0MB)
[    0.000000] efi: mem35: type=3, attr=0xf, range=[0x0000000098114000-0x0000000098115000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x0000000098115000-0x0000000098117000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x0000000098117000-0x000000009811e000) (0MB)
[    0.000000] efi: mem38: type=3, attr=0xf, range=[0x000000009811e000-0x0000000098126000) (0MB)
[    0.000000] efi: mem39: type=4, attr=0xf, range=[0x0000000098126000-0x0000000098129000) (0MB)
[    0.000000] efi: mem40: type=7, attr=0xf, range=[0x0000000098129000-0x000000009812a000) (0MB)
[    0.000000] efi: mem41: type=4, attr=0xf, range=[0x000000009812a000-0x0000000098159000) (0MB)
[    0.000000] efi: mem42: type=3, attr=0xf, range=[0x0000000098159000-0x0000000098160000) (0MB)
[    0.000000] efi: mem43: type=4, attr=0xf, range=[0x0000000098160000-0x0000000098165000) (0MB)
[    0.000000] efi: mem44: type=3, attr=0xf, range=[0x0000000098165000-0x0000000098166000) (0MB)
[    0.000000] efi: mem45: type=4, attr=0xf, range=[0x0000000098166000-0x0000000098167000) (0MB)
[    0.000000] efi: mem46: type=3, attr=0xf, range=[0x0000000098167000-0x0000000098169000) (0MB)
[    0.000000] efi: mem47: type=4, attr=0xf, range=[0x0000000098169000-0x000000009816a000) (0MB)
[    0.000000] efi: mem48: type=3, attr=0xf, range=[0x000000009816a000-0x000000009816f000) (0MB)
[    0.000000] efi: mem49: type=4, attr=0xf, range=[0x000000009816f000-0x0000000098174000) (0MB)
[    0.000000] efi: mem50: type=3, attr=0xf, range=[0x0000000098174000-0x0000000098177000) (0MB)
[    0.000000] efi: mem51: type=4, attr=0xf, range=[0x0000000098177000-0x0000000098178000) (0MB)
[    0.000000] efi: mem52: type=3, attr=0xf, range=[0x0000000098178000-0x000000009817d000) (0MB)
[    0.000000] efi: mem53: type=4, attr=0xf, range=[0x000000009817d000-0x0000000098181000) (0MB)
[    0.000000] efi: mem54: type=3, attr=0xf, range=[0x0000000098181000-0x00000000981a0000) (0MB)
[    0.000000] efi: mem55: type=4, attr=0xf, range=[0x00000000981a0000-0x00000000981a3000) (0MB)
[    0.000000] efi: mem56: type=3, attr=0xf, range=[0x00000000981a3000-0x00000000981aa000) (0MB)
[    0.000000] efi: mem57: type=4, attr=0xf, range=[0x00000000981aa000-0x00000000981ab000) (0MB)
[    0.000000] efi: mem58: type=3, attr=0xf, range=[0x00000000981ab000-0x00000000981ae000) (0MB)
[    0.000000] efi: mem59: type=4, attr=0xf, range=[0x00000000981ae000-0x00000000981b0000) (0MB)
[    0.000000] efi: mem60: type=7, attr=0xf, range=[0x00000000981b0000-0x00000000981b1000) (0MB)
[    0.000000] efi: mem61: type=4, attr=0xf, range=[0x00000000981b1000-0x00000000981b3000) (0MB)
[    0.000000] efi: mem62: type=7, attr=0xf, range=[0x00000000981b3000-0x00000000981b4000) (0MB)
[    0.000000] efi: mem63: type=4, attr=0xf, range=[0x00000000981b4000-0x00000000981bd000) (0MB)
[    0.000000] efi: mem64: type=7, attr=0xf, range=[0x00000000981bd000-0x00000000981c0000) (0MB)
[    0.000000] efi: mem65: type=4, attr=0xf, range=[0x00000000981c0000-0x00000000981c2000) (0MB)
[    0.000000] efi: mem66: type=7, attr=0xf, range=[0x00000000981c2000-0x00000000981c4000) (0MB)
[    0.000000] efi: mem67: type=4, attr=0xf, range=[0x00000000981c4000-0x00000000981c8000) (0MB)
[    0.000000] efi: mem68: type=3, attr=0xf, range=[0x00000000981c8000-0x00000000981d4000) (0MB)
[    0.000000] efi: mem69: type=4, attr=0xf, range=[0x00000000981d4000-0x00000000981f3000) (0MB)
[    0.000000] efi: mem70: type=3, attr=0xf, range=[0x00000000981f3000-0x0000000098237000) (0MB)
[    0.000000] efi: mem71: type=4, attr=0xf, range=[0x0000000098237000-0x00000000983da000) (1MB)
[    0.000000] efi: mem72: type=3, attr=0xf, range=[0x00000000983da000-0x00000000983db000) (0MB)
[    0.000000] efi: mem73: type=4, attr=0xf, range=[0x00000000983db000-0x00000000983dc000) (0MB)
[    0.000000] efi: mem74: type=3, attr=0xf, range=[0x00000000983dc000-0x00000000983dd000) (0MB)
[    0.000000] efi: mem75: type=4, attr=0xf, range=[0x00000000983dd000-0x00000000983de000) (0MB)
[    0.000000] efi: mem76: type=3, attr=0xf, range=[0x00000000983de000-0x00000000983e0000) (0MB)
[    0.000000] efi: mem77: type=4, attr=0xf, range=[0x00000000983e0000-0x00000000983e2000) (0MB)
[    0.000000] efi: mem78: type=3, attr=0xf, range=[0x00000000983e2000-0x00000000983e3000) (0MB)
[    0.000000] efi: mem79: type=4, attr=0xf, range=[0x00000000983e3000-0x00000000983e4000) (0MB)
[    0.000000] efi: mem80: type=3, attr=0xf, range=[0x00000000983e4000-0x00000000983e5000) (0MB)
[    0.000000] efi: mem81: type=4, attr=0xf, range=[0x00000000983e5000-0x00000000983fa000) (0MB)
[    0.000000] efi: mem82: type=3, attr=0xf, range=[0x00000000983fa000-0x00000000983fb000) (0MB)
[    0.000000] efi: mem83: type=4, attr=0xf, range=[0x00000000983fb000-0x000000009a2bf000) (30MB)
[    0.000000] efi: mem84: type=3, attr=0xf, range=[0x000000009a2bf000-0x000000009a6bf000) (4MB)
[    0.000000] efi: mem85: type=5, attr=0x800000000000000f, range=[0x000000009a6bf000-0x000000009a8bf000) (2MB)
[    0.000000] efi: mem86: type=6, attr=0x800000000000000f, range=[0x000000009a8bf000-0x000000009aabf000) (2MB)
[    0.000000] efi: mem87: type=0, attr=0xf, range=[0x000000009aabf000-0x000000009aebf000) (4MB)
[    0.000000] efi: mem88: type=10, attr=0xf, range=[0x000000009aebf000-0x000000009afbf000) (1MB)
[    0.000000] efi: mem89: type=9, attr=0xf, range=[0x000000009afbf000-0x000000009afff000) (0MB)
[    0.000000] efi: mem90: type=4, attr=0xf, range=[0x000000009afff000-0x000000009b000000) (0MB)
[    0.000000] efi: mem91: type=7, attr=0xf, range=[0x0000000100000000-0x000000015f600000) (1526MB)
[    0.000000] efi: mem92: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem93: type=0, attr=0x0, range=[0x000000009b000000-0x000000009fa00000) (74MB)
[    0.000000] efi: mem94: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
[    0.000000] efi: mem95: type=0, attr=0x0, range=[0x00000000fe101000-0x00000000fe113000) (0MB)
[    0.000000] efi: mem96: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb10000) (0MB)
[    0.000000] efi: mem97: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem98: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fee01000) (1MB)
[    0.000000] efi: mem99: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x0000000100000000) (4MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Acer Aspire E1-572P/EA50_HW   , BIOS V2.12 11/04/2013
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x15f600 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask 7F80000000 write-back
[    0.000000]   1 base 0080000000 mask 7FE0000000 write-back
[    0.000000]   2 base 009B000000 mask 7FFF000000 uncachable
[    0.000000]   3 base 009C000000 mask 7FFC000000 uncachable
[    0.000000]   4 base 00FFC00000 mask 7FFFC00000 write-protect
[    0.000000]   5 base 0100000000 mask 7F80000000 write-back
[    0.000000]   6 base 015F600000 mask 7FFFE00000 uncachable
[    0.000000]   7 base 015F800000 mask 7FFF800000 uncachable
[    0.000000]   8 base 0160000000 mask 7FE0000000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff88000007c000] 7c000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x02fd2000, 0x02fd2fff] PGTABLE
[    0.000000] BRK [0x02fd3000, 0x02fd3fff] PGTABLE
[    0.000000] BRK [0x02fd4000, 0x02fd4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x15f400000-0x15f5fffff]
[    0.000000]  [mem 0x15f400000-0x15f5fffff] page 2M
[    0.000000] BRK [0x02fd5000, 0x02fd5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x15c000000-0x15f3fffff]
[    0.000000]  [mem 0x15c000000-0x15f3fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x15bffffff]
[    0.000000]  [mem 0x100000000-0x13fffffff] page 1G
[    0.000000]  [mem 0x140000000-0x15bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x94caffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x3fffffff] page 2M
[    0.000000]  [mem 0x40000000-0x7fffffff] page 1G
[    0.000000]  [mem 0x80000000-0x94bfffff] page 2M
[    0.000000]  [mem 0x94c00000-0x94caffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x960b0000-0x9a6befff]
[    0.000000]  [mem 0x960b0000-0x961fffff] page 4k
[    0.000000]  [mem 0x96200000-0x9a5fffff] page 2M
[    0.000000]  [mem 0x9a600000-0x9a6befff] page 4k
[    0.000000] BRK [0x02fd6000, 0x02fd6fff] PGTABLE
[    0.000000] BRK [0x02fd7000, 0x02fd7fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x9afff000-0x9affffff]
[    0.000000]  [mem 0x9afff000-0x9affffff] page 4k
[    0.000000] RAMDISK: [mem 0x35902000-0x36c78fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x000000009AFFE014 000024 (v02 ACRSYS)
[    0.000000] ACPI: XSDT 0x000000009AFFE210 0000A4 (v01 ACRSYS ACRPRDCT 00000001      01000013)
[    0.000000] ACPI: FACP 0x000000009AFF8000 00010C (v05 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: DSDT 0x000000009AFE4000 0102E7 (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
[    0.000000] ACPI: FACS 0x000000009AFB9000 000040
[    0.000000] ACPI: UEFI 0x000000009AFFD000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: FPDT 0x000000009AFFB000 000044 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: MSDM 0x000000009AFFA000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: ASF! 0x000000009AFF9000 0000A5 (v32 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: HPET 0x000000009AFF7000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: APIC 0x000000009AFF6000 00008C (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: MCFG 0x000000009AFF5000 00003C (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: SSDT 0x000000009AFE1000 002028 (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.000000] ACPI: BOOT 0x000000009AFDF000 000028 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: ASPT 0x000000009AFDD000 000034 (v07 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: DBGP 0x000000009AFDC000 000034 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: SSDT 0x000000009AFDB000 000539 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.000000] ACPI: SSDT 0x000000009AFDA000 000AD8 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.000000] ACPI: SSDT 0x000000009AFD6000 003B45 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.000000] ACPI: BGRT 0x000000009AFD5000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000015f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x15f5fffff]
[    0.000000]   NODE_DATA [mem 0x15f5f8000-0x15f5fcfff]
[    0.000000]  [ffffea0000000000-ffffea00057fffff] PMD -> [ffff88015ac00000-ffff88015ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x15f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0006efff]
[    0.000000]   node   0: [mem 0x00070000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x94caffff]
[    0.000000]   node   0: [mem 0x960b0000-0x9a6befff]
[    0.000000]   node   0: [mem 0x9afff000-0x9affffff]
[    0.000000]   node   0: [mem 0x100000000-0x15f5fffff]
[    0.000000] On node 0 totalpages: 1017926
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 23 pages reserved
[    0.000000]   DMA zone: 3974 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 9739 pages used for memmap
[    0.000000]   DMA32 zone: 623296 pages, LIFO batch:31
[    0.000000]   Normal zone: 6104 pages used for memmap
[    0.000000]   Normal zone: 390656 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics stolen memory at 0x9ba00000-0x9f9fffff
[    0.000000] ACPI: PM-Timer IO Port: 0x1808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
[    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: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[    0.000000] nr_irqs_gsi: 56
[    0.000000] PM: Registered nosave memory: [mem 0x0006f000-0x0006ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x00088000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x94cb0000-0x960affff]
[    0.000000] PM: Registered nosave memory: [mem 0x9a6bf000-0x9a8befff]
[    0.000000] PM: Registered nosave memory: [mem 0x9a8bf000-0x9aebefff]
[    0.000000] PM: Registered nosave memory: [mem 0x9aebf000-0x9afbefff]
[    0.000000] PM: Registered nosave memory: [mem 0x9afbf000-0x9affefff]
[    0.000000] PM: Registered nosave memory: [mem 0x9b000000-0x9f9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x9fa00000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfe100fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfeafffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb10000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
[    0.000000] e820: [mem 0x9fa00000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88015f200000 s83328 r8192 d23168 u262144
[    0.000000] pcpu-alloc: s83328 r8192 d23168 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: 1001996
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-31-generic root=UUID=6000da35-e244-444f-be96-b9cf8164c8e9 ro quiet splash noautogroup vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3837572K/4071704K available (7743K kernel code, 1197K rwdata, 3612K rodata, 1360K init, 1308K bss, 234132K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.000000] NR_IRQS:16640 nr_irqs:1016 16
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 16777216 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2294.466 MHz processor
[    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 4588.93 BogoMIPS (lpj=9177864)
[    0.000033] pid_max: default: 32768 minimum: 301
[    0.000040] ACPI: Core revision 20140424
[    0.013079] ACPI: All ACPI Tables successfully acquired
[    0.035188] Security Framework initialized
[    0.035206] AppArmor: AppArmor initialized
[    0.035207] Yama: becoming mindful.
[    0.035483] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.036259] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.036607] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.036612] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.036811] Initializing cgroup subsys memory
[    0.036834] Initializing cgroup subsys devices
[    0.036839] Initializing cgroup subsys freezer
[    0.036842] Initializing cgroup subsys net_cls
[    0.036845] Initializing cgroup subsys blkio
[    0.036849] Initializing cgroup subsys perf_event
[    0.036851] Initializing cgroup subsys net_prio
[    0.036857] Initializing cgroup subsys hugetlb
[    0.036879] CPU: Physical Processor ID: 0
[    0.036880] CPU: Processor Core ID: 0
[    0.036884] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.037874] mce: CPU supports 7 MCE banks
[    0.037886] CPU0: Thermal monitoring enabled (TM1)
[    0.037896] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
tlb_flushall_shift: 6
[    0.038003] Freeing SMP alternatives memory: 32K (ffffffff82e81000 - ffffffff82e89000)
[    0.040995] ftrace: allocating 29316 entries in 115 pages
[    0.053728] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.093388] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
[    0.093394] TSC deadline timer enabled
[    0.093417] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
[    0.093437] ... version:                3
[    0.093438] ... bit width:              48
[    0.093439] ... generic registers:      4
[    0.093440] ... value mask:             0000ffffffffffff
[    0.093440] ... max period:             0000ffffffffffff
[    0.093441] ... fixed-purpose events:   3
[    0.093442] ... event mask:             000000070000000f
[    0.095218] x86: Booting SMP configuration:
[    0.095220] .... node  #0, CPUs:      #1
[    0.109308] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.109386]  #2 #3
[    0.137599] x86: Booted up 1 node, 4 CPUs
[    0.137601] smpboot: Total of 4 processors activated (18355.72 BogoMIPS)
[    0.141366] devtmpfs: initialized
[    0.143267] evm: security.selinux
[    0.143269] evm: security.SMACK64
[    0.143270] evm: security.SMACK64EXEC
[    0.143270] evm: security.SMACK64TRANSMUTE
[    0.143271] evm: security.SMACK64MMAP
[    0.143272] evm: security.ima
[    0.143273] evm: security.capability
[    0.143327] PM: Registering ACPI NVS region [mem 0x9aebf000-0x9afbefff] (1048576 bytes)
[    0.144103] pinctrl core: initialized pinctrl subsystem
[    0.144166] regulator-dummy: no parameters
[    0.144200] RTC time: 12:23:40, date: 03/01/15
[    0.144249] NET: Registered protocol family 16
[    0.144384] cpuidle: using governor ladder
[    0.144386] cpuidle: using governor menu
[    0.144437] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.144439] ACPI: bus type PCI registered
[    0.144440] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.144506] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.144508] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.144805] PCI: Using configuration type 1 for base access
[    0.149575] ACPI: Added _OSI(Module Device)
[    0.149577] ACPI: Added _OSI(Processor Device)
[    0.149578] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.149579] ACPI: Added _OSI(Processor Aggregator Device)
[    0.153463] ACPI: Executed 1 blocks of module-level executable AML code
[    0.157859] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.165300] ACPI: Dynamic OEM Table Load:
[    0.165308] ACPI: SSDT 0xFFFF880158FE1400 0003D3 (v01 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    0.169421] ACPI: Dynamic OEM Table Load:
[    0.169429] ACPI: SSDT 0xFFFF880158811800 0005AA (v01 PmRef  ApIst    00003000 INTL 20120913)
[    0.173285] ACPI: Dynamic OEM Table Load:
[    0.173292] ACPI: SSDT 0xFFFF880158F33E00 000119 (v01 PmRef  ApCst    00003000 INTL 20120913)
[    0.201208] ACPI: Interpreter enabled
[    0.201217] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
[    0.201224] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
[    0.201242] ACPI: (supports S0 S3 S4 S5)
[    0.201244] ACPI: Using IOAPIC for interrupt routing
[    0.201271] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.220871] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.220877] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.221159] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.221673] PCI host bridge to bus 0000:00
[    0.221676] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.221678] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.221680] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.221681] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.221683] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[    0.221684] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[    0.221685] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[    0.221687] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[    0.221688] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.221689] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.221691] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.221692] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    0.221693] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.221695] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    0.221696] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[    0.221697] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[    0.221699] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
[    0.221700] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff]
[    0.221708] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[    0.221855] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
[    0.221867] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
[    0.221873] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[    0.221878] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.222019] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[    0.222027] pci 0000:00:03.0: reg 0x10: [mem 0xb0610000-0xb0613fff 64bit]
[    0.222188] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[    0.222204] pci 0000:00:14.0: reg 0x10: [mem 0xb0600000-0xb060ffff 64bit]
[    0.222257] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.222355] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.222390] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[    0.222410] pci 0000:00:16.0: reg 0x10: [mem 0xb0618000-0xb061801f 64bit]
[    0.222473] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.222610] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[    0.222624] pci 0000:00:1b.0: reg 0x10: [mem 0xb0614000-0xb0617fff 64bit]
[    0.222685] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.222784] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.222815] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
[    0.222877] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.222977] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.223009] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
[    0.223070] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.223207] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
[    0.225050] pci 0000:00:1d.0: reg 0x10: [mem 0xb061c000-0xb061c3ff]
[    0.225983] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.226097] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.226135] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
[    0.226364] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
[    0.226377] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.226384] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.226390] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.226396] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.226403] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.226409] pci 0000:00:1f.2: reg 0x24: [mem 0xb061b000-0xb061b7ff]
[    0.226441] pci 0000:00:1f.2: PME# supported from D3hot
[    0.226563] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[    0.226576] pci 0000:00:1f.3: reg 0x10: [mem 0xb0619000-0xb06190ff 64bit]
[    0.226594] pci 0000:00:1f.3: reg 0x20: [io  0x3040-0x305f]
[    0.226828] pci 0000:01:00.0: [14e4:16b3] type 00 class 0x020000
[    0.226854] pci 0000:01:00.0: reg 0x10: [mem 0xb0410000-0xb041ffff 64bit pref]
[    0.226873] pci 0000:01:00.0: reg 0x18: [mem 0xb0420000-0xb042ffff 64bit pref]
[    0.226907] pci 0000:01:00.0: reg 0x30: [mem 0xfffff800-0xffffffff pref]
[    0.227007] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.227033] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.227103] pci 0000:01:00.1: [14e4:16bc] type 00 class 0x080501
[    0.227129] pci 0000:01:00.1: reg 0x10: [mem 0xb0400000-0xb040ffff 64bit pref]
[    0.227254] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[    0.233280] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.233288] pci 0000:00:1c.0:   bridge window [mem 0xb0400000-0xb04fffff 64bit pref]
[    0.233347] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
[    0.233370] pci 0000:02:00.0: reg 0x10: [mem 0xb0500000-0xb057ffff 64bit]
[    0.233420] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.233483] pci 0000:02:00.0: supports D1 D2
[    0.233485] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.241226] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.241231] pci 0000:00:1c.3:   bridge window [mem 0xb0500000-0xb05fffff]
[    0.241278] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    0.245705] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245747] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245787] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245825] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245863] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245901] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245939] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.245976] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.246140] ACPI: Enabled 5 GPEs in block 00 to 7F
[    0.246173] ACPI : EC: GPE = 0x22, I/O: command/status = 0x66, data = 0x62
[    0.246258] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.246260] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.246263] vgaarb: loaded
[    0.246264] vgaarb: bridge control possible 0000:00:02.0
[    0.246480] SCSI subsystem initialized
[    0.246522] libata version 3.00 loaded.
[    0.246546] ACPI: bus type USB registered
[    0.246562] usbcore: registered new interface driver usbfs
[    0.246569] usbcore: registered new interface driver hub
[    0.246590] usbcore: registered new device driver usb
[    0.246740] PCI: Using ACPI for IRQ routing
[    0.251938] PCI: pci_cache_line_size set to 64 bytes
[    0.251975] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
[    0.251976] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.251977] e820: reserve RAM buffer [mem 0x94cb0000-0x97ffffff]
[    0.251979] e820: reserve RAM buffer [mem 0x9a6bf000-0x9bffffff]
[    0.251980] e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
[    0.251981] e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
[    0.252086] NetLabel: Initializing
[    0.252087] NetLabel:  domain hash size = 128
[    0.252088] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.252098] NetLabel:  unlabeled traffic allowed by default
[    0.252156] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.252161] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.254199] Switched to clocksource hpet
[    0.259392] AppArmor: AppArmor Filesystem Enabled
[    0.259424] pnp: PnP ACPI init
[    0.259437] ACPI: bus type PNP registered
[    0.259566] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.259569] system 00:00: [io  0xfd60-0xfd63] has been reserved
[    0.259570] system 00:00: [io  0xffff] has been reserved
[    0.259572] system 00:00: [io  0xffff] has been reserved
[    0.259573] system 00:00: [io  0xffff] has been reserved
[    0.259575] system 00:00: [io  0x1800-0x18fe] could not be reserved
[    0.259577] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.259580] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.259622] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.259664] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.259666] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.259694] pnp 00:03: Plug and Play ACPI device, IDs MSF0001 PNP0303 (active)
[    0.259797] pnp 00:04: Plug and Play ACPI device, IDs ETD0500 PNP0f13 (active)
[    0.262326] pnp 00:05: disabling [mem 0xffffffff-0x10000fffe] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfffff800-0xffffffff pref]
[    0.262330] pnp 00:05: disabling [mem 0xffffffff-0x10000fffe disabled] because it overlaps 0000:02:00.0 BAR 6 [mem 0xffff0000-0xffffffff pref]
[    0.262353] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.262355] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.262357] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.262358] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.262360] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.262362] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.262363] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.262365] system 00:05: [mem 0xff000000-0xff000fff] has been reserved
[    0.262367] system 00:05: [mem 0xff010000-0xffffffff] could not be reserved
[    0.262368] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.262370] system 00:05: [mem 0x9fa20000-0x9fa20fff] has been reserved
[    0.262372] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.262604] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.262989] pnp: PnP ACPI: found 7 devices
[    0.262990] ACPI: bus type PNP unregistered
[    0.269031] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffff800-0xffffffff pref]: no compatible bridge window
[    0.269034] pci 0000:02:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.269055] pci 0000:00:1c.0: BAR 14: assigned [mem 0x9fb00000-0x9fbfffff]
[    0.269058] pci 0000:01:00.0: BAR 6: assigned [mem 0x9fb00000-0x9fb007ff pref]
[    0.269060] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.269064] pci 0000:00:1c.0:   bridge window [mem 0x9fb00000-0x9fbfffff]
[    0.269067] pci 0000:00:1c.0:   bridge window [mem 0xb0400000-0xb04fffff 64bit pref]
[    0.269072] pci 0000:02:00.0: BAR 6: assigned [mem 0xb0580000-0xb058ffff pref]
[    0.269074] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.269078] pci 0000:00:1c.3:   bridge window [mem 0xb0500000-0xb05fffff]
[    0.269085] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.269086] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.269088] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.269089] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[    0.269091] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[    0.269092] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[    0.269094] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
[    0.269095] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
[    0.269096] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
[    0.269098] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
[    0.269099] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
[    0.269101] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
[    0.269102] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
[    0.269104] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
[    0.269105] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
[    0.269106] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
[    0.269108] pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff]
[    0.269110] pci_bus 0000:01: resource 1 [mem 0x9fb00000-0x9fbfffff]
[    0.269111] pci_bus 0000:01: resource 2 [mem 0xb0400000-0xb04fffff 64bit pref]
[    0.269113] pci_bus 0000:02: resource 1 [mem 0xb0500000-0xb05fffff]
[    0.269138] NET: Registered protocol family 2
[    0.269297] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.269361] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.269422] TCP: Hash tables configured (established 32768 bind 32768)
[    0.269437] TCP: reno registered
[    0.269444] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.269457] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.269501] NET: Registered protocol family 1
[    0.269514] pci 0000:00:02.0: Video device with shadowed ROM
[    0.286278] PCI: CLS 64 bytes, default 64
[    0.286326] Trying to unpack rootfs image as initramfs...
[    0.599914] Freeing initrd memory: 19932K (ffff880035902000 - ffff880036c79000)
[    0.599953] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.599957] software IO TLB [mem 0x8f0c0000-0x930c0000] (64MB) mapped at [ffff88008f0c0000-ffff8800930bffff]
[    0.600004] Simple Boot Flag at 0x44 set to 0x1
[    0.600161] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
[    0.600205] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x17
[    0.600211] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x17
[    0.600216] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x17
[    0.600222] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x17
[    0.600271] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.600294] Scanning for low memory corruption every 60 seconds
[    0.600596] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.600620] Initialise system trusted keyring
[    0.600643] audit: initializing netlink subsys (disabled)
[    0.600658] audit: type=2000 audit(1425212620.592:1): initialized
[    0.600967] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.602348] zpool: loaded
[    0.602351] zbud: loaded
[    0.602505] VFS: Disk quotas dquot_6.5.2
[    0.602537] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.602955] fuse init (API version 7.23)
[    0.603039] msgmni has been set to 7661
[    0.603094] Key type big_key registered
[    0.603463] Key type asymmetric registered
[    0.603466] Asymmetric key parser 'x509' registered
[    0.603498] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.603538] io scheduler noop registered
[    0.603540] io scheduler deadline registered (default)
[    0.603584] io scheduler cfq registered
[    0.603653] pcieport 0000:00:1c.0: device [8086:9c14] has invalid IRQ; check vendor BIOS
[    0.603770] pcieport 0000:00:1c.0: irq 56 for MSI/MSI-X
[    0.603824] pcieport 0000:00:1c.3: device [8086:9c16] has invalid IRQ; check vendor BIOS
[    0.603902] pcieport 0000:00:1c.3: irq 57 for MSI/MSI-X
[    0.603978] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.603980] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.603981] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.603984] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.603997] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[    0.603999] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    0.604002] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
[    0.604015] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.604029] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.604075] efifb: probing for efifb
[    0.604091] efifb: framebuffer at 0xa0000000, mapped to 0xffffc90010800000, using 4160k, total 4160k
[    0.604092] efifb: mode is 1366x768x32, linelength=5504, pages=1
[    0.604093] efifb: scrolling: redraw
[    0.604095] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.604172] Console: switching to colour frame buffer device 170x48
[    0.604185] fb0: EFI VGA frame buffer device
[    0.604200] intel_idle: MWAIT substates: 0x11142120
[    0.604201] intel_idle: v0.4 model 0x45
[    0.604202] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.604479] ACPI: AC Adapter [ACAD] (on-line)
[    0.604570] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0D:00/input/input0
[    0.604591] ACPI: Lid Switch [LID0]
[    0.604623] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input1
[    0.604626] ACPI: Power Button [PWRB]
[    0.604657] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input2
[    0.604658] ACPI: Sleep Button [SLPB]
[    0.604696] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.604698] ACPI: Power Button [PWRF]
[    0.604965] GHES: HEST is not enabled!
[    0.605044] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.646073] [Firmware Bug]: battery: (dis)charge rate invalid.
[    0.646106] ACPI: Battery Slot [BAT1] (battery present)
[    0.646271] Linux agpgart interface v0.103
[    0.648011] brd: module loaded
[    0.648554] loop: module loaded
[    0.648758] libphy: Fixed MDIO Bus: probed
[    0.648762] tun: Universal TUN/TAP device driver, 1.6
[    0.648763] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.648808] PPP generic driver version 2.4.2
[    0.648847] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.648852] ehci-pci: EHCI PCI platform driver
[    0.648958] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.648962] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    0.648973] ehci-pci 0000:00:1d.0: debug port 2
[    0.652854] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.652875] ehci-pci 0000:00:1d.0: irq 23, io mem 0xb061c000
[    0.661983] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.662017] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.662019] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.662021] usb usb1: Product: EHCI Host Controller
[    0.662022] usb usb1: Manufacturer: Linux 3.16.0-31-generic ehci_hcd
[    0.662023] usb usb1: SerialNumber: 0000:00:1d.0
[    0.662184] hub 1-0:1.0: USB hub found
[    0.662190] hub 1-0:1.0: 2 ports detected
[    0.662314] ehci-platform: EHCI generic platform driver
[    0.662324] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.662330] ohci-pci: OHCI PCI platform driver
[    0.662340] ohci-platform: OHCI generic platform driver
[    0.662348] uhci_hcd: USB Universal Host Controller Interface driver
[    0.662452] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.662456] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.662523] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.662538] xhci_hcd 0000:00:14.0: irq 58 for MSI/MSI-X
[    0.662585] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.662587] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.662588] usb usb2: Product: xHCI Host Controller
[    0.662590] usb usb2: Manufacturer: Linux 3.16.0-31-generic xhci_hcd
[    0.662591] usb usb2: SerialNumber: 0000:00:14.0
[    0.662770] hub 2-0:1.0: USB hub found
[    0.662780] hub 2-0:1.0: 9 ports detected
[    0.664579] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.664582] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    0.664664] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003
[    0.664667] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.664686] usb usb3: Product: xHCI Host Controller
[    0.664687] usb usb3: Manufacturer: Linux 3.16.0-31-generic xhci_hcd
[    0.664689] usb usb3: SerialNumber: 0000:00:14.0
[    0.664813] hub 3-0:1.0: USB hub found
[    0.664820] hub 3-0:1.0: 4 ports detected
[    0.665470] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
[    0.690412] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.690418] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.690540] mousedev: PS/2 mouse device common for all mice
[    0.693260] rtc_cmos 00:01: RTC can wake from S4
[    0.693395] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.693420] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[    0.693478] device-mapper: uevent: version 1.0.3
[    0.693537] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    0.693549] Intel P-state driver initializing.
[    0.693561] Intel pstate controlling: cpu 0
[    0.693581] Intel pstate controlling: cpu 1
[    0.693625] Intel pstate controlling: cpu 2
[    0.693642] Intel pstate controlling: cpu 3
[    0.693675] Consider also installing thermald for improved thermal control.
[    0.693681] ledtrig-cpu: registered to indicate activity on CPUs
[    0.693685] EFI Variables Facility v0.08 2004-May-17
[    0.715993] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    0.720700] TCP: cubic registered
[    0.720791] NET: Registered protocol family 10
[    0.721003] NET: Registered protocol family 17
[    0.721012] Key type dns_resolver registered
[    0.721318] Loading compiled-in X.509 certificates
[    0.722045] Loaded X.509 cert 'Magrathea: Glacier signing key: a112c18a448a560047ef1f4db74d497f61a45099'
[    0.722070] registered taskstats version 1
[    0.723767] Key type trusted registered
[    0.726380] Key type encrypted registered
[    0.726387] AppArmor: AppArmor sha1 policy hashing enabled
[    0.726391] ima: No TPM chip found, activating TPM-bypass!
[    0.726405] evm: HMAC attrs: 0x1
[    0.726711]   Magic number: 7:150:379
[    0.726804] rtc_cmos 00:01: setting system clock to 2015-03-01 12:23:40 UTC (1425212620)
[    0.726860] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.726861] EDD information not available.
[    0.726929] PM: Hibernation image not present or could not be loaded.
[    0.727694] Freeing unused kernel memory: 1360K (ffffffff82d2d000 - ffffffff82e81000)
[    0.727695] Write protecting the kernel read-only data: 12288k
[    0.728709] Freeing unused kernel memory: 436K (ffff880002793000 - ffff880002800000)
[    0.729620] Freeing unused kernel memory: 484K (ffff880002b87000 - ffff880002c00000)
[    0.738651] systemd-udevd[124]: starting version 208
[    0.739029] random: systemd-udevd urandom read with 3 bits of entropy available
[    0.749620] sdhci: Secure Digital Host Controller Interface driver
[    0.749623] sdhci: Copyright(c) Pierre Ossman
[    0.762368] pps_core: LinuxPPS API ver. 1 registered
[    0.762371] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.762767] sdhci-pci 0000:01:00.1: SDHCI controller found [14e4:16bc] (rev 1)
[    0.762863] mmc0: no vqmmc regulator found
[    0.762865] mmc0: no vmmc regulator found
[    0.762990] mmc0: SDHCI controller on PCI [0000:01:00.1] using ADMA
[    0.763567] PTP clock support registered
[    0.764888] ahci 0000:00:1f.2: version 3.0
[    0.764997] ahci 0000:00:1f.2: irq 59 for MSI/MSI-X
[    0.765012] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    0.768022] tg3.c:v3.137 (May 11, 2014)
[    0.778019] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x3 impl SATA mode
[    0.778025] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo only pio slum part deso sadm sds apst 
[    0.778473] scsi0 : ahci
[    0.778596] scsi1 : ahci
[    0.778934] scsi2 : ahci
[    0.779298] scsi3 : ahci
[    0.779369] ata1: SATA max UDMA/133 abar m2048@0xb061b000 port 0xb061b100 irq 59
[    0.779373] ata2: SATA max UDMA/133 abar m2048@0xb061b000 port 0xb061b180 irq 59
[    0.779374] ata3: DUMMY
[    0.779376] ata4: DUMMY
[    0.805840] tg3 0000:01:00.0 eth0: Tigon3 [partno(BCM57786) rev 57766001] (PCI Express) MAC address 20:1a:06:b1:68:32
[    0.805844] tg3 0000:01:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    0.805847] tg3 0000:01:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    0.805849] tg3 0000:01:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    0.973859] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.097795] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.098502] ata1.00: ATA-8: ST500LT012-9WS142, 0001SDM1, max UDMA/133
[    1.098505] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.099289] ata1.00: configured for UDMA/133
[    1.099506] scsi 0:0:0:0: Direct-Access     ATA      ST500LT012-9WS14 SDM1 PQ: 0 ANSI: 5
[    1.099809] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.099812] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.099844] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.099869] sd 0:0:0:0: [sda] Write Protect is off
[    1.099873] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.099909] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.110037] usb 1-1: New USB device found, idVendor=8087, idProduct=8000
[    1.110039] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.110341] hub 1-1:1.0: USB hub found
[    1.110442] hub 1-1:1.0: 8 ports detected
[    1.160211]  sda: sda1 sda2 sda3 sda4
[    1.160584] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.277743] usb 2-2: new full-speed USB device number 2 using xhci_hcd
[    1.410269] usb 2-2: New USB device found, idVendor=045e, idProduct=0745
[    1.410273] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.410274] usb 2-2: Product: Microsoft® Nano Transceiver v2.0
[    1.410276] usb 2-2: Manufacturer: Microsoft
[    1.413340] hidraw: raw HID events driver (C) Jiri Kosina
[    1.417614] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.419194] ata2.00: ATAPI: MATSHITADVD-RAM UJ8D2Q, 1.10, max UDMA/133
[    1.420691] ata2.00: configured for UDMA/133
[    1.422144] scsi 1:0:0:0: CD-ROM            MATSHITA DVD-RAM UJ8D2Q   1.10 PQ: 0 ANSI: 5
[    1.426868] usbcore: registered new interface driver usbhid
[    1.426872] usbhid: USB HID core driver
[    1.428321] input: Microsoft Microsoft® Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2:1.0/0003:045E:0745.0001/input/input8
[    1.428416] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® Nano Transceiver v2.0] on usb-0000:00:14.0-2/input0
[    1.428670] input: Microsoft Microsoft® Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2:1.1/0003:045E:0745.0002/input/input9
[    1.428782] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® Nano Transceiver v2.0] on usb-0000:00:14.0-2/input1
[    1.438088] input: Microsoft Microsoft® Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:14.0/usb2/2-2/2-2:1.2/0003:045E:0745.0003/input/input10
[    1.438292] hid-generic 0003:045E:0745.0003: input,hiddev0,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® Nano Transceiver v2.0] on usb-0000:00:14.0-2/input2
[    1.439875] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.439878] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.440013] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.440089] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    1.552292] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x454f00)
[    1.577578] usb 2-5: new full-speed USB device number 3 using xhci_hcd
[    1.579988] psmouse serio1: elantech: Synaptics capabilities query result 0x79, 0x16, 0x0c.
[    1.597482] tsc: Refined TSC clocksource calibration: 2294.688 MHz
[    1.706476] usb 2-5: New USB device found, idVendor=04ca, idProduct=300b
[    1.706479] usb 2-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.711393] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input7
[    1.873395] usb 2-7: new full-speed USB device number 4 using xhci_hcd
[    2.002672] usb 2-7: New USB device found, idVendor=04f3, idProduct=0261
[    2.002676] usb 2-7: New USB device strings: Mfr=4, Product=14, SerialNumber=0
[    2.002677] usb 2-7: Product: Touchscreen
[    2.002679] usb 2-7: Manufacturer: ELAN
[    2.002785] usb 2-7: ep 0x2 - rounding interval to 64 microframes, ep desc says 80 microframes
[    2.095236] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.173194] usb 2-8: new high-speed USB device number 5 using xhci_hcd
[    2.335943] usb 2-8: New USB device found, idVendor=04f2, idProduct=b3f6
[    2.335946] usb 2-8: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    2.335948] usb 2-8: Product: HD WebCam
[    2.335950] usb 2-8: Manufacturer: Chicony Electronics Co.,Ltd.
[    2.335951] usb 2-8: SerialNumber: 0001
[    2.596960] Switched to clocksource tsc
[    2.740116] random: nonblocking pool is initialized
[    4.910658] Adding 31250428k swap on /dev/sda2.  Priority:-1 extents:1 across:31250428k FS
[    5.842265] systemd-udevd[325]: starting version 208
[    6.259318] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    7.463398] lp: driver loaded but no devices found
[    7.489425] ppdev: user-space parallel port driver
[    9.096732] wmi: Mapper loaded
[    9.519974] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    9.540713] [drm] Initialized drm 1.1.0 20060810
[    9.689757] mei_me 0000:00:16.0: irq 60 for MSI/MSI-X
[    9.725943] snd_hda_intel 0000:00:1b.0: irq 61 for MSI/MSI-X
[    9.744513] Bluetooth: Core ver 2.19
[    9.744535] NET: Registered protocol family 31
[    9.744537] Bluetooth: HCI device and connection manager initialized
[    9.744544] Bluetooth: HCI socket layer initialized
[    9.744547] Bluetooth: L2CAP socket layer initialized
[    9.744555] Bluetooth: SCO socket layer initialized
[    9.789771] sound hdaudioC1D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    9.789777] sound hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    9.789780] sound hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    9.789782] sound hdaudioC1D0:    mono: mono_out=0x0
[    9.789785] sound hdaudioC1D0:    inputs:
[    9.789788] sound hdaudioC1D0:      Mic=0x1b
[    9.796683] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
[    9.944393] usbcore: registered new interface driver btusb
[   10.385995] AVX2 version of gcm_enc/dec engaged.
[   10.650988] [drm] Memory usable by graphics device = 2048M
[   10.650993] checking generic (a0000000 410000) vs hw (a0000000 10000000)
[   10.650995] fb: switching to inteldrmfb from EFI VGA
[   10.651033] Console: switching to colour dummy device 80x25
[   10.651083] [drm] Replacing VGA console driver
[   10.672487] i915 0000:00:02.0: irq 62 for MSI/MSI-X
[   10.672496] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   10.672497] [drm] Driver supports precise vblank timestamp query.
[   10.672515] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   10.694124] cfg80211: Calling CRDA to update world regulatory domain
[   10.694137] cfg80211: Calling CRDA to update world regulatory domain
[   10.695409] [drm] VBT doesn't support DRRS
[   10.784380] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
[   10.801042] fbcon: inteldrmfb (fb0) is primary device
[   10.801100] Console: switching to colour frame buffer device 170x48
[   10.801116] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   10.801117] i915 0000:00:02.0: registered panic notifier
[   10.833623] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   10.833705] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12
[   10.833784] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   10.834147] snd_hda_intel 0000:00:03.0: irq 63 for MSI/MSI-X
[   10.855732] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[   11.032193] intel_rapl: Found RAPL domain package
[   11.032196] intel_rapl: Found RAPL domain core
[   11.032197] intel_rapl: Found RAPL domain uncore
[   11.032198] intel_rapl: Found RAPL domain dram
[   11.077611] input: ELAN Touchscreen as /devices/pci0000:00/0000:00:14.0/usb2/2-7/2-7:1.0/0003:04F3:0261.0004/input/input14
[   11.077764] hid-multitouch 0003:04F3:0261.0004: input,hiddev0,hidraw3: USB HID v1.10 Device [ELAN Touchscreen] on usb-0000:00:14.0-7/input0
[   11.192047] media: Linux media interface: v0.10
[   11.220154] Linux video capture interface: v2.00
[   11.380968] ath9k: unknown parameter 'override_eeprom_regdomain' ignored
[   11.381156] ath: phy0: WB335 2-ANT card detected
[   11.381159] ath: phy0: Set BT/WLAN RX diversity capability
[   11.387794] ath: phy0: Enable LNA combining
[   11.388894] ath: EEPROM regdomain: 0x65
[   11.388895] ath: EEPROM indicates we should expect a direct regpair map
[   11.388896] ath: Country alpha2 being used: 00
[   11.388897] ath: Regpair used: 0x65
[   11.489869] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   11.490171] ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90011680000, irq=19
[   11.540301] uvcvideo: Found UVC 1.00 device HD WebCam (04f2:b3f6)
[   11.541542] input: HD WebCam as /devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input16
[   11.541611] usbcore: registered new interface driver uvcvideo
[   11.541612] USB Video Class driver (1.1.1)
[   11.815943] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[   11.889674] cfg80211: Calling CRDA to update world regulatory domain
[   11.970543] cfg80211: World regulatory domain updated:
[   11.970546] cfg80211:  DFS Master region: unset
[   11.970547] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   11.970550] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   11.970551] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   11.970553] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   11.970554] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   11.970555] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   11.970721] cfg80211: Calling CRDA for country: GB
[   12.228317] audit: type=1400 audit(1425212632.003:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=456 comm="apparmor_parser"
[   12.228728] audit: type=1400 audit(1425212632.003:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=456 comm="apparmor_parser"
[   12.229103] audit: type=1400 audit(1425212632.003:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=456 comm="apparmor_parser"
[   12.251274] audit: type=1400 audit(1425212632.023:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=457 comm="apparmor_parser"
[   12.251472] audit: type=1400 audit(1425212632.023:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=457 comm="apparmor_parser"
[   12.251674] audit: type=1400 audit(1425212632.027:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=457 comm="apparmor_parser"
[   12.286934] audit: type=1400 audit(1425212632.059:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=541 comm="apparmor_parser"
[   12.287146] audit: type=1400 audit(1425212632.059:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=541 comm="apparmor_parser"
[   12.287326] audit: type=1400 audit(1425212632.059:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=541 comm="apparmor_parser"
[   13.061839] cfg80211: Regulatory domain changed to country: GB
[   13.061841] cfg80211:  DFS Master region: unset
[   13.061842] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   13.061844] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   13.061846] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   13.061847] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
[   13.061848] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
[   13.061849] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   13.061859] cfg80211: Calling CRDA for country: IN
[   13.063674] cfg80211: Regulatory domain changed to country: IN
[   13.063677] cfg80211:  DFS Master region: unset
[   13.063678] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   13.063679] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   13.063681] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   13.063682] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
[   13.063683] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   13.088688] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[   13.291146] init: Error while reading from descriptor: Broken pipe
[   13.293948] init: failsafe main process (694) killed by TERM signal
[   14.806846] audit: type=1400 audit(1425212634.583:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=770 comm="apparmor_parser"
[   17.854794] audit_printk_skb: 12 callbacks suppressed
[   17.854797] audit: type=1400 audit(1425212637.631:16): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=770 comm="apparmor_parser"
[   17.855222] audit: type=1400 audit(1425212637.631:17): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=770 comm="apparmor_parser"
[   17.855812] audit: type=1400 audit(1425212637.631:18): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=770 comm="apparmor_parser"
[   17.856077] audit: type=1400 audit(1425212637.631:19): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=770 comm="apparmor_parser"
[   17.856697] audit: type=1400 audit(1425212637.635:20): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=770 comm="apparmor_parser"
[   17.856974] audit: type=1400 audit(1425212637.635:21): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=770 comm="apparmor_parser"
[   18.622228] audit: type=1400 audit(1425212638.399:22): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/mission-control-5" pid=770 comm="apparmor_parser"
[   18.622633] audit: type=1400 audit(1425212638.399:23): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-*" pid=770 comm="apparmor_parser"
[   18.622980] audit: type=1400 audit(1425212638.399:24): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pxgsettings" pid=770 comm="apparmor_parser"
[   18.623211] audit: type=1400 audit(1425212638.399:25): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=770 comm="apparmor_parser"
[   19.008297] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   19.008301] Bluetooth: BNEP filters: protocol multicast
[   19.008311] Bluetooth: BNEP socket layer initialized
[   19.129818] Bluetooth: RFCOMM TTY layer initialized
[   19.129830] Bluetooth: RFCOMM socket layer initialized
[   19.129838] Bluetooth: RFCOMM ver 1.11
[   19.131781] init: avahi-cups-reload main process (825) terminated with status 1
[   20.250127] init: samba-ad-dc main process (793) terminated with status 1
[   21.619084] Loading iSCSI transport class v2.0-870.
[   21.670360] iscsi: registered transport (tcp)
[   21.912824] iscsi: registered transport (iser)
[   22.100628] systemd-logind[1120]: New seat seat0.
[   22.101190] systemd-logind[1120]: Watching system buttons on /dev/input/event3 (Power Button)
[   22.101236] systemd-logind[1120]: Watching system buttons on /dev/input/event10 (Video Bus)
[   22.101279] systemd-logind[1120]: Watching system buttons on /dev/input/event1 (Power Button)
[   22.101317] systemd-logind[1120]: Watching system buttons on /dev/input/event0 (Lid Switch)
[   22.101357] systemd-logind[1120]: Watching system buttons on /dev/input/event2 (Sleep Button)
[   22.325515] tg3 0000:01:00.0: irq 64 for MSI/MSI-X
[   22.325520] tg3 0000:01:00.0: irq 65 for MSI/MSI-X
[   22.325523] tg3 0000:01:00.0: irq 66 for MSI/MSI-X
[   22.325526] tg3 0000:01:00.0: irq 67 for MSI/MSI-X
[   22.325529] tg3 0000:01:00.0: irq 68 for MSI/MSI-X
[   22.385818] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   22.399651] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   22.900618] audit_printk_skb: 27 callbacks suppressed
[   22.900620] audit: type=1400 audit(1425212642.679:35): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1178 comm="apparmor_parser"
[   23.836349] wlan0: authenticate with 20:e5:2a:0a:e0:46
[   23.842224] wlan0: send auth to 20:e5:2a:0a:e0:46 (try 1/3)
[   23.844230] wlan0: authenticated
[   23.845121] wlan0: associate with 20:e5:2a:0a:e0:46 (try 1/3)
[   23.848853] wlan0: RX AssocResp from 20:e5:2a:0a:e0:46 (capab=0x411 status=0 aid=2)
[   23.848894] wlan0: associated
[   23.848901] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   26.365130] scsi4 : iSCSI Initiator over TCP/IP
[   26.367490] scsi5 : iSCSI Initiator over TCP/IP
[   26.623565] scsi 4:0:0:0: Direct-Access     LIO-ORG  FILEIO           4.0  PQ: 0 ANSI: 5
[   26.623572] scsi 5:0:0:0: Direct-Access     LIO-ORG  FILEIO           4.0  PQ: 0 ANSI: 5
[   26.633147] sd 4:0:0:0: Attached scsi generic sg2 type 0
[   26.633206] sd 5:0:0:0: Attached scsi generic sg3 type 0
[   26.638092] sd 4:0:0:0: [sdb] 629145600 512-byte logical blocks: (322 GB/300 GiB)
[   26.642388] sd 5:0:0:0: [sdc] 629145600 512-byte logical blocks: (322 GB/300 GiB)
[   26.656448] sd 4:0:0:0: [sdb] Write Protect is off
[   26.656450] sd 5:0:0:0: [sdc] Write Protect is off
[   26.656453] sd 5:0:0:0: [sdc] Mode Sense: 43 00 10 08
[   26.656456] sd 4:0:0:0: [sdb] Mode Sense: 43 00 10 08
[   26.661519] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   26.661959] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[   26.718422]  sdb: sdb1
[   26.726439]  sdc: unknown partition table
[   26.742924] sd 4:0:0:0: [sdb] Attached SCSI disk
[   26.746918] sd 5:0:0:0: [sdc] Attached SCSI disk
[   26.924296] init: alsa-restore main process (1435) terminated with status 99
[   32.267563] init: plymouth-upstart-bridge main process ended, respawning
[   32.306950] init: plymouth-upstart-bridge main process ended, respawning
[   32.309815] init: plymouth-upstart-bridge main process (1666) killed by TERM signal
[   32.634324] systemd-logind[1120]: Failed to start unit user@1000.service: Unknown unit: user@1000.service
[   32.634333] systemd-logind[1120]: Failed to start user service: Unknown unit: user@1000.service
[   32.637516] systemd-logind[1120]: New session c1 of user marcuswilkinson.
[   32.637540] systemd-logind[1120]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
[   40.442698] cfg80211: Calling CRDA for country: GB
[   40.453915] cfg80211: Regulatory domain changed to country: GB
[   40.453919] cfg80211:  DFS Master region: unset
[   40.453920] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   40.453922] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   40.453924] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   40.453925] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
[   40.453926] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
[   40.453927] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   40.640343] usbcore: registered new interface driver ath3k
[   40.640347] usb 2-5: USB disconnect, device number 3
[   40.664909] init: plymouth-stop pre-start process (1899) terminated with status 1
[   40.911323] usb 2-5: new full-speed USB device number 6 using xhci_hcd
[   46.034914] usb 2-5: New USB device found, idVendor=04ca, idProduct=300b
[   46.034917] usb 2-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1428.342942] perf interrupt took too long (2533 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
Download as text