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
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200 | May 6 18:47:32 joey-Ideapad-Z560 anacron[1061]: Job `cron.daily' terminated
May 6 18:47:32 joey-Ideapad-Z560 anacron[1061]: Normal exit (1 job run)
May 6 18:50:51 joey-Ideapad-Z560 kernel: [ 518.045794] perf interrupt took too long (2505 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
May 6 19:13:31 joey-Ideapad-Z560 kernel: [ 1878.152959] perf interrupt took too long (5018 > 5000), lowering kernel.perf_event_max_sample_rate to 25000
May 6 19:17:01 joey-Ideapad-Z560 CRON[3047]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00May 6 16:08:47 joey-Ideapad-Z560 rsyslogd: [origin software="rsyslogd" swVersion="7.4.4" x-pid="657" x-info="http://www.rsyslog.com"] start
May 6 16:08:47 joey-Ideapad-Z560 rsyslogd: rsyslogd's groupid changed to 104
May 6 16:08:47 joey-Ideapad-Z560 rsyslogd: rsyslogd's userid changed to 101
May 6 16:08:47 joey-Ideapad-Z560 rsyslogd-2039: Could no open output pipe '/dev/xconsole': No such file or directory [try http://www.rsyslog.com/e/2039 ]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Initializing cgroup subsys cpuset
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Initializing cgroup subsys cpu
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Initializing cgroup subsys cpuacct
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Linux version 3.16.0-37-generic (buildd@orlo) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #49~14.04.1-Ubuntu SMP Thu Apr 30 10:52:28 UTC 2015 (Ubuntu 3.16.0-37.49~14.04.1-generic 3.16.7-ckt9)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.16.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] KERNEL supported cpus:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Intel GenuineIntel
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] AMD AuthenticAMD
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Centaur CentaurHauls
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb680fff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb681000-0x00000000bb6befff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb6bf000-0x00000000bb757fff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb758000-0x00000000bb7befff] ACPI NVS
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb7bf000-0x00000000bb7e1fff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb7e2000-0x00000000bb7fefff] ACPI data
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb7ff000-0x00000000bb7fffff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000bb800000-0x00000000bfffffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001fbffffff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x00000001fc000000-0x00000001ffffffff] reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000200000000-0x000000023bffffff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] NX (Execute Disable) protection: active
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] SMBIOS 2.6 present.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMI: LENOVO 0914 /Base Board Product Name, BIOS 29CN38WW(V2.15) 01/28/2011
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] AGP: No AGP bridge found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] e820: last_pfn = 0x23c000 max_arch_pfn = 0x400000000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] MTRR default type: uncachable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] MTRR fixed ranges enabled:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 00000-9FFFF write-back
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] A0000-BFFFF uncachable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] C0000-EFFFF write-through
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] F0000-FFFFF write-combining
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] MTRR variable ranges enabled:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 0 base 000000000 mask F80000000 write-back
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 1 base 0FFE00000 mask FFFE00000 write-protect
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 2 base 080000000 mask FC0000000 write-back
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 4 base 0BB800000 mask FFF800000 uncachable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 5 base 100000000 mask F00000000 write-back
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 6 base 200000000 mask FC0000000 write-back
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] 7 base 23C000000 mask FFC000000 uncachable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] e820: last_pfn = 0xbb800 max_arch_pfn = 0x400000000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Scanning 1 areas for low memory corruption
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0x23be00000-0x23bffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x23be00000-0x23bffffff] page 2M
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0x238000000-0x23bdfffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x238000000-0x23bdfffff] page 2M
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0x200000000-0x237ffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x200000000-0x237ffffff] page 2M
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0x00100000-0xbb680fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x00200000-0xbb5fffff] page 2M
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0xbb600000-0xbb680fff] page 4k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0xbb6bf000-0xbb757fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0xbb6bf000-0xbb757fff] page 4k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0xbb7bf000-0xbb7e1fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0xbb7bf000-0xbb7e1fff] page 4k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0xbb7ff000-0xbb7fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0xbb7ff000-0xbb7fffff] page 4k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1fbffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [mem 0x100000000-0x1fbffffff] page 2M
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] RAMDISK: [mem 0x3594a000-0x36c9cfff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: Early table checksum verification disabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 LENOVO)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: XSDT 0x00000000BB7FE120 000084 (v01 LENOVO CB-01 00000001 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: FACP 0x00000000BB7FC000 0000F4 (v04 LENOVO CB-01 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: DSDT 0x00000000BB7EE000 00AE39 (v02 LENOVO CB-01 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: FACS 0x00000000BB76A000 000040
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: ASF! 0x00000000BB7FD000 0000A5 (v32 INTEL Calpella 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: HPET 0x00000000BB7FB000 000038 (v01 LENOVO CB-01 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: APIC 0x00000000BB7FA000 00008C (v02 INTEL Calpella 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: MCFG 0x00000000BB7F9000 00003C (v01 LENOVO CB-01 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: SLIC 0x00000000BB7ED000 000176 (v01 LENOVO CB-01 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: BOOT 0x00000000BB7EA000 000028 (v01 INTEL Calpella 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: ASPT 0x00000000BB7E6000 000034 (v04 INTEL Calpella 00000001 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: WDRT 0x00000000BB7E5000 000047 (v01 INTEL Calpella 00000000 MSFT 01000013)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: SSDT 0x00000000BB7E4000 0009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: SSDT 0x00000000BB7E3000 000259 (v01 PmRef Cpu0Tst 00003000 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: SSDT 0x00000000BB7E2000 00049F (v01 PmRef ApTst 00003000 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] No NUMA configuration found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000023bffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x23bffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] NODE_DATA [mem 0x23bff6000-0x23bffafff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880233600000-ffff88023b5fffff] on node 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Zone ranges:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Normal [mem 0x100000000-0x23bffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Movable zone start for each node
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Early memory node ranges
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0x00100000-0xbb680fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0xbb6bf000-0xbb757fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0xbb7bf000-0xbb7e1fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0xbb7ff000-0xbb7fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0x100000000-0x1fbffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] node 0: [mem 0x200000000-0x23bffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] On node 0 totalpages: 2045658
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA zone: 64 pages used for memmap
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA zone: 21 pages reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA32 zone: 11933 pages used for memmap
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] DMA32 zone: 763710 pages, LIFO batch:31
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Normal zone: 20224 pages used for memmap
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Normal zone: 1277952 pages, LIFO batch:31
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Reserving Intel graphics stolen memory at 0xbe000000-0xbfffffff
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x408
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: IRQ0 used by override.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: IRQ2 used by override.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: IRQ9 used by override.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] nr_irqs_gsi: 40
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbb681000-0xbb6befff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbb758000-0xbb7befff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbb7e2000-0xbb7fefff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xbb800000-0xbfffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfeafffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1afff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x1fc000000-0x1ffffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023bc00000 s81408 r8192 d20992 u262144
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2013416
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Policy zone: Normal
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.16.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] AGP: Checking aperture...
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] AGP: No AGP bridge found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Memory: 7948340K/8182632K available (7624K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 234292K reserved)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Hierarchical RCU implementation.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Offload RCU callbacks from all CPUs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Offload RCU callbacks from CPUs: 0-7.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] NR_IRQS:16640 nr_irqs:744 16
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] vt handoff: transparent VT on vt#7
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] Console: colour dummy device 80x25
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] console [tty0] enabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] allocated 33554432 bytes of page_cgroup
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] hpet clockevent registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] tsc: Fast TSC calibration using PIT
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000000] tsc: Detected 2659.937 MHz processor
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5319.87 BogoMIPS (lpj=10639748)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000034] pid_max: default: 32768 minimum: 301
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.000042] ACPI: Core revision 20140424
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.010122] ACPI: All ACPI Tables successfully acquired
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.174686] Security Framework initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.174709] AppArmor: AppArmor initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.174710] Yama: becoming mindful.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.175214] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.177059] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.177888] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.177899] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178152] Initializing cgroup subsys memory
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178174] Initializing cgroup subsys devices
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178180] Initializing cgroup subsys freezer
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178184] Initializing cgroup subsys net_cls
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178188] Initializing cgroup subsys blkio
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178192] Initializing cgroup subsys perf_event
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178194] Initializing cgroup subsys net_prio
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178201] Initializing cgroup subsys hugetlb
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178222] CPU: Physical Processor ID: 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178223] CPU: Processor Core ID: 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178229] mce: CPU supports 9 MCE banks
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178239] CPU0: Thermal monitoring enabled (TM1)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178249] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178249] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178249] tlb_flushall_shift: 6
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.178371] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.179486] ftrace: allocating 29244 entries in 115 pages
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.193324] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.233012] smpboot: CPU0: Intel(R) Core(TM) i5 CPU M 480 @ 2.67GHz (fam: 06, model: 25, stepping: 05)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339399] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339416] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339418] ... version: 3
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339419] ... bit width: 48
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339419] ... generic registers: 4
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339420] ... value mask: 0000ffffffffffff
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339421] ... max period: 000000007fffffff
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339422] ... fixed-purpose events: 3
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.339423] ... event mask: 000000070000000f
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.341132] x86: Booting SMP configuration:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.341135] .... node #0, CPUs: #1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.354302] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.354407] #2 #3
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.380840] x86: Booted up 1 node, 4 CPUs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.380845] smpboot: Total of 4 processors activated (21279.49 BogoMIPS)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.383308] devtmpfs: initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387090] evm: security.selinux
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387091] evm: security.SMACK64
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387092] evm: security.SMACK64EXEC
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387093] evm: security.SMACK64TRANSMUTE
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387093] evm: security.SMACK64MMAP
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387094] evm: security.ima
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387095] evm: security.capability
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.387151] PM: Registering ACPI NVS region [mem 0xbb758000-0xbb7befff] (421888 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388053] pinctrl core: initialized pinctrl subsystem
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388125] regulator-dummy: no parameters
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388162] RTC time: 20:08:45, date: 05/06/15
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388211] NET: Registered protocol family 16
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388350] cpuidle: using governor ladder
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388352] cpuidle: using governor menu
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388397] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388398] ACPI: bus type PCI registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388400] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388474] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388476] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.388930] PCI: Using configuration type 1 for base access
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.391859] ACPI: Added _OSI(Module Device)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.391861] ACPI: Added _OSI(Processor Device)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.391862] ACPI: Added _OSI(3.0 _SCP Extensions)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.391864] ACPI: Added _OSI(Processor Aggregator Device)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.394507] ACPI: Executed 1 blocks of module-level executable AML code
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.403430] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.403796] ACPI: Dynamic OEM Table Load:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.403803] ACPI: SSDT 0xFFFF88022FE20000 000466 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.404252] ACPI: Dynamic OEM Table Load:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.404257] ACPI: SSDT 0xFFFF88022FE20800 0005CD (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.411658] ACPI: Dynamic OEM Table Load:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.411663] ACPI: SSDT 0xFFFF8802302E1000 000303 (v01 PmRef ApIst 00003000 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.415548] ACPI: Dynamic OEM Table Load:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.415553] ACPI: SSDT 0xFFFF88022FE30000 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.420628] ACPI: Interpreter enabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.420640] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.420647] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.420665] ACPI: (supports S0 S3 S4 S5)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.420667] ACPI: Using IOAPIC for interrupt routing
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.420701] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473290] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473295] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473323] \_SB_.PCI0:_OSC invalid UUID
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473324] _OSC request data:1 1f 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473328] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473944] PCI host bridge to bus 0000:00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473947] pci_bus 0000:00: root bus resource [bus 00-fe]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473949] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473950] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473952] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473953] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473961] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.473977] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474044] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474054] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff 64bit]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474059] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474063] pci 0000:00:02.0: reg 0x20: [io 0x5050-0x5057]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474168] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474196] pci 0000:00:16.0: reg 0x10: [mem 0xd8406100-0xd840610f 64bit]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474291] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474380] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.474783] pci 0000:00:1a.0: reg 0x10: [mem 0xd8405c00-0xd8405fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477117] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477179] pci 0000:00:1a.0: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477225] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477248] pci 0000:00:1b.0: reg 0x10: [mem 0xd8400000-0xd8403fff 64bit]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477357] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477401] pci 0000:00:1b.0: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477440] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477545] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477589] pci 0000:00:1c.0: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477627] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477729] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477808] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477912] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.477992] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.478097] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.478142] pci 0000:00:1c.4: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.478187] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.478579] pci 0000:00:1d.0: reg 0x10: [mem 0xd8405800-0xd8405bff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.480920] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.480980] pci 0000:00:1d.0: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481020] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481119] pci 0000:00:1e.0: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481157] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481330] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481356] pci 0000:00:1f.2: reg 0x10: [io 0x5048-0x504f]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481367] pci 0000:00:1f.2: reg 0x14: [io 0x505c-0x505f]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481377] pci 0000:00:1f.2: reg 0x18: [io 0x5040-0x5047]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481388] pci 0000:00:1f.2: reg 0x1c: [io 0x5058-0x505b]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481398] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481409] pci 0000:00:1f.2: reg 0x24: [mem 0xd8405000-0xd84057ff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481474] pci 0000:00:1f.2: PME# supported from D3hot
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481544] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481565] pci 0000:00:1f.3: reg 0x10: [mem 0xd8406000-0xd84060ff 64bit]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481593] pci 0000:00:1f.3: reg 0x20: [io 0x5000-0x501f]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481685] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481712] pci 0000:00:1f.6: reg 0x10: [mem 0xd8404000-0xd8404fff 64bit]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481935] acpiphp: Slot [1] registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481941] pci 0000:00:1c.0: PCI bridge to [bus 01-04]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481945] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481950] pci 0000:00:1c.0: bridge window [mem 0xd7400000-0xd83fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.481957] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482067] pci 0000:05:00.0: [168c:002b] type 00 class 0x028000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482114] pci 0000:05:00.0: reg 0x10: [mem 0xd6400000-0xd640ffff 64bit]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482351] pci 0000:05:00.0: supports D1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482352] pci 0000:05:00.0: PME# supported from D0 D1 D3hot
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482463] pci 0000:00:1c.1: PCI bridge to [bus 05]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482466] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482470] pci 0000:00:1c.1: bridge window [mem 0xd6400000-0xd73fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482478] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482588] pci 0000:06:00.0: [10ec:8136] type 00 class 0x020000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482650] pci 0000:06:00.0: reg 0x10: [io 0x2000-0x20ff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482757] pci 0000:06:00.0: reg 0x18: [mem 0xd2410000-0xd2410fff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482789] pci 0000:06:00.0: reg 0x20: [mem 0xd2400000-0xd240ffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.482835] pci 0000:06:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483155] pci 0000:06:00.0: supports D1 D2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483156] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483260] pci 0000:06:00.0: System wakeup disabled by ACPI
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483342] pci 0000:00:1c.2: PCI bridge to [bus 06]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483346] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483350] pci 0000:00:1c.2: bridge window [mem 0xd5400000-0xd63fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483357] pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483433] acpiphp: Slot [1-1] registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483439] pci 0000:00:1c.4: PCI bridge to [bus 07-0a]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483444] pci 0000:00:1c.4: bridge window [io 0x1000-0x1fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483448] pci 0000:00:1c.4: bridge window [mem 0xd4400000-0xd53fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483455] pci 0000:00:1c.4: bridge window [mem 0xd3400000-0xd43fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483533] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483546] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483548] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483549] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.483550] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509420] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 12 14 15)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509464] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509506] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509547] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509589] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509630] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 *11 12 14 15)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509672] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509713] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 7 11 12 14 15)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509750] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509753] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509757] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509817] PCI host bridge to bus 0000:ff
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509819] pci_bus 0000:ff: root bus resource [bus ff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509823] pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509863] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509903] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509940] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.509978] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510014] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510109] ACPI: Enabled 6 GPEs in block 00 to 3F
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510137] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510247] vgaarb: setting as boot device: PCI:0000:00:02.0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510249] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510251] vgaarb: loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510252] vgaarb: bridge control possible 0000:00:02.0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510465] SCSI subsystem initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510527] libata version 3.00 loaded.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510556] ACPI: bus type USB registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510573] usbcore: registered new interface driver usbfs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510581] usbcore: registered new interface driver hub
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510604] usbcore: registered new device driver usb
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.510727] PCI: Using ACPI for IRQ routing
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520402] PCI: pci_cache_line_size set to 64 bytes
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520477] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520479] e820: reserve RAM buffer [mem 0xbb681000-0xbbffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520480] e820: reserve RAM buffer [mem 0xbb758000-0xbbffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520482] e820: reserve RAM buffer [mem 0xbb7e2000-0xbbffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520483] e820: reserve RAM buffer [mem 0xbb800000-0xbbffffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520588] NetLabel: Initializing
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520590] NetLabel: domain hash size = 128
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520590] NetLabel: protocols = UNLABELED CIPSOv4
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520603] NetLabel: unlabeled traffic allowed by default
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520688] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.520692] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.522738] Switched to clocksource hpet
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.528509] AppArmor: AppArmor Filesystem Enabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.528551] pnp: PnP ACPI init
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.528570] ACPI: bus type PNP registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550889] pnp 00:00: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.4 BAR 13 [io 0x1000-0x1fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550939] system 00:00: [io 0x0680-0x069f] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550941] system 00:00: [io 0x0800-0x080f] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550942] system 00:00: [io 0xffff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550944] system 00:00: [io 0xffff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550946] system 00:00: [io 0x0400-0x047f] could not be reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550947] system 00:00: [io 0x0500-0x057f] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550951] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.550984] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551055] pnp 00:02: Plug and Play ACPI device, IDs ETD0601 PNP0f13 (active)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551095] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551489] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551492] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551493] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551495] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551497] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551498] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551500] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551502] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551504] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551505] system 00:04: [mem 0xd8500000-0xd8500fff] has been reserved
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551508] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551601] pnp: PnP ACPI: found 5 devices
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.551602] ACPI: bus type PNP unregistered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558315] pci 0000:06:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558364] pci 0000:00:1c.0: PCI bridge to [bus 01-04]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558368] pci 0000:00:1c.0: bridge window [io 0x4000-0x4fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558374] pci 0000:00:1c.0: bridge window [mem 0xd7400000-0xd83fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558378] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558385] pci 0000:00:1c.1: PCI bridge to [bus 05]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558388] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558394] pci 0000:00:1c.1: bridge window [mem 0xd6400000-0xd73fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558398] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558408] pci 0000:06:00.0: BAR 6: assigned [mem 0xd5400000-0xd541ffff pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558410] pci 0000:00:1c.2: PCI bridge to [bus 06]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558413] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558418] pci 0000:00:1c.2: bridge window [mem 0xd5400000-0xd63fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558423] pci 0000:00:1c.2: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558430] pci 0000:00:1c.4: PCI bridge to [bus 07-0a]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558432] pci 0000:00:1c.4: bridge window [io 0x1000-0x1fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558438] pci 0000:00:1c.4: bridge window [mem 0xd4400000-0xd53fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558442] pci 0000:00:1c.4: bridge window [mem 0xd3400000-0xd43fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558449] pci 0000:00:1e.0: PCI bridge to [bus 0b]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558463] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558465] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558466] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558468] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558470] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558471] pci_bus 0000:01: resource 1 [mem 0xd7400000-0xd83fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558472] pci_bus 0000:01: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558474] pci_bus 0000:05: resource 0 [io 0x3000-0x3fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558476] pci_bus 0000:05: resource 1 [mem 0xd6400000-0xd73fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558477] pci_bus 0000:05: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558479] pci_bus 0000:06: resource 0 [io 0x2000-0x2fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558480] pci_bus 0000:06: resource 1 [mem 0xd5400000-0xd63fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558481] pci_bus 0000:06: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558483] pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558484] pci_bus 0000:07: resource 1 [mem 0xd4400000-0xd53fffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558486] pci_bus 0000:07: resource 2 [mem 0xd3400000-0xd43fffff 64bit pref]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558487] pci_bus 0000:0b: resource 4 [io 0x0000-0x0cf7]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558489] pci_bus 0000:0b: resource 5 [io 0x0d00-0xffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558490] pci_bus 0000:0b: resource 6 [mem 0x000a0000-0x000bffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558492] pci_bus 0000:0b: resource 7 [mem 0xc0000000-0xfeafffff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558520] NET: Registered protocol family 2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558732] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.558900] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.559105] TCP: Hash tables configured (established 65536 bind 65536)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.559142] TCP: reno registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.559151] UDP hash table entries: 4096 (order: 5, 131072 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.559183] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.559261] NET: Registered protocol family 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.559280] pci 0000:00:02.0: Video device with shadowed ROM
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.590930] PCI: CLS 64 bytes, default 64
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.590995] Trying to unpack rootfs image as initramfs...
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878197] Freeing initrd memory: 19788K (ffff88003594a000 - ffff880036c9d000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878253] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878256] software IO TLB [mem 0xb7681000-0xbb681000] (64MB) mapped at [ffff8800b7681000-ffff8800bb680fff]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878312] Simple Boot Flag at 0x44 set to 0x1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878523] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878530] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878538] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878545] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878603] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.878627] Scanning for low memory corruption every 60 seconds
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.879009] futex hash table entries: 2048 (order: 5, 131072 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.879046] Initialise system trusted keyring
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.879071] audit: initializing netlink subsys (disabled)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.879088] audit: type=2000 audit(1430942924.608:1): initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.879388] HugeTLB registered 2 MB page size, pre-allocated 0 pages
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.880701] zpool: loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.880704] zbud: loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.880862] VFS: Disk quotas dquot_6.5.2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.880896] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.881341] fuse init (API version 7.23)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.881424] msgmni has been set to 15562
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.881480] Key type big_key registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.881946] Key type asymmetric registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.881949] Asymmetric key parser 'x509' registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.881983] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882043] io scheduler noop registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882045] io scheduler deadline registered (default)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882089] io scheduler cfq registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882715] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882729] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882793] vesafb: mode is 1024x768x32, linelength=4096, pages=0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882795] vesafb: scrolling: redraw
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882797] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882818] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 3072k, total 3072k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882901] Console: switching to colour frame buffer device 128x48
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882922] fb0: VESA VGA frame buffer device
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882942] intel_idle: MWAIT substates: 0x1120
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882944] intel_idle: v0.4 model 0x25
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.882944] intel_idle: lapic_timer_reliable_states 0xffffffff
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.883506] ACPI: AC Adapter [ACAD] (on-line)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.883673] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/PNP0C0C:00/input/input0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.883807] ACPI: Power Button [PWRB]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.883889] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/PNP0C0E:00/input/input1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.883894] ACPI: Sleep Button [SLPB]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.884048] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/PNP0C0D:00/input/input2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.884094] ACPI: Lid Switch [LID0]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.884185] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.884190] ACPI: Power Button [PWRF]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.887564] ACPI: Invalid active0 threshold
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.888710] thermal LNXTHERM:00: registered as thermal_zone0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.888716] ACPI: Thermal Zone [TZ00] (53 C)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.888775] GHES: HEST is not enabled!
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 0.888958] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.007013] ACPI: Battery Slot [BAT1] (battery present)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.007353] Linux agpgart interface v0.103
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.007481] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.007514] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.008103] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.008277] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.009658] brd: module loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010361] loop: module loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010586] libphy: Fixed MDIO Bus: probed
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010589] tun: Universal TUN/TAP device driver, 1.6
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010590] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010656] PPP generic driver version 2.4.2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010715] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010723] ehci-pci: EHCI PCI platform driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010930] ehci-pci 0000:00:1a.0: EHCI Host Controller
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010936] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.010952] ehci-pci 0000:00:1a.0: debug port 2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.014914] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.014936] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd8405c00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.026876] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.026976] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.026981] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.026985] usb usb1: Product: EHCI Host Controller
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.026988] usb usb1: Manufacturer: Linux 3.16.0-37-generic ehci_hcd
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.026991] usb usb1: SerialNumber: 0000:00:1a.0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.027246] hub 1-0:1.0: USB hub found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.027263] hub 1-0:1.0: 3 ports detected
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.027675] ehci-pci 0000:00:1d.0: EHCI Host Controller
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.027686] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.027705] ehci-pci 0000:00:1d.0: debug port 2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.031694] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.031719] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd8405800
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.042915] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043032] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043036] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043039] usb usb2: Product: EHCI Host Controller
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043042] usb usb2: Manufacturer: Linux 3.16.0-37-generic ehci_hcd
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043044] usb usb2: SerialNumber: 0000:00:1d.0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043411] hub 2-0:1.0: USB hub found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043425] hub 2-0:1.0: 3 ports detected
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043633] ehci-platform: EHCI generic platform driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043652] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043661] ohci-pci: OHCI PCI platform driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043679] ohci-platform: OHCI generic platform driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043693] uhci_hcd: USB Universal Host Controller Interface driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.043792] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS3] at 0x60,0x64 irq 1,12
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.058594] serio: i8042 KBD port at 0x60,0x64 irq 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.058601] serio: i8042 AUX port at 0x60,0x64 irq 12
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.059172] mousedev: PS/2 mouse device common for all mice
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.060247] rtc_cmos 00:01: RTC can wake from S4
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.060542] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.060582] rtc_cmos 00:01: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.060730] device-mapper: uevent: version 1.0.3
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.060904] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.060938] ledtrig-cpu: registered to indicate activity on CPUs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.061143] TCP: cubic registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.061370] NET: Registered protocol family 10
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.061966] NET: Registered protocol family 17
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.061990] Key type dns_resolver registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.062628] Loading compiled-in X.509 certificates
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.064695] Loaded X.509 cert 'Magrathea: Glacier signing key: 5d1f323a4807cb0378ddad50b4b5a652cdde4159'
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.064743] registered taskstats version 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.067839] Key type trusted registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074188] Key type encrypted registered
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074203] AppArmor: AppArmor sha1 policy hashing enabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074212] ima: No TPM chip found, activating TPM-bypass!
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074247] evm: HMAC attrs: 0x1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074866] Magic number: 15:629:143
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074881] block ram8: hash matches
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.074954] acpi device:14: hash matches
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.075054] rtc_cmos 00:01: setting system clock to 2015-05-06 20:08:45 UTC (1430942925)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.075541] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.076365] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.076367] EDD information not available.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.076441] PM: Hibernation image not present or could not be loaded.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.077687] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.077689] Write protecting the kernel read-only data: 12288k
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.079056] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.080178] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.095369] systemd-udevd[122]: starting version 204
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.122113] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.122124] r8169 0000:06:00.0: can't disable ASPM; OS doesn't have ASPM control
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.122509] r8169 0000:06:00.0: irq 40 for MSI/MSI-X
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.122726] r8169 0000:06:00.0 eth0: RTL8102e at 0xffffc90010c88000, 1c:75:08:68:e8:7a, XID 04e00000 IRQ 40
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.124621] ahci 0000:00:1f.2: version 3.0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.124790] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.124822] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.124865] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x13 impl SATA mode
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.124869] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140091] scsi0 : ahci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140226] scsi1 : ahci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140506] scsi2 : ahci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140632] scsi3 : ahci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140879] scsi4 : ahci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140931] ata1: SATA max UDMA/133 abar m2048@0xd8405000 port 0xd8405100 irq 41
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140935] ata2: SATA max UDMA/133 abar m2048@0xd8405000 port 0xd8405180 irq 41
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140936] ata3: DUMMY
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140937] ata4: DUMMY
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.140939] ata5: SATA max UDMA/133 abar m2048@0xd8405000 port 0xd8405300 irq 41
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.338959] usb 1-1: new high-speed USB device number 2 using ehci-pci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.458916] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.470985] ata1.00: ATA-8: Mac Series XT, 332ABBF0, max UDMA/133
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.470990] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.471609] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.471614] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.472036] hub 1-1:1.0: USB hub found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.472224] hub 1-1:1.0: 6 ports detected
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.480966] ata1.00: configured for UDMA/133
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.481257] scsi 0:0:0:0: Direct-Access ATA Mac Series XT BBF0 PQ: 0 ANSI: 5
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.481899] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.481912] sd 0:0:0:0: Attached scsi generic sg0 type 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.482049] sd 0:0:0:0: [sda] Write Protect is off
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.482051] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.482159] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.483076] sda: sda1 sda2 < sda5 >
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.483470] sd 0:0:0:0: [sda] Attached SCSI disk
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.582946] usb 2-1: new high-speed USB device number 2 using ehci-pci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.715382] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.715387] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.716101] hub 2-1:1.0: USB hub found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.716187] hub 2-1:1.0: 8 ports detected
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.802975] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.815004] ata2.00: ATA-8: OCZ-VERTEX3, 2.15, max UDMA/133
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.815011] ata2.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.824980] ata2.00: configured for UDMA/133
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.825327] scsi 1:0:0:0: Direct-Access ATA OCZ-VERTEX3 2.15 PQ: 0 ANSI: 5
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.825958] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/111 GiB)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.825968] sd 1:0:0:0: Attached scsi generic sg1 type 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.826058] sd 1:0:0:0: [sdb] Write Protect is off
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.826061] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.826114] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.826702] sdb: sdb1 sdb2
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.827069] sd 1:0:0:0: [sdb] Attached SCSI disk
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.874888] tsc: Refined TSC clocksource calibration: 2659.999 MHz
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 1.987187] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.080055] usb 2-1.1: New USB device found, idVendor=1a40, idProduct=0201
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.080060] usb 2-1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.080063] usb 2-1.1: Product: USB 2.0 Hub [MTT]
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.080451] hub 2-1.1:1.0: USB hub found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.080618] hub 2-1.1:1.0: 7 ports detected
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.142983] ata5: SATA link down (SStatus 0 SControl 300)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.144819] psmouse serio1: elantech: assuming hardware version 2 (with firmware version 0x140000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.151124] usb 2-1.3: new high-speed USB device number 4 using ehci-pci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.174648] random: lvm urandom read with 47 bits of entropy available
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.202764] psmouse serio1: elantech: Synaptics capabilities query result 0x68, 0x18, 0x0c.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.227169] EXT4-fs (dm-0): INFO: recovery required on readonly filesystem
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.227173] EXT4-fs (dm-0): write access will be enabled during recovery
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.354690] random: nonblocking pool is initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.360008] usb 2-1.3: New USB device found, idVendor=5986, idProduct=0148
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.360012] usb 2-1.3: New USB device strings: Mfr=3, Product=1, SerialNumber=0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.360015] usb 2-1.3: Product: Lenovo EasyCamera
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.360016] usb 2-1.3: Manufacturer: Bison Electronics Inc.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.378888] EXT4-fs (dm-0): orphan cleanup on readonly fs
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.383265] EXT4-fs (dm-0): 18 orphan inodes deleted
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.383267] EXT4-fs (dm-0): recovery complete
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.386436] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.459015] usb 2-1.1.4: new low-speed USB device number 5 using ehci-pci
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.489121] init: plymouth-upstart-bridge main process (218) terminated with status 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.489139] init: plymouth-upstart-bridge main process ended, respawning
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.495206] init: plymouth-upstart-bridge main process (228) terminated with status 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.495218] init: plymouth-upstart-bridge main process ended, respawning
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.499300] init: plymouth-upstart-bridge main process (231) terminated with status 1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.499313] init: plymouth-upstart-bridge main process ended, respawning
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.502971] psmouse serio1: elantech: retrying ps2 command 0xe6 (2).
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.562174] usb 2-1.1.4: New USB device found, idVendor=045e, idProduct=00f9
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.562179] usb 2-1.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.562182] usb 2-1.1.4: Product: Microsoft Wireless Desktop Receiver 3.1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.562184] usb 2-1.1.4: Manufacturer: Microsft
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.628602] Adding 8183804k swap on /dev/mapper/ubuntu--vg-swap_1. Priority:-1 extents:1 across:8183804k SSFS
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.855947] systemd-udevd[348]: starting version 204
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.863205] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.882854] Switched to clocksource tsc
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.901868] lp: driver loaded but no devices found
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.921063] wmi: Mapper loaded
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.922370] ppdev: user-space parallel port driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.971528] input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input7
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.990947] [drm] Initialized drm 1.1.0 20060810
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 2.991967] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.016904] psmouse serio1: elantech: retrying ps2 command 0xf8 (2).
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018156] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018163] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018166] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018170] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018171] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018175] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018176] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018181] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018182] lpc_ich: Resource conflict(s) found affecting gpio_ich
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.018929] mei_me 0000:00:16.0: irq 42 for MSI/MSI-X
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.031958] cfg80211: Calling CRDA to update world regulatory domain
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.049946] audit: type=1400 audit(1430942927.471:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=435 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.049956] audit: type=1400 audit(1430942927.471:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=435 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.049963] audit: type=1400 audit(1430942927.471:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=435 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.050586] audit: type=1400 audit(1430942927.471:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=435 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.050595] audit: type=1400 audit(1430942927.471:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=435 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.050919] audit: type=1400 audit(1430942927.471:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=435 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.052843] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.053067] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled until i915 loads
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.059184] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.103427] media: Linux media interface: v0.10
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.107418] [drm] Memory usable by graphics device = 2048M
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.107427] checking generic (c0000000 300000) vs hw (c0000000 10000000)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.107429] fb: switching to inteldrmfb from VESA VGA
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.107460] Console: switching to colour dummy device 80x25
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.107538] [drm] Replacing VGA console driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.111380] Linux video capture interface: v2.00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.130234] hidraw: raw HID events driver (C) Jiri Kosina
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.135122] i915 0000:00:02.0: irq 43 for MSI/MSI-X
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.135137] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.135139] [drm] Driver supports precise vblank timestamp query.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.135231] [drm] applying lvds SSC disable quirk
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.135258] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.141816] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (5986:0148)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.156649] usbcore: registered new interface driver usbhid
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.156653] usbhid: USB HID core driver
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.159148] ath: phy0: Enable LNA combining
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.162709] ath: phy0: ASPM enabled: 0x43
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.162715] ath: EEPROM regdomain: 0x65
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.162717] ath: EEPROM indicates we should expect a direct regpair map
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.162720] ath: Country alpha2 being used: 00
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.162721] ath: Regpair used: 0x65
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.162754] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.165350] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input8
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.165440] usbcore: registered new interface driver uvcvideo
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.165442] USB Video Class driver (1.1.1)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.177004] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.180954] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.184563] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.185052] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc90010e80000, irq=17
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.223097] fbcon: inteldrmfb (fb0) is primary device
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.223147] Console: switching to colour frame buffer device 170x48
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.223202] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.223204] i915 0000:00:02.0: registered panic notifier
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.288243] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.296571] acpi device:01: registered as cooling_device5
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.298994] acpi device:02: registered as cooling_device6
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.299136] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.299839] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.330100] input: Microsft Microsoft Wireless Desktop Receiver 3.1 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1.4/2-1.1.4:1.0/0003:045E:00F9.0001/input/input10
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.330820] microsoft 0003:045E:00F9.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsft Microsoft Wireless Desktop Receiver 3.1] on usb-0000:00:1d.0-1.1.4/input0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.330842] microsoft 0003:045E:00F9.0002: fixing up Microsoft Wireless Receiver Model 1028 report descriptor
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.337153] input: Microsft Microsoft Wireless Desktop Receiver 3.1 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1.4/2-1.1.4:1.1/0003:045E:00F9.0002/input/input11
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.338358] microsoft 0003:045E:00F9.0002: input,hidraw1: USB HID v1.11 Mouse [Microsft Microsoft Wireless Desktop Receiver 3.1] on usb-0000:00:1d.0-1.1.4/input1
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353387] cfg80211: World regulatory domain updated:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353392] cfg80211: DFS Master region: unset
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353394] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353397] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353399] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353401] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353403] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.353405] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.401119] Bluetooth: Core ver 2.19
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.401147] NET: Registered protocol family 31
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.401149] Bluetooth: HCI device and connection manager initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.401160] Bluetooth: HCI socket layer initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.401163] Bluetooth: L2CAP socket layer initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.401175] Bluetooth: SCO socket layer initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.402550] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.418055] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.418060] Bluetooth: BNEP filters: protocol multicast
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.418071] Bluetooth: BNEP socket layer initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.420583] Bluetooth: RFCOMM TTY layer initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.420597] Bluetooth: RFCOMM socket layer initialized
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.420605] Bluetooth: RFCOMM ver 1.11
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422232] sound hdaudioC0D1: CX20585: BIOS auto-probing.
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422668] sound hdaudioC0D1: autoconfig: line_outs=1 (0x1f/0x0/0x0/0x0/0x0) type:speaker
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422672] sound hdaudioC0D1: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422675] sound hdaudioC0D1: hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422677] sound hdaudioC0D1: mono: mono_out=0x0
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422678] sound hdaudioC0D1: inputs:
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422682] sound hdaudioC0D1: Mic=0x1b
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.422684] sound hdaudioC0D1: Internal Mic=0x1a
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.423608] sound hdaudioC0D1: Enable sync_write for stable communication
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.433806] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.434502] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.434601] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.476183] audit: type=1400 audit(1430942927.899:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=692 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.476194] audit: type=1400 audit(1430942927.899:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=692 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 kernel: [ 3.477152] audit: type=1400 audit(1430942927.899:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=692 comm="apparmor_parser"
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Found user 'avahi' (UID 111) and group 'avahi' (GID 117).
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Successfully dropped root privileges.
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: avahi-daemon 0.6.31 starting up.
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Successfully called chroot().
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Successfully dropped remaining capabilities.
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: No service file found in /etc/avahi/services.
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Network interface enumeration completed.
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Registering HINFO record with values 'X86_64'/'LINUX'.
May 6 16:08:47 joey-Ideapad-Z560 avahi-daemon[696]: Server startup complete. Host name is joey-Ideapad-Z560.local. Local service cookie is 1404972330.
May 6 16:08:48 joey-Ideapad-Z560 kernel: [ 3.658948] init: failsafe main process (656) killed by TERM signal
May 6 16:08:48 joey-Ideapad-Z560 ModemManager[813]: <info> ModemManager (version 1.0.0) starting...
May 6 16:08:48 joey-Ideapad-Z560 ntpdate[833]: Can't find host ntp.ubuntu.com: Name or service not known (-2)
May 6 16:08:48 joey-Ideapad-Z560 ntpdate[833]: no servers can be used, exiting
May 6 16:08:48 joey-Ideapad-Z560 kernel: [ 3.719089] psmouse serio1: elantech: retrying ps2 command 0xf8 (1).
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> NetworkManager (version 0.9.8.8) is starting...
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> WEXT support is enabled
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> DNS: loaded plugin dnsmasq
May 6 16:08:48 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
May 6 16:08:48 joey-Ideapad-Z560 polkitd[857]: started daemon version 0.105 using authority implementation `local' version `0.105'
May 6 16:08:48 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: init!
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: update_system_hostname
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: interface-parser: parsing file /etc/network/interfaces
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: interface-parser: finished parsing file /etc/network/interfaces
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPluginIfupdown: management mode: unmanaged
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:05:00.0/net/wlan0, iface: wlan0)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:05:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/eth0, iface: eth0)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: end _init.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd. To report bugs please use the NetworkManager mailing list.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ofono: init!
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ofono: end _init.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> Loaded plugin (null): (null)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: Ifupdown: get unmanaged devices count: 0
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: (22717200) ... get_connections.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ifupdown: (22717200) ... get_connections (managed=false): return empty list.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: keyfile: parsing AT&T PRIVATE HOME NETWORK ...
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: keyfile: read connection 'AT&T PRIVATE HOME NETWORK'
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ofono: (-1207942880) ... get_connections.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: SCPlugin-Ofono: (-1207942880) connections count: 0
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: Ifupdown: get unmanaged devices count: 0
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> monitoring kernel firmware directory '/lib/firmware'.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:05:00.0/ieee80211/phy0/rfkill1) (driver ath9k)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> rfkill0: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill0) (platform driver ideapad_acpi)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> WiFi disabled by radio killswitch; enabled by state file
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> WWAN enabled by radio killswitch; enabled by state file
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> WiMAX enabled by radio killswitch; enabled by state file
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> Networking is enabled by state file
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): using nl80211 for WiFi device control
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): driver supports Access Point (AP) mode
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): new 802.11 WiFi device (driver: 'ath9k' ifindex: 3)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/0
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): bringing up device.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): deactivating device (reason 'managed') [2]
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <warn> failed to allocate link cache: (-12) Object not found
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): carrier is OFF
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/1
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): bringing up device.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): preparing device.
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> (eth0): deactivating device (reason 'managed') [2]
May 6 16:08:48 joey-Ideapad-Z560 kernel: [ 3.828326] r8169 0000:06:00.0 eth0: link down
May 6 16:08:48 joey-Ideapad-Z560 kernel: [ 3.828385] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0/net/eth0
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> urfkill disappeared from the bus
May 6 16:08:48 joey-Ideapad-Z560 NetworkManager[847]: <info> ModemManager available in the bus
May 6 16:08:48 joey-Ideapad-Z560 kernel: [ 4.340537] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input6
May 6 16:08:49 joey-Ideapad-Z560 cron[984]: (CRON) INFO (pidfile fd = 3)
May 6 16:08:49 joey-Ideapad-Z560 cron[1030]: (CRON) STARTUP (fork ok)
May 6 16:08:49 joey-Ideapad-Z560 cron[1030]: (CRON) INFO (Running @reboot jobs)
May 6 16:08:49 joey-Ideapad-Z560 whoopsie[1031]: whoopsie 0.2.24.6 starting up.
May 6 16:08:49 joey-Ideapad-Z560 whoopsie[1031]: Using lock path: /var/lock/whoopsie/lock
May 6 16:08:49 joey-Ideapad-Z560 anacron[1048]: Anacron 2.3 started on 2015-05-06
May 6 16:08:49 joey-Ideapad-Z560 anacron[1048]: Normal exit (0 jobs run)
May 6 16:08:49 joey-Ideapad-Z560 whoopsie[1057]: offline
May 6 16:08:49 joey-Ideapad-Z560 acpid: starting up with netlink and the input layer
May 6 16:08:49 joey-Ideapad-Z560 acpid: 9 rules loaded
May 6 16:08:49 joey-Ideapad-Z560 acpid: waiting for events: event logging is off
May 6 16:08:49 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.Accounts' (using servicehelper)
May 6 16:08:49 joey-Ideapad-Z560 accounts-daemon[1160]: started daemon version 0.6.35
May 6 16:08:49 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.Accounts'
May 6 16:08:49 joey-Ideapad-Z560 acpid: client connected from 1157[0:0]
May 6 16:08:49 joey-Ideapad-Z560 acpid: 1 client rule loaded
May 6 16:08:49 joey-Ideapad-Z560 kernel: [ 5.160414] init: plymouth-upstart-bridge main process ended, respawning
May 6 16:08:49 joey-Ideapad-Z560 kernel: [ 5.166572] init: plymouth-upstart-bridge main process (1175) terminated with status 1
May 6 16:08:49 joey-Ideapad-Z560 kernel: [ 5.166588] init: plymouth-upstart-bridge main process ended, respawning
May 6 16:08:49 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.UPower' (using servicehelper)
May 6 16:08:49 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.UPower'
May 6 16:08:49 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.RealtimeKit1' (using servicehelper)
May 6 16:08:49 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully called chroot.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully dropped privileges.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully limited resources.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Running.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Watchdog thread running.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Canary thread running.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1298 of process 1298 (n/a) owned by '112' high priority at nice level -11.
May 6 16:08:49 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 1 threads of 1 processes of 1 users.
May 6 16:08:50 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1358 of process 1298 (n/a) owned by '112' RT at priority 5.
May 6 16:08:50 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 2 threads of 1 processes of 1 users.
May 6 16:08:50 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1372 of process 1298 (n/a) owned by '112' RT at priority 5.
May 6 16:08:50 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 3 threads of 1 processes of 1 users.
May 6 16:08:50 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1384 of process 1384 (n/a) owned by '112' high priority at nice level -11.
May 6 16:08:50 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 4 threads of 2 processes of 1 users.
May 6 16:08:50 joey-Ideapad-Z560 pulseaudio[1384]: [pulseaudio] pid.c: Daemon already running.
May 6 16:08:50 joey-Ideapad-Z560 anacron[1426]: Anacron 2.3 started on 2015-05-06
May 6 16:08:50 joey-Ideapad-Z560 anacron[1426]: Normal exit (0 jobs run)
May 6 16:08:50 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.systemd1' (using servicehelper)
May 6 16:08:50 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.systemd1'
May 6 16:08:50 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.ColorManager' (using servicehelper)
May 6 16:08:50 joey-Ideapad-Z560 colord: Using config file /etc/colord.conf
May 6 16:08:50 joey-Ideapad-Z560 colord: Using mapping database file /var/lib/colord/mapping.db
May 6 16:08:50 joey-Ideapad-Z560 colord: Using device database file /var/lib/colord/storage.db
May 6 16:08:50 joey-Ideapad-Z560 colord: plugin /usr/lib/x86_64-linux-gnu/colord-plugins/libcd_plugin_sane.so not loaded: plugin refused to load
May 6 16:08:50 joey-Ideapad-Z560 colord: loaded plugin libcd_plugin_camera.so
May 6 16:08:50 joey-Ideapad-Z560 colord: loaded plugin libcd_plugin_scanner.so
May 6 16:08:50 joey-Ideapad-Z560 colord: Daemon ready for requests
May 6 16:08:50 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.ColorManager'
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-0383c34650771ce95ef93fe916867725
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-72f5b1cba915b68ea75cc843e270df5a
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-2f1f11ecd613fe5551420fcaf5b11ff8
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-b0701c2ccf059287d0b067464df8bda9
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-3a34aa6c3d1fb1ef63ff41e04ee00979
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-654b99c87e67edb1c1cfb0dcb7fa9d04
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-d6490883a866e4059370e1de1d840283
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-523e494bc2f53c53d51d0758b07f4879
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-57f0d896250f6f98f77ca1b0d19019c0
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-fb0ac62618f016ed9b92ce239258efa8
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-526fbc9bdf0d7156c553998d47a3b5fc
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-ea421e3a65cfa796e2732ce36086e327
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-df7c0067b1eb9bcc9fc9b33bc3a797eb
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-f64a1f19ce07290b35a752b00217b684
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-0720e7cdbc792b77c0740c39f325ef9e
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-6a245ab2d8892e2e56232af93cd48b81
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-a10be98be58460669fcdc6946939b7cf
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-353a6bcabda00f04b6988f89126ce6f5
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-c227f46f246694ba9971f270cb61a0c1
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-3bd2261b1125a0fd9ebf827a2d1bed84
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-c3e6382fa9b2d31b01b736f6f97aac3a
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-d4a7a2bd8ddaacf10e275e3db31d72b8
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-a1d13bd5309e0f06ceda6f0d75367823
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-6ad6d63767ce0393245528ada92f1cb2
May 6 16:08:50 joey-Ideapad-Z560 colord: Device added: xrandr-AU Optronics
May 6 16:08:50 joey-Ideapad-Z560 colord: Device added: xrandr-Acer Technologies-G215H-LJ90D0028513
May 6 16:08:50 joey-Ideapad-Z560 colord: Automatic metadata add icc-bc95f54c5c1a9579239f3411e079bd87 to xrandr-Acer Technologies-G215H-LJ90D0028513
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-bc95f54c5c1a9579239f3411e079bd87
May 6 16:08:50 joey-Ideapad-Z560 colord: Automatic metadata add icc-2b6795c24372710c8b3a980d6a07a4d3 to xrandr-AU Optronics
May 6 16:08:50 joey-Ideapad-Z560 colord: Profile added: icc-2b6795c24372710c8b3a980d6a07a4d3
May 6 16:08:50 joey-Ideapad-Z560 ModemManager[813]: <warn> Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.1/0000:05:00.0': not supported by any plugin
May 6 16:08:50 joey-Ideapad-Z560 ModemManager[813]: <warn> Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.2/0000:06:00.0': not supported by any plugin
May 6 16:08:52 joey-Ideapad-Z560 kernel: [ 8.259712] intel ips 0000:00:1f.6: i915 driver attached, reenabling gpu turbo
May 6 16:08:58 joey-Ideapad-Z560 NetworkManager[847]: <info> WiFi hardware radio set enabled
May 6 16:09:05 joey-Ideapad-Z560 NetworkManager[847]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: (3) GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not get UID of name ':1.34': no such name
May 6 16:09:05 joey-Ideapad-Z560 colord: device removed: xrandr-AU Optronics
May 6 16:09:05 joey-Ideapad-Z560 colord: device removed: xrandr-Acer Technologies-G215H-LJ90D0028513
May 6 16:09:05 joey-Ideapad-Z560 colord: Profile removed: icc-bc95f54c5c1a9579239f3411e079bd87
May 6 16:09:05 joey-Ideapad-Z560 colord: Profile removed: icc-2b6795c24372710c8b3a980d6a07a4d3
May 6 16:09:05 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.systemd1' (using servicehelper)
May 6 16:09:05 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.systemd1'
May 6 16:09:05 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1864 of process 1864 (n/a) owned by '1000' high priority at nice level -11.
May 6 16:09:05 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 4 threads of 2 processes of 2 users.
May 6 16:09:06 joey-Ideapad-Z560 colord: Device added: xrandr-AU Optronics
May 6 16:09:06 joey-Ideapad-Z560 colord: Device added: xrandr-Acer Technologies-G215H-LJ90D0028513
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1899 of process 1864 (n/a) owned by '1000' RT at priority 5.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 5 threads of 2 processes of 2 users.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1902 of process 1864 (n/a) owned by '1000' RT at priority 5.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 6 threads of 2 processes of 2 users.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1909 of process 1909 (n/a) owned by '1000' high priority at nice level -11.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 7 threads of 3 processes of 2 users.
May 6 16:09:06 joey-Ideapad-Z560 pulseaudio[1909]: [pulseaudio] pid.c: Daemon already running.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Successfully made thread 1911 of process 1911 (n/a) owned by '1000' high priority at nice level -11.
May 6 16:09:06 joey-Ideapad-Z560 rtkit-daemon[1301]: Supervising 7 threads of 3 processes of 2 users.
May 6 16:09:06 joey-Ideapad-Z560 pulseaudio[1911]: [pulseaudio] pid.c: Daemon already running.
May 6 16:09:06 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.locale1' (using servicehelper)
May 6 16:09:06 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.locale1'
May 6 16:09:06 joey-Ideapad-Z560 colord: Automatic metadata add icc-a1b63942768ef2357efccc1bab8e937a to xrandr-Acer Technologies-G215H-LJ90D0028513
May 6 16:09:06 joey-Ideapad-Z560 colord: Profile added: icc-a1b63942768ef2357efccc1bab8e937a
May 6 16:09:06 joey-Ideapad-Z560 colord: Automatic metadata add icc-bb8ddd903b088427e6e63c1b4150063f to xrandr-AU Optronics
May 6 16:09:06 joey-Ideapad-Z560 colord: Profile added: icc-bb8ddd903b088427e6e63c1b4150063f
May 6 16:09:06 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.UDisks2' (using servicehelper)
May 6 16:09:06 joey-Ideapad-Z560 udisksd[2001]: udisks daemon version 2.1.3 starting
May 6 16:09:06 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.UDisks2'
May 6 16:09:06 joey-Ideapad-Z560 udisksd[2001]: Acquired the name org.freedesktop.UDisks2 on the system message bus
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> WiFi now enabled by radio killswitch
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): bringing up device.
May 6 16:09:17 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='fi.w1.wpa_supplicant1' (using servicehelper)
May 6 16:09:17 joey-Ideapad-Z560 kernel: [ 33.090755] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
May 6 16:09:17 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> wpa_supplicant started
May 6 16:09:17 joey-Ideapad-Z560 wpa_supplicant[2123]: Successfully initialized wpa_supplicant
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0) supports 4 scan SSIDs
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <warn> Trying to remove a non-existant call id.
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: starting -> ready
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
May 6 16:09:17 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: CTRL-EVENT-SCAN-STARTED
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: ready -> disconnected
May 6 16:09:17 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0) supports 4 scan SSIDs
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: disconnected -> inactive
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Auto-activating connection 'AT&T PRIVATE HOME NETWORK'.
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) starting connection 'AT&T PRIVATE HOME NETWORK'
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> NetworkManager state is now CONNECTING
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): preparing device.
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0/wireless): connection 'AT&T PRIVATE HOME NETWORK' has security, and secrets exist. No new secrets needed.
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Config: added 'ssid' value 'AT&T PRIVATE HOME NETWORK'
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Config: added 'scan_ssid' value '1'
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Config: added 'auth_alg' value 'OPEN'
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Config: added 'psk' value '<omitted>'
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
May 6 16:09:18 joey-Ideapad-Z560 NetworkManager[847]: <info> Config: set interface ap_scan to 1
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.811381] wlan0: authenticate with c0:3f:0e:ad:ce:8a
May 6 16:09:18 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: CTRL-EVENT-SCAN-STARTED
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: SME: Trying to authenticate with c0:3f:0e:ad:ce:8a (SSID='AT&T PRIVATE HOME NETWORK' freq=2437 MHz)
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: inactive -> authenticating
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.824287] wlan0: send auth to c0:3f:0e:ad:ce:8a (try 1/3)
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: Trying to associate with c0:3f:0e:ad:ce:8a (SSID='AT&T PRIVATE HOME NETWORK' freq=2437 MHz)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.832247] wlan0: authenticated
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.834108] wlan0: associate with c0:3f:0e:ad:ce:8a (try 1/3)
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: authenticating -> associating
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: Associated with c0:3f:0e:ad:ce:8a
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.849509] wlan0: RX AssocResp from c0:3f:0e:ad:ce:8a (capab=0x411 status=0 aid=2)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.849577] wlan0: associated
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.849590] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: associating -> associated
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: WPA: Key negotiation completed with c0:3f:0e:ad:ce:8a [PTK=CCMP GTK=TKIP]
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: CTRL-EVENT-CONNECTED - Connection to c0:3f:0e:ad:ce:8a completed [id=0 id_str=]
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: SME: Trying to authenticate with c0:3f:0e:ad:ce:8a (SSID='AT&T PRIVATE HOME NETWORK' freq=2437 MHz)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.887608] wlan0: deauthenticating from c0:3f:0e:ad:ce:8a by local choice (Reason: 2=PREV_AUTH_NOT_VALID)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.895505] cfg80211: Calling CRDA to update world regulatory domain
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.895565] wlan0: authenticate with c0:3f:0e:ad:ce:8a
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: CTRL-EVENT-DISCONNECTED bssid=c0:3f:0e:ad:ce:8a reason=2 locally_generated=1
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: 4-way handshake -> authenticating
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <warn> Connection disconnected (reason -2)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902645] wlan0: send auth to c0:3f:0e:ad:ce:8a (try 1/3)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902856] cfg80211: World regulatory domain updated:
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902859] cfg80211: DFS Master region: unset
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902861] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902864] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902866] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902869] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902871] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.902873] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: Trying to associate with c0:3f:0e:ad:ce:8a (SSID='AT&T PRIVATE HOME NETWORK' freq=2437 MHz)
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: authenticating -> associating
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.907515] wlan0: authenticated
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.910122] wlan0: associate with c0:3f:0e:ad:ce:8a (try 1/3)
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: Associated with c0:3f:0e:ad:ce:8a
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.928884] wlan0: RX AssocResp from c0:3f:0e:ad:ce:8a (capab=0x411 status=0 aid=2)
May 6 16:09:19 joey-Ideapad-Z560 kernel: [ 34.928958] wlan0: associated
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: associating -> associated
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: WPA: Key negotiation completed with c0:3f:0e:ad:ce:8a [PTK=CCMP GTK=TKIP]
May 6 16:09:19 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: CTRL-EVENT-CONNECTED - Connection to c0:3f:0e:ad:ce:8a completed [id=0 id_str=]
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful. Connected to wireless network 'AT&T PRIVATE HOME NETWORK'.
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> dhclient started with pid 2147
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Beginning IP6 addrconf.
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
May 6 16:09:19 joey-Ideapad-Z560 dhclient: Internet Systems Consortium DHCP Client 4.2.4
May 6 16:09:19 joey-Ideapad-Z560 dhclient: Copyright 2004-2012 Internet Systems Consortium.
May 6 16:09:19 joey-Ideapad-Z560 dhclient: All rights reserved.
May 6 16:09:19 joey-Ideapad-Z560 dhclient: For info, please visit https://www.isc.org/software/dhcp/
May 6 16:09:19 joey-Ideapad-Z560 dhclient:
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
May 6 16:09:19 joey-Ideapad-Z560 dhclient: Listening on LPF/wlan0/1c:65:9d:ff:fa:78
May 6 16:09:19 joey-Ideapad-Z560 dhclient: Sending on LPF/wlan0/1c:65:9d:ff:fa:78
May 6 16:09:19 joey-Ideapad-Z560 dhclient: Sending on Socket/fallback
May 6 16:09:19 joey-Ideapad-Z560 dhclient: DHCPREQUEST of 10.0.0.3 on wlan0 to 255.255.255.255 port 67 (xid=0x67fb73ad)
May 6 16:09:19 joey-Ideapad-Z560 dhclient: DHCPACK of 10.0.0.3 from 10.0.0.1
May 6 16:09:19 joey-Ideapad-Z560 dhclient: bound to 10.0.0.3 -- renewal in 34997 seconds.
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> address 10.0.0.3
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> prefix 24 (255.255.255.0)
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> gateway 10.0.0.1
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> nameserver '10.0.0.1'
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
May 6 16:09:19 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
May 6 16:09:19 joey-Ideapad-Z560 avahi-daemon[696]: Joining mDNS multicast group on interface wlan0.IPv4 with address 10.0.0.3.
May 6 16:09:19 joey-Ideapad-Z560 avahi-daemon[696]: New relevant interface wlan0.IPv4 for mDNS.
May 6 16:09:19 joey-Ideapad-Z560 avahi-daemon[696]: Registering new address record for 10.0.0.3 on wlan0.IPv4.
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> NetworkManager state is now CONNECTED_GLOBAL
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> Policy set 'AT&T PRIVATE HOME NETWORK' (wlan0) as default for IPv4 routing and DNS.
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> DNS: starting dnsmasq...
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <warn> dnsmasq not available on the bus, can't update servers.
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <error> [1430942960.916754] [nm-dns-dnsmasq.c:396] update(): dnsmasq owner not found on bus: Could not get owner of name 'org.freedesktop.NetworkManager.dnsmasq': no such name
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <warn> DNS: plugin dnsmasq update failed
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> Writing DNS information to /sbin/resolvconf
May 6 16:09:20 joey-Ideapad-Z560 dnsmasq[2150]: started, version 2.68 cache disabled
May 6 16:09:20 joey-Ideapad-Z560 dnsmasq[2150]: compile time options: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth
May 6 16:09:20 joey-Ideapad-Z560 dnsmasq[2150]: DBus support enabled: connected to system bus
May 6 16:09:20 joey-Ideapad-Z560 dnsmasq[2150]: warning: no upstream servers configured
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) successful, device activated.
May 6 16:09:20 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <warn> dnsmasq appeared on DBus: :1.84
May 6 16:09:20 joey-Ideapad-Z560 NetworkManager[847]: <info> Writing DNS information to /sbin/resolvconf
May 6 16:09:20 joey-Ideapad-Z560 dnsmasq[2150]: setting upstream servers from DBus
May 6 16:09:20 joey-Ideapad-Z560 dnsmasq[2150]: using nameserver 10.0.0.1#53
May 6 16:09:21 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
May 6 16:09:21 joey-Ideapad-Z560 avahi-daemon[696]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::1e65:9dff:feff:fa78.
May 6 16:09:21 joey-Ideapad-Z560 avahi-daemon[696]: New relevant interface wlan0.IPv6 for mDNS.
May 6 16:09:21 joey-Ideapad-Z560 avahi-daemon[696]: Registering new address record for fe80::1e65:9dff:feff:fa78 on wlan0.*.
May 6 16:09:21 joey-Ideapad-Z560 whoopsie[1057]: message repeated 2 times: [ offline]
May 6 16:09:36 joey-Ideapad-Z560 whoopsie[1057]: online
May 6 16:09:39 joey-Ideapad-Z560 NetworkManager[847]: <info> (wlan0): IP6 addrconf timed out or failed.
May 6 16:09:39 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
May 6 16:09:39 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
May 6 16:09:39 joey-Ideapad-Z560 NetworkManager[847]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
May 6 16:09:40 joey-Ideapad-Z560 wpa_supplicant[2124]: wlan0: CTRL-EVENT-SCAN-STARTED
May 6 20:09:43 joey-Ideapad-Z560 ntpdate[2254]: step time server 91.189.94.4 offset 14400.618526 sec
May 6 20:11:30 joey-Ideapad-Z560 NetworkManager[847]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 6 20:17:01 joey-Ideapad-Z560 CRON[2739]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
May 6 20:17:41 joey-Ideapad-Z560 kernel: [ 536.895143] perf interrupt took too long (2508 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
May 6 20:19:00 joey-Ideapad-Z560 dbus[569]: [system] Activating service name='org.freedesktop.hostname1' (using servicehelper)
May 6 20:19:00 joey-Ideapad-Z560 dbus[569]: [system] Successfully activated service 'org.freedesktop.hostname1'
May 6 20:19:00 joey-Ideapad-Z560 kernel: [ 615.022756] systemd-hostnamed[2749]: Warning: nss-myhostname is not installed. Changing the local hostname might make it unresolveable. Please install nss-myhostname!
May 6 20:19:22 joey-Ideapad-Z560 ntfs-3g[2768]: Version 2013.1.13AR.1 external FUSE 29
May 6 20:19:22 joey-Ideapad-Z560 ntfs-3g[2768]: Mounted /dev/sdb2 (Read-Write, label "", NTFS 3.1)
May 6 20:19:22 joey-Ideapad-Z560 ntfs-3g[2768]: Cmdline options: rw,nosuid,nodev,uhelper=udisks2,uid=1000,gid=1000,dmask=0077,fmask=0177
May 6 20:19:22 joey-Ideapad-Z560 ntfs-3g[2768]: Mount options: rw,nosuid,nodev,uhelper=udisks2,allow_other,nonempty,relatime,default_permissions,fsname=/dev/sdb2,blkdev,blksize=4096
May 6 20:19:22 joey-Ideapad-Z560 ntfs-3g[2768]: Global ownership and permissions enforced, configuration type 7
May 6 20:19:22 joey-Ideapad-Z560 udisksd[2001]: Mounted /dev/sdb2 at /media/joey/2E94EB3994EB0267 on behalf of uid 1000
May 6 20:46:06 joey-Ideapad-Z560 kernel: [ 2241.470121] audit_printk_skb: 153 callbacks suppressed
May 6 20:46:06 joey-Ideapad-Z560 kernel: [ 2241.470126] audit: type=1400 audit(1430959566.290:62): apparmor="DENIED" operation="open" profile="/usr/bin/evince" name="/var/log/syslog" pid=3338 comm="EvJobScheduler" requested_mask="r" denied_mask="r" fsuid=1000 ouid=101
May 6 20:46:06 joey-Ideapad-Z560 kernel: [ 2241.470371] audit: type=1400 audit(1430959566.290:63): apparmor="DENIED" operation="open" profile="/usr/bin/evince" name="/var/log/syslog" pid=3338 comm="EvJobScheduler" requested_mask="r" denied_mask="r" fsuid=1000 ouid=101
May 6 20:46:10 joey-Ideapad-Z560 kernel: [ 2245.760439] audit: type=1400 audit(1430959570.578:64): apparmor="DENIED" operation="open" profile="/usr/bin/evince" name="/var/log/syslog" pid=3351 comm="EvJobScheduler" requested_mask="r" denied_mask="r" fsuid=1000 ouid=101
May 6 20:46:10 joey-Ideapad-Z560 kernel: [ 2245.760593] audit: type=1400 audit(1430959570.578:65): apparmor="DENIED" operation="open" profile="/usr/bin/evince" name="/var/log/syslog" pid=3351 comm="EvJobScheduler" requested_mask="r" denied_mask="r" fsuid=1000 ouid=101
|