ubuntuusers.de

DMESG

Autor:
frostgram
Datum:
28. Februar 2015 22:47
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
[    0.000000] CPU0 microcode updated early to revision 0x29, date = 2013-06-12
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.19.0-031900-generic (kernel@tangerine) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #201502091451 SMP Mon Feb 9 14:52:52 UTC 2015
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-031900-generic root=UUID=22de8a22-b2b4-4eca-aadf-921bf4783437 ro quiet splash
[    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-0x000000000009e7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000befbefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000befbf000-0x00000000bf011fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf012000-0x00000000bf5a7fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf5a8000-0x00000000bf5b8fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf5b9000-0x00000000bf5ccfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf5cd000-0x00000000bf5cefff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf5cf000-0x00000000bf5d6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf5d7000-0x00000000bf5e1fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf5e2000-0x00000000bf63dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf63e000-0x00000000bf680fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf681000-0x00000000bf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: System manufacturer System Product Name/P8P67 EVO, BIOS 1606 05/02/2011
[    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 = 0x23f800 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-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask E00000000 write-back
[    0.000000]   1 base 200000000 mask FC0000000 write-back
[    0.000000]   2 base 0C0000000 mask FC0000000 uncachable
[    0.000000]   3 base 23F800000 mask FFF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] PAT configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- UC  
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 8GB, type WB
[    0.000000] reg 1, base: 8GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3GB, range: 1GB, type UC
[    0.000000] reg 3, base: 9208MB, range: 8MB, type UC
[    0.000000] total RAM covered: 8184M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 16M 	num_reg: 5  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 4GB, range: 4GB, type WB
[    0.000000] reg 3, base: 8GB, range: 1GB, type WB
[    0.000000] reg 4, base: 9208MB, range: 8MB, type UC
[    0.000000] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcf00-0x000fcf0f] mapped at [ffff8800000fcf00]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fd0000, 0x01fd0fff] PGTABLE
[    0.000000] BRK [0x01fd1000, 0x01fd1fff] PGTABLE
[    0.000000] BRK [0x01fd2000, 0x01fd2fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x23f600000-0x23f7fffff]
[    0.000000]  [mem 0x23f600000-0x23f7fffff] page 2M
[    0.000000] BRK [0x01fd3000, 0x01fd3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x220000000-0x23f5fffff]
[    0.000000]  [mem 0x220000000-0x23f5fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x200000000-0x21fffffff]
[    0.000000]  [mem 0x200000000-0x21fffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbefbefff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbedfffff] page 2M
[    0.000000]  [mem 0xbee00000-0xbefbefff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbf5cd000-0xbf5cefff]
[    0.000000]  [mem 0xbf5cd000-0xbf5cefff] page 4k
[    0.000000] BRK [0x01fd4000, 0x01fd4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xbf681000-0xbf7fffff]
[    0.000000]  [mem 0xbf681000-0xbf7fffff] page 4k
[    0.000000] BRK [0x01fd5000, 0x01fd5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
[    0.000000] RAMDISK: [mem 0x34878000-0x36433fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0420 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000BF009068 00004C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000BF011A68 0000F4 (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000BF009140 008927 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000BF5D9F80 000040
[    0.000000] ACPI: APIC 0x00000000BF011B60 000072 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000BF011BD8 000102 (v01 AMICPU PROC     00000001 MSFT 03000001)
[    0.000000] ACPI: MCFG 0x00000000BF011CE0 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000BF011D20 000038 (v01 ALASKA A M I    01072009 AMI. 00000004)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f7fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x23f7f4000-0x23f7f8fff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236e00000-ffff88023edfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f7fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009dfff]
[    0.000000]   node   0: [mem 0x00100000-0xbefbefff]
[    0.000000]   node   0: [mem 0xbf5cd000-0xbf5cefff]
[    0.000000]   node   0: [mem 0xbf681000-0xbf7fffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f7fffff]
[    0.000000] Initmem setup node 0 [mem 0x00001000-0x23f7fffff]
[    0.000000] On node 0 totalpages: 2091229
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12165 pages used for memmap
[    0.000000]   DMA32 zone: 778560 pages, LIFO batch:31
[    0.000000]   Normal zone: 20448 pages used for memmap
[    0.000000]   Normal zone: 1308672 pages, LIFO batch:31
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    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: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbefbf000-0xbf011fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf012000-0xbf5a7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5a8000-0xbf5b8fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5b9000-0xbf5ccfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5cf000-0xbf5d6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5d7000-0xbf5e1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf5e2000-0xbf63dfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf63e000-0xbf680fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xbf800000-0xfed1bfff] 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:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 31 pages/cpu @ffff88023f400000 s86080 r8192 d32704 u524288
[    0.000000] pcpu-alloc: s86080 r8192 d32704 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 2058531
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-031900-generic root=UUID=22de8a22-b2b4-4eca-aadf-921bf4783437 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[    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: 8122296K/8364916K available (8028K kernel code, 1163K rwdata, 3852K rodata, 1408K init, 1292K bss, 242620K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:16640 nr_irqs:456 16
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3310.663 MHz processor
[    0.000026] Calibrating delay loop (skipped), value calculated using timer frequency.. 6621.32 BogoMIPS (lpj=13242652)
[    0.000028] pid_max: default: 32768 minimum: 301
[    0.000032] ACPI: Core revision 20141107
[    0.003113] ACPI: All ACPI Tables successfully acquired
[    0.098380] Security Framework initialized
[    0.098389] AppArmor: AppArmor initialized
[    0.098390] Yama: becoming mindful.
[    0.098812] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.100018] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.100524] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.100531] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.100690] Initializing cgroup subsys memory
[    0.100694] Initializing cgroup subsys devices
[    0.100696] Initializing cgroup subsys freezer
[    0.100698] Initializing cgroup subsys net_cls
[    0.100699] Initializing cgroup subsys blkio
[    0.100701] Initializing cgroup subsys perf_event
[    0.100702] Initializing cgroup subsys net_prio
[    0.100704] Initializing cgroup subsys hugetlb
[    0.100722] CPU: Physical Processor ID: 0
[    0.100723] CPU: Processor Core ID: 0
[    0.100727] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.100729] mce: CPU supports 9 MCE banks
[    0.100739] CPU0: Thermal monitoring enabled (TM1)
[    0.100747] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.100829] Freeing SMP alternatives memory: 28K (ffffffff81e84000 - ffffffff81e8b000)
[    0.101943] ftrace: allocating 32886 entries in 129 pages
[    0.114139] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.153784] smpboot: CPU0: Intel(R) Core(TM) i5-2500K CPU @ 3.30GHz (fam: 06, model: 2a, stepping: 07)
[    0.153791] TSC deadline timer enabled
[    0.153811] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.153827] ... version:                3
[    0.153827] ... bit width:              48
[    0.153828] ... generic registers:      8
[    0.153829] ... value mask:             0000ffffffffffff
[    0.153830] ... max period:             0000ffffffffffff
[    0.153830] ... fixed-purpose events:   3
[    0.153831] ... event mask:             00000007000000ff
[    0.154419] x86: Booting SMP configuration:
[    0.154421] .... node  #0, CPUs:      #1
[    0.165576] CPU1 microcode updated early to revision 0x29, date = 2013-06-12
[    0.167692] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.167771]  #2
[    0.179024] CPU2 microcode updated early to revision 0x29, date = 2013-06-12
[    0.181175]  #3
[    0.192430] CPU3 microcode updated early to revision 0x29, date = 2013-06-12
[    0.194505] x86: Booted up 1 node, 4 CPUs
[    0.194508] smpboot: Total of 4 processors activated (26485.30 BogoMIPS)
[    0.197081] devtmpfs: initialized
[    0.200649] evm: security.selinux
[    0.200650] evm: security.SMACK64
[    0.200651] evm: security.SMACK64EXEC
[    0.200652] evm: security.SMACK64TRANSMUTE
[    0.200652] evm: security.SMACK64MMAP
[    0.200653] evm: security.ima
[    0.200654] evm: security.capability
[    0.200690] PM: Registering ACPI NVS region [mem 0xbefbf000-0xbf011fff] (339968 bytes)
[    0.200695] PM: Registering ACPI NVS region [mem 0xbf5a8000-0xbf5b8fff] (69632 bytes)
[    0.200698] PM: Registering ACPI NVS region [mem 0xbf5d7000-0xbf5e1fff] (45056 bytes)
[    0.200699] PM: Registering ACPI NVS region [mem 0xbf63e000-0xbf680fff] (274432 bytes)
[    0.200807] pinctrl core: initialized pinctrl subsystem
[    0.200893] RTC time: 22:25:44, date: 02/28/15
[    0.200974] NET: Registered protocol family 16
[    0.208924] cpuidle: using governor ladder
[    0.212925] cpuidle: using governor menu
[    0.213028] ACPI: bus type PCI registered
[    0.213030] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.213099] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.213101] PCI: not using MMCONFIG
[    0.213102] PCI: Using configuration type 1 for base access
[    0.217271] ACPI: Added _OSI(Module Device)
[    0.217272] ACPI: Added _OSI(Processor Device)
[    0.217273] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.217274] ACPI: Added _OSI(Processor Aggregator Device)
[    0.218520] ACPI: Executed 1 blocks of module-level executable AML code
[    0.220025] ACPI: Dynamic OEM Table Load:
[    0.220029] ACPI: SSDT 0xFFFF88023688C400 0003E0 (v01 AMI    IST      00000001 MSFT 03000001)
[    0.220269] ACPI: Dynamic OEM Table Load:
[    0.220272] ACPI: SSDT 0xFFFF8802354B6C00 000120 (v01 AMI    CST      00000001 MSFT 03000001)
[    0.220719] ACPI: Interpreter enabled
[    0.220726] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
[    0.220734] ACPI: (supports S0 S1 S3 S4 S5)
[    0.220735] ACPI: Using IOAPIC for interrupt routing
[    0.220749] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.220785] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in ACPI motherboard resources
[    0.220856] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.221032] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.224611] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.224615] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.224706] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug]
[    0.224789] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.224904] acpi PNP0A08:00: ignoring host bridge window [mem 0x000c8000-0x000dffff] (conflicts with Video ROM [mem 0x000c0000-0x000cedff])
[    0.224905] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.225014] PCI host bridge to bus 0000:00
[    0.225016] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.225017] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.225019] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.225020] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.225021] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff]
[    0.225027] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.225092] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.225118] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.225142] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.225198] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.225220] pci 0000:00:16.0: reg 0x10: [mem 0xfb628000-0xfb62800f 64bit]
[    0.225293] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.225357] pci 0000:00:19.0: [8086:1503] type 00 class 0x020000
[    0.225374] pci 0000:00:19.0: reg 0x10: [mem 0xfb600000-0xfb61ffff]
[    0.225381] pci 0000:00:19.0: reg 0x14: [mem 0xfb627000-0xfb627fff]
[    0.225389] pci 0000:00:19.0: reg 0x18: [io  0xf020-0xf03f]
[    0.225450] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.225477] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.225512] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.225531] pci 0000:00:1a.0: reg 0x10: [mem 0xfb626000-0xfb6263ff]
[    0.225618] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.225647] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.225680] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.225696] pci 0000:00:1b.0: reg 0x10: [mem 0xfb620000-0xfb623fff 64bit]
[    0.225766] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.225823] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.225902] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.225934] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.225964] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.226043] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.226075] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.226106] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.226185] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.226216] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.226248] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.226327] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.226358] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.226389] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.226468] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.226499] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.226531] pci 0000:00:1c.6: [8086:244e] type 01 class 0x060401
[    0.226609] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.226640] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.226671] pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
[    0.226749] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.226781] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.226815] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.226835] pci 0000:00:1d.0: reg 0x10: [mem 0xfb625000-0xfb6253ff]
[    0.226921] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.226950] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.226985] pci 0000:00:1f.0: [8086:1c46] type 00 class 0x060100
[    0.227132] pci 0000:00:1f.2: [8086:1c00] type 00 class 0x01018f
[    0.227146] pci 0000:00:1f.2: reg 0x10: [io  0xf0f0-0xf0f7]
[    0.227153] pci 0000:00:1f.2: reg 0x14: [io  0xf0e0-0xf0e3]
[    0.227160] pci 0000:00:1f.2: reg 0x18: [io  0xf0d0-0xf0d7]
[    0.227167] pci 0000:00:1f.2: reg 0x1c: [io  0xf0c0-0xf0c3]
[    0.227174] pci 0000:00:1f.2: reg 0x20: [io  0xf0b0-0xf0bf]
[    0.227181] pci 0000:00:1f.2: reg 0x24: [io  0xf0a0-0xf0af]
[    0.227257] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.227271] pci 0000:00:1f.3: reg 0x10: [mem 0xfb624000-0xfb6240ff 64bit]
[    0.227290] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.227354] pci 0000:00:1f.5: [8086:1c08] type 00 class 0x010185
[    0.227367] pci 0000:00:1f.5: reg 0x10: [io  0xf090-0xf097]
[    0.227374] pci 0000:00:1f.5: reg 0x14: [io  0xf080-0xf083]
[    0.227382] pci 0000:00:1f.5: reg 0x18: [io  0xf070-0xf077]
[    0.227389] pci 0000:00:1f.5: reg 0x1c: [io  0xf060-0xf063]
[    0.227396] pci 0000:00:1f.5: reg 0x20: [io  0xf050-0xf05f]
[    0.227403] pci 0000:00:1f.5: reg 0x24: [io  0xf040-0xf04f]
[    0.227509] pci 0000:01:00.0: [10de:13c0] type 00 class 0x030000
[    0.227519] pci 0000:01:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[    0.227528] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.227537] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.227544] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.227550] pci 0000:01:00.0: reg 0x30: [mem 0xfb000000-0xfb07ffff pref]
[    0.227625] pci 0000:01:00.1: [10de:0fbb] type 00 class 0x040300
[    0.227635] pci 0000:01:00.1: reg 0x10: [mem 0xfb080000-0xfb083fff]
[    0.237077] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.237081] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.237085] pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    0.237089] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.237175] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.237257] pci 0000:03:00.0: [1033:0194] type 00 class 0x0c0330
[    0.237286] pci 0000:03:00.0: reg 0x10: [mem 0xfb500000-0xfb501fff 64bit]
[    0.237431] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.245077] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.245086] pci 0000:00:1c.1:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.245177] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.245265] pci 0000:05:00.0: [197b:2362] type 00 class 0x010185
[    0.245303] pci 0000:05:00.0: reg 0x10: [io  0xd040-0xd047]
[    0.245318] pci 0000:05:00.0: reg 0x14: [io  0xd030-0xd033]
[    0.245334] pci 0000:05:00.0: reg 0x18: [io  0xd020-0xd027]
[    0.245350] pci 0000:05:00.0: reg 0x1c: [io  0xd010-0xd013]
[    0.245365] pci 0000:05:00.0: reg 0x20: [io  0xd000-0xd00f]
[    0.245381] pci 0000:05:00.0: reg 0x24: [mem 0xfb410000-0xfb4101ff]
[    0.245397] pci 0000:05:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    0.245465] pci 0000:05:00.0: PME# supported from D3hot
[    0.253071] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    0.253077] pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
[    0.253082] pci 0000:00:1c.3:   bridge window [mem 0xfb400000-0xfb4fffff]
[    0.253195] pci 0000:06:00.0: [1033:0194] type 00 class 0x0c0330
[    0.253224] pci 0000:06:00.0: reg 0x10: [mem 0xfb300000-0xfb301fff 64bit]
[    0.253369] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.261066] pci 0000:00:1c.4: PCI bridge to [bus 06]
[    0.261075] pci 0000:00:1c.4:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.261185] pci 0000:07:00.0: [1b21:1080] type 01 class 0x060401
[    0.261305] pci 0000:07:00.0: System wakeup disabled by ACPI
[    0.261329] pci 0000:00:1c.6: PCI bridge to [bus 07-08] (subtractive decode)
[    0.261333] pci 0000:00:1c.6:   bridge window [io  0xc000-0xcfff]
[    0.261337] pci 0000:00:1c.6:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.261342] pci 0000:00:1c.6:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.261343] pci 0000:00:1c.6:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.261345] pci 0000:00:1c.6:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.261346] pci 0000:00:1c.6:   bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
[    0.261415] pci 0000:08:02.0: [10ec:8167] type 00 class 0x020000
[    0.261449] pci 0000:08:02.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.261466] pci 0000:08:02.0: reg 0x14: [mem 0xfb221000-0xfb2210ff]
[    0.261543] pci 0000:08:02.0: reg 0x30: [mem 0xfb200000-0xfb21ffff pref]
[    0.261613] pci 0000:08:02.0: supports D1 D2
[    0.261615] pci 0000:08:02.0: PME# supported from D1 D2 D3hot D3cold
[    0.261670] pci 0000:08:03.0: [1106:3044] type 00 class 0x0c0010
[    0.261700] pci 0000:08:03.0: reg 0x10: [mem 0xfb220000-0xfb2207ff]
[    0.261717] pci 0000:08:03.0: reg 0x14: [io  0xc100-0xc17f]
[    0.261849] pci 0000:08:03.0: supports D2
[    0.261850] pci 0000:08:03.0: PME# supported from D2 D3hot D3cold
[    0.261950] pci 0000:07:00.0: PCI bridge to [bus 08] (subtractive decode)
[    0.261959] pci 0000:07:00.0:   bridge window [io  0xc000-0xcfff]
[    0.261965] pci 0000:07:00.0:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.261974] pci 0000:07:00.0:   bridge window [io  0xc000-0xcfff] (subtractive decode)
[    0.261975] pci 0000:07:00.0:   bridge window [mem 0xfb200000-0xfb2fffff] (subtractive decode)
[    0.261977] pci 0000:07:00.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.261978] pci 0000:07:00.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.261979] pci 0000:07:00.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.261980] pci 0000:07:00.0:   bridge window [mem 0xc0000000-0xffffffff] (subtractive decode)
[    0.262059] pci 0000:09:00.0: [1b4b:9172] type 00 class 0x010601
[    0.262079] pci 0000:09:00.0: reg 0x10: [io  0xb040-0xb047]
[    0.262092] pci 0000:09:00.0: reg 0x14: [io  0xb030-0xb033]
[    0.262104] pci 0000:09:00.0: reg 0x18: [io  0xb020-0xb027]
[    0.262116] pci 0000:09:00.0: reg 0x1c: [io  0xb010-0xb013]
[    0.262128] pci 0000:09:00.0: reg 0x20: [io  0xb000-0xb00f]
[    0.262140] pci 0000:09:00.0: reg 0x24: [mem 0xfb110000-0xfb1101ff]
[    0.262153] pci 0000:09:00.0: reg 0x30: [mem 0xfb100000-0xfb10ffff pref]
[    0.262216] pci 0000:09:00.0: PME# supported from D3hot
[    0.269059] pci 0000:00:1c.7: PCI bridge to [bus 09]
[    0.269066] pci 0000:00:1c.7:   bridge window [io  0xb000-0xbfff]
[    0.269072] pci 0000:00:1c.7:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.269484] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.269519] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.269553] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[    0.269586] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.269619] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.269652] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.269685] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.269719] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.269779] ACPI : EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62
[    0.269853] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.269855] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.269856] vgaarb: loaded
[    0.269857] vgaarb: bridge control possible 0000:01:00.0
[    0.270028] SCSI subsystem initialized
[    0.270054] libata version 3.00 loaded.
[    0.270073] ACPI: bus type USB registered
[    0.270085] usbcore: registered new interface driver usbfs
[    0.270092] usbcore: registered new interface driver hub
[    0.270102] usbcore: registered new device driver usb
[    0.270190] PCI: Using ACPI for IRQ routing
[    0.271505] PCI: pci_cache_line_size set to 64 bytes
[    0.271576] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[    0.271577] e820: reserve RAM buffer [mem 0xbefbf000-0xbfffffff]
[    0.271579] e820: reserve RAM buffer [mem 0xbf5cf000-0xbfffffff]
[    0.271580] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[    0.271581] e820: reserve RAM buffer [mem 0x23f800000-0x23fffffff]
[    0.271667] NetLabel: Initializing
[    0.271668] NetLabel:  domain hash size = 128
[    0.271669] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.271678] NetLabel:  unlabeled traffic allowed by default
[    0.271722] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.271726] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.273754] Switched to clocksource hpet
[    0.277776] AppArmor: AppArmor Filesystem Enabled
[    0.277831] pnp: PnP ACPI init
[    0.277934] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
[    0.277936] system 00:00: [mem 0xe0000000-0xe3ffffff] has been reserved
[    0.277937] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.277939] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.277940] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.277942] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.278007] system 00:01: [io  0x0290-0x029f] has been reserved
[    0.278009] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.278037] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.278076] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.278078] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.278235] pnp 00:04: [dma 0 disabled]
[    0.278265] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.278375] system 00:05: [io  0x0400-0x0453] could not be reserved
[    0.278377] system 00:05: [io  0x0458-0x047f] has been reserved
[    0.278378] system 00:05: [io  0x0500-0x057f] has been reserved
[    0.278380] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.278381] system 00:05: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.278383] system 00:05: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.278384] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.278386] system 00:05: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.278428] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.278430] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.278568] pnp: PnP ACPI: found 7 devices
[    0.284671] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.284673] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.284675] pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    0.284677] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.284680] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.284690] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.284695] pci 0000:00:1c.1:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.284702] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.284715] pci 0000:05:00.0: BAR 6: assigned [mem 0xfb400000-0xfb40ffff pref]
[    0.284716] pci 0000:00:1c.3: PCI bridge to [bus 05]
[    0.284719] pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
[    0.284724] pci 0000:00:1c.3:   bridge window [mem 0xfb400000-0xfb4fffff]
[    0.284731] pci 0000:00:1c.4: PCI bridge to [bus 06]
[    0.284735] pci 0000:00:1c.4:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.284743] pci 0000:07:00.0: PCI bridge to [bus 08]
[    0.284747] pci 0000:07:00.0:   bridge window [io  0xc000-0xcfff]
[    0.284754] pci 0000:07:00.0:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.284768] pci 0000:00:1c.6: PCI bridge to [bus 07-08]
[    0.284770] pci 0000:00:1c.6:   bridge window [io  0xc000-0xcfff]
[    0.284775] pci 0000:00:1c.6:   bridge window [mem 0xfb200000-0xfb2fffff]
[    0.284782] pci 0000:00:1c.7: PCI bridge to [bus 09]
[    0.284784] pci 0000:00:1c.7:   bridge window [io  0xb000-0xbfff]
[    0.284789] pci 0000:00:1c.7:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.284797] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.284798] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.284800] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.284801] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xffffffff]
[    0.284802] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.284803] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfb0fffff]
[    0.284805] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.284806] pci_bus 0000:03: resource 1 [mem 0xfb500000-0xfb5fffff]
[    0.284808] pci_bus 0000:05: resource 0 [io  0xd000-0xdfff]
[    0.284809] pci_bus 0000:05: resource 1 [mem 0xfb400000-0xfb4fffff]
[    0.284810] pci_bus 0000:06: resource 1 [mem 0xfb300000-0xfb3fffff]
[    0.284811] pci_bus 0000:07: resource 0 [io  0xc000-0xcfff]
[    0.284812] pci_bus 0000:07: resource 1 [mem 0xfb200000-0xfb2fffff]
[    0.284814] pci_bus 0000:07: resource 4 [io  0x0000-0x0cf7]
[    0.284815] pci_bus 0000:07: resource 5 [io  0x0d00-0xffff]
[    0.284816] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff]
[    0.284817] pci_bus 0000:07: resource 7 [mem 0xc0000000-0xffffffff]
[    0.284819] pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
[    0.284820] pci_bus 0000:08: resource 1 [mem 0xfb200000-0xfb2fffff]
[    0.284821] pci_bus 0000:08: resource 4 [io  0xc000-0xcfff]
[    0.284822] pci_bus 0000:08: resource 5 [mem 0xfb200000-0xfb2fffff]
[    0.284823] pci_bus 0000:08: resource 6 [io  0x0000-0x0cf7]
[    0.284824] pci_bus 0000:08: resource 7 [io  0x0d00-0xffff]
[    0.284826] pci_bus 0000:08: resource 8 [mem 0x000a0000-0x000bffff]
[    0.284827] pci_bus 0000:08: resource 9 [mem 0xc0000000-0xffffffff]
[    0.284828] pci_bus 0000:09: resource 0 [io  0xb000-0xbfff]
[    0.284829] pci_bus 0000:09: resource 1 [mem 0xfb100000-0xfb1fffff]
[    0.284850] NET: Registered protocol family 2
[    0.284984] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.285103] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.285214] TCP: Hash tables configured (established 65536 bind 65536)
[    0.285227] TCP: reno registered
[    0.285235] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.285258] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.285297] NET: Registered protocol family 1
[    0.541612] pci 0000:01:00.0: Video device with shadowed ROM
[    0.541806] PCI: CLS 64 bytes, default 64
[    0.541842] Trying to unpack rootfs image as initramfs...
[    0.871448] Freeing initrd memory: 28400K (ffff880034878000 - ffff880036434000)
[    0.871483] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.871485] software IO TLB [mem 0xbafbf000-0xbefbf000] (64MB) mapped at [ffff8800bafbf000-ffff8800befbefff]
[    0.871637] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    0.871716] microcode: CPU0 sig=0x206a7, pf=0x2, revision=0x29
[    0.871722] microcode: CPU1 sig=0x206a7, pf=0x2, revision=0x29
[    0.871725] microcode: CPU2 sig=0x206a7, pf=0x2, revision=0x29
[    0.871730] microcode: CPU3 sig=0x206a7, pf=0x2, revision=0x29
[    0.871778] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.871798] Scanning for low memory corruption every 60 seconds
[    0.872038] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.872053] Initialise system trusted keyring
[    0.872070] audit: initializing netlink subsys (disabled)
[    0.872081] audit: type=2000 audit(1425162344.772:1): initialized
[    0.872375] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.873489] zpool: loaded
[    0.873490] zbud: loaded
[    0.873601] VFS: Disk quotas dquot_6.5.2
[    0.873627] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.873953] fuse init (API version 7.23)
[    0.874053] Key type big_key registered
[    0.874351] Key type asymmetric registered
[    0.874354] Asymmetric key parser 'x509' registered
[    0.874381] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.874410] io scheduler noop registered
[    0.874412] io scheduler deadline registered (default)
[    0.874435] io scheduler cfq registered
[    0.875158] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.875160] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.875161] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.875163] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.875180] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.875184] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.875198] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    0.875199] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.875203] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    0.875217] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[    0.875221] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
[    0.875236] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[    0.875237] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    0.875241] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
[    0.875255] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    0.875256] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    0.875260] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    0.875274] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    0.875275] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    0.875279] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[    0.875283] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.875295] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.875322] intel_idle: MWAIT substates: 0x1120
[    0.875323] intel_idle: v0.4 model 0x2A
[    0.875323] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.875480] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.875483] ACPI: Power Button [PWRB]
[    0.875511] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.875512] ACPI: Power Button [PWRF]
[    0.875924] GHES: HEST is not enabled!
[    0.876005] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.896391] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.897789] Linux agpgart interface v0.103
[    0.898733] brd: module loaded
[    0.899246] loop: module loaded
[    0.899348] ata_piix 0000:00:1f.2: version 2.13
[    0.899396] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    1.053755] scsi host0: ata_piix
[    1.053997] scsi host1: ata_piix
[    1.054036] ata1: SATA max UDMA/133 cmd 0xf0f0 ctl 0xf0e0 bmdma 0xf0b0 irq 20
[    1.054041] ata2: SATA max UDMA/133 cmd 0xf0d0 ctl 0xf0c0 bmdma 0xf0b8 irq 20
[    1.054091] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    1.054782] scsi host2: ata_piix
[    1.054950] scsi host3: ata_piix
[    1.054988] ata3: SATA max UDMA/133 cmd 0xf090 ctl 0xf080 bmdma 0xf050 irq 20
[    1.054991] ata4: SATA max UDMA/133 cmd 0xf070 ctl 0xf060 bmdma 0xf058 irq 20
[    1.055053] libphy: Fixed MDIO Bus: probed
[    1.055056] tun: Universal TUN/TAP device driver, 1.6
[    1.055056] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.055130] PPP generic driver version 2.4.2
[    1.055235] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.055239] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1
[    1.055518] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.055520] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.055521] usb usb1: Product: xHCI Host Controller
[    1.055522] usb usb1: Manufacturer: Linux 3.19.0-031900-generic xhci-hcd
[    1.055523] usb usb1: SerialNumber: 0000:03:00.0
[    1.055603] hub 1-0:1.0: USB hub found
[    1.055611] hub 1-0:1.0: 2 ports detected
[    1.055683] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.055686] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
[    1.058832] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[    1.058834] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.058835] usb usb2: Product: xHCI Host Controller
[    1.058836] usb usb2: Manufacturer: Linux 3.19.0-031900-generic xhci-hcd
[    1.058837] usb usb2: SerialNumber: 0000:03:00.0
[    1.058907] hub 2-0:1.0: USB hub found
[    1.058915] hub 2-0:1.0: 2 ports detected
[    1.059016] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    1.059019] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 3
[    1.059280] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.059281] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.059282] usb usb3: Product: xHCI Host Controller
[    1.059283] usb usb3: Manufacturer: Linux 3.19.0-031900-generic xhci-hcd
[    1.059284] usb usb3: SerialNumber: 0000:06:00.0
[    1.059349] hub 3-0:1.0: USB hub found
[    1.059357] hub 3-0:1.0: 2 ports detected
[    1.059420] xhci_hcd 0000:06:00.0: xHCI Host Controller
[    1.059423] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 4
[    1.062609] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.062611] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.062612] usb usb4: Product: xHCI Host Controller
[    1.062613] usb usb4: Manufacturer: Linux 3.19.0-031900-generic xhci-hcd
[    1.062614] usb usb4: SerialNumber: 0000:06:00.0
[    1.062721] hub 4-0:1.0: USB hub found
[    1.062728] hub 4-0:1.0: 2 ports detected
[    1.062799] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.062804] ehci-pci: EHCI PCI platform driver
[    1.062860] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.062864] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 5
[    1.062875] ehci-pci 0000:00:1a.0: debug port 2
[    1.066757] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.066767] ehci-pci 0000:00:1a.0: irq 23, io mem 0xfb626000
[    1.077007] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.077029] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[    1.077030] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.077031] usb usb5: Product: EHCI Host Controller
[    1.077033] usb usb5: Manufacturer: Linux 3.19.0-031900-generic ehci_hcd
[    1.077034] usb usb5: SerialNumber: 0000:00:1a.0
[    1.077193] hub 5-0:1.0: USB hub found
[    1.077200] hub 5-0:1.0: 2 ports detected
[    1.077331] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.077335] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 6
[    1.077346] ehci-pci 0000:00:1d.0: debug port 2
[    1.081240] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.081244] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb625000
[    1.093043] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.093106] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002
[    1.093108] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.093109] usb usb6: Product: EHCI Host Controller
[    1.093111] usb usb6: Manufacturer: Linux 3.19.0-031900-generic ehci_hcd
[    1.093112] usb usb6: SerialNumber: 0000:00:1d.0
[    1.093274] hub 6-0:1.0: USB hub found
[    1.093280] hub 6-0:1.0: 2 ports detected
[    1.093364] ehci-platform: EHCI generic platform driver
[    1.093372] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.093377] ohci-pci: OHCI PCI platform driver
[    1.093386] ohci-platform: OHCI generic platform driver
[    1.093393] uhci_hcd: USB Universal Host Controller Interface driver
[    1.093429] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    1.096198] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.096203] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.096385] mousedev: PS/2 mouse device common for all mice
[    1.096712] rtc_cmos 00:02: RTC can wake from S4
[    1.096828] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.096856] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.096909] device-mapper: uevent: version 1.0.3
[    1.096964] device-mapper: ioctl: 4.29.0-ioctl (2014-10-28) initialised: dm-devel@redhat.com
[    1.096975] Intel P-state driver initializing.
[    1.097102] ledtrig-cpu: registered to indicate activity on CPUs
[    1.097668] PCCT header not found.
[    1.097669] ACPI PCC probe failed.
[    1.097802] TCP: cubic registered
[    1.097874] NET: Registered protocol family 10
[    1.098078] NET: Registered protocol family 17
[    1.098087] Key type dns_resolver registered
[    1.098383] Loading compiled-in X.509 certificates
[    1.098983] Loaded X.509 cert 'Magrathea: Glacier signing key: 7271576a09d86ef244371b0633e47abb75b89d'
[    1.098993] registered taskstats version 1
[    1.100657] Key type trusted registered
[    1.103899] Key type encrypted registered
[    1.103904] AppArmor: AppArmor sha1 policy hashing enabled
[    1.103906] ima: No TPM chip found, activating TPM-bypass!
[    1.103941] evm: HMAC attrs: 0x1
[    1.104811]   Magic number: 3:788:452
[    1.104921] rtc_cmos 00:02: setting system clock to 2015-02-28 22:25:45 UTC (1425162345)
[    1.105018] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.105020] EDD information not available.
[    1.105093] PM: Hibernation image not present or could not be loaded.
[    1.388778] usb 5-1: new high-speed USB device number 2 using ehci-pci
[    1.404763] usb 6-1: new high-speed USB device number 2 using ehci-pci
[    1.521396] usb 5-1: New USB device found, idVendor=8087, idProduct=0024
[    1.521398] usb 5-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.521772] hub 5-1:1.0: USB hub found
[    1.522018] hub 5-1:1.0: 6 ports detected
[    1.528628] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.528734] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.536909] ata4.00: ATAPI: TSSTcorp CDDVDW SH-S223B, SB01, max UDMA/100
[    1.536993] usb 6-1: New USB device found, idVendor=8087, idProduct=0024
[    1.536995] usb 6-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.537012] ata3.00: ATA-7: SAMSUNG HD103SI, 1AG01118, max UDMA7
[    1.537014] ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.537304] hub 6-1:1.0: USB hub found
[    1.537460] hub 6-1:1.0: 8 ports detected
[    1.544909] ata3.00: configured for UDMA/133
[    1.552755] ata4.00: configured for UDMA/100
[    1.792543] usb 5-1.1: new high-speed USB device number 3 using ehci-pci
[    1.808534] usb 6-1.1: new low-speed USB device number 3 using ehci-pci
[    1.868309] tsc: Refined TSC clocksource calibration: 3310.800 MHz
[    1.886581] usb 5-1.1: New USB device found, idVendor=058f, idProduct=6377
[    1.886586] usb 5-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.886589] usb 5-1.1: Product: Mass Storage Device
[    1.886591] usb 5-1.1: Manufacturer: Generic
[    1.886594] usb 5-1.1: SerialNumber: 920321111113
[    1.906558] usb 6-1.1: New USB device found, idVendor=046d, idProduct=c312
[    1.906563] usb 6-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.906566] usb 6-1.1: Product: USB Multimedia Keyboard
[    1.906568] usb 6-1.1: Manufacturer: BTC
[    1.956388] usb 5-1.3: new full-speed USB device number 4 using ehci-pci
[    1.976365] usb 6-1.2: new low-speed USB device number 4 using ehci-pci
[    2.058918] usb 5-1.3: New USB device found, idVendor=10f5, idProduct=0242
[    2.058923] usb 5-1.3: New USB device strings: Mfr=3, Product=4, SerialNumber=0
[    2.058926] usb 5-1.3: Product: Turtle Beach PX3 (PC)
[    2.058928] usb 5-1.3: Manufacturer: Turtle Beach
[    2.071402] usb 6-1.2: New USB device found, idVendor=15d9, idProduct=0a41
[    2.071407] usb 6-1.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.071409] usb 6-1.2: Product: USB Mouse
[    2.080088] ata2.00: failed to resume link (SControl 0)
[    2.132222] usb 5-1.4: new high-speed USB device number 5 using ehci-pci
[    2.144204] usb 6-1.7: new full-speed USB device number 5 using ehci-pci
[    2.228778] usb 5-1.4: New USB device found, idVendor=057c, idProduct=8501
[    2.228783] usb 5-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.228786] usb 5-1.4: Product: FRITZ!WLAN USB Stick N v2
[    2.228789] usb 5-1.4: Manufacturer: AVM Berlin
[    2.228791] usb 5-1.4: SerialNumber: 2465114061E1
[    2.237144] usb 6-1.7: New USB device found, idVendor=0cf3, idProduct=3005
[    2.237148] usb 6-1.7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.399802] ata1.01: failed to resume link (SControl 0)
[    2.555718] ata1.00: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.555733] ata1.01: SATA link down (SStatus 0 SControl 0)
[    2.564030] ata1.00: ATA-9: SAMSUNG SSD 830 Series, CXM03B1Q, max UDMA/133
[    2.564035] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.572014] ata1.00: configured for UDMA/133
[    2.572196] scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG SSD 830  3B1Q PQ: 0 ANSI: 5
[    2.572538] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.572547] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[    2.572942] sd 0:0:0:0: [sda] Write Protect is off
[    2.572945] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.573034] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.574396]  sda: sda1 sda2
[    2.574566] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.867662] Switched to clocksource tsc
[    3.107230] ata2.01: failed to resume link (SControl 0)
[    3.118390] ata2.00: SATA link down (SStatus 4 SControl 0)
[    3.118403] ata2.01: SATA link down (SStatus 0 SControl 0)
[    3.118631] scsi 2:0:0:0: Direct-Access     ATA      SAMSUNG HD103SI  1118 PQ: 0 ANSI: 5
[    3.118954] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    3.118956] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    3.119106] sd 2:0:0:0: [sdb] Write Protect is off
[    3.119115] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.119220] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.119671] scsi 3:0:0:0: CD-ROM            TSSTcorp CDDVDW SH-S223B  SB01 PQ: 0 ANSI: 5
[    3.129234] sr 3:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.129236] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.129363] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    3.129432] sr 3:0:0:0: Attached scsi generic sg2 type 5
[    3.163184]  sdb: sdb1 sdb2 sdb3 < sdb5 sdb6 >
[    3.164062] sd 2:0:0:0: [sdb] Attached SCSI disk
[    3.164380] Freeing unused kernel memory: 1408K (ffffffff81d24000 - ffffffff81e84000)
[    3.164382] Write protecting the kernel read-only data: 12288k
[    3.164554] Freeing unused kernel memory: 152K (ffff8800017da000 - ffff880001800000)
[    3.164599] Freeing unused kernel memory: 244K (ffff880001bc3000 - ffff880001c00000)
[    3.172504] systemd-udevd[140]: starting version 208
[    3.172814] random: systemd-udevd urandom read with 17 bits of entropy available
[    3.182536] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.182555] pps_core: module verification failed: signature and/or  required key missing - tainting kernel
[    3.182689] pps_core: LinuxPPS API ver. 1 registered
[    3.182690] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    3.182720] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.182919] PTP clock support registered
[    3.183405] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.183471] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.183718] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.183730] hidraw: raw HID events driver (C) Jiri Kosina
[    3.183771] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184036] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184219] ahci 0000:05:00.0: version 3.0
[    3.184284] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184349] ahci 0000:05:00.0: AHCI 0001.0100 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    3.184351] ahci 0000:05:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
[    3.184523] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
[    3.184524] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
[    3.184637] usb-storage 5-1.1:1.0: USB Mass Storage device detected
[    3.184700] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    3.184753] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184770] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184783] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184894] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.184898] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.185227] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    3.185353] r8169 0000:08:02.0 (unnamed net_device) (uninitialized): not PCI Express
[    3.185360] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.185676] r8169 0000:08:02.0 eth0: RTL8169sc/8110sc at 0xffffc90004e76000, f4:6d:04:af:e4:e3, XID 18000000 IRQ 16
[    3.185678] r8169 0000:08:02.0 eth0: jumbo features [frames: 7152 bytes, tx checksumming: ok]
[    3.185947] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.186271] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.186322] scsi host5: usb-storage 5-1.1:1.0
[    3.186405] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.186407] usbcore: registered new interface driver usb-storage
[    3.186442] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.186558] usbcore: registered new interface driver uas
[    3.186605] scsi host4: ahci
[    3.186671] scsi host6: ahci
[    3.186713] ata5: SATA max UDMA/133 abar m512@0xfb410000 port 0xfb410100 irq 19
[    3.186717] ata6: SATA max UDMA/133 abar m512@0xfb410000 port 0xfb410180 irq 19
[    3.186855] ahci 0000:09:00.0: AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    3.186857] ahci 0000:09:00.0: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs 
[    3.187073] scsi host7: ahci
[    3.187174] scsi host8: ahci
[    3.187214] ata7: SATA max UDMA/133 abar m512@0xfb110000 port 0xfb110100 irq 42
[    3.187218] ata8: SATA max UDMA/133 abar m512@0xfb110000 port 0xfb110180 irq 42
[    3.187359] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.191520] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.191521] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.199607] usbcore: registered new interface driver usbhid
[    3.199609] usbhid: USB HID core driver
[    3.199883] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.199977] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.200006] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.200041] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[    3.200062] input: BTC USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.1/6-1.1:1.0/0003:046D:C312.0001/input/input5
[    3.247043] firewire_ohci 0000:08:03.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
[    3.255237] hid-generic 0003:046D:C312.0001: input,hidraw0: USB HID v1.10 Keyboard [BTC USB Multimedia Keyboard] on usb-0000:00:1d.0-1.1/input0
[    3.257517] input: BTC USB Multimedia Keyboard as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.1/6-1.1:1.1/0003:046D:C312.0002/input/input6
[    3.311291] hid-generic 0003:046D:C312.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [BTC USB Multimedia Keyboard] on usb-0000:00:1d.0-1.1/input1
[    3.315314] input: Turtle Beach Turtle Beach PX3 (PC) as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.3/5-1.3:1.3/0003:10F5:0242.0003/input/input7
[    3.371219] hid-generic 0003:10F5:0242.0003: input,hiddev0,hidraw2: USB HID v1.11 Device [Turtle Beach Turtle Beach PX3 (PC)] on usb-0000:00:1a.0-1.3/input3
[    3.371420] input: USB Mouse as /devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.2/6-1.2:1.0/0003:15D9:0A41.0004/input/input8
[    3.371692] hid-generic 0003:15D9:0A41.0004: input,hidraw3: USB HID v1.10 Mouse [USB Mouse] on usb-0000:00:1d.0-1.2/input0
[    3.446493] e1000e 0000:00:19.0 eth1: registered PHC clock
[    3.446496] e1000e 0000:00:19.0 eth1: (PCI Express:2.5GT/s:Width x1) f4:6d:04:af:ee:5c
[    3.446497] e1000e 0000:00:19.0 eth1: Intel(R) PRO/1000 Network Connection
[    3.446535] e1000e 0000:00:19.0 eth1: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
[    3.502784] ata5: SATA link down (SStatus 0 SControl 300)
[    3.502833] ata6: SATA link down (SStatus 0 SControl 300)
[    3.514736] ata8: SATA link down (SStatus 0 SControl 300)
[    3.514775] ata7: SATA link down (SStatus 0 SControl 300)
[    3.746610] firewire_core 0000:08:03.0: created device fw0: GUID 001e8c00004b6f23, S400
[    4.183135] scsi 5:0:0:0: Direct-Access     Generic  USB SD Reader    1.00 PQ: 0 ANSI: 0
[    4.183859] scsi 5:0:0:1: Direct-Access     Generic  USB CF Reader    1.01 PQ: 0 ANSI: 0
[    4.184608] scsi 5:0:0:2: Direct-Access     Generic  USB SM Reader    1.02 PQ: 0 ANSI: 0
[    4.185359] scsi 5:0:0:3: Direct-Access     Generic  USB MS Reader    1.03 PQ: 0 ANSI: 0
[    4.185581] sd 5:0:0:0: Attached scsi generic sg3 type 0
[    4.185746] sd 5:0:0:1: Attached scsi generic sg4 type 0
[    4.185925] sd 5:0:0:2: Attached scsi generic sg5 type 0
[    4.186079] sd 5:0:0:3: Attached scsi generic sg6 type 0
[    4.204606] sd 5:0:0:0: [sdc] Attached SCSI removable disk
[    4.205213] sd 5:0:0:1: [sdd] Attached SCSI removable disk
[    4.205961] sd 5:0:0:2: [sde] Attached SCSI removable disk
[    4.206823] sd 5:0:0:3: [sdf] Attached SCSI removable disk
[    5.004360] EXT4-fs (sdb6): INFO: recovery required on readonly filesystem
[    5.004362] EXT4-fs (sdb6): write access will be enabled during recovery
[    5.352299] EXT4-fs (sdb6): recovery complete
[    5.363236] EXT4-fs (sdb6): mounted filesystem with ordered data mode. Opts: (null)
[    5.907297] random: nonblocking pool is initialized
[    7.638741] init: plymouth-upstart-bridge main process (251) killed by TERM signal
[   14.043760] systemd-udevd[390]: starting version 208
[   15.059941] EXT4-fs (sdb6): re-mounted. Opts: errors=remount-ro
[   17.000814] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.000849] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.008759] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.008985] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.SBRG.GPBX) (20141107/utaddress-258)
[   17.008988] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   17.008989] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.SBRG.GPBX) (20141107/utaddress-258)
[   17.008991] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   17.008992] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.SBRG.GPBX) (20141107/utaddress-258)
[   17.008994] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   17.008995] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   17.063749] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.070184] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.070187] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.070433] wmi: Mapper loaded
[   17.186312] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.226167] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.322143] lp: driver loaded but no devices found
[   17.344843] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351152] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351156] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351172] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351175] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351199] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351234] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.351236] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.353802] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   17.360799] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.561569] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.562656] ppdev: user-space parallel port driver
[   17.660720] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.660773] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.725613] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.725615] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.745089] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   17.957456] sr 3:0:0:0: [sr0] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   17.957462] sr 3:0:0:0: [sr0] Sense Key : Illegal Request [current]
[   17.957467] sr 3:0:0:0: [sr0] Add. Sense: Illegal mode for this track
[   17.957469] sr 3:0:0:0: [sr0] CDB: 
[   17.957471] Read(10): 28 00 00 04 00 6e 00 00 02 00
[   17.957481] blk_update_request: I/O error, dev sr0, sector 1049016
[   17.965425] sr 3:0:0:0: [sr0] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   17.965429] sr 3:0:0:0: [sr0] Sense Key : Illegal Request [current]
[   17.965432] sr 3:0:0:0: [sr0] Add. Sense: Illegal mode for this track
[   17.965434] sr 3:0:0:0: [sr0] CDB: 
[   17.965436] Read(10): 28 00 00 04 00 6e 00 00 01 00
[   17.965445] blk_update_request: I/O error, dev sr0, sector 1049016
[   17.965458] Buffer I/O error on dev sr0, logical block 262254, async page read
[   17.973417] sr 3:0:0:0: [sr0] FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[   17.973421] sr 3:0:0:0: [sr0] Sense Key : Illegal Request [current]
[   17.973424] sr 3:0:0:0: [sr0] Add. Sense: Illegal mode for this track
[   17.973427] sr 3:0:0:0: [sr0] CDB: 
[   17.973428] Read(10): 28 00 00 04 00 6f 00 00 01 00
[   17.973436] blk_update_request: I/O error, dev sr0, sector 1049020
[   17.973449] Buffer I/O error on dev sr0, logical block 262255, async page read
[   18.022232] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.022259] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.164022] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.164072] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.419205] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.419232] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.482285] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.482306] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.502359] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.504048] [drm] Initialized drm 1.1.0 20060810
[   18.542170] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.542171] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.554363] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.554366] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.554552] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.554556] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.726225] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.726238] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.734212] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.734275] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.734300] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.734753] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.935158] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.935494] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.947774] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.947792] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.947795] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   18.947797] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.159984] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.160009] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.249835] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.249837] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.254133] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.254135] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.254138] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.254140] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.259358] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.401608] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.401615] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.436562] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.437735] Bluetooth: Core ver 2.20
[   19.437746] NET: Registered protocol family 31
[   19.437747] Bluetooth: HCI device and connection manager initialized
[   19.437750] Bluetooth: HCI socket layer initialized
[   19.437752] Bluetooth: L2CAP socket layer initialized
[   19.437756] Bluetooth: SCO socket layer initialized
[   19.437821] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.490348] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.490350] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.490360] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.490363] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.497967] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.511150] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.511151] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.511566] usbcore: registered new interface driver btusb
[   19.520852] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.535534] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.535544] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.535563] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.535565] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.700257] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.700304] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.712259] audit: type=1400 audit(1425162364.120:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=451 comm="apparmor_parser"
[   19.712264] audit: type=1400 audit(1425162364.120:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=451 comm="apparmor_parser"
[   19.712266] audit: type=1400 audit(1425162364.120:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=451 comm="apparmor_parser"
[   19.712272] audit: type=1400 audit(1425162364.120:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=467 comm="apparmor_parser"
[   19.712276] audit: type=1400 audit(1425162364.120:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=467 comm="apparmor_parser"
[   19.712279] audit: type=1400 audit(1425162364.120:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=467 comm="apparmor_parser"
[   19.712286] audit: type=1400 audit(1425162364.120:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=571 comm="apparmor_parser"
[   19.712290] audit: type=1400 audit(1425162364.120:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=571 comm="apparmor_parser"
[   19.712292] audit: type=1400 audit(1425162364.120:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=571 comm="apparmor_parser"
[   19.830305] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.830326] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.830972] snd_hda_intel 0000:01:00.1: Disabling MSI
[   19.830979] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
[   19.866927] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.879879] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   19.995704] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.026118] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.026131] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.026145] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.026150] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.026451] AVX version of gcm_enc/dec engaged.
[   20.026452] AES CTR mode by8 optimization enabled
[   20.067385] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.067672] asus_wmi: ASUS WMI generic driver loaded
[   20.077164] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.077167] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.077222] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.077246] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.219377] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.231712] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.231763] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.233074] sound hdaudioC0D0: autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[   20.233076] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   20.233077] sound hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[   20.233078] sound hdaudioC0D0:    mono: mono_out=0x0
[   20.233079] sound hdaudioC0D0:    dig-out=0x11/0x1e
[   20.233080] sound hdaudioC0D0:    inputs:
[   20.233082] sound hdaudioC0D0:      Front Mic=0x19
[   20.233083] sound hdaudioC0D0:      Rear Mic=0x18
[   20.233084] sound hdaudioC0D0:      Line=0x1a
[   20.245880] usbcore: registered new interface driver snd-usb-audio
[   20.311069] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.311413] asus_wmi: Initialization: 0x0
[   20.311429] asus_wmi: BIOS WMI version: 0.9
[   20.311454] asus_wmi: SFUN value: 0x0
[   20.311695] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input9
[   20.312158] asus_wmi: Disabling ACPI video driver
[   20.320155] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.320158] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.320212] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.320214] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.463470] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
[   20.463528] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   20.463640] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
[   20.463834] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[   20.673975] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.674030] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.674056] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   20.674079] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.093821] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.093823] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.093831] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.093842] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.221168] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.221206] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.221224] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.221239] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.674440] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.674491] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.674515] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.674539] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.684310] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.910407] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.910409] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.910431] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.910446] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   23.955660] init: failsafe main process (783) killed by TERM signal
[   24.041781] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.041839] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.041858] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.041861] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.151817] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.299017] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.299051] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.299069] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.299104] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.567080] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.567101] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.567119] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.567120] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.567430] intel_rapl: Found RAPL domain package
[   24.567432] intel_rapl: Found RAPL domain core
[   24.670427] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   24.672677] cfg80211: Calling CRDA to update world regulatory domain
[   25.445873] audit: type=1400 audit(1425162369.860:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session" pid=925 comm="apparmor_parser"
[   25.445878] audit: type=1400 audit(1425162369.860:12): apparmor="STATUS" operation="profile_load" name="chromium" pid=925 comm="apparmor_parser"
[   25.446921] audit: type=1400 audit(1425162369.860:13): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=925 comm="apparmor_parser"
[   25.446924] audit: type=1400 audit(1425162369.860:14): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=925 comm="apparmor_parser"
[   25.446927] audit: type=1400 audit(1425162369.860:15): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=925 comm="apparmor_parser"
[   25.447590] audit: type=1400 audit(1425162369.860:16): apparmor="STATUS" operation="profile_load" name="/usr/bin/freshclam" pid=925 comm="apparmor_parser"
[   25.450138] audit: type=1400 audit(1425162369.864:17): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=925 comm="apparmor_parser"
[   25.450141] audit: type=1400 audit(1425162369.864:18): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=925 comm="apparmor_parser"
[   25.450143] audit: type=1400 audit(1425162369.864:19): apparmor="STATUS" operation="profile_load" name="pxgsettings" pid=925 comm="apparmor_parser"
[   25.450145] audit: type=1400 audit(1425162369.864:20): apparmor="STATUS" operation="profile_load" name="sanitized_helper" pid=925 comm="apparmor_parser"
[   25.495179] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   25.496199] cfg80211: World regulatory domain updated:
[   25.496202] cfg80211:  DFS Master region: unset
[   25.496203] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   25.496205] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   25.496206] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   25.496207] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   25.496208] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   25.496209] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   25.635497] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   25.726691] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   25.855918] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   26.058030] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   26.129556] usb 5-1.4: reset high-speed USB device number 5 using ehci-pci
[   26.223832] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 5592, rev 0222 detected
[   26.251930] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 000f detected
[   26.573844] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   26.575166] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   26.575479] usbcore: registered new interface driver rt2800usb
[   26.576905] rt2800usb 5-1.4:1.0 wlan1: renamed from wlan0
[   26.593210] systemd-udevd[1014]: renamed network interface wlan0 to wlan1
[   27.237161] nvidia: module license 'NVIDIA' taints kernel.
[   27.237164] Disabling lock debugging due to kernel taint
[   27.241977] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[   27.242382] [drm] Initialized nvidia-drm 0.0.0 20150116 for 0000:01:00.0 on minor 0
[   27.242388] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  346.47  Thu Feb 19 18:56:03 PST 2015
[   28.012836] init: cups main process (1001) killed by HUP signal
[   28.012843] init: cups main process ended, respawning
[   28.488117] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   28.488725] Bluetooth: RFCOMM TTY layer initialized
[   28.488732] Bluetooth: RFCOMM socket layer initialized
[   28.488743] Bluetooth: RFCOMM ver 1.11
[   29.066176] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   29.066575] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   29.066577] Bluetooth: BNEP filters: protocol multicast
[   29.066580] Bluetooth: BNEP socket layer initialized
[   29.980759] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   33.784170] audit_printk_skb: 33 callbacks suppressed
[   33.784173] audit: type=1400 audit(1425162378.204:32): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cups-browsed" pid=1446 comm="apparmor_parser"
[   34.472008] init: samba-ad-dc main process (1391) terminated with status 1
[   34.573963] systemd-logind[1379]: Watching system buttons on /dev/input/event1 (Power Button)
[   34.574003] systemd-logind[1379]: Watching system buttons on /dev/input/event0 (Power Button)
[   34.574015] systemd-logind[1379]: New seat seat0.
[   35.340945] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   35.342111] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
[   35.469355] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.29
[   35.470222] ieee80211 phy0: rt2800usb_write_firmware: Info - Firmware loading not required - NIC in AutoRun mode
[   35.762830] IPv6: ADDRCONF(NETDEV_UP): wlan1: link is not ready
[   35.773038] r8169 0000:08:02.0 eth0: link down
[   35.773054] r8169 0000:08:02.0 eth0: link down
[   35.773069] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   36.452310] vboxdrv: Found 4 processor cores.
[   36.452868] vboxdrv: fAsync=0 offMin=0x201 offMax=0x11fa
[   36.452991] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[   36.452993] vboxdrv: Successfully loaded version 4.3.18_Ubuntu (interface 0x001a0008).
[   36.655610] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   36.655896] vboxpci: IOMMU not found (not registered)
[   39.815463] wlan1: authenticate with 24:65:11:d0:89:40
[   39.877288] wlan1: send auth to 24:65:11:d0:89:40 (try 1/3)
[   39.879790] wlan1: authenticated
[   39.880495] wlan1: associate with 24:65:11:d0:89:40 (try 1/3)
[   39.886058] wlan1: RX AssocResp from 24:65:11:d0:89:40 (capab=0x431 status=0 aid=2)
[   39.896497] wlan1: associated
[   39.896517] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready
[   39.896554] cfg80211: Calling CRDA for country: DE
[   39.961229] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   39.973543] Request for unknown module key 'Magrathea: Glacier signing key: 007271576a09d86ef244371b0633e47abb75b89d' err -11
[   39.977432] cfg80211: Regulatory domain changed to country: DE
[   39.977434] cfg80211:  DFS Master region: unset
[   39.977435] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   39.977437] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   39.977438] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   39.977439] cfg80211:   (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
[   39.977440] cfg80211:   (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm), (0 s)
[   39.977441] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   40.289231] systemd-logind[1379]: Failed to start unit user@111.service: Unknown unit: user@111.service
[   40.289236] systemd-logind[1379]: Failed to start user service: Unknown unit: user@111.service
[   40.291936] systemd-logind[1379]: New session c1 of user lightdm.
[   40.291948] systemd-logind[1379]: Linked /tmp/.X11-unix/X0 to /run/user/111/X11-display.
[   56.780729] audit: type=1400 audit(1425158802.658:33): apparmor="STATUS" operation="profile_replace" name="/usr/lib/cups/backend/cups-pdf" pid=2554 comm="apparmor_parser"
[   56.780734] audit: type=1400 audit(1425158802.658:34): apparmor="STATUS" operation="profile_replace" name="/usr/sbin/cupsd" pid=2554 comm="apparmor_parser"
[   56.796771] audit: type=1400 audit(1425158802.674:35): apparmor="STATUS" operation="profile_replace" name="third_party" pid=2554 comm="apparmor_parser"
[   87.175164] systemd-logind[1379]: Failed to start unit user@1000.service: Unknown unit: user@1000.service
[   87.175170] systemd-logind[1379]: Failed to start user service: Unknown unit: user@1000.service
[   87.177898] systemd-logind[1379]: New session c2 of user imho.
[   87.177911] systemd-logind[1379]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
[   88.367095] systemd-logind[1379]: New session c3 of user lightdm.
[  101.243243] systemd-logind[1379]: New session c4 of user imho.
[  161.820741] EXT4-fs (sdb3): unable to read superblock
[  161.820863] EXT4-fs (sdb3): unable to read superblock
[  161.820974] EXT4-fs (sdb3): unable to read superblock