ubuntuusers.de

dmesg

Datum:
1. Juli 2014 15:52
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
[    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-29-generic (buildd@toyol) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #53-Ubuntu SMP Wed Jun 4 21:00:20 UTC 2014 (Ubuntu 3.13.0-29.53-generic 3.13.11.2)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-29-generic root=UUID=35c59c25-b1e8-401e-bb87-c786637c683d 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-0x000000000009ebff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cf592fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cf593000-0x00000000cf5e5fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cf5e6000-0x00000000cf60afff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cf60b000-0x00000000cf60bfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cf60c000-0x00000000cf60cfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cf60d000-0x00000000cf616fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cf617000-0x00000000cf63bfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cf63c000-0x00000000cf67efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cf67f000-0x00000000cf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022f7fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./P67 Extreme4, BIOS P1.60 02/18/2011
[    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 = 0x22f800 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask E00000000 write-back
[    0.000000]   1 base 200000000 mask FC0000000 write-back
[    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
[    0.000000]   3 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   4 base 22F800000 mask FFF800000 uncachable
[    0.000000]   5 base 230000000 mask FF0000000 uncachable
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 8GB, type WB
[    0.000000] reg 1, base: 8GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3328MB, range: 256MB, type UC
[    0.000000] reg 3, base: 3584MB, range: 512MB, type UC
[    0.000000] reg 4, base: 8952MB, range: 8MB, type UC
[    0.000000] reg 5, base: 8960MB, range: 256MB, type UC
[    0.000000] total RAM covered: 8184M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 16M 	num_reg: 7  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3GB, range: 256MB, type WB
[    0.000000] reg 3, base: 4GB, range: 4GB, type WB
[    0.000000] reg 4, base: 8GB, range: 512MB, type WB
[    0.000000] reg 5, base: 8704MB, range: 256MB, type WB
[    0.000000] reg 6, base: 8952MB, range: 8MB, type UC
[    0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xcf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd210-0x000fd21f] mapped at [ffff8800000fd210]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fde000, 0x01fdefff] PGTABLE
[    0.000000] BRK [0x01fdf000, 0x01fdffff] PGTABLE
[    0.000000] BRK [0x01fe0000, 0x01fe0fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x22f600000-0x22f7fffff]
[    0.000000]  [mem 0x22f600000-0x22f7fffff] page 2M
[    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x22c000000-0x22f5fffff]
[    0.000000]  [mem 0x22c000000-0x22f5fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x200000000-0x22bffffff]
[    0.000000]  [mem 0x200000000-0x22bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xcf592fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xcf3fffff] page 2M
[    0.000000]  [mem 0xcf400000-0xcf592fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xcf60b000-0xcf60bfff]
[    0.000000]  [mem 0xcf60b000-0xcf60bfff] page 4k
[    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0xcf67f000-0xcf7fffff]
[    0.000000]  [mem 0xcf67f000-0xcf7fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
[    0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35b82000-0x36db8fff]
[    0.000000] ACPI: RSDP 00000000000f0450 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 00000000cf5de068 000054 (v01 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 00000000cf5e5950 0000F4 (v04 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 00000000cf5de150 0077FA (v02 ALASKA    A M I 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 00000000cf60ef80 000040
[    0.000000] ACPI: APIC 00000000cf5e5a48 000072 (v03 ALASKA    A M I 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 00000000cf5e5ac0 000102 (v01 AMICPU     PROC 00000001 MSFT 03000001)
[    0.000000] ACPI: MCFG 00000000cf5e5bc8 00003C (v01 ALASKA    A M I 01072009 MSFT 00000097)
[    0.000000] ACPI: AAFT 00000000cf5e5c08 00006F (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 00000000cf5e5c78 000038 (v01 ALASKA    A M I 01072009 AMI. 00000004)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000022f7fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x22f7fffff]
[    0.000000]   NODE_DATA [mem 0x22f7f4000-0x22f7f8fff]
[    0.000000]  [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880226e00000-ffff88022edfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x22f7fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009dfff]
[    0.000000]   node   0: [mem 0x00100000-0xcf592fff]
[    0.000000]   node   0: [mem 0xcf60b000-0xcf60bfff]
[    0.000000]   node   0: [mem 0xcf67f000-0xcf7fffff]
[    0.000000]   node   0: [mem 0x100000000-0x22f7fffff]
[    0.000000] On node 0 totalpages: 2092722
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13213 pages used for memmap
[    0.000000]   DMA32 zone: 845589 pages, LIFO batch:31
[    0.000000]   Normal zone: 19424 pages used for memmap
[    0.000000]   Normal zone: 1243136 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: 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: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf593000-0xcf5e5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf5e6000-0xcf60afff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf60c000-0xcf60cfff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf60d000-0xcf616fff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf617000-0xcf63bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf63c000-0xcf67efff]
[    0.000000] PM: Registered nosave memory: [mem 0xcf800000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xcf800000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88022f400000 s86336 r8192 d24256 u524288
[    0.000000] pcpu-alloc: s86336 r8192 d24256 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2060000
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-29-generic root=UUID=35c59c25-b1e8-401e-bb87-c786637c683d ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    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: 8137988K/8370888K available (7356K kernel code, 1142K rwdata, 3396K rodata, 1332K init, 1440K bss, 232900K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-3.
[    0.000000] NR_IRQS:16640 nr_irqs:712 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 3292.302 MHz processor
[    0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6584.60 BogoMIPS (lpj=13169208)
[    0.000003] pid_max: default: 32768 minimum: 301
[    0.000018] Security Framework initialized
[    0.000031] AppArmor: AppArmor initialized
[    0.000032] Yama: becoming mindful.
[    0.000465] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.001673] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.002175] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.002182] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.002332] Initializing cgroup subsys memory
[    0.002336] Initializing cgroup subsys devices
[    0.002337] Initializing cgroup subsys freezer
[    0.002338] Initializing cgroup subsys blkio
[    0.002339] Initializing cgroup subsys perf_event
[    0.002341] Initializing cgroup subsys hugetlb
[    0.002357] CPU: Physical Processor ID: 0
[    0.002358] CPU: Processor Core ID: 0
[    0.002361] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.002361] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.002363] mce: CPU supports 9 MCE banks
[    0.002373] CPU0: Thermal monitoring enabled (TM1)
[    0.002381] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.002381] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.002381] tlb_flushall_shift: 5
[    0.002474] Freeing SMP alternatives memory: 32K (ffffffff81e6c000 - ffffffff81e74000)
[    0.003575] ACPI: Core revision 20131115
[    0.005398] ACPI: All ACPI Tables successfully acquired
[    0.005524] ftrace: allocating 28463 entries in 112 pages
[    0.016390] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.056071] smpboot: CPU0: Intel(R) Core(TM) i5-2500K CPU @ 3.30GHz (fam: 06, model: 2a, stepping: 07)
[    0.056076] TSC deadline timer enabled
[    0.057701] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.057706] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[    0.057708] ... version:                3
[    0.057709] ... bit width:              48
[    0.057709] ... generic registers:      8
[    0.057710] ... value mask:             0000ffffffffffff
[    0.057711] ... max period:             0000ffffffffffff
[    0.057712] ... fixed-purpose events:   3
[    0.057713] ... event mask:             00000007000000ff
[    0.058814] x86: Booting SMP configuration:
[    0.071998] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.058816] .... node  #0, CPUs:      #1 #2 #3
[    0.098428] x86: Booted up 1 node, 4 CPUs
[    0.098430] smpboot: Total of 4 processors activated (26338.41 BogoMIPS)
[    0.100928] devtmpfs: initialized
[    0.103603] EVM: security.selinux
[    0.103604] EVM: security.SMACK64
[    0.103605] EVM: security.ima
[    0.103606] EVM: security.capability
[    0.103632] PM: Registering ACPI NVS region [mem 0xcf593000-0xcf5e5fff] (339968 bytes)
[    0.103637] PM: Registering ACPI NVS region [mem 0xcf60d000-0xcf616fff] (40960 bytes)
[    0.103638] PM: Registering ACPI NVS region [mem 0xcf63c000-0xcf67efff] (274432 bytes)
[    0.104214] pinctrl core: initialized pinctrl subsystem
[    0.104257] regulator-dummy: no parameters
[    0.104285] RTC time: 15:23:49, date: 07/01/14
[    0.104308] NET: Registered protocol family 16
[    0.104376] cpuidle: using governor ladder
[    0.104377] cpuidle: using governor menu
[    0.104399] ACPI: bus type PCI registered
[    0.104401] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.104440] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.104442] PCI: not using MMCONFIG
[    0.104443] PCI: Using configuration type 1 for base access
[    0.105069] bio: create slab <bio-0> at 0
[    0.105172] ACPI: Added _OSI(Module Device)
[    0.105174] ACPI: Added _OSI(Processor Device)
[    0.105175] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.105176] ACPI: Added _OSI(Processor Aggregator Device)
[    0.106825] ACPI: Executed 1 blocks of module-level executable AML code
[    0.108908] ACPI: SSDT 00000000cf60dc18 00038C (v01    AMI      IST 00000001 MSFT 03000001)
[    0.109132] ACPI: Dynamic OEM Table Load:
[    0.109133] ACPI: SSDT           (null) 00038C (v01    AMI      IST 00000001 MSFT 03000001)
[    0.109148] ACPI: SSDT 00000000cf60ee18 000084 (v01    AMI      CST 00000001 MSFT 03000001)
[    0.109338] ACPI: Dynamic OEM Table Load:
[    0.109339] ACPI: SSDT           (null) 000084 (v01    AMI      CST 00000001 MSFT 03000001)
[    0.109639] ACPI: Interpreter enabled
[    0.109645] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.109653] ACPI: (supports S0 S1 S3 S4 S5)
[    0.109654] ACPI: Using IOAPIC for interrupt routing
[    0.109667] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.109706] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.126507] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.126598] ACPI: No dock devices found.
[    0.126753] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.130555] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.130559] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.130650] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug]
[    0.130733] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.130974] PCI host bridge to bus 0000:00
[    0.130976] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.130978] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.130979] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.130980] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.130982] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000dffff]
[    0.130983] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xffffffff]
[    0.130989] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.131051] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.131075] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.131105] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.131171] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.131202] pci 0000:00:16.0: reg 0x10: [mem 0xfb607000-0xfb60700f 64bit]
[    0.131307] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.131386] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.131414] pci 0000:00:1a.0: reg 0x10: [mem 0xfb606000-0xfb6063ff]
[    0.131541] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.131582] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.131613] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.131634] pci 0000:00:1b.0: reg 0x10: [mem 0xfb600000-0xfb603fff 64bit]
[    0.131735] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.131798] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.131910] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.131954] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.131986] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.132098] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.132142] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.132168] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
[    0.132281] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.132325] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.132350] pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
[    0.132462] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.132506] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.132532] pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
[    0.132644] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.132688] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.132719] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.132748] pci 0000:00:1d.0: reg 0x10: [mem 0xfb605000-0xfb6053ff]
[    0.132875] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.132916] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.132944] pci 0000:00:1f.0: [8086:1c46] type 00 class 0x060100
[    0.133137] pci 0000:00:1f.2: [8086:1c00] type 00 class 0x01018a
[    0.133158] pci 0000:00:1f.2: reg 0x10: [io  0xf0d0-0xf0d7]
[    0.133169] pci 0000:00:1f.2: reg 0x14: [io  0xf0c0-0xf0c3]
[    0.133180] pci 0000:00:1f.2: reg 0x18: [io  0xf0b0-0xf0b7]
[    0.133191] pci 0000:00:1f.2: reg 0x1c: [io  0xf0a0-0xf0a3]
[    0.133201] pci 0000:00:1f.2: reg 0x20: [io  0xf090-0xf09f]
[    0.133212] pci 0000:00:1f.2: reg 0x24: [io  0xf080-0xf08f]
[    0.133313] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.133333] pci 0000:00:1f.3: reg 0x10: [mem 0xfb604000-0xfb6040ff 64bit]
[    0.133364] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.133443] pci 0000:00:1f.5: [8086:1c08] type 00 class 0x010185
[    0.133465] pci 0000:00:1f.5: reg 0x10: [io  0xf070-0xf077]
[    0.133476] pci 0000:00:1f.5: reg 0x14: [io  0xf060-0xf063]
[    0.133487] pci 0000:00:1f.5: reg 0x18: [io  0xf050-0xf057]
[    0.133497] pci 0000:00:1f.5: reg 0x1c: [io  0xf040-0xf043]
[    0.133508] pci 0000:00:1f.5: reg 0x20: [io  0xf030-0xf03f]
[    0.133519] pci 0000:00:1f.5: reg 0x24: [io  0xf020-0xf02f]
[    0.133643] pci 0000:01:00.0: [10de:1081] type 00 class 0x030000
[    0.133651] pci 0000:01:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
[    0.133659] pci 0000:01:00.0: reg 0x14: [mem 0xd0000000-0xd7ffffff 64bit pref]
[    0.133667] pci 0000:01:00.0: reg 0x1c: [mem 0xd8000000-0xd9ffffff 64bit pref]
[    0.133673] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.133679] pci 0000:01:00.0: reg 0x30: [mem 0xfb000000-0xfb07ffff pref]
[    0.133733] pci 0000:01:00.1: [10de:0e09] type 00 class 0x040300
[    0.133741] pci 0000:01:00.1: reg 0x10: [mem 0xfb080000-0xfb083fff]
[    0.138438] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.138442] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.138446] pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    0.138451] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xd9ffffff 64bit pref]
[    0.138529] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.138629] pci 0000:03:00.0: [1b4b:91a0] type 00 class 0x01018f
[    0.138650] pci 0000:03:00.0: reg 0x10: [io  0xd040-0xd047]
[    0.138666] pci 0000:03:00.0: reg 0x14: [io  0xd030-0xd033]
[    0.138682] pci 0000:03:00.0: reg 0x18: [io  0xd020-0xd027]
[    0.138697] pci 0000:03:00.0: reg 0x1c: [io  0xd010-0xd013]
[    0.138713] pci 0000:03:00.0: reg 0x20: [io  0xd000-0xd00f]
[    0.138728] pci 0000:03:00.0: reg 0x24: [mem 0xfb510000-0xfb5107ff]
[    0.138744] pci 0000:03:00.0: reg 0x30: [mem 0xfb500000-0xfb50ffff pref]
[    0.138822] pci 0000:03:00.0: PME# supported from D3hot
[    0.146444] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.146450] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
[    0.146456] pci 0000:00:1c.4:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.146566] pci 0000:04:00.0: [1b6f:7023] type 00 class 0x0c0330
[    0.146599] pci 0000:04:00.0: reg 0x10: [mem 0xfb400000-0xfb407fff 64bit]
[    0.146760] pci 0000:04:00.0: supports D1 D2
[    0.146761] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.154450] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.154460] pci 0000:00:1c.5:   bridge window [mem 0xfb400000-0xfb4fffff]
[    0.154567] pci 0000:05:00.0: [1b6f:7023] type 00 class 0x0c0330
[    0.154599] pci 0000:05:00.0: reg 0x10: [mem 0xfb300000-0xfb307fff 64bit]
[    0.154758] pci 0000:05:00.0: supports D1 D2
[    0.154759] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.162454] pci 0000:00:1c.6: PCI bridge to [bus 05]
[    0.162464] pci 0000:00:1c.6:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.162580] pci 0000:06:00.0: [10b5:8608] type 01 class 0x060400
[    0.162603] pci 0000:06:00.0: reg 0x10: [mem 0xfb200000-0xfb21ffff]
[    0.162736] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.162814] pci 0000:00:1c.7: PCI bridge to [bus 06-0f]
[    0.162818] pci 0000:00:1c.7:   bridge window [io  0xb000-0xcfff]
[    0.162822] pci 0000:00:1c.7:   bridge window [mem 0xfb100000-0xfb2fffff]
[    0.162829] pci 0000:00:1c.7:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.162984] pci 0000:07:01.0: [10b5:8608] type 01 class 0x060400
[    0.163140] pci 0000:07:01.0: PME# supported from D0 D3hot D3cold
[    0.163226] pci 0000:07:04.0: [10b5:8608] type 01 class 0x060400
[    0.163383] pci 0000:07:04.0: PME# supported from D0 D3hot D3cold
[    0.163466] pci 0000:07:05.0: [10b5:8608] type 01 class 0x060400
[    0.163622] pci 0000:07:05.0: PME# supported from D0 D3hot D3cold
[    0.163708] pci 0000:07:06.0: [10b5:8608] type 01 class 0x060400
[    0.163864] pci 0000:07:06.0: PME# supported from D0 D3hot D3cold
[    0.163952] pci 0000:07:07.0: [10b5:8608] type 01 class 0x060400
[    0.164109] pci 0000:07:07.0: PME# supported from D0 D3hot D3cold
[    0.164198] pci 0000:07:08.0: [10b5:8608] type 01 class 0x060400
[    0.164354] pci 0000:07:08.0: PME# supported from D0 D3hot D3cold
[    0.164446] pci 0000:07:09.0: [10b5:8608] type 01 class 0x060400
[    0.164602] pci 0000:07:09.0: PME# supported from D0 D3hot D3cold
[    0.164717] pci 0000:06:00.0: PCI bridge to [bus 07-0f]
[    0.164727] pci 0000:06:00.0:   bridge window [io  0xb000-0xcfff]
[    0.164732] pci 0000:06:00.0:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.164742] pci 0000:06:00.0:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.164826] pci 0000:07:01.0: PCI bridge to [bus 08]
[    0.164976] pci 0000:09:00.0: [1b21:1080] type 01 class 0x060400
[    0.165187] pci 0000:09:00.0: supports D1 D2
[    0.165189] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.165240] pci 0000:09:00.0: System wakeup disabled by ACPI
[    0.170457] pci 0000:07:04.0: PCI bridge to [bus 09-0a]
[    0.170702] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    0.170862] pci 0000:0b:00.0: [1106:3403] type 00 class 0x0c0010
[    0.170901] pci 0000:0b:00.0: reg 0x10: [mem 0xfb100000-0xfb1007ff 64bit]
[    0.170921] pci 0000:0b:00.0: reg 0x18: [io  0xc000-0xc0ff]
[    0.171091] pci 0000:0b:00.0: supports D2
[    0.171092] pci 0000:0b:00.0: PME# supported from D2 D3hot D3cold
[    0.178466] pci 0000:07:05.0: PCI bridge to [bus 0b]
[    0.178478] pci 0000:07:05.0:   bridge window [io  0xc000-0xcfff]
[    0.178485] pci 0000:07:05.0:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.178620] pci 0000:0c:00.0: [10ec:8168] type 00 class 0x020000
[    0.178648] pci 0000:0c:00.0: reg 0x10: [io  0xb000-0xb0ff]
[    0.178698] pci 0000:0c:00.0: reg 0x18: [mem 0xda104000-0xda104fff 64bit pref]
[    0.178729] pci 0000:0c:00.0: reg 0x20: [mem 0xda100000-0xda103fff 64bit pref]
[    0.178865] pci 0000:0c:00.0: supports D1 D2
[    0.178867] pci 0000:0c:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.186469] pci 0000:07:06.0: PCI bridge to [bus 0c]
[    0.186482] pci 0000:07:06.0:   bridge window [io  0xb000-0xbfff]
[    0.186505] pci 0000:07:06.0:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.186591] pci 0000:07:07.0: PCI bridge to [bus 0d]
[    0.186698] pci 0000:07:08.0: PCI bridge to [bus 0e]
[    0.186805] pci 0000:07:09.0: PCI bridge to [bus 0f]
[    0.187460] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.187498] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.187534] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.187570] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.187606] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.187643] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.187679] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
[    0.187717] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.187788] ACPI: Enabled 3 GPEs in block 00 to 3F
[    0.187793] ACPI: \_SB_.PCI0: notify handler is installed
[    0.187826] Found 1 acpi root devices
[    0.187883] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.187885] vgaarb: loaded
[    0.187886] vgaarb: bridge control possible 0000:01:00.0
[    0.187990] SCSI subsystem initialized
[    0.188014] libata version 3.00 loaded.
[    0.188028] ACPI: bus type USB registered
[    0.188038] usbcore: registered new interface driver usbfs
[    0.188042] usbcore: registered new interface driver hub
[    0.188055] usbcore: registered new device driver usb
[    0.188116] PCI: Using ACPI for IRQ routing
[    0.197926] PCI: pci_cache_line_size set to 64 bytes
[    0.198041] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
[    0.198042] e820: reserve RAM buffer [mem 0xcf593000-0xcfffffff]
[    0.198044] e820: reserve RAM buffer [mem 0xcf60c000-0xcfffffff]
[    0.198045] e820: reserve RAM buffer [mem 0xcf800000-0xcfffffff]
[    0.198046] e820: reserve RAM buffer [mem 0x22f800000-0x22fffffff]
[    0.198097] NetLabel: Initializing
[    0.198098] NetLabel:  domain hash size = 128
[    0.198099] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.198109] NetLabel:  unlabeled traffic allowed by default
[    0.198145] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.198149] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.200177] Switched to clocksource hpet
[    0.203480] AppArmor: AppArmor Filesystem Enabled
[    0.203499] pnp: PnP ACPI init
[    0.203508] ACPI: bus type PNP registered
[    0.203601] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
[    0.203602] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    0.203604] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.203605] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.203607] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.203609] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.203660] system 00:01: [io  0x0290-0x029f] has been reserved
[    0.203662] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.203840] pnp 00:02: [dma 2]
[    0.203868] pnp 00:02: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.203935] pnp 00:03: [dma 4]
[    0.203945] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.203964] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.203976] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.204007] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.204009] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.204025] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.204187] pnp 00:08: [dma 0 disabled]
[    0.204217] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.204339] system 00:09: [io  0x0400-0x0453] could not be reserved
[    0.204340] system 00:09: [io  0x0458-0x047f] has been reserved
[    0.204342] system 00:09: [io  0x1180-0x119f] has been reserved
[    0.204343] system 00:09: [io  0x0500-0x057f] has been reserved
[    0.204345] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.204346] system 00:09: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.204348] system 00:09: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.204349] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
[    0.204351] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.204388] system 00:0a: [io  0x0454-0x0457] has been reserved
[    0.204390] system 00:0a: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.204476] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.204572] pnp: PnP ACPI: found 12 devices
[    0.204573] ACPI: bus type PNP unregistered
[    0.210521] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.210524] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.210526] pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfb0fffff]
[    0.210528] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xd9ffffff 64bit pref]
[    0.210531] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.210546] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.210548] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
[    0.210554] pci 0000:00:1c.4:   bridge window [mem 0xfb500000-0xfb5fffff]
[    0.210564] pci 0000:00:1c.5: PCI bridge to [bus 04]
[    0.210570] pci 0000:00:1c.5:   bridge window [mem 0xfb400000-0xfb4fffff]
[    0.210580] pci 0000:00:1c.6: PCI bridge to [bus 05]
[    0.210586] pci 0000:00:1c.6:   bridge window [mem 0xfb300000-0xfb3fffff]
[    0.210597] pci 0000:07:01.0: PCI bridge to [bus 08]
[    0.210617] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    0.210644] pci 0000:07:04.0: PCI bridge to [bus 09-0a]
[    0.210665] pci 0000:07:05.0: PCI bridge to [bus 0b]
[    0.210668] pci 0000:07:05.0:   bridge window [io  0xc000-0xcfff]
[    0.210675] pci 0000:07:05.0:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.210689] pci 0000:07:06.0: PCI bridge to [bus 0c]
[    0.210693] pci 0000:07:06.0:   bridge window [io  0xb000-0xbfff]
[    0.210704] pci 0000:07:06.0:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.210714] pci 0000:07:07.0: PCI bridge to [bus 0d]
[    0.210734] pci 0000:07:08.0: PCI bridge to [bus 0e]
[    0.210754] pci 0000:07:09.0: PCI bridge to [bus 0f]
[    0.210775] pci 0000:06:00.0: PCI bridge to [bus 07-0f]
[    0.210778] pci 0000:06:00.0:   bridge window [io  0xb000-0xcfff]
[    0.210785] pci 0000:06:00.0:   bridge window [mem 0xfb100000-0xfb1fffff]
[    0.210791] pci 0000:06:00.0:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.210800] pci 0000:00:1c.7: PCI bridge to [bus 06-0f]
[    0.210803] pci 0000:00:1c.7:   bridge window [io  0xb000-0xcfff]
[    0.210809] pci 0000:00:1c.7:   bridge window [mem 0xfb100000-0xfb2fffff]
[    0.210813] pci 0000:00:1c.7:   bridge window [mem 0xda100000-0xda1fffff 64bit pref]
[    0.210821] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.210822] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.210824] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.210825] pci_bus 0000:00: resource 7 [mem 0x000c8000-0x000dffff]
[    0.210826] pci_bus 0000:00: resource 8 [mem 0xd0000000-0xffffffff]
[    0.210828] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.210829] pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfb0fffff]
[    0.210830] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xd9ffffff 64bit pref]
[    0.210832] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    0.210833] pci_bus 0000:03: resource 1 [mem 0xfb500000-0xfb5fffff]
[    0.210834] pci_bus 0000:04: resource 1 [mem 0xfb400000-0xfb4fffff]
[    0.210836] pci_bus 0000:05: resource 1 [mem 0xfb300000-0xfb3fffff]
[    0.210837] pci_bus 0000:06: resource 0 [io  0xb000-0xcfff]
[    0.210838] pci_bus 0000:06: resource 1 [mem 0xfb100000-0xfb2fffff]
[    0.210840] pci_bus 0000:06: resource 2 [mem 0xda100000-0xda1fffff 64bit pref]
[    0.210841] pci_bus 0000:07: resource 0 [io  0xb000-0xcfff]
[    0.210842] pci_bus 0000:07: resource 1 [mem 0xfb100000-0xfb1fffff]
[    0.210843] pci_bus 0000:07: resource 2 [mem 0xda100000-0xda1fffff 64bit pref]
[    0.210845] pci_bus 0000:0b: resource 0 [io  0xc000-0xcfff]
[    0.210846] pci_bus 0000:0b: resource 1 [mem 0xfb100000-0xfb1fffff]
[    0.210847] pci_bus 0000:0c: resource 0 [io  0xb000-0xbfff]
[    0.210849] pci_bus 0000:0c: resource 2 [mem 0xda100000-0xda1fffff 64bit pref]
[    0.210868] NET: Registered protocol family 2
[    0.210987] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.211104] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.211214] TCP: Hash tables configured (established 65536 bind 65536)
[    0.211228] TCP: reno registered
[    0.211236] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.211259] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.211307] NET: Registered protocol family 1
[    0.464266] pci 0000:01:00.0: Boot video device
[    0.464500] PCI: CLS 64 bytes, default 64
[    0.464537] Trying to unpack rootfs image as initramfs...
[    0.679954] Freeing initrd memory: 18652K (ffff880035b82000 - ffff880036db9000)
[    0.679959] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.679960] software IO TLB [mem 0xcb593000-0xcf593000] (64MB) mapped at [ffff8800cb593000-ffff8800cf592fff]
[    0.680129] microcode: CPU0 sig=0x206a7, pf=0x2, revision=0xd
[    0.680135] microcode: CPU1 sig=0x206a7, pf=0x2, revision=0xd
[    0.680141] microcode: CPU2 sig=0x206a7, pf=0x2, revision=0xd
[    0.680146] microcode: CPU3 sig=0x206a7, pf=0x2, revision=0xd
[    0.680201] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.680202] Scanning for low memory corruption every 60 seconds
[    0.680378] Initialise system trusted keyring
[    0.680410] audit: initializing netlink socket (disabled)
[    0.680418] type=2000 audit(1404228229.676:1): initialized
[    0.699589] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.700395] zbud: loaded
[    0.700490] VFS: Disk quotas dquot_6.5.2
[    0.700515] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.700780] fuse init (API version 7.22)
[    0.700825] msgmni has been set to 15931
[    0.700857] Key type big_key registered
[    0.701186] Key type asymmetric registered
[    0.701187] Asymmetric key parser 'x509' registered
[    0.701204] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.701230] io scheduler noop registered
[    0.701231] io scheduler deadline registered (default)
[    0.701245] io scheduler cfq registered
[    0.701370] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.701464] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.701589] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
[    0.701677] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
[    0.701764] pcieport 0000:00:1c.6: irq 44 for MSI/MSI-X
[    0.701887] pcieport 0000:00:1c.7: irq 45 for MSI/MSI-X
[    0.702021] pcieport 0000:06:00.0: irq 46 for MSI/MSI-X
[    0.702198] pcieport 0000:07:01.0: irq 47 for MSI/MSI-X
[    0.702376] pcieport 0000:07:04.0: irq 48 for MSI/MSI-X
[    0.702554] pcieport 0000:07:05.0: irq 49 for MSI/MSI-X
[    0.702732] pcieport 0000:07:06.0: irq 50 for MSI/MSI-X
[    0.702909] pcieport 0000:07:07.0: irq 51 for MSI/MSI-X
[    0.703088] pcieport 0000:07:08.0: irq 52 for MSI/MSI-X
[    0.703265] pcieport 0000:07:09.0: irq 53 for MSI/MSI-X
[    0.703374] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.703376] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.703377] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.703379] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.703398] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.703402] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.703420] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    0.703421] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.703425] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
[    0.703443] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
[    0.703444] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
[    0.703448] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
[    0.703466] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
[    0.703467] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    0.703472] pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
[    0.703489] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    0.703490] pcieport 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    0.703491] pcieport 0000:07:01.0: Signaling PME through PCIe PME interrupt
[    0.703492] pcieport 0000:07:04.0: Signaling PME through PCIe PME interrupt
[    0.703493] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    0.703494] pcieport 0000:07:05.0: Signaling PME through PCIe PME interrupt
[    0.703495] pci 0000:0b:00.0: Signaling PME through PCIe PME interrupt
[    0.703497] pcieport 0000:07:06.0: Signaling PME through PCIe PME interrupt
[    0.703498] pci 0000:0c:00.0: Signaling PME through PCIe PME interrupt
[    0.703499] pcieport 0000:07:07.0: Signaling PME through PCIe PME interrupt
[    0.703500] pcieport 0000:07:08.0: Signaling PME through PCIe PME interrupt
[    0.703501] pcieport 0000:07:09.0: Signaling PME through PCIe PME interrupt
[    0.703505] pcie_pme 0000:00:1c.7:pcie01: service driver pcie_pme loaded
[    0.703517] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.703527] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.703555] intel_idle: MWAIT substates: 0x1120
[    0.703556] intel_idle: v0.4 model 0x2A
[    0.703557] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.703616] ipmi message handler version 39.2
[    0.703655] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.703658] ACPI: Power Button [PWRB]
[    0.703679] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.703681] ACPI: Power Button [PWRF]
[    0.703990] GHES: HEST is not enabled!
[    0.704051] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.724480] 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.725578] Linux agpgart interface v0.103
[    0.726396] brd: module loaded
[    0.726792] loop: module loaded
[    0.726860] ata_piix 0000:00:1f.2: version 2.13
[    0.726909] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    0.726930] ata_piix 0000:00:1f.2: SCR access via SIDPR is available but doesn't work
[    0.727577] scsi0 : ata_piix
[    0.727666] scsi1 : ata_piix
[    0.727682] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf090 irq 14
[    0.727683] ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf098 irq 15
[    0.727736] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    0.727756] ata_piix 0000:00:1f.5: SCR access via SIDPR is available but doesn't work
[    0.728313] scsi2 : ata_piix
[    0.728397] scsi3 : ata_piix
[    0.728412] ata3: SATA max UDMA/133 cmd 0xf070 ctl 0xf060 bmdma 0xf030 irq 19
[    0.728413] ata4: SATA max UDMA/133 cmd 0xf050 ctl 0xf040 bmdma 0xf038 irq 19
[    0.728573] libphy: Fixed MDIO Bus: probed
[    0.728623] tun: Universal TUN/TAP device driver, 1.6
[    0.728624] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.728648] PPP generic driver version 2.4.2
[    0.728692] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.728695] ehci-pci: EHCI PCI platform driver
[    0.728761] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.728767] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.728782] ehci-pci 0000:00:1a.0: debug port 2
[    0.732692] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.732704] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb606000
[    0.748190] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.748245] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.748247] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.748248] usb usb1: Product: EHCI Host Controller
[    0.748249] usb usb1: Manufacturer: Linux 3.13.0-29-generic ehci_hcd
[    0.748251] usb usb1: SerialNumber: 0000:00:1a.0
[    0.748381] hub 1-0:1.0: USB hub found
[    0.748388] hub 1-0:1.0: 2 ports detected
[    0.748515] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.748519] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.748533] ehci-pci 0000:00:1d.0: debug port 2
[    0.752437] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.752449] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb605000
[    0.764197] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.764247] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.764249] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.764250] usb usb2: Product: EHCI Host Controller
[    0.764251] usb usb2: Manufacturer: Linux 3.13.0-29-generic ehci_hcd
[    0.764252] usb usb2: SerialNumber: 0000:00:1d.0
[    0.764383] hub 2-0:1.0: USB hub found
[    0.764390] hub 2-0:1.0: 2 ports detected
[    0.764456] ehci-platform: EHCI generic platform driver
[    0.764461] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.764462] ohci-pci: OHCI PCI platform driver
[    0.764468] ohci-platform: OHCI generic platform driver
[    0.764472] uhci_hcd: USB Universal Host Controller Interface driver
[    0.764529] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    0.764532] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 3
[    0.764682] xhci_hcd 0000:04:00.0: irq 54 for MSI/MSI-X
[    0.764760] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    0.764761] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.764762] usb usb3: Product: xHCI Host Controller
[    0.764764] usb usb3: Manufacturer: Linux 3.13.0-29-generic xhci_hcd
[    0.764765] usb usb3: SerialNumber: 0000:04:00.0
[    0.764903] hub 3-0:1.0: USB hub found
[    0.764914] hub 3-0:1.0: 2 ports detected
[    0.764969] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    0.764971] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
[    0.765006] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    0.765007] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.765009] usb usb4: Product: xHCI Host Controller
[    0.765010] usb usb4: Manufacturer: Linux 3.13.0-29-generic xhci_hcd
[    0.765011] usb usb4: SerialNumber: 0000:04:00.0
[    0.765152] hub 4-0:1.0: USB hub found
[    0.765162] hub 4-0:1.0: 2 ports detected
[    0.772329] xhci_hcd 0000:05:00.0: xHCI Host Controller
[    0.772335] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 5
[    0.772481] xhci_hcd 0000:05:00.0: irq 55 for MSI/MSI-X
[    0.772560] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[    0.772561] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.772562] usb usb5: Product: xHCI Host Controller
[    0.772564] usb usb5: Manufacturer: Linux 3.13.0-29-generic xhci_hcd
[    0.772565] usb usb5: SerialNumber: 0000:05:00.0
[    0.772704] hub 5-0:1.0: USB hub found
[    0.772714] hub 5-0:1.0: 2 ports detected
[    0.772768] xhci_hcd 0000:05:00.0: xHCI Host Controller
[    0.772771] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 6
[    0.772805] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
[    0.772807] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.772808] usb usb6: Product: xHCI Host Controller
[    0.772809] usb usb6: Manufacturer: Linux 3.13.0-29-generic xhci_hcd
[    0.772810] usb usb6: SerialNumber: 0000:05:00.0
[    0.772948] hub 6-0:1.0: USB hub found
[    0.772958] hub 6-0:1.0: 2 ports detected
[    0.780309] i8042: PNP: No PS/2 controller found. Probing ports directly.
[    0.783018] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.783024] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.783260] mousedev: PS/2 mouse device common for all mice
[    0.783561] rtc_cmos 00:04: RTC can wake from S4
[    0.783700] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    0.783731] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.783766] device-mapper: uevent: version 1.0.3
[    0.783831] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    0.783835] ledtrig-cpu: registered to indicate activity on CPUs
[    0.783898] TCP: cubic registered
[    0.783951] NET: Registered protocol family 10
[    0.784056] NET: Registered protocol family 17
[    0.784064] Key type dns_resolver registered
[    0.784289] Loading compiled-in X.509 certificates
[    0.784956] Loaded X.509 cert 'Magrathea: Glacier signing key: 6602cb36f1313bea01c4bda96567cfa723c970d8'
[    0.784963] registered taskstats version 1
[    0.787105] Key type trusted registered
[    0.788899] Key type encrypted registered
[    0.790717] AppArmor: AppArmor sha1 policy hashing enabled
[    0.790719] IMA: No TPM chip found, activating TPM-bypass!
[    0.791313] regulator-dummy: disabling
[    0.791412]   Magic number: 6:493:385
[    0.791416] usb usb3: hash matches
[    0.791423] thermal cooling_device0: hash matches
[    0.791520] rtc_cmos 00:04: setting system clock to 2014-07-01 15:23:50 UTC (1404228230)
[    0.792023] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.792024] EDD information not available.
[    0.792051] PM: Hibernation image not present or could not be loaded.
[    0.904545] ata2.00: ATA-9: SAMSUNG SSD 830 Series, CXM03B1Q, max UDMA/133
[    0.904547] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    0.904550] ata2.01: ATAPI: HL-DT-ST DVDRAM GH22NS70, EX00, max UDMA/100
[    0.912580] ata2.00: configured for UDMA/133
[    0.916501] ata4.00: ATA-8: ST1000DM005 HD103SJ, 1AJ10001, max UDMA/133
[    0.916506] ata4.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    0.924499] ata4.00: configured for UDMA/133
[    0.928427] ata2.01: configured for UDMA/100
[    0.934052] scsi 1:0:0:0: Direct-Access     ATA      SAMSUNG SSD 830  CXM0 PQ: 0 ANSI: 5
[    0.934171] sd 1:0:0:0: Attached scsi generic sg0 type 0
[    0.934227] sd 1:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    0.937414] scsi 1:0:1:0: CD-ROM            HL-DT-ST DVDRAM GH22NS70  EX00 PQ: 0 ANSI: 5
[    0.943619] sd 1:0:0:0: [sda] Write Protect is off
[    0.943622] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.946037] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    0.946042] cdrom: Uniform CD-ROM driver Revision: 3.20
[    0.946149] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.946213] sr 1:0:1:0: Attached scsi CD-ROM sr0
[    0.946270] sr 1:0:1:0: Attached scsi generic sg1 type 5
[    0.946474] scsi 3:0:0:0: Direct-Access     ATA      ST1000DM005 HD10 1AJ1 PQ: 0 ANSI: 5
[    0.946633] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    0.946655] sd 3:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[    0.946794] sd 3:0:0:0: [sdb] Write Protect is off
[    0.946796] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    0.946831] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.947765]  sda: sda1 sda2
[    0.948070] sd 1:0:0:0: [sda] Attached SCSI disk
[    0.991485]  sdb: sdb1 sdb2 sdb3 < sdb5 >
[    0.992018] sd 3:0:0:0: [sdb] Attached SCSI disk
[    0.993032] Freeing unused kernel memory: 1332K (ffffffff81d1f000 - ffffffff81e6c000)
[    0.993034] Write protecting the kernel read-only data: 12288k
[    0.994584] Freeing unused kernel memory: 824K (ffff880001732000 - ffff880001800000)
[    0.995818] Freeing unused kernel memory: 700K (ffff880001b51000 - ffff880001c00000)
[    1.010714] systemd-udevd[143]: starting version 204
[    1.026128] scsi4 : pata_marvell
[    1.026179] scsi5 : pata_marvell
[    1.026201] ata5: PATA max UDMA/100 cmd 0xd040 ctl 0xd030 bmdma 0xd000 irq 16
[    1.026203] ata6: PATA max UDMA/133 cmd 0xd020 ctl 0xd010 bmdma 0xd008 irq 16
[    1.030309] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.030517] r8169 0000:0c:00.0: irq 56 for MSI/MSI-X
[    1.030630] r8169 0000:0c:00.0 eth0: RTL8168e/8111e at 0xffffc90000c62000, 00:25:22:b1:f3:2b, XID 0c200000 IRQ 56
[    1.030631] r8169 0000:0c:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.038226] FDC 0 is a post-1991 82077
[    1.060271] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.092223] firewire_ohci 0000:0b:00.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
[    1.192489] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.192494] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.192772] hub 1-1:1.0: USB hub found
[    1.192854] hub 1-1:1.0: 6 ports detected
[    1.304260] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.344410] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null)
[    1.436527] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.436530] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.436795] hub 2-1:1.0: USB hub found
[    1.436902] hub 2-1:1.0: 8 ports detected
[    1.592321] firewire_core 0000:0b:00.0: created device fw0: GUID 008f130076310d00, S400
[    1.676168] tsc: Refined TSC clocksource calibration: 3292.521 MHz
[    1.708285] usb 2-1.3: new full-speed USB device number 3 using ehci-pci
[    1.804360] usb 2-1.3: New USB device found, idVendor=046d, idProduct=c068
[    1.804365] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.804368] usb 2-1.3: Product: G500
[    1.804370] usb 2-1.3: Manufacturer: Logitech
[    1.804373] usb 2-1.3: SerialNumber: 04E3DCC1840018
[    1.815226] random: init urandom read with 93 bits of entropy available
[    1.876266] usb 2-1.4: new full-speed USB device number 4 using ehci-pci
[    1.974561] usb 2-1.4: New USB device found, idVendor=046d, idProduct=c223
[    1.974564] usb 2-1.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    1.974565] usb 2-1.4: Product: G15 Keyboard Hub
[    1.974953] hub 2-1.4:1.0: USB hub found
[    1.975323] hub 2-1.4:1.0: 4 ports detected
[    2.048261] usb 2-1.6: new high-speed USB device number 5 using ehci-pci
[    2.174703] usb 2-1.6: New USB device found, idVendor=045e, idProduct=0772
[    2.174709] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.174712] usb 2-1.6: Product: Microsoft\xffffffc2\xffffffae LifeCam Studio(TM)
[    2.174715] usb 2-1.6: Manufacturer: Microsoft
[    2.248371] usb 2-1.4.1: new low-speed USB device number 6 using ehci-pci
[    2.346824] usb 2-1.4.1: New USB device found, idVendor=046d, idProduct=c226
[    2.346829] usb 2-1.4.1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.346832] usb 2-1.4.1: Product: G15 Gaming Keyboard
[    2.416344] usb 2-1.4.4: new full-speed USB device number 7 using ehci-pci
[    2.511695] usb 2-1.4.4: New USB device found, idVendor=046d, idProduct=c227
[    2.511700] usb 2-1.4.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.511703] usb 2-1.4.4: Product: G15 GamePanel LCD
[    2.577252] random: nonblocking pool is initialized
[    2.676351] Switched to clocksource tsc
[    3.656579] Adding 9763836k swap on /dev/sdb5.  Priority:-1 extents:1 across:9763836k FS
[    3.765829] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    4.092091] systemd-udevd[319]: starting version 204
[    4.854802] lp: driver loaded but no devices found
[    4.859008] ppdev: user-space parallel port driver
[    7.017786] mei_me 0000:00:16.0: irq 57 for MSI/MSI-X
[    7.025478] [drm] Initialized drm 1.1.0 20060810
[    7.027054] wmi: Mapper loaded
[    7.028479] nvidia: module license 'NVIDIA' taints kernel.
[    7.028481] Disabling lock debugging due to kernel taint
[    7.031330] nvidia: module verification failed: signature and/or  required key missing - tainting kernel
[    7.034320] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
[    7.034434] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
[    7.034441] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  331.38  Wed Jan  8 19:32:30 PST 2014
[    7.045132] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    7.062664] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPR2 1 (20131115/utaddress-251)
[    7.062669] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.062670] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPR2 1 (20131115/utaddress-251)
[    7.062672] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.062673] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPR2 1 (20131115/utaddress-251)
[    7.062675] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.062676] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    7.110003] snd_hda_intel 0000:00:1b.0: irq 58 for MSI/MSI-X
[    7.244088] intel_rapl: domain uncore energy ctr 0:0 not working, skip
[    7.359012] SKU: Nid=0x1d sku_cfg=0x4006de01
[    7.359014] SKU: port_connectivity=0x1
[    7.359015] SKU: enable_pcbeep=0x0
[    7.359016] SKU: check_sum=0x00000006
[    7.359017] SKU: customization=0x000000de
[    7.359017] SKU: external_amp=0x0
[    7.359018] SKU: platform_type=0x0
[    7.359019] SKU: swap=0x0
[    7.359019] SKU: override=0x1
[    7.359487] autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[    7.359489]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.359489]    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    7.359490]    mono: mono_out=0x0
[    7.359491]    dig-out=0x1e/0x0
[    7.359491]    inputs:
[    7.359493]      Front Mic=0x19
[    7.359494]      Rear Mic=0x18
[    7.359495]      Line=0x1a
[    7.359495] realtek: No valid SSID, checking pincfg 0x4006de01 for NID 0x1d
[    7.359496] realtek: Enabling init ASM_ID=0xde01 CODEC_ID=10ec0892
[    7.372909] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.372956] input: HDA Intel PCH Line Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    7.372990] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    7.373023] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    7.373057] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    7.373161] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[    7.373193] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[    7.373224] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[    7.373457] hda_intel: Disabling MSI
[    7.373463] hda-intel 0000:01:00.1: Handle VGA-switcheroo audio client
[    7.373493] hda-intel 0000:01:00.1: Disabling 64bit DMA
[    7.376746] hda-intel 0000:01:00.1: Enable delay in RIRB handling
[    7.574348] type=1400 audit(1404221037.276:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=466 comm="apparmor_parser"
[    7.574353] type=1400 audit(1404221037.276:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=466 comm="apparmor_parser"
[    7.574356] type=1400 audit(1404221037.276:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=466 comm="apparmor_parser"
[    7.574363] type=1400 audit(1404221037.276:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=465 comm="apparmor_parser"
[    7.574368] type=1400 audit(1404221037.276:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=465 comm="apparmor_parser"
[    7.574371] type=1400 audit(1404221037.276:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=465 comm="apparmor_parser"
[    7.574650] type=1400 audit(1404221037.276:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=466 comm="apparmor_parser"
[    7.574653] type=1400 audit(1404221037.276:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=466 comm="apparmor_parser"
[    7.574664] type=1400 audit(1404221037.276:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=465 comm="apparmor_parser"
[    7.574666] type=1400 audit(1404221037.276:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=465 comm="apparmor_parser"
[    8.184097] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[    8.184261] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[    8.184368] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[    8.184486] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[    8.887875] hidraw: raw HID events driver (C) Jiri Kosina
[    8.891093] Linux video capture interface: v2.00
[    8.904451] usbcore: registered new interface driver usbhid
[    8.904460] usbhid: USB HID core driver
[    8.906357] input: Logitech G500 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input17
[    8.906494] hid-generic 0003:046D:C068.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech G500] on usb-0000:00:1d.0-1.3/input0
[    8.907791] input: Logitech G500 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input18
[    8.907893] hid-generic 0003:046D:C068.0002: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [Logitech G500] on usb-0000:00:1d.0-1.3/input1
[    9.247946] hid-generic 0003:045E:0772.0003: hiddev0,hidraw2: USB HID v1.01 Device [Microsoft Microsoft\xffffffc2\xffffffae LifeCam Studio(TM)] on usb-0000:00:1d.0-1.6/input4
[    9.248067] input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4.1/2-1.4.1:1.0/input/input19
[    9.248163] hid-generic 0003:046D:C226.0004: input,hidraw3: USB HID v1.10 Keyboard [G15 Gaming Keyboard] on usb-0000:00:1d.0-1.4.1/input0
[    9.250747] input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4.1/2-1.4.1:1.1/input/input20
[    9.250820] hid-generic 0003:046D:C226.0005: input,hiddev0,hidraw4: USB HID v1.10 Device [G15 Gaming Keyboard] on usb-0000:00:1d.0-1.4.1/input1
[    9.251435] input: G15 GamePanel LCD as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4.4/2-1.4.4:1.0/input/input21
[    9.251592] hid-generic 0003:046D:C227.0006: input,hiddev0,hidraw5: USB HID v1.11 Keypad [G15 GamePanel LCD] on usb-0000:00:1d.0-1.4.4/input0
[   13.746725] EXT4-fs (sdb2): re-mounted. Opts: errors=remount-ro
[   13.997270] init: failsafe main process (619) killed by TERM signal
[   14.096105] audit_printk_skb: 6 callbacks suppressed
[   14.096108] type=1400 audit(1404221043.800:14): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=719 comm="apparmor_parser"
[   14.096112] type=1400 audit(1404221043.800:15): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=719 comm="apparmor_parser"
[   14.096423] type=1400 audit(1404221043.800:16): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=719 comm="apparmor_parser"
[   14.244064] 5:3:1: cannot get freq at ep 0x82
[   14.304355] usbcore: registered new interface driver snd-usb-audio
[   14.304366] uvcvideo: Found UVC 1.00 device Microsoft\xffffffc2\xffffffae LifeCam Studio(TM) (045e:0772)
[   14.361884] input: Microsoft\xffffffc2\xffffffae LifeCam Studio(TM) as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input22
[   14.361971] usbcore: registered new interface driver uvcvideo
[   14.361972] USB Video Class driver (1.1.1)
[   14.378791] type=1400 audit(1404221044.080:17): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=737 comm="apparmor_parser"
[   14.378797] type=1400 audit(1404221044.080:18): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=737 comm="apparmor_parser"
[   14.378800] type=1400 audit(1404221044.080:19): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=737 comm="apparmor_parser"
[   14.378802] type=1400 audit(1404221044.080:20): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=737 comm="apparmor_parser"
[   14.378805] type=1400 audit(1404221044.080:21): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=737 comm="apparmor_parser"
[   14.378808] type=1400 audit(1404221044.080:22): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=737 comm="apparmor_parser"
[   14.381493] type=1400 audit(1404221044.084:23): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="sanitized_helper" pid=737 comm="apparmor_parser"
[   14.382320] init: udev-fallback-graphics main process (740) terminated with status 1
[   14.463484] Bluetooth: Core ver 2.17
[   14.463495] NET: Registered protocol family 31
[   14.463496] Bluetooth: HCI device and connection manager initialized
[   14.463502] Bluetooth: HCI socket layer initialized
[   14.463503] Bluetooth: L2CAP socket layer initialized
[   14.463506] Bluetooth: SCO socket layer initialized
[   14.465957] Bluetooth: RFCOMM TTY layer initialized
[   14.465962] Bluetooth: RFCOMM socket layer initialized
[   14.465964] Bluetooth: RFCOMM ver 1.11
[   14.578676] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.578678] Bluetooth: BNEP filters: protocol multicast
[   14.578684] Bluetooth: BNEP socket layer initialized
[   14.641909] init: cups main process (724) killed by HUP signal
[   14.641918] init: cups main process ended, respawning