ubuntuusers.de

dmesg

Autor:
JakobDev
Datum:
10. Oktober 2016 18:07
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
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
Benutzer@Pluto:~$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.0-38-generic (buildd@lgw01-58) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2) ) #57-Ubuntu SMP Tue Sep 6 15:42:33 UTC 2016 (Ubuntu 4.4.0-38.57-generic 4.4.19)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-38-generic root=UUID=c3d5a8f7-89a3-479f-8e7e-20c22f639849 ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: Legacy x87 FPU detected.
[    0.000000] x86/fpu: Using 'lazy' FPU context switches.
[    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-0x000000001effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000001f000000-0x000000001f0fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000001f100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000200fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020100000-0x000000007813efff] usable
[    0.000000] BIOS-e820: [mem 0x000000007813f000-0x000000007873efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007873f000-0x000000007883efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007883f000-0x000000007887efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007887f000-0x0000000079452fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000079453000-0x0000000079d52fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000079d53000-0x0000000079ffffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007a000000-0x000000007a7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007ae00000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed01000-0x00000000fed01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed03000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed0c000-0x00000000fed0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1cfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fef00000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000017fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 80MJ/Lenovo ideapad 1, BIOS CCCN12WW(V1.01) 03/23/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x180000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 07C000000 mask FFC000000 uncachable
[    0.000000]   3 base 07B000000 mask FFF000000 uncachable
[    0.000000]   4 base 07AE00000 mask FFFE00000 uncachable
[    0.000000]   5 base 100000000 mask F80000000 write-back
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0x7a000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[    0.000000] BRK [0x02201000, 0x02201fff] PGTABLE
[    0.000000] BRK [0x02202000, 0x02202fff] PGTABLE
[    0.000000] BRK [0x02203000, 0x02203fff] PGTABLE
[    0.000000] BRK [0x02204000, 0x02204fff] PGTABLE
[    0.000000] BRK [0x02205000, 0x02205fff] PGTABLE
[    0.000000] BRK [0x02206000, 0x02206fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x338fa000-0x35c74fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x000000007887E120 000094 (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 0x000000007887A000 00010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 0x000000007886C000 008AA3 (v02 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 0x0000000078809000 000040
[    0.000000] ACPI: UEFI 0x000000007887B000 000042 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: LPIT 0x0000000078878000 000104 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 0x0000000078876000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x0000000078869000 0011E3 (v01 INSYDE DptfTab  00000003 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x0000000078867000 000290 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 0x000000007887D000 000236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 0x0000000078879000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x0000000078875000 0005AA (v01 INSYDE CpuDptf  00000003 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x0000000078868000 00017A (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 0x0000000078877000 000084 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x000000007886B000 000763 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 0x0000000078866000 000172 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 0x0000000078865000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000017fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x17fff5000-0x17fff9fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000017fffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001effffff]
[    0.000000]   node   0: [mem 0x000000001f100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020100000-0x000000007813efff]
[    0.000000]   node   0: [mem 0x000000007887f000-0x0000000079452fff]
[    0.000000]   node   0: [mem 0x0000000079d53000-0x0000000079ffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000017fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000017fffffff]
[    0.000000] On node 0 totalpages: 1019229
[    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: 7671 pages used for memmap
[    0.000000]   DMA32 zone: 490944 pages, LIFO batch:31
[    0.000000]   Normal zone: 8192 pages used for memmap
[    0.000000]   Normal zone: 524288 pages, LIFO batch:31
[    0.000000] x86/hpet: Will disable the HPET for this platform because it's not reliable
[    0.000000] Reserving Intel graphics stolen memory at 0x7b000000-0x7effffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-86
[    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: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 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 0x1f000000-0x1f0fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x200fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7813f000-0x7873efff]
[    0.000000] PM: Registered nosave memory: [mem 0x7873f000-0x7883efff]
[    0.000000] PM: Registered nosave memory: [mem 0x7883f000-0x7887efff]
[    0.000000] PM: Registered nosave memory: [mem 0x79453000-0x79d52fff]
[    0.000000] PM: Registered nosave memory: [mem 0x7a000000-0x7a7fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7a800000-0x7adfffff]
[    0.000000] PM: Registered nosave memory: [mem 0x7ae00000-0x7fffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xe3ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe4000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed02000-0xfed02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed03000-0xfed03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed0c000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1cfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1d000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffbfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
[    0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 33 pages/cpu @ffff88017fc00000 s98008 r8192 d28968 u524288
[    0.000000] pcpu-alloc: s98008 r8192 d28968 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: 1003281
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-38-generic root=UUID=c3d5a8f7-89a3-479f-8e7e-20c22f639849 ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3889628K/4076916K available (8404K kernel code, 1283K rwdata, 3944K rodata, 1480K init, 1292K bss, 187288K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:16640 nr_irqs:1024 16
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Maximum core-clock to bus-clock ratio: 0x1a
[    0.000000] Resolved frequency ID: 0, frequency: 83200 KHz
[    0.000000] TSC runs at 2163200 KHz
[    0.000000] lapic_timer_frequency = 332800
[    0.000000] tsc: Detected 2163.200 MHz processor
[    0.000038] Calibrating delay loop (skipped), value calculated using timer frequency.. 4326.40 BogoMIPS (lpj=8652800)
[    0.000043] pid_max: default: 32768 minimum: 301
[    0.000055] ACPI: Core revision 20150930
[    0.020453] ACPI: 7 ACPI AML tables successfully acquired and loaded
[    0.020495] Security Framework initialized
[    0.020499] Yama: becoming mindful.
[    0.020527] AppArmor: AppArmor initialized
[    0.021008] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.022759] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.023568] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.023584] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.023949] Initializing cgroup subsys io
[    0.023959] Initializing cgroup subsys memory
[    0.023973] Initializing cgroup subsys devices
[    0.023980] Initializing cgroup subsys freezer
[    0.023985] Initializing cgroup subsys net_cls
[    0.023990] Initializing cgroup subsys perf_event
[    0.023996] Initializing cgroup subsys net_prio
[    0.024003] Initializing cgroup subsys hugetlb
[    0.024008] Initializing cgroup subsys pids
[    0.024058] CPU: Physical Processor ID: 0
[    0.024061] CPU: Processor Core ID: 0
[    0.024067] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.024069] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.028823] mce: CPU supports 6 MCE banks
[    0.028833] CPU0: Thermal monitoring handled by SMI
[    0.028838] process: using mwait in idle threads
[    0.028845] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.028848] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.029189] Freeing SMP alternatives memory: 32K (ffffffff820b4000 - ffffffff820bc000)
[    0.034627] ftrace: allocating 32006 entries in 126 pages
[    0.051896] smpboot: Max logical packages: 2
[    0.051903] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.052880] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.092585] TSC deadline timer enabled
[    0.092591] smpboot: CPU0: Intel(R) Celeron(R) CPU  N2840  @ 2.16GHz (family: 0x6, model: 0x37, stepping: 0x8)
[    0.092619] Performance Events: PEBS fmt2+, 8-deep LBR, Silvermont events, full-width counters, Intel PMU driver.
[    0.092635] ... version:                3
[    0.092637] ... bit width:              40
[    0.092639] ... generic registers:      2
[    0.092641] ... value mask:             000000ffffffffff
[    0.092643] ... max period:             000000ffffffffff
[    0.092645] ... fixed-purpose events:   3
[    0.092647] ... event mask:             0000000700000003
[    0.094069] x86: Booting SMP configuration:
[    0.094076] .... node  #0, CPUs:      #1
[    0.098909] CPU1: Thermal monitoring handled by SMI
[    0.100992] x86: Booted up 1 node, 2 CPUs
[    0.101000] smpboot: Total of 2 processors activated (8652.80 BogoMIPS)
[    0.101132] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.101729] devtmpfs: initialized
[    0.107973] evm: security.selinux
[    0.107976] evm: security.SMACK64
[    0.107979] evm: security.SMACK64EXEC
[    0.107980] evm: security.SMACK64TRANSMUTE
[    0.107982] evm: security.SMACK64MMAP
[    0.107984] evm: security.ima
[    0.107986] evm: security.capability
[    0.108100] PM: Registering ACPI NVS region [mem 0x7873f000-0x7883efff] (1048576 bytes)
[    0.108251] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.108398] pinctrl core: initialized pinctrl subsystem
[    0.108594] RTC time: 10:14:41, date: 10/10/16
[    0.108854] NET: Registered protocol family 16
[    0.121000] cpuidle: using governor ladder
[    0.132980] cpuidle: using governor menu
[    0.132987] PCCT header not found.
[    0.133112] ACPI: bus type PCI registered
[    0.133116] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.133249] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
[    0.133254] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
[    0.133266] PCI: Using configuration type 1 for base access
[    0.145725] ACPI: Added _OSI(Module Device)
[    0.145730] ACPI: Added _OSI(Processor Device)
[    0.145733] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.145735] ACPI: Added _OSI(Processor Aggregator Device)
[    0.157482] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.158334] ACPI: Dynamic OEM Table Load:
[    0.158347] ACPI: SSDT 0xFFFF88017B017000 000440 (v01 PmRef  Cpu0Ist  00003000 INTL 20130117)
[    0.159338] ACPI: Dynamic OEM Table Load:
[    0.159349] ACPI: SSDT 0xFFFF88017B017800 000433 (v01 PmRef  Cpu0Cst  00003001 INTL 20130117)
[    0.160758] ACPI: Dynamic OEM Table Load:
[    0.160768] ACPI: SSDT 0xFFFF88017A5BB800 00015F (v01 PmRef  ApIst    00003000 INTL 20130117)
[    0.161736] ACPI: Dynamic OEM Table Load:
[    0.161745] ACPI: SSDT 0xFFFF88017A5AE600 00008D (v01 PmRef  ApCst    00003000 INTL 20130117)
[    0.162935] ACPI : EC: EC started
[    0.163504] ACPI: Interpreter enabled
[    0.163516] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
[    0.163526] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.163555] ACPI: (supports S0 S3 S4 S5)
[    0.163558] ACPI: Using IOAPIC for interrupt routing
[    0.163615] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.679407] ACPI: Power Resource [USBC] (on)
[    0.684396] ACPI: Power Resource [PLPE] (on)
[    0.684693] ACPI: Power Resource [PLPE] (on)
[    0.687448] ACPI: Power Resource [FN00] (off)
[    0.688509] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.688519] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.689565] acpi PNP0A08:00: _OSC: platform does not support [PME]
[    0.690111] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug AER PCIeCapability]
[    0.690133] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.690681] PCI host bridge to bus 0000:00
[    0.690687] pci_bus 0000:00: root bus resource [io  0x0070-0x0077]
[    0.690691] pci_bus 0000:00: root bus resource [io  0x0000-0x006f window]
[    0.690695] pci_bus 0000:00: root bus resource [io  0x0078-0x0cf7 window]
[    0.690699] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.690703] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.690707] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.690711] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.690714] pci_bus 0000:00: root bus resource [mem 0x80000000-0x909ffffe window]
[    0.690719] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.690732] pci 0000:00:00.0: [8086:0f00] type 00 class 0x060000
[    0.690907] pci 0000:00:02.0: [8086:0f31] type 00 class 0x030000
[    0.690928] pci 0000:00:02.0: reg 0x10: [mem 0x90000000-0x903fffff]
[    0.690941] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
[    0.690953] pci 0000:00:02.0: reg 0x20: [io  0x3050-0x3057]
[    0.691121] pci 0000:00:13.0: [8086:0f23] type 00 class 0x010601
[    0.691151] pci 0000:00:13.0: reg 0x10: [io  0x3048-0x304f]
[    0.691162] pci 0000:00:13.0: reg 0x14: [io  0x305c-0x305f]
[    0.691172] pci 0000:00:13.0: reg 0x18: [io  0x3040-0x3047]
[    0.691183] pci 0000:00:13.0: reg 0x1c: [io  0x3058-0x305b]
[    0.691193] pci 0000:00:13.0: reg 0x20: [io  0x3020-0x303f]
[    0.691204] pci 0000:00:13.0: reg 0x24: [mem 0x90914000-0x909147ff]
[    0.691244] pci 0000:00:13.0: PME# supported from D3hot
[    0.691383] pci 0000:00:14.0: [8086:0f35] type 00 class 0x0c0330
[    0.691412] pci 0000:00:14.0: reg 0x10: [mem 0x90900000-0x9090ffff 64bit]
[    0.691467] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.691567] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.691649] pci 0000:00:1a.0: [8086:0f18] type 00 class 0x108000
[    0.691690] pci 0000:00:1a.0: reg 0x10: [mem 0x90800000-0x908fffff]
[    0.691704] pci 0000:00:1a.0: reg 0x14: [mem 0x90700000-0x907fffff]
[    0.691795] pci 0000:00:1a.0: PME# supported from D0 D3hot
[    0.691939] pci 0000:00:1b.0: [8086:0f04] type 00 class 0x040300
[    0.691973] pci 0000:00:1b.0: reg 0x10: [mem 0x90910000-0x90913fff 64bit]
[    0.692038] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.692177] pci 0000:00:1c.0: [8086:0f48] type 01 class 0x060400
[    0.692241] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.692317] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.692388] pci 0000:00:1c.1: [8086:0f4a] type 01 class 0x060400
[    0.692452] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.692528] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.692599] pci 0000:00:1c.2: [8086:0f4c] type 01 class 0x060400
[    0.692663] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.692739] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.692813] pci 0000:00:1c.3: [8086:0f4e] type 01 class 0x060400
[    0.692877] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.692953] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.693033] pci 0000:00:1d.0: [8086:0f34] type 00 class 0x0c0320
[    0.693073] pci 0000:00:1d.0: reg 0x10: [mem 0x90915000-0x909153ff]
[    0.693176] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.693282] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.693354] pci 0000:00:1f.0: [8086:0f1c] type 00 class 0x060100
[    0.693567] pci 0000:00:1f.3: [8086:0f12] type 00 class 0x0c0500
[    0.693616] pci 0000:00:1f.3: reg 0x10: [mem 0x90916000-0x9091601f]
[    0.693689] pci 0000:00:1f.3: reg 0x20: [io  0x3000-0x301f]
[    0.693966] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.694101] pci 0000:02:00.0: [10ec:5229] type 00 class 0xff0000
[    0.694167] pci 0000:02:00.0: reg 0x10: [mem 0x90600000-0x90600fff]
[    0.694312] pci 0000:02:00.0: supports D1 D2
[    0.694316] pci 0000:02:00.0: PME# supported from D1 D2 D3hot
[    0.694387] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.701453] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.701461] pci 0000:00:1c.1:   bridge window [mem 0x90600000-0x906fffff]
[    0.701600] pci 0000:03:00.0: [10ec:8136] type 00 class 0x020000
[    0.701650] pci 0000:03:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.701683] pci 0000:03:00.0: reg 0x18: [mem 0x90504000-0x90504fff 64bit]
[    0.701707] pci 0000:03:00.0: reg 0x20: [mem 0x90500000-0x90503fff 64bit]
[    0.701794] pci 0000:03:00.0: supports D1 D2
[    0.701798] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.701917] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.709433] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.709440] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    0.709445] pci 0000:00:1c.2:   bridge window [mem 0x90500000-0x905fffff]
[    0.709543] pci 0000:04:00.0: [10ec:8179] type 00 class 0x028000
[    0.709585] pci 0000:04:00.0: reg 0x10: [io  0x1000-0x10ff]
[    0.709619] pci 0000:04:00.0: reg 0x18: [mem 0x90400000-0x90403fff 64bit]
[    0.709712] pci 0000:04:00.0: supports D1 D2
[    0.709716] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.709770] pci 0000:04:00.0: System wakeup disabled by ACPI
[    0.717434] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.717440] pci 0000:00:1c.3:   bridge window [io  0x1000-0x1fff]
[    0.717445] pci 0000:00:1c.3:   bridge window [mem 0x90400000-0x904fffff]
[    0.974101] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *7
[    0.974229] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.974354] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.974479] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.974604] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.974728] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.974853] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *7
[    0.974979] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *7
[    0.976049] ACPI: Enabled 5 GPEs in block 00 to 3F
[    0.976271] ACPI : EC: GPE = 0x18, I/O: command/status = 0x66, data = 0x62
[    0.976506] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.976511] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.976517] vgaarb: loaded
[    0.976520] vgaarb: bridge control possible 0000:00:02.0
[    0.976980] SCSI subsystem initialized
[    0.977068] libata version 3.00 loaded.
[    0.977113] ACPI: bus type USB registered
[    0.977152] usbcore: registered new interface driver usbfs
[    0.977171] usbcore: registered new interface driver hub
[    0.977202] usbcore: registered new device driver usb
[    0.977507] PCI: Using ACPI for IRQ routing
[    0.978883] PCI: pci_cache_line_size set to 64 bytes
[    0.978966] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
[    0.978970] e820: reserve RAM buffer [mem 0x1f000000-0x1fffffff]
[    0.978973] e820: reserve RAM buffer [mem 0x7813f000-0x7bffffff]
[    0.978976] e820: reserve RAM buffer [mem 0x79453000-0x7bffffff]
[    0.978979] e820: reserve RAM buffer [mem 0x7a000000-0x7bffffff]
[    0.979185] NetLabel: Initializing
[    0.979188] NetLabel:  domain hash size = 128
[    0.979190] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.979209] NetLabel:  unlabeled traffic allowed by default
[    0.979356] amd_nb: Cannot enumerate AMD northbridges
[    0.979379] clocksource: Switched to clocksource refined-jiffies
[    0.991000] AppArmor: AppArmor Filesystem Enabled
[    0.991129] pnp: PnP ACPI init
[    0.991230] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.991376] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.991382] system 00:01: [io  0x0400-0x047f] has been reserved
[    0.991386] system 00:01: [io  0x0500-0x05fe] has been reserved
[    0.991390] system 00:01: [io  0xfd40-0xfd7f] has been reserved
[    0.991395] system 00:01: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.991402] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.991587] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.991656] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.991776] pnp 00:04: Plug and Play ACPI device, IDs STU1104 PNP0f13 (active)
[    1.249625] system 00:05: [mem 0xe0000000-0xefffffff] could not be reserved
[    1.249632] system 00:05: [mem 0xfed01000-0xfed01fff] has been reserved
[    1.249636] system 00:05: [mem 0xfed03000-0xfed03fff] has been reserved
[    1.249640] system 00:05: [mem 0xfed04000-0xfed04fff] has been reserved
[    1.249644] system 00:05: [mem 0xfed0c000-0xfed0ffff] has been reserved
[    1.249648] system 00:05: [mem 0xfed08000-0xfed08fff] has been reserved
[    1.249653] system 00:05: [mem 0xfed1c000-0xfed1cfff] has been reserved
[    1.249657] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    1.249661] system 00:05: [mem 0xfef00000-0xfeffffff] has been reserved
[    1.249667] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.250343] pnp: PnP ACPI: found 6 devices
[    1.258674] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.258699] clocksource: Switched to clocksource acpi_pm
[    1.258725] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
[    1.258731] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[    1.258736] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000 add_align 100000
[    1.258746] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    1.258751] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
[    1.258773] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    1.258777] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    1.258782] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    1.258786] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    1.258791] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    1.258795] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    1.258800] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    1.258804] pci 0000:00:1c.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    1.258808] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    1.258812] pci 0000:00:1c.1: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    1.258823] pci 0000:00:1c.0: BAR 14: no space for [mem size 0x00200000]
[    1.258828] pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
[    1.258838] pci 0000:00:1c.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[    1.258842] pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.258851] pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]
[    1.258855] pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.258862] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
[    1.258867] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
[    1.258878] pci 0000:00:1c.1: BAR 15: no space for [mem size 0x00200000 64bit pref]
[    1.258882] pci 0000:00:1c.1: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.258888] pci 0000:00:1c.0: BAR 14: no space for [mem size 0x00200000]
[    1.258891] pci 0000:00:1c.0: BAR 14: failed to assign [mem size 0x00200000]
[    1.258900] pci 0000:00:1c.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[    1.258904] pci 0000:00:1c.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[    1.258909] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    1.258914] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    1.258925] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    1.258930] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
[    1.258936] pci 0000:00:1c.1:   bridge window [mem 0x90600000-0x906fffff]
[    1.258944] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    1.258948] pci 0000:00:1c.2:   bridge window [io  0x2000-0x2fff]
[    1.258954] pci 0000:00:1c.2:   bridge window [mem 0x90500000-0x905fffff]
[    1.258962] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    1.258967] pci 0000:00:1c.3:   bridge window [io  0x1000-0x1fff]
[    1.258972] pci 0000:00:1c.3:   bridge window [mem 0x90400000-0x904fffff]
[    1.258981] pci_bus 0000:00: resource 4 [io  0x0070-0x0077]
[    1.258985] pci_bus 0000:00: resource 5 [io  0x0000-0x006f window]
[    1.258989] pci_bus 0000:00: resource 6 [io  0x0078-0x0cf7 window]
[    1.258992] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    1.258996] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.259000] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.259004] pci_bus 0000:00: resource 10 [mem 0x000e0000-0x000fffff window]
[    1.259007] pci_bus 0000:00: resource 11 [mem 0x80000000-0x909ffffe window]
[    1.259011] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    1.259015] pci_bus 0000:02: resource 0 [io  0x5000-0x5fff]
[    1.259018] pci_bus 0000:02: resource 1 [mem 0x90600000-0x906fffff]
[    1.259022] pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
[    1.259026] pci_bus 0000:03: resource 1 [mem 0x90500000-0x905fffff]
[    1.259030] pci_bus 0000:04: resource 0 [io  0x1000-0x1fff]
[    1.259033] pci_bus 0000:04: resource 1 [mem 0x90400000-0x904fffff]
[    1.259085] NET: Registered protocol family 2
[    1.259363] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    1.259502] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    1.259647] TCP: Hash tables configured (established 32768 bind 32768)
[    1.259706] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    1.259745] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    1.259880] NET: Registered protocol family 1
[    1.259915] pci 0000:00:02.0: Video device with shadowed ROM
[    2.861277] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.861431] PCI: CLS 64 bytes, default 64
[    2.861536] Trying to unpack rootfs image as initramfs...
[    3.772231] Freeing initrd memory: 36332K (ffff8800338fa000 - ffff880035c75000)
[    3.772279] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.772285] software IO TLB [mem 0x7413f000-0x7813f000] (64MB) mapped at [ffff88007413f000-ffff88007813efff]
[    3.772529] Scanning for low memory corruption every 60 seconds
[    3.773256] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    3.773313] audit: initializing netlink subsys (disabled)
[    3.773343] audit: type=2000 audit(1476094484.763:1): initialized
[    3.773925] Initialise system trusted keyring
[    3.774144] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.777227] zbud: loaded
[    3.777596] VFS: Disk quotas dquot_6.6.0
[    3.777666] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.778211] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    3.778766] fuse init (API version 7.23)
[    3.779060] Key type big_key registered
[    3.779097] Allocating IMA MOK and blacklist keyrings.
[    3.780184] Key type asymmetric registered
[    3.780190] Asymmetric key parser 'x509' registered
[    3.780271] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    3.780344] io scheduler noop registered
[    3.780349] io scheduler deadline registered (default)
[    3.780413] io scheduler cfq registered
[    3.781353] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.781375] pciehp 0000:00:1c.0:pcie04: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[    3.781441] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
[    3.781457] pciehp 0000:00:1c.1:pcie04: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
[    3.781510] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
[    3.781522] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.781590] efifb: probing for efifb
[    3.781598] efifb: framebuffer at 0xa0000, mapped to 0xffff8800000a0000, using 64k, total 64k
[    3.781601] efifb: mode is 640x480x1, linelength=80, pages=1
[    3.781603] efifb: scrolling: redraw
[    3.781606] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.781762] Console: switching to colour frame buffer device 80x30
[    3.781780] fb0: EFI VGA frame buffer device
[    3.781796] intel_idle: MWAIT substates: 0x33000020
[    3.781799] intel_idle: v0.4.1 model 0x37
[    3.781802] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.782082] ACPI: AC Adapter [ACAD] (off-line)
[    3.782204] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0D:00/input/input0
[    3.782239] ACPI: Lid Switch [LID0]
[    3.782322] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    3.782328] ACPI: Power Button [PWRB]
[    3.782406] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    3.782411] ACPI: Power Button [PWRF]
[    3.784951] [Firmware Bug]: No valid trip found
[    3.785015] GHES: HEST is not enabled!
[    3.785195] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    3.805311] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    3.808805] hpet: number irqs doesn't agree with number of timers
[    3.808920] Linux agpgart interface v0.103
[    3.814807] brd: module loaded
[    3.817384] loop: module loaded
[    3.817799] libphy: Fixed MDIO Bus: probed
[    3.817805] tun: Universal TUN/TAP device driver, 1.6
[    3.817808] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.817918] PPP generic driver version 2.4.2
[    3.818053] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.818066] ehci-pci: EHCI PCI platform driver
[    3.818284] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.818295] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    3.818314] ehci-pci 0000:00:1d.0: debug port 2
[    3.822238] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.822260] ehci-pci 0000:00:1d.0: irq 23, io mem 0x90915000
[    3.830841] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.830951] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.830956] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.830959] usb usb1: Product: EHCI Host Controller
[    3.830963] usb usb1: Manufacturer: Linux 4.4.0-38-generic ehci_hcd
[    3.830966] usb usb1: SerialNumber: 0000:00:1d.0
[    3.831217] hub 1-0:1.0: USB hub found
[    3.831233] hub 1-0:1.0: 8 ports detected
[    3.831667] ehci-platform: EHCI generic platform driver
[    3.831698] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.831707] ohci-pci: OHCI PCI platform driver
[    3.831729] ohci-platform: OHCI generic platform driver
[    3.831747] uhci_hcd: USB Universal Host Controller Interface driver
[    3.831960] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.831971] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.833066] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[    3.833073] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.833203] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.833208] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.833211] usb usb2: Product: xHCI Host Controller
[    3.833215] usb usb2: Manufacturer: Linux 4.4.0-38-generic xhci-hcd
[    3.833218] usb usb2: SerialNumber: 0000:00:14.0
[    3.833458] hub 2-0:1.0: USB hub found
[    3.833476] hub 2-0:1.0: 6 ports detected
[    3.834281] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.834289] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.834361] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003
[    3.834366] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.834369] usb usb3: Product: xHCI Host Controller
[    3.834372] usb usb3: Manufacturer: Linux 4.4.0-38-generic xhci-hcd
[    3.834375] usb usb3: SerialNumber: 0000:00:14.0
[    3.834605] hub 3-0:1.0: USB hub found
[    3.834623] hub 3-0:1.0: 1 port detected
[    3.834951] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
[    3.840316] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.840326] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.840642] mousedev: PS/2 mouse device common for all mice
[    3.841058] rtc_cmos 00:00: RTC can wake from S4
[    3.841237] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    3.841265] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
[    3.841281] i2c /dev entries driver
[    3.841387] device-mapper: uevent: version 1.0.3
[    3.841537] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    3.841561] Intel P-state driver initializing.
[    3.841720] ledtrig-cpu: registered to indicate activity on CPUs
[    3.844346] NET: Registered protocol family 10
[    3.845529] NET: Registered protocol family 17
[    3.845610] Key type dns_resolver registered
[    3.846823] microcode: CPU0 sig=0x30678, pf=0x8, revision=0x829
[    3.846931] microcode: CPU1 sig=0x30678, pf=0x8, revision=0x829
[    3.847345] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    3.847707] registered taskstats version 1
[    3.847727] Loading compiled-in X.509 certificates
[    3.849184] Loaded X.509 cert 'Build time autogenerated kernel key: 8b9fe5db9540517005e475afed63f7a6645227d6'
[    3.849217] zswap: loaded using pool lzo/zbud
[    3.853170] Key type trusted registered
[    3.859923] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    3.861156] Key type encrypted registered
[    3.861170] AppArmor: AppArmor sha1 policy hashing enabled
[    3.861176] ima: No TPM chip found, activating TPM-bypass!
[    3.861217] evm: HMAC attrs: 0x1
[    3.861660]   Magic number: 4:4:224
[    3.861831] rtc_cmos 00:00: setting system clock to 2016-10-10 10:14:45 UTC (1476094485)
[    3.861952] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.861955] EDD information not available.
[    3.862102] PM: Hibernation image not present or could not be loaded.
[    3.862951] ACPI: Battery Slot [BAT1] (battery present)
[    3.865112] Freeing unused kernel memory: 1480K (ffffffff81f42000 - ffffffff820b4000)
[    3.865118] Write protecting the kernel read-only data: 14336k
[    3.866210] Freeing unused kernel memory: 1824K (ffff880001838000 - ffff880001a00000)
[    3.866968] Freeing unused kernel memory: 152K (ffff880001dda000 - ffff880001e00000)
[    3.884635] random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.884811] random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.884849] random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.885708] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.885803] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.886125] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.886248] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.886370] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.886493] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.886624] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    3.963063] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    3.976961] wmi: Mapper loaded
[    3.988066] rtsx_pci 0000:02:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 90
[    3.990602] ahci 0000:00:13.0: version 3.0
[    3.990756] ahci 0000:00:13.0: controller can't do DEVSLP, turning off
[    3.994643] [drm] Initialized drm 1.1.0 20060810
[    4.000622] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    4.003155] ahci 0000:00:13.0: AHCI 0001.0300 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[    4.003162] ahci 0000:00:13.0: flags: 64bit ncq pm led clo pio slum part deso 
[    4.008251] r8169 0000:03:00.0 eth0: RTL8107e at 0xffffc9000076a000, f0:76:1c:f3:94:03, XID 14100800 IRQ 92
[    4.011185] scsi host0: ahci
[    4.039275] scsi host1: ahci
[    4.039392] ata1: SATA max UDMA/133 abar m2048@0x90914000 port 0x90914100 irq 91
[    4.039396] ata2: SATA max UDMA/133 abar m2048@0x90914000 port 0x90914180 irq 91
[    4.044409] [drm] Memory usable by graphics device = 2048M
[    4.044417] checking generic (a0000 10000) vs hw (80000000 10000000)
[    4.044420] fb: switching to inteldrmfb from EFI VGA
[    4.044460] Console: switching to colour dummy device 80x25
[    4.044716] [drm] Replacing VGA console driver
[    4.044944] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.044947] [drm] Driver supports precise vblank timestamp query.
[    4.092527] r8169 0000:03:00.0 enp3s0: renamed from eth0
[    4.107285] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    4.187432] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2
[    4.203433] usb 2-1: new low-speed USB device number 2 using xhci_hcd
[    4.339030] usb 2-1: New USB device found, idVendor=093a, idProduct=2510
[    4.339035] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.339038] usb 2-1: Product: USB Optical Mouse
[    4.339041] usb 2-1: Manufacturer: PixArt
[    4.339214] usb 2-1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
[    4.345303] hidraw: raw HID events driver (C) Jiri Kosina
[    4.349668] usbcore: registered new interface driver usbhid
[    4.349672] usbhid: USB HID core driver
[    4.355699] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    4.356272] ata1.00: ATA-9: WDC WD5000LPCX-24C6HT0, 02.01A02, max UDMA/133
[    4.356276] ata1.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[    4.356886] ata1.00: configured for UDMA/133
[    4.357111] scsi 0:0:0:0: Direct-Access     ATA      WDC WD5000LPCX-2 1A02 PQ: 0 ANSI: 5
[    4.357991] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.358139] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.358144] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    4.358535] sd 0:0:0:0: [sda] Write Protect is off
[    4.358540] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.358595] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.359022] input: PixArt USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1:1.0/0003:093A:2510.0001/input/input6
[    4.359539] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-0000:00:14.0-1/input0
[    4.367698] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.372418] ata2.00: ATAPI: PLDS    DVD-RW DA8A6SH, GC11, max UDMA/100
[    4.373174] ata2.00: configured for UDMA/100
[    4.383569] scsi 1:0:0:0: CD-ROM            PLDS     DVD-RW DA8A6SH   GC11 PQ: 0 ANSI: 5
[    4.408738] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.408744] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.408933] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    4.409097] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    4.433027]  sda: sda1 sda2 < sda5 >
[    4.433646] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.451889] usb 2-3: new high-speed USB device number 3 using xhci_hcd
[    4.485400] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    4.485707] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
[    4.486154] [drm] Initialized i915 1.6.0 20151010 for 0000:00:02.0 on minor 0
[    4.486564] fbcon: inteldrmfb (fb0) is primary device
[    4.486865] Console: switching to colour frame buffer device 170x48
[    4.486947] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    4.600076] usb 2-3: New USB device found, idVendor=174f, idProduct=1169
[    4.600082] usb 2-3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    4.600086] usb 2-3: Product: Lenovo EasyCamera
[    4.600088] usb 2-3: Manufacturer: 150622003368
[    4.600091] usb 2-3: SerialNumber: 200901010001
[    4.772354] tsc: Refined TSC clocksource calibration: 2166.665 MHz
[    4.772361] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1f3b30bc0fa, max_idle_ns: 440795312762 ns
[    4.850925] psmouse serio1: synaptics: queried max coordinates: x [..5752], y [..4878]
[    4.882002] psmouse serio1: synaptics: queried min coordinates: x [1192..], y [1000..]
[    4.943803] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.5, id: 0x1e0b1, caps: 0xf00173/0x240000/0xa2400/0x0, board id: 3137, fw id: 1815950
[    4.982970] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.207925] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    5.774086] clocksource: Switched to clocksource tsc
[    5.967756] random: nonblocking pool is initialized
[    6.604586] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    6.604806] systemd[1]: Detected architecture x86-64.
[    6.615164] systemd[1]: Set hostname to <Pluto>.
[    9.590431] systemd[1]: Listening on Journal Socket (/dev/log).
[    9.590571] systemd[1]: Listening on fsck to fsckd communication Socket.
[    9.590748] systemd[1]: Created slice User and Session Slice.
[    9.590793] systemd[1]: Listening on Syslog Socket.
[    9.590871] systemd[1]: Listening on Journal Socket.
[    9.590912] systemd[1]: Reached target Remote File Systems (Pre).
[    9.590931] systemd[1]: Reached target Remote File Systems.
[    9.591052] systemd[1]: Created slice System Slice.
[    9.600489] systemd[1]: Started Braille Device Support.
[    9.601825] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    9.602921] systemd[1]: Starting Set console keymap...
[    9.796571] systemd[1]: Starting Load Kernel Modules...
[    9.797591] systemd[1]: Started Read required files in advance.
[    9.798784] systemd[1]: Mounting Huge Pages File System...
[    9.936419] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    9.948739] systemd[1]: Mounting POSIX Message Queue File System...
[    9.948845] systemd[1]: Listening on udev Kernel Socket.
[    9.949799] systemd[1]: Mounting Debug File System...
[    9.950068] systemd[1]: Listening on Journal Audit Socket.
[    9.951229] systemd[1]: Starting Journal Service...
[    9.951267] systemd[1]: Reached target User and Group Name Lookups.
[    9.951416] systemd[1]: Listening on udev Control Socket.
[    9.951533] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    9.951571] systemd[1]: Reached target Encrypted Volumes.
[    9.951615] systemd[1]: Reached target Slices.
[    9.951886] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   10.181201] systemd[1]: Starting Uncomplicated firewall...
[   10.184412] systemd[1]: Started Create list of required static device nodes for the current kernel.
[   10.234128] systemd[1]: Starting Create Static Device Nodes in /dev...
[   10.432254] systemd[1]: Started Uncomplicated firewall.
[   10.442738] lp: driver loaded but no devices found
[   10.605265] ppdev: user-space parallel port driver
[   10.688294] systemd[1]: Started Load Kernel Modules.
[   10.701972] systemd[1]: Mounting FUSE Control File System...
[   10.703058] systemd[1]: Starting Apply Kernel Variables...
[   10.899874] systemd[1]: Mounted FUSE Control File System.
[   10.899949] systemd[1]: Mounted POSIX Message Queue File System.
[   10.899985] systemd[1]: Mounted Huge Pages File System.
[   10.900020] systemd[1]: Mounted Debug File System.
[   11.029144] systemd[1]: Started Journal Service.
[   16.039032] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   16.561864] systemd-journald[223]: Received request to flush runtime journal from PID 1
[   18.671930] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   18.767971] input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input8
[   20.831099] rtl8188ee: rtl8188ee: Power Save off (module option)
[   20.831105] rtl8188ee: rtl8188ee: FW Power Save off (module option)
[   20.831126] rtl8188ee: Using firmware rtlwifi/rtl8188efw.bin
[   21.036542] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   21.164813] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[   21.165183] rtlwifi: rtlwifi: wireless switch is on
[   21.197686] rtl8188ee 0000:04:00.0 wlp4s0: renamed from wlan0
[   21.501589] media: Linux media interface: v0.10
[   21.677306] Linux video capture interface: v2.00
[   22.381449] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   22.381456] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   22.381460] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   22.381462] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   22.381465] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   22.381468] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x1b
[   22.381472] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[   22.509351] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   22.509472] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   22.509594] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   22.759823] intel_rapl: Found RAPL domain package
[   22.759829] intel_rapl: Found RAPL domain core
[   23.269646] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (174f:1169)
[   23.275770] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.0/input/input12
[   23.275896] usbcore: registered new interface driver uvcvideo
[   23.275899] USB Video Class driver (1.1.1)
[   23.523703] cfg80211: World regulatory domain updated:
[   23.523710] cfg80211:  DFS Master region: unset
[   23.523712] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   23.523716] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   23.523719] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   23.523721] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   23.523725] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[   23.523728] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[   23.523731] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   23.523733] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   23.523736] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   25.048428] Adding 4074492k swap on /dev/sda5.  Priority:-1 extents:1 across:4074492k FS
[   32.629404] audit: type=1400 audit(1476094514.217:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=679 comm="apparmor_parser"
[   32.629420] audit: type=1400 audit(1476094514.217:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=679 comm="apparmor_parser"
[   32.629430] audit: type=1400 audit(1476094514.217:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=679 comm="apparmor_parser"
[   32.629440] audit: type=1400 audit(1476094514.217:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=679 comm="apparmor_parser"
[   32.630427] audit: type=1400 audit(1476094514.217:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=678 comm="apparmor_parser"
[   32.630445] audit: type=1400 audit(1476094514.217:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=678 comm="apparmor_parser"
[   32.656063] audit: type=1400 audit(1476094514.241:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="webbrowser-app" pid=682 comm="apparmor_parser"
[   32.656080] audit: type=1400 audit(1476094514.241:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="webbrowser-app//oxide_helper" pid=682 comm="apparmor_parser"
[   32.658183] audit: type=1400 audit(1476094514.245:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=683 comm="apparmor_parser"
[   32.686874] audit: type=1400 audit(1476094514.273:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=680 comm="apparmor_parser"
[   37.697171] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
[   38.090943] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
[   38.128932] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[   38.448952] r8169 0000:03:00.0 enp3s0: link down
[   38.449055] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[   39.835028] IPv6: ADDRCONF(NETDEV_UP): wlp4s0: link is not ready
[   45.085641] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
[   45.093500] vboxdrv: Found 2 processor cores
[   45.109162] vboxdrv: TSC mode is Invariant, tentative frequency 2166665081 Hz
[   45.109168] vboxdrv: Successfully loaded version 5.0.24_Ubuntu (interface 0x00240000)
[   45.121550] VBoxNetFlt: Successfully started.
[   45.136115] VBoxNetAdp: Successfully started.
[   45.149840] VBoxPciLinuxInit
[   45.154200] vboxpci: IOMMU not found (not registered)
[   54.151960] wlp4s0: authenticate with 9c:c7:a6:b9:35:a0
[   54.171519] wlp4s0: send auth to 9c:c7:a6:b9:35:a0 (try 1/3)
[   54.174307] wlp4s0: authenticated
[   54.175455] wlp4s0: associate with 9c:c7:a6:b9:35:a0 (try 1/3)
[   54.182411] wlp4s0: RX AssocResp from 9c:c7:a6:b9:35:a0 (capab=0x431 status=0 aid=2)
[   54.182692] wlp4s0: associated
[   54.182757] IPv6: ADDRCONF(NETDEV_CHANGE): wlp4s0: link becomes ready
[   54.187628] cfg80211: Regulatory domain changed to country: DE
[   54.187634] cfg80211:  DFS Master region: ETSI
[   54.187636] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   54.187640] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   54.187643] cfg80211:   (5150000 KHz - 5250000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[   54.187646] cfg80211:   (5250000 KHz - 5350000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[   54.187649] cfg80211:   (5470000 KHz - 5725000 KHz @ 160000 KHz), (N/A, 2698 mBm), (0 s)
[   54.187652] cfg80211:   (57000000 KHz - 66000000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[ 1090.791454] perf interrupt took too long (2514 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[ 2045.584928] wlp4s0: authenticate with 82:c7:a6:31:43:55
[ 2045.595006] wlp4s0: send auth to 82:c7:a6:31:43:55 (try 1/3)
[ 2045.599859] wlp4s0: authenticated
[ 2045.604174] wlp4s0: associate with 82:c7:a6:31:43:55 (try 1/3)
[ 2045.607895] wlp4s0: RX AssocResp from 82:c7:a6:31:43:55 (capab=0x431 status=0 aid=2)
[ 2045.608199] wlp4s0: associated
[ 2045.959253] cfg80211: World regulatory domain updated:
[ 2045.959260] cfg80211:  DFS Master region: unset
[ 2045.959262] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 2045.959266] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 2045.959269] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 2045.959272] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 2045.959275] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[ 2045.959278] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[ 2045.959281] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 2045.959284] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 2045.959286] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 3332.783161] usb 2-2: new high-speed USB device number 4 using xhci_hcd
[ 3332.990853] usb 2-2: New USB device found, idVendor=0c76, idProduct=0005
[ 3332.990860] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3332.990863] usb 2-2: Product: TS1GJF2A
[ 3332.990866] usb 2-2: Manufacturer: JetFlash
[ 3332.991072] usb 2-2: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 3332.991082] usb 2-2: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 3333.350148] usb-storage 2-2:1.0: USB Mass Storage device detected
[ 3333.351145] scsi host2: usb-storage 2-2:1.0
[ 3333.351383] usbcore: registered new interface driver usb-storage
[ 3333.353979] usbcore: registered new interface driver uas
[ 3334.354168] scsi 2:0:0:0: Direct-Access     JetFlash TS1GJF2A         1.00 PQ: 0 ANSI: 2
[ 3334.357335] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 3334.360268] sd 2:0:0:0: [sdb] 2000200 512-byte logical blocks: (1.02 GB/977 MiB)
[ 3334.360608] sd 2:0:0:0: [sdb] Write Protect is off
[ 3334.360615] sd 2:0:0:0: [sdb] Mode Sense: 0b 00 00 08
[ 3334.360941] sd 2:0:0:0: [sdb] No Caching mode page found
[ 3334.360948] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 3334.367673]  sdb: sdb1
[ 3334.372086] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[ 3462.606992] sd 2:0:0:0: [sdb] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 3462.607000] sd 2:0:0:0: [sdb] tag#0 Sense Key : Not Ready [current] 
[ 3462.607006] sd 2:0:0:0: [sdb] tag#0 Add. Sense: Medium not present
[ 3462.607011] sd 2:0:0:0: [sdb] tag#0 CDB: Read(10) 28 00 00 00 02 20 00 00 f0 00
[ 3462.607015] blk_update_request: I/O error, dev sdb, sector 544
[ 3462.616057] sd 2:0:0:0: [sdb] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 3462.616063] sd 2:0:0:0: [sdb] tag#0 Sense Key : Not Ready [current] 
[ 3462.616068] sd 2:0:0:0: [sdb] tag#0 Add. Sense: Medium not present
[ 3462.616073] sd 2:0:0:0: [sdb] tag#0 CDB: Read(10) 28 00 00 00 03 10 00 00 10 00
[ 3462.616077] blk_update_request: I/O error, dev sdb, sector 784
[ 3462.624795] sd 2:0:0:0: [sdb] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 3462.624803] sd 2:0:0:0: [sdb] tag#0 Sense Key : Not Ready [current] 
[ 3462.624808] sd 2:0:0:0: [sdb] tag#0 Add. Sense: Medium not present
[ 3462.624813] sd 2:0:0:0: [sdb] tag#0 CDB: Read(10) 28 00 00 00 02 20 00 00 08 00
[ 3462.624817] blk_update_request: I/O error, dev sdb, sector 544
[ 3462.624823] Buffer I/O error on dev sdb1, logical block 64, async page read
[ 3467.556332] usb 2-2: USB disconnect, device number 4
[ 4104.838175] usb 2-2: new high-speed USB device number 5 using xhci_hcd
[ 4104.969224] usb 2-2: New USB device found, idVendor=090c, idProduct=1000
[ 4104.969230] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 4104.969234] usb 2-2: Product: USB DISK
[ 4104.969237] usb 2-2: Manufacturer: SMI Corporation
[ 4104.969240] usb 2-2: SerialNumber: AA04012700007517
[ 4104.969439] usb 2-2: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 4104.969501] usb 2-2: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 4104.971282] usb-storage 2-2:1.0: USB Mass Storage device detected
[ 4104.973935] scsi host3: usb-storage 2-2:1.0
[ 4105.975006] scsi 3:0:0:0: Direct-Access     USB      Flash Disk       1100 PQ: 0 ANSI: 0 CCS
[ 4105.975582] sd 3:0:0:0: Attached scsi generic sg2 type 0
[ 4105.977635] sd 3:0:0:0: [sdb] 7928832 512-byte logical blocks: (4.06 GB/3.78 GiB)
[ 4105.978296] sd 3:0:0:0: [sdb] Write Protect is off
[ 4105.978304] sd 3:0:0:0: [sdb] Mode Sense: 43 00 00 00
[ 4105.979196] sd 3:0:0:0: [sdb] No Caching mode page found
[ 4105.979203] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[ 4106.065100] sd 3:0:0:0: [sdb] Attached SCSI removable disk
[ 4687.724975] ideapad_laptop: Unknown event: 1
[ 5138.399970]  sdb: sdb1
[ 5257.954557] ISO 9660 Extensions: Microsoft Joliet Level 3
[ 5257.987804] ISO 9660 Extensions: RRIP_1991A
[ 5288.974705] usb 2-2: USB disconnect, device number 5
[ 5298.384690] usb 2-2: new high-speed USB device number 6 using xhci_hcd
[ 5298.540299] usb 2-2: New USB device found, idVendor=0c76, idProduct=0005
[ 5298.540306] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5298.540310] usb 2-2: Product: TS1GJF2A
[ 5298.540313] usb 2-2: Manufacturer: JetFlash
[ 5298.540524] usb 2-2: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 5298.540532] usb 2-2: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 5298.544483] usb-storage 2-2:1.0: USB Mass Storage device detected
[ 5298.544744] scsi host4: usb-storage 2-2:1.0
[ 5299.550975] scsi 4:0:0:0: Direct-Access     JetFlash TS1GJF2A         1.00 PQ: 0 ANSI: 2
[ 5299.554877] sd 4:0:0:0: [sdc] 2000200 512-byte logical blocks: (1.02 GB/977 MiB)
[ 5299.555248] sd 4:0:0:0: [sdc] Write Protect is off
[ 5299.555258] sd 4:0:0:0: [sdc] Mode Sense: 0b 00 00 08
[ 5299.555617] sd 4:0:0:0: [sdc] No Caching mode page found
[ 5299.555626] sd 4:0:0:0: [sdc] Assuming drive cache: write through
[ 5299.561364] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 5299.566373]  sdc: sdc1
[ 5299.570167] sd 4:0:0:0: [sdc] Attached SCSI removable disk
[ 5351.683123] sd 4:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5351.683131] sd 4:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5351.683136] sd 4:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5351.683141] sd 4:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 00 03 20 00 00 f0 00
[ 5351.683145] blk_update_request: I/O error, dev sdc, sector 800
[ 5351.692722] sd 4:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5351.692731] sd 4:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5351.692738] sd 4:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5351.692743] sd 4:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 00 04 10 00 00 10 00
[ 5351.692746] blk_update_request: I/O error, dev sdc, sector 1040
[ 5351.702400] sd 4:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5351.702409] sd 4:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5351.702414] sd 4:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5351.702419] sd 4:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 00 03 20 00 00 08 00
[ 5351.702423] blk_update_request: I/O error, dev sdc, sector 800
[ 5351.702428] Buffer I/O error on dev sdc1, logical block 96, async page read
[ 5351.712291] sd 4:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5351.712300] sd 4:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5351.712305] sd 4:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5351.712310] sd 4:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 0a 2b 68 00 00 08 00
[ 5351.712314] blk_update_request: I/O error, dev sdc, sector 666472
[ 5351.721016] sd 4:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5351.721024] sd 4:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5351.721029] sd 4:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5351.721035] sd 4:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 0a 2b 68 00 00 08 00
[ 5351.721038] blk_update_request: I/O error, dev sdc, sector 666472
[ 5351.721044] Buffer I/O error on dev sdc1, logical block 83305, async page read
[ 5354.551520] usb 2-2: USB disconnect, device number 6
[ 5412.344175] usb 2-2: new high-speed USB device number 7 using xhci_hcd
[ 5412.499864] usb 2-2: New USB device found, idVendor=0c76, idProduct=0005
[ 5412.499875] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5412.499882] usb 2-2: Product: TS1GJF2A
[ 5412.499887] usb 2-2: Manufacturer: JetFlash
[ 5412.500198] usb 2-2: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 5412.500212] usb 2-2: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
[ 5412.506186] usb-storage 2-2:1.0: USB Mass Storage device detected
[ 5412.506354] scsi host5: usb-storage 2-2:1.0
[ 5413.510345] scsi 5:0:0:0: Direct-Access     JetFlash TS1GJF2A         1.00 PQ: 0 ANSI: 2
[ 5413.511839] sd 5:0:0:0: Attached scsi generic sg2 type 0
[ 5413.515742] sd 5:0:0:0: [sdc] 2000200 512-byte logical blocks: (1.02 GB/977 MiB)
[ 5413.516083] sd 5:0:0:0: [sdc] Write Protect is off
[ 5413.516088] sd 5:0:0:0: [sdc] Mode Sense: 0b 00 00 08
[ 5413.516411] sd 5:0:0:0: [sdc] No Caching mode page found
[ 5413.516416] sd 5:0:0:0: [sdc] Assuming drive cache: write through
[ 5413.523423]  sdc: sdc1
[ 5413.527085] sd 5:0:0:0: [sdc] Attached SCSI removable disk
[ 5730.005053] sd 5:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5730.005061] sd 5:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5730.005067] sd 5:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5730.005072] sd 5:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 1e 7c 20 00 00 f0 00
[ 5730.005076] blk_update_request: I/O error, dev sdc, sector 1997856
[ 5730.014157] sd 5:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5730.014165] sd 5:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5730.014170] sd 5:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5730.014175] sd 5:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 1e 7d 10 00 00 10 00
[ 5730.014178] blk_update_request: I/O error, dev sdc, sector 1998096
[ 5730.022877] sd 5:0:0:0: [sdc] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 5730.022885] sd 5:0:0:0: [sdc] tag#0 Sense Key : Not Ready [current] 
[ 5730.022890] sd 5:0:0:0: [sdc] tag#0 Add. Sense: Medium not present
[ 5730.022896] sd 5:0:0:0: [sdc] tag#0 CDB: Read(10) 28 00 00 1e 7c 20 00 00 08 00
[ 5730.022899] blk_update_request: I/O error, dev sdc, sector 1997856
[ 5730.022905] Buffer I/O error on dev sdc1, logical block 249728, async page read
[ 5736.173104] usb 2-2: USB disconnect, device number 7
[ 6713.207029] ideapad_laptop: Unknown event: 1
[ 6749.352842] usb 2-2: new high-speed USB device number 8 using xhci_hcd
[ 6749.481655] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[ 6749.481664] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6749.481669] usb 2-2: Product: MT65xx Preloader
[ 6749.481673] usb 2-2: Manufacturer: MediaTek
[ 6750.026031] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[ 6750.065439] usbcore: registered new interface driver cdc_acm
[ 6750.065445] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[ 6752.295512] usb 2-2: USB disconnect, device number 8
[ 6810.262877] usb 2-2: new high-speed USB device number 9 using xhci_hcd
[ 6810.391670] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[ 6810.391676] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6810.391679] usb 2-2: Product: MT65xx Preloader
[ 6810.391682] usb 2-2: Manufacturer: MediaTek
[ 6810.453746] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[ 6813.045339] usb 2-2: USB disconnect, device number 9
[ 6821.272604] usb 2-2: new high-speed USB device number 10 using xhci_hcd
[ 6821.401666] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6821.401688] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6821.401693] usb 2-2: Product: LENNY2
[ 6821.401697] usb 2-2: Manufacturer: LENNY2
[ 6821.401701] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6852.395551] usb 2-2: USB disconnect, device number 10
[ 6854.353887] usb 2-2: new high-speed USB device number 11 using xhci_hcd
[ 6854.482754] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[ 6854.482761] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6854.482766] usb 2-2: Product: MT65xx Preloader
[ 6854.482769] usb 2-2: Manufacturer: MediaTek
[ 6854.545352] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[ 6857.137277] usb 2-2: USB disconnect, device number 11
[ 6865.664177] usb 2-2: new high-speed USB device number 12 using xhci_hcd
[ 6865.793185] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6865.793197] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6865.793204] usb 2-2: Product: LENNY2
[ 6865.793211] usb 2-2: Manufacturer: LENNY2
[ 6865.793217] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6878.195871] usb 2-2: USB disconnect, device number 12
[ 6879.025713] usb 2-2: new full-speed USB device number 13 using xhci_hcd
[ 6879.154144] usb 2-2: New USB device found, idVendor=0e8d, idProduct=0003
[ 6879.154150] usb 2-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 6879.155368] cdc_acm 2-2:1.0: ttyACM0: USB ACM device
[ 6879.282398] usbcore: registered new interface driver usbserial
[ 6879.282453] usbcore: registered new interface driver usbserial_generic
[ 6879.282503] usbserial: USB Serial support registered for generic
[ 6879.352096] usbcore: registered new interface driver option
[ 6879.352133] usbserial: USB Serial support registered for GSM modem (1-port)
[ 6883.735085] usb 2-2: USB disconnect, device number 13
[ 6883.735165] cdc_acm 2-2:1.0: acm_ctrl_irq - usb_submit_urb failed: -19
[ 6885.031273] usb 2-2: new high-speed USB device number 14 using xhci_hcd
[ 6885.159999] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[ 6885.160006] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 6885.160009] usb 2-2: Product: MT65xx Preloader
[ 6885.160013] usb 2-2: Manufacturer: MediaTek
[ 6885.222620] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[ 6887.814107] usb 2-2: USB disconnect, device number 14
[ 6901.297458] usb 2-2: new high-speed USB device number 15 using xhci_hcd
[ 6901.426783] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6901.426809] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6901.426825] usb 2-2: Product: LENNY2
[ 6901.426839] usb 2-2: Manufacturer: LENNY2
[ 6901.426852] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6937.738032] usb 2-2: USB disconnect, device number 15
[ 6938.232923] usb 2-2: new high-speed USB device number 17 using xhci_hcd
[ 6938.345165] usb 2-2: Device not responding to setup address.
[ 6938.549454] usb 2-2: Device not responding to setup address.
[ 6938.753759] usb 2-2: device not accepting address 17, error -71
[ 6939.050250] usb 2-2: new high-speed USB device number 19 using xhci_hcd
[ 6939.179388] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6939.179395] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6939.179399] usb 2-2: Product: LENNY2
[ 6939.179402] usb 2-2: Manufacturer: LENNY2
[ 6939.179405] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6977.258903] usb 2-2: USB disconnect, device number 19
[ 6977.756637] usb 2-2: new high-speed USB device number 21 using xhci_hcd
[ 6977.885713] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6977.885719] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6977.885722] usb 2-2: Product: LENNY2
[ 6977.885725] usb 2-2: Manufacturer: LENNY2
[ 6977.885728] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6978.819690] usb 2-2: USB disconnect, device number 21
[ 6979.058677] usb 2-2: new high-speed USB device number 22 using xhci_hcd
[ 6979.439275] usb 2-2: new high-speed USB device number 23 using xhci_hcd
[ 6979.968133] usb 2-2: new high-speed USB device number 25 using xhci_hcd
[ 6980.264607] usb 2-2: new high-speed USB device number 26 using xhci_hcd
[ 6980.393815] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6980.393822] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6980.393826] usb 2-2: Product: LENNY2
[ 6980.393830] usb 2-2: Manufacturer: LENNY2
[ 6980.393833] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6980.471000] usb 2-2: USB disconnect, device number 26
[ 6980.741363] usb 2-2: new high-speed USB device number 27 using xhci_hcd
[ 6980.870550] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6980.870559] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6980.870565] usb 2-2: Product: LENNY2
[ 6980.870570] usb 2-2: Manufacturer: LENNY2
[ 6980.870575] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6980.979793] usb 2-2: USB disconnect, device number 27
[ 6981.466621] usb 2-2: new high-speed USB device number 29 using xhci_hcd
[ 6981.595654] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6981.595661] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6981.595664] usb 2-2: Product: LENNY2
[ 6981.595667] usb 2-2: Manufacturer: LENNY2
[ 6981.595669] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6981.915927] usb 2-2: USB disconnect, device number 29
[ 6982.836755] usb 2-2: new high-speed USB device number 33 using xhci_hcd
[ 6982.965935] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6982.965959] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6982.965975] usb 2-2: Product: LENNY2
[ 6982.965990] usb 2-2: Manufacturer: LENNY2
[ 6982.966003] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 6983.512842] usb 2-2: USB disconnect, device number 33
[ 6983.786306] usb 2-2: new high-speed USB device number 34 using xhci_hcd
[ 6983.898588] usb 2-2: Device not responding to setup address.
[ 6984.102827] usb 2-2: Device not responding to setup address.
[ 6984.309403] usb 2-2: device not accepting address 34, error -71
[ 6984.659768] usb 2-2: new high-speed USB device number 36 using xhci_hcd
[ 6984.789006] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 6984.789018] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 6984.789026] usb 2-2: Product: LENNY2
[ 6984.789033] usb 2-2: Manufacturer: LENNY2
[ 6984.789040] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 7046.194906] usb 2-2: reset high-speed USB device number 36 using xhci_hcd
[ 7046.491487] usb 2-2: reset high-speed USB device number 36 using xhci_hcd
[ 7180.708115] usb 2-2: USB disconnect, device number 36
[ 7180.987767] usb 2-2: new high-speed USB device number 37 using xhci_hcd
[ 7181.117186] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[ 7181.117211] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[ 7181.117226] usb 2-2: Product: LENNY2
[ 7181.117241] usb 2-2: Manufacturer: LENNY2
[ 7181.117255] usb 2-2: SerialNumber: 0123456789ABCDEF
[ 7181.629985] usb 2-2: USB disconnect, device number 37
[ 8323.918480] ideapad_laptop: Unknown event: 1
[11043.448632] perf interrupt took too long (5006 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
[13825.363304] wlp4s0: authenticate with 9c:c7:a6:b9:35:a0
[13825.373414] wlp4s0: send auth to 9c:c7:a6:b9:35:a0 (try 1/3)
[13825.378027] wlp4s0: authenticated
[13825.379828] wlp4s0: associate with 9c:c7:a6:b9:35:a0 (try 1/3)
[13825.387610] wlp4s0: RX AssocResp from 9c:c7:a6:b9:35:a0 (capab=0x431 status=0 aid=1)
[13825.387851] wlp4s0: associated
[13828.613871] cfg80211: World regulatory domain updated:
[13828.613878] cfg80211:  DFS Master region: unset
[13828.613880] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[13828.613885] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[13828.613888] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[13828.613890] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[13828.613893] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[13828.613897] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[13828.613899] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[13828.613902] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[13828.613905] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[13828.663055] cfg80211: Regulatory domain changed to country: DE
[13828.663062] cfg80211:  DFS Master region: ETSI
[13828.663064] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[13828.663068] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[13828.663072] cfg80211:   (5150000 KHz - 5250000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[13828.663075] cfg80211:   (5250000 KHz - 5350000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[13828.663078] cfg80211:   (5470000 KHz - 5725000 KHz @ 160000 KHz), (N/A, 2698 mBm), (0 s)
[13828.663080] cfg80211:   (57000000 KHz - 66000000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[13944.752900] wlp4s0: authenticate with 82:c7:a6:31:43:55
[13944.762985] wlp4s0: send auth to 82:c7:a6:31:43:55 (try 1/3)
[13944.766297] wlp4s0: authenticated
[13944.768790] cfg80211: World regulatory domain updated:
[13944.768796] cfg80211:  DFS Master region: unset
[13944.768798] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[13944.768802] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[13944.768805] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[13944.768807] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[13944.768810] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[13944.768814] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[13944.768816] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[13944.768819] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[13944.768822] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[13944.772208] wlp4s0: associate with 82:c7:a6:31:43:55 (try 1/3)
[13944.776008] wlp4s0: RX AssocResp from 82:c7:a6:31:43:55 (capab=0x431 status=0 aid=2)
[13944.776231] wlp4s0: associated
[18000.559274] capability: warning: `VirtualBox' uses 32-bit capabilities (legacy support in use)
[18182.292081] usb 2-2: new high-speed USB device number 38 using xhci_hcd
[18182.420966] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[18182.420979] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[18182.420987] usb 2-2: Product: MT65xx Preloader
[18182.420994] usb 2-2: Manufacturer: MediaTek
[18182.484660] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[18185.075606] usb 2-2: USB disconnect, device number 38
[18204.471814] usb 2-2: new high-speed USB device number 39 using xhci_hcd
[18204.600801] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[18204.600814] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[18204.600822] usb 2-2: Product: MT65xx Preloader
[18204.600829] usb 2-2: Manufacturer: MediaTek
[18204.663053] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[18207.255184] usb 2-2: USB disconnect, device number 39
[18214.988770] usb 2-2: new high-speed USB device number 40 using xhci_hcd
[18215.117759] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18215.117766] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18215.117769] usb 2-2: Product: LENNY2
[18215.117772] usb 2-2: Manufacturer: LENNY2
[18215.117774] usb 2-2: SerialNumber: 0123456789ABCDEF
[18276.612172] usb 2-2: reset high-speed USB device number 40 using xhci_hcd
[18276.908721] usb 2-2: reset high-speed USB device number 40 using xhci_hcd
[18333.305032] usb 2-2: USB disconnect, device number 40
[18333.587801] usb 2-2: new high-speed USB device number 41 using xhci_hcd
[18333.717066] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18333.717072] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18333.717076] usb 2-2: Product: LENNY2
[18333.717079] usb 2-2: Manufacturer: LENNY2
[18333.717082] usb 2-2: SerialNumber: 0123456789ABCDEF
[18347.087720] usb 2-2: USB disconnect, device number 41
[18347.586360] usb 2-2: new high-speed USB device number 43 using xhci_hcd
[18347.882910] usb 2-2: new high-speed USB device number 44 using xhci_hcd
[18348.012337] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18348.012362] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18348.012378] usb 2-2: Product: LENNY2
[18348.012391] usb 2-2: Manufacturer: LENNY2
[18348.012409] usb 2-2: SerialNumber: 0123456789ABCDEF
[18348.069643] usb 2-2: USB disconnect, device number 44
[18348.339602] usb 2-2: new high-speed USB device number 45 using xhci_hcd
[18348.468780] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18348.468787] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18348.468790] usb 2-2: Product: LENNY2
[18348.468793] usb 2-2: Manufacturer: LENNY2
[18348.468796] usb 2-2: SerialNumber: 0123456789ABCDEF
[18357.442928] usb 2-2: USB disconnect, device number 45
[18357.682628] usb 2-2: new high-speed USB device number 46 using xhci_hcd
[18357.811763] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18357.811770] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18357.811774] usb 2-2: Product: LENNY2
[18357.811777] usb 2-2: Manufacturer: LENNY2
[18357.811781] usb 2-2: SerialNumber: 0123456789ABCDEF
[18418.176348] usb 2-2: reset high-speed USB device number 46 using xhci_hcd
[18418.472711] usb 2-2: reset high-speed USB device number 46 using xhci_hcd
[18680.332037] usb 2-2: USB disconnect, device number 46
[18680.608499] usb 2-2: new high-speed USB device number 47 using xhci_hcd
[18694.261868] usb 2-2: new high-speed USB device number 48 using xhci_hcd
[18694.391088] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18694.391098] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18694.391103] usb 2-2: Product: LENNY2
[18694.391108] usb 2-2: Manufacturer: LENNY2
[18694.391113] usb 2-2: SerialNumber: 0123456789ABCDEF
[18694.460370] usb 2-2: USB disconnect, device number 48
[18694.730533] usb 2-2: new high-speed USB device number 49 using xhci_hcd
[18694.859802] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18694.859810] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18694.859814] usb 2-2: Product: LENNY2
[18694.859818] usb 2-2: Manufacturer: LENNY2
[18694.859821] usb 2-2: SerialNumber: 0123456789ABCDEF
[18695.591722] usb 2-2: USB disconnect, device number 49
[18695.864342] usb 2-2: new high-speed USB device number 50 using xhci_hcd
[18695.993729] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18695.993736] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18695.993739] usb 2-2: Product: LENNY2
[18695.993742] usb 2-2: Manufacturer: LENNY2
[18695.993744] usb 2-2: SerialNumber: 0123456789ABCDEF
[18696.256975] usb 2-2: USB disconnect, device number 50
[18696.529445] usb 2-2: new high-speed USB device number 51 using xhci_hcd
[18696.658336] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18696.658343] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18696.658347] usb 2-2: Product: LENNY2
[18696.658351] usb 2-2: Manufacturer: LENNY2
[18696.658354] usb 2-2: SerialNumber: 0123456789ABCDEF
[18702.516442] usb 2-2: USB disconnect, device number 51
[18702.791260] usb 2-2: new high-speed USB device number 52 using xhci_hcd
[18703.087697] usb 2-2: new high-speed USB device number 53 using xhci_hcd
[18703.217091] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[18703.217104] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[18703.217112] usb 2-2: Product: LENNY2
[18703.217119] usb 2-2: Manufacturer: LENNY2
[18703.217126] usb 2-2: SerialNumber: 0123456789ABCDEF
[18763.578898] usb 2-2: reset high-speed USB device number 53 using xhci_hcd
[18763.875227] usb 2-2: reset high-speed USB device number 53 using xhci_hcd
[19072.340722] usb 2-2: USB disconnect, device number 53
[19072.615029] usb 2-2: new high-speed USB device number 54 using xhci_hcd
[19072.744499] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[19072.744508] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[19072.744514] usb 2-2: Product: LENNY2
[19072.744519] usb 2-2: Manufacturer: LENNY2
[19072.744524] usb 2-2: SerialNumber: 0123456789ABCDEF
[19098.598423] usb 2-2: USB disconnect, device number 54
[19098.868733] usb 2-2: new high-speed USB device number 55 using xhci_hcd
[19098.997769] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[19098.997794] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[19098.997810] usb 2-2: Product: LENNY2
[19098.997824] usb 2-2: Manufacturer: LENNY2
[19098.997838] usb 2-2: SerialNumber: 0123456789ABCDEF
[19159.377001] usb 2-2: reset high-speed USB device number 55 using xhci_hcd
[19159.673528] usb 2-2: reset high-speed USB device number 55 using xhci_hcd
[19277.798222] usb 2-2: USB disconnect, device number 55
[19278.069794] usb 2-2: new high-speed USB device number 56 using xhci_hcd
[19278.198927] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[19278.198933] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[19278.198936] usb 2-2: Product: LENNY2
[19278.198939] usb 2-2: Manufacturer: LENNY2
[19278.198942] usb 2-2: SerialNumber: 0123456789ABCDEF
[19278.956219] usb 2-2: USB disconnect, device number 56
[19279.876658] usb 2-2: new high-speed USB device number 60 using xhci_hcd
[19280.173109] usb 2-2: new high-speed USB device number 61 using xhci_hcd
[19280.302268] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2008
[19280.302292] usb 2-2: New USB device strings: Mfr=2, Product=3, SerialNumber=4
[19280.302307] usb 2-2: Product: LENNY2
[19280.302321] usb 2-2: Manufacturer: LENNY2
[19280.302335] usb 2-2: SerialNumber: 0123456789ABCDEF
[19280.778166] usb 2-2: USB disconnect, device number 61
[20936.521932] usb 2-2: new high-speed USB device number 62 using xhci_hcd
[20936.650661] usb 2-2: New USB device found, idVendor=0e8d, idProduct=2000
[20936.650667] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[20936.650671] usb 2-2: Product: MT65xx Preloader
[20936.650674] usb 2-2: Manufacturer: MediaTek
[20936.713163] cdc_acm 2-2:1.1: ttyACM0: USB ACM device
[20939.305493] usb 2-2: USB disconnect, device number 62
Benutzer@Pluto:~$