-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathkmsg
1693 lines (1693 loc) · 92.4 KB
/
kmsg
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
[ 0.073031] console [ram-1] enabled
[ 0.073599] ebi2_tovis_power_save: on=1
[ 0.108893] bio: create slab <bio-0> at 0
[ 0.111016] SCSI subsystem initialized
[ 0.111435] usbcore: registered new interface driver usbfs
[ 0.111631] usbcore: registered new interface driver hub
[ 0.111870] usbcore: registered new device driver usb
[ 0.112941] i2c-gpio i2c-gpio.2: using pins 89 (SDA) and 88 (SCL)
[ 0.113376] i2c-gpio i2c-gpio.3: using pins 91 (SDA) and 90 (SCL)
[ 0.113806] i2c-gpio i2c-gpio.4: using pins 108 (SDA) and 107 (SCL)
[ 0.114230] i2c-gpio i2c-gpio.5: using pins 3 (SDA) and 2 (SCL)
[ 0.114425] msm_i2c_probe
[ 0.114536] msm_i2c_probe: clk_ctl 315, 400000 Hz
[ 0.116536] Advanced Linux Sound Architecture Driver Version 1.0.23.
[ 0.117355] Bluetooth: Core ver 2.15
[ 0.117551] NET: Registered protocol family 31
[ 0.117568] Bluetooth: HCI device and connection manager initialized
[ 0.117588] Bluetooth: HCI socket layer initialized
[ 0.118001] Switching to clocksource dg_timer
[ 0.135738] NET: Registered protocol family 2
[ 0.135968] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.136474] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.136723] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.136894] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.136913] TCP reno registered
[ 0.136931] UDP hash table entries: 256 (order: 0, 4096 bytes)
[ 0.136969] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[ 0.137178] NET: Registered protocol family 1
[ 0.137522] RPC: Registered udp transport module.
[ 0.137541] RPC: Registered tcp transport module.
[ 0.137557] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.137821] Trying to unpack rootfs image as initramfs...
[ 0.202237] Freeing initrd memory: 444K
[ 0.203997] smd probe
[ 0.204027] smd_core_init()
[ 0.204114] smd_core_init() done
[ 0.204136] smd_alloc_loopback_channel: 'local_loopback' cid=100
[ 0.204364] smd_alloc_channel() 'DS' cid=0
[ 0.204569] Notify: smsm init
[ 0.205219] smd_alloc_channel() 'DIAG' cid=1
[ 0.206041] smd_alloc_channel() 'RPCCALL' cid=2
[ 0.206561] smd_alloc_channel() 'DATA1' cid=7
[ 0.207067] smd_alloc_channel() 'DATA2' cid=8
[ 0.207572] smd_alloc_channel() 'DATA3' cid=9
[ 0.208239] smd_alloc_channel() 'DATA4' cid=10
[ 0.208746] smd_alloc_channel() 'DATA5' cid=11
[ 0.209181] smd_alloc_channel() 'DATA6' cid=12
[ 0.209591] smd_alloc_channel() 'DATA7' cid=13
[ 0.210014] smd_alloc_channel() 'DATA11' cid=17
[ 0.210434] smd_alloc_channel() 'DAL00' cid=38
[ 0.210779] smd_alloc_channel() 'DATA5_CNTL' cid=39
[ 0.211261] smd_alloc_channel() 'DATA6_CNTL' cid=40
[ 0.211732] smd_alloc_channel() 'DATA7_CNTL' cid=41
[ 0.217167] SMD Packet Port Driver Initialized.
[ 0.218670] SMD: ch 2 0 -> 1
[ 0.218789] SMD: ch 2 1 -> 2
[ 0.220185] [adsp.c:adsp_init] rs3000000a -- 0
[ 0.225727] [audpp.c:audpp_probe] Number of decoder supported 5
[ 0.225755] [audpp.c:audpp_probe] Number of concurrency supported 7
[ 0.225774] [audpp.c:audpp_probe] module_name:AUDPLAY0TASK
[ 0.225792] [audpp.c:audpp_probe] queueid:13
[ 0.225809] [audpp.c:audpp_probe] decid:0
[ 0.225824] [audpp.c:audpp_probe] nr_codec_support:11
[ 0.225840] [audpp.c:audpp_probe] module_name:AUDPLAY1TASK
[ 0.225865] [audpp.c:audpp_probe] queueid:14
[ 0.225880] [audpp.c:audpp_probe] decid:1
[ 0.225895] [audpp.c:audpp_probe] nr_codec_support:5
[ 0.225912] [audpp.c:audpp_probe] module_name:AUDPLAY2TASK
[ 0.225929] [audpp.c:audpp_probe] queueid:15
[ 0.225945] [audpp.c:audpp_probe] decid:2
[ 0.225960] [audpp.c:audpp_probe] nr_codec_support:5
[ 0.225975] [audpp.c:audpp_probe] module_name:AUDPLAY3TASK
[ 0.225992] [audpp.c:audpp_probe] queueid:16
[ 0.226009] [audpp.c:audpp_probe] decid:3
[ 0.226024] [audpp.c:audpp_probe] nr_codec_support:4
[ 0.226040] [audpp.c:audpp_probe] module_name:AUDPLAY4TASK
[ 0.226057] [audpp.c:audpp_probe] queueid:17
[ 0.226072] [audpp.c:audpp_probe] decid:4
[ 0.226092] [audpp.c:audpp_probe] nr_codec_support:1
[ 0.246763] RPC_TIME_TOD_SET_APPS_BASES:
[ 0.246772] tick = 117694
[ 0.246778] stamp = 0
[ 0.246810] drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
[ 0.247218] pecan_gpio_earsense_work_func: ear sense detected : ejected
[ 0.247250] __msm_rpc_connect: server not found 30000061:30001
[ 0.247270] __msm_rpc_connect: server not found 30000061:20001
[ 0.249992] lge_tempdevice_init
[ 0.251037] lge_mtd_direct_access_init: finished
[ 0.253183] LGE Power Sink Driver Init
[ 0.253263] lge_pwrsink_probe: setting driver data
[ 0.265505] ashmem: initialized
[ 0.266808] VFS: Disk quotas dquot_6.5.2
[ 0.266908] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.268546] yaffs Feb 10 2013 22:59:17 Installing.
[ 0.268600] msgmni has been set to 354
[ 0.269431] alg: No test for cipher_null (cipher_null-generic)
[ 0.269835] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[ 0.270235] alg: No test for digest_null (digest_null-generic)
[ 0.270623] alg: No test for compress_null (compress_null-generic)
[ 0.278848] alg: No test for stdrng (krng)
[ 0.278941] io scheduler noop registered
[ 0.279083] io scheduler cfq registered (default)
[ 0.279186] io scheduler bfq registered
[ 0.279201] io scheduler vr registered
[ 0.279216] io scheduler sio registered
[ 0.280953] AAT28XX init start
[ 0.281633] Registered led device: lcd-backlight
[ 0.281655] aat2870bl:aat28xx_probe: Registering led class dev successfully.
[ 0.281703] aat28xx_power_internal: on = 1, refcnt = 0
[ 0.304283] aat2870bl:aat28xx_probe: done
[ 0.304613] pecan_gpio_earsense_work_func: ear sense detected : ejected
[ 0.304906] msm_fb_probe: phy_Addr = 0x542d000 virt = 0xcd900000
[ 0.306174] MDP HW Base phy_Address = 0xaa200000 virt = 0xcda00000
[ 0.310616] FrameBuffer[0] 240x320 size=327680 bytes is registered successfully!
[ 0.313571] kgsl kgsl-3d0: |kgsl_gpummu_init| MMU type set for device is GPUMMU
[ 0.314526] msm_serial: driver initialized
[ 0.314803] msm_serial_hs.0: ttyHS0 at MMIO 0xa0200000 (irq = 45) is a MSM HS UART
[ 0.315494] msm_serial_hs module loaded
[ 0.321459] brd: module loaded
[ 0.326616] loop: module loaded
[ 0.326791] pmem: Initializing pmem_kernel_ebi1 (in-kernel)
[ 0.326896] pmem: Initializing pmem (user-space) as cached
[ 0.328009] pmem: Initializing pmem_adsp (user-space) as cached
[ 0.329152] pmem: Initializing pmem_audio (user-space) as non-cached
[ 0.329867] LGE: Android Vibrator Driver Init
[ 0.330489] LGE: Android Vibrator Initialization was done
[ 0.330954] atcmd_probe:alohag_atcmd
[ 0.331341] lge_tty_atcmd_init: initialize atcmd-ttys
[ 0.333459] SCSI Media Changer driver v0.25
[ 0.334846] msm_nand_probe: phys addr 0xa0a00000
[ 0.334871] msm_nand_probe: dmac 0x7
[ 0.334926] msm_nand_probe: allocated dma buffer at ffc56000, dma_addr fba2000
[ 0.335417] status: c00020
[ 0.335437] nandid: 5590bc2c maker 2c device bc
[ 0.335462] ONFI probe : Found an ONFI compliant device MT29F4G16ABBDA3W ,
[ 0.335484] Found a supported NAND device
[ 0.335497] NAND Id : 0x5590bc2c
[ 0.335511] Buswidth : 16 Bits
[ 0.335522] Density : 512 MByte
[ 0.335536] Pagesize : 2048 Bytes
[ 0.335547] Erasesize: 131072 Bytes
[ 0.335561] Oobsize : 64 Bytes
[ 0.335574] CFG0 Init : 0xa85408c0
[ 0.335587] CFG1 Init : 0x0004745e
[ 0.335601] ECCBUFCFG : 0x00000203
[ 0.335624] Creating 10 MTD partitions on "msm_nand":
[ 0.335649] 0x000002600000-0x000002a40000 : "boot"
[ 0.340394] 0x000002a40000-0x00000f240000 : "system"
[ 0.482273] 0x00000f240000-0x00000f740000 : "recovery"
[ 0.487148] 0x00000f740000-0x00000fa00000 : "lgdrm"
[ 0.490628] 0x00000fa00000-0x00000fb00000 : "splash"
[ 0.492853] 0x00000fb00000-0x00000fc00000 : "FOTABIN"
[ 0.494998] 0x00000fc00000-0x000010240000 : "FOTA"
[ 0.500706] 0x000010240000-0x000010280000 : "misc"
[ 0.502308] 0x000010280000-0x000014280000 : "cache"
[ 0.547902] 0x000014280000-0x000020000000 : "userdata"
[ 0.683806] SLIP: version 0.8.4-NET3.019-NEWTTY (dynamic channels, max=256) (6 bit encapsulation enabled).
[ 0.683836] CSLIP: code copyright 1989 Regents of the University of California.
[ 0.684820] rmnet_init
[ 0.692391] msm_hsusb_rpc_connect: rpc connect success vers = 10001
[ 0.692583] msm_otg_probe: clk_get - usb_hs_clk
[ 0.692933] __msm_rpc_connect: server not found 3000001a:40001
[ 0.692958] __msm_rpc_connect: server not found 3000001a:30001
[ 0.692978] __msm_rpc_connect: server not found 3000001a:20001
[ 0.693263] lgeusb[lgeusb_init : 293] - u_lgeusb init
[ 0.693751] peripheral driver registered w/ tranceiver
[ 0.694320] lgeusb[lgeusb_register_usbinfo: 281] - Registering infomation for lgeusb is success
[ 0.694718] lgeusb[get_factory_cable : 103] - Using PIF ZIG (0)
[ 0.695215] android_usb gadget: android_usb ready
[ 0.695503] f_acm init
[ 0.696051] f_mtp init
[ 0.696310] f_ecm init
[ 0.696628] mtp_bind_config
[ 0.697396] android_usb gadget: using random self ethernet address
[ 0.697433] android_usb gadget: using random host ethernet address
[ 0.698191] usb0: MAC fa:b9:02:be:96:41
[ 0.698213] usb0: HOST MAC 42:1a:56:a9:4f:b2
[ 0.699248] msm_hsusb_phy_reset
[ 0.700091] ecm_function_bind_config MAC: 00:00:00:00:00:00
[ 0.702283] lgeusb[get_factory_cable : 103] - Using PIF ZIG (0)
[ 0.702308] lgeusb[lgeusb_set_current_mode: 254] - We detect Normal USB cable......
[ 0.702331] lgeusb[do_switch_mode : 167] - do_switch_mode : pid 618e, need_reset 0
[ 0.704741] msm_nv_imei_get: msm_rpc_call success. ver = 0x60001
[ 0.704764] lgeusb[get_serial_number : 76] - IMEI 80A356525049826379
[ 0.707813] lgeusb[android_register_function: 504] - LGE Android Gadget global configuration:
[ 0.707826] product_id -- 618e, serial no. -- 80A356525049826379
[ 0.708288] diagfwd initializing ..
[ 0.708694] SMD: ch 1 0 -> 1
[ 0.708713] diag opened SMD port ; r = 0
[ 0.708798] SMD: ch 1 1 -> 2
[ 0.708973] diagchar initializing ..
[ 0.709484] diagchar initialized
[ 0.709593] [YJ] atcmd_virtual_probe, start!!
[ 0.710051] input: atcmd_virtual_kbd as /devices/platform/atcmd_virtual_kbd/input/input0
[ 0.711023] input: touch_mcs7000 as /devices/virtual/input/input1
[ 0.711371] ------------[ cut here ]------------
[ 0.711426] WARNING: at drivers/gpio/gpiolib.c:103 gpio_ensure_requested+0x48/0x108()
[ 0.711444] autorequest GPIO-92
[ 0.711456] Modules linked in:
[ 0.711529] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c00a0028>] (warn_slowpath_common+0x4c/0x7c)
[ 0.711573] [<c00a0028>] (warn_slowpath_common+0x4c/0x7c) from [<c00a00d8>] (warn_slowpath_fmt+0x2c/0x3c)
[ 0.711614] [<c00a00d8>] (warn_slowpath_fmt+0x2c/0x3c) from [<c01fa624>] (gpio_ensure_requested+0x48/0x108)
[ 0.711659] [<c01fa624>] (gpio_ensure_requested+0x48/0x108) from [<c01faa1c>] (gpio_direction_input+0x84/0x180)
[ 0.711706] [<c01faa1c>] (gpio_direction_input+0x84/0x180) from [<c02cf4b8>] (mcs7000_ts_probe+0x100/0x23c)
[ 0.711753] [<c02cf4b8>] (mcs7000_ts_probe+0x100/0x23c) from [<c02ddd08>] (i2c_device_probe+0x118/0x170)
[ 0.711804] [<c02ddd08>] (i2c_device_probe+0x118/0x170) from [<c025127c>] (driver_probe_device+0x1a4/0x364)
[ 0.711848] [<c025127c>] (driver_probe_device+0x1a4/0x364) from [<c025149c>] (__driver_attach+0x60/0x84)
[ 0.711889] [<c025149c>] (__driver_attach+0x60/0x84) from [<c02500a0>] (bus_for_each_dev+0x4c/0x84)
[ 0.711928] [<c02500a0>] (bus_for_each_dev+0x4c/0x84) from [<c025099c>] (bus_add_driver+0xe8/0x29c)
[ 0.711968] [<c025099c>] (bus_add_driver+0xe8/0x29c) from [<c02519b4>] (driver_register+0xa8/0x134)
[ 0.712013] [<c02519b4>] (driver_register+0xa8/0x134) from [<c02dfe00>] (i2c_register_driver+0x40/0x108)
[ 0.712058] [<c02dfe00>] (i2c_register_driver+0x40/0x108) from [<c048645c>] (mcs7000_ts_init+0x160/0x23c)
[ 0.712111] [<c048645c>] (mcs7000_ts_init+0x160/0x23c) from [<c002e3bc>] (do_one_initcall+0x54/0x1a0)
[ 0.712151] [<c002e3bc>] (do_one_initcall+0x54/0x1a0) from [<c0008b84>] (kernel_init+0xac/0x160)
[ 0.712193] [<c0008b84>] (kernel_init+0xac/0x160) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 0.712241] ---[ end trace a0b805fb4ed34033 ]---
[ 0.712471] [Touch] ts_set_vreg() onoff:0
[ 0.737999] [Touch] ts_set_vreg() onoff:1
[ 0.828149] msm_hsusb msm_hsusb: msm72k_udc: OFFLINE -> ONLINE
[ 0.833209] msm_hsusb_phy_reset
[ 0.958126] msm_hsusb msm_hsusb: usb: notify offline - usb reset
[ 0.988034] MCS7000 F/W Version [0xf]
[ 1.008036] MCS7000 H/W Revision [0x11]
[ 1.009041] GPIO Matrix Keypad Driver: Start keypad matrix for pecan_keypad in interrupt mode
[ 1.009543] input: pecan_keypad as /devices/virtual/input/input2
[ 1.010726] KR3DM accelerometer driver
[ 1.010931] KR3DH accelerometer driver
[ 1.010991] [Accelerometer] accel_power_on() : Power On
[ 1.018168] input: accelerometer as /devices/virtual/input/input3
[ 1.019099] input: lge_gesture as /devices/virtual/input/input4
[ 1.019393] KR3DH 5-0019: KR3DH kr3dh: Accelerometer chip found
[ 1.019611] [Ecompass] ecom_power_set() : Power On
[ 1.022558] ami304_sensor 4-000f: force operating mode
[ 1.022573] Register input device!
[ 1.022986] input: Acompass as /devices/virtual/input/input5
[ 1.025218] RTC Registering with rs30000048
[ 1.026421] msm_rpc_client_req: RPC call was not successful (3)
[ 1.026446] msmrtc_setup_cb: RPC client registration for PROC:12 failed
[ 1.026466] rs30000048 rs30000048.65536: msmrtc_probe: Could not initialize RPC callback
[ 1.027342] using rtc device, msm_rtc, for alarms
[ 1.027367] msm_rtc: dev (254:0)
[ 1.027417] rs30000048 rs30000048.65536: rtc core: registered msm_rtc as rtc0
[ 1.027806] msm_rtc_secure: dev (254:1)
[ 1.027824] rs30000048 rs30000048.65536: rtc core: registered msm_rtc_secure as rtc1
[ 1.028216] i2c /dev entries driver
[ 1.030491] IR NEC protocol handler initialized
[ 1.030511] IR RC5(x) protocol handler initialized
[ 1.030524] IR RC6 protocol handler initialized
[ 1.030539] IR JVC protocol handler initialized
[ 1.030552] IR Sony protocol handler initialized
[ 1.030567] Linux video capture interface: v2.00
[ 1.030917] msm_batt_init: enter
[ 1.030942] __msm_rpc_connect: server not found 3000001a:40001
[ 1.030962] __msm_rpc_connect: server not found 3000001a:30001
[ 1.031621] msm_batt_get_charger_api_version: num_of_chg_api_versions = 3. The chg api version = 0x00010003
[ 1.031667] __msm_rpc_connect: server not found 30000089:40001
[ 1.034252] msm_batt_enable_filter: enable vbatt filter: OK
[ 1.034944] msm-battery msm-battery: msm_batt_probe : Using PIF ZIG (0)
[ 1.035324] msm_batt_init: Charger/Battery = 0x00010003/0x00010001 (RPC version)
[ 1.035636] device-mapper: uevent: version 1.0.3
[ 1.036354] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: [email protected]
[ 1.036444] Bluetooth: HCI UART driver ver 2.2
[ 1.036462] Bluetooth: HCI H4 protocol initialized
[ 1.036477] Bluetooth: HCI BCSP protocol initialized
[ 1.036492] Bluetooth: MSM Sleep Mode Driver Ver 1.1
[ 1.039292] mmc0: Qualcomm MSM SDCC at 0x00000000a0400000 irq 24,113 dma 8
[ 1.039317] mmc0: 8 bit data mode disabled
[ 1.039332] mmc0: 4 bit data mode enabled
[ 1.039347] mmc0: polling status mode disabled
[ 1.039366] mmc0: MMC clock 144000 -> 49152000 Hz, PCLK 100000000 Hz
[ 1.039384] mmc0: Slot eject status = 0
[ 1.039397] mmc0: Power save feature enable = 1
[ 1.039417] mmc0: DM non-cached buffer at ffc5a000, dma_addr 0x0f056000
[ 1.039439] mmc0: DM cmd busaddr 0x0f056000, cmdptr busaddr 0x0f056300
[ 1.039767] bcm432x_sdcc_wlan_slot_status: 93 0
[ 1.040501] bcm432x_sdcc_wlan_slot_status: 93 0
[ 1.040739] mmc1: Qualcomm MSM SDCC at 0x00000000a0500000 irq 26,157 dma 8
[ 1.040759] mmc1: 8 bit data mode disabled
[ 1.040772] mmc1: 4 bit data mode enabled
[ 1.040787] mmc1: polling status mode disabled
[ 1.040806] mmc1: MMC clock 144000 -> 49152000 Hz, PCLK 100000000 Hz
[ 1.040822] mmc1: Slot eject status = 1
[ 1.040837] mmc1: Power save feature enable = 1
[ 1.040856] mmc1: DM non-cached buffer at ffc5b000, dma_addr 0x0f057000
[ 1.040876] mmc1: DM cmd busaddr 0x0f057000, cmdptr busaddr 0x0f057300
[ 1.041767] Registered led device: button-backlight
[ 1.043821] usbcore: registered new interface driver usbhid
[ 1.043842] usbhid: USB HID core driver
[ 1.044735] logger: created 64K log 'log_main'
[ 1.045047] logger: created 32K log 'log_events'
[ 1.045360] logger: created 32K log 'log_radio'
[ 1.045655] logger: created 64K log 'log_system'
[ 1.045994] zram: num_devices not specified. Using default: 1
[ 1.046014] zram: Creating 1 devices ...
[ 1.047710] No device for DAI CODEC_DAI
[ 1.047732] No device for DAI CPU_DAI
[ 1.048494] msm_soc: create pcms
[ 1.048812] asoc: CODEC_DAI <-> CPU_DAI mapping ok
[ 1.048830] msm_soc: ALSA MSM Mixer Setting
[ 1.050244] ALSA device list:
[ 1.050262] #0: msm-audio (MSM-CARD)
[ 1.050387] u32 classifier
[ 1.050400] Netfilter messages via NETLINK v0.30.
[ 1.050505] nf_conntrack version 0.5.0 (2835 buckets, 11340 max)
[ 1.050999] ctnetlink v0.93: registering with nfnetlink.
[ 1.051197] xt_time: kernel timezone is -0000
[ 1.051492] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 1.051634] arp_tables: (C) 2002 David S. Miller
[ 1.051707] TCP cubic registered
[ 1.051720] Initializing XFRM netlink socket
[ 1.052100] NET: Registered protocol family 10
[ 1.052819] lo: Disabled Privacy Extensions
[ 1.054885] Mobile IPv6
[ 1.054904] IPv6 over IPv4 tunneling driver
[ 1.055892] sit0: Disabled Privacy Extensions
[ 1.056802] ip6tnl0: Disabled Privacy Extensions
[ 1.057000] NET: Registered protocol family 17
[ 1.057060] NET: Registered protocol family 15
[ 1.057247] Bluetooth: L2CAP ver 2.14
[ 1.057262] Bluetooth: L2CAP socket layer initialized
[ 1.057287] Bluetooth: SCO (Voice Link) ver 0.6
[ 1.057302] Bluetooth: SCO socket layer initialized
[ 1.057414] Bluetooth: RFCOMM TTY layer initialized
[ 1.057439] Bluetooth: RFCOMM socket layer initialized
[ 1.057455] Bluetooth: RFCOMM ver 1.11
[ 1.057472] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 1.057487] Bluetooth: BNEP filters: protocol multicast
[ 1.057505] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 1.061537] input: 7k_handset as /devices/virtual/input/input6
[ 1.062012] __msm_rpc_connect: server not found 30000091:30001
[ 1.063445] msm_rpc_client_req: RPC call was not successful (4)
[ 1.063467] hs_rpc_cb_init: RPC client request failed for pwr key delay cmd, using normal mode
[ 1.064215] VFP support v0.3: implementor 41 architecture 1 part 20 variant b rev 5
[ 1.066707] msmrtc_tod_proc_result: 02/10/2013 23:02:03 (06)
[ 1.066764] rs30000048 rs30000048.65536: setting system clock to 2013-02-10 23:02:03 UTC (1360537323)
[ 1.066790] msm_v4l2: msm_v4l2_init
[ 1.068295] msm_sync_init: initialized isx005
[ 1.070015] Warning: unable to open an initial console.
[ 1.070085] Freeing init memory: 152K
[ 1.288781] mmc0: host does not support reading read-only switch. assuming write-enable.
[ 1.288831] mmc0: new high speed SDHC card at address 1234
[ 1.288846] [LGE] mmc device add
[ 1.290156] mmcblk0: mmc0:1234 SA08G 7.28 GiB
[ 1.291379] mmcblk0: p1
[ 1.294981] bcm432x_sdcc_wlan_slot_status: 93 0
[ 1.323094] init: cannot open '/initlogo.rle'
[ 1.326086] yaffs: dev is 32505857 name is "mtdblock1" rw
[ 1.326111] yaffs: passed flags ""
[ 1.326129] yaffs: Attempting MTD mount on 31.1, "mtdblock1"
[ 1.333319] android_usb gadget: high speed config #1: android
[ 1.333436] diag: USB connected
[ 1.500829] yaffs: restored from checkpoint
[ 1.501227] yaffs_read_super: isCheckpointed 1
[ 1.508417] yaffs: dev is 32505865 name is "mtdblock9" rw
[ 1.508439] yaffs: passed flags ""
[ 1.508457] yaffs: Attempting MTD mount on 31.9, "mtdblock9"
[ 1.633197] yaffs: restored from checkpoint
[ 1.639238] yaffs_read_super: isCheckpointed 0
[ 1.639478] yaffs: dev is 32505864 name is "mtdblock8" rw
[ 1.639498] yaffs: passed flags ""
[ 1.639517] yaffs: Attempting MTD mount on 31.8, "mtdblock8"
[ 1.642447] yaffs: restored from checkpoint
[ 1.642508] yaffs_read_super: isCheckpointed 1
[ 1.958224] lgeusb[get_factory_cable : 103] - Using PIF ZIG (0)
[ 1.959019]
[ 1.959030] Charger Type: STD DOWNSTREAM PORT
[ 2.177280] pecan_bluetooth_power
[ 2.177308] pecan_bluetooth_power 0
[ 2.184558] init: service 'console' requires console
[ 2.187223] adb_enable_open: Enabling adb
[ 2.282303] SMD: ch 39 0 -> 1
[ 2.282401] SMD: ch 39 1 -> 2
[ 2.285554] SMD: ch 40 0 -> 1
[ 2.285629] SMD: ch 40 1 -> 2
[ 2.285983] SMD: ch 41 0 -> 1
[ 2.286094] SMD: ch 41 1 -> 2
[ 2.355584] msm_hsusb msm_hsusb: usb: notify offline - reset interrupt
[ 2.356330] diag: USB disconnected
[ 2.475054] warning: `rild' uses 32-bit capabilities (legacy support in use)
[ 2.600577] android_usb gadget: high speed config #1: android
[ 2.600707] diag: USB connected
[ 2.619327] select 951 (ueventd), adj 0, size 38, to kill
[ 2.619367] send sigkill to 951 (ueventd), adj 0, size 38
[ 3.198205] lgeusb[get_factory_cable : 103] - Using PIF ZIG (0)
[ 3.989990] [snd.c:snd_ioctl] snd_avc_ctl 1
[ 3.990850] [snd.c:snd_ioctl] snd_agc_ctl 1
[ 3.995926] [snd.c:snd_ioctl] snd_set_volume 6 0 7
[ 3.996633] [snd.c:snd_ioctl] snd_set_volume 0 0 7
[ 3.997263] [snd.c:snd_ioctl] snd_set_volume 7 0 7
[ 3.998214] [snd.c:snd_ioctl] snd_set_volume 13 0 7
[ 3.999084] [snd.c:snd_ioctl] snd_set_volume 2 0 7
[ 3.999681] [snd.c:snd_ioctl] snd_set_volume 3 0 7
[ 4.052257] [snd.c:snd_ioctl] snd_set_device 0 1 1
[ 4.064247] [snd.c:snd_ioctl] snd_set_volume 30 0 7
[ 4.066817] snd_set_fm_radio_volume 20
[ 4.740155] Adding 47216k swap on /dev/block/zram0. Priority:-1 extents:1 across:47216k SS
[ 6.193355] save exit: isCheckpointed 1
[ 6.196571] save exit: isCheckpointed 1
[ 11.658067] ilitek_qvga_disp_on: display on...
[ 11.658107] ebi2_tovis_power_save: on=1
[ 18.240295] save exit: isCheckpointed 1
[ 21.909445] register_mmc_card_pm: [WiFi] Callbacks registered successfully.
[ 21.909522] [dhd_hostwakeup_isr] HostWakeup Get GPIO 94: 1
[ 21.909633] [dhd_register_early_suspend] HostWakeup Get GPIO 94: 1
[ 21.909653]
[ 21.909658] Dongle Host Driver, version 4.220.14.0
[ 21.909753] bcm432x_sdcc_wlan_slot_status: 93 1
[ 21.909772] mmc1: Slot status change detected (0 -> 1)
[ 21.909792] [host->plat->status_irq:157:MSM_GPIO_TO_INIT:157:msmsdcc_check_status:1450]
[ 21.909812] [msmsdcc_check_status] !host->eject: mmc_detect_change after 150ms
[ 22.058046] bcm432x_sdcc_wlan_slot_status: 93 1
[ 22.076003] [snd.c:snd_ioctl] snd_set_volume 30 0 5
[ 22.089261] snd_set_fm_radio_volume 14
[ 22.092566] snd_set_fm_radio_volume 14
[ 22.162435] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
[ 22.162496] mmc1: new SDIO card at address 0001
[ 22.162510] [LGE] mmc device add
[ 22.400209] [cdc]dhd_preinit_proc:2518 - do control PM (2)
[ 22.401549] Bad Address: cur_etheraddr=01:02:03:04:05:06
[ 22.551583] wlan0: Broadcom Dongle Host Driver mac=00:90:0c:ba:cd:88
[ 22.732178] aat28xx_power_internal: on = 1, refcnt = 1
[ 22.732776] pecan_vibrator_power_set: vibrator volage 3300
[ 22.734378] aat28xx_power_internal: on = 0, refcnt = 2
[ 22.827799] aat28xx_power_internal: on = 1, refcnt = 1
[ 22.828444] pecan_vibrator_power_set: vibrator volage 3300
[ 22.829303] request_suspend_state: wakeup (3->0) at 22831333327 (2013-02-10 23:02:25.255718326 UTC)
[ 22.860071] aat28xx_power_internal: on = 0, refcnt = 2
[ 24.449841] save exit: isCheckpointed 1
[ 26.420392] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.420419] Modules linked in: wireless
[ 26.420507] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.420554] [<c048c810>] (schedule+0x70/0x308) from [<c048d138>] (schedule_timeout+0x18/0x1d8)
[ 26.420594] [<c048d138>] (schedule_timeout+0x18/0x1d8) from [<c048cf80>] (wait_for_common+0x100/0x1c0)
[ 26.420642] [<c048cf80>] (wait_for_common+0x100/0x1c0) from [<c0322524>] (mmc_wait_for_req+0x29c/0x2f8)
[ 26.420689] [<c0322524>] (mmc_wait_for_req+0x29c/0x2f8) from [<c0328510>] (mmc_io_rw_extended+0x194/0x1f4)
[ 26.420729] [<c0328510>] (mmc_io_rw_extended+0x194/0x1f4) from [<c0329480>] (sdio_io_rw_ext_helper+0x158/0x190)
[ 26.420767] [<c0329480>] (sdio_io_rw_ext_helper+0x158/0x190) from [<c032950c>] (sdio_memcpy_toio+0x1c/0x20)
[ 26.421054] [<c032950c>] (sdio_memcpy_toio+0x1c/0x20) from [<bf017490>] (sdioh_request_packet.isra.0+0x7c/0xe4 [wireless])
[ 26.421350] [<bf017490>] (sdioh_request_packet.isra.0+0x7c/0xe4 [wireless]) from [<bf017ddc>] (sdioh_request_buffer+0xbc/0x1e0 [wireless])
[ 26.421639] [<bf017ddc>] (sdioh_request_buffer+0xbc/0x1e0 [wireless]) from [<bf018b18>] (bcmsdh_send_buf+0xa4/0xb4 [wireless])
[ 26.421917] [<bf018b18>] (bcmsdh_send_buf+0xa4/0xb4 [wireless]) from [<bf013b28>] (dhd_bus_txctl+0x1dc/0x2fc [wireless])
[ 26.422180] [<bf013b28>] (dhd_bus_txctl+0x1dc/0x2fc [wireless]) from [<bf010e54>] (dhdcdc_set_ioctl+0x98/0xe4 [wireless])
[ 26.422439] [<bf010e54>] (dhdcdc_set_ioctl+0x98/0xe4 [wireless]) from [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless])
[ 26.422664] [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless]) from [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless])
[ 26.422842] [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless]) from [<bf001bf0>] (_dhd_sysioc_thread+0x330/0x548 [wireless])
[ 26.422965] [<bf001bf0>] (_dhd_sysioc_thread+0x330/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 26.428074] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.428097] Modules linked in: wireless
[ 26.428162] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.428204] [<c048c810>] (schedule+0x70/0x308) from [<c048d2c4>] (schedule_timeout+0x1a4/0x1d8)
[ 26.428384] [<c048d2c4>] (schedule_timeout+0x1a4/0x1d8) from [<bf0020f4>] (dhd_os_ioctl_resp_wait+0x88/0x104 [wireless])
[ 26.428624] [<bf0020f4>] (dhd_os_ioctl_resp_wait+0x88/0x104 [wireless]) from [<bf013c78>] (dhd_bus_rxctl+0x30/0xc0 [wireless])
[ 26.428892] [<bf013c78>] (dhd_bus_rxctl+0x30/0xc0 [wireless]) from [<bf010e6c>] (dhdcdc_set_ioctl+0xb0/0xe4 [wireless])
[ 26.429152] [<bf010e6c>] (dhdcdc_set_ioctl+0xb0/0xe4 [wireless]) from [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless])
[ 26.429375] [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless]) from [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless])
[ 26.429555] [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless]) from [<bf001bf0>] (_dhd_sysioc_thread+0x330/0x548 [wireless])
[ 26.429675] [<bf001bf0>] (_dhd_sysioc_thread+0x330/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 26.434357] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.434380] Modules linked in: wireless
[ 26.434445] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.434512] [<c048c810>] (schedule+0x70/0x308) from [<c048d138>] (schedule_timeout+0x18/0x1d8)
[ 26.434554] [<c048d138>] (schedule_timeout+0x18/0x1d8) from [<c048cf80>] (wait_for_common+0x100/0x1c0)
[ 26.434600] [<c048cf80>] (wait_for_common+0x100/0x1c0) from [<c0322524>] (mmc_wait_for_req+0x29c/0x2f8)
[ 26.434647] [<c0322524>] (mmc_wait_for_req+0x29c/0x2f8) from [<c0328510>] (mmc_io_rw_extended+0x194/0x1f4)
[ 26.434687] [<c0328510>] (mmc_io_rw_extended+0x194/0x1f4) from [<c0329480>] (sdio_io_rw_ext_helper+0x158/0x190)
[ 26.434725] [<c0329480>] (sdio_io_rw_ext_helper+0x158/0x190) from [<c032950c>] (sdio_memcpy_toio+0x1c/0x20)
[ 26.434984] [<c032950c>] (sdio_memcpy_toio+0x1c/0x20) from [<bf017490>] (sdioh_request_packet.isra.0+0x7c/0xe4 [wireless])
[ 26.435282] [<bf017490>] (sdioh_request_packet.isra.0+0x7c/0xe4 [wireless]) from [<bf017ddc>] (sdioh_request_buffer+0xbc/0x1e0 [wireless])
[ 26.435572] [<bf017ddc>] (sdioh_request_buffer+0xbc/0x1e0 [wireless]) from [<bf018b18>] (bcmsdh_send_buf+0xa4/0xb4 [wireless])
[ 26.435852] [<bf018b18>] (bcmsdh_send_buf+0xa4/0xb4 [wireless]) from [<bf013b28>] (dhd_bus_txctl+0x1dc/0x2fc [wireless])
[ 26.436114] [<bf013b28>] (dhd_bus_txctl+0x1dc/0x2fc [wireless]) from [<bf010e54>] (dhdcdc_set_ioctl+0x98/0xe4 [wireless])
[ 26.436372] [<bf010e54>] (dhdcdc_set_ioctl+0x98/0xe4 [wireless]) from [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless])
[ 26.436597] [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless]) from [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless])
[ 26.436774] [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless]) from [<bf001ca8>] (_dhd_sysioc_thread+0x3e8/0x548 [wireless])
[ 26.436894] [<bf001ca8>] (_dhd_sysioc_thread+0x3e8/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 26.443804] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.443829] Modules linked in: wireless
[ 26.443907] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.443952] [<c048c810>] (schedule+0x70/0x308) from [<c048d2c4>] (schedule_timeout+0x1a4/0x1d8)
[ 26.444192] [<c048d2c4>] (schedule_timeout+0x1a4/0x1d8) from [<bf0020f4>] (dhd_os_ioctl_resp_wait+0x88/0x104 [wireless])
[ 26.444435] [<bf0020f4>] (dhd_os_ioctl_resp_wait+0x88/0x104 [wireless]) from [<bf013c78>] (dhd_bus_rxctl+0x30/0xc0 [wireless])
[ 26.444705] [<bf013c78>] (dhd_bus_rxctl+0x30/0xc0 [wireless]) from [<bf010e6c>] (dhdcdc_set_ioctl+0xb0/0xe4 [wireless])
[ 26.444964] [<bf010e6c>] (dhdcdc_set_ioctl+0xb0/0xe4 [wireless]) from [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless])
[ 26.445189] [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless]) from [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless])
[ 26.445367] [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless]) from [<bf001ca8>] (_dhd_sysioc_thread+0x3e8/0x548 [wireless])
[ 26.445494] [<bf001ca8>] (_dhd_sysioc_thread+0x3e8/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 26.446170] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.446224] Modules linked in: wireless
[ 26.446292] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.446334] [<c048c810>] (schedule+0x70/0x308) from [<c048d138>] (schedule_timeout+0x18/0x1d8)
[ 26.446387] [<c048d138>] (schedule_timeout+0x18/0x1d8) from [<c048cf80>] (wait_for_common+0x100/0x1c0)
[ 26.446435] [<c048cf80>] (wait_for_common+0x100/0x1c0) from [<c0322524>] (mmc_wait_for_req+0x29c/0x2f8)
[ 26.446484] [<c0322524>] (mmc_wait_for_req+0x29c/0x2f8) from [<c0328510>] (mmc_io_rw_extended+0x194/0x1f4)
[ 26.446525] [<c0328510>] (mmc_io_rw_extended+0x194/0x1f4) from [<c0329480>] (sdio_io_rw_ext_helper+0x158/0x190)
[ 26.446562] [<c0329480>] (sdio_io_rw_ext_helper+0x158/0x190) from [<c032950c>] (sdio_memcpy_toio+0x1c/0x20)
[ 26.446764] [<c032950c>] (sdio_memcpy_toio+0x1c/0x20) from [<bf017490>] (sdioh_request_packet.isra.0+0x7c/0xe4 [wireless])
[ 26.447055] [<bf017490>] (sdioh_request_packet.isra.0+0x7c/0xe4 [wireless]) from [<bf017ddc>] (sdioh_request_buffer+0xbc/0x1e0 [wireless])
[ 26.447344] [<bf017ddc>] (sdioh_request_buffer+0xbc/0x1e0 [wireless]) from [<bf018b18>] (bcmsdh_send_buf+0xa4/0xb4 [wireless])
[ 26.447622] [<bf018b18>] (bcmsdh_send_buf+0xa4/0xb4 [wireless]) from [<bf013b28>] (dhd_bus_txctl+0x1dc/0x2fc [wireless])
[ 26.447885] [<bf013b28>] (dhd_bus_txctl+0x1dc/0x2fc [wireless]) from [<bf010e54>] (dhdcdc_set_ioctl+0x98/0xe4 [wireless])
[ 26.448207] [<bf010e54>] (dhdcdc_set_ioctl+0x98/0xe4 [wireless]) from [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless])
[ 26.448434] [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless]) from [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless])
[ 26.448614] [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless]) from [<bf001d08>] (_dhd_sysioc_thread+0x448/0x548 [wireless])
[ 26.448739] [<bf001d08>] (_dhd_sysioc_thread+0x448/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 26.449579] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.449600] Modules linked in: wireless
[ 26.449660] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.449700] [<c048c810>] (schedule+0x70/0x308) from [<c048d2c4>] (schedule_timeout+0x1a4/0x1d8)
[ 26.449869] [<c048d2c4>] (schedule_timeout+0x1a4/0x1d8) from [<bf0020f4>] (dhd_os_ioctl_resp_wait+0x88/0x104 [wireless])
[ 26.450105] [<bf0020f4>] (dhd_os_ioctl_resp_wait+0x88/0x104 [wireless]) from [<bf013c78>] (dhd_bus_rxctl+0x30/0xc0 [wireless])
[ 26.450372] [<bf013c78>] (dhd_bus_rxctl+0x30/0xc0 [wireless]) from [<bf010e6c>] (dhdcdc_set_ioctl+0xb0/0xe4 [wireless])
[ 26.450632] [<bf010e6c>] (dhdcdc_set_ioctl+0xb0/0xe4 [wireless]) from [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless])
[ 26.450857] [<bf011288>] (dhd_prot_ioctl+0x6c/0x2ac [wireless]) from [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless])
[ 26.451035] [<bf0052c8>] (dhd_wl_ioctl+0x90/0xa8 [wireless]) from [<bf001d08>] (_dhd_sysioc_thread+0x448/0x548 [wireless])
[ 26.451150] [<bf001d08>] (_dhd_sysioc_thread+0x448/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 26.452414] BUG: scheduling while atomic: dhd_sysioc/1669/0x00000102
[ 26.452434] Modules linked in: wireless
[ 26.452490] [<c0034a84>] (unwind_backtrace+0x0/0x164) from [<c048c810>] (schedule+0x70/0x308)
[ 26.452532] [<c048c810>] (schedule+0x70/0x308) from [<c048d138>] (schedule_timeout+0x18/0x1d8)
[ 26.452574] [<c048d138>] (schedule_timeout+0x18/0x1d8) from [<c048dfd8>] (__down_interruptible+0x88/0xec)
[ 26.452649] [<c048dfd8>] (__down_interruptible+0x88/0xec) from [<c00ba148>] (down_interruptible+0x40/0x78)
[ 26.452805] [<c00ba148>] (down_interruptible+0x40/0x78) from [<bf001db8>] (_dhd_sysioc_thread+0x4f8/0x548 [wireless])
[ 26.452930] [<bf001db8>] (_dhd_sysioc_thread+0x4f8/0x548 [wireless]) from [<c002fdbc>] (kernel_thread_exit+0x0/0x8)
[ 27.524769] SMD: ch 7 0 -> 1
[ 27.524867] SMD: ch 7 1 -> 2
[ 27.525961] handle_ats_rpc_call:ONCRPC_LGE_GET_FLEX_ 9
[ 27.525979] ONCRPC_LGE_GET_FLEX_OPERATOR_CODE_PROC
[ 27.526029] read data flex.xml fd: -2 iFlexSize : 500 res;-9
<6>[ 27.526044] ONCRPC_LGE_GET_FLEX_OPERATOR_CODE_PROC return string : 0 ,
[ 27.526057] lge_ats_handle_flex result : 7
<6>[ 27.526071] DSAT RPC accept_status = 7
[ 27.527419] handle_ats_rpc_call:ONCRPC_LGE_GET_FLEX_ 10
[ 27.527442] ONCRPC_LGE_GET_FLEX_COUNTRY_PROC
[ 27.527482] read data flex.xml fd: -2 iFlexSize : 500 res;-9
[ 27.527502] ONCRPC_LGE_GET_FLEX_COUNTRY_PROC return string : 0 ,
[ 27.527519] lge_ats_handle_flex result : 7
[ 27.527534] DSAT RPC accept_status = 7
[ 27.868967] list->version 0 != WL_BSS_INFO_VERSION
[ 28.525081] smd_close(DATA1)
[ 29.390055] handle_ats_rpc_call:ONCRPC_LGE_GET_FLEX_ 7
[ 29.390089] ONCRPC_LGE_GET_FLEX_MCC_PROC
[ 29.390150] read data flex.xml fd: -2 iFlexSize : 500 res;-9
[ 29.390170] ONCRPC_LGE_GET_FLEX_MCC_PROC return string : 0 ,
[ 29.390187] lge_ats_handle_flex result : 7
[ 29.390204] DSAT RPC accept_status = 7
[ 29.391107] handle_ats_rpc_call:ONCRPC_LGE_GET_FLEX_ 9
[ 29.391130] ONCRPC_LGE_GET_FLEX_OPERATOR_CODE_PROC
[ 29.391170] read data flex.xml fd: -2 iFlexSize : 500 res;-9
[ 29.391205] ONCRPC_LGE_GET_FLEX_OPERATOR_CODE_PROC return string : 0 ,
[ 29.391224] lge_ats_handle_flex result : 7
[ 29.391239] DSAT RPC accept_status = 7
[ 29.963956] SMD: ch 7 0 -> 1
[ 29.964068] SMD: ch 7 1 -> 2
[ 30.281901] STA connect received 1
[ 30.563723] save exit: isCheckpointed 1
[ 30.964268] smd_close(DATA1)
[ 36.337985] save exit: isCheckpointed 1
[ 36.523781] rs30000048 rs30000048.65536: msmrtc_timeremote_set_time: 01/10/2013 23:02:38 (00)
[ 36.525139] RPC_TIME_TOD_SET_APPS_BASES:
[ 36.525149] tick = 1368968
[ 36.525154] stamp = 54765682042077185
[ 36.531307] msmrtc_tod_proc_result: 02/10/2013 23:02:38 (06)
[ 36.531372] rs30000048 rs30000048.65536: setting system clock to 2013-02-10 23:02:38 UTC (1360537358)
[ 36.987971] wlan0: no IPv6 routers present
[ 38.199754] aat28xx_power_internal: on = 1, refcnt = 1
[ 38.200344] pecan_vibrator_power_set: vibrator volage 3300
[ 38.210967] aat28xx_power_internal: on = 0, refcnt = 2
[ 38.230807] aat28xx_power_internal: on = 1, refcnt = 1
[ 38.231398] pecan_vibrator_power_set: vibrator volage 3300
[ 38.262030] aat28xx_power_internal: on = 0, refcnt = 2
[ 38.386368] aat28xx_power_internal: on = 1, refcnt = 1
[ 38.386963] pecan_vibrator_power_set: vibrator volage 3300
[ 38.397588] aat28xx_power_internal: on = 0, refcnt = 2
[ 38.417440] aat28xx_power_internal: on = 1, refcnt = 1
[ 38.418036] pecan_vibrator_power_set: vibrator volage 3300
[ 38.448666] aat28xx_power_internal: on = 0, refcnt = 2
[ 42.186886] save exit: isCheckpointed 1
[ 42.191067] save exit: isCheckpointed 1
[ 43.738040] select 1817 (d.apps.uploader), adj 15, size 4572, to kill
[ 43.738075] send sigkill to 1817 (d.apps.uploader), adj 15, size 4572
[ 44.122834] select 1736 (ndroid.settings), adj 11, size 5800, to kill
[ 44.122866] select 1753 (viders.calendar), adj 14, size 4822, to kill
[ 44.122894] send sigkill to 1753 (viders.calendar), adj 14, size 4822
[ 45.756786] select 1736 (ndroid.settings), adj 13, size 5727, to kill
[ 45.756824] select 1877 (ogle.android.gm), adj 15, size 4926, to kill
[ 45.756866] send sigkill to 1877 (ogle.android.gm), adj 15, size 4926
[ 45.988411] select 1736 (ndroid.settings), adj 13, size 5723, to kill
[ 45.988444] select 1910 (m.android.music), adj 14, size 4448, to kill
[ 45.988467] send sigkill to 1910 (m.android.music), adj 14, size 4448
[ 46.202892] select 1736 (ndroid.settings), adj 13, size 5723, to kill
[ 46.202935] send sigkill to 1736 (ndroid.settings), adj 13, size 5723
[ 47.679666] aat28xx_power_internal: on = 1, refcnt = 1
[ 47.680263] pecan_vibrator_power_set: vibrator volage 3300
[ 47.681871] aat28xx_power_internal: on = 0, refcnt = 2
[ 47.702716] aat28xx_power_internal: on = 1, refcnt = 1
[ 47.703313] pecan_vibrator_power_set: vibrator volage 3300
[ 47.733953] aat28xx_power_internal: on = 0, refcnt = 2
[ 48.512066] save exit: isCheckpointed 1
[ 51.612038] msm_enqueue: queue event new max is 1
[ 51.786587] [dual] 0x3B80 = 9
[ 51.786608] pll
[ 51.788003] pll delay 10
[ 51.798901] pll polling 0x4028
[ 51.799396] pll polling 0x4028
[ 51.799645] pll polling 0x4028
[ 51.799990] pll polling 0x4028
[ 51.800178] pll polling 0x4028
[ 51.800508] pll polling 0x4028
[ 51.800711] pll polling 0x4028
[ 51.801086] pll polling 0x4028
[ 51.801278] pll polling 0x4028
[ 51.801471] pll polling 0x4028
[ 51.801678] pll polling 0x4028
[ 51.801878] pll polling 0x4028
[ 51.802065] pll polling 0x4028
[ 51.803961] pll polling 0x4028
[ 51.804545] pll polling 0x4028
[ 51.806203] pll polling 0x4028
[ 51.806750] pll polling 0x4028
[ 51.807703] pll polling 0x4028
[ 51.808148] pll polling 0x28
[ 51.808165] Aptina init_code
[ 52.221614] [adsp.c:handle_adsp_rtos_mtoa_app] INIT_INFO Event
[ 52.222436] [adsp.c:msm_adsp_get] opening module QCAMTASK
[ 52.223264] [adsp.c:msm_adsp_get] opening module VFETASK
[ 52.266371] Config sensor info type 0
[ 52.266397] Config Sensor Mode
[ 52.266409] preview mode
[ 52.299247] preview extra polling 5
[ 52.301920] preview extra polling 5
[ 52.302265] preview extra polling 5
[ 52.308065] preview extra polling 5
[ 52.308590] preview extra polling 5
[ 52.309084] preview extra polling 5
[ 52.309988] preview extra polling 5
[ 52.310453] preview extra polling 5
[ 52.310912] preview extra polling 5
[ 52.311617] preview extra polling 5
[ 52.312077] preview extra polling 5
[ 52.312533] preview extra polling 5
[ 52.312993] preview extra polling 5
[ 52.313450] preview extra polling 5
[ 52.313907] preview extra polling 5
[ 52.314367] preview extra polling 5
[ 52.314828] preview extra polling 5
[ 52.315287] preview extra polling 5
[ 52.315743] preview extra polling 5
[ 52.316200] preview extra polling 5
[ 52.316658] preview extra polling 5
[ 52.317115] preview extra polling 5
[ 52.317572] preview extra polling 5
[ 52.318058] preview extra polling 5
[ 52.318517] preview extra polling 5
[ 52.318975] preview extra polling 5
[ 52.319432] preview extra polling 5
[ 52.319887] preview extra polling 5
[ 52.320343] preview extra polling 5
[ 52.320802] preview extra polling 5
[ 52.321258] preview extra polling 5
[ 52.321720] preview extra polling 5
[ 52.322182] preview extra polling 5
[ 52.322640] preview extra polling 5
[ 52.323097] preview extra polling 5
[ 52.323553] preview extra polling 5
[ 52.324012] preview extra polling 5
[ 52.324470] preview extra polling 5
[ 52.324927] preview extra polling 5
[ 52.325383] preview extra polling 5
[ 52.325842] preview extra polling 5
[ 52.326298] preview extra polling 5
[ 52.326755] preview extra polling 5
[ 52.327212] preview extra polling 5
[ 52.327668] preview extra polling 5
[ 52.328152] preview extra polling 5
[ 52.328610] preview extra polling 5
[ 52.329067] preview extra polling 5
[ 52.329523] preview extra polling 5
[ 52.329980] preview extra polling 5
[ 52.330437] preview extra polling 5
[ 52.330893] preview extra polling 5
[ 52.331398] preview extra polling 5
[ 52.331875] preview extra polling 5
[ 52.332328] preview extra polling 5
[ 52.332788] preview extra polling 5
[ 52.333135] preview extra polling 5
[ 52.335290] preview extra polling 5
[ 52.336773] preview extra polling 5
[ 52.337366] preview extra polling 5
[ 52.337898] preview extra polling 5
[ 52.338365] preview extra polling 5
[ 52.338825] preview extra polling 5
[ 52.339280] preview extra polling 5
[ 52.339738] preview extra polling 5
[ 52.340196] preview extra polling 5
[ 52.340655] preview extra polling 5
[ 52.341111] preview extra polling 5
[ 52.341568] preview extra polling 5
[ 52.342025] preview extra polling 5
[ 52.342645] preview extra polling 5
[ 52.343105] preview extra polling 5
[ 52.343561] preview extra polling 5
[ 52.344018] preview extra polling 5
[ 52.344476] preview extra polling 5
[ 52.344935] preview extra polling 5
[ 52.345391] preview extra polling 5
[ 52.345848] preview extra polling 5
[ 52.346306] preview extra polling 5
[ 52.346761] preview extra polling 5
[ 52.347220] preview extra polling 5
[ 52.347676] preview extra polling 5
[ 52.348163] preview extra polling 5
[ 52.348621] preview extra polling 5
[ 52.349076] preview extra polling 5
[ 52.349533] preview extra polling 5
[ 52.349990] preview extra polling 5
[ 52.350446] preview extra polling 5
[ 52.350901] preview extra polling 5
[ 52.351395] preview extra polling 5
[ 52.351866] preview extra polling 5
[ 52.352325] preview extra polling 5
[ 52.352781] preview extra polling 5
[ 52.353236] preview extra polling 5
[ 52.353693] preview extra polling 5
[ 52.354150] preview extra polling 5
[ 52.358015] preview extra polling 5
[ 52.358525] preview extra polling 5
[ 52.359901] preview extra polling 5
[ 52.360363] preview extra polling 5
[ 52.360710] preview extra polling 5
[ 52.361048] preview extra polling 5
[ 52.361390] preview extra polling 5
[ 52.361726] preview extra polling 5
[ 52.362068] preview extra polling 5
[ 52.362410] preview extra polling 5
[ 52.362756] preview extra polling 5
[ 52.363105] preview extra polling 5
[ 52.363450] preview extra polling 5
[ 52.363790] preview extra polling 5
[ 52.364133] preview extra polling 5
[ 52.364573] preview extra polling 5
[ 52.365039] preview extra polling 5
[ 52.365504] preview extra polling 5
[ 52.365968] preview extra polling 5
[ 52.366431] preview extra polling 5
[ 52.366891] preview extra polling 5
[ 52.367351] preview extra polling 5
[ 52.367813] preview extra polling 5
[ 52.368224] preview extra polling 5
[ 52.368686] preview extra polling 5
[ 52.369146] preview extra polling 5
[ 52.369608] preview extra polling 5
[ 52.370069] preview extra polling 5
[ 52.370529] preview extra polling 5
[ 52.370991] preview extra polling 5
[ 52.371453] preview extra polling 5
[ 52.371966] preview extra polling 5
[ 52.372429] preview extra polling 5
[ 52.372889] preview extra polling 5
[ 52.373353] preview extra polling 5
[ 52.373796] preview extra polling 5
[ 52.374269] preview extra polling 5
[ 52.374641] preview extra polling 5
[ 52.374999] preview extra polling 5
[ 52.375343] preview extra polling 5
[ 52.378136] preview extra polling 5
[ 52.378488] preview extra polling 5
[ 52.378829] preview extra polling 5
[ 52.379168] preview extra polling 5
[ 52.379508] preview extra polling 5
[ 52.379853] preview extra polling 5
[ 52.380198] preview extra polling 5
[ 52.380543] preview extra polling 5
[ 52.380889] preview extra polling 5
[ 52.381251] preview extra polling 5
[ 52.381611] preview extra polling 5
[ 52.382003] preview extra polling 5
[ 52.382348] preview extra polling 5
[ 52.382751] preview extra polling 5
[ 52.383099] preview extra polling 5
[ 52.383449] preview extra polling 5
[ 52.383799] preview extra polling 5
[ 52.384141] preview extra polling 5
[ 52.384489] preview extra polling 5
[ 52.385121] preview extra polling 5
[ 52.386812] preview extra polling 5
[ 52.387177] preview extra polling 5
[ 52.387532] preview extra polling 5
[ 52.387916] preview extra polling 5
[ 52.388271] preview extra polling 5
[ 52.388622] preview extra polling 5
[ 52.389871] preview extra polling 5
[ 52.395349] preview extra polling 5
[ 52.395712] preview extra polling 5
[ 52.396062] preview extra polling 5
[ 52.396417] preview extra polling 5
[ 52.396781] preview extra polling 5
[ 52.397132] preview extra polling 5
[ 52.399517] preview extra polling 5
[ 52.400697] preview extra polling 5
[ 52.401156] preview extra polling 5
[ 52.401494] preview extra polling 5
[ 52.401839] preview extra polling 5
[ 52.402186] preview extra polling 5
[ 52.403066] preview extra polling 5
[ 52.403666] preview extra polling 5
[ 52.412634] preview extra polling 5
[ 52.413007] preview extra polling 5
[ 52.413349] preview extra polling 5
[ 52.414172] preview extra polling 5
[ 52.414522] preview extra polling 5
[ 52.414872] preview extra polling 5
[ 52.415224] preview extra polling 5
[ 52.415601] preview extra polling 5
[ 52.415974] preview extra polling 5
[ 52.416341] preview extra polling 5
[ 52.416716] preview extra polling 5
[ 52.417086] preview extra polling 5
[ 52.417472] preview extra polling 5
[ 52.417839] preview extra polling 5
[ 52.418292] preview extra polling 5
[ 52.418657] preview extra polling 5
[ 52.419021] preview extra polling 5
[ 52.419567] preview extra polling 5
[ 52.419915] preview extra polling 5
[ 52.420262] preview extra polling 5
[ 52.420607] preview extra polling 5
[ 52.420954] preview extra polling 5
[ 52.421300] preview extra polling 5
[ 52.421644] preview extra polling 5
[ 52.422007] preview extra polling 5
[ 52.422385] preview extra polling 5
[ 52.422745] preview extra polling 5
[ 52.423107] preview extra polling 5
[ 52.423449] preview extra polling 5
[ 52.423792] preview extra polling 5
[ 52.424135] preview extra polling 5
[ 52.424477] preview extra polling 5
[ 52.424822] preview extra polling 5
[ 52.425167] preview extra polling 5
[ 52.425512] preview extra polling 5
[ 52.425859] preview extra polling 5
[ 52.426200] preview extra polling 5
[ 52.426550] preview extra polling 5
[ 52.426894] preview extra polling 5
[ 52.427242] preview extra polling 5
[ 52.427587] preview extra polling 5
[ 52.428007] preview extra polling 5
[ 52.428352] preview extra polling 5
[ 52.428699] preview extra polling 5
[ 52.429044] preview extra polling 5
[ 52.429389] preview extra polling 5
[ 52.429730] preview extra polling 5
[ 52.430072] preview extra polling 5
[ 52.430439] preview extra polling 5
[ 52.430784] preview extra polling 5
[ 52.431129] preview extra polling 5
[ 52.431470] preview extra polling 5
[ 52.431812] preview extra polling 5
[ 52.432154] preview extra polling 5
[ 52.432494] preview extra polling 5
[ 52.432834] preview extra polling 5
[ 52.433179] preview extra polling 5
[ 52.433519] preview extra polling 5
[ 52.433860] preview extra polling 5
[ 52.434200] preview extra polling 5
[ 52.434545] preview extra polling 5
[ 52.434890] preview extra polling 5
[ 52.435230] preview extra polling 5
[ 52.435574] preview extra polling 5
[ 52.435914] preview extra polling 5
[ 52.436255] preview extra polling 5
[ 52.436598] preview extra polling 5
[ 52.436938] preview extra polling 5
[ 52.437282] preview extra polling 5
[ 52.437625] preview extra polling 5
[ 52.438007] preview extra polling 5
[ 52.438355] preview extra polling 5
[ 52.438697] preview extra polling 5
[ 52.439038] preview extra polling 5
[ 52.439385] preview extra polling 5
[ 52.439732] preview extra polling 5
[ 52.440073] preview extra polling 5
[ 52.443972] preview extra polling 5
[ 52.451102] preview extra polling 5
[ 52.451745] preview extra polling 5
[ 52.452103] preview extra polling 5
[ 52.452455] preview extra polling 5
[ 52.457952] preview extra polling 5
[ 52.458308] preview extra polling 5
[ 52.458647] preview extra polling 5
[ 52.459002] preview extra polling 5
[ 52.459340] preview extra polling 5
[ 52.459677] preview extra polling 5
[ 52.460012] preview extra polling 5
[ 52.460367] preview extra polling 5
[ 52.460705] preview extra polling 5
[ 52.461042] preview extra polling 5
[ 52.461382] preview extra polling 5
[ 52.461727] preview extra polling 5
[ 52.462065] preview extra polling 5
[ 52.462400] preview extra polling 5
[ 52.462743] preview extra polling 5
[ 52.463085] preview extra polling 5
[ 52.463440] preview extra polling 5
[ 52.463807] preview extra polling 5
[ 52.464292] preview extra polling 5
[ 52.464637] preview extra polling 5
[ 52.464982] preview extra polling 5
[ 52.465363] preview extra polling 5
[ 52.468933] preview extra polling 5
[ 52.469315] preview extra polling 5
[ 52.469667] preview extra polling 5
[ 52.470277] preview extra polling 5
[ 52.470640] preview extra polling 5
[ 52.471025] preview extra polling 5
[ 52.471390] preview extra polling 5
[ 52.471743] preview extra polling 5
[ 52.472230] preview extra polling 5
[ 52.472901] preview extra polling 5
[ 52.473296] preview extra polling 5
[ 52.473670] preview extra polling 5
[ 52.474038] preview extra polling 5
[ 52.474403] preview extra polling 5
[ 52.474768] preview extra polling 5
[ 52.475126] preview extra polling 5
[ 52.475475] preview extra polling 5
[ 52.475821] preview extra polling 5
[ 52.476166] preview extra polling 5
[ 52.476516] preview extra polling 5
[ 52.476891] preview extra polling 5
[ 52.477255] preview extra polling 5
[ 52.488163] preview extra polling 5
[ 52.488510] preview extra polling 5
[ 52.488848] preview extra polling 5
[ 52.489205] preview extra polling 5
[ 52.489566] preview extra polling 5
[ 52.489936] preview extra polling 5
[ 52.490303] preview extra polling 5
[ 52.490660] preview extra polling 5
[ 52.491023] preview extra polling 5
[ 52.491401] preview extra polling 5
[ 52.491758] preview extra polling 5
[ 52.492126] preview extra polling 5
[ 52.492478] preview extra polling 5
[ 52.492840] preview extra polling 5
[ 52.493205] preview extra polling 5
[ 52.493563] preview extra polling 5
[ 52.493958] preview extra polling 5
[ 52.494360] preview extra polling 5
[ 52.494718] preview extra polling 5
[ 52.497966] preview extra polling 5
[ 52.498376] preview extra polling 5
[ 52.498925] preview extra polling 5
[ 52.499285] preview extra polling 5
[ 52.499638] preview extra polling 5
[ 52.499978] preview extra polling 5
[ 52.500330] preview extra polling 5
[ 52.500695] preview extra polling 5
[ 52.501040] preview extra polling 5
[ 52.501411] preview extra polling 5
[ 52.501764] preview extra polling 5
[ 52.502168] preview extra polling 5
[ 52.502569] preview extra polling 5
[ 52.502934] preview extra polling 5
[ 52.503299] preview extra polling 5
[ 52.503641] preview extra polling 5
[ 52.503981] preview extra polling 5
[ 52.504349] preview extra polling 5
[ 52.504706] preview extra polling 5
[ 52.505071] preview extra polling 5
[ 52.505428] preview extra polling 5
[ 52.505789] preview extra polling 5
[ 52.506144] preview extra polling 5
[ 52.506486] preview extra polling 5
[ 52.506843] preview extra polling 5
[ 52.507189] preview extra polling 5
[ 52.507533] preview extra polling 5
[ 52.507931] preview extra polling 5
[ 52.508291] preview extra polling 5
[ 52.508661] preview extra polling 5
[ 52.509021] preview extra polling 5
[ 52.509366] preview extra polling 5
[ 52.509726] preview extra polling 5
[ 52.510069] preview extra polling 5
[ 52.510411] preview extra polling 5
[ 52.510751] preview extra polling 5
[ 52.511096] preview extra polling 5
[ 52.511438] preview extra polling 5
[ 52.511778] preview extra polling 5
[ 52.512124] preview extra polling 5
[ 52.512466] preview extra polling 5
[ 52.512808] preview extra polling 5
[ 52.513148] preview extra polling 5
[ 52.513493] preview extra polling 5
[ 52.513836] preview extra polling 5
[ 52.514179] preview extra polling 5
[ 52.514521] preview extra polling 5
[ 52.514861] preview extra polling 5
[ 52.515199] preview extra polling 5
[ 52.515538] preview extra polling 5