-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmessages
executable file
·5968 lines (5968 loc) · 565 KB
/
messages
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
May 17 12:08:03 ws1 rsyslogd: [origin software="rsyslogd" swVersion="7.2.4" x-pid="772" x-info="http://www.rsyslog.com"] rsyslogd was HUPed
May 17 12:09:32 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:17:32 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:17:32 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:18:49 ws1 systemd-logind[787]: Lid closed.
May 17 12:18:49 ws1 systemd-logind[787]: Suspending...
May 17 12:18:49 ws1 systemd[1]: Starting Sleep.
May 17 12:18:49 ws1 systemd[1]: Reached target Sleep.
May 17 12:18:49 ws1 systemd[1]: Starting Suspend...
May 17 12:18:49 ws1 systemd-sleep[5162]: /usr/lib/systemd/system-sleep/notify-upower.sh exited with exit status 1.
May 17 12:18:49 ws1 systemd-sleep[5162]: Suspending system...
May 17 12:18:49 ws1 kernel: [ 3857.198322] PM: Syncing filesystems ... done.
May 17 12:28:10 ws1 kernel: [ 3857.581951] Freezing user space processes ... (elapsed 0.01 seconds) done.
May 17 12:28:10 ws1 kernel: [ 3857.596125] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
May 17 12:28:10 ws1 kernel: [ 3857.608339] Suspending console(s) (use no_console_suspend to debug)
May 17 12:28:10 ws1 kernel: [ 3857.785644] sd 0:0:0:0: [sda] Synchronizing SCSI cache
May 17 12:28:10 ws1 kernel: [ 3857.786440] sd 0:0:0:0: [sda] Stopping disk
May 17 12:28:10 ws1 kernel: [ 3858.050735] i915 0000:00:02.0: power state changed by ACPI to D3hot
May 17 12:28:10 ws1 kernel: [ 3858.240482] e1000e 0000:00:19.0: wake-up capability enabled by ACPI
May 17 12:28:10 ws1 kernel: [ 3858.251125] PM: suspend of devices complete after 641.198 msecs
May 17 12:28:10 ws1 kernel: [ 3858.253366] PM: late suspend of devices complete after 2.237 msecs
May 17 12:28:10 ws1 kernel: [ 3858.266515] ehci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
May 17 12:28:10 ws1 kernel: [ 3858.277657] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D3hot
May 17 12:28:10 ws1 kernel: [ 3858.278261] ehci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
May 17 12:28:10 ws1 kernel: [ 3858.288636] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D3hot
May 17 12:28:10 ws1 kernel: [ 3858.300002] PM: noirq suspend of devices complete after 46.701 msecs
May 17 12:28:10 ws1 kernel: [ 3858.300725] ACPI: Preparing to enter system sleep state S3
May 17 12:28:10 ws1 kernel: [ 3858.380591] PM: Saving platform NVS memory
May 17 12:28:10 ws1 kernel: [ 3858.466450] Disabling non-boot CPUs ...
May 17 12:28:10 ws1 kernel: [ 3858.476517] smpboot: CPU 1 is now offline
May 17 12:28:10 ws1 kernel: [ 3858.477671] CPU 1 offline: Remove Rx thread
May 17 12:28:10 ws1 kernel: [ 3858.481410] smpboot: CPU 2 is now offline
May 17 12:28:10 ws1 kernel: [ 3858.484114] CPU 2 offline: Remove Rx thread
May 17 12:28:10 ws1 kernel: [ 3858.497898] Broke affinity for irq 17
May 17 12:28:10 ws1 kernel: [ 3858.497920] Broke affinity for irq 23
May 17 12:28:10 ws1 kernel: [ 3858.497924] Broke affinity for irq 40
May 17 12:28:10 ws1 kernel: [ 3858.498990] smpboot: CPU 3 is now offline
May 17 12:28:10 ws1 kernel: [ 3858.498991] SMP alternatives: lockdep: fixing up alternatives
May 17 12:28:10 ws1 kernel: [ 3858.500216] CPU 3 offline: Remove Rx thread
May 17 12:28:10 ws1 kernel: [ 3858.500559] Extended CMOS year: 2000
May 17 12:28:10 ws1 kernel: [ 3858.501558] ACPI: Low-level resume complete
May 17 12:28:10 ws1 kernel: [ 3858.501750] PM: Restoring platform NVS memory
May 17 12:28:10 ws1 kernel: [ 3858.502627] Extended CMOS year: 2000
May 17 12:28:10 ws1 kernel: [ 3858.503318] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
May 17 12:28:10 ws1 kernel: [ 3858.503370] Enabling non-boot CPUs ...
May 17 12:28:10 ws1 kernel: [ 3858.503751] SMP alternatives: lockdep: fixing up alternatives
May 17 12:28:10 ws1 kernel: [ 3858.503753] smpboot: Booting Node 0 Processor 1 APIC 0x1
May 17 12:28:10 ws1 kernel: [ 3858.514780] Disabled fast string operations
May 17 12:28:10 ws1 kernel: [ 3858.561895] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
May 17 12:28:10 ws1 kernel: [ 3858.562054] bnx2i: CPU 1 online: Create Rx thread
May 17 12:28:10 ws1 kernel: [ 3858.562360] CPU1 is up
May 17 12:28:10 ws1 kernel: [ 3858.562971] SMP alternatives: lockdep: fixing up alternatives
May 17 12:28:10 ws1 kernel: [ 3858.562975] smpboot: Booting Node 0 Processor 2 APIC 0x2
May 17 12:28:10 ws1 kernel: [ 3858.573995] Disabled fast string operations
May 17 12:28:10 ws1 kernel: [ 3858.620790] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
May 17 12:28:10 ws1 kernel: [ 3858.620950] bnx2i: CPU 2 online: Create Rx thread
May 17 12:28:10 ws1 kernel: [ 3858.621234] CPU2 is up
May 17 12:28:10 ws1 kernel: [ 3858.622172] SMP alternatives: lockdep: fixing up alternatives
May 17 12:28:10 ws1 kernel: [ 3858.622179] smpboot: Booting Node 0 Processor 3 APIC 0x3
May 17 12:28:10 ws1 kernel: [ 3858.633589] Disabled fast string operations
May 17 12:28:10 ws1 kernel: [ 3858.697647] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
May 17 12:28:10 ws1 kernel: [ 3858.698114] bnx2i: CPU 3 online: Create Rx thread
May 17 12:28:10 ws1 kernel: [ 3858.698425] CPU3 is up
May 17 12:28:10 ws1 kernel: [ 3858.704757] ACPI: Waking up from system sleep state S3
May 17 12:28:10 ws1 kernel: [ 3858.878036] i915 0000:00:02.0: power state changed by ACPI to D0
May 17 12:28:10 ws1 kernel: [ 3858.910903] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
May 17 12:28:10 ws1 kernel: [ 3858.922188] ehci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
May 17 12:28:10 ws1 kernel: [ 3858.933805] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
May 17 12:28:10 ws1 kernel: [ 3858.945144] ehci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
May 17 12:28:10 ws1 kernel: [ 3858.977854] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
May 17 12:28:10 ws1 kernel: [ 3858.989890] PM: noirq resume of devices complete after 113.516 msecs
May 17 12:28:10 ws1 kernel: [ 3858.991474] PM: early resume of devices complete after 1.333 msecs
May 17 12:28:10 ws1 kernel: [ 3858.994897] e1000e 0000:00:19.0: wake-up capability disabled by ACPI
May 17 12:28:10 ws1 kernel: [ 3858.997167] rtlwifi: wireless switch is on
May 17 12:28:10 ws1 kernel: [ 3859.073824] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
May 17 12:28:10 ws1 kernel: [ 3859.095496] tpm_tis 00:0a: TPM is disabled/deactivated (0x6)
May 17 12:28:10 ws1 kernel: [ 3859.224077] usb 2-1.5: reset full-speed USB device number 3 using ehci_hcd
May 17 12:28:10 ws1 kernel: [ 3859.316084] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
May 17 12:28:10 ws1 kernel: [ 3859.319143] ata4: SATA link down (SStatus 0 SControl 300)
May 17 12:28:10 ws1 kernel: [ 3859.352503] ata5: SATA link down (SStatus 0 SControl 300)
May 17 12:28:10 ws1 kernel: [ 3859.357161] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 12:28:10 ws1 kernel: [ 3859.384080] usb 1-1.6: reset high-speed USB device number 5 using ehci_hcd
May 17 12:28:10 ws1 kernel: [ 3859.407055] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 12:28:10 ws1 kernel: [ 3859.412598] ata2.00: configured for UDMA/100
May 17 12:28:10 ws1 kernel: [ 3859.538551] usb 1-1.4: reset full-speed USB device number 4 using ehci_hcd
May 17 12:28:10 ws1 kernel: [ 3859.552804] firewire_core 0000:0d:00.3: rediscovered device fw0
May 17 12:28:10 ws1 kernel: [ 3859.627671] btusb 1-1.4:1.0: no reset_resume for driver btusb?
May 17 12:28:10 ws1 kernel: [ 3859.627677] btusb 1-1.4:1.1: no reset_resume for driver btusb?
May 17 12:28:10 ws1 kernel: [ 3859.687304] usb 1-1.3: reset full-speed USB device number 3 using ehci_hcd
May 17 12:28:10 ws1 kernel: [ 3861.303258] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
May 17 12:28:10 ws1 kernel: [ 3861.566691] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May 17 12:28:10 ws1 kernel: [ 3861.566695] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 12:28:10 ws1 kernel: [ 3861.594434] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May 17 12:28:10 ws1 kernel: [ 3861.594438] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 12:28:10 ws1 kernel: [ 3861.596352] ata1.00: configured for UDMA/100
May 17 12:28:10 ws1 kernel: [ 3861.596526] sd 0:0:0:0: [sda] Starting disk
May 17 12:28:10 ws1 kernel: [ 3862.195342] PM: resume of devices complete after 3208.729 msecs
May 17 12:28:10 ws1 bluetoothd[750]: bluetoothd[750]: Adapter /org/bluez/750/hci0 has been disabled
May 17 12:28:10 ws1 bluetoothd[750]: bluetoothd[750]: Unregister path: /org/bluez/750/hci0
May 17 12:28:10 ws1 bluetoothd[750]: Adapter /org/bluez/750/hci0 has been disabled
May 17 12:28:10 ws1 kernel: [ 3862.204496] Restarting tasks ... done.
May 17 12:28:10 ws1 bluetoothd[750]: Unregister path: /org/bluez/750/hci0
May 17 12:28:10 ws1 systemd-logind[787]: Lid opened.
May 17 12:28:10 ws1 bluetoothd[750]: bluetoothd[750]: Parsing /etc/bluetooth/serial.conf failed: No such file or directory
May 17 12:28:10 ws1 bluetoothd[750]: Parsing /etc/bluetooth/serial.conf failed: No such file or directory
May 17 12:28:10 ws1 systemd[1]: Service bluetooth.target is not needed anymore. Stopping.
May 17 12:28:10 ws1 systemd[1]: Stopping Bluetooth.
May 17 12:28:10 ws1 systemd[1]: Stopped target Bluetooth.
May 17 12:28:10 ws1 kernel: [ 3862.293453] video LNXVIDEO:00: Restoring backlight state
May 17 12:28:10 ws1 systemd[1]: Starting Bluetooth.
May 17 12:28:10 ws1 systemd[1]: Reached target Bluetooth.
May 17 12:28:10 ws1 bluetoothd[750]: bluetoothd[750]: input-headset driver probe failed for device 6C:F3:73:0E:2D:32
May 17 12:28:10 ws1 bluetoothd[750]: input-headset driver probe failed for device 6C:F3:73:0E:2D:32
May 17 12:28:10 ws1 bluetoothd[750]: Adapter /org/bluez/750/hci0 has been enabled
May 17 12:28:10 ws1 bluetoothd[750]: bluetoothd[750]: Adapter /org/bluez/750/hci0 has been enabled
May 17 12:28:10 ws1 dbus-daemon[792]: dbus[792]: [system] Rejected send message, 3 matched rules; type="error", sender=":1.112" (uid=1000 pid=3178 comm="bluetooth-applet ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.0" (uid=0 pid=750 comm="/usr/sbin/bluetoothd -n ")
May 17 12:28:10 ws1 dbus[792]: [system] Rejected send message, 3 matched rules; type="error", sender=":1.112" (uid=1000 pid=3178 comm="bluetooth-applet ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.0" (uid=0 pid=750 comm="/usr/sbin/bluetoothd -n ")
May 17 12:28:11 ws1 systemd-sleep[5162]: System resumed.
May 17 12:28:11 ws1 systemd[1]: Started Suspend.
May 17 12:28:11 ws1 systemd[1]: Service sleep.target is not needed anymore. Stopping.
May 17 12:28:11 ws1 systemd[1]: Stopping Sleep.
May 17 12:28:11 ws1 systemd[1]: Stopped target Sleep.
May 17 12:28:11 ws1 systemd[1]: Stopping Suspend.
May 17 12:28:11 ws1 systemd[1]: Stopped target Suspend.
May 17 12:30:09 ws1 chronyd[863]: Selected source 113.30.137.34
May 17 12:30:09 ws1 chronyd[863]: System clock wrong by 0.564113 seconds, adjustment started
May 17 12:30:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:31:14 ws1 chronyd[863]: System clock wrong by 0.702565 seconds, adjustment started
May 17 12:32:49 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:32:49 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:34:40 ws1 abrt: detected unhandled Python exception in '/home/ravi/Training/snakes/layout.py'
May 17 12:34:41 ws1 abrtd: New client connected
May 17 12:34:41 ws1 abrtd: Directory 'pyhook-2015-05-17-12:34:41-5689' creation detected
May 17 12:34:41 ws1 abrt-server[5690]: Saved problem directory of pid 5689 to '/var/spool/abrt/pyhook-2015-05-17-12:34:41-5689'
May 17 12:34:41 ws1 abrtd: Executable '/home/ravi/Training/snakes/layout.py' doesn't belong to any package
May 17 12:34:41 ws1 abrtd: 'post-create' on '/var/spool/abrt/pyhook-2015-05-17-12:34:41-5689' exited with 1
May 17 12:34:41 ws1 abrtd: Corrupted or bad directory '/var/spool/abrt/pyhook-2015-05-17-12:34:41-5689', deleting
May 17 12:35:34 ws1 chronyd[863]: Selected source 125.62.193.121
May 17 12:36:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:37:57 ws1 dbus-daemon[792]: dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 12:37:57 ws1 dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 12:37:57 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 12:37:57 ws1 dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 12:40:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:44:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:47:28 ws1 chronyd[863]: Selected source 120.88.46.10
May 17 12:48:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:50:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:54:48 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 12:55:50 ws1 dbus-daemon[792]: dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 12:55:50 ws1 dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 12:55:50 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 12:55:50 ws1 dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 13:02:03 ws1 systemd-logind[787]: Lid closed.
May 17 13:02:03 ws1 systemd-logind[787]: Suspending...
May 17 13:02:03 ws1 systemd[1]: Starting Sleep.
May 17 13:02:03 ws1 systemd[1]: Reached target Sleep.
May 17 13:02:03 ws1 systemd[1]: Starting Suspend...
May 17 13:02:03 ws1 systemd-sleep[7802]: /usr/lib/systemd/system-sleep/notify-upower.sh exited with exit status 1.
May 17 13:02:03 ws1 systemd-sleep[7802]: Suspending system...
May 17 13:02:04 ws1 kernel: [ 5890.760435] PM: Syncing filesystems ... done.
May 17 14:54:06 ws1 kernel: [ 5891.227976] Freezing user space processes ... (elapsed 0.01 seconds) done.
May 17 14:54:06 ws1 kernel: [ 5891.242168] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
May 17 14:54:06 ws1 kernel: [ 5891.255207] Suspending console(s) (use no_console_suspend to debug)
May 17 14:54:06 ws1 kernel: [ 5891.436696] sd 0:0:0:0: [sda] Synchronizing SCSI cache
May 17 14:54:06 ws1 kernel: [ 5891.437383] sd 0:0:0:0: [sda] Stopping disk
May 17 14:54:06 ws1 kernel: [ 5891.701922] i915 0000:00:02.0: power state changed by ACPI to D3hot
May 17 14:54:06 ws1 kernel: [ 5891.888685] e1000e 0000:00:19.0: wake-up capability enabled by ACPI
May 17 14:54:06 ws1 kernel: [ 5891.899655] PM: suspend of devices complete after 642.619 msecs
May 17 14:54:06 ws1 kernel: [ 5891.901848] PM: late suspend of devices complete after 2.190 msecs
May 17 14:54:06 ws1 kernel: [ 5891.913739] ehci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
May 17 14:54:06 ws1 kernel: [ 5891.924445] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D3hot
May 17 14:54:06 ws1 kernel: [ 5891.925013] ehci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
May 17 14:54:06 ws1 kernel: [ 5891.935400] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D3hot
May 17 14:54:06 ws1 kernel: [ 5891.946776] PM: noirq suspend of devices complete after 44.990 msecs
May 17 14:54:06 ws1 kernel: [ 5891.947534] ACPI: Preparing to enter system sleep state S3
May 17 14:54:06 ws1 kernel: [ 5892.029233] PM: Saving platform NVS memory
May 17 14:54:06 ws1 kernel: [ 5892.077539] Disabling non-boot CPUs ...
May 17 14:54:06 ws1 kernel: [ 5892.082125] smpboot: CPU 1 is now offline
May 17 14:54:06 ws1 kernel: [ 5892.084645] CPU 1 offline: Remove Rx thread
May 17 14:54:06 ws1 kernel: [ 5892.092937] smpboot: CPU 2 is now offline
May 17 14:54:06 ws1 kernel: [ 5892.096391] CPU 2 offline: Remove Rx thread
May 17 14:54:06 ws1 kernel: [ 5892.103264] Broke affinity for irq 17
May 17 14:54:06 ws1 kernel: [ 5892.103301] Broke affinity for irq 23
May 17 14:54:06 ws1 kernel: [ 5892.103312] Broke affinity for irq 40
May 17 14:54:06 ws1 kernel: [ 5892.104550] smpboot: CPU 3 is now offline
May 17 14:54:06 ws1 kernel: [ 5892.104553] SMP alternatives: lockdep: fixing up alternatives
May 17 14:54:06 ws1 kernel: [ 5892.110762] CPU 3 offline: Remove Rx thread
May 17 14:54:06 ws1 kernel: [ 5892.113897] Extended CMOS year: 2000
May 17 14:54:06 ws1 kernel: [ 5892.115420] ACPI: Low-level resume complete
May 17 14:54:06 ws1 kernel: [ 5892.115610] PM: Restoring platform NVS memory
May 17 14:54:06 ws1 kernel: [ 5892.116486] Extended CMOS year: 2000
May 17 14:54:06 ws1 kernel: [ 5892.117169] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
May 17 14:54:06 ws1 kernel: [ 5892.117327] Enabling non-boot CPUs ...
May 17 14:54:06 ws1 kernel: [ 5892.117888] SMP alternatives: lockdep: fixing up alternatives
May 17 14:54:06 ws1 kernel: [ 5892.117891] smpboot: Booting Node 0 Processor 1 APIC 0x1
May 17 14:54:06 ws1 kernel: [ 5892.128912] Disabled fast string operations
May 17 14:54:06 ws1 kernel: [ 5892.175226] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
May 17 14:54:06 ws1 kernel: [ 5892.175385] bnx2i: CPU 1 online: Create Rx thread
May 17 14:54:06 ws1 kernel: [ 5892.175646] CPU1 is up
May 17 14:54:06 ws1 kernel: [ 5892.176251] SMP alternatives: lockdep: fixing up alternatives
May 17 14:54:06 ws1 kernel: [ 5892.176254] smpboot: Booting Node 0 Processor 2 APIC 0x2
May 17 14:54:06 ws1 kernel: [ 5892.187272] Disabled fast string operations
May 17 14:54:06 ws1 kernel: [ 5892.234130] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
May 17 14:54:06 ws1 kernel: [ 5892.234289] bnx2i: CPU 2 online: Create Rx thread
May 17 14:54:06 ws1 kernel: [ 5892.234560] CPU2 is up
May 17 14:54:06 ws1 kernel: [ 5892.235501] SMP alternatives: lockdep: fixing up alternatives
May 17 14:54:06 ws1 kernel: [ 5892.235509] smpboot: Booting Node 0 Processor 3 APIC 0x3
May 17 14:54:06 ws1 kernel: [ 5892.246636] Disabled fast string operations
May 17 14:54:06 ws1 kernel: [ 5892.310812] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
May 17 14:54:06 ws1 kernel: [ 5892.311218] bnx2i: CPU 3 online: Create Rx thread
May 17 14:54:06 ws1 kernel: [ 5892.311570] CPU3 is up
May 17 14:54:06 ws1 kernel: [ 5892.318055] ACPI: Waking up from system sleep state S3
May 17 14:54:06 ws1 kernel: [ 5892.510283] i915 0000:00:02.0: power state changed by ACPI to D0
May 17 14:54:06 ws1 kernel: [ 5892.543223] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
May 17 14:54:06 ws1 kernel: [ 5892.554507] ehci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
May 17 14:54:06 ws1 kernel: [ 5892.566138] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
May 17 14:54:06 ws1 kernel: [ 5892.577461] ehci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
May 17 14:54:06 ws1 kernel: [ 5892.610174] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
May 17 14:54:06 ws1 kernel: [ 5892.622245] PM: noirq resume of devices complete after 113.591 msecs
May 17 14:54:06 ws1 kernel: [ 5892.623711] PM: early resume of devices complete after 1.267 msecs
May 17 14:54:06 ws1 kernel: [ 5892.626060] e1000e 0000:00:19.0: wake-up capability disabled by ACPI
May 17 14:54:06 ws1 kernel: [ 5892.627987] rtlwifi: wireless switch is on
May 17 14:54:06 ws1 kernel: [ 5892.694789] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
May 17 14:54:06 ws1 kernel: [ 5892.724822] tpm_tis 00:0a: TPM is disabled/deactivated (0x6)
May 17 14:54:06 ws1 kernel: [ 5892.854217] usb 1-1.3: reset full-speed USB device number 3 using ehci_hcd
May 17 14:54:06 ws1 kernel: [ 5892.943482] ata5: SATA link down (SStatus 0 SControl 300)
May 17 14:54:06 ws1 kernel: [ 5892.973482] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
May 17 14:54:06 ws1 kernel: [ 5892.977398] ata4: SATA link down (SStatus 0 SControl 300)
May 17 14:54:06 ws1 kernel: [ 5893.012871] usb 1-1.4: reset full-speed USB device number 4 using ehci_hcd
May 17 14:54:06 ws1 kernel: [ 5893.023760] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 14:54:06 ws1 kernel: [ 5893.069471] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 14:54:06 ws1 kernel: [ 5893.075314] ata2.00: configured for UDMA/100
May 17 14:54:06 ws1 kernel: [ 5893.102068] btusb 1-1.4:1.0: no reset_resume for driver btusb?
May 17 14:54:06 ws1 kernel: [ 5893.102074] btusb 1-1.4:1.1: no reset_resume for driver btusb?
May 17 14:54:06 ws1 kernel: [ 5893.172595] usb 1-1.6: reset high-speed USB device number 5 using ehci_hcd
May 17 14:54:06 ws1 kernel: [ 5893.187210] firewire_core 0000:0d:00.3: rediscovered device fw0
May 17 14:54:06 ws1 kernel: [ 5893.338563] usb 2-1.5: reset full-speed USB device number 3 using ehci_hcd
May 17 14:54:06 ws1 kernel: [ 5894.910625] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
May 17 14:54:06 ws1 kernel: [ 5895.159916] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May 17 14:54:06 ws1 kernel: [ 5895.159920] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 14:54:06 ws1 kernel: [ 5895.187986] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May 17 14:54:06 ws1 kernel: [ 5895.187994] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May 17 14:54:06 ws1 kernel: [ 5895.189893] ata1.00: configured for UDMA/100
May 17 14:54:06 ws1 kernel: [ 5895.190245] sd 0:0:0:0: [sda] Starting disk
May 17 14:54:06 ws1 kernel: [ 5895.874191] PM: resume of devices complete after 3255.396 msecs
May 17 14:54:06 ws1 bluetoothd[750]: bluetoothd[750]: Adapter /org/bluez/750/hci0 has been disabled
May 17 14:54:06 ws1 bluetoothd[750]: bluetoothd[750]: Unregister path: /org/bluez/750/hci0
May 17 14:54:06 ws1 bluetoothd[750]: Adapter /org/bluez/750/hci0 has been disabled
May 17 14:54:06 ws1 bluetoothd[750]: Unregister path: /org/bluez/750/hci0
May 17 14:54:06 ws1 systemd-logind[787]: Lid opened.
May 17 14:54:06 ws1 kernel: [ 5895.886259] Restarting tasks ... done.
May 17 14:54:06 ws1 kernel: [ 5895.932125] video LNXVIDEO:00: Restoring backlight state
May 17 14:54:06 ws1 bluetoothd[750]: bluetoothd[750]: Parsing /etc/bluetooth/serial.conf failed: No such file or directory
May 17 14:54:06 ws1 bluetoothd[750]: Parsing /etc/bluetooth/serial.conf failed: No such file or directory
May 17 14:54:06 ws1 bluetoothd[750]: bluetoothd[750]: input-headset driver probe failed for device 6C:F3:73:0E:2D:32
May 17 14:54:06 ws1 bluetoothd[750]: input-headset driver probe failed for device 6C:F3:73:0E:2D:32
May 17 14:54:06 ws1 bluetoothd[750]: Adapter /org/bluez/750/hci0 has been enabled
May 17 14:54:06 ws1 dbus[792]: [system] Rejected send message, 3 matched rules; type="error", sender=":1.112" (uid=1000 pid=3178 comm="bluetooth-applet ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.0" (uid=0 pid=750 comm="/usr/sbin/bluetoothd -n ")
May 17 14:54:06 ws1 bluetoothd[750]: bluetoothd[750]: Adapter /org/bluez/750/hci0 has been enabled
May 17 14:54:06 ws1 dbus-daemon[792]: dbus[792]: [system] Rejected send message, 3 matched rules; type="error", sender=":1.112" (uid=1000 pid=3178 comm="bluetooth-applet ") interface="(unset)" member="(unset)" error name="org.freedesktop.DBus.Error.UnknownMethod" requested_reply="0" destination=":1.0" (uid=0 pid=750 comm="/usr/sbin/bluetoothd -n ")
May 17 14:54:06 ws1 systemd[1]: Service bluetooth.target is not needed anymore. Stopping.
May 17 14:54:06 ws1 systemd[1]: Stopping Bluetooth.
May 17 14:54:06 ws1 systemd[1]: Stopped target Bluetooth.
May 17 14:54:06 ws1 systemd[1]: Starting Bluetooth.
May 17 14:54:06 ws1 systemd[1]: Reached target Bluetooth.
May 17 14:54:07 ws1 systemd-sleep[7802]: System resumed.
May 17 14:54:07 ws1 systemd[1]: Started Suspend.
May 17 14:54:07 ws1 systemd[1]: Service sleep.target is not needed anymore. Stopping.
May 17 14:54:07 ws1 systemd[1]: Stopping Sleep.
May 17 14:54:07 ws1 systemd[1]: Stopped target Sleep.
May 17 14:54:07 ws1 systemd[1]: Starting Suspend.
May 17 14:54:07 ws1 systemd[1]: Reached target Suspend.
May 17 14:54:46 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): disconnecting for new activation request.
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): device state change: activated -> disconnected (reason 'none') [100 30 0]
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): deactivating device (reason 'none') [0]
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): canceled DHCP transaction, DHCP client pid 3481
May 17 14:55:04 ws1 kernel: [ 5953.561879] wlan0: deauthenticating from b8:c1:a2:03:c9:80 by local choice (reason=3)
May 17 14:55:04 ws1 kernel: [ 5953.629014] cfg80211: Calling CRDA to update world regulatory domain
May 17 14:55:04 ws1 avahi-daemon[766]: Withdrawing address record for 192.168.1.5 on wlan0.
May 17 14:55:04 ws1 avahi-daemon[766]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
May 17 14:55:04 ws1 avahi-daemon[766]: Interface wlan0.IPv4 no longer relevant for mDNS.
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) starting connection 'Root Cap'
May 17 14:55:04 ws1 dbus[792]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
May 17 14:55:04 ws1 kernel: [ 5953.644944] cfg80211: World regulatory domain updated:
May 17 14:55:04 ws1 kernel: [ 5953.644948] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
May 17 14:55:04 ws1 kernel: [ 5953.644950] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
May 17 14:55:04 ws1 kernel: [ 5953.644953] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
May 17 14:55:04 ws1 kernel: [ 5953.644955] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
May 17 14:55:04 ws1 kernel: [ 5953.644957] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
May 17 14:55:04 ws1 kernel: [ 5953.644959] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
May 17 14:55:04 ws1 dbus-daemon[792]: dbus[792]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): supplicant interface state: completed -> disconnected
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0/wireless): access point 'Root Cap' has security, but secrets are required.
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): device state change: config -> need-auth (reason 'none') [50 60 0]
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): device state change: need-auth -> prepare (reason 'none') [60 40 0]
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
May 17 14:55:04 ws1 dbus[792]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
May 17 14:55:04 ws1 NetworkManager[952]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0/wireless): connection 'Root Cap' has security, and secrets exist. No new secrets needed.
May 17 14:55:04 ws1 NetworkManager[952]: <info> Config: added 'ssid' value 'Root Cap'
May 17 14:55:04 ws1 NetworkManager[952]: <info> Config: added 'scan_ssid' value '1'
May 17 14:55:04 ws1 NetworkManager[952]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
May 17 14:55:04 ws1 NetworkManager[952]: <info> Config: added 'psk' value '<omitted>'
May 17 14:55:04 ws1 NetworkManager[952]: <info> Config: added 'proto' value 'WPA RSN'
May 17 14:55:04 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
May 17 14:55:04 ws1 NetworkManager[952]: <info> Config: set interface ap_scan to 1
May 17 14:55:04 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
May 17 14:55:04 ws1 systemd[1]: Stopping LSB: Starts and stops login and scanning of iSCSI devices....
May 17 14:55:04 ws1 iscsi[8016]: Stopping iscsi: [ OK ]
May 17 14:55:04 ws1 systemd[1]: Stopped LSB: Starts and stops login and scanning of iSCSI devices..
May 17 14:55:04 ws1 dbus-daemon[792]: Stopping iscsi (via systemctl): [ OK ]
May 17 14:55:04 ws1 systemd[1]: Stopping Sendmail Mail Transport Client...
May 17 14:55:04 ws1 systemd[1]: Stopping Sendmail Mail Transport Agent...
May 17 14:55:04 ws1 systemd[1]: Starting Sendmail Mail Transport Agent...
May 17 14:55:05 ws1 systemd[1]: PID file /run/sendmail.pid not readable (yet?) after start.
May 17 14:55:05 ws1 systemd[1]: Started Sendmail Mail Transport Agent.
May 17 14:55:05 ws1 systemd[1]: Starting Sendmail Mail Transport Client...
May 17 14:55:05 ws1 chronyd[863]: Source 113.30.137.34 offline
May 17 14:55:05 ws1 chronyd[863]: Source 125.62.193.121 offline
May 17 14:55:05 ws1 chronyd[863]: Source 120.88.46.10 offline
May 17 14:55:05 ws1 systemd[1]: Started Sendmail Mail Transport Client.
May 17 14:55:05 ws1 kernel: [ 5954.576682] wlan0: authenticate with b8:c1:a2:03:c9:80
May 17 14:55:05 ws1 kernel: [ 5954.614571] wlan0: send auth to b8:c1:a2:03:c9:80 (try 1/3)
May 17 14:55:05 ws1 NetworkManager[952]: <info> (wlan0): supplicant interface state: disconnected -> authenticating
May 17 14:55:05 ws1 kernel: [ 5954.617777] wlan0: authenticated
May 17 14:55:05 ws1 NetworkManager[952]: <info> (wlan0): supplicant interface state: authenticating -> associating
May 17 14:55:05 ws1 kernel: [ 5954.633866] wlan0: associate with b8:c1:a2:03:c9:80 (try 1/3)
May 17 14:55:05 ws1 kernel: [ 5954.638029] wlan0: RX AssocResp from b8:c1:a2:03:c9:80 (capab=0x411 status=0 aid=3)
May 17 14:55:05 ws1 kernel: [ 5954.638324] wlan0: associated
May 17 14:55:05 ws1 NetworkManager[952]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
May 17 14:55:05 ws1 NetworkManager[952]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
May 17 14:55:05 ws1 NetworkManager[952]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful. Connected to wireless network 'Root Cap'.
May 17 14:55:05 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
May 17 14:55:05 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
May 17 14:55:05 ws1 NetworkManager[952]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
May 17 14:55:05 ws1 NetworkManager[952]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
May 17 14:55:05 ws1 NetworkManager[952]: <info> dhclient started with pid 8087
May 17 14:55:05 ws1 NetworkManager[952]: <info> Activation (wlan0) Beginning IP6 addrconf.
May 17 14:55:05 ws1 avahi-daemon[766]: Withdrawing address record for fe80::6aa3:c4ff:fe21:15e8 on wlan0.
May 17 14:55:05 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
May 17 14:55:05 ws1 dhclient[8087]: Internet Systems Consortium DHCP Client 4.2.4-P2
May 17 14:55:05 ws1 dhclient[8087]: Copyright 2004-2012 Internet Systems Consortium.
May 17 14:55:05 ws1 dhclient[8087]: All rights reserved.
May 17 14:55:05 ws1 dhclient[8087]: For info, please visit https://www.isc.org/software/dhcp/
May 17 14:55:05 ws1 dhclient[8087]:
May 17 14:55:05 ws1 NetworkManager[952]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
May 17 14:55:05 ws1 dhclient[8087]: Listening on LPF/wlan0/68:a3:c4:21:15:e8
May 17 14:55:05 ws1 dhclient[8087]: Sending on LPF/wlan0/68:a3:c4:21:15:e8
May 17 14:55:05 ws1 dhclient[8087]: Sending on Socket/fallback
May 17 14:55:05 ws1 dhclient[8087]: DHCPREQUEST on wlan0 to 255.255.255.255 port 67 (xid=0x7f9d6c71)
May 17 14:55:07 ws1 avahi-daemon[766]: Registering new address record for fe80::6aa3:c4ff:fe21:15e8 on wlan0.*.
May 17 14:55:07 ws1 dnsmasq[1845]: no servers found in /etc/resolv.conf, will retry
May 17 14:55:09 ws1 dhclient[8087]: DHCPACK from 192.168.1.1 (xid=0x7f9d6c71)
May 17 14:55:09 ws1 NetworkManager[952]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
May 17 14:55:09 ws1 NetworkManager[952]: <info> address 192.168.1.5
May 17 14:55:09 ws1 NetworkManager[952]: <info> prefix 24 (255.255.255.0)
May 17 14:55:09 ws1 NetworkManager[952]: <info> gateway 192.168.1.1
May 17 14:55:09 ws1 NetworkManager[952]: <info> nameserver '192.168.1.1'
May 17 14:55:09 ws1 NetworkManager[952]: <info> nameserver '208.67.222.222'
May 17 14:55:09 ws1 NetworkManager[952]: <info> nameserver '208.67.220.220'
May 17 14:55:09 ws1 NetworkManager[952]: <info> domain name 'domain.name'
May 17 14:55:09 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
May 17 14:55:09 ws1 dhclient[8087]: bound to 192.168.1.5 -- renewal in 125071 seconds.
May 17 14:55:09 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
May 17 14:55:09 ws1 avahi-daemon[766]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.5.
May 17 14:55:09 ws1 avahi-daemon[766]: New relevant interface wlan0.IPv4 for mDNS.
May 17 14:55:09 ws1 avahi-daemon[766]: Registering new address record for 192.168.1.5 on wlan0.IPv4.
May 17 14:55:10 ws1 NetworkManager[952]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
May 17 14:55:10 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
May 17 14:55:10 ws1 NetworkManager[952]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
May 17 14:55:10 ws1 NetworkManager[952]: <info> Policy set 'Root Cap' (wlan0) as default for IPv4 routing and DNS.
May 17 14:55:10 ws1 NetworkManager[952]: <info> Activation (wlan0) successful, device activated.
May 17 14:55:10 ws1 systemd[1]: Starting LSB: Starts and stops login and scanning of iSCSI devices....
May 17 14:55:10 ws1 iscsi[8105]: Starting iscsi: iscsiadm: No records found
May 17 14:55:10 ws1 iscsi[8105]: [ OK ]
May 17 14:55:10 ws1 systemd[1]: Started LSB: Starts and stops login and scanning of iSCSI devices..
May 17 14:55:10 ws1 dbus-daemon[792]: Starting iscsi (via systemctl): [ OK ]
May 17 14:55:10 ws1 systemd[1]: Stopping Sendmail Mail Transport Client...
May 17 14:55:10 ws1 systemd[1]: Stopping Sendmail Mail Transport Agent...
May 17 14:55:10 ws1 systemd[1]: Starting Sendmail Mail Transport Agent...
May 17 14:55:10 ws1 systemd[1]: PID file /run/sendmail.pid not readable (yet?) after start.
May 17 14:55:10 ws1 systemd[1]: Started Sendmail Mail Transport Agent.
May 17 14:55:10 ws1 systemd[1]: Starting Sendmail Mail Transport Client...
May 17 14:55:10 ws1 dbus-daemon[792]: disabled
May 17 14:55:10 ws1 chronyd[863]: Source 120.88.46.10 online
May 17 14:55:10 ws1 chronyd[863]: Source 113.30.137.34 online
May 17 14:55:10 ws1 chronyd[863]: Source 125.62.193.121 online
May 17 14:55:10 ws1 systemd[1]: PID 8073 read from file /run/sm-client.pid does not exist.
May 17 14:55:10 ws1 systemd[1]: Started Sendmail Mail Transport Client.
May 17 14:55:11 ws1 chronyd[863]: Selected source 113.30.137.34
May 17 14:55:11 ws1 chronyd[863]: System clock wrong by -0.823316 seconds, adjustment started
May 17 14:55:11 ws1 dnsmasq[1845]: reading /etc/resolv.conf
May 17 14:55:11 ws1 dnsmasq[1845]: using nameserver 208.67.220.220#53
May 17 14:55:11 ws1 dnsmasq[1845]: using nameserver 208.67.222.222#53
May 17 14:55:11 ws1 dnsmasq[1845]: using nameserver 192.168.1.1#53
May 17 14:55:11 ws1 dnsmasq[1845]: using local addresses only for unqualified names
May 17 14:55:26 ws1 NetworkManager[952]: <info> (wlan0): IP6 addrconf timed out or failed.
May 17 14:55:26 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
May 17 14:55:26 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
May 17 14:55:26 ws1 NetworkManager[952]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
May 17 14:55:31 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 14:58:42 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:00:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:02:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:02:44 ws1 chronyd[863]: Selected source 120.88.46.10
May 17 15:32:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:32:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:35:42 ws1 abrt: detected unhandled Python exception in 'nautilus'
May 17 15:35:42 ws1 dbus-daemon[792]: dbus[792]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
May 17 15:35:42 ws1 dbus[792]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
May 17 15:35:42 ws1 systemd[1]: Starting Hostname Service...
May 17 15:35:42 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'org.freedesktop.hostname1'
May 17 15:35:42 ws1 dbus[792]: [system] Successfully activated service 'org.freedesktop.hostname1'
May 17 15:35:42 ws1 systemd[1]: Started Hostname Service.
May 17 15:36:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:38:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:44:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:46:13 ws1 abrt: detected unhandled Python exception in '/usr/bin/blueman-applet'
May 17 15:46:14 ws1 abrtd: New client connected
May 17 15:46:14 ws1 abrtd: Directory 'pyhook-2015-05-17-15:46:14-3151' creation detected
May 17 15:46:14 ws1 abrt-server[9928]: Saved problem directory of pid 3151 to '/var/spool/abrt/pyhook-2015-05-17-15:46:14-3151'
May 17 15:46:14 ws1 abrtd: Unable to open '_ctypes/callbacks.c': No such file or directory.
May 17 15:46:14 ws1 abrtd: hash_text_file failed for '_ctypes/callbacks.c'
May 17 15:46:14 ws1 abrtd: Duplicate: core backtrace
May 17 15:46:14 ws1 abrtd: DUP_OF_DIR: /var/spool/abrt/pyhook-2015-05-15-13:09:43-13187
May 17 15:46:14 ws1 abrtd: Corrupted or bad directory '/var/spool/abrt/pyhook-2015-05-17-15:46:14-3151', deleting
May 17 15:46:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:52:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:52:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 15:56:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:04:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:08:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:14:34 ws1 kernel: [10717.096619] [drm:__gen6_gt_force_wake_get] *ERROR* Force wake wait timed out
May 17 16:20:51 ws1 kernel: [11093.728462] [drm:__gen6_gt_force_wake_get] *ERROR* Force wake wait timed out
May 17 16:34:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:34:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:42:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:50:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 16:58:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 17:04:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 17:18:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 17:20:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 17:26:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 17:38:42 ws1 dbus-daemon[792]: dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 17:38:42 ws1 dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 17:38:42 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 17:38:42 ws1 dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 17:38:57 ws1 dbus-daemon[792]: dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 17:38:57 ws1 dbus[792]: [system] Activating service name='org.freedesktop.PackageKit' (using servicehelper)
May 17 17:38:57 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 17:38:57 ws1 dbus[792]: [system] Successfully activated service 'org.freedesktop.PackageKit'
May 17 18:02:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 18:24:24 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 18:34:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 18:35:48 ws1 kernel: [19178.553138] usb 1-1.2: new high-speed USB device number 6 using ehci_hcd
May 17 18:35:48 ws1 kernel: [19178.640419] usb 1-1.2: New USB device found, idVendor=0781, idProduct=5567
May 17 18:35:48 ws1 kernel: [19178.640430] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 17 18:35:48 ws1 kernel: [19178.640436] usb 1-1.2: Product: Cruzer Blade
May 17 18:35:48 ws1 kernel: [19178.640441] usb 1-1.2: Manufacturer: SanDisk
May 17 18:35:48 ws1 kernel: [19178.640445] usb 1-1.2: SerialNumber: 4C530399950527116315
May 17 18:35:48 ws1 mtp-probe: checking bus 1, device 6: "/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2"
May 17 18:35:48 ws1 mtp-probe: bus: 1, device: 6 was not an MTP device
May 17 18:35:49 ws1 kernel: [19178.956850] Initializing USB Mass Storage driver...
May 17 18:35:49 ws1 kernel: [19178.958554] scsi6 : usb-storage 1-1.2:1.0
May 17 18:35:49 ws1 kernel: [19178.963024] usbcore: registered new interface driver usb-storage
May 17 18:35:49 ws1 kernel: [19178.963034] USB Mass Storage support registered.
May 17 18:35:50 ws1 kernel: [19179.968061] scsi 6:0:0:0: Direct-Access SanDisk Cruzer Blade 1.27 PQ: 0 ANSI: 6
May 17 18:35:50 ws1 kernel: [19179.998221] sd 6:0:0:0: [sdb] 62530624 512-byte logical blocks: (32.0 GB/29.8 GiB)
May 17 18:35:50 ws1 kernel: [19180.000129] sd 6:0:0:0: Attached scsi generic sg2 type 0
May 17 18:35:50 ws1 kernel: [19180.001005] sd 6:0:0:0: [sdb] Write Protect is off
May 17 18:35:50 ws1 kernel: [19180.002179] sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
May 17 18:35:50 ws1 kernel: [19180.018740] sdb: sdb1
May 17 18:35:50 ws1 kernel: [19180.025054] sd 6:0:0:0: [sdb] Attached SCSI removable disk
May 17 18:35:50 ws1 udisksd[1410]: Mounted /dev/sdb1 at /run/media/ravi/F073-B2E2 on behalf of uid 1000
May 17 18:35:54 ws1 kernel: [19183.772792] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772796] FAT-fs (sdb1): Filesystem has been set read-only
May 17 18:35:54 ws1 kernel: [19183.772856] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772859] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772861] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772862] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772867] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772869] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772871] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.772873] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.773039] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.773053] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.773059] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:35:54 ws1 kernel: [19183.773066] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.875873] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.875889] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.875896] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.875903] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.876128] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.876150] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.876156] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:36:27 ws1 kernel: [19216.876161] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565449] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565454] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565456] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565459] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565545] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565548] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565551] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:42:56 ws1 kernel: [19605.565554] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:05 ws1 kernel: [19674.528837] usb 1-1.2: USB disconnect, device number 6
May 17 18:44:05 ws1 udisksd[1410]: Cleaning up mount point /run/media/ravi/F073-B2E2 (device 8:17 no longer exist)
May 17 18:44:09 ws1 kernel: [19678.284347] usb 1-1.2: new high-speed USB device number 7 using ehci_hcd
May 17 18:44:09 ws1 kernel: [19678.362060] usb 1-1.2: New USB device found, idVendor=0781, idProduct=5567
May 17 18:44:09 ws1 kernel: [19678.362076] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 17 18:44:09 ws1 kernel: [19678.362085] usb 1-1.2: Product: Cruzer Blade
May 17 18:44:09 ws1 kernel: [19678.362094] usb 1-1.2: Manufacturer: SanDisk
May 17 18:44:09 ws1 kernel: [19678.362102] usb 1-1.2: SerialNumber: 4C530399950527116315
May 17 18:44:09 ws1 kernel: [19678.376515] scsi7 : usb-storage 1-1.2:1.0
May 17 18:44:09 ws1 mtp-probe: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2"
May 17 18:44:09 ws1 mtp-probe: bus: 1, device: 7 was not an MTP device
May 17 18:44:10 ws1 kernel: [19679.383205] scsi 7:0:0:0: Direct-Access SanDisk Cruzer Blade 1.27 PQ: 0 ANSI: 6
May 17 18:44:10 ws1 kernel: [19679.409468] sd 7:0:0:0: [sdb] 62530624 512-byte logical blocks: (32.0 GB/29.8 GiB)
May 17 18:44:10 ws1 kernel: [19679.411303] sd 7:0:0:0: Attached scsi generic sg2 type 0
May 17 18:44:10 ws1 kernel: [19679.412436] sd 7:0:0:0: [sdb] Write Protect is off
May 17 18:44:10 ws1 kernel: [19679.413528] sd 7:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
May 17 18:44:10 ws1 kernel: [19679.429842] sdb: sdb1
May 17 18:44:10 ws1 kernel: [19679.434665] sd 7:0:0:0: [sdb] Attached SCSI removable disk
May 17 18:44:10 ws1 udisksd[1410]: Mounted /dev/sdb1 at /run/media/ravi/F073-B2E2 on behalf of uid 1000
May 17 18:44:14 ws1 kernel: [19683.749203] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749210] FAT-fs (sdb1): Filesystem has been set read-only
May 17 18:44:14 ws1 kernel: [19683.749337] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749342] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749346] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749351] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749359] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749363] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749367] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749371] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749549] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749555] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749559] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:14 ws1 kernel: [19683.749563] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:28 ws1 kernel: [19697.278800] usb 1-1.2: USB disconnect, device number 7
May 17 18:44:28 ws1 udisksd[1410]: Cleaning up mount point /run/media/ravi/F073-B2E2 (device 8:17 no longer exist)
May 17 18:44:28 ws1 kernel: [19697.435573] FAT-fs (sdb1): bread failed in fat_clusters_flush
May 17 18:44:35 ws1 kernel: [19704.359891] usb 2-1.2: new high-speed USB device number 4 using ehci_hcd
May 17 18:44:35 ws1 kernel: [19704.446231] usb 2-1.2: New USB device found, idVendor=0781, idProduct=5567
May 17 18:44:35 ws1 kernel: [19704.446236] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 17 18:44:35 ws1 kernel: [19704.446239] usb 2-1.2: Product: Cruzer Blade
May 17 18:44:35 ws1 kernel: [19704.446242] usb 2-1.2: Manufacturer: SanDisk
May 17 18:44:35 ws1 kernel: [19704.446244] usb 2-1.2: SerialNumber: 4C530399950527116315
May 17 18:44:35 ws1 kernel: [19704.453440] scsi8 : usb-storage 2-1.2:1.0
May 17 18:44:35 ws1 mtp-probe: checking bus 2, device 4: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2"
May 17 18:44:35 ws1 mtp-probe: bus: 2, device: 4 was not an MTP device
May 17 18:44:36 ws1 kernel: [19705.459189] scsi 8:0:0:0: Direct-Access SanDisk Cruzer Blade 1.27 PQ: 0 ANSI: 6
May 17 18:44:36 ws1 kernel: [19705.475991] sd 8:0:0:0: Attached scsi generic sg2 type 0
May 17 18:44:36 ws1 kernel: [19705.476962] sd 8:0:0:0: [sdb] 62530624 512-byte logical blocks: (32.0 GB/29.8 GiB)
May 17 18:44:36 ws1 kernel: [19705.479559] sd 8:0:0:0: [sdb] Write Protect is off
May 17 18:44:36 ws1 kernel: [19705.481196] sd 8:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
May 17 18:44:36 ws1 kernel: [19705.495322] sdb: sdb1
May 17 18:44:36 ws1 kernel: [19705.501606] sd 8:0:0:0: [sdb] Attached SCSI removable disk
May 17 18:44:36 ws1 udisksd[1410]: Mounted /dev/sdb1 at /run/media/ravi/F073-B2E2 on behalf of uid 1000
May 17 18:44:43 ws1 kernel: [19712.822968] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.822971] FAT-fs (sdb1): Filesystem has been set read-only
May 17 18:44:43 ws1 kernel: [19712.823025] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823028] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823030] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823032] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823035] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823037] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823039] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823041] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823133] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823136] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823140] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:44:43 ws1 kernel: [19712.823143] FAT-fs (sdb1): error, fat_bmap_cluster: request beyond EOF (i_pos 488976)
May 17 18:45:06 ws1 udisksd[1410]: Cleaning up mount point /run/media/ravi/F073-B2E2 (device 8:17 is not mounted)
May 17 18:45:06 ws1 udisksd[1410]: Unmounted /dev/sdb1 on behalf of uid 1000
May 17 18:45:09 ws1 dbus-daemon[792]: dbus[792]: [system] Activating service name='net.reactivated.Fprint' (using servicehelper)
May 17 18:45:09 ws1 dbus[792]: [system] Activating service name='net.reactivated.Fprint' (using servicehelper)
May 17 18:45:09 ws1 dbus-daemon[792]: dbus[792]: [system] Successfully activated service 'net.reactivated.Fprint'
May 17 18:45:09 ws1 dbus-daemon[792]: Launching FprintObject
May 17 18:45:09 ws1 dbus[792]: [system] Successfully activated service 'net.reactivated.Fprint'
May 17 18:45:09 ws1 dbus-daemon[792]: ** Message: D-Bus service launched with name: net.reactivated.Fprint
May 17 18:45:09 ws1 dbus-daemon[792]: ** Message: entering main loop
May 17 18:45:09 ws1 dbus-daemon[792]: ** Message: user 'root' claiming the device: 0
May 17 18:45:09 ws1 dbus-daemon[792]: ** Message: now monitoring fd 10
May 17 18:45:09 ws1 dbus-daemon[792]: ** Message: device 0 claim status 0
May 17 18:45:09 ws1 dbus-daemon[792]: ** Message: start verification device 0 finger 7
May 17 18:45:11 ws1 dbus-daemon[792]: ** Message: verify_cb: result verify-swipe-too-short (101)
May 17 18:45:13 ws1 dbus-daemon[792]: ** Message: verify_cb: result verify-match (1)
May 17 18:45:13 ws1 dbus-daemon[792]: ** Message: no longer monitoring fd 10
May 17 18:45:13 ws1 dbus-daemon[792]: ** Message: released device 0
May 17 18:45:43 ws1 dbus-daemon[792]: ** Message: No devices in use, exit
May 17 18:50:47 ws1 kernel: [20076.106395] usb 2-1.2: USB disconnect, device number 4
May 17 19:02:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 19:04:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 19:24:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 19:27:51 ws1 kernel: [22296.304189] [drm:__gen6_gt_force_wake_get] *ERROR* Force wake wait timed out
May 17 19:34:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 19:36:25 ws1 NetworkManager[952]: <warn> nl_recvmsgs() error: (-33) Dump inconsistency detected, interrupted
May 17 19:37:39 ws1 kernel: [22883.228500] BUG: soft lockup - CPU#2 stuck for 22s! [Xorg:950]
May 17 19:37:39 ws1 kernel: [22883.228508] Modules linked in: vfat fat usb_storage fuse ebtable_nat xt_CHECKSUM target_core_mod bridge stp llc ipt_MASQUERADE nf_conntrack_netbios_ns nf_conntrack_broadcast ip6table_mangle ip6t_REJECT nf_conntrack_ipv6 nf_defrag_ipv6 iptable_nat nf_nat iptable_mangle nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ebtable_filter ebtables ip6table_filter ip6_tables be2iscsi iscsi_boot_sysfs rfcomm bnep bnx2i cnic uio cxgb4i cxgb4 cxgb3i cxgb3 mdio libcxgbi ib_iser rdma_cm ib_addr iw_cm ib_cm ib_sa ib_mad ib_core iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi uvcvideo snd_hda_codec_hdmi videobuf2_vmalloc videobuf2_memops snd_hda_codec_conexant videobuf2_core videodev btusb media bluetooth snd_hda_intel snd_hda_codec snd_hwdep snd_seq snd_seq_device arc4 snd_pcm rtl8192ce rtlwifi rtl8192c_common mac80211 snd_page_alloc coretemp snd_timer thinkpad_acpi snd tpm_tis joydev microcode iTCO_wdt iTCO_vendor_support soundcore lpc_ich mfd_core i2c_i801 cfg80211 rfkill tpm tpm_bios mei e1000e vhost_net tun macvtap macvlan kvm_intel kvm binfmt_misc uinput crc32c_intel ghash_clmulni_intel i915 firewire_ohci sdhci_pci i2c_algo_bit sdhci drm_kms_helper firewire_core mmc_core crc_itu_t drm i2c_core wmi video
May 17 19:37:39 ws1 kernel: [22883.228706] irq event stamp: 1362690163
May 17 19:37:39 ws1 kernel: [22883.228710] hardirqs last enabled at (1362690162): [<ffffffff816d483f>] free_debug_processing+0x1c5/0x1fc
May 17 19:37:39 ws1 kernel: [22883.228724] hardirqs last disabled at (1362690163): [<ffffffff816e886a>] apic_timer_interrupt+0x6a/0x80
May 17 19:37:39 ws1 kernel: [22883.228733] softirqs last enabled at (1362513220): [<ffffffff81071d97>] __do_softirq+0x167/0x3d0
May 17 19:37:39 ws1 kernel: [22883.228741] softirqs last disabled at (1362513231): [<ffffffff816e8ffc>] call_softirq+0x1c/0x30
May 17 19:37:39 ws1 kernel: [22883.228749] CPU 2
May 17 19:37:39 ws1 kernel: [22883.228757] Pid: 950, comm: Xorg Not tainted 3.6.10-4.fc18.x86_64.debug #1 LENOVO 41786DQ/41786DQ
May 17 19:37:39 ws1 kernel: [22883.228761] RIP: 0010:[<ffffffff816d4844>] [<ffffffff816d4844>] free_debug_processing+0x1ca/0x1fc
May 17 19:37:39 ws1 kernel: [22883.228770] RSP: 0018:ffff880235003d10 EFLAGS: 00000282
May 17 19:37:39 ws1 kernel: [22883.228774] RAX: ffff88021cca48a0 RBX: ffff8802314d5b60 RCX: 0000000000000002
May 17 19:37:39 ws1 kernel: [22883.228778] RDX: 0000000000002c10 RSI: ffff88021cca4f78 RDI: 0000000000000282
May 17 19:37:39 ws1 kernel: [22883.228782] RBP: ffff880235003d50 R08: 0000000000000000 R09: 0000000000000000
May 17 19:37:39 ws1 kernel: [22883.228785] R10: 0000000000000000 R11: 0000000000000000 R12: ffff880235003c88
May 17 19:37:39 ws1 kernel: [22883.228788] R13: ffffffff816e886f R14: ffff880235003d50 R15: ffff8802314d5b60
May 17 19:37:39 ws1 kernel: [22883.228793] FS: 00007fd016ecb940(0000) GS:ffff880235000000(0000) knlGS:0000000000000000
May 17 19:37:39 ws1 kernel: [22883.228797] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
May 17 19:37:39 ws1 kernel: [22883.228801] CR2: 00007f74bf3ab7f0 CR3: 000000022d8a7000 CR4: 00000000000407e0
May 17 19:37:39 ws1 kernel: [22883.228805] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
May 17 19:37:39 ws1 kernel: [22883.228809] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
May 17 19:37:39 ws1 kernel: [22883.228814] Process Xorg (pid: 950, threadinfo ffff88021ccba000, task ffff88021cca48a0)
May 17 19:37:39 ws1 kernel: [22883.228816] Stack:
May 17 19:37:39 ws1 kernel: [22883.228820] ffffffff82a0f430 ffffffff8158ae87 ffff880235003d40 ffff8800100ee1c0
May 17 19:37:39 ws1 kernel: [22883.228830] ffffea0000403b00 ffff8802314d5b60 ffffffff8158ae87 ffff8802351d8920
May 17 19:37:39 ws1 kernel: [22883.228838] ffff880235003e00 ffffffff816d49b7 ffff8800100ee2b0 ffff8800100ee1c0
May 17 19:37:39 ws1 kernel: [22883.228847] Call Trace:
May 17 19:37:39 ws1 kernel: [22883.228850] <IRQ>
May 17 19:37:39 ws1 kernel: [22883.228854] [<ffffffff8158ae87>] ? __kfree_skb+0x47/0xa0
May 17 19:37:39 ws1 kernel: [22883.228871] [<ffffffff8158ae87>] ? __kfree_skb+0x47/0xa0
May 17 19:37:39 ws1 kernel: [22883.228878] [<ffffffff816d49b7>] __slab_free+0x38/0x371
May 17 19:37:39 ws1 kernel: [22883.228887] [<ffffffff8135847c>] ? debug_check_no_obj_freed+0x16c/0x210
May 17 19:37:39 ws1 kernel: [22883.228898] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:37:39 ws1 kernel: [22883.228906] [<ffffffff8158ae22>] ? skb_release_data+0xf2/0x110
May 17 19:37:39 ws1 kernel: [22883.228914] [<ffffffff8158ae87>] ? __kfree_skb+0x47/0xa0
May 17 19:37:39 ws1 kernel: [22883.228922] [<ffffffff8158ae87>] ? __kfree_skb+0x47/0xa0
May 17 19:37:39 ws1 kernel: [22883.228931] [<ffffffff811b2ba9>] kmem_cache_free+0x269/0x280
May 17 19:37:39 ws1 kernel: [22883.228941] [<ffffffff8158ae87>] __kfree_skb+0x47/0xa0
May 17 19:37:39 ws1 kernel: [22883.228955] [<ffffffff81598832>] net_tx_action+0x92/0x2e0
May 17 19:37:39 ws1 kernel: [22883.228967] [<ffffffff81071d20>] __do_softirq+0xf0/0x3d0
May 17 19:37:39 ws1 kernel: [22883.229007] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:37:39 ws1 kernel: [22883.229015] [<ffffffff816e8ffc>] call_softirq+0x1c/0x30
May 17 19:37:39 ws1 kernel: [22883.229023] [<ffffffff8101c345>] do_softirq+0xa5/0xe0
May 17 19:37:39 ws1 kernel: [22883.229029] [<ffffffff81072375>] irq_exit+0xd5/0xe0
May 17 19:37:39 ws1 kernel: [22883.229038] [<ffffffff816e997e>] smp_apic_timer_interrupt+0x6e/0x99
May 17 19:37:39 ws1 kernel: [22883.229046] [<ffffffff816e886f>] apic_timer_interrupt+0x6f/0x80
May 17 19:37:39 ws1 kernel: [22883.229048] <EOI>
May 17 19:37:39 ws1 kernel: [22883.229051] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:37:39 ws1 kernel: [22883.229065] [<ffffffff816d4844>] ? free_debug_processing+0x1ca/0x1fc
May 17 19:37:39 ws1 kernel: [22883.229106] [<ffffffffa0035aee>] ? drm_gem_free_mmap_offset+0x3e/0x50 [drm]
May 17 19:37:39 ws1 kernel: [22883.229142] [<ffffffffa0035aee>] ? drm_gem_free_mmap_offset+0x3e/0x50 [drm]
May 17 19:37:39 ws1 kernel: [22883.229149] [<ffffffff816d49b7>] __slab_free+0x38/0x371
May 17 19:37:39 ws1 kernel: [22883.229156] [<ffffffff8135847c>] ? debug_check_no_obj_freed+0x16c/0x210
May 17 19:37:39 ws1 kernel: [22883.229165] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:37:39 ws1 kernel: [22883.229200] [<ffffffffa0035aee>] ? drm_gem_free_mmap_offset+0x3e/0x50 [drm]
May 17 19:37:39 ws1 kernel: [22883.229236] [<ffffffffa0035aee>] ? drm_gem_free_mmap_offset+0x3e/0x50 [drm]
May 17 19:37:39 ws1 kernel: [22883.229243] [<ffffffff811b371c>] kfree+0x27c/0x2b0
May 17 19:37:39 ws1 kernel: [22883.229278] [<ffffffffa0035aee>] drm_gem_free_mmap_offset+0x3e/0x50 [drm]
May 17 19:37:39 ws1 kernel: [22883.229320] [<ffffffffa00e761a>] i915_gem_object_truncate+0x3a/0x60 [i915]
May 17 19:37:39 ws1 kernel: [22883.229361] [<ffffffffa00ebc3c>] i915_gem_object_unbind+0x21c/0x2b0 [i915]
May 17 19:37:39 ws1 kernel: [22883.229402] [<ffffffffa00ee9c3>] i915_gem_free_object+0x63/0x210 [i915]
May 17 19:37:39 ws1 kernel: [22883.229438] [<ffffffffa0035b2a>] drm_gem_object_free+0x2a/0x30 [drm]
May 17 19:37:39 ws1 kernel: [22883.229474] [<ffffffffa0036030>] drm_gem_handle_delete+0x100/0x130 [drm]
May 17 19:37:39 ws1 kernel: [22883.229510] [<ffffffffa00364a8>] drm_gem_close_ioctl+0x28/0x30 [drm]
May 17 19:37:39 ws1 kernel: [22883.229546] [<ffffffffa0034443>] drm_ioctl+0x4d3/0x580 [drm]
May 17 19:37:39 ws1 kernel: [22883.229555] [<ffffffff810d6bbd>] ? trace_hardirqs_on+0xd/0x10
May 17 19:37:39 ws1 kernel: [22883.229607] [<ffffffffa0036480>] ? drm_gem_destroy+0x60/0x60 [drm]
May 17 19:37:39 ws1 kernel: [22883.229615] [<ffffffff816dbd8b>] ? __mutex_unlock_slowpath+0xdb/0x170
May 17 19:37:39 ws1 kernel: [22883.229623] [<ffffffff8118ed1c>] ? remove_vma+0x7c/0xa0
May 17 19:37:39 ws1 kernel: [22883.229630] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:37:39 ws1 kernel: [22883.229636] [<ffffffff81021e29>] ? sched_clock+0x9/0x10
May 17 19:37:39 ws1 kernel: [22883.229646] [<ffffffff811e2ea9>] do_vfs_ioctl+0x99/0x5a0
May 17 19:37:39 ws1 kernel: [22883.229654] [<ffffffff810d10cf>] ? lock_release_holdtime.part.26+0xf/0x180
May 17 19:37:39 ws1 kernel: [22883.229663] [<ffffffff811cfc1a>] ? fget_light+0x3ea/0x520
May 17 19:37:39 ws1 kernel: [22883.229672] [<ffffffff811e3449>] sys_ioctl+0x99/0xa0
May 17 19:37:39 ws1 kernel: [22883.229679] [<ffffffff816e7d29>] system_call_fastpath+0x16/0x1b
May 17 19:37:39 ws1 kernel: [22883.229683] Code: 89 df e8 10 b8 ad ff 41 f7 c7 00 02 00 00 75 11 4c 89 ff 57 9d 66 66 90 66 90 e8 28 bf 9f ff eb 2a e8 71 23 a0 ff 4c 89 ff 57 9d <66> 66 90 66 90 eb 19 4c 89 ea 48 c7 c6 f8 6d 9f 81 4c 89 e7 31
May 17 19:37:46 ws1 sh[786]: abrt-dump-oops: Found oopses: 1
May 17 19:37:46 ws1 sh[786]: abrt-dump-oops: Creating problem directories
May 17 19:37:46 ws1 abrtd: Directory 'oops-2015-05-17-19:37:46-18554-1' creation detected
May 17 19:37:46 ws1 abrt-dump-oops: Reported 1 kernel oopses to Abrt
May 17 19:37:46 ws1 abrtd: Can't find a meaningful backtrace for hashing in '.'
May 17 19:37:46 ws1 abrtd: Looking for kernel package
May 17 19:37:46 ws1 abrtd: Can't find kernel package corresponding to '3.6.10-4.fc18.x86_64.debug'
May 17 19:37:46 ws1 abrtd: Can't record package version data (pkg_version, pkg_release, ...).
May 17 19:37:46 ws1 abrtd: 'post-create' on '/var/spool/abrt/oops-2015-05-17-19:37:46-18554-1' exited with 1
May 17 19:37:46 ws1 abrtd: Corrupted or bad directory '/var/spool/abrt/oops-2015-05-17-19:37:46-18554-1', deleting
May 17 19:40:15 ws1 kernel: [23038.992201] BUG: soft lockup - CPU#2 stuck for 22s! [Xorg:950]
May 17 19:40:15 ws1 kernel: [23038.992208] Modules linked in: vfat fat usb_storage fuse ebtable_nat xt_CHECKSUM target_core_mod bridge stp llc ipt_MASQUERADE nf_conntrack_netbios_ns nf_conntrack_broadcast ip6table_mangle ip6t_REJECT nf_conntrack_ipv6 nf_defrag_ipv6 iptable_nat nf_nat iptable_mangle nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ebtable_filter ebtables ip6table_filter ip6_tables be2iscsi iscsi_boot_sysfs rfcomm bnep bnx2i cnic uio cxgb4i cxgb4 cxgb3i cxgb3 mdio libcxgbi ib_iser rdma_cm ib_addr iw_cm ib_cm ib_sa ib_mad ib_core iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi uvcvideo snd_hda_codec_hdmi videobuf2_vmalloc videobuf2_memops snd_hda_codec_conexant videobuf2_core videodev btusb media bluetooth snd_hda_intel snd_hda_codec snd_hwdep snd_seq snd_seq_device arc4 snd_pcm rtl8192ce rtlwifi rtl8192c_common mac80211 snd_page_alloc coretemp snd_timer thinkpad_acpi snd tpm_tis joydev microcode iTCO_wdt iTCO_vendor_support soundcore lpc_ich mfd_core i2c_i801 cfg80211 rfkill tpm tpm_bios mei e1000e vhost_net tun macvtap macvlan kvm_intel kvm binfmt_misc uinput crc32c_intel ghash_clmulni_intel i915 firewire_ohci sdhci_pci i2c_algo_bit sdhci drm_kms_helper firewire_core mmc_core crc_itu_t drm i2c_core wmi video
May 17 19:40:15 ws1 kernel: [23038.992367] irq event stamp: 1380942529
May 17 19:40:15 ws1 kernel: [23038.992370] hardirqs last enabled at (1380942528): [<ffffffff816df270>] restore_args+0x0/0x30
May 17 19:40:15 ws1 kernel: [23038.992382] hardirqs last disabled at (1380942529): [<ffffffff816e886a>] apic_timer_interrupt+0x6a/0x80
May 17 19:40:15 ws1 kernel: [23038.992390] softirqs last enabled at (1380722444): [<ffffffff81071d97>] __do_softirq+0x167/0x3d0
May 17 19:40:15 ws1 kernel: [23038.992397] softirqs last disabled at (1380722465): [<ffffffff816e8ffc>] call_softirq+0x1c/0x30
May 17 19:40:15 ws1 kernel: [23038.992403] CPU 2
May 17 19:40:15 ws1 kernel: [23038.992409] Pid: 950, comm: Xorg Not tainted 3.6.10-4.fc18.x86_64.debug #1 LENOVO 41786DQ/41786DQ
May 17 19:40:15 ws1 kernel: [23038.992413] RIP: 0010:[<ffffffff816d4844>] [<ffffffff816d4844>] free_debug_processing+0x1ca/0x1fc
May 17 19:40:15 ws1 kernel: [23038.992422] RSP: 0018:ffff880235003720 EFLAGS: 00000282
May 17 19:40:15 ws1 kernel: [23038.992425] RAX: ffff88021cca48a0 RBX: ffffffff816df270 RCX: 0000000000000002
May 17 19:40:15 ws1 kernel: [23038.992428] RDX: 0000000000005570 RSI: ffff88021cca5058 RDI: 0000000000000282
May 17 19:40:15 ws1 kernel: [23038.992431] RBP: ffff880235003760 R08: 0000000000000000 R09: 0000000000000000
May 17 19:40:15 ws1 kernel: [23038.992434] R10: 0000000000000000 R11: 0000000000000000 R12: ffff880235003698
May 17 19:40:15 ws1 kernel: [23038.992436] R13: ffffffff816e886f R14: ffff880235003760 R15: ffff8802314d5b60
May 17 19:40:15 ws1 kernel: [23038.992440] FS: 00007fd016ecb940(0000) GS:ffff880235000000(0000) knlGS:0000000000000000
May 17 19:40:15 ws1 kernel: [23038.992444] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
May 17 19:40:15 ws1 kernel: [23038.992447] CR2: 00007f75019e5000 CR3: 000000022d8a7000 CR4: 00000000000407e0
May 17 19:40:15 ws1 kernel: [23038.992450] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
May 17 19:40:15 ws1 kernel: [23038.992453] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
May 17 19:40:15 ws1 kernel: [23038.992457] Process Xorg (pid: 950, threadinfo ffff88021ccba000, task ffff88021cca48a0)
May 17 19:40:15 ws1 kernel: [23038.992459] Stack:
May 17 19:40:15 ws1 kernel: [23038.992461] ffffffff82a5db30 ffffffff8158af1c ffff880235003750 ffff88000ca56ac0
May 17 19:40:15 ws1 kernel: [23038.992470] ffffea0000329500 ffff8802314d5b60 ffffffff8158af1c ffff8802351d8920
May 17 19:40:15 ws1 kernel: [23038.992477] ffff880235003810 ffffffff816d49b7 ffff88000ca56bb0 ffff88000ca56ac0
May 17 19:40:15 ws1 kernel: [23038.992484] Call Trace:
May 17 19:40:15 ws1 kernel: [23038.992486] <IRQ>
May 17 19:40:15 ws1 kernel: [23038.992489] [<ffffffff8158af1c>] ? kfree_skb_partial+0x3c/0x50
May 17 19:40:15 ws1 kernel: [23038.992504] [<ffffffff8158af1c>] ? kfree_skb_partial+0x3c/0x50
May 17 19:40:15 ws1 kernel: [23038.992509] [<ffffffff816d49b7>] __slab_free+0x38/0x371
May 17 19:40:15 ws1 kernel: [23038.992517] [<ffffffff8135847c>] ? debug_check_no_obj_freed+0x16c/0x210
May 17 19:40:15 ws1 kernel: [23038.992525] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:40:15 ws1 kernel: [23038.992533] [<ffffffff815f9718>] ? tcp_transmit_skb+0x3f8/0xa50
May 17 19:40:15 ws1 kernel: [23038.992539] [<ffffffff8158af1c>] ? kfree_skb_partial+0x3c/0x50
May 17 19:40:15 ws1 kernel: [23038.992546] [<ffffffff8158af1c>] ? kfree_skb_partial+0x3c/0x50
May 17 19:40:15 ws1 kernel: [23038.992553] [<ffffffff811b2ba9>] kmem_cache_free+0x269/0x280
May 17 19:40:15 ws1 kernel: [23038.992560] [<ffffffff8158af1c>] kfree_skb_partial+0x3c/0x50
May 17 19:40:15 ws1 kernel: [23038.992565] [<ffffffff815f5e98>] tcp_rcv_established+0x228/0x900
May 17 19:40:15 ws1 kernel: [23038.992572] [<ffffffff81601654>] tcp_v4_do_rcv+0x2a4/0x500
May 17 19:40:15 ws1 kernel: [23038.992578] [<ffffffff81602c4b>] tcp_v4_rcv+0x81b/0xd00
May 17 19:40:15 ws1 kernel: [23038.992586] [<ffffffff815d802c>] ? ip_local_deliver_finish+0x4c/0x4d0
May 17 19:40:15 ws1 kernel: [23038.992592] [<ffffffff815d817e>] ip_local_deliver_finish+0x19e/0x4d0
May 17 19:40:15 ws1 kernel: [23038.992597] [<ffffffff815d802c>] ? ip_local_deliver_finish+0x4c/0x4d0
May 17 19:40:15 ws1 kernel: [23038.992603] [<ffffffff815d8ed7>] ip_local_deliver+0x47/0x80
May 17 19:40:15 ws1 kernel: [23038.992608] [<ffffffff815d8610>] ip_rcv_finish+0x160/0x790
May 17 19:40:15 ws1 kernel: [23038.992614] [<ffffffff815d9124>] ip_rcv+0x214/0x320
May 17 19:40:15 ws1 kernel: [23038.992622] [<ffffffff81598eba>] __netif_receive_skb+0x43a/0xda0
May 17 19:40:15 ws1 kernel: [23038.992628] [<ffffffff81598cc8>] ? __netif_receive_skb+0x248/0xda0
May 17 19:40:15 ws1 kernel: [23038.992635] [<ffffffff810ac5bf>] ? local_clock+0x6f/0x80
May 17 19:40:15 ws1 kernel: [23038.992642] [<ffffffff8159a795>] netif_receive_skb+0x35/0x230
May 17 19:40:15 ws1 kernel: [23038.992667] [<ffffffffa0294002>] ? ieee80211_data_to_8023+0x182/0x420 [cfg80211]
May 17 19:40:15 ws1 kernel: [23038.992721] [<ffffffffa0377f43>] ieee80211_deliver_skb.isra.31+0xa3/0x210 [mac80211]
May 17 19:40:15 ws1 kernel: [23038.992769] [<ffffffffa0379768>] ieee80211_rx_handlers+0xfa8/0x27b0 [mac80211]
May 17 19:40:15 ws1 kernel: [23038.992776] [<ffffffff81021e29>] ? sched_clock+0x9/0x10
May 17 19:40:15 ws1 kernel: [23038.992783] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:40:15 ws1 kernel: [23038.992790] [<ffffffff816dedbf>] ? _raw_spin_unlock_irqrestore+0x3f/0x80
May 17 19:40:15 ws1 kernel: [23038.992797] [<ffffffff810d6ac2>] ? trace_hardirqs_on_caller+0xb2/0x1a0
May 17 19:40:15 ws1 kernel: [23038.992803] [<ffffffff810d6bbd>] ? trace_hardirqs_on+0xd/0x10
May 17 19:40:15 ws1 kernel: [23038.992828] [<ffffffffa037b0c6>] ieee80211_prepare_and_rx_handle+0x156/0xa10 [mac80211]
May 17 19:40:15 ws1 kernel: [23038.992839] [<ffffffffa037c042>] ieee80211_rx+0x6c2/0xd10 [mac80211]
May 17 19:40:15 ws1 kernel: [23038.992850] [<ffffffffa037ba43>] ? ieee80211_rx+0xc3/0xd10 [mac80211]
May 17 19:40:15 ws1 kernel: [23038.992852] [<ffffffff816dedbf>] ? _raw_spin_unlock_irqrestore+0x3f/0x80
May 17 19:40:15 ws1 kernel: [23038.992855] [<ffffffff810d6ac2>] ? trace_hardirqs_on_caller+0xb2/0x1a0
May 17 19:40:15 ws1 kernel: [23038.992865] [<ffffffffa0352223>] ieee80211_tasklet_handler+0xc3/0x320 [mac80211]
May 17 19:40:15 ws1 kernel: [23038.992867] [<ffffffff81072612>] ? tasklet_action+0x52/0x110
May 17 19:40:15 ws1 kernel: [23038.992869] [<ffffffff81072643>] tasklet_action+0x83/0x110
May 17 19:40:15 ws1 kernel: [23038.992871] [<ffffffff81071d20>] __do_softirq+0xf0/0x3d0
May 17 19:40:15 ws1 kernel: [23038.992873] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:40:15 ws1 kernel: [23038.992875] [<ffffffff816e8ffc>] call_softirq+0x1c/0x30
May 17 19:40:15 ws1 kernel: [23038.992878] [<ffffffff8101c345>] do_softirq+0xa5/0xe0
May 17 19:40:15 ws1 kernel: [23038.992880] [<ffffffff81072375>] irq_exit+0xd5/0xe0
May 17 19:40:15 ws1 kernel: [23038.992883] [<ffffffff816e997e>] smp_apic_timer_interrupt+0x6e/0x99
May 17 19:40:15 ws1 kernel: [23038.992885] [<ffffffff816e886f>] apic_timer_interrupt+0x6f/0x80
May 17 19:40:15 ws1 kernel: [23038.992886] <EOI>
May 17 19:40:15 ws1 kernel: [23038.992886] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:40:15 ws1 kernel: [23038.992891] [<ffffffff816d4844>] ? free_debug_processing+0x1ca/0x1fc
May 17 19:40:15 ws1 kernel: [23038.992906] [<ffffffffa00eea0c>] ? i915_gem_free_object+0xac/0x210 [i915]
May 17 19:40:15 ws1 kernel: [23038.992917] [<ffffffffa00eea0c>] ? i915_gem_free_object+0xac/0x210 [i915]
May 17 19:40:15 ws1 kernel: [23038.992919] [<ffffffff816d49b7>] __slab_free+0x38/0x371
May 17 19:40:15 ws1 kernel: [23038.992921] [<ffffffff8135847c>] ? debug_check_no_obj_freed+0x16c/0x210
May 17 19:40:15 ws1 kernel: [23038.992924] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:40:15 ws1 kernel: [23038.992935] [<ffffffffa00eea0c>] ? i915_gem_free_object+0xac/0x210 [i915]
May 17 19:40:15 ws1 kernel: [23038.992947] [<ffffffffa00eea0c>] ? i915_gem_free_object+0xac/0x210 [i915]
May 17 19:40:15 ws1 kernel: [23038.992949] [<ffffffff811b371c>] kfree+0x27c/0x2b0
May 17 19:40:15 ws1 kernel: [23038.992960] [<ffffffffa00eea0c>] i915_gem_free_object+0xac/0x210 [i915]
May 17 19:40:15 ws1 kernel: [23038.992972] [<ffffffffa0035b2a>] drm_gem_object_free+0x2a/0x30 [drm]
May 17 19:40:15 ws1 kernel: [23038.992982] [<ffffffffa0036030>] drm_gem_handle_delete+0x100/0x130 [drm]
May 17 19:40:15 ws1 kernel: [23038.992993] [<ffffffffa00364a8>] drm_gem_close_ioctl+0x28/0x30 [drm]
May 17 19:40:15 ws1 kernel: [23038.993003] [<ffffffffa0034443>] drm_ioctl+0x4d3/0x580 [drm]
May 17 19:40:15 ws1 kernel: [23038.993005] [<ffffffff810d6bbd>] ? trace_hardirqs_on+0xd/0x10
May 17 19:40:15 ws1 kernel: [23038.993020] [<ffffffffa0036480>] ? drm_gem_destroy+0x60/0x60 [drm]
May 17 19:40:15 ws1 kernel: [23038.993022] [<ffffffff816dbd8b>] ? __mutex_unlock_slowpath+0xdb/0x170
May 17 19:40:15 ws1 kernel: [23038.993024] [<ffffffff8118ed1c>] ? remove_vma+0x7c/0xa0
May 17 19:40:15 ws1 kernel: [23038.993026] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:40:15 ws1 kernel: [23038.993028] [<ffffffff81021e29>] ? sched_clock+0x9/0x10
May 17 19:40:15 ws1 kernel: [23038.993031] [<ffffffff811e2ea9>] do_vfs_ioctl+0x99/0x5a0
May 17 19:40:15 ws1 kernel: [23038.993034] [<ffffffff810d10cf>] ? lock_release_holdtime.part.26+0xf/0x180
May 17 19:40:15 ws1 kernel: [23038.993036] [<ffffffff811cfc1a>] ? fget_light+0x3ea/0x520
May 17 19:40:15 ws1 kernel: [23038.993039] [<ffffffff811e3449>] sys_ioctl+0x99/0xa0
May 17 19:40:15 ws1 kernel: [23038.993041] [<ffffffff816e7d29>] system_call_fastpath+0x16/0x1b
May 17 19:40:15 ws1 kernel: [23038.993042] Code: 89 df e8 10 b8 ad ff 41 f7 c7 00 02 00 00 75 11 4c 89 ff 57 9d 66 66 90 66 90 e8 28 bf 9f ff eb 2a e8 71 23 a0 ff 4c 89 ff 57 9d <66> 66 90 66 90 eb 19 4c 89 ea 48 c7 c6 f8 6d 9f 81 4c 89 e7 31
May 17 19:40:16 ws1 sh[786]: abrt-dump-oops: Found oopses: 1
May 17 19:40:16 ws1 sh[786]: abrt-dump-oops: Creating problem directories
May 17 19:40:16 ws1 abrtd: Directory 'oops-2015-05-17-19:40:16-18614-1' creation detected
May 17 19:40:16 ws1 abrt-dump-oops: Reported 1 kernel oopses to Abrt
May 17 19:40:16 ws1 abrtd: Can't find a meaningful backtrace for hashing in '.'
May 17 19:40:16 ws1 abrtd: Looking for kernel package
May 17 19:40:16 ws1 abrtd: Can't find kernel package corresponding to '3.6.10-4.fc18.x86_64.debug'
May 17 19:40:16 ws1 abrtd: Can't record package version data (pkg_version, pkg_release, ...).
May 17 19:40:16 ws1 abrtd: 'post-create' on '/var/spool/abrt/oops-2015-05-17-19:40:16-18614-1' exited with 1
May 17 19:40:16 ws1 abrtd: Corrupted or bad directory '/var/spool/abrt/oops-2015-05-17-19:40:16-18614-1', deleting
May 17 19:41:07 ws1 kernel: [23090.913770] BUG: soft lockup - CPU#2 stuck for 23s! [Xorg:950]
May 17 19:41:07 ws1 kernel: [23090.913779] Modules linked in: vfat fat usb_storage fuse ebtable_nat xt_CHECKSUM target_core_mod bridge stp llc ipt_MASQUERADE nf_conntrack_netbios_ns nf_conntrack_broadcast ip6table_mangle ip6t_REJECT nf_conntrack_ipv6 nf_defrag_ipv6 iptable_nat nf_nat iptable_mangle nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ebtable_filter ebtables ip6table_filter ip6_tables be2iscsi iscsi_boot_sysfs rfcomm bnep bnx2i cnic uio cxgb4i cxgb4 cxgb3i cxgb3 mdio libcxgbi ib_iser rdma_cm ib_addr iw_cm ib_cm ib_sa ib_mad ib_core iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi uvcvideo snd_hda_codec_hdmi videobuf2_vmalloc videobuf2_memops snd_hda_codec_conexant videobuf2_core videodev btusb media bluetooth snd_hda_intel snd_hda_codec snd_hwdep snd_seq snd_seq_device arc4 snd_pcm rtl8192ce rtlwifi rtl8192c_common mac80211 snd_page_alloc coretemp snd_timer thinkpad_acpi snd tpm_tis joydev microcode iTCO_wdt iTCO_vendor_support soundcore lpc_ich mfd_core i2c_i801 cfg80211 rfkill tpm tpm_bios mei e1000e vhost_net tun macvtap macvlan kvm_intel kvm binfmt_misc uinput crc32c_intel ghash_clmulni_intel i915 firewire_ohci sdhci_pci i2c_algo_bit sdhci drm_kms_helper firewire_core mmc_core crc_itu_t drm i2c_core wmi video
May 17 19:41:07 ws1 kernel: [23090.914023] irq event stamp: 1385132893
May 17 19:41:07 ws1 kernel: [23090.914028] hardirqs last enabled at (1385132892): [<ffffffff816df270>] restore_args+0x0/0x30
May 17 19:41:07 ws1 kernel: [23090.914044] hardirqs last disabled at (1385132893): [<ffffffff816e886a>] apic_timer_interrupt+0x6a/0x80
May 17 19:41:07 ws1 kernel: [23090.914053] softirqs last enabled at (1384101774): [<ffffffff81071d97>] __do_softirq+0x167/0x3d0
May 17 19:41:07 ws1 kernel: [23090.914061] softirqs last disabled at (1384101785): [<ffffffff816e8ffc>] call_softirq+0x1c/0x30
May 17 19:41:07 ws1 kernel: [23090.914069] CPU 2
May 17 19:41:07 ws1 kernel: [23090.914077] Pid: 950, comm: Xorg Not tainted 3.6.10-4.fc18.x86_64.debug #1 LENOVO 41786DQ/41786DQ
May 17 19:41:07 ws1 kernel: [23090.914081] RIP: 0010:[<ffffffff816d543f>] [<ffffffff816d543f>] __slab_alloc+0x525/0x58f
May 17 19:41:07 ws1 kernel: [23090.914092] RSP: 0018:ffff880235003620 EFLAGS: 00000282
May 17 19:41:07 ws1 kernel: [23090.914096] RAX: ffff88021cca48a0 RBX: ffffffff816df270 RCX: 0000000000000002
May 17 19:41:07 ws1 kernel: [23090.914100] RDX: 0000000000005570 RSI: ffff88021cca5090 RDI: 0000000000000282
May 17 19:41:07 ws1 kernel: [23090.914103] RBP: ffff880235003710 R08: 0000000000000000 R09: 0000000000000000
May 17 19:41:07 ws1 kernel: [23090.914107] R10: 0000000000000000 R11: 0000000000000000 R12: ffff880235003598
May 17 19:41:07 ws1 kernel: [23090.914110] R13: ffffffff816e886f R14: ffff880235003710 R15: ffff88023480b180
May 17 19:41:07 ws1 kernel: [23090.914115] FS: 00007fd016ecb940(0000) GS:ffff880235000000(0000) knlGS:0000000000000000
May 17 19:41:07 ws1 kernel: [23090.914119] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
May 17 19:41:07 ws1 kernel: [23090.914123] CR2: 00007f750795a000 CR3: 000000022d8a7000 CR4: 00000000000407e0
May 17 19:41:07 ws1 kernel: [23090.914127] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
May 17 19:41:07 ws1 kernel: [23090.914131] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
May 17 19:41:07 ws1 kernel: [23090.914135] Process Xorg (pid: 950, threadinfo ffff88021ccba000, task ffff88021cca48a0)
May 17 19:41:07 ws1 kernel: [23090.914138] Stack:
May 17 19:41:07 ws1 kernel: [23090.914141] 00000000ffffffff ffff880026845440 ffff88000dfb44a8 ffffffff810d6ac2
May 17 19:41:07 ws1 kernel: [23090.914151] ffff8802351d8920 ffff8802314d5b60 ffff880235003660 0000000000000000
May 17 19:41:07 ws1 kernel: [23090.914160] ffff8802351d7a70 ffffffff00000282 ffff880200000000 ffffffff8158bbbb
May 17 19:41:07 ws1 kernel: [23090.914168] Call Trace:
May 17 19:41:07 ws1 kernel: [23090.914172] <IRQ>
May 17 19:41:07 ws1 kernel: [23090.914175] [<ffffffff810d6ac2>] ? trace_hardirqs_on_caller+0xb2/0x1a0
May 17 19:41:07 ws1 kernel: [23090.914196] [<ffffffff8158bbbb>] ? __alloc_skb+0x8b/0x2a0
May 17 19:41:07 ws1 kernel: [23090.914205] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:41:07 ws1 kernel: [23090.914213] [<ffffffff8158bb87>] ? __alloc_skb+0x57/0x2a0
May 17 19:41:07 ws1 kernel: [23090.914223] [<ffffffff811b69d8>] __kmalloc_node_track_caller+0xe8/0x320
May 17 19:41:07 ws1 kernel: [23090.914230] [<ffffffff81021e29>] ? sched_clock+0x9/0x10
May 17 19:41:07 ws1 kernel: [23090.914238] [<ffffffff8158bbbb>] ? __alloc_skb+0x8b/0x2a0
May 17 19:41:07 ws1 kernel: [23090.914246] [<ffffffff8158b0fc>] __kmalloc_reserve+0x3c/0xa0
May 17 19:41:07 ws1 kernel: [23090.914254] [<ffffffff8158bb87>] ? __alloc_skb+0x57/0x2a0
May 17 19:41:07 ws1 kernel: [23090.914262] [<ffffffff8158bbbb>] __alloc_skb+0x8b/0x2a0
May 17 19:41:07 ws1 kernel: [23090.914270] [<ffffffff815846c0>] ? sock_def_wakeup+0x1b0/0x1b0
May 17 19:41:07 ws1 kernel: [23090.914278] [<ffffffff8158af1c>] ? kfree_skb_partial+0x3c/0x50
May 17 19:41:07 ws1 kernel: [23090.914288] [<ffffffff815fc34b>] tcp_send_ack+0x3b/0xf0
May 17 19:41:07 ws1 kernel: [23090.914298] [<ffffffff815ee49e>] __tcp_ack_snd_check+0x5e/0xa0
May 17 19:41:07 ws1 kernel: [23090.914305] [<ffffffff815f5fa6>] tcp_rcv_established+0x336/0x900
May 17 19:41:07 ws1 kernel: [23090.914314] [<ffffffff81601654>] tcp_v4_do_rcv+0x2a4/0x500
May 17 19:41:07 ws1 kernel: [23090.914322] [<ffffffff81602c4b>] tcp_v4_rcv+0x81b/0xd00
May 17 19:41:07 ws1 kernel: [23090.914330] [<ffffffff815d802c>] ? ip_local_deliver_finish+0x4c/0x4d0
May 17 19:41:07 ws1 kernel: [23090.914338] [<ffffffff815d817e>] ip_local_deliver_finish+0x19e/0x4d0
May 17 19:41:07 ws1 kernel: [23090.914344] [<ffffffff815d802c>] ? ip_local_deliver_finish+0x4c/0x4d0
May 17 19:41:07 ws1 kernel: [23090.914352] [<ffffffff815d8ed7>] ip_local_deliver+0x47/0x80
May 17 19:41:07 ws1 kernel: [23090.914358] [<ffffffff815d8610>] ip_rcv_finish+0x160/0x790
May 17 19:41:07 ws1 kernel: [23090.914365] [<ffffffff815d9124>] ip_rcv+0x214/0x320
May 17 19:41:07 ws1 kernel: [23090.914375] [<ffffffff81598eba>] __netif_receive_skb+0x43a/0xda0
May 17 19:41:07 ws1 kernel: [23090.914383] [<ffffffff81598cc8>] ? __netif_receive_skb+0x248/0xda0
May 17 19:41:07 ws1 kernel: [23090.914392] [<ffffffff810ac5bf>] ? local_clock+0x6f/0x80
May 17 19:41:07 ws1 kernel: [23090.914401] [<ffffffff8159a795>] netif_receive_skb+0x35/0x230
May 17 19:41:07 ws1 kernel: [23090.914435] [<ffffffffa0294002>] ? ieee80211_data_to_8023+0x182/0x420 [cfg80211]
May 17 19:41:07 ws1 kernel: [23090.914483] [<ffffffffa0377f43>] ieee80211_deliver_skb.isra.31+0xa3/0x210 [mac80211]
May 17 19:41:07 ws1 kernel: [23090.914525] [<ffffffffa0379768>] ieee80211_rx_handlers+0xfa8/0x27b0 [mac80211]
May 17 19:41:07 ws1 kernel: [23090.914531] [<ffffffff81021e29>] ? sched_clock+0x9/0x10
May 17 19:41:07 ws1 kernel: [23090.914540] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:41:07 ws1 kernel: [23090.914548] [<ffffffff816dedbf>] ? _raw_spin_unlock_irqrestore+0x3f/0x80
May 17 19:41:07 ws1 kernel: [23090.914557] [<ffffffff810d6ac2>] ? trace_hardirqs_on_caller+0xb2/0x1a0
May 17 19:41:07 ws1 kernel: [23090.914565] [<ffffffff810d6bbd>] ? trace_hardirqs_on+0xd/0x10
May 17 19:41:07 ws1 kernel: [23090.914605] [<ffffffffa037b0c6>] ieee80211_prepare_and_rx_handle+0x156/0xa10 [mac80211]
May 17 19:41:07 ws1 kernel: [23090.914647] [<ffffffffa037c042>] ieee80211_rx+0x6c2/0xd10 [mac80211]
May 17 19:41:07 ws1 kernel: [23090.914700] [<ffffffffa037ba43>] ? ieee80211_rx+0xc3/0xd10 [mac80211]
May 17 19:41:07 ws1 kernel: [23090.914714] [<ffffffff816dedbf>] ? _raw_spin_unlock_irqrestore+0x3f/0x80
May 17 19:41:07 ws1 kernel: [23090.914729] [<ffffffff810d6ac2>] ? trace_hardirqs_on_caller+0xb2/0x1a0
May 17 19:41:07 ws1 kernel: [23090.914775] [<ffffffffa0352223>] ieee80211_tasklet_handler+0xc3/0x320 [mac80211]
May 17 19:41:07 ws1 kernel: [23090.914782] [<ffffffff81072612>] ? tasklet_action+0x52/0x110
May 17 19:41:07 ws1 kernel: [23090.914789] [<ffffffff81072643>] tasklet_action+0x83/0x110
May 17 19:41:07 ws1 kernel: [23090.914796] [<ffffffff81071d20>] __do_softirq+0xf0/0x3d0
May 17 19:41:07 ws1 kernel: [23090.914802] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:41:07 ws1 kernel: [23090.914810] [<ffffffff816e8ffc>] call_softirq+0x1c/0x30
May 17 19:41:07 ws1 kernel: [23090.914819] [<ffffffff8101c345>] do_softirq+0xa5/0xe0
May 17 19:41:07 ws1 kernel: [23090.914825] [<ffffffff81072375>] irq_exit+0xd5/0xe0
May 17 19:41:07 ws1 kernel: [23090.914833] [<ffffffff816e997e>] smp_apic_timer_interrupt+0x6e/0x99
May 17 19:41:07 ws1 kernel: [23090.914840] [<ffffffff816e886f>] apic_timer_interrupt+0x6f/0x80
May 17 19:41:07 ws1 kernel: [23090.914844] <EOI>
May 17 19:41:07 ws1 kernel: [23090.914847] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:41:07 ws1 kernel: [23090.914861] [<ffffffff816d4844>] ? free_debug_processing+0x1ca/0x1fc
May 17 19:41:07 ws1 kernel: [23090.914905] [<ffffffffa003ff9f>] ? drm_mm_put_block+0x3f/0x70 [drm]
May 17 19:41:07 ws1 kernel: [23090.914959] [<ffffffffa003ff9f>] ? drm_mm_put_block+0x3f/0x70 [drm]
May 17 19:41:07 ws1 kernel: [23090.914970] [<ffffffff816d49b7>] __slab_free+0x38/0x371
May 17 19:41:07 ws1 kernel: [23090.914999] [<ffffffff8135847c>] ? debug_check_no_obj_freed+0x16c/0x210
May 17 19:41:07 ws1 kernel: [23090.915011] [<ffffffff810d6992>] ? mark_held_locks+0xb2/0x130
May 17 19:41:07 ws1 kernel: [23090.915064] [<ffffffffa003ff9f>] ? drm_mm_put_block+0x3f/0x70 [drm]
May 17 19:41:07 ws1 kernel: [23090.915101] [<ffffffffa003ff9f>] ? drm_mm_put_block+0x3f/0x70 [drm]
May 17 19:41:07 ws1 kernel: [23090.915108] [<ffffffff811b371c>] kfree+0x27c/0x2b0
May 17 19:41:07 ws1 kernel: [23090.915144] [<ffffffffa003ff9f>] drm_mm_put_block+0x3f/0x70 [drm]
May 17 19:41:07 ws1 kernel: [23090.915189] [<ffffffffa00ebb3f>] i915_gem_object_unbind+0x11f/0x2b0 [i915]
May 17 19:41:07 ws1 kernel: [23090.915229] [<ffffffffa00ee9c3>] i915_gem_free_object+0x63/0x210 [i915]
May 17 19:41:07 ws1 kernel: [23090.915265] [<ffffffffa0035b2a>] drm_gem_object_free+0x2a/0x30 [drm]
May 17 19:41:07 ws1 kernel: [23090.915301] [<ffffffffa0036030>] drm_gem_handle_delete+0x100/0x130 [drm]
May 17 19:41:07 ws1 kernel: [23090.915337] [<ffffffffa00364a8>] drm_gem_close_ioctl+0x28/0x30 [drm]
May 17 19:41:07 ws1 kernel: [23090.915372] [<ffffffffa0034443>] drm_ioctl+0x4d3/0x580 [drm]
May 17 19:41:07 ws1 kernel: [23090.915380] [<ffffffff810d6bbd>] ? trace_hardirqs_on+0xd/0x10
May 17 19:41:07 ws1 kernel: [23090.915430] [<ffffffffa0036480>] ? drm_gem_destroy+0x60/0x60 [drm]
May 17 19:41:07 ws1 kernel: [23090.915438] [<ffffffff816dbd8b>] ? __mutex_unlock_slowpath+0xdb/0x170
May 17 19:41:07 ws1 kernel: [23090.915446] [<ffffffff8118ed1c>] ? remove_vma+0x7c/0xa0
May 17 19:41:07 ws1 kernel: [23090.915453] [<ffffffff81021db3>] ? native_sched_clock+0x13/0x80
May 17 19:41:07 ws1 kernel: [23090.915459] [<ffffffff81021e29>] ? sched_clock+0x9/0x10
May 17 19:41:07 ws1 kernel: [23090.915469] [<ffffffff811e2ea9>] do_vfs_ioctl+0x99/0x5a0
May 17 19:41:07 ws1 kernel: [23090.915478] [<ffffffff810d10cf>] ? lock_release_holdtime.part.26+0xf/0x180
May 17 19:41:07 ws1 kernel: [23090.915487] [<ffffffff811cfc1a>] ? fget_light+0x3ea/0x520
May 17 19:41:07 ws1 kernel: [23090.915495] [<ffffffff811e3449>] sys_ioctl+0x99/0xa0
May 17 19:41:07 ws1 kernel: [23090.915503] [<ffffffff816e7d29>] system_call_fastpath+0x16/0x1b
May 17 19:41:07 ws1 kernel: [23090.915507] Code: 0f 84 bb fc ff ff eb 9b 48 8b bd 78 ff ff ff 57 9d 66 66 90 66 90 e8 31 b3 9f ff eb 63 e8 7a 17 a0 ff 48 8b bd 78 ff ff ff 57 9d <66> 66 90 66 90 eb 4e 48 8b 13 4c 89 ee 4c 89 e7 e8 4c cb ad ff
May 17 19:41:08 ws1 sh[786]: abrt-dump-oops: Found oopses: 1
May 17 19:41:08 ws1 sh[786]: abrt-dump-oops: Creating problem directories
May 17 19:41:08 ws1 abrtd: Directory 'oops-2015-05-17-19:41:08-18639-1' creation detected
May 17 19:41:08 ws1 abrt-dump-oops: Reported 1 kernel oopses to Abrt
May 17 19:41:08 ws1 abrtd: Can't find a meaningful backtrace for hashing in '.'
May 17 19:41:08 ws1 abrtd: Looking for kernel package
May 17 19:41:08 ws1 abrtd: Can't find kernel package corresponding to '3.6.10-4.fc18.x86_64.debug'
May 17 19:41:08 ws1 abrtd: Can't record package version data (pkg_version, pkg_release, ...).
May 17 19:41:08 ws1 abrtd: 'post-create' on '/var/spool/abrt/oops-2015-05-17-19:41:08-18639-1' exited with 1
May 17 19:41:08 ws1 abrtd: Corrupted or bad directory '/var/spool/abrt/oops-2015-05-17-19:41:08-18639-1', deleting
May 17 19:46:48 ws1 systemd-logind[787]: Lid closed.
May 17 19:46:48 ws1 systemd-logind[787]: Suspending...
May 17 19:46:48 ws1 systemd[1]: Starting Sleep.
May 17 19:46:48 ws1 systemd[1]: Reached target Sleep.
May 17 19:46:48 ws1 systemd[1]: Starting Suspend...
May 17 19:46:48 ws1 systemd-sleep[18801]: /usr/lib/systemd/system-sleep/notify-upower.sh exited with exit status 1.
May 17 19:46:48 ws1 systemd-sleep[18801]: Suspending system...
May 17 19:46:49 ws1 kernel: [23431.487010] PM: Syncing filesystems ... done.
May 17 19:46:59 ws1 kernel: [23437.143099] Freezing user space processes ... (elapsed 0.01 seconds) done.
May 17 19:46:59 ws1 kernel: [23437.158504] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
May 17 19:46:59 ws1 kernel: [23437.172206] Suspending console(s) (use no_console_suspend to debug)
May 17 19:46:59 ws1 kernel: [23437.356108] sd 0:0:0:0: [sda] Synchronizing SCSI cache
May 17 19:46:59 ws1 kernel: [23437.475209] sd 0:0:0:0: [sda] Stopping disk
May 17 19:46:59 ws1 kernel: [23437.621460] i915 0000:00:02.0: power state changed by ACPI to D3hot
May 17 19:46:59 ws1 kernel: [23437.811120] e1000e 0000:00:19.0: wake-up capability enabled by ACPI
May 17 19:46:59 ws1 kernel: [23437.881890] PM: suspend of devices complete after 707.761 msecs
May 17 19:46:59 ws1 kernel: [23437.882685] PM: late suspend of devices complete after 0.791 msecs
May 17 19:46:59 ws1 kernel: [23437.894550] ehci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
May 17 19:46:59 ws1 kernel: [23437.904747] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D3hot
May 17 19:46:59 ws1 kernel: [23437.906167] ehci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
May 17 19:46:59 ws1 kernel: [23437.916707] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D3hot
May 17 19:46:59 ws1 kernel: [23437.928087] PM: noirq suspend of devices complete after 45.465 msecs
May 17 19:46:59 ws1 kernel: [23437.928831] ACPI: Preparing to enter system sleep state S3
May 17 19:46:59 ws1 kernel: [23438.010592] PM: Saving platform NVS memory
May 17 19:46:59 ws1 kernel: [23438.252729] Disabling non-boot CPUs ...
May 17 19:46:59 ws1 kernel: [23438.301740] smpboot: CPU 1 is now offline
May 17 19:46:59 ws1 kernel: [23438.303438] CPU 1 offline: Remove Rx thread
May 17 19:46:59 ws1 kernel: [23438.307833] smpboot: CPU 2 is now offline
May 17 19:46:59 ws1 kernel: [23438.309311] CPU 2 offline: Remove Rx thread
May 17 19:46:59 ws1 kernel: [23438.311505] Broke affinity for irq 17
May 17 19:46:59 ws1 kernel: [23438.311528] Broke affinity for irq 23
May 17 19:46:59 ws1 kernel: [23438.311532] Broke affinity for irq 40
May 17 19:46:59 ws1 kernel: [23438.312604] smpboot: CPU 3 is now offline
May 17 19:46:59 ws1 kernel: [23438.312605] SMP alternatives: lockdep: fixing up alternatives
May 17 19:46:59 ws1 kernel: [23438.320375] CPU 3 offline: Remove Rx thread
May 17 19:46:59 ws1 kernel: [23438.320725] Extended CMOS year: 2000
May 17 19:46:59 ws1 kernel: [23438.321723] ACPI: Low-level resume complete
May 17 19:46:59 ws1 kernel: [23438.321914] PM: Restoring platform NVS memory
May 17 19:46:59 ws1 kernel: [23438.322808] Extended CMOS year: 2000
May 17 19:46:59 ws1 kernel: [23438.323467] microcode: CPU0 updated to revision 0x28, date = 2012-04-24
May 17 19:46:59 ws1 kernel: [23438.323714] Enabling non-boot CPUs ...
May 17 19:46:59 ws1 kernel: [23438.324400] SMP alternatives: lockdep: fixing up alternatives
May 17 19:46:59 ws1 kernel: [23438.324403] smpboot: Booting Node 0 Processor 1 APIC 0x1
May 17 19:46:59 ws1 kernel: [23438.335424] Disabled fast string operations
May 17 19:46:59 ws1 kernel: [23438.382756] microcode: CPU1 updated to revision 0x28, date = 2012-04-24
May 17 19:46:59 ws1 kernel: [23438.382921] bnx2i: CPU 1 online: Create Rx thread
May 17 19:46:59 ws1 kernel: [23438.383231] CPU1 is up
May 17 19:46:59 ws1 kernel: [23438.383856] SMP alternatives: lockdep: fixing up alternatives
May 17 19:46:59 ws1 kernel: [23438.383860] smpboot: Booting Node 0 Processor 2 APIC 0x2
May 17 19:46:59 ws1 kernel: [23438.394880] Disabled fast string operations
May 17 19:46:59 ws1 kernel: [23438.441659] microcode: CPU2 updated to revision 0x28, date = 2012-04-24
May 17 19:46:59 ws1 kernel: [23438.441823] bnx2i: CPU 2 online: Create Rx thread
May 17 19:46:59 ws1 kernel: [23438.442109] CPU2 is up
May 17 19:46:59 ws1 kernel: [23438.443050] SMP alternatives: lockdep: fixing up alternatives
May 17 19:46:59 ws1 kernel: [23438.443058] smpboot: Booting Node 0 Processor 3 APIC 0x3
May 17 19:46:59 ws1 kernel: [23438.454448] Disabled fast string operations
May 17 19:46:59 ws1 kernel: [23438.518097] microcode: CPU3 updated to revision 0x28, date = 2012-04-24
May 17 19:46:59 ws1 kernel: [23438.518536] bnx2i: CPU 3 online: Create Rx thread
May 17 19:46:59 ws1 kernel: [23438.518922] CPU3 is up
May 17 19:46:59 ws1 kernel: [23438.525271] ACPI: Waking up from system sleep state S3
May 17 19:46:59 ws1 kernel: [23438.699864] i915 0000:00:02.0: power state changed by ACPI to D0
May 17 19:46:59 ws1 kernel: [23438.732679] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
May 17 19:46:59 ws1 kernel: [23438.743966] ehci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
May 17 19:46:59 ws1 kernel: [23438.755622] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
May 17 19:46:59 ws1 kernel: [23438.766956] ehci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
May 17 19:46:59 ws1 kernel: [23438.799654] sdhci-pci 0000:0d:00.0: MMC controller base frequency changed to 50Mhz.
May 17 19:46:59 ws1 kernel: [23438.812033] PM: noirq resume of devices complete after 113.839 msecs
May 17 19:46:59 ws1 kernel: [23438.813639] PM: early resume of devices complete after 1.351 msecs
May 17 19:46:59 ws1 kernel: [23438.816029] e1000e 0000:00:19.0: wake-up capability disabled by ACPI
May 17 19:46:59 ws1 kernel: [23438.822163] rtlwifi: wireless switch is on
May 17 19:46:59 ws1 kernel: [23438.874884] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
May 17 19:46:59 ws1 kernel: [23438.910282] tpm_tis 00:0a: TPM is disabled/deactivated (0x6)
May 17 19:46:59 ws1 kernel: [23439.048569] usb 1-1.4: reset full-speed USB device number 4 using ehci_hcd