ubuntuusers.de

dmesg.txt

Autor:
dock1978
Datum:
3. April 2015 11: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
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-48-generic (buildd@orlo) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #80-Ubuntu SMP Thu Mar 12 11:16:15 UTC 2015 (Ubuntu 3.13.0-48.80-generic 3.13.11-ckt16)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-48-generic root=UUID=7a87e69a-9bc4-45cf-8f47-6a59a3515151 ro quiet splash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000d8000-0x00000000000dffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bdaa0fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdaa1000-0x00000000bdaa6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bdaa7000-0x00000000bdbbbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdbbc000-0x00000000bdc0efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bdc0f000-0x00000000bdd07fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdd08000-0x00000000bdf0efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bdf0f000-0x00000000bdf18fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdf19000-0x00000000bdf1efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bdf1f000-0x00000000bdf63fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdf64000-0x00000000bdf9efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bdf9f000-0x00000000bdfdffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bdfe0000-0x00000000bdffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bdfff000-0x00000000bdffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.5 present.
[    0.000000] DMI: TOSHIBA Satellite A500/KSKAA, BIOS V1.50 10/28/2009
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-DBFFF uncachable
[    0.000000]   DC000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 100000000 mask FC0000000 write-back
[    0.000000]   3 base 0FFE00000 mask FFFF80000 write-protect
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbe000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f67f0-0x000f67ff] mapped at [ffff8800000f67f0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
[    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
[    0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x13fe00000-0x13fffffff]
[    0.000000]  [mem 0x13fe00000-0x13fffffff] page 2M
[    0.000000] BRK [0x01fe4000, 0x01fe4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x13c000000-0x13fdfffff]
[    0.000000]  [mem 0x13c000000-0x13fdfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x13bffffff]
[    0.000000]  [mem 0x100000000-0x13bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbdaa0fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbd9fffff] page 2M
[    0.000000]  [mem 0xbda00000-0xbdaa0fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbdaa7000-0xbdbbbfff]
[    0.000000]  [mem 0xbdaa7000-0xbdbbbfff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbdc0f000-0xbdd07fff]
[    0.000000]  [mem 0xbdc0f000-0xbdd07fff] page 4k
[    0.000000] BRK [0x01fe5000, 0x01fe5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xbdf0f000-0xbdf18fff]
[    0.000000]  [mem 0xbdf0f000-0xbdf18fff] page 4k
[    0.000000] BRK [0x01fe6000, 0x01fe6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xbdf1f000-0xbdf63fff]
[    0.000000]  [mem 0xbdf1f000-0xbdf63fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbdf9f000-0xbdfdffff]
[    0.000000]  [mem 0xbdf9f000-0xbdfdffff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbdfff000-0xbdffffff]
[    0.000000]  [mem 0xbdfff000-0xbdffffff] page 4k
[    0.000000] RAMDISK: [mem 0x35b48000-0x36d9bfff]
[    0.000000] ACPI: RSDP 00000000000f6730 000024 (v02 TOSCPL)
[    0.000000] ACPI: XSDT 00000000bdff2abe 000064 (v01 TOSCPL TOSCPL00 06040000  LTP 00000000)
[    0.000000] ACPI: FACP 00000000bdfe2000 0000F4 (v03 TOSCPL CRESTLNE 06040000 ALAN 00000001)
[    0.000000] ACPI: DSDT 00000000bdfe3000 00C052 (v02 Intel  CANTIGA  06040000 INTL 20060608)
[    0.000000] ACPI: FACS 00000000bdf9efc0 000040
[    0.000000] ACPI: HPET 00000000bdffed14 000038 (v01 INTEL  CRESTLNE 06040000 LOHR 0000005A)
[    0.000000] ACPI: MCFG 00000000bdffed4c 00003C (v01 INTEL  CRESTLNE 06040000 LOHR 0000005A)
[    0.000000] ACPI: SLIC 00000000bdffed88 000176 (v01 TOSCPL TOSCPL00 06040000 LOHR 00000000)
[    0.000000] ACPI: OSFR 00000000bdffeefe 000072 (v01 TOSHIB A+2nd ID 06040000 TASM 04010000)
[    0.000000] ACPI: APIC 00000000bdffef70 000068 (v01 PTLTD  ? APIC   06040000  LTP 00000000)
[    0.000000] ACPI: BOOT 00000000bdffefd8 000028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
[    0.000000] ACPI: SSDT 00000000bdfe1000 000655 (v01  PmRef    CpuPm 00003000 INTL 20050624)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x13fffffff]
[    0.000000]   NODE_DATA [mem 0x13fff8000-0x13fffcfff]
[    0.000000]  [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013b600000-ffff88013f5fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x13fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0xbdaa0fff]
[    0.000000]   node   0: [mem 0xbdaa7000-0xbdbbbfff]
[    0.000000]   node   0: [mem 0xbdc0f000-0xbdd07fff]
[    0.000000]   node   0: [mem 0xbdf0f000-0xbdf18fff]
[    0.000000]   node   0: [mem 0xbdf1f000-0xbdf63fff]
[    0.000000]   node   0: [mem 0xbdf9f000-0xbdfdffff]
[    0.000000]   node   0: [mem 0xbdfff000-0xbdffffff]
[    0.000000]   node   0: [mem 0x100000000-0x13fffffff]
[    0.000000] On node 0 totalpages: 1039582
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12085 pages used for memmap
[    0.000000]   DMA32 zone: 773440 pages, LIFO batch:31
[    0.000000]   Normal zone: 4096 pages used for memmap
[    0.000000]   Normal zone: 262144 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    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] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    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 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000d7fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000d8000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000e3fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e4000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbdaa1000-0xbdaa6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbdbbc000-0xbdc0efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbdd08000-0xbdf0efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbdf19000-0xbdf1efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbdf64000-0xbdf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbdfe0000-0xbdffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbe000000-0xffffffff]
[    0.000000] e820: [mem 0xbe000000-0xffffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s82368 r8192 d24128 u1048576
[    0.000000] pcpu-alloc: s82368 r8192 d24128 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1023316
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-48-generic root=UUID=7a87e69a-9bc4-45cf-8f47-6a59a3515151 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3991096K/4158328K available (7385K kernel code, 1145K rwdata, 3408K rodata, 1336K init, 1444K bss, 167232K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-1.
[    0.000000] NR_IRQS:16640 nr_irqs:512 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 16777216 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2194.452 MHz processor
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 4388.90 BogoMIPS (lpj=8777808)
[    0.004007] pid_max: default: 32768 minimum: 301
[    0.004047] Security Framework initialized
[    0.004071] AppArmor: AppArmor initialized
[    0.004073] Yama: becoming mindful.
[    0.004500] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.006664] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.008302] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.008315] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.008635] Initializing cgroup subsys memory
[    0.008645] Initializing cgroup subsys devices
[    0.008648] Initializing cgroup subsys freezer
[    0.008650] Initializing cgroup subsys blkio
[    0.008652] Initializing cgroup subsys perf_event
[    0.008655] Initializing cgroup subsys hugetlb
[    0.008685] CPU: Physical Processor ID: 0
[    0.008687] CPU: Processor Core ID: 0
[    0.008689] mce: CPU supports 6 MCE banks
[    0.008697] CPU0: Thermal monitoring enabled (TM2)
[    0.008706] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[    0.008706] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
[    0.008706] tlb_flushall_shift: -1
[    0.008825] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
[    0.010537] ACPI: Core revision 20131115
[    0.010540] TOSHIBA Satellite detected - force copy of DSDT to local memory
[    0.010658] ACPI: Forced DSDT copy: length 0x0C052 copied locally, original unmapped
[    0.014732] ACPI: All ACPI Tables successfully acquired
[    0.016011] ftrace: allocating 28562 entries in 112 pages
[    0.028543] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.070623] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     T6600  @ 2.20GHz (fam: 06, model: 17, stepping: 0a)
[    0.072000] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
[    0.072000] ... version:                2
[    0.072000] ... bit width:              40
[    0.072000] ... generic registers:      2
[    0.072000] ... value mask:             000000ffffffffff
[    0.072000] ... max period:             000000007fffffff
[    0.072000] ... fixed-purpose events:   3
[    0.072000] ... event mask:             0000000700000003
[    0.072000] x86: Booting SMP configuration:
[    0.072000] .... node  #0, CPUs:      #1
[    0.083373] x86: Booted up 1 node, 2 CPUs
[    0.083378] smpboot: Total of 2 processors activated (8777.80 BogoMIPS)
[    0.083468] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.084132] devtmpfs: initialized
[    0.089734] EVM: security.selinux
[    0.089736] EVM: security.SMACK64
[    0.089737] EVM: security.ima
[    0.089739] EVM: security.capability
[    0.092024] PM: Registering ACPI NVS region [mem 0xbdf64000-0xbdf9efff] (241664 bytes)
[    0.093154] pinctrl core: initialized pinctrl subsystem
[    0.093236] regulator-dummy: no parameters
[    0.093276] RTC time:  8:46:32, date: 04/03/15
[    0.093319] NET: Registered protocol family 16
[    0.093450] cpuidle: using governor ladder
[    0.093452] cpuidle: using governor menu
[    0.093492] ACPI: bus type PCI registered
[    0.093494] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.093568] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.093571] PCI: not using MMCONFIG
[    0.093573] PCI: Using configuration type 1 for base access
[    0.093722] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.093724] mtrr: probably your BIOS does not setup all CPUs.
[    0.093725] mtrr: corrected configuration.
[    0.093725] bio: create slab <bio-0> at 0
[    0.093725] ACPI: Added _OSI(Module Device)
[    0.093725] ACPI: Added _OSI(Processor Device)
[    0.093725] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.093725] ACPI: Added _OSI(Processor Aggregator Device)
[    0.097357] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.098297] ACPI: SSDT 00000000bdf1aca0 000223 (v01  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.098641] ACPI: Dynamic OEM Table Load:
[    0.098644] ACPI: SSDT           (null) 000223 (v01  PmRef  Cpu0Ist 00003000 INTL 20050624)
[    0.098751] ACPI: SSDT 00000000bdf19620 0005A3 (v01  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.099079] ACPI: Dynamic OEM Table Load:
[    0.099082] ACPI: SSDT           (null) 0005A3 (v01  PmRef  Cpu0Cst 00003001 INTL 20050624)
[    0.108228] ACPI: SSDT 00000000bdf1aa20 0001CF (v01  PmRef    ApIst 00003000 INTL 20050624)
[    0.108584] ACPI: Dynamic OEM Table Load:
[    0.108587] ACPI: SSDT           (null) 0001CF (v01  PmRef    ApIst 00003000 INTL 20050624)
[    0.112068] ACPI: SSDT 00000000bdf1af20 00008D (v01  PmRef    ApCst 00003000 INTL 20050624)
[    0.112407] ACPI: Dynamic OEM Table Load:
[    0.112410] ACPI: SSDT           (null) 00008D (v01  PmRef    ApCst 00003000 INTL 20050624)
[    0.116278] ACPI: Interpreter enabled
[    0.116278] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.116278] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.116278] ACPI: (supports S0 S3 S4 S5)
[    0.116278] ACPI: Using IOAPIC for interrupt routing
[    0.116278] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.117059] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.151460] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.151613] ACPI: No dock devices found.
[    0.225446] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.225454] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.225460] acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.226185] PCI host bridge to bus 0000:00
[    0.226188] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.226191] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.226193] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.226196] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.226201] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
[    0.226203] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
[    0.226206] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
[    0.226208] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
[    0.226211] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfebfffff]
[    0.226221] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
[    0.226245] DMAR: Forcing write-buffer flush capability
[    0.226246] DMAR: Disabling IOMMU for graphics on this chipset
[    0.226332] pci 0000:00:01.0: [8086:2a41] type 01 class 0x060400
[    0.226379] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.226432] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.226511] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
[    0.226573] pci 0000:00:1a.0: reg 0x20: [io  0x1800-0x181f]
[    0.226685] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.226727] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
[    0.226788] pci 0000:00:1a.1: reg 0x20: [io  0x1820-0x183f]
[    0.226899] pci 0000:00:1a.1: System wakeup disabled by ACPI
[    0.226940] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
[    0.227001] pci 0000:00:1a.2: reg 0x20: [io  0x1840-0x185f]
[    0.227112] pci 0000:00:1a.2: System wakeup disabled by ACPI
[    0.227167] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
[    0.227195] pci 0000:00:1a.7: reg 0x10: [mem 0xf6404800-0xf6404bff]
[    0.227312] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.227373] pci 0000:00:1a.7: System wakeup disabled by ACPI
[    0.227423] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
[    0.227446] pci 0000:00:1b.0: reg 0x10: [mem 0xf6400000-0xf6403fff 64bit]
[    0.227550] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.227609] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.227651] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
[    0.227760] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.227818] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.227861] pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400
[    0.227970] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.228066] pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400
[    0.228175] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.228279] pci 0000:00:1c.5: [8086:294a] type 01 class 0x060400
[    0.228388] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.228446] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.228494] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[    0.228555] pci 0000:00:1d.0: reg 0x20: [io  0x1860-0x187f]
[    0.228666] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.228706] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[    0.228767] pci 0000:00:1d.1: reg 0x20: [io  0x1880-0x189f]
[    0.228878] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.228920] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[    0.228981] pci 0000:00:1d.2: reg 0x20: [io  0x18a0-0x18bf]
[    0.229092] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.229145] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[    0.229173] pci 0000:00:1d.7: reg 0x10: [mem 0xf6404c00-0xf6404fff]
[    0.229291] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.229352] pci 0000:00:1d.7: System wakeup disabled by ACPI
[    0.229393] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.229514] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.229558] pci 0000:00:1f.0: [8086:2919] type 00 class 0x060100
[    0.229789] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
[    0.229819] pci 0000:00:1f.2: reg 0x10: [io  0x18f0-0x18f7]
[    0.229831] pci 0000:00:1f.2: reg 0x14: [io  0x18e4-0x18e7]
[    0.229843] pci 0000:00:1f.2: reg 0x18: [io  0x18e8-0x18ef]
[    0.229855] pci 0000:00:1f.2: reg 0x1c: [io  0x18e0-0x18e3]
[    0.229867] pci 0000:00:1f.2: reg 0x20: [io  0x18c0-0x18df]
[    0.229880] pci 0000:00:1f.2: reg 0x24: [mem 0xf6404000-0xf64047ff]
[    0.229954] pci 0000:00:1f.2: PME# supported from D3hot
[    0.230041] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[    0.230064] pci 0000:00:1f.3: reg 0x10: [mem 0x00000000-0x000000ff 64bit]
[    0.230096] pci 0000:00:1f.3: reg 0x20: [io  0x1c00-0x1c1f]
[    0.230270] pci 0000:01:00.0: [10de:0a28] type 00 class 0x030000
[    0.230285] pci 0000:01:00.0: reg 0x10: [mem 0xf3000000-0xf3ffffff]
[    0.230301] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.230316] pci 0000:01:00.0: reg 0x1c: [mem 0xce000000-0xcfffffff 64bit pref]
[    0.230326] pci 0000:01:00.0: reg 0x24: [io  0x2000-0x207f]
[    0.230337] pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
[    0.230457] pci 0000:01:00.1: [10de:0be2] type 00 class 0x040300
[    0.230471] pci 0000:01:00.1: reg 0x10: [mem 0xf2100000-0xf2103fff]
[    0.240024] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.240027] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.240031] pci 0000:00:01.0:   bridge window [mem 0xf2100000-0xf3ffffff]
[    0.240035] pci 0000:00:01.0:   bridge window [mem 0xce000000-0xdfffffff 64bit pref]
[    0.240131] acpiphp: Slot [1] registered
[    0.240138] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
[    0.240143] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.240149] pci 0000:00:1c.0:   bridge window [mem 0xf4000000-0xf5ffffff]
[    0.240157] pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.240323] pci 0000:0e:00.0: [10ec:8168] type 00 class 0x020000
[    0.240389] pci 0000:0e:00.0: reg 0x10: [io  0x4000-0x40ff]
[    0.240501] pci 0000:0e:00.0: reg 0x18: [mem 0xf2004000-0xf2004fff 64bit pref]
[    0.240572] pci 0000:0e:00.0: reg 0x20: [mem 0xf2000000-0xf2003fff 64bit pref]
[    0.240618] pci 0000:0e:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.240897] pci 0000:0e:00.0: supports D1 D2
[    0.240899] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.244030] pci 0000:0e:00.0: System wakeup disabled by ACPI
[    0.244148] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[    0.244154] pci 0000:00:1c.2:   bridge window [io  0x4000-0x4fff]
[    0.244165] pci 0000:00:1c.2:   bridge window [mem 0xf2000000-0xf20fffff 64bit pref]
[    0.244274] pci 0000:14:00.0: [168c:001c] type 00 class 0x020000
[    0.244306] pci 0000:14:00.0: reg 0x10: [mem 0xf6000000-0xf600ffff 64bit]
[    0.244501] pci 0000:14:00.0: System wakeup disabled by ACPI
[    0.244535] pci 0000:14:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.244547] pci 0000:00:1c.3: PCI bridge to [bus 14]
[    0.244555] pci 0000:00:1c.3:   bridge window [mem 0xf6000000-0xf60fffff]
[    0.244669] pci 0000:20:00.0: [197b:2382] type 00 class 0x088000
[    0.244696] pci 0000:20:00.0: reg 0x10: [mem 0xf6100000-0xf61000ff]
[    0.244908] pci 0000:20:00.0: System wakeup disabled by ACPI
[    0.244964] pci 0000:20:00.2: [197b:2381] type 00 class 0x080501
[    0.244990] pci 0000:20:00.2: reg 0x10: [mem 0xf6100400-0xf61004ff]
[    0.245246] pci 0000:20:00.3: [197b:2383] type 00 class 0x088000
[    0.245272] pci 0000:20:00.3: reg 0x10: [mem 0xf6100800-0xf61008ff]
[    0.245528] pci 0000:20:00.4: [197b:2384] type 00 class 0x088000
[    0.245554] pci 0000:20:00.4: reg 0x10: [mem 0xf6100c00-0xf6100cff]
[    0.252026] pci 0000:00:1c.5: PCI bridge to [bus 20]
[    0.252034] pci 0000:00:1c.5:   bridge window [mem 0xf6100000-0xf61fffff]
[    0.252159] pci 0000:00:1e.0: PCI bridge to [bus 26] (subtractive decode)
[    0.252173] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.252176] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.252178] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.252181] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
[    0.252183] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[    0.252185] pci 0000:00:1e.0:   bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
[    0.252188] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
[    0.252190] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    0.280262] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[    0.280323] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.280381] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 *5 6 7 10 12 14 15)
[    0.280439] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.280497] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    0.280555] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 *7 11 12 14 15)
[    0.280612] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[    0.280670] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.280890] ACPI: Enabled 7 GPEs in block 00 to 3F
[    0.280933] ACPI: \_SB_.PCI0: notify handler is installed
[    0.280990] Found 1 acpi root devices
[    0.281141] ACPI : EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
[    0.281253] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.281253] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.281253] vgaarb: loaded
[    0.281253] vgaarb: bridge control possible 0000:01:00.0
[    0.281253] SCSI subsystem initialized
[    0.281253] libata version 3.00 loaded.
[    0.281253] ACPI: bus type USB registered
[    0.281253] usbcore: registered new interface driver usbfs
[    0.281253] usbcore: registered new interface driver hub
[    0.281253] usbcore: registered new device driver usb
[    0.281253] PCI: Using ACPI for IRQ routing
[    0.292497] PCI: pci_cache_line_size set to 64 bytes
[    0.292620] e820: reserve RAM buffer [mem 0x0009f400-0x0009ffff]
[    0.292622] e820: reserve RAM buffer [mem 0xbdaa1000-0xbfffffff]
[    0.292624] e820: reserve RAM buffer [mem 0xbdbbc000-0xbfffffff]
[    0.292627] e820: reserve RAM buffer [mem 0xbdd08000-0xbfffffff]
[    0.292629] e820: reserve RAM buffer [mem 0xbdf19000-0xbfffffff]
[    0.292631] e820: reserve RAM buffer [mem 0xbdf64000-0xbfffffff]
[    0.292633] e820: reserve RAM buffer [mem 0xbdfe0000-0xbfffffff]
[    0.292634] e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff]
[    0.292738] NetLabel: Initializing
[    0.292740] NetLabel:  domain hash size = 128
[    0.292742] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.292759] NetLabel:  unlabeled traffic allowed by default
[    0.292772] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.292772] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.292772] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.294070] Switched to clocksource hpet
[    0.299345] AppArmor: AppArmor Filesystem Enabled
[    0.299388] pnp: PnP ACPI init
[    0.299409] ACPI: bus type PNP registered
[    0.324048] pnp 00:00: [dma 4]
[    0.324084] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.324229] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved
[    0.324234] system 00:01: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[    0.324276] pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.324338] system 00:03: [io  0x0480-0x048f] has been reserved
[    0.324341] system 00:03: [io  0xffff] has been reserved
[    0.324344] system 00:03: [io  0xffff] has been reserved
[    0.324347] system 00:03: [io  0x0400-0x047f] could not be reserved
[    0.324350] system 00:03: [io  0x1180-0x11ff] has been reserved
[    0.324353] system 00:03: [io  0xfe00] has been reserved
[    0.324355] system 00:03: [io  0xff2c-0xff7f] has been reserved
[    0.324359] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.324394] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.324428] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.324465] pnp 00:06: Plug and Play ACPI device, IDs SYN0712 SYN0700 SYN0002 PNP0f13 (active)
[    0.324653] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.324656] system 00:07: [mem 0xfed10000-0xfed13fff] has been reserved
[    0.324659] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.324661] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.324664] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
[    0.324666] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.324669] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.324672] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.324820] pnp: PnP ACPI: found 8 devices
[    0.324822] ACPI: bus type PNP unregistered
[    0.331846] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x001fffff] to [bus 0e] add_size 400000
[    0.331859] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 14] add_size 1000
[    0.331862] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 14] add_size 200000
[    0.331874] pci 0000:00:1c.5: bridge window [io  0x1000-0x0fff] to [bus 20] add_size 1000
[    0.331877] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 20] add_size 200000
[    0.331893] pci 0000:00:1c.2: res[14]=[mem 0x00100000-0x001fffff] get_res_add_size add_size 400000
[    0.331895] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.331898] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.331900] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.331903] pci 0000:00:1c.5: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
[    0.331909] pci 0000:00:1c.2: BAR 14: assigned [mem 0xc0000000-0xc04fffff]
[    0.331913] pci 0000:00:1c.3: BAR 15: assigned [mem 0xc0500000-0xc06fffff 64bit pref]
[    0.331916] pci 0000:00:1c.5: BAR 15: assigned [mem 0xc0700000-0xc08fffff 64bit pref]
[    0.331919] pci 0000:00:1c.3: BAR 13: assigned [io  0x5000-0x5fff]
[    0.331923] pci 0000:00:1c.5: BAR 13: assigned [io  0x6000-0x6fff]
[    0.331926] pci 0000:00:1f.3: BAR 0: assigned [mem 0xc0900000-0xc09000ff 64bit]
[    0.331942] pci 0000:01:00.0: BAR 6: assigned [mem 0xf2180000-0xf21fffff pref]
[    0.331944] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.331947] pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
[    0.331951] pci 0000:00:01.0:   bridge window [mem 0xf2100000-0xf3ffffff]
[    0.331955] pci 0000:00:01.0:   bridge window [mem 0xce000000-0xdfffffff 64bit pref]
[    0.331960] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
[    0.331963] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.331970] pci 0000:00:1c.0:   bridge window [mem 0xf4000000-0xf5ffffff]
[    0.331975] pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.331983] pci 0000:0e:00.0: BAR 6: assigned [mem 0xf2020000-0xf203ffff pref]
[    0.331986] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[    0.331989] pci 0000:00:1c.2:   bridge window [io  0x4000-0x4fff]
[    0.331996] pci 0000:00:1c.2:   bridge window [mem 0xc0000000-0xc04fffff]
[    0.332001] pci 0000:00:1c.2:   bridge window [mem 0xf2000000-0xf20fffff 64bit pref]
[    0.332013] pci 0000:00:1c.3: PCI bridge to [bus 14]
[    0.332017] pci 0000:00:1c.3:   bridge window [io  0x5000-0x5fff]
[    0.332023] pci 0000:00:1c.3:   bridge window [mem 0xf6000000-0xf60fffff]
[    0.332029] pci 0000:00:1c.3:   bridge window [mem 0xc0500000-0xc06fffff 64bit pref]
[    0.332037] pci 0000:00:1c.5: PCI bridge to [bus 20]
[    0.332040] pci 0000:00:1c.5:   bridge window [io  0x6000-0x6fff]
[    0.332047] pci 0000:00:1c.5:   bridge window [mem 0xf6100000-0xf61fffff]
[    0.332052] pci 0000:00:1c.5:   bridge window [mem 0xc0700000-0xc08fffff 64bit pref]
[    0.332060] pci 0000:00:1e.0: PCI bridge to [bus 26]
[    0.332076] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.332078] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.332081] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.332083] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
[    0.332085] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
[    0.332088] pci_bus 0000:00: resource 9 [mem 0x000e0000-0x000e3fff]
[    0.332090] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xdfffffff]
[    0.332092] pci_bus 0000:00: resource 11 [mem 0xf0000000-0xfebfffff]
[    0.332095] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    0.332097] pci_bus 0000:01: resource 1 [mem 0xf2100000-0xf3ffffff]
[    0.332099] pci_bus 0000:01: resource 2 [mem 0xce000000-0xdfffffff 64bit pref]
[    0.332102] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    0.332104] pci_bus 0000:02: resource 1 [mem 0xf4000000-0xf5ffffff]
[    0.332106] pci_bus 0000:02: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.332109] pci_bus 0000:0e: resource 0 [io  0x4000-0x4fff]
[    0.332111] pci_bus 0000:0e: resource 1 [mem 0xc0000000-0xc04fffff]
[    0.332113] pci_bus 0000:0e: resource 2 [mem 0xf2000000-0xf20fffff 64bit pref]
[    0.332116] pci_bus 0000:14: resource 0 [io  0x5000-0x5fff]
[    0.332118] pci_bus 0000:14: resource 1 [mem 0xf6000000-0xf60fffff]
[    0.332121] pci_bus 0000:14: resource 2 [mem 0xc0500000-0xc06fffff 64bit pref]
[    0.332123] pci_bus 0000:20: resource 0 [io  0x6000-0x6fff]
[    0.332125] pci_bus 0000:20: resource 1 [mem 0xf6100000-0xf61fffff]
[    0.332127] pci_bus 0000:20: resource 2 [mem 0xc0700000-0xc08fffff 64bit pref]
[    0.332130] pci_bus 0000:26: resource 4 [io  0x0000-0x0cf7]
[    0.332132] pci_bus 0000:26: resource 5 [io  0x0d00-0xffff]
[    0.332134] pci_bus 0000:26: resource 6 [mem 0x000a0000-0x000bffff]
[    0.332137] pci_bus 0000:26: resource 7 [mem 0x000d0000-0x000d3fff]
[    0.332139] pci_bus 0000:26: resource 8 [mem 0x000d4000-0x000d7fff]
[    0.332141] pci_bus 0000:26: resource 9 [mem 0x000e0000-0x000e3fff]
[    0.332143] pci_bus 0000:26: resource 10 [mem 0xc0000000-0xdfffffff]
[    0.332146] pci_bus 0000:26: resource 11 [mem 0xf0000000-0xfebfffff]
[    0.332180] NET: Registered protocol family 2
[    0.332405] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.332559] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.332765] TCP: Hash tables configured (established 32768 bind 32768)
[    0.332817] TCP: reno registered
[    0.332826] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.332859] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.332939] NET: Registered protocol family 1
[    0.333995] pci 0000:01:00.0: Video device with shadowed ROM
[    0.334037] PCI: CLS 64 bytes, default 64
[    0.334116] Trying to unpack rootfs image as initramfs...
[    0.791513] Freeing initrd memory: 18768K (ffff880035b48000 - ffff880036d9c000)
[    0.791523] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.791526] software IO TLB [mem 0xb9aa1000-0xbdaa1000] (64MB) mapped at [ffff8800b9aa1000-ffff8800bdaa0fff]
[    0.791711] Simple Boot Flag at 0x36 set to 0x1
[    0.792151] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
[    0.792159] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
[    0.792345] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.792347] Scanning for low memory corruption every 60 seconds
[    0.792953] Initialise system trusted keyring
[    0.793079] audit: initializing netlink socket (disabled)
[    0.793112] type=2000 audit(1428050792.792:1): initialized
[    0.868860] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.872131] zbud: loaded
[    0.872493] VFS: Disk quotas dquot_6.5.2
[    0.872610] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.873794] fuse init (API version 7.22)
[    0.873988] msgmni has been set to 7831
[    0.874121] Key type big_key registered
[    0.875082] Key type asymmetric registered
[    0.875103] Asymmetric key parser 'x509' registered
[    0.875176] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.875262] io scheduler noop registered
[    0.875265] io scheduler deadline registered (default)
[    0.875329] io scheduler cfq registered
[    0.875813] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.876134] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.876481] pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
[    0.876807] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
[    0.877147] pcieport 0000:00:1c.5: irq 44 for MSI/MSI-X
[    0.877350] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.877384] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.877507] intel_idle: does not run on family 6 model 23
[    0.877532] ipmi message handler version 39.2
[    0.892057] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.908065] ACPI: AC Adapter [ACAD] (on-line)
[    0.908422] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
[    0.908462] ACPI: Lid Switch [LID0]
[    0.908558] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    0.908580] ACPI: Power Button [PWRB]
[    0.908653] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.908674] ACPI: Power Button [PWRF]
[    0.909473] Monitor-Mwait will be used to enter C-1 state
[    0.909497] Monitor-Mwait will be used to enter C-2 state
[    0.909500] tsc: Marking TSC unstable due to TSC halts in idle
[    0.909505] ACPI: acpi_idle registered with cpuidle
[    0.910578] GHES: HEST is not enabled!
[    0.910901] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.108525] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    1.108549] ACPI: Battery Slot [BAT1] (battery present)
[    1.108775] Linux agpgart interface v0.103
[    1.113074] brd: module loaded
[    1.115184] loop: module loaded
[    1.116174] libphy: Fixed MDIO Bus: probed
[    1.116399] tun: Universal TUN/TAP device driver, 1.6
[    1.116400] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.116552] PPP generic driver version 2.4.2
[    1.116663] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.116667] ehci-pci: EHCI PCI platform driver
[    1.116951] ehci-pci 0000:00:1a.7: EHCI Host Controller
[    1.116958] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    1.116992] ehci-pci 0000:00:1a.7: debug port 1
[    1.120967] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[    1.121034] ehci-pci 0000:00:1a.7: irq 19, io mem 0xf6404800
[    1.132039] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    1.132163] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.132166] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.132168] usb usb1: Product: EHCI Host Controller
[    1.132170] usb usb1: Manufacturer: Linux 3.13.0-48-generic ehci_hcd
[    1.132190] usb usb1: SerialNumber: 0000:00:1a.7
[    1.132482] hub 1-0:1.0: USB hub found
[    1.132512] hub 1-0:1.0: 6 ports detected
[    1.133279] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    1.133288] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    1.133320] ehci-pci 0000:00:1d.7: debug port 1
[    1.137264] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[    1.137323] ehci-pci 0000:00:1d.7: irq 23, io mem 0xf6404c00
[    1.148049] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    1.148172] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.148175] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.148177] usb usb2: Product: EHCI Host Controller
[    1.148180] usb usb2: Manufacturer: Linux 3.13.0-48-generic ehci_hcd
[    1.148182] usb usb2: SerialNumber: 0000:00:1d.7
[    1.148439] hub 2-0:1.0: USB hub found
[    1.148464] hub 2-0:1.0: 6 ports detected
[    1.148885] ehci-platform: EHCI generic platform driver
[    1.148914] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.148915] ohci-pci: OHCI PCI platform driver
[    1.148947] ohci-platform: OHCI generic platform driver
[    1.148971] uhci_hcd: USB Universal Host Controller Interface driver
[    1.149140] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    1.149163] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    1.149236] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00001800
[    1.149361] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.149364] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.149384] usb usb3: Product: UHCI Host Controller
[    1.149386] usb usb3: Manufacturer: Linux 3.13.0-48-generic uhci_hcd
[    1.149389] usb usb3: SerialNumber: 0000:00:1a.0
[    1.149642] hub 3-0:1.0: USB hub found
[    1.149651] hub 3-0:1.0: 2 ports detected
[    1.150066] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    1.150090] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    1.150162] uhci_hcd 0000:00:1a.1: irq 21, io base 0x00001820
[    1.150283] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    1.150285] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.150288] usb usb4: Product: UHCI Host Controller
[    1.150290] usb usb4: Manufacturer: Linux 3.13.0-48-generic uhci_hcd
[    1.150292] usb usb4: SerialNumber: 0000:00:1a.1
[    1.150545] hub 4-0:1.0: USB hub found
[    1.150571] hub 4-0:1.0: 2 ports detected
[    1.150962] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[    1.150988] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[    1.151051] uhci_hcd 0000:00:1a.2: irq 19, io base 0x00001840
[    1.151152] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    1.151155] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.151175] usb usb5: Product: UHCI Host Controller
[    1.151177] usb usb5: Manufacturer: Linux 3.13.0-48-generic uhci_hcd
[    1.151179] usb usb5: SerialNumber: 0000:00:1a.2
[    1.151429] hub 5-0:1.0: USB hub found
[    1.151437] hub 5-0:1.0: 2 ports detected
[    1.151851] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    1.151875] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[    1.151916] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001860
[    1.152070] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[    1.152074] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.152076] usb usb6: Product: UHCI Host Controller
[    1.152078] usb usb6: Manufacturer: Linux 3.13.0-48-generic uhci_hcd
[    1.152098] usb usb6: SerialNumber: 0000:00:1d.0
[    1.152332] hub 6-0:1.0: USB hub found
[    1.152357] hub 6-0:1.0: 2 ports detected
[    1.152683] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    1.152707] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[    1.152769] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001880
[    1.152873] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001
[    1.152876] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.152896] usb usb7: Product: UHCI Host Controller
[    1.152898] usb usb7: Manufacturer: Linux 3.13.0-48-generic uhci_hcd
[    1.152900] usb usb7: SerialNumber: 0000:00:1d.1
[    1.153128] hub 7-0:1.0: USB hub found
[    1.153153] hub 7-0:1.0: 2 ports detected
[    1.153482] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    1.153505] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[    1.153579] uhci_hcd 0000:00:1d.2: irq 18, io base 0x000018a0
[    1.153700] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001
[    1.153702] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.153704] usb usb8: Product: UHCI Host Controller
[    1.153707] usb usb8: Manufacturer: Linux 3.13.0-48-generic uhci_hcd
[    1.153726] usb usb8: SerialNumber: 0000:00:1d.2
[    1.153962] hub 8-0:1.0: USB hub found
[    1.153987] hub 8-0:1.0: 2 ports detected
[    1.154366] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.200903] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.200910] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.201265] mousedev: PS/2 mouse device common for all mice
[    1.203329] rtc_cmos 00:04: RTC can wake from S4
[    1.203693] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.203780] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.203948] device-mapper: uevent: version 1.0.3
[    1.204172] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    1.204198] ledtrig-cpu: registered to indicate activity on CPUs
[    1.204461] TCP: cubic registered
[    1.204710] NET: Registered protocol family 10
[    1.205155] NET: Registered protocol family 17
[    1.205166] Key type dns_resolver registered
[    1.205798] Loading compiled-in X.509 certificates
[    1.208533] Loaded X.509 cert 'Magrathea: Glacier signing key: 4eb2de249917cbf39cb85692e54cebade594d680'
[    1.208566] registered taskstats version 1
[    1.215049] Key type trusted registered
[    1.225668] Key type encrypted registered
[    1.225673] AppArmor: AppArmor sha1 policy hashing enabled
[    1.225676] IMA: No TPM chip found, activating TPM-bypass!
[    1.227039] regulator-dummy: disabling
[    1.227162]   Magic number: 11:294:775
[    1.227189] misc psaux: hash matches
[    1.227263] misc fuse: hash matches
[    1.227513] rtc_cmos 00:04: setting system clock to 2015-04-03 08:46:33 UTC (1428050793)
[    1.228803] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.228805] EDD information not available.
[    1.228934] PM: Hibernation image not present or could not be loaded.
[    1.232861] Freeing unused kernel memory: 1336K (ffffffff81d20000 - ffffffff81e6e000)
[    1.232882] Write protecting the kernel read-only data: 12288k
[    1.239035] Freeing unused kernel memory: 796K (ffff880001739000 - ffff880001800000)
[    1.244204] Freeing unused kernel memory: 688K (ffff880001b54000 - ffff880001c00000)
[    1.254459] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.294663] systemd-udevd[100]: starting version 204
[    1.382536] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.382567] r8169 0000:0e:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.383110] r8169 0000:0e:00.0: irq 45 for MSI/MSI-X
[    1.383570] sdhci: Secure Digital Host Controller Interface driver
[    1.383595] sdhci: Copyright(c) Pierre Ossman
[    1.383599] r8169 0000:0e:00.0 eth0: RTL8168d/8111d at 0xffffc90000634000, 00:26:22:eb:7a:d5, XID 081000c0 IRQ 45
[    1.383601] r8169 0000:0e:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.387483] sdhci-pci 0000:20:00.0: SDHCI controller found [197b:2382] (rev 20)
[    1.387680] sdhci-pci 0000:20:00.0: dummy supplies not allowed
[    1.387682] mmc0: no vqmmc regulator found
[    1.387684] sdhci-pci 0000:20:00.0: dummy supplies not allowed
[    1.387686] mmc0: no vmmc regulator found
[    1.387898] mmc0: SDHCI controller on PCI [0000:20:00.0] using ADMA
[    1.387940] sdhci-pci 0000:20:00.2: SDHCI controller found [197b:2381] (rev 20)
[    1.388092] sdhci-pci 0000:20:00.2: Refusing to bind to secondary interface.
[    1.401584] ahci 0000:00:1f.2: version 3.0
[    1.401924] ahci 0000:00:1f.2: irq 46 for MSI/MSI-X
[    1.403431] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
[    1.403435] ahci 0000:00:1f.2: flags: 64bit ncq sntf led clo pmp pio slum part ccc sxs 
[    1.413057] scsi0 : ahci
[    1.413305] scsi1 : ahci
[    1.413440] scsi2 : ahci
[    1.423167] scsi3 : ahci
[    1.424435] scsi4 : ahci
[    1.424596] scsi5 : ahci
[    1.424696] ata1: SATA max UDMA/133 abar m2048@0xf6404000 port 0xf6404100 irq 46
[    1.424718] ata2: SATA max UDMA/133 abar m2048@0xf6404000 port 0xf6404180 irq 46
[    1.424720] ata3: DUMMY
[    1.424722] ata4: DUMMY
[    1.424725] ata5: SATA max UDMA/133 abar m2048@0xf6404000 port 0xf6404300 irq 46
[    1.424746] ata6: SATA max UDMA/133 abar m2048@0xf6404000 port 0xf6404380 irq 46
[    1.444106] usb 1-6: new high-speed USB device number 2 using ehci-pci
[    1.748152] ata1: SATA link down (SStatus 0 SControl 300)
[    1.748214] ata6: SATA link down (SStatus 0 SControl 300)
[    1.757677] usb 1-6: New USB device found, idVendor=064e, idProduct=c117
[    1.757701] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.757705] usb 1-6: Product: USB 2.0 HD Camera 
[    1.757728] usb 1-6: Manufacturer: SuYin 
[    1.757732] usb 1-6: SerialNumber: CN1014-P80A-OV031-VS-R01.03.00
[    1.920065] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.920107] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.921255] ata2.00: ATA-8: Hitachi HTS547550A9E384, JE3OA60A, max UDMA/133
[    1.921278] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.921441] ata5.00: ATAPI: MATSHITABD-MLT UJ240ES, 1.00, max UDMA/100
[    1.922489] ata2.00: configured for UDMA/133
[    1.922932] scsi 1:0:0:0: Direct-Access     ATA      Hitachi HTS54755 JE3O PQ: 0 ANSI: 5
[    1.923326] sd 1:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[    1.923346] sd 1:0:0:0: Attached scsi generic sg0 type 0
[    1.923349] sd 1:0:0:0: [sda] 4096-byte physical blocks
[    1.923572] ata5.00: configured for UDMA/100
[    1.923580] sd 1:0:0:0: [sda] Write Protect is off
[    1.923600] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.923703] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.926660] scsi 4:0:0:0: CD-ROM            MATSHITA BD-MLT UJ240ES   1.00 PQ: 0 ANSI: 5
[    1.930503] sr0: scsi3-mmc drive: 62x/62x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.930506] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.930730] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    1.930860] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    1.992384]  sda: sda1 sda2 < sda5 >
[    1.993353] sd 1:0:0:0: [sda] Attached SCSI disk
[    2.040196] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.174028] usb 2-1: New USB device found, idVendor=050d, idProduct=2103
[    2.174032] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.174035] usb 2-1: Product: Belkin Wireless Adapter
[    2.174037] usb 2-1: Manufacturer: Realtek
[    2.174057] usb 2-1: SerialNumber: 00e04c000001
[    2.479531] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    3.440502] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000, board id: 3655, fw id: 570026
[    3.440530] psmouse serio1: synaptics: Toshiba Satellite A500 detected, limiting rate to 40pps.
[    3.517362] random: nonblocking pool is initialized
[    3.583743] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[   21.123532] Adding 4157436k swap on /dev/sda5.  Priority:-1 extents:1 across:4157436k FS
[   21.197865] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   21.534899] systemd-udevd[290]: starting version 204
[   21.791085] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   22.352447] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   22.415396] ACPI: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[   22.418412] acpi device:04: registered as cooling_device2
[   22.418764] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input6
[   22.439708] lp: driver loaded but no devices found
[   22.479073] ppdev: user-space parallel port driver
[   22.611214] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
[   22.611222] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   22.611245] ACPI Warning: 0x00000000000011b0-0x00000000000011bf SystemIO conflicts with Region \GPIO 1 (20131115/utaddress-251)
[   22.611249] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   22.611250] ACPI Warning: 0x0000000000001180-0x00000000000011af SystemIO conflicts with Region \GPIO 1 (20131115/utaddress-251)
[   22.611254] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   22.611256] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   22.619399] wmi: Mapper loaded
[   22.798591] toshiba_acpi: Toshiba Laptop ACPI Extras version 0.19
[   22.798852] input: Toshiba input device as /devices/virtual/input/input7
[   22.845369] [drm] Initialized drm 1.1.0 20060810
[   22.929967] cfg80211: Calling CRDA to update world regulatory domain
[   23.109784] type=1400 audit(1428050815.379:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=398 comm="apparmor_parser"
[   23.109812] type=1400 audit(1428050815.379:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=398 comm="apparmor_parser"
[   23.109818] type=1400 audit(1428050815.379:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=398 comm="apparmor_parser"
[   23.110974] type=1400 audit(1428050815.379:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=398 comm="apparmor_parser"
[   23.110998] type=1400 audit(1428050815.379:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=398 comm="apparmor_parser"
[   23.111582] type=1400 audit(1428050815.379:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=398 comm="apparmor_parser"
[   23.332120] Linux video capture interface: v2.00
[   23.689931] ath5k 0000:14:00.0: can't disable ASPM; OS doesn't have ASPM control
[   23.690227] ath5k 0000:14:00.0: registered as 'phy0'
[   23.736146] uvcvideo: Found UVC 1.00 device USB 2.0 HD Camera  (064e:c117)
[   23.764282] input: USB 2.0 HD Camera  as /devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input8
[   23.764967] usbcore: registered new interface driver uvcvideo
[   23.764968] USB Video Class driver (1.1.1)
[   23.921553] rtl8192cu: Chip version 0x11
[   24.128024] rtl8192cu: MAC address: ec:1a:59:63:b0:94
[   24.128049] rtl8192cu: Board Type 0
[   24.128255] rtl_usb: rx_max_size 15360, rx_urb_num 8, in_ep 1
[   24.128329] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw_TMSC.bin
[   24.128573] usbcore: registered new interface driver rtl8192cu
[   24.131726] nvidia: module license 'NVIDIA' taints kernel.
[   24.131730] Disabling lock debugging due to kernel taint
[   24.165290] nvidia: module verification failed: signature and/or  required key missing - tainting kernel
[   24.181733] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
[   24.182664] [drm] Initialized nvidia-drm 0.0.0 20140818 for 0000:01:00.0 on minor 0
[   24.182676] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  304.125  Mon Dec  1 19:58:28 PST 2014
[   24.227547] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
[   24.272698] SKU: Nid=0x1d sku_cfg=0x4016892d
[   24.272719] SKU: port_connectivity=0x1
[   24.272725] SKU: enable_pcbeep=0x1
[   24.272727] SKU: check_sum=0x00000006
[   24.272728] SKU: customization=0x00000089
[   24.272730] SKU: external_amp=0x5
[   24.272731] SKU: platform_type=0x1
[   24.272732] SKU: swap=0x0
[   24.272751] SKU: override=0x1
[   24.273077] autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   24.273079]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   24.273081]    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   24.273082]    mono: mono_out=0x0
[   24.273083]    dig-out=0x1e/0x0
[   24.273085]    inputs:
[   24.273086]      Internal Mic=0x19
[   24.273088]      Mic=0x18
[   24.273107] realtek: No valid SSID, checking pincfg 0x4016892d for NID 0x1d
[   24.273109] realtek: Enabling init ASM_ID=0x892d CODEC_ID=10ec0272
[   24.445345] cfg80211: World regulatory domain updated:
[   24.445350] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   24.445352] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   24.445372] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   24.445374] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   24.445376] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   24.445378] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   24.485481] init: failsafe main process (494) killed by TERM signal
[   24.508085] ath: EEPROM regdomain: 0x60
[   24.508089] ath: EEPROM indicates we should expect a direct regpair map
[   24.508092] ath: Country alpha2 being used: 00
[   24.508094] ath: Regpair used: 0x60
[   24.508505] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   24.509242] ath5k: phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70)
[   24.516812] ieee80211 phy1: Selected rate control algorithm 'rtl_rc'
[   24.517895] rtlwifi: wireless switch is on
[   24.576417] systemd-udevd[340]: renamed network interface wlan1 to wlan2
[   24.632570] systemd-udevd[334]: renamed network interface wlan0 to wlan1
[   25.076276] type=1400 audit(1428050817.347:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=680 comm="apparmor_parser"
[   25.076304] type=1400 audit(1428050817.347:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=680 comm="apparmor_parser"
[   25.077475] type=1400 audit(1428050817.347:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=680 comm="apparmor_parser"
[   25.184887] Bluetooth: Core ver 2.17
[   25.185046] NET: Registered protocol family 31
[   25.185048] Bluetooth: HCI device and connection manager initialized
[   25.185080] Bluetooth: HCI socket layer initialized
[   25.185101] Bluetooth: L2CAP socket layer initialized
[   25.185106] Bluetooth: SCO socket layer initialized
[   25.362181] type=1400 audit(1428050817.631:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=744 comm="apparmor_parser"
[   25.484183] init: cups main process (708) killed by HUP signal
[   25.484215] init: cups main process ended, respawning
[   25.505643] Bluetooth: RFCOMM TTY layer initialized
[   25.505676] Bluetooth: RFCOMM socket layer initialized
[   25.505702] Bluetooth: RFCOMM ver 1.11
[   25.525169] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   25.525174] Bluetooth: BNEP filters: protocol multicast
[   25.525203] Bluetooth: BNEP socket layer initialized
[   26.233949] r8169 0000:0e:00.0 eth0: link down
[   26.234080] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.236657] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   26.253513] rtl8192cu: MAC auto ON okay!
[   26.288066] hda-codec: out of range cmd 0:20:400:ffffffff
[   26.296087] rtl8192cu: Tx queue select: 0x05
[   26.748912] IPv6: ADDRCONF(NETDEV_UP): wlan2: link is not ready
[   26.749645] IPv6: ADDRCONF(NETDEV_UP): wlan2: link is not ready
[   26.824601] init: alsa-restore main process (871) terminated with status 19
[   27.298989] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   27.299593] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   27.303070] hda_intel: Disabling MSI
[   27.303102] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[   27.303227] hda-intel 0000:01:00.1: Disabling 64bit DMA
[   27.307120] hda-intel 0000:01:00.1: Enable delay in RIRB handling
[   27.988888] init: plymouth-upstart-bridge main process ended, respawning
[   28.168512] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[   28.168766] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[   28.168948] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
[   28.169243] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[   28.541311] wlan2: authenticate with 34:81:c4:df:6d:b3
[   28.570599] wlan2: send auth to 34:81:c4:df:6d:b3 (try 1/3)
[   28.617093] wlan2: authenticated
[   28.620294] wlan2: associate with 34:81:c4:df:6d:b3 (try 1/3)
[   28.630965] init: plymouth-splash main process (1106) terminated with status 1
[   28.655004] wlan2: RX AssocResp from 34:81:c4:df:6d:b3 (capab=0x431 status=0 aid=1)
[   28.655105] wlan2: associated
[   28.655898] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[   28.656471] cfg80211: Calling CRDA for country: DE
[   28.670550] cfg80211: Regulatory domain changed to country: DE
[   28.670554] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   28.670557] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   28.670559] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   28.670561] cfg80211:   (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   28.670563] cfg80211:   (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[   28.670582] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[   28.679417] init: Failed to spawn hybrid-gfx main process: unable to execute: No such file or directory
[   28.778718] wlan2: deauthenticating from 34:81:c4:df:6d:b3 by local choice (reason=2)
[   28.791351] cfg80211: Calling CRDA to update world regulatory domain
[   28.791765] wlan2: authenticate with 34:81:c4:df:6d:b3
[   28.804948] wlan2: send auth to 34:81:c4:df:6d:b3 (try 1/3)
[   28.806561] cfg80211: World regulatory domain updated:
[   28.806565] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   28.806568] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.806570] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.806572] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   28.806592] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   28.806594] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   29.621235] wlan2: send auth to 34:81:c4:df:6d:b3 (try 2/3)
[   29.644934] wlan2: authenticated
[   29.648083] wlan2: associate with 34:81:c4:df:6d:b3 (try 1/3)
[   29.695866] wlan2: RX AssocResp from 34:81:c4:df:6d:b3 (capab=0x431 status=0 aid=1)
[   29.695966] wlan2: associated
[   29.697077] cfg80211: Calling CRDA for country: DE
[   29.703304] cfg80211: Regulatory domain changed to country: DE
[   29.703308] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   29.703328] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   29.703330] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   29.703332] cfg80211:   (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[   29.703334] cfg80211:   (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
[   29.703336] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[   55.401433] audit_printk_skb: 150 callbacks suppressed
[   55.401455] type=1400 audit(1428050847.671:62): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2133 comm="apparmor_parser"
[   55.401463] type=1400 audit(1428050847.671:63): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2133 comm="apparmor_parser"
[   55.402669] type=1400 audit(1428050847.671:64): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2133 comm="apparmor_parser"
[  136.644100] perf samples too long (2513 > 2500), lowering kernel.perf_event_max_sample_rate to 50000