ubuntuusers.de

dmesg mit wlan

Autor:
scooter757
Datum:
14. September 2016 09:27
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
[    0.000000] microcode: CPU0 microcode updated early to revision 0x1c, date = 2015-02-26
[    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-36-generic (buildd@lcy01-01) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2) ) #55-Ubuntu SMP Thu Aug 11 18:01:55 UTC 2016 (Ubuntu 4.4.0-36.55-generic 4.4.16)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-36-generic root=UUID=5ce31f87-7c50-4eb8-8bc3-9c35273eacd6 ro ipv6.disable=1 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: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000ced2ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ced30000-0x00000000dae9efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000df9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041e5fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000041e600000-0x000000041effffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 2429AE1/2429AE1, BIOS G4ETA4WW (2.64 ) 03/31/2015
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x41e600 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 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0C0000000 mask FE0000000 write-back
[    0.000000]   4 base 0DC000000 mask FFC000000 uncachable
[    0.000000]   5 base 0DB000000 mask FFF000000 uncachable
[    0.000000]   6 base 100000000 mask F00000000 write-back
[    0.000000]   7 base 200000000 mask E00000000 write-back
[    0.000000]   8 base 400000000 mask FE0000000 write-back
[    0.000000]   9 base 41F000000 mask FFF000000 uncachable
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xced30 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[    0.000000] BRK [0x02200000, 0x02200fff] PGTABLE
[    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] RAMDISK: [mem 0x33b60000-0x35da7fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0120 000024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 0x00000000DAFFE170 0000C4 (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: FACP 0x00000000DAFE6000 00010C (v05 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: DSDT 0x00000000DAFE8000 0104B1 (v01 LENOVO TP-G4    00002640 INTL 20061109)
[    0.000000] ACPI: FACS 0x00000000DAF5A000 000040
[    0.000000] ACPI: SLIC 0x00000000DAFFD000 000176 (v01 LENOVO TP-G4    00002640 PTL  00000001)
[    0.000000] ACPI: TCPA 0x00000000DAFFC000 000032 (v02 PTL    LENOVO   06040000 LNVO 00000001)
[    0.000000] ACPI: SSDT 0x00000000DAFFB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
[    0.000000] ACPI: SSDT 0x00000000DAFFA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
[    0.000000] ACPI: SSDT 0x00000000DAFF9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
[    0.000000] ACPI: HPET 0x00000000DAFE4000 000038 (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: APIC 0x00000000DAFE3000 000098 (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: MCFG 0x00000000DAFE2000 00003C (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: ECDT 0x00000000DAFE1000 000052 (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: FPDT 0x00000000DAFE0000 000064 (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: ASF! 0x00000000DAFE7000 0000A5 (v32 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: UEFI 0x00000000DAFDF000 00003E (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: UEFI 0x00000000DAFDE000 000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
[    0.000000] ACPI: POAT 0x00000000DAFDD000 000055 (v03 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: SSDT 0x00000000DAFDC000 000CB5 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x00000000DAFDB000 000A83 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.000000] ACPI: DMAR 0x00000000DAFDA000 0000B8 (v01 INTEL  SNB      00000001 INTL 00000001)
[    0.000000] ACPI: UEFI 0x00000000DAFD9000 0002A6 (v01 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: DBG2 0x00000000DAFD8000 0000E9 (v00 LENOVO TP-G4    00002640 PTL  00000002)
[    0.000000] ACPI: DMI detected: Lenovo ThinkPad T530
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000041e5fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x41e5ec000-0x41e5f0fff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000041e5fffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x0000000040003fff]
[    0.000000]   node   0: [mem 0x0000000040005000-0x00000000ced2ffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000041e5fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000041e5fffff]
[    0.000000] On node 0 totalpages: 4116683
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13165 pages used for memmap
[    0.000000]   DMA32 zone: 842543 pages, LIFO batch:31
[    0.000000]   Normal zone: 51096 pages used for memmap
[    0.000000]   Normal zone: 3270144 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics stolen memory at 0xdba00000-0xdf9fffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-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 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
[    0.000000] PM: Registered nosave memory: [mem 0xced30000-0xdae9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdae9f000-0xdaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdafff000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
[    0.000000] e820: [mem 0xdfa00000-0xf7ffffff] 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:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 33 pages/cpu @ffff88041e200000 s98008 r8192 d28968 u262144
[    0.000000] pcpu-alloc: s98008 r8192 d28968 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 4052337
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-36-generic root=UUID=5ce31f87-7c50-4eb8-8bc3-9c35273eacd6 ro ipv6.disable=1 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: 16087600K/16466732K available (8394K kernel code, 1282K rwdata, 3944K rodata, 1480K init, 1292K bss, 379132K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:16640 nr_irqs:488 16
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2793.735 MHz processor
[    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5587.47 BogoMIPS (lpj=11174940)
[    0.000034] pid_max: default: 32768 minimum: 301
[    0.000039] ACPI: Core revision 20150930
[    0.009880] ACPI: 6 ACPI AML tables successfully acquired and loaded
[    0.009898] Security Framework initialized
[    0.009899] Yama: becoming mindful.
[    0.009912] AppArmor: AppArmor initialized
[    0.010726] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.014268] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.015853] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.015868] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.016081] Initializing cgroup subsys io
[    0.016085] Initializing cgroup subsys memory
[    0.016090] Initializing cgroup subsys devices
[    0.016092] Initializing cgroup subsys freezer
[    0.016093] Initializing cgroup subsys net_cls
[    0.016095] Initializing cgroup subsys perf_event
[    0.016097] Initializing cgroup subsys net_prio
[    0.016098] Initializing cgroup subsys hugetlb
[    0.016101] Initializing cgroup subsys pids
[    0.016119] CPU: Physical Processor ID: 0
[    0.016120] CPU: Processor Core ID: 0
[    0.016124] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.016125] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.016442] mce: CPU supports 7 MCE banks
[    0.016452] CPU0: Thermal monitoring enabled (TM1)
[    0.016457] process: using mwait in idle threads
[    0.016460] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.016461] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.016850] Freeing SMP alternatives memory: 28K (ffffffff820b4000 - ffffffff820bb000)
[    0.019536] ftrace: allocating 31996 entries in 125 pages
[    0.033021] smpboot: Max logical packages: 4
[    0.033024] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.033036] DMAR: Host address width 36
[    0.033037] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.033042] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
[    0.033044] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.033046] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
[    0.033047] DMAR: RMRR base: 0x000000da3ba000 end: 0x000000da3d0fff
[    0.033048] DMAR: RMRR base: 0x000000db800000 end: 0x000000df9fffff
[    0.033050] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.033051] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.033052] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.033328] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.033330] x2apic enabled
[    0.033338] Switched APIC routing to cluster x2apic.
[    0.033780] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.073471] TSC deadline timer enabled
[    0.073474] smpboot: CPU0: Intel(R) Core(TM) i5-3360M CPU @ 2.80GHz (family: 0x6, model: 0x3a, stepping: 0x9)
[    0.073493] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
[    0.073510] ... version:                3
[    0.073511] ... bit width:              48
[    0.073512] ... generic registers:      4
[    0.073513] ... value mask:             0000ffffffffffff
[    0.073513] ... max period:             0000ffffffffffff
[    0.073514] ... fixed-purpose events:   3
[    0.073515] ... event mask:             000000070000000f
[    0.074236] x86: Booting SMP configuration:
[    0.074238] .... node  #0, CPUs:      #1
[    0.076966] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.077040]  #2
[    0.077589] microcode: CPU2 microcode updated early to revision 0x1c, date = 2015-02-26
[    0.080059]  #3
[    0.082667] x86: Booted up 1 node, 4 CPUs
[    0.082669] smpboot: Total of 4 processors activated (22349.88 BogoMIPS)
[    0.085578] devtmpfs: initialized
[    0.088434] evm: security.selinux
[    0.088435] evm: security.SMACK64
[    0.088436] evm: security.SMACK64EXEC
[    0.088437] evm: security.SMACK64TRANSMUTE
[    0.088438] evm: security.SMACK64MMAP
[    0.088438] evm: security.ima
[    0.088439] evm: security.capability
[    0.088501] PM: Registering ACPI NVS region [mem 0xdae9f000-0xdaf9efff] (1048576 bytes)
[    0.088581] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.088656] pinctrl core: initialized pinctrl subsystem
[    0.088759] RTC time:  7:17:27, date: 09/14/16
[    0.088852] NET: Registered protocol family 16
[    0.098668] cpuidle: using governor ladder
[    0.114676] cpuidle: using governor menu
[    0.114684] PCCT header not found.
[    0.114783] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.114784] ACPI: bus type PCI registered
[    0.114786] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.114976] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.114979] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.114984] PCI: Using configuration type 1 for base access
[    0.115021] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.127011] ACPI: Added _OSI(Module Device)
[    0.127012] ACPI: Added _OSI(Processor Device)
[    0.127013] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.127014] ACPI: Added _OSI(Processor Aggregator Device)
[    0.127016] ACPI: Deleted _OSI(Windows 2012)
[    0.128165] ACPI : EC: EC description table is found, configuring boot EC
[    0.128178] ACPI : EC: EC started
[    0.131493] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.133825] ACPI: Dynamic OEM Table Load:
[    0.133834] ACPI: SSDT 0xFFFF88040BFCF000 000A01 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.134275] ACPI: Dynamic OEM Table Load:
[    0.134281] ACPI: SSDT 0xFFFF88040B934000 000303 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.134664] ACPI: Dynamic OEM Table Load:
[    0.134668] ACPI: SSDT 0xFFFF88040B994400 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.135416] ACPI: Interpreter enabled
[    0.135421] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150930/hwxface-580)
[    0.135424] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150930/hwxface-580)
[    0.135435] ACPI: (supports S0 S3 S4 S5)
[    0.135436] ACPI: Using IOAPIC for interrupt routing
[    0.135455] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.137847] ACPI: Power Resource [PUBS] (on)
[    0.138392] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
[    0.139159] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
[    0.141331] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
[    0.141401] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11)
[    0.141472] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *7 9 10 11)
[    0.141540] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
[    0.141606] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
[    0.141672] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 9 10 11)
[    0.141739] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 *10 11)
[    0.141805] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 *10 11)
[    0.141877] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[    0.141882] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.141966] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
[    0.142002] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.142005] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
[    0.142006] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
[    0.142007] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.142137] PCI host bridge to bus 0000:00
[    0.142139] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.142141] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.142142] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.142144] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff window]
[    0.142145] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff window]
[    0.142147] pci_bus 0000:00: root bus resource [bus 00-3f]
[    0.142153] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.142224] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.142235] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.142240] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.142243] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    0.142320] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.142350] pci 0000:00:14.0: reg 0x10: [mem 0xf2520000-0xf252ffff 64bit]
[    0.142407] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.142433] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.142469] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.142501] pci 0000:00:16.0: reg 0x10: [mem 0xf2535000-0xf253500f 64bit]
[    0.142562] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.142617] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
[    0.142644] pci 0000:00:16.3: reg 0x10: [io  0x50b0-0x50b7]
[    0.142652] pci 0000:00:16.3: reg 0x14: [mem 0xf253c000-0xf253cfff]
[    0.142767] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[    0.142792] pci 0000:00:19.0: reg 0x10: [mem 0xf2500000-0xf251ffff]
[    0.142800] pci 0000:00:19.0: reg 0x14: [mem 0xf253b000-0xf253bfff]
[    0.142809] pci 0000:00:19.0: reg 0x18: [io  0x5080-0x509f]
[    0.142856] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.142880] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.142913] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.142939] pci 0000:00:1a.0: reg 0x10: [mem 0xf253a000-0xf253a3ff]
[    0.143009] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.143034] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.143070] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.143096] pci 0000:00:1b.0: reg 0x10: [mem 0xf2530000-0xf2533fff 64bit]
[    0.143155] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.143189] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.143227] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.143349] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.143423] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.143548] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.143620] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
[    0.143745] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.143781] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.143822] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.143849] pci 0000:00:1d.0: reg 0x10: [mem 0xf2539000-0xf25393ff]
[    0.143919] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.143945] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.143980] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
[    0.144124] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.144147] pci 0000:00:1f.2: reg 0x10: [io  0x50a8-0x50af]
[    0.144154] pci 0000:00:1f.2: reg 0x14: [io  0x50bc-0x50bf]
[    0.144162] pci 0000:00:1f.2: reg 0x18: [io  0x50a0-0x50a7]
[    0.144169] pci 0000:00:1f.2: reg 0x1c: [io  0x50b8-0x50bb]
[    0.144176] pci 0000:00:1f.2: reg 0x20: [io  0x5060-0x507f]
[    0.144184] pci 0000:00:1f.2: reg 0x24: [mem 0xf2538000-0xf25387ff]
[    0.144215] pci 0000:00:1f.2: PME# supported from D3hot
[    0.144263] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.144279] pci 0000:00:1f.3: reg 0x10: [mem 0xf2534000-0xf25340ff 64bit]
[    0.144299] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.144497] pci 0000:02:00.0: [1180:e822] type 00 class 0x088001
[    0.144541] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
[    0.144563] pci 0000:02:00.0: reg 0x10: [mem 0xf1d00000-0xf1d000ff]
[    0.144736] pci 0000:02:00.0: supports D1 D2
[    0.144737] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.150768] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.150772] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    0.150777] pci 0000:00:1c.0:   bridge window [mem 0xf1d00000-0xf24fffff]
[    0.150785] pci 0000:00:1c.0:   bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
[    0.150976] pci 0000:03:00.0: [8086:0085] type 00 class 0x028000
[    0.151265] pci 0000:03:00.0: reg 0x10: [mem 0xf1c00000-0xf1c01fff 64bit]
[    0.151900] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.158829] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.158838] pci 0000:00:1c.1:   bridge window [mem 0xf1c00000-0xf1cfffff]
[    0.158925] acpiphp: Slot [1] registered
[    0.158935] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
[    0.158939] pci 0000:00:1c.2:   bridge window [io  0x3000-0x3fff]
[    0.158943] pci 0000:00:1c.2:   bridge window [mem 0xf1400000-0xf1bfffff]
[    0.158951] pci 0000:00:1c.2:   bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
[    0.159696] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.159742] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[    0.159831] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.159833] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.159835] vgaarb: loaded
[    0.159836] vgaarb: bridge control possible 0000:00:02.0
[    0.160047] SCSI subsystem initialized
[    0.160086] libata version 3.00 loaded.
[    0.160103] ACPI: bus type USB registered
[    0.160117] usbcore: registered new interface driver usbfs
[    0.160124] usbcore: registered new interface driver hub
[    0.160139] usbcore: registered new device driver usb
[    0.160258] PCI: Using ACPI for IRQ routing
[    0.161946] PCI: pci_cache_line_size set to 64 bytes
[    0.162369] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.162370] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.162371] e820: reserve RAM buffer [mem 0xced30000-0xcfffffff]
[    0.162372] e820: reserve RAM buffer [mem 0x41e600000-0x41fffffff]
[    0.162466] NetLabel: Initializing
[    0.162467] NetLabel:  domain hash size = 128
[    0.162467] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.162477] NetLabel:  unlabeled traffic allowed by default
[    0.162549] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.162553] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.164569] amd_nb: Cannot enumerate AMD northbridges
[    0.164585] clocksource: Switched to clocksource hpet
[    0.169619] AppArmor: AppArmor Filesystem Enabled
[    0.169679] pnp: PnP ACPI init
[    0.170030] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.170033] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
[    0.170034] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
[    0.170036] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
[    0.170037] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
[    0.170039] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
[    0.170040] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
[    0.170041] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
[    0.170043] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
[    0.170045] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
[    0.170046] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
[    0.170048] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
[    0.170049] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
[    0.170051] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[    0.170052] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved
[    0.170054] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
[    0.170055] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
[    0.170059] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.170131] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
[    0.170148] system 00:01: [io  0x0400-0x047f] could not be reserved
[    0.170149] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.170151] system 00:01: [io  0x0800-0x080f] has been reserved
[    0.170152] system 00:01: [io  0x15e0-0x15ef] has been reserved
[    0.170154] system 00:01: [io  0x1600-0x167f] has been reserved
[    0.170156] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.170157] system 00:01: [mem 0xfffff000-0xffffffff] has been reserved
[    0.170159] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.170160] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.170162] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.170163] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.170165] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
[    0.170167] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.170208] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.170226] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.170244] pnp 00:04: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
[    0.170283] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
[    0.170677] pnp: PnP ACPI: found 6 devices
[    0.177133] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.177178] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.177183] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
[    0.177189] pci 0000:00:1c.0:   bridge window [mem 0xf1d00000-0xf24fffff]
[    0.177194] pci 0000:00:1c.0:   bridge window [mem 0xf0400000-0xf0bfffff 64bit pref]
[    0.177202] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.177209] pci 0000:00:1c.1:   bridge window [mem 0xf1c00000-0xf1cfffff]
[    0.177221] pci 0000:00:1c.2: PCI bridge to [bus 04-0b]
[    0.177224] pci 0000:00:1c.2:   bridge window [io  0x3000-0x3fff]
[    0.177230] pci 0000:00:1c.2:   bridge window [mem 0xf1400000-0xf1bfffff]
[    0.177236] pci 0000:00:1c.2:   bridge window [mem 0xf0c00000-0xf13fffff 64bit pref]
[    0.177245] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.177246] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.177248] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.177249] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff window]
[    0.177250] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff window]
[    0.177252] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
[    0.177253] pci_bus 0000:02: resource 1 [mem 0xf1d00000-0xf24fffff]
[    0.177254] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref]
[    0.177256] pci_bus 0000:03: resource 1 [mem 0xf1c00000-0xf1cfffff]
[    0.177257] pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
[    0.177258] pci_bus 0000:04: resource 1 [mem 0xf1400000-0xf1bfffff]
[    0.177260] pci_bus 0000:04: resource 2 [mem 0xf0c00000-0xf13fffff 64bit pref]
[    0.177287] NET: Registered protocol family 2
[    0.177443] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.177626] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.177728] TCP: Hash tables configured (established 131072 bind 65536)
[    0.177755] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.177796] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.177870] NET: Registered protocol family 1
[    0.177883] pci 0000:00:02.0: Video device with shadowed ROM
[    0.178340] PCI: CLS 64 bytes, default 64
[    0.178387] Trying to unpack rootfs image as initramfs...
[    0.635114] Freeing initrd memory: 35104K (ffff880033b60000 - ffff880035da8000)
[    0.635187] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.635191] software IO TLB [mem 0xcad30000-0xced30000] (64MB) mapped at [ffff8800cad30000-ffff8800ced2ffff]
[    0.635258] RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[    0.635259] hw unit of domain pp0-core 2^-16 Joules
[    0.635260] hw unit of domain package 2^-16 Joules
[    0.635261] hw unit of domain pp1-gpu 2^-16 Joules
[    0.635401] Scanning for low memory corruption every 60 seconds
[    0.635713] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.635745] audit: initializing netlink subsys (disabled)
[    0.635760] audit: type=2000 audit(1473837447.636:1): initialized
[    0.636120] Initialise system trusted keyring
[    0.636211] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.637399] zbud: loaded
[    0.637574] VFS: Disk quotas dquot_6.6.0
[    0.637600] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.637805] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.638005] fuse init (API version 7.23)
[    0.638118] Key type big_key registered
[    0.638139] Allocating IMA MOK and blacklist keyrings.
[    0.638557] Key type asymmetric registered
[    0.638559] Asymmetric key parser 'x509' registered
[    0.638587] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.638616] io scheduler noop registered
[    0.638619] io scheduler deadline registered (default)
[    0.638642] io scheduler cfq registered
[    0.639079] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.639085] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.639108] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
[    0.639109] vesafb: scrolling: redraw
[    0.639110] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.639120] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90002000000, using 8128k, total 8128k
[    0.639209] Console: switching to colour frame buffer device 240x67
[    0.639233] fb0: VESA VGA frame buffer device
[    0.639247] intel_idle: MWAIT substates: 0x21120
[    0.639248] intel_idle: v0.4.1 model 0x3A
[    0.639249] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.639756] ACPI: AC Adapter [AC] (on-line)
[    0.639806] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.639906] ACPI: Lid Switch [LID]
[    0.639936] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    0.639939] ACPI: Sleep Button [SLPB]
[    0.639973] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.639974] ACPI: Power Button [PWRF]
[    0.641088] thermal LNXTHERM:00: registered as thermal_zone0
[    0.641090] ACPI: Thermal Zone [THM0] (52 C)
[    0.641119] GHES: HEST is not enabled!
[    0.641210] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.648287] ACPI: Battery Slot [BAT0] (battery present)
[    0.663111] 0000:00:16.3: ttyS4 at I/O 0x50b0 (irq = 19, base_baud = 115200) is a 16550A
[    0.663370] Linux agpgart interface v0.103
[    0.684629] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
[    0.807821] brd: module loaded
[    0.808879] loop: module loaded
[    0.809071] libphy: Fixed MDIO Bus: probed
[    0.809074] tun: Universal TUN/TAP device driver, 1.6
[    0.809074] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.809111] PPP generic driver version 2.4.2
[    0.809161] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.809164] ehci-pci: EHCI PCI platform driver
[    0.809276] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.809282] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.809296] ehci-pci 0000:00:1a.0: debug port 2
[    0.813189] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.813207] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf253a000
[    0.824578] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.824614] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.824616] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.824617] usb usb1: Product: EHCI Host Controller
[    0.824618] usb usb1: Manufacturer: Linux 4.4.0-36-generic ehci_hcd
[    0.824619] usb usb1: SerialNumber: 0000:00:1a.0
[    0.824808] hub 1-0:1.0: USB hub found
[    0.824815] hub 1-0:1.0: 3 ports detected
[    0.825003] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.825008] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.825021] ehci-pci 0000:00:1d.0: debug port 2
[    0.828905] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.828919] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf2539000
[    0.840665] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.840737] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.840740] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.840742] usb usb2: Product: EHCI Host Controller
[    0.840743] usb usb2: Manufacturer: Linux 4.4.0-36-generic ehci_hcd
[    0.840744] usb usb2: SerialNumber: 0000:00:1d.0
[    0.840969] hub 2-0:1.0: USB hub found
[    0.840983] hub 2-0:1.0: 3 ports detected
[    0.841166] ehci-platform: EHCI generic platform driver
[    0.841185] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.841192] ohci-pci: OHCI PCI platform driver
[    0.841202] ohci-platform: OHCI generic platform driver
[    0.841212] uhci_hcd: USB Universal Host Controller Interface driver
[    0.841324] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.841329] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    0.842420] xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x0000b930
[    0.842426] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.842516] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.842518] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.842519] usb usb3: Product: xHCI Host Controller
[    0.842520] usb usb3: Manufacturer: Linux 4.4.0-36-generic xhci-hcd
[    0.842521] usb usb3: SerialNumber: 0000:00:14.0
[    0.842719] hub 3-0:1.0: USB hub found
[    0.842732] hub 3-0:1.0: 4 ports detected
[    0.843073] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.843076] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    0.843106] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.843107] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.843109] usb usb4: Product: xHCI Host Controller
[    0.843110] usb usb4: Manufacturer: Linux 4.4.0-36-generic xhci-hcd
[    0.843111] usb usb4: SerialNumber: 0000:00:14.0
[    0.843292] hub 4-0:1.0: USB hub found
[    0.843306] hub 4-0:1.0: 4 ports detected
[    0.843711] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.845612] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.845616] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.845841] mousedev: PS/2 mouse device common for all mice
[    0.846133] rtc_cmos 00:02: RTC can wake from S4
[    0.846339] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    0.846384] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.846391] i2c /dev entries driver
[    0.846438] device-mapper: uevent: version 1.0.3
[    0.846500] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    0.846517] Intel P-state driver initializing.
[    0.846769] ledtrig-cpu: registered to indicate activity on CPUs
[    0.847290] IPv6: Loaded, but administratively disabled, reboot required to enable
[    0.847300] NET: Registered protocol family 17
[    0.847328] Key type dns_resolver registered
[    0.847329] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    0.847726] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1c
[    0.847740] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1c
[    0.847751] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1c
[    0.847768] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1c
[    0.847839] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.848108] registered taskstats version 1
[    0.848136] Loading compiled-in X.509 certificates
[    0.849930] Loaded X.509 cert 'Build time autogenerated kernel key: 181cd957879f68b474ab1d0c92722cd44e756f77'
[    0.849972] zswap: loaded using pool lzo/zbud
[    0.853025] Key type trusted registered
[    0.855209] Key type encrypted registered
[    0.855216] AppArmor: AppArmor sha1 policy hashing enabled
[    1.092777] evm: HMAC attrs: 0x1
[    1.093261]   Magic number: 0:530:268
[    1.093400] rtc_cmos 00:02: setting system clock to 2016-09-14 07:17:28 UTC (1473837448)
[    1.093491] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.093492] EDD information not available.
[    1.093552] PM: Hibernation image not present or could not be loaded.
[    1.094402] Freeing unused kernel memory: 1480K (ffffffff81f42000 - ffffffff820b4000)
[    1.094403] Write protecting the kernel read-only data: 14336k
[    1.094753] Freeing unused kernel memory: 1832K (ffff880001836000 - ffff880001a00000)
[    1.095067] Freeing unused kernel memory: 152K (ffff880001dda000 - ffff880001e00000)
[    1.103174] random: systemd-udevd urandom read with 8 bits of entropy available
[    1.136580] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.140939] FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
[    1.152583] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.152900] wmi: Mapper loaded
[    1.161263] [drm] Initialized drm 1.1.0 20060810
[    1.164790] sdhci: Secure Digital Host Controller Interface driver
[    1.164793] sdhci: Copyright(c) Pierre Ossman
[    1.166349] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e822] (rev 7)
[    1.166825] sdhci-pci 0000:02:00.0: No vmmc regulator found
[    1.166828] sdhci-pci 0000:02:00.0: No vqmmc regulator found
[    1.167487] pps_core: LinuxPPS API ver. 1 registered
[    1.167489] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.168316] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
[    1.168884] PTP clock support registered
[    1.173059] ahci 0000:00:1f.2: version 3.0
[    1.173207] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    1.173994] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.173996] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.188713] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x13 impl SATA mode
[    1.188718] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pio slum part ems sxs apst 
[    1.206985] scsi host0: ahci
[    1.207490] scsi host1: ahci
[    1.207596] scsi host2: ahci
[    1.209100] scsi host3: ahci
[    1.212339] scsi host4: ahci
[    1.212471] scsi host5: ahci
[    1.212517] ata1: SATA max UDMA/133 abar m2048@0xf2538000 port 0xf2538100 irq 27
[    1.212520] ata2: SATA max UDMA/133 abar m2048@0xf2538000 port 0xf2538180 irq 27
[    1.212521] ata3: DUMMY
[    1.212523] ata4: DUMMY
[    1.212525] ata5: SATA max UDMA/133 abar m2048@0xf2538000 port 0xf2538300 irq 27
[    1.212526] ata6: DUMMY
[    1.212769] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.269327] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.269332] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.269613] hub 1-1:1.0: USB hub found
[    1.269823] hub 1-1:1.0: 6 ports detected
[    1.284987] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.284991] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.285275] hub 2-1:1.0: USB hub found
[    1.285355] hub 2-1:1.0: 8 ports detected
[    1.413106] e1000e 0000:00:19.0 eth0: registered PHC clock
[    1.413109] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:0d:cc:33
[    1.413110] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    1.413145] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 1000FF-0FF
[    1.414153] [drm] Memory usable by graphics device = 2048M
[    1.414156] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
[    1.414157] fb: switching to inteldrmfb from VESA VGA
[    1.414177] Console: switching to colour dummy device 80x25
[    1.414387] [drm] Replacing VGA console driver
[    1.414536] e1000e 0000:00:19.0 enp0s25: renamed from eth0
[    1.420707] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.420711] [drm] Driver supports precise vblank timestamp query.
[    1.421591] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.454593] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
[    1.455330] acpi device:00: registered as cooling_device4
[    1.455381] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
[    1.455460] [drm] Initialized i915 1.6.0 20151010 for 0000:00:02.0 on minor 0
[    1.536657] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.538398] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[    1.538406] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    1.538410] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    1.540204] ata1.00: ATA-8: WDC WD3200BEVT-08A23T1, 02.01A02, max UDMA/133
[    1.540212] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.540597] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    1.542072] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[    1.542080] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    1.542084] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[    1.543837] ata1.00: configured for UDMA/133
[    1.544125] scsi 0:0:0:0: Direct-Access     ATA      WDC WD3200BEVT-0 1A02 PQ: 0 ANSI: 5
[    1.544355] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    1.544365] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.544388] sd 0:0:0:0: [sda] Write Protect is off
[    1.544391] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.544405] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.582926]  sda: sda1
[    1.583294] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.632641] tsc: Refined TSC clocksource calibration: 2793.657 MHz
[    1.632651] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2844d8e50a6, max_idle_ns: 440795257106 ns
[    1.639987] usb 1-1.1: New USB device found, idVendor=17ef, idProduct=1003
[    1.639990] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.639992] usb 1-1.1: Product: Integrated Smart Card Reader
[    1.639993] usb 1-1.1: Manufacturer: Lenovo
[    1.648630] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
[    1.712632] usb 1-1.6: new high-speed USB device number 4 using ehci-pci
[    1.813786] usb 1-1.6: New USB device found, idVendor=04f2, idProduct=b2ea
[    1.813789] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.813790] usb 1-1.6: Product: Integrated Camera
[    1.813792] usb 1-1.6: Manufacturer: Chicony Electronics Co., Ltd.
[    1.864652] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.866298] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[    1.866307] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    1.866490] ata2.00: ATA-8: OCZ-ARC100, 1.01, max UDMA/133
[    1.866493] ata2.00: 937703088 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    1.868886] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[    1.868894] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    1.869081] ata2.00: configured for UDMA/133
[    1.869315] scsi 1:0:0:0: Direct-Access     ATA      OCZ-ARC100       1.01 PQ: 0 ANSI: 5
[    1.869593] sd 1:0:0:0: [sdb] 937703088 512-byte logical blocks: (480 GB/447 GiB)
[    1.869614] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    1.869683] sd 1:0:0:0: [sdb] Write Protect is off
[    1.869686] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.869709] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.870505]  sdb: sdb1 sdb2 < sdb5 sdb6 sdb7 >
[    1.870841] sd 1:0:0:0: [sdb] Attached SCSI disk
[    1.920242] psmouse serio1: synaptics: queried max coordinates: x [..5470], y [..4498]
[    1.921430] fbcon: inteldrmfb (fb0) is primary device
[    1.921527] Console: switching to colour frame buffer device 240x67
[    1.921572] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    1.982797] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd047b3/0xb40000/0xa0000/0x0, board id: 0, fw id: 920262
[    1.982819] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
[    2.022817] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    2.188622] ata5: SATA link down (SStatus 0 SControl 300)
[    2.632819] clocksource: Switched to clocksource tsc
[    6.250714] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
[    6.454949] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input7
[    7.551143] EXT4-fs (sdb5): mounted filesystem with ordered data mode. Opts: (null)
[    7.620567] 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)
[    7.620662] systemd[1]: Detected architecture x86-64.
[    7.620815] systemd[1]: Set hostname to <devLaptop>.
[    7.687784] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    7.687821] systemd[1]: Reached target Encrypted Volumes.
[    7.687841] systemd[1]: Listening on Syslog Socket.
[    7.687849] systemd[1]: Reached target User and Group Name Lookups.
[    7.687854] systemd[1]: Reached target Remote File Systems (Pre).
[    7.687915] systemd[1]: Created slice User and Session Slice.
[    7.687941] systemd[1]: Listening on udev Control Socket.
[    7.687958] systemd[1]: Listening on udev Kernel Socket.
[    7.687976] systemd[1]: Listening on Journal Socket (/dev/log).
[    7.688059] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    7.688084] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    7.688108] systemd[1]: Listening on Journal Socket.
[    7.688121] systemd[1]: Reached target Remote File Systems.
[    7.688135] systemd[1]: Listening on fsck to fsckd communication Socket.
[    7.688179] systemd[1]: Created slice System Slice.
[    7.708599] systemd[1]: Mounting POSIX Message Queue File System...
[    7.709046] systemd[1]: Starting Uncomplicated firewall...
[    7.709387] systemd[1]: Mounting Debug File System...
[    7.709414] systemd[1]: Reached target Slices.
[    7.709868] systemd[1]: Starting Set console keymap...
[    7.710307] systemd[1]: Started Read required files in advance.
[    7.712665] systemd[1]: Starting Load Kernel Modules...
[    7.713047] systemd[1]: Started Braille Device Support.
[    7.713596] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    7.715177] systemd[1]: Mounting Huge Pages File System...
[    7.715446] systemd[1]: Listening on Journal Audit Socket.
[    7.715882] systemd[1]: Starting Journal Service...
[    7.717133] systemd[1]: Started Uncomplicated firewall.
[    7.718674] systemd[1]: Mounted POSIX Message Queue File System.
[    7.718707] systemd[1]: Mounted Huge Pages File System.
[    7.718721] systemd[1]: Mounted Debug File System.
[    7.720567] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    7.731421] lp: driver loaded but no devices found
[    7.737362] ppdev: user-space parallel port driver
[    7.739931] systemd[1]: Starting Create Static Device Nodes in /dev...
[    7.741473] systemd[1]: Started Load Kernel Modules.
[    7.744799] systemd[1]: Starting Apply Kernel Variables...
[    7.745264] systemd[1]: Mounting FUSE Control File System...
[    7.749057] systemd[1]: Mounted FUSE Control File System.
[    7.756662] systemd[1]: Started Apply Kernel Variables.
[    7.757339] systemd[1]: Started Set console keymap.
[    7.761240] systemd[1]: Started Create Static Device Nodes in /dev.
[    7.763075] systemd[1]: Starting udev Kernel Device Manager...
[    7.766946] systemd[1]: Started Journal Service.
[    7.848283] EXT4-fs (sdb5): re-mounted. Opts: errors=remount-ro
[    7.881804] systemd-journald[968]: Received request to flush runtime journal from PID 1
[    7.985137] audit: type=1400 audit(1473837455.387:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/ubuntu-core-launcher" pid=1325 comm="apparmor_parser"
[    7.991456] audit: type=1400 audit(1473837455.391:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1322 comm="apparmor_parser"
[    7.991467] audit: type=1400 audit(1473837455.391:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1322 comm="apparmor_parser"
[    7.991473] audit: type=1400 audit(1473837455.391:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1322 comm="apparmor_parser"
[    7.991479] audit: type=1400 audit(1473837455.391:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1322 comm="apparmor_parser"
[    7.992235] audit: type=1400 audit(1473837455.391:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1321 comm="apparmor_parser"
[    7.992244] audit: type=1400 audit(1473837455.391:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=1321 comm="apparmor_parser"
[    7.995723] audit: type=1400 audit(1473837455.395:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1345 comm="apparmor_parser"
[    7.997320] audit: type=1400 audit(1473837455.399:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1346 comm="apparmor_parser"
[    7.997330] audit: type=1400 audit(1473837455.399:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=1346 comm="apparmor_parser"
[    8.118487] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    8.128077] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\_SB_.PCI0.LPC_.PMIO) (20150930/utaddress-254)
[    8.128084] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.128091] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB_.PCI0.LPC_.LPIO) (20150930/utaddress-254)
[    8.128096] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.128097] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB_.PCI0.LPC_.LPIO) (20150930/utaddress-254)
[    8.128101] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.128103] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB_.PCI0.LPC_.LPIO) (20150930/utaddress-254)
[    8.128106] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    8.128107] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    8.183607] Non-volatile memory driver v1.3
[    8.190939] thinkpad_acpi: ThinkPad ACPI Extras v0.25
[    8.190941] thinkpad_acpi: http://ibm-acpi.sf.net/
[    8.190943] thinkpad_acpi: ThinkPad BIOS G4ETA4WW (2.64 ), EC unknown
[    8.190944] thinkpad_acpi: Lenovo ThinkPad T530, model 2429AE1
[    8.195351] thinkpad_acpi: detected a 16-level brightness capable ThinkPad
[    8.195471] thinkpad_acpi: radio switch found; radios are enabled
[    8.195565] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[    8.195567] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[    8.198070] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
[    8.200859] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
[    8.205420] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
[    8.230802] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    8.230806] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    8.230809] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=2 (0x15/0x1b/0x0/0x0/0x0)
[    8.230810] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    8.230812] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    8.230814] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    8.230816] snd_hda_codec_realtek hdaudioC0D0:      Dock Mic=0x19
[    8.230818] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    8.230931] random: nonblocking pool is initialized
[    8.250348] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    8.250415] input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    8.250476] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    8.250537] input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    8.250596] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    8.250655] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    8.250716] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    8.266761] Intel(R) Wireless WiFi driver for Linux
[    8.266763] Copyright(c) 2003- 2015 Intel Corporation
[    8.266932] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[    8.269953] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[    8.275500] media: Linux media interface: v0.10
[    8.282382] Linux video capture interface: v2.00
[    8.294936] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[    8.294940] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    8.294942] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[    8.294944] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6205 AGN, REV=0xB0
[    8.295279] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[    8.296680] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2ea)
[    8.301728] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input16
[    8.302075] usbcore: registered new interface driver uvcvideo
[    8.302077] USB Video Class driver (1.1.1)
[    8.329127] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    8.366769] AVX version of gcm_enc/dec engaged.
[    8.366772] AES CTR mode by8 optimization enabled
[    8.481437] [drm:intel_set_pch_fifo_underrun_reporting [i915]] *ERROR* uncleared pch fifo underrun on pch transcoder A
[    8.481464] [drm:intel_pch_fifo_underrun_irq_handler [i915]] *ERROR* PCH transcoder A FIFO underrun
[    8.488952] intel_rapl: Found RAPL domain package
[    8.488955] intel_rapl: Found RAPL domain core
[    8.488956] intel_rapl: Found RAPL domain uncore
[    8.488960] intel_rapl: RAPL package 0 domain package locked by BIOS
[    8.562945] iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
[    8.587641] cfg80211: World regulatory domain updated:
[    8.587644] cfg80211:  DFS Master region: unset
[    8.587645] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[    8.587646] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[    8.587647] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[    8.587648] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[    8.587649] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[    8.587651] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[    8.587652] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[    8.587653] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[    8.587653] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   98.143391] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   98.150180] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   98.150279] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[   98.423520] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   98.430309] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled
[   98.430398] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0
[  105.317511] wlp3s0: authenticate with f0:f2:49:fd:3d:c8
[  105.320504] wlp3s0: send auth to f0:f2:49:fd:3d:c8 (try 1/3)
[  105.322289] wlp3s0: authenticated
[  105.325711] wlp3s0: associate with f0:f2:49:fd:3d:c8 (try 1/3)
[  105.340161] wlp3s0: RX AssocResp from f0:f2:49:fd:3d:c8 (capab=0xc11 status=0 aid=2)
[  105.344865] wlp3s0: associated
[  105.364939] cfg80211: Regulatory domain changed to country: DE
[  105.364942] cfg80211:  DFS Master region: ETSI
[  105.364943] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[  105.364945] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[  105.364946] cfg80211:   (5150000 KHz - 5250000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[  105.364947] cfg80211:   (5250000 KHz - 5350000 KHz @ 80000 KHz, 200000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[  105.364949] cfg80211:   (5470000 KHz - 5725000 KHz @ 160000 KHz), (N/A, 2698 mBm), (0 s)
[  105.364950] cfg80211:   (57000000 KHz - 66000000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[  139.902341] iwlwifi 0000:03:00.0: RF_KILL bit toggled to disable radio.
[  139.902540] wlp3s0: deauthenticating from f0:f2:49:fd:3d:c8 by local choice (Reason: 3=DEAUTH_LEAVING)
[  139.903752] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903756] wlp3s0: HW problem - can not stop rx aggregation for f0:f2:49:fd:3d:c8 tid 0
[  139.903782] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903784] wlp3s0: failed to remove key (0, f0:f2:49:fd:3d:c8) from hardware (-5)
[  139.903843] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903848] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903852] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903859] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903864] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903878] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.903879] wlp3s0: failed to remove key (1, ff:ff:ff:ff:ff:ff) from hardware (-5)
[  139.904055] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.904088] iwlwifi 0000:03:00.0: Not sending command - RF KILL
[  139.922438] cfg80211: World regulatory domain updated:
[  139.922442] cfg80211:  DFS Master region: unset
[  139.922443] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[  139.922446] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[  139.922448] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[  139.922449] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[  139.922451] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[  139.922454] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[  139.922455] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[  139.922457] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[  139.922459] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)