Ubuntu Pastebin

Paste from nemo at Sat, 9 May 2015 00:27:58 +0000

Download as text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
[    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-37-generic (buildd@batsu) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #51~14.04.1-Ubuntu SMP Wed May 6 15:23:14 UTC 2015 (Ubuntu 3.16.0-37.51~14.04.1-generic 3.16.7-ckt9)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-37-generic.efi.signed root=UUID=ff875176-470c-4c36-a0a0-ba6d1b3bb803 ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000a57affff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a57b0000-0x00000000a61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000a61b0000-0x00000000aa7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000aa7bf000-0x00000000aa836fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa837000-0x00000000aa841fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa842000-0x00000000aa850fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa851000-0x00000000aa851fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa852000-0x00000000aa870fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa871000-0x00000000aa871fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa872000-0x00000000aa881fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa882000-0x00000000aa882fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa883000-0x00000000aa8cafff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8cb000-0x00000000aa8cbfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa8cc000-0x00000000aa8d0fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8d1000-0x00000000aa8d1fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa8d2000-0x00000000aa8f1fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa8f2000-0x00000000aa934fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aa935000-0x00000000aa9befff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000aa9bf000-0x00000000aaebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000aaebf000-0x00000000aafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000aafbf000-0x00000000aaffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000aafff000-0x00000000aaffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ab000000-0x00000000af9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffc80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000024f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xaaffe000  ACPI 2.0=0xaaffe014  SMBIOS=0xaaebef98 
[    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=4, 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-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: type=2, attr=0xf, range=[0x0000000000100000-0x00000000014e1000) (19MB)
[    0.000000] efi: mem06: type=7, attr=0xf, range=[0x00000000014e1000-0x0000000002000000) (11MB)
[    0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000002000000-0x00000000033e1000) (19MB)
[    0.000000] efi: mem08: type=7, attr=0xf, range=[0x00000000033e1000-0x0000000020000000) (460MB)
[    0.000000] efi: mem09: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000020200000-0x0000000035ada000) (344MB)
[    0.000000] efi: mem11: type=2, attr=0xf, range=[0x0000000035ada000-0x0000000036d65000) (18MB)
[    0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000036d65000-0x0000000040000000) (146MB)
[    0.000000] efi: mem13: type=0, attr=0xf, range=[0x0000000040000000-0x0000000040200000) (2MB)
[    0.000000] efi: mem14: type=7, attr=0xf, range=[0x0000000040200000-0x0000000079965000) (919MB)
[    0.000000] efi: mem15: type=2, attr=0xf, range=[0x0000000079965000-0x00000000a31c0000) (664MB)
[    0.000000] efi: mem16: type=4, attr=0xf, range=[0x00000000a31c0000-0x00000000a31e0000) (0MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x00000000a31e0000-0x00000000a4ad4000) (24MB)
[    0.000000] efi: mem18: type=4, attr=0xf, range=[0x00000000a4ad4000-0x00000000a57b0000) (12MB)
[    0.000000] efi: mem19: type=0, attr=0xf, range=[0x00000000a57b0000-0x00000000a61b0000) (10MB)
[    0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000a61b0000-0x00000000a63a1000) (1MB)
[    0.000000] efi: mem21: type=1, attr=0xf, range=[0x00000000a63a1000-0x00000000a63bf000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000a63bf000-0x00000000a7bb1000) (23MB)
[    0.000000] efi: mem23: type=4, attr=0xf, range=[0x00000000a7bb1000-0x00000000a853f000) (9MB)
[    0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000a853f000-0x00000000a8540000) (0MB)
[    0.000000] efi: mem25: type=4, attr=0xf, range=[0x00000000a8540000-0x00000000a85b3000) (0MB)
[    0.000000] efi: mem26: type=7, attr=0xf, range=[0x00000000a85b3000-0x00000000a85b8000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000a85b8000-0x00000000a85e1000) (0MB)
[    0.000000] efi: mem28: type=7, attr=0xf, range=[0x00000000a85e1000-0x00000000a85e2000) (0MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000a85e2000-0x00000000a8728000) (1MB)
[    0.000000] efi: mem30: type=7, attr=0xf, range=[0x00000000a8728000-0x00000000a8794000) (0MB)
[    0.000000] efi: mem31: type=4, attr=0xf, range=[0x00000000a8794000-0x00000000a8838000) (0MB)
[    0.000000] efi: mem32: type=7, attr=0xf, range=[0x00000000a8838000-0x00000000a8861000) (0MB)
[    0.000000] efi: mem33: type=4, attr=0xf, range=[0x00000000a8861000-0x00000000a8ad8000) (2MB)
[    0.000000] efi: mem34: type=7, attr=0xf, range=[0x00000000a8ad8000-0x00000000a8adb000) (0MB)
[    0.000000] efi: mem35: type=4, attr=0xf, range=[0x00000000a8adb000-0x00000000a8ade000) (0MB)
[    0.000000] efi: mem36: type=7, attr=0xf, range=[0x00000000a8ade000-0x00000000a8adf000) (0MB)
[    0.000000] efi: mem37: type=4, attr=0xf, range=[0x00000000a8adf000-0x00000000a8b4e000) (0MB)
[    0.000000] efi: mem38: type=7, attr=0xf, range=[0x00000000a8b4e000-0x00000000a8b5a000) (0MB)
[    0.000000] efi: mem39: type=4, attr=0xf, range=[0x00000000a8b5a000-0x00000000a8b6b000) (0MB)
[    0.000000] efi: mem40: type=7, attr=0xf, range=[0x00000000a8b6b000-0x00000000a8b6c000) (0MB)
[    0.000000] efi: mem41: type=4, attr=0xf, range=[0x00000000a8b6c000-0x00000000aa3bf000) (24MB)
[    0.000000] efi: mem42: type=7, attr=0xf, range=[0x00000000aa3bf000-0x00000000aa4e5000) (1MB)
[    0.000000] efi: mem43: type=2, attr=0xf, range=[0x00000000aa4e5000-0x00000000aa4ef000) (0MB)
[    0.000000] efi: mem44: type=3, attr=0xf, range=[0x00000000aa4ef000-0x00000000aa7bf000) (2MB)
[    0.000000] efi: mem45: type=5, attr=0x800000000000000f, range=[0x00000000aa7bf000-0x00000000aa835000) (0MB)
[    0.000000] efi: mem46: type=5, attr=0x800000000000000f, range=[0x00000000aa835000-0x00000000aa837000) (0MB)
[    0.000000] efi: mem47: type=6, attr=0x800000000000000f, range=[0x00000000aa837000-0x00000000aa842000) (0MB)
[    0.000000] efi: mem48: type=5, attr=0x800000000000000f, range=[0x00000000aa842000-0x00000000aa851000) (0MB)
[    0.000000] efi: mem49: type=6, attr=0x800000000000000f, range=[0x00000000aa851000-0x00000000aa852000) (0MB)
[    0.000000] efi: mem50: type=5, attr=0x800000000000000f, range=[0x00000000aa852000-0x00000000aa871000) (0MB)
[    0.000000] efi: mem51: type=6, attr=0x800000000000000f, range=[0x00000000aa871000-0x00000000aa872000) (0MB)
[    0.000000] efi: mem52: type=5, attr=0x800000000000000f, range=[0x00000000aa872000-0x00000000aa882000) (0MB)
[    0.000000] efi: mem53: type=6, attr=0x800000000000000f, range=[0x00000000aa882000-0x00000000aa883000) (0MB)
[    0.000000] efi: mem54: type=5, attr=0x800000000000000f, range=[0x00000000aa883000-0x00000000aa8cb000) (0MB)
[    0.000000] efi: mem55: type=6, attr=0x800000000000000f, range=[0x00000000aa8cb000-0x00000000aa8cc000) (0MB)
[    0.000000] efi: mem56: type=5, attr=0x800000000000000f, range=[0x00000000aa8cc000-0x00000000aa8d1000) (0MB)
[    0.000000] efi: mem57: type=6, attr=0x800000000000000f, range=[0x00000000aa8d1000-0x00000000aa8d2000) (0MB)
[    0.000000] efi: mem58: type=5, attr=0x800000000000000f, range=[0x00000000aa8d2000-0x00000000aa8f2000) (0MB)
[    0.000000] efi: mem59: type=6, attr=0x800000000000000f, range=[0x00000000aa8f2000-0x00000000aa935000) (0MB)
[    0.000000] efi: mem60: type=5, attr=0x800000000000000f, range=[0x00000000aa935000-0x00000000aa9bf000) (0MB)
[    0.000000] efi: mem61: type=6, attr=0x800000000000000f, range=[0x00000000aa9bf000-0x00000000aaabf000) (1MB)
[    0.000000] efi: mem62: type=0, attr=0xf, range=[0x00000000aaabf000-0x00000000aae16000) (3MB)
[    0.000000] efi: mem63: type=0, attr=0xf, range=[0x00000000aae16000-0x00000000aaebf000) (0MB)
[    0.000000] efi: mem64: type=10, attr=0xf, range=[0x00000000aaebf000-0x00000000aafa2000) (0MB)
[    0.000000] efi: mem65: type=10, attr=0xf, range=[0x00000000aafa2000-0x00000000aafbf000) (0MB)
[    0.000000] efi: mem66: type=9, attr=0xf, range=[0x00000000aafbf000-0x00000000aafdd000) (0MB)
[    0.000000] efi: mem67: type=9, attr=0xf, range=[0x00000000aafdd000-0x00000000aafff000) (0MB)
[    0.000000] efi: mem68: type=4, attr=0xf, range=[0x00000000aafff000-0x00000000ab000000) (0MB)
[    0.000000] efi: mem69: type=7, attr=0xf, range=[0x0000000100000000-0x000000024f600000) (5366MB)
[    0.000000] efi: mem70: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem71: type=0, attr=0x0, range=[0x00000000ab000000-0x00000000afa00000) (74MB)
[    0.000000] efi: mem72: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem73: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem74: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem75: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem76: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem77: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem78: type=11, attr=0x8000000000000000, range=[0x00000000ffc80000-0x00000000fff13000) (2MB)
[    0.000000] efi: mem79: type=11, attr=0x8000000000000000, range=[0x00000000fff13000-0x00000000fff40000) (0MB)
[    0.000000] efi: mem80: type=11, attr=0x8000000000000000, range=[0x00000000fff40000-0x0000000100000000) (0MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Acer Aspire E1-531/EA50_HC_HR, BIOS V2.21 12/16/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 = 0x24f600 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 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FE0000000 write-back
[    0.000000]   2 base 0A0000000 mask FF8000000 write-back
[    0.000000]   3 base 0A8000000 mask FFE000000 write-back
[    0.000000]   4 base 0AA000000 mask FFF000000 write-back
[    0.000000]   5 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   6 base 100000000 mask F00000000 write-back
[    0.000000]   7 base 200000000 mask F80000000 write-back
[    0.000000]   8 base 24F600000 mask FFFE00000 uncachable
[    0.000000]   9 base 24F800000 mask FFF800000 uncachable
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xab000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff88000007e000] 7e000 size 24576
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x02fbd000, 0x02fbdfff] PGTABLE
[    0.000000] BRK [0x02fbe000, 0x02fbefff] PGTABLE
[    0.000000] BRK [0x02fbf000, 0x02fbffff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x24f400000-0x24f5fffff]
[    0.000000]  [mem 0x24f400000-0x24f5fffff] page 2M
[    0.000000] BRK [0x02fc0000, 0x02fc0fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x24c000000-0x24f3fffff]
[    0.000000]  [mem 0x24c000000-0x24f3fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x200000000-0x24bffffff]
[    0.000000]  [mem 0x200000000-0x24bffffff] page 2M
[    0.000000] BRK [0x02fc1000, 0x02fc1fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x1fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
[    0.000000]  [mem 0x20200000-0x3fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x40200000-0xa57affff]
[    0.000000]  [mem 0x40200000-0xa55fffff] page 2M
[    0.000000]  [mem 0xa5600000-0xa57affff] page 4k
[    0.000000] BRK [0x02fc2000, 0x02fc2fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xa61b0000-0xaa7befff]
[    0.000000]  [mem 0xa61b0000-0xa61fffff] page 4k
[    0.000000]  [mem 0xa6200000-0xaa5fffff] page 2M
[    0.000000]  [mem 0xaa600000-0xaa7befff] page 4k
[    0.000000] init_memory_mapping: [mem 0xaafff000-0xaaffffff]
[    0.000000]  [mem 0xaafff000-0xaaffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
[    0.000000] RAMDISK: [mem 0x35ada000-0x36d64fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000AAFFE014 000024 (v02 ACRSYS)
[    0.000000] ACPI: XSDT 0x00000000AAFFE210 00009C (v01 ACRSYS ACRPRDCT 00000001      01000013)
[    0.000000] ACPI: FACP 0x00000000AAFFB000 00010C (v05 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: DSDT 0x00000000AAFEC000 00BC02 (v01 ACRSYS ACRPRDCT 00000000 1025 00040000)
[    0.000000] ACPI: FACS 0x00000000AAFBA000 000040
[    0.000000] ACPI: UEFI 0x00000000AAFFD000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: ASF! 0x00000000AAFFC000 0000A5 (v32 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: HPET 0x00000000AAFFA000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: APIC 0x00000000AAFF9000 00008C (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: MCFG 0x00000000AAFF8000 00003C (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: SSDT 0x00000000AAFEB000 0006FE (v01 ACRSYS ACRPRDCT 00001000 1025 00040000)
[    0.000000] ACPI: BOOT 0x00000000AAFE9000 000028 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: ASPT 0x00000000AAFE4000 000034 (v07 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: DBGP 0x00000000AAFE3000 000034 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: FPDT 0x00000000AAFE1000 000044 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: MSDM 0x00000000AAFE0000 000055 (v03 ACRSYS ACRPRDCT 00000001 1025 00040000)
[    0.000000] ACPI: SSDT 0x00000000AAFDF000 000968 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.000000] ACPI: SSDT 0x00000000AAFDE000 000A92 (v01 ACRSYS ACRPRDCT 00003000 1025 00040000)
[    0.000000] ACPI: BGRT 0x00000000AAFDD000 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-0x000000024f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x24f5fffff]
[    0.000000]   NODE_DATA [mem 0x24f5f2000-0x24f5f6fff]
[    0.000000]  [ffffea0000000000-ffffea00093fffff] PMD -> [ffff880246c00000-ffff88024ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x24f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x3fffffff]
[    0.000000]   node   0: [mem 0x40200000-0xa57affff]
[    0.000000]   node   0: [mem 0xa61b0000-0xaa7befff]
[    0.000000]   node   0: [mem 0xaafff000-0xaaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x24f5fffff]
[    0.000000] On node 0 totalpages: 2068295
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 135 pages reserved
[    0.000000]   DMA zone: 3975 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 10791 pages used for memmap
[    0.000000]   DMA32 zone: 690624 pages, LIFO batch:31
[    0.000000]   Normal zone: 21464 pages used for memmap
[    0.000000]   Normal zone: 1373696 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics stolen memory at 0xaba00000-0xaf9fffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    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[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
[    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[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: 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, 6 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    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 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xa57b0000-0xa61affff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa7bf000-0xaa836fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa837000-0xaa841fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa842000-0xaa850fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa851000-0xaa851fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa852000-0xaa870fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa871000-0xaa871fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa872000-0xaa881fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa882000-0xaa882fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa883000-0xaa8cafff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8cb000-0xaa8cbfff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8cc000-0xaa8d0fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8d1000-0xaa8d1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8d2000-0xaa8f1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa8f2000-0xaa934fff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa935000-0xaa9befff]
[    0.000000] PM: Registered nosave memory: [mem 0xaa9bf000-0xaaebefff]
[    0.000000] PM: Registered nosave memory: [mem 0xaaebf000-0xaafbefff]
[    0.000000] PM: Registered nosave memory: [mem 0xaafbf000-0xaaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xab000000-0xaf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xafa00000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf4000000-0xfeafffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffc7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffc80000-0xffffffff]
[    0.000000] e820: [mem 0xafa00000-0xefffffff] 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 27 pages/cpu @ffff88024f200000 s81408 r8192 d20992 u262144
[    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2035841
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-37-generic.efi.signed root=UUID=ff875176-470c-4c36-a0a0-ba6d1b3bb803 ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
[    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: 7982704K/8273180K available (7624K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 290476K 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:744 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 33554432 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 2195.134 MHz processor
[    0.000037] Calibrating delay loop (skipped), value calculated using timer frequency.. 4390.26 BogoMIPS (lpj=8780536)
[    0.000041] pid_max: default: 32768 minimum: 301
[    0.000048] ACPI: Core revision 20140424
[    0.007764] ACPI: All ACPI Tables successfully acquired
[    0.032468] Security Framework initialized
[    0.032489] AppArmor: AppArmor initialized
[    0.032490] Yama: becoming mindful.
[    0.033075] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.034845] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.035617] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.035629] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.035860] Initializing cgroup subsys memory
[    0.035885] Initializing cgroup subsys devices
[    0.035891] Initializing cgroup subsys freezer
[    0.035894] Initializing cgroup subsys net_cls
[    0.035898] Initializing cgroup subsys blkio
[    0.035902] Initializing cgroup subsys perf_event
[    0.035904] Initializing cgroup subsys net_prio
[    0.035910] Initializing cgroup subsys hugetlb
[    0.035933] CPU: Physical Processor ID: 0
[    0.035934] CPU: Processor Core ID: 0
[    0.035939] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.035939] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.035942] mce: CPU supports 7 MCE banks
[    0.035954] CPU0: Thermal monitoring enabled (TM1)
[    0.035962] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.035962] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.035962] tlb_flushall_shift: 6
[    0.036109] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
[    0.039452] ftrace: allocating 29244 entries in 115 pages
[    0.055816] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.095461] smpboot: CPU0: Intel(R) Pentium(R) CPU B960 @ 2.20GHz (fam: 06, model: 2a, stepping: 07)
[    0.095471] TSC deadline timer enabled
[    0.095499] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.095522] ... version:                3
[    0.095523] ... bit width:              48
[    0.095524] ... generic registers:      8
[    0.095525] ... value mask:             0000ffffffffffff
[    0.095526] ... max period:             0000ffffffffffff
[    0.095527] ... fixed-purpose events:   3
[    0.095528] ... event mask:             00000007000000ff
[    0.097443] x86: Booting SMP configuration:
[    0.097447] .... node  #0, CPUs:      #1
[    0.110484] x86: Booted up 1 node, 2 CPUs
[    0.110488] smpboot: Total of 2 processors activated (8780.53 BogoMIPS)
[    0.110602] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.111911] devtmpfs: initialized
[    0.116491] evm: security.selinux
[    0.116493] evm: security.SMACK64
[    0.116494] evm: security.SMACK64EXEC
[    0.116495] evm: security.SMACK64TRANSMUTE
[    0.116496] evm: security.SMACK64MMAP
[    0.116496] evm: security.ima
[    0.116497] evm: security.capability
[    0.116562] PM: Registering ACPI NVS region [mem 0xaaebf000-0xaafbefff] (1048576 bytes)
[    0.117529] pinctrl core: initialized pinctrl subsystem
[    0.117619] regulator-dummy: no parameters
[    0.117656] RTC time: 19:56:22, date: 05/08/15
[    0.117713] NET: Registered protocol family 16
[    0.117883] cpuidle: using governor ladder
[    0.117886] cpuidle: using governor menu
[    0.117941] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.117943] ACPI: bus type PCI registered
[    0.117945] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.118028] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.118031] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.118119] PCI: Using configuration type 1 for base access
[    0.124260] ACPI: Added _OSI(Module Device)
[    0.124263] ACPI: Added _OSI(Processor Device)
[    0.124264] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.124265] ACPI: Added _OSI(Processor Aggregator Device)
[    0.127136] ACPI: Executed 1 blocks of module-level executable AML code
[    0.131921] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.132277] ACPI: Dynamic OEM Table Load:
[    0.132287] ACPI: SSDT 0xFFFF8802434F2000 00083B (v01 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    0.136039] ACPI: Dynamic OEM Table Load:
[    0.136046] ACPI: SSDT 0xFFFF880246814800 000303 (v01 PmRef  ApIst    00003000 INTL 20120913)
[    0.139906] ACPI: Dynamic OEM Table Load:
[    0.139912] ACPI: SSDT 0xFFFF880243A6AC00 000119 (v01 PmRef  ApCst    00003000 INTL 20120913)
[    0.144131] ACPI: Interpreter enabled
[    0.144138] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
[    0.144142] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
[    0.144157] ACPI: (supports S0 S3 S4 S5)
[    0.144158] ACPI: Using IOAPIC for interrupt routing
[    0.144183] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.291490] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.291496] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.291560] \_SB_.PCI0:_OSC invalid UUID
[    0.291561] _OSC request data:1 1f 0 
[    0.291565] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.292023] PCI host bridge to bus 0000:00
[    0.292026] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.292028] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.292030] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.292032] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.292033] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
[    0.292035] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
[    0.292037] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
[    0.292039] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
[    0.292040] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.292042] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.292044] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
[    0.292046] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
[    0.292047] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.292049] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
[    0.292051] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
[    0.292053] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
[    0.292054] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
[    0.292056] pci_bus 0000:00: root bus resource [mem 0xafa00000-0xfeafffff]
[    0.292064] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.292157] pci 0000:00:02.0: [8086:0106] type 00 class 0x030000
[    0.292169] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
[    0.292175] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.292180] pci 0000:00:02.0: reg 0x20: [io  0x2000-0x203f]
[    0.292290] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.292315] pci 0000:00:16.0: reg 0x10: [mem 0xc0604000-0xc060400f 64bit]
[    0.292396] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.292487] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.292510] pci 0000:00:1a.0: reg 0x10: [mem 0xc0609000-0xc06093ff]
[    0.292603] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.292659] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.292707] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.292727] pci 0000:00:1b.0: reg 0x10: [mem 0xc0600000-0xc0603fff 64bit]
[    0.292805] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.292847] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.292894] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.293032] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.293087] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.293132] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.293271] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.293323] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.293374] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.293397] pci 0000:00:1d.0: reg 0x10: [mem 0xc0608000-0xc06083ff]
[    0.293491] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.293547] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.293592] pci 0000:00:1f.0: [8086:1e5e] type 00 class 0x060100
[    0.293771] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.293792] pci 0000:00:1f.2: reg 0x10: [io  0x2088-0x208f]
[    0.293801] pci 0000:00:1f.2: reg 0x14: [io  0x2094-0x2097]
[    0.293809] pci 0000:00:1f.2: reg 0x18: [io  0x2080-0x2087]
[    0.293818] pci 0000:00:1f.2: reg 0x1c: [io  0x2090-0x2093]
[    0.293827] pci 0000:00:1f.2: reg 0x20: [io  0x2060-0x207f]
[    0.293836] pci 0000:00:1f.2: reg 0x24: [mem 0xc0607000-0xc06077ff]
[    0.293884] pci 0000:00:1f.2: PME# supported from D3hot
[    0.293959] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.293977] pci 0000:00:1f.3: reg 0x10: [mem 0xc0605000-0xc06050ff 64bit]
[    0.293999] pci 0000:00:1f.3: reg 0x20: [io  0x2040-0x205f]
[    0.294237] pci 0000:02:00.0: [14e4:16b5] type 00 class 0x020000
[    0.294278] pci 0000:02:00.0: reg 0x10: [mem 0xc0430000-0xc043ffff 64bit pref]
[    0.294307] pci 0000:02:00.0: reg 0x18: [mem 0xc0440000-0xc044ffff 64bit pref]
[    0.294362] pci 0000:02:00.0: reg 0x30: [mem 0xfffff800-0xffffffff pref]
[    0.294509] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.294559] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.294651] pci 0000:02:00.1: [14e4:16bc] type 00 class 0x080501
[    0.294692] pci 0000:02:00.1: reg 0x10: [mem 0xc0400000-0xc040ffff 64bit pref]
[    0.294900] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
[    0.295026] pci 0000:02:00.2: [14e4:16be] type 00 class 0x088000
[    0.295068] pci 0000:02:00.2: reg 0x10: [mem 0xc0410000-0xc041ffff 64bit pref]
[    0.295280] pci 0000:02:00.2: PME# supported from D0 D3hot D3cold
[    0.295406] pci 0000:02:00.3: [14e4:16bf] type 00 class 0x088000
[    0.295447] pci 0000:02:00.3: reg 0x10: [mem 0xc0420000-0xc042ffff 64bit pref]
[    0.295656] pci 0000:02:00.3: PME# supported from D0 D3hot D3cold
[    0.303779] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.303805] pci 0000:00:1c.0:   bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
[    0.303981] pci 0000:03:00.0: [8086:0894] type 00 class 0x028000
[    0.304039] pci 0000:03:00.0: reg 0x10: [mem 0xc0500000-0xc0501fff 64bit]
[    0.304276] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.304325] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.311745] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.311761] pci 0000:00:1c.1:   bridge window [mem 0xc0500000-0xc05fffff]
[    0.384012] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384064] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384115] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384164] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384213] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384262] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384311] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384361] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.384441] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.384477] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.384586] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.384589] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.384592] vgaarb: loaded
[    0.384593] vgaarb: bridge control possible 0000:00:02.0
[    0.384854] SCSI subsystem initialized
[    0.384906] libata version 3.00 loaded.
[    0.384934] ACPI: bus type USB registered
[    0.384954] usbcore: registered new interface driver usbfs
[    0.384963] usbcore: registered new interface driver hub
[    0.384987] usbcore: registered new device driver usb
[    0.385220] PCI: Using ACPI for IRQ routing
[    0.386831] PCI: pci_cache_line_size set to 64 bytes
[    0.387003] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.387005] e820: reserve RAM buffer [mem 0xa57b0000-0xa7ffffff]
[    0.387007] e820: reserve RAM buffer [mem 0xaa7bf000-0xabffffff]
[    0.387010] e820: reserve RAM buffer [mem 0xab000000-0xabffffff]
[    0.387012] e820: reserve RAM buffer [mem 0x24f600000-0x24fffffff]
[    0.387130] NetLabel: Initializing
[    0.387132] NetLabel:  domain hash size = 128
[    0.387133] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.387146] NetLabel:  unlabeled traffic allowed by default
[    0.387215] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.387221] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.389261] Switched to clocksource hpet
[    0.395087] AppArmor: AppArmor Filesystem Enabled
[    0.395121] pnp: PnP ACPI init
[    0.395137] ACPI: bus type PNP registered
[    0.395215] pnp 00:00: Plug and Play ACPI device, IDs MSF0001 PNP0303 (active)
[    0.395267] pnp 00:01: Plug and Play ACPI device, IDs SYN1b16 SYN1b00 SYN0002 PNP0f13 (active)
[    0.395400] system 00:02: [io  0x0680-0x069f] has been reserved
[    0.395403] system 00:02: [io  0xfd60-0xfd63] has been reserved
[    0.395405] system 00:02: [io  0x1000-0x100f] has been reserved
[    0.395407] system 00:02: [io  0xffff] has been reserved
[    0.395409] system 00:02: [io  0xffff] has been reserved
[    0.395411] system 00:02: [io  0x0400-0x0453] could not be reserved
[    0.395413] system 00:02: [io  0x0458-0x047f] has been reserved
[    0.395415] system 00:02: [io  0x0500-0x057f] has been reserved
[    0.395417] system 00:02: [io  0x164e-0x164f] has been reserved
[    0.395420] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.395450] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.395500] system 00:04: [io  0x0454-0x0457] has been reserved
[    0.395503] system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.465431] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.465433] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.465435] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.465440] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.465442] system 00:05: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.465444] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.465446] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.465448] system 00:05: [mem 0xff000000-0xff000fff] has been reserved
[    0.465450] system 00:05: [mem 0xff010000-0xffffffff] could not be reserved
[    0.465452] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.465454] system 00:05: [mem 0xafa00000-0xafa00fff] has been reserved
[    0.465457] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.465676] system 00:06: [mem 0x20000000-0x201fffff] has been reserved
[    0.465678] system 00:06: [mem 0x40000000-0x401fffff] has been reserved
[    0.465681] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.465697] pnp: PnP ACPI: found 7 devices
[    0.465698] ACPI: bus type PNP unregistered
[    0.472302] pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffff800-0xffffffff pref]: no compatible bridge window
[    0.472339] pci 0000:00:1c.0: BAR 14: assigned [mem 0xafb00000-0xafbfffff]
[    0.472343] pci 0000:02:00.0: BAR 6: assigned [mem 0xafb00000-0xafb007ff pref]
[    0.472345] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.472353] pci 0000:00:1c.0:   bridge window [mem 0xafb00000-0xafbfffff]
[    0.472359] pci 0000:00:1c.0:   bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
[    0.472368] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.472375] pci 0000:00:1c.1:   bridge window [mem 0xc0500000-0xc05fffff]
[    0.472388] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.472390] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.472392] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.472394] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
[    0.472396] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
[    0.472397] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
[    0.472399] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
[    0.472401] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
[    0.472403] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
[    0.472404] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
[    0.472406] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
[    0.472408] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
[    0.472410] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
[    0.472411] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
[    0.472413] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
[    0.472415] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff]
[    0.472416] pci_bus 0000:00: resource 20 [mem 0xafa00000-0xfeafffff]
[    0.472418] pci_bus 0000:02: resource 1 [mem 0xafb00000-0xafbfffff]
[    0.472420] pci_bus 0000:02: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
[    0.472422] pci_bus 0000:03: resource 1 [mem 0xc0500000-0xc05fffff]
[    0.472450] NET: Registered protocol family 2
[    0.472652] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.472823] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.472963] TCP: Hash tables configured (established 65536 bind 65536)
[    0.472992] TCP: reno registered
[    0.473005] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.473040] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.473120] NET: Registered protocol family 1
[    0.473140] pci 0000:00:02.0: Video device with shadowed ROM
[    0.505398] PCI: CLS 64 bytes, default 64
[    0.505459] Trying to unpack rootfs image as initramfs...
[    0.835346] Freeing initrd memory: 18988K (ffff880035ada000 - ffff880036d65000)
[    0.835357] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.835360] software IO TLB [mem 0x9f1c0000-0xa31c0000] (64MB) mapped at [ffff88009f1c0000-ffff8800a31bffff]
[    0.835408] Simple Boot Flag at 0x44 set to 0x1
[    0.835535] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    0.835583] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x29
[    0.835590] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x29
[    0.835647] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.835674] Scanning for low memory corruption every 60 seconds
[    0.836048] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.836072] Initialise system trusted keyring
[    0.836099] audit: initializing netlink subsys (disabled)
[    0.836113] audit: type=2000 audit(1431114982.816:1): initialized
[    0.836442] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.838059] zpool: loaded
[    0.838064] zbud: loaded
[    0.838244] VFS: Disk quotas dquot_6.5.2
[    0.838285] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.838786] fuse init (API version 7.23)
[    0.838881] msgmni has been set to 15738
[    0.838947] Key type big_key registered
[    0.839307] Key type asymmetric registered
[    0.839310] Asymmetric key parser 'x509' registered
[    0.839348] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.839391] io scheduler noop registered
[    0.839394] io scheduler deadline registered (default)
[    0.839448] io scheduler cfq registered
[    0.839534] pcieport 0000:00:1c.0: device [8086:1e10] has invalid IRQ; check vendor BIOS
[    0.839709] pcieport 0000:00:1c.1: device [8086:1e12] has invalid IRQ; check vendor BIOS
[    0.839875] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.839893] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.839949] efifb: probing for efifb
[    0.839969] efifb: framebuffer at 0xb0000000, mapped to 0xffffc90004e80000, using 4160k, total 4160k
[    0.839971] efifb: mode is 1366x768x32, linelength=5504, pages=1
[    0.839972] efifb: scrolling: redraw
[    0.839974] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.840061] Console: switching to colour frame buffer device 170x48
[    0.840079] fb0: EFI VGA frame buffer device
[    0.840099] intel_idle: MWAIT substates: 0x21120
[    0.840100] intel_idle: v0.4 model 0x2A
[    0.840102] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.840278] ACPI: AC Adapter [ACAD] (off-line)
[    0.840381] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
[    0.840385] ACPI: Power Button [PWRB]
[    0.840425] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0D:00/input/input1
[    0.840442] ACPI: Lid Switch [LID0]
[    0.840480] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input2
[    0.840483] ACPI: Sleep Button [SLPB]
[    0.840526] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.840528] ACPI: Power Button [PWRF]
[    0.840701] GHES: HEST is not enabled!
[    0.840812] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.192613] ACPI: Battery Slot [BAT1] (battery present)
[    1.192794] Linux agpgart interface v0.103
[    1.194853] brd: module loaded
[    1.195558] loop: module loaded
[    1.195791] libphy: Fixed MDIO Bus: probed
[    1.195796] tun: Universal TUN/TAP device driver, 1.6
[    1.195797] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.195848] PPP generic driver version 2.4.2
[    1.195896] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.195902] ehci-pci: EHCI PCI platform driver
[    1.196025] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.196031] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.196045] ehci-pci 0000:00:1a.0: debug port 2
[    1.199937] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.199959] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc0609000
[    1.208379] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.208433] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.208435] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.208437] usb usb1: Product: EHCI Host Controller
[    1.208439] usb usb1: Manufacturer: Linux 3.16.0-37-generic ehci_hcd
[    1.208440] usb usb1: SerialNumber: 0000:00:1a.0
[    1.208557] hub 1-0:1.0: USB hub found
[    1.208563] hub 1-0:1.0: 2 ports detected
[    1.208755] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.208761] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.208773] ehci-pci 0000:00:1d.0: debug port 2
[    1.212678] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.212696] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc0608000
[    1.224361] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.224400] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.224402] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.224404] usb usb2: Product: EHCI Host Controller
[    1.224406] usb usb2: Manufacturer: Linux 3.16.0-37-generic ehci_hcd
[    1.224407] usb usb2: SerialNumber: 0000:00:1d.0
[    1.224547] hub 2-0:1.0: USB hub found
[    1.224553] hub 2-0:1.0: 2 ports detected
[    1.224654] ehci-platform: EHCI generic platform driver
[    1.224667] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.224673] ohci-pci: OHCI PCI platform driver
[    1.224685] ohci-platform: OHCI generic platform driver
[    1.224695] uhci_hcd: USB Universal Host Controller Interface driver
[    1.224766] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
[    1.236521] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.236526] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.236715] mousedev: PS/2 mouse device common for all mice
[    1.237077] rtc_cmos 00:03: RTC can wake from S4
[    1.237206] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[    1.237235] rtc_cmos 00:03: alarms up to one month, 242 bytes nvram, hpet irqs
[    1.237304] device-mapper: uevent: version 1.0.3
[    1.237371] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    1.237385] Intel P-state driver initializing.
[    1.237397] Intel pstate controlling: cpu 0
[    1.237445] Intel pstate controlling: cpu 1
[    1.237505] Consider also installing thermald for improved thermal control.
[    1.237521] ledtrig-cpu: registered to indicate activity on CPUs
[    1.237533] EFI Variables Facility v0.08 2004-May-17
[    1.257528] TCP: cubic registered
[    1.257717] NET: Registered protocol family 10
[    1.257975] NET: Registered protocol family 17
[    1.257989] Key type dns_resolver registered
[    1.258293] Loading compiled-in X.509 certificates
[    1.259300] Loaded X.509 cert 'Magrathea: Glacier signing key: 74de3406b3cb2f7f397733d75963195680cd9ed5'
[    1.259318] registered taskstats version 1
[    1.261813] Key type trusted registered
[    1.265133] Key type encrypted registered
[    1.265143] AppArmor: AppArmor sha1 policy hashing enabled
[    1.265148] ima: No TPM chip found, activating TPM-bypass!
[    1.265165] evm: HMAC attrs: 0x1
[    1.265655]   Magic number: 15:500:950
[    1.265680] tty tty7: hash matches
[    1.265709] memory memory3: hash matches
[    1.265748] rtc_cmos 00:03: setting system clock to 2015-05-08 19:56:23 UTC (1431114983)
[    1.265803] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.265805] EDD information not available.
[    1.265930] PM: Hibernation image not present or could not be loaded.
[    1.267437] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
[    1.267440] Write protecting the kernel read-only data: 12288k
[    1.267677] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.269133] Freeing unused kernel memory: 556K (ffff880002775000 - ffff880002800000)
[    1.270480] Freeing unused kernel memory: 500K (ffff880002b83000 - ffff880002c00000)
[    1.281721] systemd-udevd[111]: starting version 204
[    1.295006] pps_core: LinuxPPS API ver. 1 registered
[    1.295010] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.303564] PTP clock support registered
[    1.307229] tg3.c:v3.137 (May 11, 2014)
[    1.307902] sdhci: Secure Digital Host Controller Interface driver
[    1.307904] sdhci: Copyright(c) Pierre Ossman
[    1.321360] ahci 0000:00:1f.2: version 3.0
[    1.321505] ahci 0000:00:1f.2: irq 40 for MSI/MSI-X
[    1.321527] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    1.339535] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x5 impl SATA mode
[    1.339540] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    1.344745] scsi0 : ahci
[    1.344858] scsi1 : ahci
[    1.344975] scsi2 : ahci
[    1.345117] scsi3 : ahci
[    1.345181] ata1: SATA max UDMA/133 abar m2048@0xc0607000 port 0xc0607100 irq 40
[    1.345183] ata2: DUMMY
[    1.345186] ata3: SATA max UDMA/133 abar m2048@0xc0607000 port 0xc0607200 irq 40
[    1.345187] ata4: DUMMY
[    1.348407] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM57785) rev 57785100] (PCI Express) MAC address b8:88:e3:da:7e:6f
[    1.348411] tg3 0000:02:00.0 eth0: attached PHY is 57765 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[    1.348414] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
[    1.348416] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[    1.348587] sdhci-pci 0000:02:00.1: SDHCI controller found [14e4:16bc] (rev 10)
[    1.348780] mmc0: no vqmmc regulator found
[    1.348781] mmc0: no vmmc regulator found
[    1.349043] mmc0: SDHCI controller on PCI [0000:02:00.1] using ADMA
[    1.520280] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.652811] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.652815] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.653204] hub 1-1:1.0: USB hub found
[    1.653248] hub 1-1:1.0: 4 ports detected
[    1.663991] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.698588] ata1.00: ATA-8: TOSHIBA MQ01ABD075, AX003J, max UDMA/100
[    1.698598] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.700634] ata1.00: configured for UDMA/100
[    1.700951] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA MQ01ABD0 3J   PQ: 0 ANSI: 5
[    1.701362] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
[    1.701365] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.701394] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.701455] sd 0:0:0:0: [sda] Write Protect is off
[    1.701459] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.701482] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.767972] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.819328]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
[    1.820025] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.831751] tsc: Refined TSC clocksource calibration: 2195.014 MHz
[    1.900268] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.900279] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.900685] hub 2-1:1.0: USB hub found
[    1.900770] hub 2-1:1.0: 4 ports detected
[    1.971852] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    2.023604] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.025348] ata3.00: ATAPI: MATSHITADVD-RAM UJ8C0, 1.00, max UDMA/133
[    2.026999] ata3.00: configured for UDMA/133
[    2.030416] scsi 2:0:0:0: CD-ROM            MATSHITA DVD-RAM UJ8C0    1.00 PQ: 0 ANSI: 5
[    2.051102] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.051107] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.051258] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.051320] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    2.120350] usb 1-1.3: New USB device found, idVendor=1bcf, idProduct=2c18
[    2.120361] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.120366] usb 1-1.3: Product: HD WebCam
[    2.120371] usb 1-1.3: Manufacturer: NC.21411.00X240015EBLM0009
[    2.259465] usb 2-1.2: new low-speed USB device number 3 using ehci-pci
[    2.356633] usb 2-1.2: New USB device found, idVendor=045e, idProduct=0040
[    2.356637] usb 2-1.2: New USB device strings: Mfr=1, Product=3, SerialNumber=0
[    2.356639] usb 2-1.2: Product: Microsoft 3-Button Mouse with IntelliEye(TM)
[    2.356641] usb 2-1.2: Manufacturer: Microsoft
[    2.360513] hidraw: raw HID events driver (C) Jiri Kosina
[    2.364948] usbcore: registered new interface driver usbhid
[    2.364950] usbhid: USB HID core driver
[    2.366549] input: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/0003:045E:0040.0001/input/input7
[    2.366646] hid-generic 0003:045E:0040.0001: input,hidraw0: USB HID v1.10 Mouse [Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)] on usb-0000:00:1d.0-1.2/input0
[    2.830701] Switched to clocksource tsc
[    3.119410] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[    3.761650] random: nonblocking pool is initialized
[   11.393182] mmc0: Timeout waiting for hardware interrupt.
[   11.552696] Adding 8272892k swap on /dev/sda8.  Priority:-1 extents:1 across:8272892k FS
[   11.984335] systemd-udevd[293]: starting version 204
[   12.100939] lp: driver loaded but no devices found
[   12.106589] ppdev: user-space parallel port driver
[   12.139866] wmi: Mapper loaded
[   12.147174] acer_wmi: Acer Laptop ACPI-WMI Extras
[   12.147291] acer_wmi: Function bitmap for Communication Button: 0x1
[   12.147410] acer_wmi: Brightness must be controlled by acpi video driver
[   12.171409] acer_wmi: Enabling Launch Manager failed: 0xe2 - 0x0
[   12.171614] input: Acer WMI hotkeys as /devices/virtual/input/input8
[   12.171971] input: Acer BMA150 accelerometer as /devices/virtual/input/input9
[   12.277454] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
[   12.277461] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.277465] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
[   12.277468] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.277470] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
[   12.277473] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.277474] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
[   12.277476] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.277478] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   12.278157] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   12.279066] mei_me 0000:00:16.0: irq 41 for MSI/MSI-X
[   12.279254] [drm] Initialized drm 1.1.0 20060810
[   12.314362] cfg80211: Calling CRDA to update world regulatory domain
[   12.314827] [drm] Memory usable by graphics device = 2048M
[   12.314831] checking generic (b0000000 410000) vs hw (b0000000 10000000)
[   12.314833] fb: switching to inteldrmfb from EFI VGA
[   12.314854] Console: switching to colour dummy device 80x25
[   12.314913] [drm] Replacing VGA console driver
[   12.324674] Intel(R) Wireless WiFi driver for Linux, in-tree:
[   12.324677] Copyright(c) 2003- 2014 Intel Corporation
[   12.324824] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[   12.324959] iwlwifi 0000:03:00.0: irq 42 for MSI/MSI-X
[   12.336362] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[   12.336374] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   12.336375] [drm] Driver supports precise vblank timestamp query.
[   12.336481] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   12.384114] [drm] failed to retrieve link info, disabling eDP
[   12.396264] [drm] Wrong MCH_SSKPD value: 0x16040307
[   12.396267] [drm] This can cause pipe underruns and display issues.
[   12.396268] [drm] Please upgrade your BIOS to fix this.
[   12.408173] fbcon: inteldrmfb (fb0) is primary device
[   12.415022] Console: switching to colour frame buffer device 170x48
[   12.415046] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   12.415048] i915 0000:00:02.0: registered panic notifier
[   12.422728] intel_rapl: Found RAPL domain package
[   12.422735] intel_rapl: Found RAPL domain core
[   12.422737] intel_rapl: Found RAPL domain uncore
[   12.456755] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   12.456902] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[   12.457021] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[   12.457331] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
[   12.494712] sound hdaudioC0D0: ALC269VB: SKU not ready 0x598301f0
[   12.495317] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   12.495319] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   12.495320] sound hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   12.495321] sound hdaudioC0D0:    mono: mono_out=0x0
[   12.495322] sound hdaudioC0D0:    inputs:
[   12.495323] sound hdaudioC0D0:      Internal Mic=0x1b
[   12.495325] sound hdaudioC0D0:      Mic=0x18
[   12.509289] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   12.509354] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   12.509414] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   12.987098] audit: type=1400 audit(1431129395.228:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=395 comm="apparmor_parser"
[   12.987106] audit: type=1400 audit(1431129395.228:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=395 comm="apparmor_parser"
[   12.987111] audit: type=1400 audit(1431129395.228:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=395 comm="apparmor_parser"
[   12.987122] audit: type=1400 audit(1431129395.228:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=396 comm="apparmor_parser"
[   12.987131] audit: type=1400 audit(1431129395.228:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=396 comm="apparmor_parser"
[   12.987135] audit: type=1400 audit(1431129395.228:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=396 comm="apparmor_parser"
[   12.987581] audit: type=1400 audit(1431129395.232:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=395 comm="apparmor_parser"
[   12.987586] audit: type=1400 audit(1431129395.232:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=395 comm="apparmor_parser"
[   12.987606] audit: type=1400 audit(1431129395.232:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=396 comm="apparmor_parser"
[   12.987611] audit: type=1400 audit(1431129395.232:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=396 comm="apparmor_parser"
[   13.063883] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   13.083133] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[   13.083137] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   13.083139] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[   13.083141] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 105 BGN, REV=0x110
[   13.083246] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   13.109478] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   13.148824] cfg80211: World regulatory domain updated:
[   13.148829] cfg80211:  DFS Master region: unset
[   13.148831] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   13.148834] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   13.148836] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   13.148838] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   13.148839] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   13.148841] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   13.414801] EXT4-fs (sda7): re-mounted. Opts: errors=remount-ro
[   13.629516] media: Linux media interface: v0.10
[   13.634037] Linux video capture interface: v2.00
[   13.644332] uvcvideo: Found UVC 1.00 device HD WebCam (1bcf:2c18)
[   13.653214] input: HD WebCam as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input14
[   13.653594] usbcore: registered new interface driver uvcvideo
[   13.653598] USB Video Class driver (1.1.1)
[   13.818951] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[   17.851801] init: failsafe main process (654) killed by TERM signal
[   19.573946] audit_printk_skb: 6 callbacks suppressed
[   19.573949] audit: type=1400 audit(1431129401.824:14): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=814 comm="apparmor_parser"
[   19.573956] audit: type=1400 audit(1431129401.824:15): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=814 comm="apparmor_parser"
[   19.574406] audit: type=1400 audit(1431129401.824:16): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=814 comm="apparmor_parser"
[   19.612673] Bluetooth: Core ver 2.19
[   19.612690] NET: Registered protocol family 31
[   19.612692] Bluetooth: HCI device and connection manager initialized
[   19.612698] Bluetooth: HCI socket layer initialized
[   19.612701] Bluetooth: L2CAP socket layer initialized
[   19.612710] Bluetooth: SCO socket layer initialized
[   19.616384] Bluetooth: RFCOMM TTY layer initialized
[   19.616393] Bluetooth: RFCOMM socket layer initialized
[   19.616398] Bluetooth: RFCOMM ver 1.11
[   19.642740] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   19.642743] Bluetooth: BNEP filters: protocol multicast
[   19.642750] Bluetooth: BNEP socket layer initialized
[   20.021771] init: cups main process (816) killed by HUP signal
[   20.021783] init: cups main process ended, respawning
[   20.178875] audit: type=1400 audit(1431129402.428:17): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=845 comm="apparmor_parser"
[   20.178885] audit: type=1400 audit(1431129402.428:18): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=845 comm="apparmor_parser"
[   20.179162] audit: type=1400 audit(1431129402.428:19): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="chromium" pid=845 comm="apparmor_parser"
[   20.182050] audit: type=1400 audit(1431129402.432:20): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=846 comm="apparmor_parser"
[   20.182059] audit: type=1400 audit(1431129402.432:21): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=846 comm="apparmor_parser"
[   20.182064] audit: type=1400 audit(1431129402.432:22): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=846 comm="apparmor_parser"
[   20.182518] audit: type=1400 audit(1431129402.432:23): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=846 comm="apparmor_parser"
[   21.759902] tg3 0000:02:00.0: irq 45 for MSI/MSI-X
[   21.759909] tg3 0000:02:00.0: irq 46 for MSI/MSI-X
[   21.759913] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
[   22.327067] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   22.334816] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   22.343451] iwlwifi 0000:03:00.0: Radio type=0x0-0x0-0x0
[   22.410020] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   22.418181] iwlwifi 0000:03:00.0: Radio type=0x0-0x0-0x0
[   22.479265] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   22.883622] init: samba-ad-dc main process (975) terminated with status 1
[   24.738605] wlan0: authenticate with 00:21:7c:4a:e7:81
[   24.749974] wlan0: send auth to 00:21:7c:4a:e7:81 (try 1/3)
[   24.751712] wlan0: authenticated
[   24.751832] iwlwifi 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
[   24.751835] iwlwifi 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   24.751837] iwlwifi 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   24.751840] wlan0: waiting for beacon from 00:21:7c:4a:e7:81
[   24.850434] wlan0: associate with 00:21:7c:4a:e7:81 (try 1/3)
[   24.853690] wlan0: RX AssocResp from 00:21:7c:4a:e7:81 (capab=0x431 status=0 aid=3)
[   24.856299] wlan0: associated
[   24.856326] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   24.856378] cfg80211: Calling CRDA for country: CA
[   24.858881] wlan0: deauthenticating from 00:21:7c:4a:e7:81 by local choice (Reason: 2=PREV_AUTH_NOT_VALID)
[   24.877724] wlan0: authenticate with 00:21:7c:4a:e7:81
[   24.887749] wlan0: send auth to 00:21:7c:4a:e7:81 (try 1/3)
[   24.887872] cfg80211: Calling CRDA to update world regulatory domain
[   24.891329] cfg80211: World regulatory domain updated:
[   24.891333] cfg80211:  DFS Master region: unset
[   24.891334] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   24.891337] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   24.891340] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   24.891341] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   24.891343] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   24.891345] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   24.900083] wlan0: authenticated
[   24.900221] iwlwifi 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
[   24.900224] iwlwifi 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   24.900226] iwlwifi 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   24.902413] wlan0: associate with 00:21:7c:4a:e7:81 (try 1/3)
[   24.904642] wlan0: RX AssocResp from 00:21:7c:4a:e7:81 (capab=0x431 status=0 aid=3)
[   24.907194] wlan0: associated
[   24.907227] cfg80211: Calling CRDA for country: CA
[   24.909565] cfg80211: Regulatory domain changed to country: CA
[   24.909569] cfg80211:  DFS Master region: unset
[   24.909570] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   24.909573] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm), (N/A)
[   24.909575] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm), (N/A)
[   24.909577] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   24.909579] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   24.909581] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm), (N/A)
[   27.245834] init: plymouth-upstart-bridge main process ended, respawning
[   27.264780] init: plymouth-upstart-bridge main process ended, respawning
[   34.897464] wlan0: deauthenticating from 00:21:7c:4a:e7:81 by local choice (Reason: 3=DEAUTH_LEAVING)
[   34.901479] cfg80211: Calling CRDA to update world regulatory domain
[   34.904029] cfg80211: World regulatory domain updated:
[   34.904032] cfg80211:  DFS Master region: unset
[   34.904034] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   34.904037] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   34.904039] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   34.904041] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   34.904043] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   34.904045] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   35.430280] wlan0: authenticate with 00:21:7c:4a:e7:81
[   35.440809] wlan0: send auth to 00:21:7c:4a:e7:81 (try 1/3)
[   35.442492] wlan0: authenticated
[   35.442652] iwlwifi 0000:03:00.0 wlan0: disabling HT/VHT due to WEP/TKIP use
[   35.442656] iwlwifi 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[   35.442658] iwlwifi 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[   35.442814] wlan0: associate with 00:21:7c:4a:e7:81 (try 1/3)
[   35.445817] wlan0: RX AssocResp from 00:21:7c:4a:e7:81 (capab=0x431 status=0 aid=3)
[   35.449677] wlan0: associated
[   35.450090] cfg80211: Calling CRDA for country: CA
[   35.452316] cfg80211: Regulatory domain changed to country: CA
[   35.452320] cfg80211:  DFS Master region: unset
[   35.452322] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   35.452325] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm), (N/A)
[   35.452327] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm), (N/A)
[   35.452330] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   35.452331] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (0 s)
[   35.452333] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm), (N/A)
[   36.549588] mmc0: Timeout waiting for hardware interrupt.
[   46.554624] mmc0: Timeout waiting for hardware interrupt.
[   49.823645] audit_printk_skb: 132 callbacks suppressed
[   49.823649] audit: type=1400 audit(1431129432.108:68): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1703 comm="apparmor_parser"
[   49.823658] audit: type=1400 audit(1431129432.108:69): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1703 comm="apparmor_parser"
[   49.824110] audit: type=1400 audit(1431129432.108:70): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1703 comm="apparmor_parser"
[   56.558710] mmc0: Timeout waiting for hardware interrupt.
[   66.558763] mmc0: Timeout waiting for hardware interrupt.
[   76.558750] mmc0: Timeout waiting for hardware interrupt.
[   86.590713] mmc0: Timeout waiting for hardware interrupt.
[   96.590734] mmc0: Timeout waiting for hardware interrupt.
[  104.721880] usb 2-1.3: new full-speed USB device number 4 using ehci-pci
[  104.820037] usb 2-1.3: New USB device found, idVendor=045e, idProduct=0800
[  104.820047] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[  104.820053] usb 2-1.3: Product: Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0
[  104.820057] usb 2-1.3: Manufacturer: Microsoft
[  104.823303] input: Microsoft Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/0003:045E:0800.0002/input/input15
[  104.823660] hid-generic 0003:045E:0800.0002: input,hidraw1: USB HID v1.11 Keyboard [Microsoft Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0] on usb-0000:00:1d.0-1.3/input0
[  104.828881] input: Microsoft Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/0003:045E:0800.0003/input/input16
[  104.829243] hid-generic 0003:045E:0800.0003: input,hidraw2: USB HID v1.11 Mouse [Microsoft Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0] on usb-0000:00:1d.0-1.3/input1
[  104.846382] input: Microsoft Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.2/0003:045E:0800.0004/input/input17
[  104.849162] hid-generic 0003:045E:0800.0004: input,hiddev0,hidraw3: USB HID v1.11 Device [Microsoft Microsoft\xffffffc2\xffffffae\xffffffae Nano Transceiver v2.0] on usb-0000:00:1d.0-1.3/input2
[  106.590741] mmc0: Timeout waiting for hardware interrupt.
[  116.590750] mmc0: Timeout waiting for hardware interrupt.
[  126.590732] mmc0: Timeout waiting for hardware interrupt.
[  136.590772] mmc0: Timeout waiting for hardware interrupt.
[  146.590758] mmc0: Timeout waiting for hardware interrupt.
[  156.590721] mmc0: Timeout waiting for hardware interrupt.
[  166.590782] mmc0: Timeout waiting for hardware interrupt.
[  167.942270] usb 2-1.2: USB disconnect, device number 3
[  176.590738] mmc0: Timeout waiting for hardware interrupt.
[  186.590801] mmc0: Timeout waiting for hardware interrupt.
[  192.832958] [Firmware Bug]: battery: (dis)charge rate invalid.
[  196.590819] mmc0: Timeout waiting for hardware interrupt.
[  206.590850] mmc0: Timeout waiting for hardware interrupt.
[  216.622719] mmc0: Timeout waiting for hardware interrupt.
[  226.622741] mmc0: Timeout waiting for hardware interrupt.
[  236.622740] mmc0: Timeout waiting for hardware interrupt.
[  246.622761] mmc0: Timeout waiting for hardware interrupt.
[  256.622816] mmc0: Timeout waiting for hardware interrupt.
[  266.622781] mmc0: Timeout waiting for hardware interrupt.
[  276.622846] mmc0: Timeout waiting for hardware interrupt.
[  286.622802] mmc0: Timeout waiting for hardware interrupt.
[  296.622873] mmc0: Timeout waiting for hardware interrupt.
[  306.622881] mmc0: Timeout waiting for hardware interrupt.
[  316.622900] mmc0: Timeout waiting for hardware interrupt.
[  326.622906] mmc0: Timeout waiting for hardware interrupt.
[  336.622863] mmc0: Timeout waiting for hardware interrupt.
[  346.654818] mmc0: Timeout waiting for hardware interrupt.
[  356.654901] mmc0: Timeout waiting for hardware interrupt.
[  366.654923] mmc0: Timeout waiting for hardware interrupt.
[  376.654859] mmc0: Timeout waiting for hardware interrupt.
[  386.654950] mmc0: Timeout waiting for hardware interrupt.
[  396.654923] mmc0: Timeout waiting for hardware interrupt.
[  406.654971] mmc0: Timeout waiting for hardware interrupt.
[  416.654957] mmc0: Timeout waiting for hardware interrupt.
[  426.654981] mmc0: Timeout waiting for hardware interrupt.
[  436.654971] mmc0: Timeout waiting for hardware interrupt.
[  446.654969] mmc0: Timeout waiting for hardware interrupt.
[  456.654994] mmc0: Timeout waiting for hardware interrupt.
[  466.655014] mmc0: Timeout waiting for hardware interrupt.
Download as text