1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044 | sudo aplay -l
[sudo] senha para paulo:
**** Lista de Dispositivos PLAYBACK Hardware ****
placa 0: HDMI [HDA Intel HDMI], dispositivo 3: HDMI 0 [HDMI 0]
Dispositivo secundário: 1/1
Dispositivo secundário #0: subdevice #0
placa 0: HDMI [HDA Intel HDMI], dispositivo 7: HDMI 1 [HDMI 1]
Dispositivo secundário: 1/1
Dispositivo secundário #0: subdevice #0
placa 1: PCH [HDA Intel PCH], dispositivo 0: ALC283 Analog [ALC283 Analog]
Dispositivo secundário: 1/1
Dispositivo secundário #0: subdevice #0
find /lib/modules/`uname -r` | grep snd
/lib/modules/4.2.0-25-generic/kernel/sound/pcmcia/pdaudiocf/snd-pdaudiocf.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pcmcia/vx/snd-vxpocket.ko
/lib/modules/4.2.0-25-generic/kernel/sound/hda/snd-hda-core.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-rawmidi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/oss/snd-mixer-oss.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/oss/snd-pcm-oss.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-pcm.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-compress.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq-midi-emul.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq-virmidi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq-midi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq-midi-event.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq-dummy.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/seq/snd-seq-device.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-hrtimer.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-hwdep.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-timer.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd-pcm-dmaengine.ko
/lib/modules/4.2.0-25-generic/kernel/sound/core/snd.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/snd-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/snd-cs8427.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/other/snd-ak4113.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/other/snd-pt2258.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/other/snd-ak4114.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/other/snd-ak4xxx-adda.ko
/lib/modules/4.2.0-25-generic/kernel/sound/i2c/other/snd-ak4117.ko
/lib/modules/4.2.0-25-generic/kernel/sound/isa/sb/snd-sb-common.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/snd-firewire-lib.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/bebob/snd-bebob.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/oxfw/snd-oxfw.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/dice/snd-dice.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/snd-scs1x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/snd-isight.ko
/lib/modules/4.2.0-25-generic/kernel/sound/firewire/fireworks/snd-fireworks.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-virmidi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-mtpav.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-aloop.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-serial-u16550.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-dummy.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/opl3/snd-opl3-synth.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/opl3/snd-opl3-lib.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/vx/snd-vx-lib.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-portman2x4.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/snd-mts64.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/mpu401/snd-mpu401-uart.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/mpu401/snd-mpu401.ko
/lib/modules/4.2.0-25-generic/kernel/sound/drivers/pcsp/snd-pcsp.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/atom/snd-soc-sst-mfld-platform.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/haswell/snd-soc-sst-haswell-pcm.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-byt-rt5640-mach.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-byt-max98090-mach.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-broadwell.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-haswell.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/common/snd-soc-sst-acpi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/common/snd-soc-sst-dsp.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/intel/common/snd-soc-sst-ipc.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/snd-soc-core.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42l52.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs35l32.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-sta350.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ts3a227e.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-pcm512x-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tpa6130a2.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-sigmadsp-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tas2552.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ak4104.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tfa9879.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ak4642.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rt5645.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8903.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8741.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-adau1701.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic3x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42l56.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-si476x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ak4554.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ak5386.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ssm2602-spi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8804-spi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs4271.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8962.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ssm4567.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-sgtl5000.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8804-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ssm2602.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8711.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-sigmadsp.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-pcm512x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8978.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic23.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42xx8.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8731.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rl6231.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8523.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs4271-spi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-pcm1792a-codec.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8737.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rt286.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-spdif-rx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tas571x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42l51.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rl6347a.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tas5086.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-hdmi-codec.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8510.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ssm2602-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs4271-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rt5631.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42l51-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8804.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-pcm1681.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-es8328.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8753.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic31xx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42xx8-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-pcm512x-spi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-ac97.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic23-i2c.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-max98090.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8750.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rt5670.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-alc5623.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8728.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs4265.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs4270.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8770.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-sta32x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8776.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-cs42l73.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-wm8580.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-tlv320aic23-spi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-rt5640.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/codecs/snd-soc-spdif-tx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/generic/snd-soc-simple-card.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/xtensa/snd-soc-xtfpga-i2s.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/fsl/snd-soc-fsl-esai.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/fsl/snd-soc-fsl-asrc.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/fsl/snd-soc-imx-audmux.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/fsl/snd-soc-fsl-sai.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/fsl/snd-soc-fsl-ssi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/soc/fsl/snd-soc-fsl-spdif.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/misc/snd-ua101.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/bcd2000/snd-bcd2000.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/hiface/snd-usb-hiface.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/6fire/snd-usb-6fire.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/snd-usbmidi-lib.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/snd-usb-audio.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/caiaq/snd-usb-caiaq.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/line6/snd-usb-podhd.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/line6/snd-usb-toneport.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/line6/snd-usb-line6.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/line6/snd-usb-pod.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/line6/snd-usb-variax.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/usx2y/snd-usb-usx2y.ko
/lib/modules/4.2.0-25-generic/kernel/sound/usb/usx2y/snd-usb-us122l.ko
/lib/modules/4.2.0-25-generic/kernel/sound/synth/emux/snd-emux-synth.ko
/lib/modules/4.2.0-25-generic/kernel/sound/synth/snd-util-mem.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/korg1212/snd-korg1212.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-azt3328.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/lx6464es/snd-lx6464es.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ali5451/snd-ali5451.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/trident/snd-trident.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-rme96.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ice1712/snd-ice17xx-ak4xxx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ice1712/snd-ice1724.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ice1712/snd-ice1712.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/pcxhr/snd-pcxhr.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-cmedia.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-ca0132.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-hdmi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-idt.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-ca0110.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-via.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-realtek.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-intel.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-si3054.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-generic.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-analog.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-conexant.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/hda/snd-hda-codec-cirrus.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-fm801.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-intel8x0.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-ad1889.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-es1938.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-atiixp.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-atiixp-modem.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-cs4281.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/aw2/snd-aw2.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-maestro3.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/asihpi/snd-asihpi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/cs46xx/snd-cs46xx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-via82xx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/oxygen/snd-oxygen.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/oxygen/snd-oxygen-lib.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/oxygen/snd-virtuoso.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ymfpci/snd-ymfpci.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-bt87x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/riptide/snd-riptide.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-intel8x0m.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-als300.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/emu10k1/snd-emu10k1x.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/emu10k1/snd-emu10k1.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/emu10k1/snd-emu10k1-synth.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-rme32.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ac97/snd-ac97-codec.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/rme9652/snd-hdsp.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/rme9652/snd-rme9652.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/rme9652/snd-hdspm.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/lola/snd-lola.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-ens1371.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-es1968.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-als4000.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ca0106/snd-ca0106.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/mixart/snd-mixart.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-indigo.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-gina24.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-darla24.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-mia.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-mona.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-echo3g.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-indigoiox.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-layla20.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-gina20.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-indigoio.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-indigodj.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-indigodjx.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-layla24.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/echoaudio/snd-darla20.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-cmipci.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/vx222/snd-vx222.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-via82xx-modem.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-ens1370.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/ctxfi/snd-ctxfi.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/au88x0/snd-au8810.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/au88x0/snd-au8820.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/au88x0/snd-au8830.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/snd-sonicvibes.ko
/lib/modules/4.2.0-25-generic/kernel/sound/pci/nm256/snd-nm256.ko
lspci -v | grep -A7 -i "audio"
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b)
Subsystem: Acer Incorporated [ALI] Device 0866
Flags: bus master, fast devsel, latency 0, IRQ 49
Memory at b0610000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04) (prog-if 30 [XHCI])
--
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)
Subsystem: Acer Incorporated [ALI] Device 0866
Flags: bus master, fast devsel, latency 0, IRQ 48
Memory at b0614000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4) (prog-if 00 [Normal decode])
48 u262144
[ 0.000000] pcpu-alloc: s96728 r8192 d30248 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1012834
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.2.0-25-generic.efi.signed root=UUID=7c345369-9a3a-466f-84bb-b4464ca4e87a ro quiet splash vt.handoff=7
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 3868956K/4115736K available (8148K kernel code, 1237K rwdata, 3800K rodata, 1460K init, 1292K bss, 246780K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] Build-time adjustment of leaf fanout to 64.
[ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[ 0.000000] NR_IRQS:16640 nr_irqs:760 16
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-7.
[ 0.000000] vt handoff: transparent VT on vt#7
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1696.166 MHz processor
[ 0.000041] Calibrating delay loop (skipped), value calculated using timer frequency.. 3392.33 BogoMIPS (lpj=6784664)
[ 0.000045] pid_max: default: 32768 minimum: 301
[ 0.000052] ACPI: Core revision 20150619
[ 0.018708] ACPI: All ACPI Tables successfully acquired
[ 0.036468] Security Framework initialized
[ 0.036485] AppArmor: AppArmor initialized
[ 0.036486] Yama: becoming mindful.
[ 0.036878] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.037954] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.038443] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.038451] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.038705] Initializing cgroup subsys blkio
[ 0.038708] Initializing cgroup subsys memory
[ 0.038717] Initializing cgroup subsys devices
[ 0.038720] Initializing cgroup subsys freezer
[ 0.038722] Initializing cgroup subsys net_cls
[ 0.038725] Initializing cgroup subsys perf_event
[ 0.038727] Initializing cgroup subsys net_prio
[ 0.038730] Initializing cgroup subsys hugetlb
[ 0.038759] CPU: Physical Processor ID: 0
[ 0.038760] CPU: Processor Core ID: 0
[ 0.038765] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.038767] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.039985] mce: CPU supports 7 MCE banks
[ 0.040001] CPU0: Thermal monitoring enabled (TM1)
[ 0.040012] process: using mwait in idle threads
[ 0.040016] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.040017] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.040467] Freeing SMP alternatives memory: 28K (ffffffff81ea4000 - ffffffff81eab000)
[ 0.049467] Ignoring BGRT: invalid status 0 (expected 1)
[ 0.051926] ftrace: allocating 30910 entries in 121 pages
[ 0.069850] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.109561] TSC deadline timer enabled
[ 0.109565] smpboot: CPU0: Intel(R) Core(TM) i3-4005U CPU @ 1.70GHz (fam: 06, model: 45, stepping: 01)
[ 0.109601] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
[ 0.109628] ... version: 3
[ 0.109629] ... bit width: 48
[ 0.109630] ... generic registers: 4
[ 0.109632] ... value mask: 0000ffffffffffff
[ 0.109633] ... max period: 0000ffffffffffff
[ 0.109634] ... fixed-purpose events: 3
[ 0.109635] ... event mask: 000000070000000f
[ 0.110720] x86: Booting SMP configuration:
[ 0.110722] .... node #0, CPUs: #1
[ 0.115369] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.115480] #2 #3
[ 0.124628] x86: Booted up 1 node, 4 CPUs
[ 0.124632] smpboot: Total of 4 processors activated (13569.32 BogoMIPS)
[ 0.129713] devtmpfs: initialized
[ 0.132328] evm: security.selinux
[ 0.132330] evm: security.SMACK64
[ 0.132331] evm: security.SMACK64EXEC
[ 0.132332] evm: security.SMACK64TRANSMUTE
[ 0.132333] evm: security.SMACK64MMAP
[ 0.132334] evm: security.ima
[ 0.132336] evm: security.capability
[ 0.132400] PM: Registering ACPI NVS region [mem 0x9cebf000-0x9cfbefff] (1048576 bytes)
[ 0.132513] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.132620] pinctrl core: initialized pinctrl subsystem
[ 0.132745] RTC time: 23:25:54, date: 01/24/16
[ 0.132886] NET: Registered protocol family 16
[ 0.137524] cpuidle: using governor ladder
[ 0.141540] cpuidle: using governor menu
[ 0.141587] Simple Boot Flag at 0x44 set to 0x1
[ 0.141650] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.141652] ACPI: bus type PCI registered
[ 0.141654] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.141739] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.141742] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.141755] PCI: Using configuration type 1 for base access
[ 0.142004] perf_event_intel: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[ 0.145969] ACPI: Added _OSI(Module Device)
[ 0.145971] ACPI: Added _OSI(Processor Device)
[ 0.145973] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.145974] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.151291] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.155409] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.156576] ACPI: Dynamic OEM Table Load:
[ 0.156589] ACPI: SSDT 0xFFFF880159F72800 000465 (v01 PmRef Cpu0Cst 00003001 INTL 20131115)
[ 0.157565] ACPI: Dynamic OEM Table Load:
[ 0.157577] ACPI: SSDT 0xFFFF880159F73000 0005AA (v01 PmRef ApIst 00003000 INTL 20131115)
[ 0.158597] ACPI: Dynamic OEM Table Load:
[ 0.158606] ACPI: SSDT 0xFFFF880159FFC400 000119 (v01 PmRef ApCst 00003000 INTL 20131115)
[ 0.160178] ACPI : EC: EC started
[ 0.181596] ACPI: Interpreter enabled
[ 0.181608] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150619/hwxface-580)
[ 0.181617] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)
[ 0.181644] ACPI: (supports S0 S3 S4 S5)
[ 0.181645] ACPI: Using IOAPIC for interrupt routing
[ 0.181678] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.235235] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.235243] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.235629] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.235632] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.236207] PCI host bridge to bus 0000:00
[ 0.236211] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.236213] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.236217] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.236219] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.236221] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
[ 0.236223] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[ 0.236225] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
[ 0.236227] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
[ 0.236229] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[ 0.236231] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.236233] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.236235] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[ 0.236237] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.236239] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.236241] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[ 0.236243] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[ 0.236244] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[ 0.236247] pci_bus 0000:00: root bus resource [mem 0x9fa00000-0xfeafffff window]
[ 0.236256] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
[ 0.236473] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
[ 0.236492] pci 0000:00:02.0: reg 0x10: [mem 0xb0000000-0xb03fffff 64bit]
[ 0.236501] pci 0000:00:02.0: reg 0x18: [mem 0xa0000000-0xafffffff 64bit pref]
[ 0.236507] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f]
[ 0.236703] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
[ 0.236719] pci 0000:00:03.0: reg 0x10: [mem 0xb0610000-0xb0613fff 64bit]
[ 0.236938] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
[ 0.236965] pci 0000:00:14.0: reg 0x10: [mem 0xb0600000-0xb060ffff 64bit]
[ 0.237015] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.237157] pci 0000:00:14.0: System wakeup disabled by ACPI
[ 0.237204] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
[ 0.237235] pci 0000:00:16.0: reg 0x10: [mem 0xb0618000-0xb061801f 64bit]
[ 0.237294] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.237484] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
[ 0.237510] pci 0000:00:1b.0: reg 0x10: [mem 0xb0614000-0xb0617fff 64bit]
[ 0.237567] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.237718] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.237763] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
[ 0.237826] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.238015] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.238064] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
[ 0.238127] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.238320] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
[ 0.238350] pci 0000:00:1d.0: reg 0x10: [mem 0xb061c000-0xb061c3ff]
[ 0.238423] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.238579] pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 0.238626] pci 0000:00:1f.0: [8086:9c45] type 00 class 0x060100
[ 0.238910] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
[ 0.238932] pci 0000:00:1f.2: reg 0x10: [io 0x4088-0x408f]
[ 0.238940] pci 0000:00:1f.2: reg 0x14: [io 0x4094-0x4097]
[ 0.238948] pci 0000:00:1f.2: reg 0x18: [io 0x4080-0x4087]
[ 0.238956] pci 0000:00:1f.2: reg 0x1c: [io 0x4090-0x4093]
[ 0.238964] pci 0000:00:1f.2: reg 0x20: [io 0x4060-0x407f]
[ 0.238972] pci 0000:00:1f.2: reg 0x24: [mem 0xb061b000-0xb061b7ff]
[ 0.238998] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.239175] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
[ 0.239192] pci 0000:00:1f.3: reg 0x10: [mem 0xb0619000-0xb06190ff 64bit]
[ 0.239213] pci 0000:00:1f.3: reg 0x20: [io 0x4040-0x405f]
[ 0.239475] pci 0000:01:00.0: [10ec:5287] type 00 class 0xff0000
[ 0.239516] pci 0000:01:00.0: reg 0x10: [mem 0xb0505000-0xb0505fff]
[ 0.239584] pci 0000:01:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.239637] pci 0000:01:00.0: supports D1 D2
[ 0.239639] pci 0000:01:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.239675] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.239727] pci 0000:01:00.1: [10ec:8168] type 00 class 0x020000
[ 0.239768] pci 0000:01:00.1: reg 0x10: [io 0x3000-0x30ff]
[ 0.239798] pci 0000:01:00.1: reg 0x18: [mem 0xb0504000-0xb0504fff 64bit]
[ 0.239817] pci 0000:01:00.1: reg 0x20: [mem 0xb0500000-0xb0503fff 64bit]
[ 0.239876] pci 0000:01:00.1: supports D1 D2
[ 0.239878] pci 0000:01:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.245670] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.245675] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.245678] pci 0000:00:1c.0: bridge window [mem 0xb0500000-0xb05fffff]
[ 0.245742] pci 0000:02:00.0: [168c:0036] type 00 class 0x028000
[ 0.245784] pci 0000:02:00.0: reg 0x10: [mem 0xb0400000-0xb047ffff 64bit]
[ 0.245839] pci 0000:02:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.245885] pci 0000:02:00.0: supports D1 D2
[ 0.245887] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.253669] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.253674] pci 0000:00:1c.3: bridge window [mem 0xb0400000-0xb04fffff]
[ 0.260013] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260069] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260122] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260177] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260233] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260285] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260337] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260388] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.260655] ACPI: Enabled 4 GPEs in block 00 to 7F
[ 0.260697] ACPI : EC: GPE = 0x27, I/O: command/status = 0x66, data = 0x62
[ 0.260820] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.260822] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.260825] vgaarb: loaded
[ 0.260827] vgaarb: bridge control possible 0000:00:02.0
[ 0.261157] SCSI subsystem initialized
[ 0.261212] libata version 3.00 loaded.
[ 0.261240] ACPI: bus type USB registered
[ 0.261262] usbcore: registered new interface driver usbfs
[ 0.261272] usbcore: registered new interface driver hub
[ 0.261295] usbcore: registered new device driver usb
[ 0.261541] PCI: Using ACPI for IRQ routing
[ 0.267586] PCI: pci_cache_line_size set to 64 bytes
[ 0.267632] e820: reserve RAM buffer [mem 0x0006f000-0x0006ffff]
[ 0.267634] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[ 0.267636] e820: reserve RAM buffer [mem 0x944d4018-0x97ffffff]
[ 0.267638] e820: reserve RAM buffer [mem 0x95540000-0x97ffffff]
[ 0.267639] e820: reserve RAM buffer [mem 0x9c6bf000-0x9fffffff]
[ 0.267641] e820: reserve RAM buffer [mem 0x9d000000-0x9fffffff]
[ 0.267643] e820: reserve RAM buffer [mem 0x15f600000-0x15fffffff]
[ 0.267780] NetLabel: Initializing
[ 0.267781] NetLabel: domain hash size = 128
[ 0.267782] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.267797] NetLabel: unlabeled traffic allowed by default
[ 0.267878] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.267885] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.269917] clocksource: Switched to clocksource hpet
[ 0.277129] AppArmor: AppArmor Filesystem Enabled
[ 0.277213] pnp: PnP ACPI init
[ 0.277398] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.277402] system 00:00: [io 0xfd60-0xfd63] has been reserved
[ 0.277405] system 00:00: [io 0xffff] has been reserved
[ 0.277408] system 00:00: [io 0xffff] has been reserved
[ 0.277410] system 00:00: [io 0xffff] has been reserved
[ 0.277413] system 00:00: [io 0x1800-0x18fe] could not be reserved
[ 0.277416] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.277421] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.277476] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.277536] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.277540] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.277577] pnp 00:03: Plug and Play ACPI device, IDs MSF0001 PNP0303 (active)
[ 0.278113] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.278117] system 00:04: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.278119] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.278121] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.278124] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.278126] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.278128] system 00:04: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.278130] system 00:04: [mem 0xff000000-0xff000fff] has been reserved
[ 0.278133] system 00:04: [mem 0xff010000-0xffffffff] could not be reserved
[ 0.278135] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.278137] system 00:04: [mem 0x9fa20000-0x9fa20fff] has been reserved
[ 0.278140] system 00:04: [mem 0x9fa10000-0x9fa1ffff] has been reserved
[ 0.278143] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.278481] system 00:05: [mem 0xb061f000-0xb061ffff] has been reserved
[ 0.278484] system 00:05: [mem 0xb061d000-0xb061dfff] has been reserved
[ 0.278487] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.279241] pnp: PnP ACPI: found 6 devices
[ 0.285758] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.285768] pci 0000:01:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.285770] pci 0000:02:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[ 0.285793] pci 0000:01:00.0: BAR 6: assigned [mem 0xb0510000-0xb051ffff pref]
[ 0.285796] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.285800] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.285805] pci 0000:00:1c.0: bridge window [mem 0xb0500000-0xb05fffff]
[ 0.285814] pci 0000:02:00.0: BAR 6: assigned [mem 0xb0480000-0xb048ffff pref]
[ 0.285816] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.285821] pci 0000:00:1c.3: bridge window [mem 0xb0400000-0xb04fffff]
[ 0.285830] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.285832] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.285834] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.285836] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
[ 0.285838] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
[ 0.285840] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
[ 0.285842] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
[ 0.285844] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
[ 0.285846] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
[ 0.285848] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
[ 0.285850] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
[ 0.285852] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
[ 0.285854] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
[ 0.285856] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
[ 0.285858] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
[ 0.285860] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
[ 0.285862] pci_bus 0000:00: resource 20 [mem 0x9fa00000-0xfeafffff window]
[ 0.285864] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
[ 0.285866] pci_bus 0000:01: resource 1 [mem 0xb0500000-0xb05fffff]
[ 0.285868] pci_bus 0000:02: resource 1 [mem 0xb0400000-0xb04fffff]
[ 0.285908] NET: Registered protocol family 2
[ 0.286113] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.286203] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[ 0.286296] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.286323] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.286344] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.286403] NET: Registered protocol family 1
[ 0.286421] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.306062] PCI: CLS 64 bytes, default 64
[ 0.306127] Trying to unpack rootfs image as initramfs...
[ 1.015437] Freeing initrd memory: 32796K (ffff88003dff4000 - ffff88003fffb000)
[ 1.015449] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.015452] software IO TLB [mem 0x8ee50000-0x92e50000] (64MB) mapped at [ffff88008ee50000-ffff880092e4ffff]
[ 1.015538] RAPL PMU detected, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
[ 1.015540] hw unit of domain pp0-core 2^-14 Joules
[ 1.015541] hw unit of domain package 2^-14 Joules
[ 1.015542] hw unit of domain dram 2^-14 Joules
[ 1.015544] hw unit of domain pp1-gpu 2^-14 Joules
[ 1.015674] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x1c
[ 1.015682] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x1c
[ 1.015693] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x1c
[ 1.015702] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x1c
[ 1.015763] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.015859] Scanning for low memory corruption every 60 seconds
[ 1.016261] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 1.016297] Initialise system trusted keyring
[ 1.016324] audit: initializing netlink subsys (disabled)
[ 1.016341] audit: type=2000 audit(1453677954.996:1): initialized
[ 1.016789] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 1.016791] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.018747] zpool: loaded
[ 1.018752] zbud: loaded
[ 1.018980] VFS: Disk quotas dquot_6.6.0
[ 1.019023] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.019606] fuse init (API version 7.23)
[ 1.019781] Key type big_key registered
[ 1.020136] Key type asymmetric registered
[ 1.020139] Asymmetric key parser 'x509' registered
[ 1.020155] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[ 1.020196] io scheduler noop registered
[ 1.020199] io scheduler deadline registered (default)
[ 1.020240] io scheduler cfq registered
[ 1.020730] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[ 1.020733] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 1.020735] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[ 1.020739] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[ 1.020760] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
[ 1.020762] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[ 1.020765] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
[ 1.020774] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.020782] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.020827] efifb: probing for efifb
[ 1.020840] efifb: framebuffer at 0xa0000000, mapped to 0xffffc90001000000, using 4128k, total 4128k
[ 1.020842] efifb: mode is 1366x768x32, linelength=5504, pages=1
[ 1.020843] efifb: scrolling: redraw
[ 1.020845] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.020947] Console: switching to colour frame buffer device 170x48
[ 1.020966] fb0: EFI VGA frame buffer device
[ 1.020977] intel_idle: MWAIT substates: 0x11142120
[ 1.020979] intel_idle: v0.4 model 0x45
[ 1.020980] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.021325] ACPI: AC Adapter [ACAD] (on-line)
[ 1.021411] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0D:00/input/input0
[ 1.021434] ACPI: Lid Switch [LID0]
[ 1.021478] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input1
[ 1.021482] ACPI: Power Button [PWRB]
[ 1.021523] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input2
[ 1.021526] ACPI: Sleep Button [SLPB]
[ 1.021579] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 1.021582] ACPI: Power Button [PWRF]
[ 1.021936] GHES: HEST is not enabled!
[ 1.022048] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.050351] [Firmware Bug]: battery: (dis)charge rate invalid.
[ 1.050357] ACPI: Battery Slot [BAT1] (battery present)
[ 1.050652] Linux agpgart interface v0.103
[ 1.054760] brd: module loaded
[ 1.056056] loop: module loaded
[ 1.056320] libphy: Fixed MDIO Bus: probed
[ 1.056324] tun: Universal TUN/TAP device driver, 1.6
[ 1.056326] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.056383] PPP generic driver version 2.4.2
[ 1.056608] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.056615] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.057681] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0004b810
[ 1.057687] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 1.057771] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.057773] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.057775] usb usb1: Product: xHCI Host Controller
[ 1.057777] usb usb1: Manufacturer: Linux 4.2.0-25-generic xhci-hcd
[ 1.057779] usb usb1: SerialNumber: 0000:00:14.0
[ 1.057910] hub 1-0:1.0: USB hub found
[ 1.057919] hub 1-0:1.0: 8 ports detected
[ 1.060088] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.060093] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.060127] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 1.060129] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.060131] usb usb2: Product: xHCI Host Controller
[ 1.060133] usb usb2: Manufacturer: Linux 4.2.0-25-generic xhci-hcd
[ 1.060134] usb usb2: SerialNumber: 0000:00:14.0
[ 1.060262] hub 2-0:1.0: USB hub found
[ 1.060270] hub 2-0:1.0: 4 ports detected
[ 1.061099] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.061106] ehci-pci: EHCI PCI platform driver
[ 1.061228] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 1.061234] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[ 1.061245] ehci-pci 0000:00:1d.0: debug port 2
[ 1.065161] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 1.065173] ehci-pci 0000:00:1d.0: irq 23, io mem 0xb061c000
[ 1.074267] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.074308] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.074311] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.074312] usb usb3: Product: EHCI Host Controller
[ 1.074314] usb usb3: Manufacturer: Linux 4.2.0-25-generic ehci_hcd
[ 1.074316] usb usb3: SerialNumber: 0000:00:1d.0
[ 1.074505] hub 3-0:1.0: USB hub found
[ 1.074511] hub 3-0:1.0: 2 ports detected
[ 1.074647] ehci-platform: EHCI generic platform driver
[ 1.074661] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.074666] ohci-pci: OHCI PCI platform driver
[ 1.074678] ohci-platform: OHCI generic platform driver
[ 1.074689] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.074745] i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
[ 1.074747] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[ 1.080262] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.080504] mousedev: PS/2 mouse device common for all mice
[ 1.080941] rtc_cmos 00:01: RTC can wake from S4
[ 1.081073] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[ 1.081099] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[ 1.081110] i2c /dev entries driver
[ 1.081205] device-mapper: uevent: version 1.0.3
[ 1.081280] device-mapper: ioctl: 4.33.0-ioctl (2015-8-18) initialised: dm-devel@redhat.com
[ 1.081302] Intel P-state driver initializing.
[ 1.081456] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.081466] EFI Variables Facility v0.08 2004-May-17
[ 1.092946] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 1.118798] PCCT header not found.
[ 1.119063] NET: Registered protocol family 10
[ 1.119273] NET: Registered protocol family 17
[ 1.119289] Key type dns_resolver registered
[ 1.119721] Loading compiled-in X.509 certificates
[ 1.120784] Loaded X.509 cert 'Build time autogenerated kernel key: a41030fbdf1dc962b4bb7d1644c3337ec416db86'
[ 1.120802] registered taskstats version 1
[ 1.120825] zswap: loading zswap
[ 1.120828] zswap: using zbud pool
[ 1.120832] zswap: using lzo compressor
[ 1.123090] Key type trusted registered
[ 1.126977] Key type encrypted registered
[ 1.126989] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.126994] ima: No TPM chip found, activating TPM-bypass!
[ 1.127017] evm: HMAC attrs: 0x1
[ 1.127375] Magic number: 0:588:454
[ 1.127489] rtc_cmos 00:01: setting system clock to 2016-01-24 23:25:55 UTC (1453677955)
[ 1.127563] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.127564] EDD information not available.
[ 1.127673] PM: Hibernation image not present or could not be loaded.
[ 1.128029] Freeing unused kernel memory: 1460K (ffffffff81d37000 - ffffffff81ea4000)
[ 1.128031] Write protecting the kernel read-only data: 12288k
[ 1.128229] Freeing unused kernel memory: 32K (ffff8800017f8000 - ffff880001800000)
[ 1.128317] Freeing unused kernel memory: 296K (ffff880001bb6000 - ffff880001c00000)
[ 1.140451] random: systemd-udevd urandom read with 4 bits of entropy available
[ 1.176517] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.184187] sdhci: Secure Digital Host Controller Interface driver
[ 1.184191] sdhci: Copyright(c) Pierre Ossman
[ 1.185152] wmi: Mapper loaded
[ 1.201354] rtsx_pci 0000:01:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 43
[ 1.206370] [drm] Initialized drm 1.1.0 20060810
[ 1.207774] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 1.207786] r8169 0000:01:00.1: can't disable ASPM; OS doesn't have ASPM control
[ 1.210450] ahci 0000:00:1f.2: version 3.0
[ 1.210662] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 1.215713] r8169 0000:01:00.1 eth0: RTL8411 at 0xffffc900006cc000, f8:a9:63:60:af:ab, XID 1c800800 IRQ 45
[ 1.215719] r8169 0000:01:00.1 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 1.226360] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[ 1.226368] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo only pio slum part deso sadm sds apst
[ 1.226889] scsi host0: ahci
[ 1.227218] scsi host1: ahci
[ 1.227307] ata1: SATA max UDMA/133 abar m2048@0xb061b000 port 0xb061b100 irq 44
[ 1.227310] ata2: SATA max UDMA/133 abar m2048@0xb061b000 port 0xb061b180 irq 44
[ 1.235294] [drm] Memory usable by graphics device = 2048M
[ 1.235299] checking generic (a0000000 408000) vs hw (a0000000 10000000)
[ 1.235301] fb: switching to inteldrmfb from EFI VGA
[ 1.235329] Console: switching to colour dummy device 80x25
[ 1.235414] [drm] Replacing VGA console driver
[ 1.242151] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 1.242154] [drm] Driver supports precise vblank timestamp query.
[ 1.242243] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 1.256689] r8169 0000:01:00.1 enp1s0f1: renamed from eth0
[ 1.265671] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 1.265996] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input5
[ 1.266095] [drm] Initialized i915 1.6.0 20150522 for 0000:00:02.0 on minor 0
[ 1.318420] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
[ 1.335436] fbcon: inteldrmfb (fb0) is primary device
[ 1.335509] Console: switching to colour frame buffer device 170x48
[ 1.335531] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 1.335533] i915 0000:00:02.0: registered panic notifier
[ 1.370448] usb 1-5: new full-speed USB device number 2 using xhci_hcd
[ 1.386453] usb 3-1: new high-speed USB device number 2 using ehci-pci
[ 1.499620] usb 1-5: New USB device found, idVendor=04ca, idProduct=300b
[ 1.499624] usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.518959] usb 3-1: New USB device found, idVendor=8087, idProduct=8000
[ 1.518964] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.519231] hub 3-1:1.0: USB hub found
[ 1.519300] hub 3-1:1.0: 8 ports detected
[ 1.546522] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.547335] ata1.00: ATA-9: WDC WD5000LPVX-22V0TT0, 01.01A01, max UDMA/133
[ 1.547340] ata1.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 1.548204] ata1.00: configured for UDMA/133
[ 1.548453] scsi 0:0:0:0: Direct-Access ATA WDC WD5000LPVX-2 1A01 PQ: 0 ANSI: 5
[ 1.548847] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 1.548852] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 1.548868] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.548893] sd 0:0:0:0: [sda] Write Protect is off
[ 1.548898] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.548918] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.608523] sda: sda1 sda2 sda3
[ 1.609170] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.666571] usb 1-7: new high-speed USB device number 3 using xhci_hcd
[ 1.859517] usb 1-7: New USB device found, idVendor=04f2, idProduct=b469
[ 1.859521] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.859523] usb 1-7: Product: HD WebCam
[ 1.859525] usb 1-7: Manufacturer: Chicony Electronics Co.,Ltd.
[ 1.866661] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.869805] ata2.00: ATAPI: MATSHITA DVD-RAM UJ8HC, 1.00, max UDMA/100
[ 1.874763] ata2.00: configured for UDMA/100
[ 1.878703] scsi 1:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8HC 1.00 PQ: 0 ANSI: 5
[ 1.902212] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.902217] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.902401] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1.902481] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 2.014717] tsc: Refined TSC clocksource calibration: 1696.073 MHz
[ 2.014722] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1872a9796f1, max_idle_ns: 440795212049 ns
[ 2.612555] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[ 3.015320] clocksource: Switched to clocksource tsc
[ 3.419328] random: nonblocking pool is initialized
[ 3.452818] systemd[1]: Failed to insert module 'kdbus': Function not implemented
[ 3.638818] systemd[1]: systemd 225 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[ 3.638988] systemd[1]: Detected architecture x86-64.
[ 3.650858] systemd[1]: Set hostname to <PauloHenriqueNe>.
[ 5.007570] systemd[1]: Created slice Root Slice.
[ 5.007717] systemd[1]: Created slice System Slice.
[ 5.007816] systemd[1]: Created slice system-getty.slice.
[ 5.007920] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[ 5.007956] systemd[1]: Listening on udev Kernel Socket.
[ 5.008036] systemd[1]: Listening on Journal Audit Socket.
[ 5.008089] systemd[1]: Listening on Journal Socket.
[ 5.008556] systemd[1]: Mounting POSIX Message Queue File System...
[ 5.009115] systemd[1]: Started Read required files in advance.
[ 5.009843] systemd[1]: Mounting Debug File System...
[ 5.010370] systemd[1]: Starting Setup Virtual Console...
[ 5.087887] systemd[1]: Starting Load Kernel Modules...
[ 5.088530] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[ 5.089126] systemd[1]: Mounting Huge Pages File System...
[ 5.089718] systemd[1]: Starting Uncomplicated firewall...
[ 5.089870] systemd[1]: Created slice User and Session Slice.
[ 5.089941] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 5.089970] systemd[1]: Reached target Slices.
[ 5.089996] systemd[1]: Reached target Remote File Systems (Pre).
[ 5.090205] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 5.216649] systemd[1]: Listening on Journal Socket (/dev/log).
[ 5.216674] systemd[1]: Reached target User and Group Name Lookups.
[ 5.216692] systemd[1]: Reached target Encrypted Volumes.
[ 5.216751] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 5.217328] systemd[1]: Starting Increase datagram queue length...
[ 5.217389] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 5.217448] systemd[1]: Listening on udev Control Socket.
[ 5.218044] systemd[1]: Starting udev Coldplug all Devices...
[ 5.305925] systemd[1]: Started Setup Virtual Console.
[ 5.363612] systemd[1]: Started Create list of required static device nodes for the current kernel.
[ 5.364265] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 5.427956] systemd[1]: Mounted Debug File System.
[ 5.427995] systemd[1]: Mounted Huge Pages File System.
[ 5.428010] systemd[1]: Mounted POSIX Message Queue File System.
[ 5.428438] systemd[1]: Started Increase datagram queue length.
[ 5.428571] systemd[1]: Listening on Syslog Socket.
[ 5.429124] systemd[1]: Starting Journal Service...
[ 5.721073] systemd[1]: Started udev Coldplug all Devices.
[ 5.924716] systemd[1]: Started Journal Service.
[ 6.206486] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 6.270960] lp: driver loaded but no devices found
[ 6.293430] ppdev: user-space parallel port driver
[ 6.320547] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[ 6.594862] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 7.177010] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[ 7.690890] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 8.082604] Bluetooth: Core ver 2.20
[ 8.082622] NET: Registered protocol family 31
[ 8.082624] Bluetooth: HCI device and connection manager initialized
[ 8.082628] Bluetooth: HCI socket layer initialized
[ 8.082631] Bluetooth: L2CAP socket layer initialized
[ 8.082636] Bluetooth: SCO socket layer initialized
[ 8.449557] media: Linux media interface: v0.10
[ 8.526573] Linux video capture interface: v2.00
[ 8.534437] usbcore: registered new interface driver btusb
[ 8.563530] AVX2 version of gcm_enc/dec engaged.
[ 8.563534] AES CTR mode by8 optimization enabled
[ 8.815684] usb 1-5: USB disconnect, device number 2
[ 8.815703] usbcore: registered new interface driver ath3k
[ 8.872075] systemd-journald[225]: Received request to flush runtime journal from PID 1
[ 8.929543] i2c_hid i2c-SYN1B7E:01: failed to retrieve report from device.
[ 8.937172] i2c_hid i2c-SYN1B7E:01: failed to retrieve report from device.
[ 8.937970] i2c_hid i2c-SYN1B7E:01: failed to retrieve report from device.
[ 8.938785] i2c_hid i2c-SYN1B7E:01: failed to retrieve report from device.
[ 8.939572] i2c_hid i2c-SYN1B7E:01: failed to retrieve report from device.
[ 8.939649] input: SYN1B7E:01 06CB:2970 UNKNOWN as /devices/pci0000:00/INT33C3:00/i2c-8/i2c-SYN1B7E:01/0018:06CB:2970.0001/input/input6
[ 8.939778] hid-multitouch 0018:06CB:2970.0001: input,hidraw0: <UNKNOWN> HID v1.00 Mouse [SYN1B7E:01 06CB:2970] on
[ 9.011708] acer_wmi: Acer Laptop ACPI-WMI Extras
[ 9.011835] acer_wmi: Function bitmap for Communication Button: 0x801
[ 9.018624] acer_wmi: Enabling Launch Manager failed: 0xe2 - 0x0
[ 9.018703] input: Acer WMI hotkeys as /devices/virtual/input/input8
[ 9.019387] input: Acer BMA150 accelerometer as /devices/virtual/input/input9
[ 9.089644] usb 1-5: new full-speed USB device number 4 using xhci_hcd
[ 9.738639] uvcvideo: Found UVC 1.00 device HD WebCam (04f2:b469)
[ 9.746130] input: HD WebCam as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input10
[ 9.746216] usbcore: registered new interface driver uvcvideo
[ 9.746217] USB Video Class driver (1.1.1)
[ 9.949793] ath: phy0: WB335 2-ANT card detected
[ 9.949799] ath: phy0: Set BT/WLAN RX diversity capability
[ 9.956484] ath: phy0: Enable LNA combining
[ 9.957583] ath: phy0: ASPM enabled: 0x42
[ 9.957585] ath: EEPROM regdomain: 0x65
[ 9.957586] ath: EEPROM indicates we should expect a direct regpair map
[ 9.957588] ath: Country alpha2 being used: 00
[ 9.957589] ath: Regpair used: 0x65
[ 10.083665] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 10.084015] ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90000a00000, irq=19
[ 10.117090] ath9k 0000:02:00.0 wlp2s0: renamed from wlan0
[ 10.250410] intel_rapl: Found RAPL domain package
[ 10.250416] intel_rapl: Found RAPL domain core
[ 10.250420] intel_rapl: Found RAPL domain uncore
[ 10.250424] intel_rapl: Found RAPL domain dram
[ 10.384020] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 10.872396] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC283: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 10.872404] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 10.872408] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 10.872411] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 10.872414] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 10.872418] snd_hda_codec_realtek hdaudioC1D0: Mic=0x12
[ 10.874954] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
[ 10.875071] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[ 10.914626] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input13
[ 11.023909] cfg80211: World regulatory domain updated:
[ 11.023913] cfg80211: DFS Master region: unset
[ 11.023915] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 11.023918] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.023920] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.023921] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.023924] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
[ 11.023926] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
[ 11.023928] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 11.023929] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 11.023931] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 13.893568] Adding 4115452k swap on /dev/sda3. Priority:-1 extents:1 across:4115452k FS
[ 14.220972] usb 1-5: New USB device found, idVendor=04ca, idProduct=300b
[ 14.220977] usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 15.996548] audit: type=1400 audit(1453677970.359:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=580 comm="apparmor_parser"
[ 15.996556] audit: type=1400 audit(1453677970.359:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=580 comm="apparmor_parser"
[ 16.170659] audit: type=1400 audit(1453677970.535:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=580 comm="apparmor_parser"
[ 16.170669] audit: type=1400 audit(1453677970.535:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=580 comm="apparmor_parser"
[ 16.170674] audit: type=1400 audit(1453677970.535:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=580 comm="apparmor_parser"
[ 16.170680] audit: type=1400 audit(1453677970.535:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=580 comm="apparmor_parser"
[ 17.134684] audit: type=1400 audit(1453677971.495:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=580 comm="apparmor_parser"
[ 17.134696] audit: type=1400 audit(1453677971.495:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=580 comm="apparmor_parser"
[ 17.134703] audit: type=1400 audit(1453677971.495:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=580 comm="apparmor_parser"
[ 17.134711] audit: type=1400 audit(1453677971.495:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=580 comm="apparmor_parser"
[ 18.461625] [drm:intel_pipe_config_compare [i915]] *ERROR* mismatch in ips_enabled (expected 1, found 0)
[ 18.461629] ------------[ cut here ]------------
[ 18.461648] WARNING: CPU: 0 PID: 297 at /build/linux-ZKbhxl/linux-4.2.0/drivers/gpu/drm/i915/intel_display.c:12328 check_crtc_state+0x2c5/0x440 [i915]()
[ 18.461649] pipe state doesn't match!
[ 18.461651] Modules linked in: nls_iso8859_1 snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_hda_intel intel_rapl iosf_mbi x86_pkg_temp_thermal arc4 snd_hda_codec snd_hda_core intel_powerclamp ath9k snd_hwdep snd_soc_rt5640 ath9k_common coretemp snd_soc_rl6231 kvm_intel uvcvideo snd_soc_core ath9k_hw snd_compress ac97_bus snd_pcm_dmaengine videobuf2_vmalloc videobuf2_memops ath snd_pcm kvm mac80211 videobuf2_core acer_wmi sparse_keymap joydev hid_multitouch ip6t_REJECT nf_reject_ipv6 nf_log_ipv6 crct10dif_pclmul crc32_pclmul snd_seq_midi xt_hl ip6t_rt snd_seq_midi_event ath3k snd_rawmidi v4l2_common snd_seq aesni_intel cfg80211 btusb videodev rtsx_pci_ms nf_conntrack_ipv6 aes_x86_64 media nf_defrag_ipv6 lrw ipt_REJECT nf_reject_ipv4 btrtl nf_log_ipv4 btbcm snd_seq_device snd_timer
[ 18.461693] gf128mul glue_helper nf_log_common btintel ablk_helper cryptd bluetooth memstick xt_LOG input_leds dw_dmac snd serio_raw dw_dmac_core soundcore shpchp mei_me lpc_ich mei 8250_dw xt_limit snd_soc_sst_acpi soc_button_array mac_hid spi_pxa2xx_platform i2c_designware_platform xt_tcpudp i2c_designware_core xt_addrtype nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack ip6table_filter ip6_tables nf_conntrack_netbios_ns nf_conntrack_broadcast nf_nat_ftp nf_nat nf_conntrack_ftp parport_pc nf_conntrack ppdev iptable_filter ip_tables lp parport x_tables autofs4 rtsx_pci_sdmmc i915 i2c_algo_bit drm_kms_helper ahci r8169 libahci mii drm rtsx_pci sdhci_acpi wmi video sdhci i2c_hid hid
[ 18.461732] CPU: 0 PID: 297 Comm: plymouthd Not tainted 4.2.0-25-generic #30-Ubuntu
[ 18.461733] Hardware name: Acer Aspire E5-571/EA50_HB , BIOS V1.26 12/18/2014
[ 18.461735] 0000000000000000 000000005f6f1022 ffff8800998777c8 ffffffff817e94c9
[ 18.461738] 0000000000000000 ffff880099877820 ffff880099877808 ffffffff8107b3d6
[ 18.461741] ffff880099877848 ffff8800998778b0 ffff880157605000 0000000000000001
[ 18.461744] Call Trace:
[ 18.461749] [<ffffffff817e94c9>] dump_stack+0x45/0x57
[ 18.461754] [<ffffffff8107b3d6>] warn_slowpath_common+0x86/0xc0
[ 18.461757] [<ffffffff8107b465>] warn_slowpath_fmt+0x55/0x70
[ 18.461774] [<ffffffffc01cd941>] ? intel_pipe_config_compare+0xb31/0xc60 [i915]
[ 18.461787] [<ffffffffc01cdd35>] check_crtc_state+0x2c5/0x440 [i915]
[ 18.461806] [<ffffffffc01e1b5d>] intel_modeset_check_state+0x21d/0x6d0 [i915]
[ 18.461822] [<ffffffffc01e2d17>] intel_crtc_set_config+0x4c7/0x580 [i915]
[ 18.461837] [<ffffffffc00b4ef5>] ? drm_mode_create+0x25/0x60 [drm]
[ 18.461849] [<ffffffffc00ae4a6>] drm_mode_set_config_internal+0x66/0x100 [drm]
[ 18.461861] [<ffffffffc00b2b39>] drm_mode_setcrtc+0x3e9/0x500 [drm]
[ 18.461869] [<ffffffffc00a3495>] drm_ioctl+0x125/0x610 [drm]
[ 18.461880] [<ffffffffc00b2750>] ? drm_mode_setplane+0x1b0/0x1b0 [drm]
[ 18.461884] [<ffffffff81210aa5>] do_vfs_ioctl+0x295/0x480
[ 18.461887] [<ffffffff81210d09>] SyS_ioctl+0x79/0x90
[ 18.461891] [<ffffffff817f02b2>] entry_SYSCALL_64_fastpath+0x16/0x75
[ 18.461892] ---[ end trace 288f953ec43dca2c ]---
[ 18.463485] [drm:intel_pipe_config_compare [i915]] *ERROR* mismatch in ips_enabled (expected 1, found 0)
[ 18.463488] ------------[ cut here ]------------
[ 18.463504] WARNING: CPU: 0 PID: 297 at /build/linux-ZKbhxl/linux-4.2.0/drivers/gpu/drm/i915/intel_display.c:12328 check_crtc_state+0x2c5/0x440 [i915]()
[ 18.463505] pipe state doesn't match!
[ 18.463506] Modules linked in: nls_iso8859_1 snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_hda_intel intel_rapl iosf_mbi x86_pkg_temp_thermal arc4 snd_hda_codec snd_hda_core intel_powerclamp ath9k snd_hwdep snd_soc_rt5640 ath9k_common coretemp snd_soc_rl6231 kvm_intel uvcvideo snd_soc_core ath9k_hw snd_compress ac97_bus snd_pcm_dmaengine videobuf2_vmalloc videobuf2_memops ath snd_pcm kvm mac80211 videobuf2_core acer_wmi sparse_keymap joydev hid_multitouch ip6t_REJECT nf_reject_ipv6 nf_log_ipv6 crct10dif_pclmul crc32_pclmul snd_seq_midi xt_hl ip6t_rt snd_seq_midi_event ath3k snd_rawmidi v4l2_common snd_seq aesni_intel cfg80211 btusb videodev rtsx_pci_ms nf_conntrack_ipv6 aes_x86_64 media nf_defrag_ipv6 lrw ipt_REJECT nf_reject_ipv4 btrtl nf_log_ipv4 btbcm snd_seq_device snd_timer
[ 18.463545] gf128mul glue_helper nf_log_common btintel ablk_helper cryptd bluetooth memstick xt_LOG input_leds dw_dmac snd serio_raw dw_dmac_core soundcore shpchp mei_me lpc_ich mei 8250_dw xt_limit snd_soc_sst_acpi soc_button_array mac_hid spi_pxa2xx_platform i2c_designware_platform xt_tcpudp i2c_designware_core xt_addrtype nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack ip6table_filter ip6_tables nf_conntrack_netbios_ns nf_conntrack_broadcast nf_nat_ftp nf_nat nf_conntrack_ftp parport_pc nf_conntrack ppdev iptable_filter ip_tables lp parport x_tables autofs4 rtsx_pci_sdmmc i915 i2c_algo_bit drm_kms_helper ahci r8169 libahci mii drm rtsx_pci sdhci_acpi wmi video sdhci i2c_hid hid
[ 18.463583] CPU: 0 PID: 297 Comm: plymouthd Tainted: G W 4.2.0-25-generic #30-Ubuntu
[ 18.463585] Hardware name: Acer Aspire E5-571/EA50_HB , BIOS V1.26 12/18/2014
[ 18.463587] 0000000000000000 000000005f6f1022 ffff8800998777c8 ffffffff817e94c9
[ 18.463589] 0000000000000000 ffff880099877820 ffff880099877808 ffffffff8107b3d6
[ 18.463592] ffff880099877848 ffff8800998778b0 ffff880157605000 0000000000000001
[ 18.463594] Call Trace:
[ 18.463599] [<ffffffff817e94c9>] dump_stack+0x45/0x57
[ 18.463603] [<ffffffff8107b3d6>] warn_slowpath_common+0x86/0xc0
[ 18.463606] [<ffffffff8107b465>] warn_slowpath_fmt+0x55/0x70
[ 18.463622] [<ffffffffc01cd941>] ? intel_pipe_config_compare+0xb31/0xc60 [i915]
[ 18.463635] [<ffffffffc01cdd35>] check_crtc_state+0x2c5/0x440 [i915]
[ 18.463653] [<ffffffffc01e1b5d>] intel_modeset_check_state+0x21d/0x6d0 [i915]
[ 18.463668] [<ffffffffc01e2d17>] intel_crtc_set_config+0x4c7/0x580 [i915]
[ 18.463683] [<ffffffffc00b4ef5>] ? drm_mode_create+0x25/0x60 [drm]
[ 18.463694] [<ffffffffc00ae4a6>] drm_mode_set_config_internal+0x66/0x100 [drm]
[ 18.463706] [<ffffffffc00b2b39>] drm_mode_setcrtc+0x3e9/0x500 [drm]
[ 18.463714] [<ffffffffc00a3495>] drm_ioctl+0x125/0x610 [drm]
[ 18.463724] [<ffffffffc00b2750>] ? drm_mode_setplane+0x1b0/0x1b0 [drm]
[ 18.463728] [<ffffffff81210aa5>] do_vfs_ioctl+0x295/0x480
[ 18.463731] [<ffffffff81210d09>] SyS_ioctl+0x79/0x90
[ 18.463734] [<ffffffff817f02b2>] entry_SYSCALL_64_fastpath+0x16/0x75
[ 18.463736] ---[ end trace 288f953ec43dca2d ]---
[ 21.051267] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 21.051272] Bluetooth: BNEP filters: protocol multicast
[ 21.051278] Bluetooth: BNEP socket layer initialized
[ 22.814858] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[ 22.826679] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[ 22.828420] IPv6: ADDRCONF(NETDEV_UP): enp1s0f1: link is not ready
[ 22.885571] r8169 0000:01:00.1 enp1s0f1: link down
[ 22.885627] IPv6: ADDRCONF(NETDEV_UP): enp1s0f1: link is not ready
[ 22.950118] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[ 24.190281] [drm:intel_pipe_config_compare [i915]] *ERROR* mismatch in ips_enabled (expected 1, found 0)
[ 24.190286] ------------[ cut here ]------------
[ 24.190305] WARNING: CPU: 1 PID: 780 at /build/linux-ZKbhxl/linux-4.2.0/drivers/gpu/drm/i915/intel_display.c:12328 check_crtc_state+0x2c5/0x440 [i915]()
[ 24.190306] pipe state doesn't match!
[ 24.190308] Modules linked in: bnep nls_iso8859_1 snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_codec_generic snd_hda_intel intel_rapl iosf_mbi x86_pkg_temp_thermal arc4 snd_hda_codec snd_hda_core intel_powerclamp ath9k snd_hwdep snd_soc_rt5640 ath9k_common coretemp snd_soc_rl6231 kvm_intel uvcvideo snd_soc_core ath9k_hw snd_compress ac97_bus snd_pcm_dmaengine videobuf2_vmalloc videobuf2_memops ath snd_pcm kvm mac80211 videobuf2_core acer_wmi sparse_keymap joydev hid_multitouch ip6t_REJECT nf_reject_ipv6 nf_log_ipv6 crct10dif_pclmul crc32_pclmul snd_seq_midi xt_hl ip6t_rt snd_seq_midi_event ath3k snd_rawmidi v4l2_common snd_seq aesni_intel cfg80211 btusb videodev rtsx_pci_ms nf_conntrack_ipv6 aes_x86_64 media nf_defrag_ipv6 lrw ipt_REJECT nf_reject_ipv4 btrtl nf_log_ipv4 btbcm snd_seq_device snd_timer
[ 24.190351] gf128mul glue_helper nf_log_common btintel ablk_helper cryptd bluetooth memstick xt_LOG input_leds dw_dmac snd serio_raw dw_dmac_core soundcore shpchp mei_me lpc_ich mei 8250_dw xt_limit snd_soc_sst_acpi soc_button_array mac_hid spi_pxa2xx_platform i2c_designware_platform xt_tcpudp i2c_designware_core xt_addrtype nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack ip6table_filter ip6_tables nf_conntrack_netbios_ns nf_conntrack_broadcast nf_nat_ftp nf_nat nf_conntrack_ftp parport_pc nf_conntrack ppdev iptable_filter ip_tables lp parport x_tables autofs4 rtsx_pci_sdmmc i915 i2c_algo_bit drm_kms_helper ahci r8169 libahci mii drm rtsx_pci sdhci_acpi wmi video sdhci i2c_hid hid
[ 24.190391] CPU: 1 PID: 780 Comm: Xorg Tainted: G W 4.2.0-25-generic #30-Ubuntu
[ 24.190392] Hardware name: Acer Aspire E5-571/EA50_HB , BIOS V1.26 12/18/2014
[ 24.190394] 0000000000000000 0000000004c4d39e ffff880099ba77c8 ffffffff817e94c9
[ 24.190397] 0000000000000000 ffff880099ba7820 ffff880099ba7808 ffffffff8107b3d6
[ 24.190400] ffff880099ba7848 ffff880099ba78b0 ffff880157605000 0000000000000001
[ 24.190402] Call Trace:
[ 24.190408] [<ffffffff817e94c9>] dump_stack+0x45/0x57
[ 24.190413] [<ffffffff8107b3d6>] warn_slowpath_common+0x86/0xc0
[ 24.190416] [<ffffffff8107b465>] warn_slowpath_fmt+0x55/0x70
[ 24.190433] [<ffffffffc01cd941>] ? intel_pipe_config_compare+0xb31/0xc60 [i915]
[ 24.190447] [<ffffffffc01cdd35>] check_crtc_state+0x2c5/0x440 [i915]
[ 24.190466] [<ffffffffc01e1b5d>] intel_modeset_check_state+0x21d/0x6d0 [i915]
[ 24.190486] [<ffffffffc01e2d17>] intel_crtc_set_config+0x4c7/0x580 [i915]
[ 24.190502] [<ffffffffc00b4ef5>] ? drm_mode_create+0x25/0x60 [drm]
[ 24.190515] [<ffffffffc00ae4a6>] drm_mode_set_config_internal+0x66/0x100 [drm]
[ 24.190529] [<ffffffffc00b2b39>] drm_mode_setcrtc+0x3e9/0x500 [drm]
[ 24.190538] [<ffffffffc00a3495>] drm_ioctl+0x125/0x610 [drm]
[ 24.190551] [<ffffffffc00b2750>] ? drm_mode_setplane+0x1b0/0x1b0 [drm]
[ 24.190555] [<ffffffff81210aa5>] do_vfs_ioctl+0x295/0x480
[ 24.190559] [<ffffffff81087ff1>] ? __set_task_blocked+0x41/0xa0
[ 24.190562] [<ffffffff81210d09>] SyS_ioctl+0x79/0x90
[ 24.190566] [<ffffffff8108ac1e>] ? SyS_rt_sigprocmask+0x8e/0xc0
[ 24.190570] [<ffffffff817f02b2>] entry_SYSCALL_64_fastpath+0x16/0x75
[ 24.190572] ---[ end trace 288f953ec43dca2e ]---
[ 58.050646] wlp2s0: authenticate with c8:3a:35:49:c4:28
[ 58.067766] wlp2s0: send auth to c8:3a:35:49:c4:28 (try 1/3)
[ 58.069826] wlp2s0: authenticated
[ 58.070092] wlp2s0: associate with c8:3a:35:49:c4:28 (try 1/3)
[ 58.073936] wlp2s0: RX AssocResp from c8:3a:35:49:c4:28 (capab=0x411 status=0 aid=1)
[ 58.074007] wlp2s0: associated
[ 58.074018] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
|