ubuntuusers.de

Vostro 3750 WLAN Problem

Autor:
ratzeputz
Datum:
7. August 2014 07:51
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
[    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-32-generic (buildd@kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 (Ubuntu 3.13.0-32.57-generic 3.13.11.4)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=UUID=ac1d1bb9-c2ae-4d1d-a628-b632ddf6de23 ro quiet splash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] Disabled fast string operations
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bac8efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bac8f000-0x00000000bacabfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bacac000-0x00000000bacb7fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bacb8000-0x00000000badcefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000badcf000-0x00000000badcffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000badd0000-0x00000000badfafff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000badfb000-0x00000000badfcfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000badfd000-0x00000000badfefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000badff000-0x00000000bae01fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae09fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bae0a000-0x00000000bae1afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bae1b000-0x00000000baf17fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baf18000-0x00000000baf1bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000baf1c000-0x00000000baf1efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baf1f000-0x00000000baf9efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043e9fefff] usable
[    0.000000] BIOS-e820: [mem 0x000000043e9ff000-0x000000043fdfffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: Dell Inc.          Dell System Vostro 3750/0RY9C2, BIOS A14 09/26/2012
[    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 = 0x43e9ff max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask E00000000 write-back
[    0.000000]   7 base 400000000 mask FC0000000 write-back
[    0.000000]   8 base 43FE00000 mask FFFE00000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fdf000, 0x01fdffff] PGTABLE
[    0.000000] BRK [0x01fe0000, 0x01fe0fff] PGTABLE
[    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x43e600000-0x43e7fffff]
[    0.000000]  [mem 0x43e600000-0x43e7fffff] page 2M
[    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x43c000000-0x43e5fffff]
[    0.000000]  [mem 0x43c000000-0x43e5fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x400000000-0x43bffffff]
[    0.000000]  [mem 0x400000000-0x43bffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbac8efff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbabfffff] page 2M
[    0.000000]  [mem 0xbac00000-0xbac8efff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbafff000-0xbaffffff]
[    0.000000]  [mem 0xbafff000-0xbaffffff] page 4k
[    0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[    0.000000]  [mem 0x100000000-0x3ffffffff] page 2M
[    0.000000] BRK [0x01fe4000, 0x01fe4fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x43e800000-0x43e9fefff]
[    0.000000]  [mem 0x43e800000-0x43e9fefff] page 4k
[    0.000000] RAMDISK: [mem 0x34c3c000-0x36615fff]
[    0.000000] ACPI: RSDP 00000000000f00e0 000024 (v02 DELL  )
[    0.000000] ACPI: XSDT 00000000baffe120 000094 (v01 DELL    QA09    00000002 LOHR 00000002)
[    0.000000] ACPI: FACP 00000000bafed000 0000F4 (v03 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: DSDT 00000000baff0000 009E27 (v02 DELL    SNB-CPT 00000000 INTL 20061109)
[    0.000000] ACPI: FACS 00000000baf40000 000040
[    0.000000] ACPI: SLIC 00000000baffd000 000176 (v01 DELL    QA09    00000002 LOHR 00000001)
[    0.000000] ACPI: BOOT 00000000baffc000 000028 (v01                 00000001 PTL  00000001)
[    0.000000] ACPI: SSDT 00000000baffa000 001068 (v01 DELL   PtidDevc 00001000 INTL 20061109)
[    0.000000] ACPI: ASF! 00000000bafef000 0000A5 (v32 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: HPET 00000000bafec000 000038 (v01 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: APIC 00000000bafeb000 000098 (v01 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: MCFG 00000000bafea000 00003C (v01 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: SSDT 00000000bafe9000 000F3D (v01 NvORef NvOptTbl 00001000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000bafe8000 00094E (v01  PmRef  Cpu0Ist 00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000bafe7000 000996 (v01  PmRef    CpuPm 00003000 INTL 20061109)
[    0.000000] ACPI: UEFI 00000000bafe6000 00003E (v01 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: UEFI 00000000bafe5000 000042 (v01 PTL      COMBUF 00000001 PTL  00000001)
[    0.000000] ACPI: UEFI 00000000bafe4000 000256 (v01 DELL    QA09    00000002 PTL  00000002)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000043e9fefff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x43e9fefff]
[    0.000000]   NODE_DATA [mem 0x43e9fa000-0x43e9fefff]
[    0.000000]  [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042de00000-ffff88043ddfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x43e9fefff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009cfff]
[    0.000000]   node   0: [mem 0x00100000-0xbac8efff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x43e9fefff]
[    0.000000] On node 0 totalpages: 4167211
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 156 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11891 pages used for memmap
[    0.000000]   DMA32 zone: 760976 pages, LIFO batch:31
[    0.000000]   Normal zone: 53160 pages used for memmap
[    0.000000]   Normal zone: 3402239 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[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] 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 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: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbac8f000-0xbacabfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbacac000-0xbacb7fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbacb8000-0xbadcefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbadcf000-0xbadcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbadd0000-0xbadfafff]
[    0.000000] PM: Registered nosave memory: [mem 0xbadfb000-0xbadfcfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbadfd000-0xbadfefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbadff000-0xbae01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbae02000-0xbae09fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbae0a000-0xbae1afff]
[    0.000000] PM: Registered nosave memory: [mem 0xbae1b000-0xbaf17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf18000-0xbaf1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf1c000-0xbaf1efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf1f000-0xbaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    0.000000] e820: [mem 0xbfa00000-0xf7ffffff] 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:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88043e400000 s86336 r8192 d24256 u262144
[    0.000000] pcpu-alloc: s86336 r8192 d24256 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 4101940
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-32-generic root=UUID=ac1d1bb9-c2ae-4d1d-a628-b632ddf6de23 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: 16295988K/16668844K available (7363K kernel code, 1142K rwdata, 3400K rodata, 1336K init, 1440K bss, 372856K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=8.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
[    0.000000] NR_IRQS:16640 nr_irqs:744 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 67108864 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 2192.809 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4385.61 BogoMIPS (lpj=8771236)
[    0.000005] pid_max: default: 32768 minimum: 301
[    0.000029] Security Framework initialized
[    0.000047] AppArmor: AppArmor initialized
[    0.000048] Yama: becoming mindful.
[    0.001318] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.004957] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.006498] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.006521] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
[    0.006767] Initializing cgroup subsys memory
[    0.006772] Initializing cgroup subsys devices
[    0.006774] Initializing cgroup subsys freezer
[    0.006775] Initializing cgroup subsys blkio
[    0.006776] Initializing cgroup subsys perf_event
[    0.006779] Initializing cgroup subsys hugetlb
[    0.006799] Disabled fast string operations
[    0.006801] CPU: Physical Processor ID: 0
[    0.006802] CPU: Processor Core ID: 0
[    0.006806] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.006806] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.006809] mce: CPU supports 9 MCE banks
[    0.006821] CPU0: Thermal monitoring handled by SMI
[    0.006830] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
[    0.006830] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
[    0.006830] tlb_flushall_shift: 5
[    0.006947] Freeing SMP alternatives memory: 32K (ffffffff81e6d000 - ffffffff81e75000)
[    0.008077] ACPI: Core revision 20131115
[    0.013532] ACPI: All ACPI Tables successfully acquired
[    0.024100] ftrace: allocating 28495 entries in 112 pages
[    0.038937] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.078625] smpboot: CPU0: Intel(R) Core(TM) i7-2670QM CPU @ 2.20GHz (fam: 06, model: 2a, stepping: 07)
[    0.078632] TSC deadline timer enabled
[    0.078643] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.078649] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
[    0.078652] ... version:                3
[    0.078652] ... bit width:              48
[    0.078653] ... generic registers:      4
[    0.078654] ... value mask:             0000ffffffffffff
[    0.078655] ... max period:             0000ffffffffffff
[    0.078656] ... fixed-purpose events:   3
[    0.078657] ... event mask:             000000070000000f
[    0.080427] x86: Booting SMP configuration:
[    0.091548] Disabled fast string operations
[    0.091565] CPU1: Thermal monitoring handled by SMI
[    0.093757] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.104793] Disabled fast string operations
[    0.104810] CPU2: Thermal monitoring handled by SMI
[    0.118036] Disabled fast string operations
[    0.118053] CPU3: Thermal monitoring handled by SMI
[    0.131281] Disabled fast string operations
[    0.131298] CPU4: Thermal monitoring handled by SMI
[    0.144518] Disabled fast string operations
[    0.144534] CPU5: Thermal monitoring handled by SMI
[    0.157760] Disabled fast string operations
[    0.157777] CPU6: Thermal monitoring handled by SMI
[    0.170998] Disabled fast string operations
[    0.171014] CPU7: Thermal monitoring handled by SMI
[    0.080429] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.173124] x86: Booted up 1 node, 8 CPUs
[    0.173128] smpboot: Total of 8 processors activated (35084.94 BogoMIPS)
[    0.180898] devtmpfs: initialized
[    0.184168] EVM: security.selinux
[    0.184169] EVM: security.SMACK64
[    0.184170] EVM: security.ima
[    0.184171] EVM: security.capability
[    0.184213] PM: Registering ACPI NVS region [mem 0xbacac000-0xbacb7fff] (49152 bytes)
[    0.184215] PM: Registering ACPI NVS region [mem 0xbadcf000-0xbadcffff] (4096 bytes)
[    0.184216] PM: Registering ACPI NVS region [mem 0xbadfb000-0xbadfcfff] (8192 bytes)
[    0.184218] PM: Registering ACPI NVS region [mem 0xbadff000-0xbae01fff] (12288 bytes)
[    0.184219] PM: Registering ACPI NVS region [mem 0xbae0a000-0xbae1afff] (69632 bytes)
[    0.184220] PM: Registering ACPI NVS region [mem 0xbaf18000-0xbaf1bfff] (16384 bytes)
[    0.184222] PM: Registering ACPI NVS region [mem 0xbaf1f000-0xbaf9efff] (524288 bytes)
[    0.184993] pinctrl core: initialized pinctrl subsystem
[    0.185052] regulator-dummy: no parameters
[    0.185083] RTC time:  5:42:20, date: 08/07/14
[    0.185116] NET: Registered protocol family 16
[    0.185212] cpuidle: using governor ladder
[    0.185214] cpuidle: using governor menu
[    0.185247] ACPI: bus type PCI registered
[    0.185249] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.185310] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.185313] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.192798] PCI: Using configuration type 1 for base access
[    0.193102] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.193103] mtrr: probably your BIOS does not setup all CPUs.
[    0.193104] mtrr: corrected configuration.
[    0.193814] bio: create slab <bio-0> at 0
[    0.193994] ACPI: Added _OSI(Module Device)
[    0.193996] ACPI: Added _OSI(Processor Device)
[    0.193998] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.193999] ACPI: Added _OSI(Processor Aggregator Device)
[    0.196709] ACPI: Executed 2 blocks of module-level executable AML code
[    0.204732] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.205167] ACPI: SSDT 00000000bae06718 00067C (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.205526] ACPI: Dynamic OEM Table Load:
[    0.205528] ACPI: SSDT           (null) 00067C (v01  PmRef  Cpu0Cst 00003001 INTL 20061109)
[    0.208927] ACPI: SSDT 00000000bae07a98 000303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.209304] ACPI: Dynamic OEM Table Load:
[    0.209306] ACPI: SSDT           (null) 000303 (v01  PmRef    ApIst 00003000 INTL 20061109)
[    0.212800] ACPI: SSDT 00000000bae05d98 000119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.213146] ACPI: Dynamic OEM Table Load:
[    0.213148] ACPI: SSDT           (null) 000119 (v01  PmRef    ApCst 00003000 INTL 20061109)
[    0.219528] ACPI: Interpreter enabled
[    0.219536] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.219540] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.219554] ACPI: (supports S0 S3 S4 S5)
[    0.219556] ACPI: Using IOAPIC for interrupt routing
[    0.219580] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.219698] ACPI: No dock devices found.
[    0.225713] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.225719] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.225751] \_SB_.PCI0:_OSC invalid UUID
[    0.225752] _OSC request data:1 1f 0 
[    0.225756] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.226362] PCI host bridge to bus 0000:00
[    0.226366] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.226368] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.226369] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.226371] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.226373] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.226374] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[    0.226382] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.226457] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.226489] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.226522] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.226554] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.226565] pci 0000:00:02.0: reg 0x10: [mem 0xf1400000-0xf17fffff 64bit]
[    0.226571] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.226575] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    0.226668] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.226693] pci 0000:00:16.0: reg 0x10: [mem 0xf2b05000-0xf2b0500f 64bit]
[    0.226772] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.226845] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.226867] pci 0000:00:1a.0: reg 0x10: [mem 0xf2b0a000-0xf2b0a3ff]
[    0.226960] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.227010] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.227045] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.227062] pci 0000:00:1b.0: reg 0x10: [mem 0xf2b00000-0xf2b03fff 64bit]
[    0.227133] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.227197] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.227279] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.227317] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.227351] pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
[    0.227433] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.227472] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.227502] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.227583] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.227621] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.227649] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
[    0.227731] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.227769] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.227804] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.227826] pci 0000:00:1d.0: reg 0x10: [mem 0xf2b09000-0xf2b093ff]
[    0.227920] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.227968] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.228000] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100
[    0.228169] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.228190] pci 0000:00:1f.2: reg 0x10: [io  0x5088-0x508f]
[    0.228199] pci 0000:00:1f.2: reg 0x14: [io  0x5094-0x5097]
[    0.228207] pci 0000:00:1f.2: reg 0x18: [io  0x5080-0x5087]
[    0.228215] pci 0000:00:1f.2: reg 0x1c: [io  0x5090-0x5093]
[    0.228224] pci 0000:00:1f.2: reg 0x20: [io  0x5060-0x507f]
[    0.228232] pci 0000:00:1f.2: reg 0x24: [mem 0xf2b08000-0xf2b087ff]
[    0.228279] pci 0000:00:1f.2: PME# supported from D3hot
[    0.228337] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.228353] pci 0000:00:1f.3: reg 0x10: [mem 0xf2b04000-0xf2b040ff 64bit]
[    0.228375] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.228487] pci 0000:01:00.0: [10de:0df5] type 00 class 0x030000
[    0.228496] pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf0ffffff]
[    0.228504] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.228513] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.228519] pci 0000:01:00.0: reg 0x24: [io  0x4000-0x407f]
[    0.228525] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    0.228569] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.232719] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.232726] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    0.232733] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf10fffff]
[    0.232741] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.232860] pci 0000:02:00.0: [168c:002b] type 00 class 0x028000
[    0.232889] pci 0000:02:00.0: reg 0x10: [mem 0xf2a00000-0xf2a0ffff 64bit]
[    0.233022] pci 0000:02:00.0: supports D1
[    0.233023] pci 0000:02:00.0: PME# supported from D0 D1 D3hot
[    0.233057] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.240734] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.240749] pci 0000:00:1c.0:   bridge window [mem 0xf2a00000-0xf2afffff]
[    0.240875] pci 0000:03:00.0: [1033:0194] type 00 class 0x0c0330
[    0.240902] pci 0000:03:00.0: reg 0x10: [mem 0xf2900000-0xf2901fff 64bit]
[    0.241039] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.241074] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.248747] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.248761] pci 0000:00:1c.2:   bridge window [mem 0xf2900000-0xf29fffff]
[    0.248881] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[    0.248903] pci 0000:04:00.0: reg 0x10: [io  0x3000-0x30ff]
[    0.248938] pci 0000:04:00.0: reg 0x18: [mem 0xf1804000-0xf1804fff 64bit pref]
[    0.248960] pci 0000:04:00.0: reg 0x20: [mem 0xf1800000-0xf1803fff 64bit pref]
[    0.249054] pci 0000:04:00.0: supports D1 D2
[    0.249056] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.249095] pci 0000:04:00.0: System wakeup disabled by ACPI
[    0.256757] pci 0000:00:1c.4: PCI bridge to [bus 04]
[    0.256766] pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
[    0.256785] pci 0000:00:1c.4:   bridge window [mem 0xf1800000-0xf18fffff 64bit pref]
[    0.256871] pci 0000:00:1c.5: PCI bridge to [bus 05-09]
[    0.256875] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    0.256879] pci 0000:00:1c.5:   bridge window [mem 0xf2100000-0xf28fffff]
[    0.256886] pci 0000:00:1c.5:   bridge window [mem 0xf1900000-0xf20fffff 64bit pref]
[    0.257374] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.257428] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.257480] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.257530] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.257580] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.257631] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.257681] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.257731] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.257947] ACPI: Enabled 6 GPEs in block 00 to 3F
[    0.257954] ACPI: \_SB_.PCI0: notify handler is installed
[    0.257996] Found 1 acpi root devices
[    0.258053] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.258134] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.258138] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.258139] vgaarb: loaded
[    0.258140] vgaarb: bridge control possible 0000:01:00.0
[    0.258141] vgaarb: no bridge control possible 0000:00:02.0
[    0.258284] SCSI subsystem initialized
[    0.258327] libata version 3.00 loaded.
[    0.258345] ACPI: bus type USB registered
[    0.258358] usbcore: registered new interface driver usbfs
[    0.258365] usbcore: registered new interface driver hub
[    0.258383] usbcore: registered new device driver usb
[    0.258486] PCI: Using ACPI for IRQ routing
[    0.260040] PCI: pci_cache_line_size set to 64 bytes
[    0.260095] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.260097] e820: reserve RAM buffer [mem 0xbac8f000-0xbbffffff]
[    0.260100] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.260101] e820: reserve RAM buffer [mem 0x43e9ff000-0x43fffffff]
[    0.260176] NetLabel: Initializing
[    0.260178] NetLabel:  domain hash size = 128
[    0.260179] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.260190] NetLabel:  unlabeled traffic allowed by default
[    0.260242] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.260247] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.262288] Switched to clocksource hpet
[    0.266567] AppArmor: AppArmor Filesystem Enabled
[    0.266590] pnp: PnP ACPI init
[    0.266601] ACPI: bus type PNP registered
[    0.266634] pnp 00:00: [dma 4]
[    0.266654] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.266746] pnp 00:01: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.266775] pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.266821] system 00:03: [io  0x0680-0x069f] has been reserved
[    0.266823] system 00:03: [io  0x1000-0x1003] has been reserved
[    0.266825] system 00:03: [io  0x1004-0x1013] has been reserved
[    0.266827] system 00:03: [io  0xffff] has been reserved
[    0.266829] system 00:03: [io  0x0400-0x0453] could not be reserved
[    0.266831] system 00:03: [io  0x0458-0x047f] has been reserved
[    0.266833] system 00:03: [io  0x0500-0x057f] has been reserved
[    0.266834] system 00:03: [io  0x164e-0x164f] has been reserved
[    0.266837] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.266859] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.266901] system 00:05: [io  0x0454-0x0457] has been reserved
[    0.266903] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.266953] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.266992] pnp 00:07: Plug and Play ACPI device, IDs DLL04c6 PNP0f13 (active)
[    0.267111] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.267113] system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.267114] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.267116] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.267118] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.267120] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.267121] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.267123] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.267125] system 00:08: [mem 0xff000000-0xffffffff] could not be reserved
[    0.267127] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.267129] system 00:08: [mem 0xfff00000-0xfff00fff] has been reserved
[    0.267131] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.267249] pnp 00:09: Plug and Play ACPI device, IDs SMO8800 (active)
[    0.267361] pnp: PnP ACPI: found 10 devices
[    0.267363] ACPI: bus type PNP unregistered
[    0.273547] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.273590] pci 0000:01:00.0: BAR 6: assigned [mem 0xf1000000-0xf107ffff pref]
[    0.273592] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.273594] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    0.273597] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf10fffff]
[    0.273600] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.273603] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.273609] pci 0000:00:1c.0:   bridge window [mem 0xf2a00000-0xf2afffff]
[    0.273618] pci 0000:00:1c.2: PCI bridge to [bus 03]
[    0.273623] pci 0000:00:1c.2:   bridge window [mem 0xf2900000-0xf29fffff]
[    0.273631] pci 0000:00:1c.4: PCI bridge to [bus 04]
[    0.273635] pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
[    0.273642] pci 0000:00:1c.4:   bridge window [mem 0xf1800000-0xf18fffff 64bit pref]
[    0.273649] pci 0000:00:1c.5: PCI bridge to [bus 05-09]
[    0.273652] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    0.273657] pci 0000:00:1c.5:   bridge window [mem 0xf2100000-0xf28fffff]
[    0.273662] pci 0000:00:1c.5:   bridge window [mem 0xf1900000-0xf20fffff 64bit pref]
[    0.273669] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.273671] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.273672] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.273674] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.273676] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[    0.273677] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    0.273679] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
[    0.273680] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.273682] pci_bus 0000:02: resource 1 [mem 0xf2a00000-0xf2afffff]
[    0.273684] pci_bus 0000:03: resource 1 [mem 0xf2900000-0xf29fffff]
[    0.273686] pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
[    0.273688] pci_bus 0000:04: resource 2 [mem 0xf1800000-0xf18fffff 64bit pref]
[    0.273689] pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
[    0.273691] pci_bus 0000:05: resource 1 [mem 0xf2100000-0xf28fffff]
[    0.273692] pci_bus 0000:05: resource 2 [mem 0xf1900000-0xf20fffff 64bit pref]
[    0.273722] NET: Registered protocol family 2
[    0.273932] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.274206] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.274358] TCP: Hash tables configured (established 131072 bind 65536)
[    0.274380] TCP: reno registered
[    0.274400] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[    0.274465] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[    0.274559] NET: Registered protocol family 1
[    0.274571] pci 0000:00:02.0: Boot video device
[    0.274983] PCI: CLS 64 bytes, default 64
[    0.275036] Trying to unpack rootfs image as initramfs...
[    0.734202] Freeing initrd memory: 26472K (ffff880034c3c000 - ffff880036616000)
[    0.734208] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.734211] software IO TLB [mem 0xb6c8f000-0xbac8f000] (64MB) mapped at [ffff8800b6c8f000-ffff8800bac8efff]
[    0.734278] Simple Boot Flag at 0x66 set to 0x1
[    0.734550] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x23
[    0.734558] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x23
[    0.734566] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x23
[    0.734574] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x23
[    0.734580] microcode: CPU4 sig=0x206a7, pf=0x10, revision=0x23
[    0.734588] microcode: CPU5 sig=0x206a7, pf=0x10, revision=0x23
[    0.734595] microcode: CPU6 sig=0x206a7, pf=0x10, revision=0x23
[    0.734602] microcode: CPU7 sig=0x206a7, pf=0x10, revision=0x23
[    0.734651] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.734653] Scanning for low memory corruption every 60 seconds
[    0.734908] Initialise system trusted keyring
[    0.734949] audit: initializing netlink socket (disabled)
[    0.734958] type=2000 audit(1407390139.720:1): initialized
[    0.763627] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.764932] zbud: loaded
[    0.765079] VFS: Disk quotas dquot_6.5.2
[    0.765117] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.765484] fuse init (API version 7.22)
[    0.765547] msgmni has been set to 31879
[    0.765591] Key type big_key registered
[    0.766029] Key type asymmetric registered
[    0.766031] Asymmetric key parser 'x509' registered
[    0.766055] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.766098] io scheduler noop registered
[    0.766100] io scheduler deadline registered (default)
[    0.766119] io scheduler cfq registered
[    0.766279] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.766666] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.766679] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.766716] intel_idle: MWAIT substates: 0x21120
[    0.766717] intel_idle: v0.4 model 0x2A
[    0.766718] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.766878] ipmi message handler version 39.2
[    0.974365] ACPI: AC Adapter [ADP0] (on-line)
[    0.974442] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.974447] ACPI: Power Button [PWRB]
[    0.974474] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
[    0.974476] ACPI: Sleep Button [SLPB]
[    0.974503] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    0.975050] ACPI: Lid Switch [LID0]
[    0.975083] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.975086] ACPI: Power Button [PWRF]
[    0.975594] thermal LNXTHERM:00: registered as thermal_zone0
[    0.975596] ACPI: Thermal Zone [TZ00] (55 C)
[    0.975801] thermal LNXTHERM:01: registered as thermal_zone1
[    0.975803] ACPI: Thermal Zone [TZ01] (55 C)
[    0.975822] GHES: HEST is not enabled!
[    0.975899] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.980949] Linux agpgart interface v0.103
[    0.982042] brd: module loaded
[    0.982624] loop: module loaded
[    0.982924] libphy: Fixed MDIO Bus: probed
[    0.982995] tun: Universal TUN/TAP device driver, 1.6
[    0.982996] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.983037] PPP generic driver version 2.4.2
[    0.983078] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.983088] ehci-pci: EHCI PCI platform driver
[    0.983187] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.983193] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.983207] ehci-pci 0000:00:1a.0: debug port 2
[    0.987115] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    0.987131] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf2b0a000
[    0.987606] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    0.987613] ACPI: Battery Slot [BAT0] (battery present)
[    0.998368] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.998419] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.998421] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.998423] usb usb1: Product: EHCI Host Controller
[    0.998425] usb usb1: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
[    0.998426] usb usb1: SerialNumber: 0000:00:1a.0
[    0.998530] hub 1-0:1.0: USB hub found
[    0.998537] hub 1-0:1.0: 2 ports detected
[    0.998698] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.998702] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.998715] ehci-pci 0000:00:1d.0: debug port 2
[    1.002619] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.002635] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf2b09000
[    1.014367] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.014415] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.014418] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.014419] usb usb2: Product: EHCI Host Controller
[    1.014421] usb usb2: Manufacturer: Linux 3.13.0-32-generic ehci_hcd
[    1.014422] usb usb2: SerialNumber: 0000:00:1d.0
[    1.014517] hub 2-0:1.0: USB hub found
[    1.014524] hub 2-0:1.0: 2 ports detected
[    1.014603] ehci-platform: EHCI generic platform driver
[    1.014610] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.014611] ohci-pci: OHCI PCI platform driver
[    1.014619] ohci-platform: OHCI generic platform driver
[    1.014624] uhci_hcd: USB Universal Host Controller Interface driver
[    1.014701] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.014707] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[    1.014892] xhci_hcd 0000:03:00.0: irq 41 for MSI/MSI-X
[    1.014898] xhci_hcd 0000:03:00.0: irq 42 for MSI/MSI-X
[    1.014903] xhci_hcd 0000:03:00.0: irq 43 for MSI/MSI-X
[    1.014908] xhci_hcd 0000:03:00.0: irq 44 for MSI/MSI-X
[    1.014913] xhci_hcd 0000:03:00.0: irq 45 for MSI/MSI-X
[    1.014917] xhci_hcd 0000:03:00.0: irq 46 for MSI/MSI-X
[    1.014922] xhci_hcd 0000:03:00.0: irq 47 for MSI/MSI-X
[    1.014927] xhci_hcd 0000:03:00.0: irq 48 for MSI/MSI-X
[    1.015087] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.015089] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.015091] usb usb3: Product: xHCI Host Controller
[    1.015092] usb usb3: Manufacturer: Linux 3.13.0-32-generic xhci_hcd
[    1.015093] usb usb3: SerialNumber: 0000:03:00.0
[    1.015173] hub 3-0:1.0: USB hub found
[    1.015184] hub 3-0:1.0: 2 ports detected
[    1.015250] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.015253] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    1.018227] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.018229] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.018230] usb usb4: Product: xHCI Host Controller
[    1.018232] usb usb4: Manufacturer: Linux 3.13.0-32-generic xhci_hcd
[    1.018233] usb usb4: SerialNumber: 0000:03:00.0
[    1.018324] hub 4-0:1.0: USB hub found
[    1.018337] hub 4-0:1.0: 2 ports detected
[    1.026453] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.031645] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.031651] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.031734] mousedev: PS/2 mouse device common for all mice
[    1.031915] rtc_cmos 00:04: RTC can wake from S4
[    1.032031] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.032062] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.032117] device-mapper: uevent: version 1.0.3
[    1.032174] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    1.032180] ledtrig-cpu: registered to indicate activity on CPUs
[    1.032272] TCP: cubic registered
[    1.032345] NET: Registered protocol family 10
[    1.032515] NET: Registered protocol family 17
[    1.032522] Key type dns_resolver registered
[    1.032763] Loading compiled-in X.509 certificates
[    1.033747] Loaded X.509 cert 'Magrathea: Glacier signing key: 5e3c0f9ca6e36543535fa2bb5b709e84f16da7c7'
[    1.033757] registered taskstats version 1
[    1.036777] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    1.036900] Key type trusted registered
[    1.039686] Key type encrypted registered
[    1.042290] AppArmor: AppArmor sha1 policy hashing enabled
[    1.042293] IMA: No TPM chip found, activating TPM-bypass!
[    1.042710] regulator-dummy: disabling
[    1.042862]   Magic number: 10:748:718
[    1.042994] rtc_cmos 00:04: setting system clock to 2014-08-07 05:42:21 UTC (1407390141)
[    1.044131] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.044132] EDD information not available.
[    1.044171] PM: Hibernation image not present or could not be loaded.
[    1.045460] Freeing unused kernel memory: 1336K (ffffffff81d1f000 - ffffffff81e6d000)
[    1.045462] Write protecting the kernel read-only data: 12288k
[    1.047368] Freeing unused kernel memory: 816K (ffff880001734000 - ffff880001800000)
[    1.048878] Freeing unused kernel memory: 696K (ffff880001b52000 - ffff880001c00000)
[    1.060749] systemd-udevd[146]: starting version 204
[    1.285598] ahci 0000:00:1f.2: version 3.0
[    1.285749] ahci 0000:00:1f.2: irq 49 for MSI/MSI-X
[    1.285791] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    1.285999] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    1.286011] r8169 0000:04:00.0: can't disable ASPM; OS doesn't have ASPM control
[    1.286227] r8169 0000:04:00.0: irq 50 for MSI/MSI-X
[    1.286420] r8169 0000:04:00.0 eth0: RTL8168e/8111e at 0xffffc900018cc000, 84:8f:69:cd:01:75, XID 0c200000 IRQ 50
[    1.286423] r8169 0000:04:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    1.287709] [drm] Initialized drm 1.1.0 20060810
[    1.298412] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x13 impl SATA mode
[    1.298418] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
[    1.310395] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.314933] scsi0 : ahci
[    1.315007] scsi1 : ahci
[    1.315057] scsi2 : ahci
[    1.315111] scsi3 : ahci
[    1.315173] scsi4 : ahci
[    1.315239] scsi5 : ahci
[    1.315272] ata1: SATA max UDMA/133 abar m2048@0xf2b08000 port 0xf2b08100 irq 49
[    1.315274] ata2: SATA max UDMA/133 abar m2048@0xf2b08000 port 0xf2b08180 irq 49
[    1.315275] ata3: DUMMY
[    1.315276] ata4: DUMMY
[    1.315278] ata5: SATA max UDMA/133 abar m2048@0xf2b08000 port 0xf2b08300 irq 49
[    1.315279] ata6: DUMMY
[    1.316047] [drm] Memory usable by graphics device = 2048M
[    1.366407] i915 0000:00:02.0: irq 51 for MSI/MSI-X
[    1.366414] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    1.366415] [drm] Driver supports precise vblank timestamp query.
[    1.366558] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=none
[    1.386548] [drm] Wrong MCH_SSKPD value: 0x16040307
[    1.386549] [drm] This can cause pipe underruns and display issues.
[    1.386550] [drm] Please upgrade your BIOS to fix this.
[    1.404161] fbcon: inteldrmfb (fb0) is primary device
[    1.442703] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.442703] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.442845] hub 1-1:1.0: USB hub found
[    1.442951] hub 1-1:1.0: 6 ports detected
[    1.554461] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.634428] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.636338] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    1.636357] ata1.00: supports DRM functions and may not be fully accessible
[    1.636396] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
[    1.636397] ata1.00: ATA-9: Samsung SSD 840 EVO 250GB, EXT0BB6Q, max UDMA/133
[    1.636398] ata1.00: 488397168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    1.636580] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    1.636597] ata1.00: supports DRM functions and may not be fully accessible
[    1.636636] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
[    1.636637] ata1.00: configured for UDMA/133
[    1.642593] scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 840  EXT0 PQ: 0 ANSI: 5
[    1.642727] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.642738] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.643053] sd 0:0:0:0: [sda] Write Protect is off
[    1.643055] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.643066] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.643862]  sda: sda1 sda2 < sda5 sda6 >
[    1.644490] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.686794] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.686798] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.687231] hub 2-1:1.0: USB hub found
[    1.687373] hub 2-1:1.0: 8 ports detected
[    1.730508] tsc: Refined TSC clocksource calibration: 2192.876 MHz
[    1.758680] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
[    1.852219] usb 1-1.3: New USB device found, idVendor=138a, idProduct=0011
[    1.852224] usb 1-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[    1.852227] usb 1-1.3: SerialNumber: 4d0f3f1ec2f9
[    1.922693] usb 1-1.4: new high-speed USB device number 4 using ehci-pci
[    1.962530] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.965312] ata2.00: ATAPI: HL-DT-STDVD+/-RW GT32N, A203, max UDMA/100
[    1.968154] ata2.00: configured for UDMA/100
[    1.981235] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GT32N    A203 PQ: 0 ANSI: 5
[    1.985462] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.985464] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.985714] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.985782] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.157094] Console: switching to colour frame buffer device 200x56
[    2.159730] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    2.159731] i915 0000:00:02.0: registered panic notifier
[    2.159881] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    2.159898] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    2.163674] acpi device:28: registered as cooling_device8
[    2.163706] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:27/LNXVIDEO:00/input/input8
[    2.167111] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.167269] acpi device:2b: registered as cooling_device9
[    2.167318] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input9
[    2.167375] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    2.185542] usb 1-1.4: New USB device found, idVendor=1bcf, idProduct=280a
[    2.185546] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.185549] usb 1-1.4: Product: Laptop_Integrated_Webcam_FHD
[    2.185550] usb 1-1.4: Manufacturer: CN01MWM97248719JH44PA00
[    2.302534] ata5: SATA link down (SStatus 0 SControl 300)
[    2.470685] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    2.542687] usb 2-1.5: device descriptor read/64, error -32
[    2.571798] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.635275] input: DualPoint Stick as /devices/platform/i8042/serio1/input/input7
[    2.649918] random: init urandom read with 59 bits of entropy available
[    2.651526] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input6
[    2.730545] Switched to clocksource tsc
[    2.739411] usb 2-1.5: New USB device found, idVendor=0cf3, idProduct=3005
[    2.739414] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.745943] Adding 5858300k swap on /dev/sda5.  Priority:-1 extents:1 across:5858300k SSFS
[    2.778948] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    2.812413] systemd-udevd[373]: starting version 204
[    2.830821] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[    2.835624] lp: driver loaded but no devices found
[    2.844213] ppdev: user-space parallel port driver
[    3.112409] mei_me 0000:00:16.0: irq 52 for MSI/MSI-X
[    3.159522] snd_hda_intel 0000:00:1b.0: irq 53 for MSI/MSI-X
[    3.163549] random: nonblocking pool is initialized
[    3.169187] SKU: Nid=0x1d sku_cfg=0x40179a2d
[    3.169189] SKU: port_connectivity=0x1
[    3.169190] SKU: enable_pcbeep=0x1
[    3.169191] SKU: check_sum=0x00000007
[    3.169192] SKU: customization=0x0000009a
[    3.169192] SKU: external_amp=0x5
[    3.169193] SKU: platform_type=0x1
[    3.169194] SKU: swap=0x0
[    3.169194] SKU: override=0x1
[    3.169817] autoconfig: line_outs=2 (0x14/0x1a/0x0/0x0/0x0) type:speaker
[    3.169819]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.169820]    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    3.169820]    mono: mono_out=0x0
[    3.169821]    inputs:
[    3.169822]      Mic=0x18
[    3.169823]      Internal Mic=0x12
[    3.169824] realtek: No valid SSID, checking pincfg 0x40179a2d for NID 0x1d
[    3.169825] realtek: Enabling init ASM_ID=0x9a2d CODEC_ID=10ec0269
[    3.174882] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    3.174955] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    3.220518] wmi: Mapper loaded
[    3.224175] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20131115/utaddress-251)
[    3.224182] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.224186] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIN 1 (20131115/utaddress-251)
[    3.224189] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \GPIO 2 (20131115/utaddress-251)
[    3.224192] ACPI Warning: 0x0000000000000540-0x000000000000054f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 3 (20131115/utaddress-251)
[    3.224196] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.224197] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIN 1 (20131115/utaddress-251)
[    3.224200] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 2 (20131115/utaddress-251)
[    3.224203] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 3 (20131115/utaddress-251)
[    3.224206] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.224207] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIN 1 (20131115/utaddress-251)
[    3.224211] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 2 (20131115/utaddress-251)
[    3.224213] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 3 (20131115/utaddress-251)
[    3.224216] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    3.224218] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    3.245298] nvidia: module license 'NVIDIA' taints kernel.
[    3.245302] Disabling lock debugging due to kernel taint
[    3.250072] nvidia: module verification failed: signature and/or  required key missing - tainting kernel
[    3.255250] nvidia 0000:01:00.0: enabling device (0006 -> 0007)
[    3.255319] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
[    3.255546] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 1
[    3.255552] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  331.38  Wed Jan  8 19:32:30 PST 2014
[    3.258869] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    3.261688] cfg80211: Calling CRDA to update world regulatory domain
[    3.300855] Bluetooth: Core ver 2.17
[    3.300869] NET: Registered protocol family 31
[    3.300870] Bluetooth: HCI device and connection manager initialized
[    3.300877] Bluetooth: HCI socket layer initialized
[    3.300879] Bluetooth: L2CAP socket layer initialized
[    3.300881] Bluetooth: SCO socket layer initialized
[    3.302423] usbcore: registered new interface driver btusb
[    3.308537] Linux video capture interface: v2.00
[    3.311327] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    3.314981] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_FHD (1bcf:280a)
[    3.321938] type=1400 audit(1407390143.771:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=570 comm="apparmor_parser"
[    3.321946] type=1400 audit(1407390143.771:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=570 comm="apparmor_parser"
[    3.321952] type=1400 audit(1407390143.771:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=570 comm="apparmor_parser"
[    3.322473] type=1400 audit(1407390143.771:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=570 comm="apparmor_parser"
[    3.322479] type=1400 audit(1407390143.771:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=570 comm="apparmor_parser"
[    3.322752] type=1400 audit(1407390143.775:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=570 comm="apparmor_parser"
[    3.349089] input: Laptop_Integrated_Webcam_FHD as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input12
[    3.349167] usbcore: registered new interface driver uvcvideo
[    3.349169] USB Video Class driver (1.1.1)
[    3.456527] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    3.457030] input: Dell WMI hotkeys as /devices/virtual/input/input13
[    3.460109] cfg80211: World regulatory domain updated:
[    3.460112] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    3.460114] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.460115] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.460116] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    3.460117] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.460118] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    3.511698] ath: phy0: Disabling ASPM since BTCOEX is enabled
[    3.511704] ath: EEPROM regdomain: 0x60
[    3.511705] ath: EEPROM indicates we should expect a direct regpair map
[    3.511708] ath: Country alpha2 being used: 00
[    3.511709] ath: Regpair used: 0x60
[    3.517211] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    3.517492] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc900060a0000, irq=16
[    3.633157] init: failsafe main process (785) killed by TERM signal
[    3.686910] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.686913] Bluetooth: BNEP filters: protocol multicast
[    3.686921] Bluetooth: BNEP socket layer initialized
[    3.692038] Bluetooth: RFCOMM TTY layer initialized
[    3.692049] Bluetooth: RFCOMM socket layer initialized
[    3.692053] Bluetooth: RFCOMM ver 1.11
[    3.707766] type=1400 audit(1407390144.159:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=882 comm="apparmor_parser"
[    3.707773] type=1400 audit(1407390144.159:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=882 comm="apparmor_parser"
[    3.708153] type=1400 audit(1407390144.159:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=882 comm="apparmor_parser"
[    3.753724] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    3.756766] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    3.898355] r8169 0000:04:00.0 eth0: link down
[    3.898368] r8169 0000:04:00.0 eth0: link down
[    3.898392] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    3.898832] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    3.996928] bbswitch: version 0.7
[    3.996936] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
[    3.996942] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
[    3.996952] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    3.997264] bbswitch: detected an Optimus _DSM function
[    3.997272] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
[    4.153249] vboxdrv: Found 8 processor cores.
[    4.153509] vboxdrv: fAsync=0 offMin=0x1b8 offMax=0x2dce
[    4.153581] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
[    4.153583] vboxdrv: Successfully loaded version 4.3.14 (interface 0x001a0007).
[    4.207616] nvidia 0000:01:00.0: irq 54 for MSI/MSI-X
[    4.214056] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214093] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214109] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214124] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214138] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214152] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214325] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.214340] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    4.361978] vboxpci: IOMMU not found (not registered)
[    5.088262] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20131115/nsarguments-95)
[    5.964076] r8169 0000:04:00.0 eth0: link up
[    5.964086] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[    6.145586] init: plymouth-upstart-bridge main process ended, respawning
[    6.150349] init: plymouth-upstart-bridge main process (1446) terminated with status 1
[    6.150360] init: plymouth-upstart-bridge main process ended, respawning
           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5       CPU6       CPU7       
  0:         19          0          0          0          0          0          0          0   IO-APIC-edge      timer
  1:         10          0          0          0          0          0          0          0   IO-APIC-edge      i8042
  8:          1          0          0          0          0          0          0          0   IO-APIC-edge      rtc0
  9:        273          0          0          0          0          0          0          0   IO-APIC-fasteoi   acpi
 12:        256          0          0          0          0          0          0          0   IO-APIC-edge      i8042
 16:        193          0        122          0         82          0          0          0   IO-APIC-fasteoi   ehci_hcd:usb1, ath9k
 23:        179          0          9          0          0          0          0          0   IO-APIC-fasteoi   ehci_hcd:usb2
 41:          1          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 42:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 43:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 44:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 45:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 46:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 47:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 48:          0          0          0          0          0          0          0          0   PCI-MSI-edge      xhci_hcd
 49:      26563          0       4561          0      13784          0        500          0   PCI-MSI-edge      ahci
 50:        125          0          0          0        522          0          0          0   PCI-MSI-edge      eth0
 51:         71          0          0          0          0          0          0          0   PCI-MSI-edge      i915
 52:         14          0          0          0          0          0          0          0   PCI-MSI-edge      mei_me
 53:        288          0          0          0          0          0          0          0   PCI-MSI-edge      snd_hda_intel
 54:       3514          0          0          0          0          0          0          0   PCI-MSI-edge      nvidia
NMI:          1          0          1          0          1          0          0          0   Non-maskable interrupts
LOC:      20659       3944       9499       3719      10084       2609       7097       2783   Local timer interrupts
SPU:          0          0          0          0          0          0          0          0   Spurious interrupts
PMI:          1          0          1          0          1          0          0          0   Performance monitoring interrupts
IWI:        487        267        498        141        286        160        564        606   IRQ work interrupts
RTR:          6          0          0          0          0          0          0          0   APIC ICR read retries
RES:       1458       2396       1399        800       1461        677       1507       1177   Rescheduling interrupts
CAL:        576        619        652        676        655        593        701        658   Function call interrupts
TLB:         65        149        126        260        126        183        291        279   TLB shootdowns
TRM:          0          0          0          0          0          0          0          0   Thermal event interrupts
THR:          0          0          0          0          0          0          0          0   Threshold APIC interrupts
MCE:          0          0          0          0          0          0          0          0   Machine check exceptions
MCP:          2          2          2          2          2          2          2          2   Machine check polls
ERR:          2
MIS:          0